suricata
detect-sid.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2021 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 Victor Julien <victor@inliniac.net>
22  *
23  * Implements the sid keyword
24  */
25 
26 #include "suricata-common.h"
27 #include "detect.h"
28 #include "detect-engine.h"
29 #include "detect-parse.h"
30 #include "detect-sid.h"
31 #include "util-debug.h"
32 #include "util-error.h"
33 #include "util-unittest.h"
34 
35 static int DetectSidSetup (DetectEngineCtx *, Signature *, const char *);
36 #ifdef UNITTESTS
37 static void DetectSidRegisterTests(void);
38 #endif
39 
40 void DetectSidRegister (void)
41 {
43  sigmatch_table[DETECT_SID].desc = "set rule ID";
44  sigmatch_table[DETECT_SID].url = "/rules/meta.html#sid-signature-id";
46  sigmatch_table[DETECT_SID].Setup = DetectSidSetup;
47 #ifdef UNITTESTS
48  sigmatch_table[DETECT_SID].RegisterTests = DetectSidRegisterTests;
49 #endif
50 }
51 
52 static int DetectSidSetup (DetectEngineCtx *de_ctx, Signature *s, const char *sidstr)
53 {
54  unsigned long id = 0;
55  char *endptr = NULL;
56  id = strtoul(sidstr, &endptr, 10);
57  if (endptr == NULL || *endptr != '\0') {
58  SCLogError("invalid character as arg "
59  "to sid keyword");
60  goto error;
61  }
62  if (id >= UINT_MAX) {
63  SCLogError("sid value too high, max %u", UINT_MAX);
64  goto error;
65  }
66  if (id == 0) {
67  SCLogError("sid value 0 is invalid");
68  goto error;
69  }
70  if (s->id > 0) {
71  SCLogError("duplicated 'sid' keyword detected");
72  goto error;
73  }
74 
75  s->id = (uint32_t)id;
76  return 0;
77 
78  error:
79  return -1;
80 }
81 
82 #ifdef UNITTESTS
83 
84 static int SidTestParse01(void)
85 {
88 
89  Signature *s =
90  DetectEngineAppendSig(de_ctx, "alert tcp 1.2.3.4 any -> any any (sid:1; gid:1;)");
91  FAIL_IF_NULL(s);
92  FAIL_IF(s->id != 1);
93 
95  PASS;
96 }
97 
98 static int SidTestParse02(void)
99 {
102 
104  DetectEngineAppendSig(de_ctx, "alert tcp 1.2.3.4 any -> any any (sid:a; gid:1;)"));
105 
107  PASS;
108 }
109 
110 static int SidTestParse03(void)
111 {
114 
116  de_ctx, "alert tcp any any -> any any (content:\"ABC\"; sid:\";)"));
117 
119  PASS;
120 }
121 
122 static int SidTestParse04(void)
123 {
126 
128  de_ctx, "alert tcp any any -> any any (content:\"ABC\"; sid: 0;)"));
129 
130  /* Let's also make sure that Suricata fails a rule which doesn't have a sid at all */
132  DetectEngineAppendSig(de_ctx, "alert tcp any any -> any any (content:\"ABC\";)"));
133 
135  PASS;
136 }
137 
138 /**
139  * \brief Register DetectSid unit tests.
140  */
141 static void DetectSidRegisterTests(void)
142 {
143  UtRegisterTest("SidTestParse01", SidTestParse01);
144  UtRegisterTest("SidTestParse02", SidTestParse02);
145  UtRegisterTest("SidTestParse03", SidTestParse03);
146  UtRegisterTest("SidTestParse04", SidTestParse04);
147 }
148 #endif /* UNITTESTS */
SigTableElmt_::url
const char * url
Definition: detect.h:1296
detect-engine.h
FAIL_IF_NULL
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
Definition: util-unittest.h:89
SigTableElmt_::desc
const char * desc
Definition: detect.h:1295
detect-sid.h
DetectSidRegister
void DetectSidRegister(void)
Definition: detect-sid.c:40
SigTableElmt_::name
const char * name
Definition: detect.h:1293
UtRegisterTest
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
Definition: util-unittest.c:103
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:836
DetectEngineCtxFree
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
Definition: detect-engine.c:2580
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:1278
DETECT_SID
@ DETECT_SID
Definition: detect-engine-register.h:28
util-unittest.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
util-error.h
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
detect.h
SigTableElmt_::Match
int(* Match)(DetectEngineThreadCtx *, Packet *, const Signature *, const SigMatchCtx *)
Definition: detect.h:1261
FAIL_IF
#define FAIL_IF(expr)
Fail a test if expression evaluates to true.
Definition: util-unittest.h:71
suricata-common.h
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:127
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
Signature_::id
uint32_t id
Definition: detect.h:628
detect-parse.h
Signature_
Signature container.
Definition: detect.h:593
DetectEngineCtxInit
DetectEngineCtx * DetectEngineCtxInit(void)
Definition: detect-engine.c:2541
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1285