suricata
detect-pkt-data.c
Go to the documentation of this file.
1 /* Copyright (C) 2012-2020 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  * \file
20  *
21  * \author Xavier Lange <xrlange@gmail.com>
22  *
23  */
24 
25 #include "suricata-common.h"
26 #include "threads.h"
27 #include "decode.h"
28 
29 #include "detect.h"
30 #include "detect-parse.h"
31 #include "detect-pkt-data.h"
32 #include "detect-engine.h"
33 #include "detect-engine-mpm.h"
34 #include "detect-engine-state.h"
35 
36 #include "flow.h"
37 #include "flow-var.h"
38 #include "flow-util.h"
39 
40 #include "util-debug.h"
41 #include "util-spm-bm.h"
42 #include "util-unittest.h"
43 #include "util-unittest-helper.h"
44 
45 static int DetectPktDataSetup (DetectEngineCtx *, Signature *, const char *);
46 #ifdef UNITTESTS
47 static void DetectPktDataTestRegister(void);
48 #endif
49 
50 /**
51  * \brief Registration function for keyword: file_data
52  */
54 {
55  sigmatch_table[DETECT_PKT_DATA].name = "pkt_data";
56  sigmatch_table[DETECT_PKT_DATA].Setup = DetectPktDataSetup;
57 #ifdef UNITTESTS
58  sigmatch_table[DETECT_PKT_DATA].RegisterTests = DetectPktDataTestRegister;
59 #endif
61 }
62 
63 /**
64  * \brief this function is used to parse pkt_data options
65  * \brief into the current signature
66  *
67  * \param de_ctx pointer to the Detection Engine Context
68  * \param s pointer to the current signature
69  * \param unused unused for keyword with SIGMATCH_NOOPT set
70  *
71  * \retval 0 on Success
72  * \retval -1 on Failure
73  */
74 static int DetectPktDataSetup (DetectEngineCtx *de_ctx, Signature *s, const char *unused)
75 {
76  SCEnter();
77  if (s->init_data->transforms.cnt) {
78  SCLogError("previous transforms not consumed before 'pkt_data'");
79  SCReturnInt(-1);
80  }
82  SCReturnInt(0);
83 }
84 
85 #ifdef UNITTESTS
86 
87 /************************************Unittests*********************************/
88 static int DetectPktDataTest02(void)
89 {
92  de_ctx->flags |= DE_QUIET;
93 
94  Signature *sig = DetectEngineAppendSig(de_ctx, "alert tcp any any -> any any "
95  "(file_data; compress_whitespace; "
96  " pkt_data; content:\"in pkt data\"; sid:1;)");
97  FAIL_IF_NOT_NULL(sig);
99  PASS;
100 }
101 
102 static void DetectPktDataTestRegister(void)
103 {
104  UtRegisterTest("DetectPktDataTest02", DetectPktDataTest02);
105 }
106 #endif
DETECT_PKT_DATA
@ DETECT_PKT_DATA
Definition: detect-engine-register.h:186
detect-engine.h
FAIL_IF_NULL
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
Definition: util-unittest.h:89
flow-util.h
SigTableElmt_::name
const char * name
Definition: detect.h:1296
UtRegisterTest
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
Definition: util-unittest.c:103
threads.h
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1290
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:839
DetectEngineCtxFree
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
Definition: detect-engine.c:2533
DE_QUIET
#define DE_QUIET
Definition: detect.h:324
DetectEngineAppendSig
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
Definition: detect-parse.c:2620
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1281
util-unittest.h
util-unittest-helper.h
decode.h
FAIL_IF_NOT_NULL
#define FAIL_IF_NOT_NULL(expr)
Fail a test if expression evaluates to non-NULL.
Definition: util-unittest.h:96
util-debug.h
PASS
#define PASS
Pass the test.
Definition: util-unittest.h:105
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
SignatureInitData_::list
int list
Definition: detect.h:565
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
detect-engine-mpm.h
detect.h
DetectPktDataRegister
void DetectPktDataRegister(void)
Registration function for keyword: file_data.
Definition: detect-pkt-data.c:53
Signature_::init_data
SignatureInitData * init_data
Definition: detect.h:665
detect-engine-state.h
Data structures and function prototypes for keeping state for the detection engine.
DETECT_SM_LIST_NOTSET
#define DETECT_SM_LIST_NOTSET
Definition: detect.h:141
suricata-common.h
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:127
util-spm-bm.h
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
detect-parse.h
Signature_
Signature container.
Definition: detect.h:596
detect-pkt-data.h
DetectEngineCtxInit
DetectEngineCtx * DetectEngineCtxInit(void)
Definition: detect-engine.c:2494
DetectEngineTransforms::cnt
int cnt
Definition: detect.h:411
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1476
DetectEngineCtx_::flags
uint8_t flags
Definition: detect.h:841
SignatureInitData_::transforms
DetectEngineTransforms transforms
Definition: detect.h:568
flow.h
SCReturnInt
#define SCReturnInt(x)
Definition: util-debug.h:275
flow-var.h
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1288