mirror of https://github.com/OISF/suricata
detect/nfs: move nfs_procedure to rust
Make it able to use strings on the way Ticket: 6723pull/13892/head
parent
9869fb776b
commit
3641b4eda1
@ -0,0 +1,258 @@
|
||||
/* Copyright (C) 2018 Open Information Security Foundation
|
||||
*
|
||||
* You can copy, redistribute or modify this Program under the terms of
|
||||
* the GNU General Public License version 2 as published by the Free
|
||||
* Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* version 2 along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301, USA.
|
||||
*/
|
||||
|
||||
// written by Pierre Chifflier <chifflier@wzdftpd.net>
|
||||
|
||||
use suricata_sys::sys::AppProtoEnum::ALPROTO_NFS;
|
||||
use suricata_sys::sys::{
|
||||
AppProto, DetectEngineCtx, DetectEngineThreadCtx, Flow, SCDetectHelperBufferRegister,
|
||||
SCDetectHelperKeywordRegister, SCDetectSignatureSetAppProto, SCSigMatchAppendSMToList,
|
||||
SCSigTableAppLiteElmt, SigMatchCtx, Signature,
|
||||
};
|
||||
|
||||
use super::nfs::{NFSTransaction, NFSTransactionTypeData};
|
||||
use super::types::{NfsProc3, NfsProc4};
|
||||
use crate::core::STREAM_TOSERVER;
|
||||
use crate::detect::uint::{
|
||||
detect_match_uint, detect_parse_uint_enum, detect_parse_uint_inclusive, DetectUintData,
|
||||
SCDetectU32Free,
|
||||
};
|
||||
use crate::detect::{SIGMATCH_INFO_ENUM_UINT, SIGMATCH_INFO_MULTI_UINT, SIGMATCH_INFO_UINT32};
|
||||
|
||||
use std::ffi::{c_int, CStr};
|
||||
use std::os::raw::c_void;
|
||||
|
||||
static mut G_NFS_PROCEDURE_KW_ID: u16 = 0;
|
||||
static mut G_NFS_PROCEDURE_BUFFER_ID: c_int = 0;
|
||||
|
||||
struct DetectNfsProcedureDataVersion {
|
||||
v3: Option<DetectUintData<u32>>,
|
||||
v4: Option<DetectUintData<u32>>,
|
||||
}
|
||||
|
||||
enum DetectNfsProcedureData {
|
||||
VersionLiteral(DetectNfsProcedureDataVersion),
|
||||
Num(DetectUintData<u32>),
|
||||
}
|
||||
|
||||
fn nfs_procedure_parse_aux(s: &str) -> Option<DetectNfsProcedureData> {
|
||||
if let Ok((_, ctx)) = detect_parse_uint_inclusive::<u32>(s) {
|
||||
return Some(DetectNfsProcedureData::Num(ctx));
|
||||
}
|
||||
let v3 = detect_parse_uint_enum::<u32, NfsProc3>(s);
|
||||
let v4 = detect_parse_uint_enum::<u32, NfsProc4>(s);
|
||||
if v3.is_none() && v4.is_none() {
|
||||
return None;
|
||||
}
|
||||
return Some(DetectNfsProcedureData::VersionLiteral(
|
||||
DetectNfsProcedureDataVersion { v3, v4 },
|
||||
));
|
||||
}
|
||||
|
||||
unsafe extern "C" fn nfs_procedure_parse(
|
||||
ustr: *const std::os::raw::c_char,
|
||||
) -> *mut DetectUintData<u32> {
|
||||
let ft_name: &CStr = CStr::from_ptr(ustr); //unsafe
|
||||
if let Ok(s) = ft_name.to_str() {
|
||||
// TODO big composite type
|
||||
if let Some(ctx) = nfs_procedure_parse_aux(s) {
|
||||
let boxed = Box::new(ctx);
|
||||
return Box::into_raw(boxed) as *mut _;
|
||||
}
|
||||
}
|
||||
return std::ptr::null_mut();
|
||||
}
|
||||
|
||||
unsafe extern "C" fn nfs_procedure_setup(
|
||||
de: *mut DetectEngineCtx, s: *mut Signature, raw: *const libc::c_char,
|
||||
) -> c_int {
|
||||
if SCDetectSignatureSetAppProto(s, ALPROTO_NFS as AppProto) != 0 {
|
||||
return -1;
|
||||
}
|
||||
let ctx = nfs_procedure_parse(raw) as *mut c_void;
|
||||
if ctx.is_null() {
|
||||
return -1;
|
||||
}
|
||||
if SCSigMatchAppendSMToList(
|
||||
de,
|
||||
s,
|
||||
G_NFS_PROCEDURE_KW_ID,
|
||||
ctx as *mut SigMatchCtx,
|
||||
G_NFS_PROCEDURE_BUFFER_ID,
|
||||
)
|
||||
.is_null()
|
||||
{
|
||||
nfs_procedure_free(std::ptr::null_mut(), ctx);
|
||||
return -1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
fn nfs_procedure_match_val(proc: u32, nfs_version: u16, ctx: &DetectNfsProcedureData) -> bool {
|
||||
match ctx {
|
||||
DetectNfsProcedureData::VersionLiteral(ver) => {
|
||||
if nfs_version < 4 {
|
||||
if let Some(du32v3) = &ver.v3 {
|
||||
return detect_match_uint(du32v3, proc);
|
||||
}
|
||||
} else if let Some(du32v4) = &ver.v4 {
|
||||
return detect_match_uint(du32v4, proc);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
DetectNfsProcedureData::Num(du32) => {
|
||||
return detect_match_uint(du32, proc);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn nfs_procedure_match_aux(tx: &NFSTransaction, ctx: &DetectNfsProcedureData) -> c_int {
|
||||
// first try tx.procedure
|
||||
if nfs_procedure_match_val(tx.procedure, tx.nfs_version, ctx) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
if !tx.is_file_tx {
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* file tx handling follows */
|
||||
if let Some(NFSTransactionTypeData::FILE(ref tdf)) = tx.type_data {
|
||||
for proc in &tdf.file_additional_procs {
|
||||
if nfs_procedure_match_val(*proc, tx.nfs_version, ctx) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsafe extern "C" fn nfs_procedure_match(
|
||||
_de: *mut DetectEngineThreadCtx, _f: *mut Flow, _flags: u8, _state: *mut c_void,
|
||||
tx: *mut c_void, _sig: *const Signature, ctx: *const SigMatchCtx,
|
||||
) -> c_int {
|
||||
let tx = cast_pointer!(tx, NFSTransaction);
|
||||
let ctx = cast_pointer!(ctx, DetectNfsProcedureData);
|
||||
return nfs_procedure_match_aux(tx, ctx);
|
||||
}
|
||||
|
||||
unsafe extern "C" fn nfs_procedure_free(_de: *mut DetectEngineCtx, ctx: *mut c_void) {
|
||||
let ctx = cast_pointer!(ctx, DetectUintData<u32>);
|
||||
SCDetectU32Free(ctx);
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub unsafe extern "C" fn SCDetectNfsProcedureRegister() {
|
||||
let kw = SCSigTableAppLiteElmt {
|
||||
name: b"nfs_procedure\0".as_ptr() as *const libc::c_char,
|
||||
desc: b"match NFS procedure\0".as_ptr() as *const libc::c_char,
|
||||
url: b"/rules/nfs-keywords.html#procedure\0".as_ptr() as *const libc::c_char,
|
||||
AppLayerTxMatch: Some(nfs_procedure_match),
|
||||
Setup: Some(nfs_procedure_setup),
|
||||
Free: Some(nfs_procedure_free),
|
||||
flags: SIGMATCH_INFO_UINT32 | SIGMATCH_INFO_MULTI_UINT | SIGMATCH_INFO_ENUM_UINT,
|
||||
};
|
||||
G_NFS_PROCEDURE_KW_ID = SCDetectHelperKeywordRegister(&kw);
|
||||
G_NFS_PROCEDURE_BUFFER_ID = SCDetectHelperBufferRegister(
|
||||
b"nfs_procedure\0".as_ptr() as *const libc::c_char,
|
||||
ALPROTO_NFS as AppProto,
|
||||
STREAM_TOSERVER,
|
||||
);
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod test {
|
||||
use super::*;
|
||||
use crate::detect::uint::DetectUintMode;
|
||||
|
||||
#[test]
|
||||
fn nfs_procedure_parse_test() {
|
||||
let ctx = nfs_procedure_parse_aux("1430000000").unwrap();
|
||||
if let DetectNfsProcedureData::Num(ctx) = ctx {
|
||||
assert_eq!(ctx.arg1, 1430000000);
|
||||
assert_eq!(ctx.mode, DetectUintMode::DetectUintModeEqual);
|
||||
} else {
|
||||
panic!("not right enum");
|
||||
}
|
||||
|
||||
let ctx = nfs_procedure_parse_aux(">1430000000").unwrap();
|
||||
if let DetectNfsProcedureData::Num(ctx) = ctx {
|
||||
assert_eq!(ctx.arg1, 1430000000);
|
||||
assert_eq!(ctx.mode, DetectUintMode::DetectUintModeGt);
|
||||
} else {
|
||||
panic!("not right enum");
|
||||
}
|
||||
|
||||
let ctx = nfs_procedure_parse_aux("<1430000000").unwrap();
|
||||
if let DetectNfsProcedureData::Num(ctx) = ctx {
|
||||
assert_eq!(ctx.arg1, 1430000000);
|
||||
assert_eq!(ctx.mode, DetectUintMode::DetectUintModeLt);
|
||||
} else {
|
||||
panic!("not right enum");
|
||||
}
|
||||
|
||||
let ctx = nfs_procedure_parse_aux("1430000001<>1470000000").unwrap();
|
||||
if let DetectNfsProcedureData::Num(ctx) = ctx {
|
||||
assert_eq!(ctx.arg1, 1430000000);
|
||||
assert_eq!(ctx.arg2, 1470000001);
|
||||
assert_eq!(ctx.mode, DetectUintMode::DetectUintModeRange);
|
||||
} else {
|
||||
panic!("not right enum");
|
||||
}
|
||||
|
||||
assert!(nfs_procedure_parse_aux("A").is_none());
|
||||
assert!(nfs_procedure_parse_aux(">1430000000<>1470000000").is_none());
|
||||
assert!(nfs_procedure_parse_aux("1430000000<>").is_none());
|
||||
assert!(nfs_procedure_parse_aux("<>1430000000").is_none());
|
||||
assert!(nfs_procedure_parse_aux("").is_none());
|
||||
assert!(nfs_procedure_parse_aux(" ").is_none());
|
||||
assert!(nfs_procedure_parse_aux("1490000000<>1430000000").is_none());
|
||||
|
||||
let ctx = nfs_procedure_parse_aux("1430000001 <> 1490000000").unwrap();
|
||||
if let DetectNfsProcedureData::Num(ctx) = ctx {
|
||||
assert_eq!(ctx.arg1, 1430000000);
|
||||
assert_eq!(ctx.arg2, 1490000001);
|
||||
assert_eq!(ctx.mode, DetectUintMode::DetectUintModeRange);
|
||||
} else {
|
||||
panic!("not right enum");
|
||||
}
|
||||
|
||||
let ctx = nfs_procedure_parse_aux("> 1430000000 ").unwrap();
|
||||
if let DetectNfsProcedureData::Num(ctx) = ctx {
|
||||
assert_eq!(ctx.arg1, 1430000000);
|
||||
assert_eq!(ctx.mode, DetectUintMode::DetectUintModeGt);
|
||||
} else {
|
||||
panic!("not right enum");
|
||||
}
|
||||
|
||||
let ctx = nfs_procedure_parse_aux("< 1490000000 ").unwrap();
|
||||
if let DetectNfsProcedureData::Num(ctx) = ctx {
|
||||
assert_eq!(ctx.arg1, 1490000000);
|
||||
assert_eq!(ctx.mode, DetectUintMode::DetectUintModeLt);
|
||||
} else {
|
||||
panic!("not right enum");
|
||||
}
|
||||
|
||||
let ctx = nfs_procedure_parse_aux(" 1490000000 ").unwrap();
|
||||
if let DetectNfsProcedureData::Num(ctx) = ctx {
|
||||
assert_eq!(ctx.arg1, 1490000000);
|
||||
assert_eq!(ctx.mode, DetectUintMode::DetectUintModeEqual);
|
||||
} else {
|
||||
panic!("not right enum");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,441 +0,0 @@
|
||||
/* Copyright (C) 2017-2020 Open Information Security Foundation
|
||||
*
|
||||
* You can copy, redistribute or modify this Program under the terms of
|
||||
* the GNU General Public License version 2 as published by the Free
|
||||
* Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* version 2 along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file
|
||||
*
|
||||
* \author Victor Julien <victor@inliniac.net>
|
||||
*/
|
||||
|
||||
#include "suricata-common.h"
|
||||
#include "threads.h"
|
||||
#include "decode.h"
|
||||
#include "detect.h"
|
||||
|
||||
#include "detect-parse.h"
|
||||
#include "detect-engine.h"
|
||||
#include "detect-engine-mpm.h"
|
||||
#include "detect-content.h"
|
||||
#include "detect-pcre.h"
|
||||
#include "detect-nfs-procedure.h"
|
||||
#include "detect-engine-uint.h"
|
||||
|
||||
#include "app-layer-parser.h"
|
||||
|
||||
#include "flow.h"
|
||||
#include "flow-util.h"
|
||||
#include "flow-var.h"
|
||||
|
||||
#include "util-unittest.h"
|
||||
#include "util-unittest-helper.h"
|
||||
#include "util-byte.h"
|
||||
|
||||
#include "app-layer-nfs-tcp.h"
|
||||
#include "rust.h"
|
||||
|
||||
static int DetectNfsProcedureSetup (DetectEngineCtx *, Signature *s, const char *str);
|
||||
static void DetectNfsProcedureFree(DetectEngineCtx *, void *);
|
||||
#ifdef UNITTESTS
|
||||
static void DetectNfsProcedureRegisterTests(void);
|
||||
#endif
|
||||
static int g_nfs_request_buffer_id = 0;
|
||||
|
||||
static int DetectNfsProcedureMatch (DetectEngineThreadCtx *, Flow *,
|
||||
uint8_t, void *, void *, const Signature *,
|
||||
const SigMatchCtx *);
|
||||
|
||||
/**
|
||||
* \brief Registration function for nfs_procedure keyword.
|
||||
*/
|
||||
void DetectNfsProcedureRegister (void)
|
||||
{
|
||||
sigmatch_table[DETECT_NFS_PROCEDURE].name = "nfs_procedure";
|
||||
sigmatch_table[DETECT_NFS_PROCEDURE].desc = "match NFS procedure";
|
||||
sigmatch_table[DETECT_NFS_PROCEDURE].url = "/rules/nfs-keywords.html#procedure";
|
||||
sigmatch_table[DETECT_NFS_PROCEDURE].Match = NULL;
|
||||
sigmatch_table[DETECT_NFS_PROCEDURE].AppLayerTxMatch = DetectNfsProcedureMatch;
|
||||
sigmatch_table[DETECT_NFS_PROCEDURE].Setup = DetectNfsProcedureSetup;
|
||||
sigmatch_table[DETECT_NFS_PROCEDURE].Free = DetectNfsProcedureFree;
|
||||
sigmatch_table[DETECT_NFS_PROCEDURE].flags = SIGMATCH_INFO_UINT32 | SIGMATCH_INFO_MULTI_UINT;
|
||||
#ifdef UNITTESTS
|
||||
sigmatch_table[DETECT_NFS_PROCEDURE].RegisterTests = DetectNfsProcedureRegisterTests;
|
||||
#endif
|
||||
|
||||
DetectAppLayerInspectEngineRegister(
|
||||
"nfs_request", ALPROTO_NFS, SIG_FLAG_TOSERVER, 0, DetectEngineInspectGenericList, NULL);
|
||||
|
||||
g_nfs_request_buffer_id = DetectBufferTypeGetByName("nfs_request");
|
||||
|
||||
SCLogDebug("g_nfs_request_buffer_id %d", g_nfs_request_buffer_id);
|
||||
}
|
||||
|
||||
/**
|
||||
* \internal
|
||||
* \brief Function to match procedure of a TX
|
||||
*
|
||||
* For 'file txs'
|
||||
*
|
||||
* \param t Pointer to thread vars.
|
||||
* \param det_ctx Pointer to the pattern matcher thread.
|
||||
* \param f Pointer to the current flow.
|
||||
* \param flags Flags.
|
||||
* \param state App layer state.
|
||||
* \param s Pointer to the Signature.
|
||||
* \param m Pointer to the sigmatch that we will cast into
|
||||
* DetectU32Data.
|
||||
*
|
||||
* \retval 0 no match.
|
||||
* \retval 1 match.
|
||||
*/
|
||||
static int DetectNfsProcedureMatch (DetectEngineThreadCtx *det_ctx,
|
||||
Flow *f, uint8_t flags, void *state,
|
||||
void *txv, const Signature *s,
|
||||
const SigMatchCtx *ctx)
|
||||
{
|
||||
SCEnter();
|
||||
|
||||
const DetectU32Data *dd = (const DetectU32Data *)ctx;
|
||||
uint16_t i;
|
||||
for (i = 0; i < 256; i++) {
|
||||
uint32_t procedure;
|
||||
if (SCNfsTxGetProcedures(txv, i, &procedure) == 1) {
|
||||
SCLogDebug("proc %u mode %u lo %u hi %u", procedure, dd->mode, dd->arg1, dd->arg2);
|
||||
if (DetectU32Match(procedure, dd))
|
||||
SCReturnInt(1);
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
}
|
||||
SCReturnInt(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* \internal
|
||||
* \brief Function to parse options passed via tls validity keywords.
|
||||
*
|
||||
* \param rawstr Pointer to the user provided options.
|
||||
*
|
||||
* \retval dd pointer to DetectU32Data on success.
|
||||
* \retval NULL on failure.
|
||||
*/
|
||||
static DetectU32Data *DetectNfsProcedureParse(const char *rawstr)
|
||||
{
|
||||
return SCDetectU32ParseInclusive(rawstr);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* \brief Function to add the parsed tls validity field into the current signature.
|
||||
*
|
||||
* \param de_ctx Pointer to the Detection Engine Context.
|
||||
* \param s Pointer to the Current Signature.
|
||||
* \param rawstr Pointer to the user provided flags options.
|
||||
* \param type Defines if this is notBefore or notAfter.
|
||||
*
|
||||
* \retval 0 on Success.
|
||||
* \retval -1 on Failure.
|
||||
*/
|
||||
static int DetectNfsProcedureSetup (DetectEngineCtx *de_ctx, Signature *s,
|
||||
const char *rawstr)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
|
||||
SCLogDebug("\'%s\'", rawstr);
|
||||
|
||||
if (SCDetectSignatureSetAppProto(s, ALPROTO_NFS) != 0)
|
||||
return -1;
|
||||
|
||||
dd = DetectNfsProcedureParse(rawstr);
|
||||
if (dd == NULL) {
|
||||
SCLogError("Parsing \'%s\' failed", rawstr);
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* okay so far so good, lets get this into a SigMatch
|
||||
* and put it in the Signature. */
|
||||
|
||||
SCLogDebug("low %u hi %u", dd->arg1, dd->arg2);
|
||||
if (SCSigMatchAppendSMToList(de_ctx, s, DETECT_NFS_PROCEDURE, (SigMatchCtx *)dd,
|
||||
g_nfs_request_buffer_id) == NULL) {
|
||||
DetectNfsProcedureFree(de_ctx, dd);
|
||||
return -1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* \internal
|
||||
* \brief Function to free memory associated with DetectU32Data.
|
||||
*
|
||||
* \param de_ptr Pointer to DetectU32Data.
|
||||
*/
|
||||
void DetectNfsProcedureFree(DetectEngineCtx *de_ctx, void *ptr)
|
||||
{
|
||||
SCDetectU32Free(ptr);
|
||||
}
|
||||
|
||||
#ifdef UNITTESTS
|
||||
|
||||
/**
|
||||
* \test This is a test for a valid value 1430000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse01 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("1430000000");
|
||||
FAIL_IF_NULL(dd);
|
||||
FAIL_IF_NOT(dd->arg1 == 1430000000 && dd->mode == DETECT_UINT_EQ);
|
||||
DetectNfsProcedureFree(NULL, dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a valid value >1430000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse02 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse(">1430000000");
|
||||
FAIL_IF_NULL(dd);
|
||||
FAIL_IF_NOT(dd->arg1 == 1430000000 && dd->mode == DETECT_UINT_GT);
|
||||
DetectNfsProcedureFree(NULL, dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a valid value <1430000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse03 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("<1430000000");
|
||||
FAIL_IF_NULL(dd);
|
||||
FAIL_IF_NOT(dd->arg1 == 1430000000 && dd->mode == DETECT_UINT_LT);
|
||||
DetectNfsProcedureFree(NULL, dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a valid value 1430000000<>1470000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse04 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("1430000001<>1470000000");
|
||||
FAIL_IF_NULL(dd);
|
||||
FAIL_IF_NOT(dd->arg1 == 1430000000 && dd->arg2 == 1470000001 && dd->mode == DETECT_UINT_RA);
|
||||
DetectNfsProcedureFree(NULL, dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a invalid value A.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse05 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("A");
|
||||
FAIL_IF_NOT_NULL(dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a invalid value >1430000000<>1470000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse06 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse(">1430000000<>1470000000");
|
||||
FAIL_IF_NOT_NULL(dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a invalid value 1430000000<>.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse07 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("1430000000<>");
|
||||
FAIL_IF_NOT_NULL(dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a invalid value <>1430000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse08 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("<>1430000000");
|
||||
FAIL_IF_NOT_NULL(dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a invalid value "".
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse09 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("");
|
||||
FAIL_IF_NOT_NULL(dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a invalid value " ".
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse10 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse(" ");
|
||||
FAIL_IF_NOT_NULL(dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a invalid value 1490000000<>1430000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse11 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("1490000000<>1430000000");
|
||||
FAIL_IF_NOT_NULL(dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a valid value 1430000000 <> 1490000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse12 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("1430000001 <> 1490000000");
|
||||
FAIL_IF_NULL(dd);
|
||||
FAIL_IF_NOT(dd->arg1 == 1430000000 && dd->arg2 == 1490000001 && dd->mode == DETECT_UINT_RA);
|
||||
DetectNfsProcedureFree(NULL, dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a valid value > 1430000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse13 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("> 1430000000 ");
|
||||
FAIL_IF_NULL(dd);
|
||||
FAIL_IF_NOT(dd->arg1 == 1430000000 && dd->mode == DETECT_UINT_GT);
|
||||
DetectNfsProcedureFree(NULL, dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a valid value < 1490000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse14 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse("< 1490000000 ");
|
||||
FAIL_IF_NULL(dd);
|
||||
FAIL_IF_NOT(dd->arg1 == 1490000000 && dd->mode == DETECT_UINT_LT);
|
||||
DetectNfsProcedureFree(NULL, dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \test This is a test for a valid value 1490000000.
|
||||
*
|
||||
* \retval 1 on success.
|
||||
* \retval 0 on failure.
|
||||
*/
|
||||
static int ValidityTestParse15 (void)
|
||||
{
|
||||
DetectU32Data *dd = NULL;
|
||||
dd = DetectNfsProcedureParse(" 1490000000 ");
|
||||
FAIL_IF_NULL(dd);
|
||||
FAIL_IF_NOT(dd->arg1 == 1490000000 && dd->mode == DETECT_UINT_EQ);
|
||||
DetectNfsProcedureFree(NULL, dd);
|
||||
PASS;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Register unit tests for nfs_procedure.
|
||||
*/
|
||||
void DetectNfsProcedureRegisterTests(void)
|
||||
{
|
||||
UtRegisterTest("ValidityTestParse01", ValidityTestParse01);
|
||||
UtRegisterTest("ValidityTestParse02", ValidityTestParse02);
|
||||
UtRegisterTest("ValidityTestParse03", ValidityTestParse03);
|
||||
UtRegisterTest("ValidityTestParse04", ValidityTestParse04);
|
||||
UtRegisterTest("ValidityTestParse05", ValidityTestParse05);
|
||||
UtRegisterTest("ValidityTestParse06", ValidityTestParse06);
|
||||
UtRegisterTest("ValidityTestParse07", ValidityTestParse07);
|
||||
UtRegisterTest("ValidityTestParse08", ValidityTestParse08);
|
||||
UtRegisterTest("ValidityTestParse09", ValidityTestParse09);
|
||||
UtRegisterTest("ValidityTestParse10", ValidityTestParse10);
|
||||
UtRegisterTest("ValidityTestParse11", ValidityTestParse11);
|
||||
UtRegisterTest("ValidityTestParse12", ValidityTestParse12);
|
||||
UtRegisterTest("ValidityTestParse13", ValidityTestParse13);
|
||||
UtRegisterTest("ValidityTestParse14", ValidityTestParse14);
|
||||
UtRegisterTest("ValidityTestParse15", ValidityTestParse15);
|
||||
}
|
||||
#endif /* UNITTESTS */
|
||||
@ -1,30 +0,0 @@
|
||||
/* Copyright (C) 2017 Open Information Security Foundation
|
||||
*
|
||||
* You can copy, redistribute or modify this Program under the terms of
|
||||
* the GNU General Public License version 2 as published by the Free
|
||||
* Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* version 2 along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file
|
||||
*
|
||||
* \author Victor Julien <victor@inliniac.net>
|
||||
*/
|
||||
|
||||
#ifndef SURICATA_DETECT_NFS_PROCEDURE_H
|
||||
#define SURICATA_DETECT_NFS_PROCEDURE_H
|
||||
|
||||
/* prototypes */
|
||||
void DetectNfsProcedureRegister (void);
|
||||
|
||||
#endif /* SURICATA_DETECT_NFS_PROCEDURE_H */
|
||||
Loading…
Reference in New Issue