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"
44
45static int DetectPktDataSetup (DetectEngineCtx *, Signature *, const char *);
46#ifdef UNITTESTS
47static void DetectPktDataTestRegister(void);
48#endif
49
50/**
51 * \brief Registration function for keyword: file_data
52 */
54{
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 */
74static 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*********************************/
88static int DetectPktDataTest02(void)
89{
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;)");
99 PASS;
100}
101
102static void DetectPktDataTestRegister(void)
103{
104 UtRegisterTest("DetectPktDataTest02", DetectPktDataTest02);
105}
106#endif
DetectEngineCtx * DetectEngineCtxInit(void)
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
Data structures and function prototypes for keeping state for the detection engine.
SigTableElmt * sigmatch_table
void DetectPktDataRegister(void)
Registration function for keyword: file_data.
#define SIGMATCH_NOOPT
Definition detect.h:1651
#define DE_QUIET
Definition detect.h:330
#define DETECT_SM_LIST_NOTSET
Definition detect.h:144
DetectEngineCtx * de_ctx
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
#define PASS
Pass the test.
#define FAIL_IF_NOT_NULL(expr)
Fail a test if expression evaluates to non-NULL.
main detection engine ctx
Definition detect.h:932
uint8_t flags
Definition detect.h:934
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition detect.h:1441
uint16_t flags
Definition detect.h:1450
void(* RegisterTests)(void)
Definition detect.h:1448
const char * name
Definition detect.h:1459
DetectEngineTransforms transforms
Definition detect.h:631
Signature container.
Definition detect.h:668
SignatureInitData * init_data
Definition detect.h:747
#define SCEnter(...)
Definition util-debug.h:277
#define SCReturnInt(x)
Definition util-debug.h:281
#define SCLogError(...)
Macro used to log ERROR messages.
Definition util-debug.h:267