suricata
detect-id.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 Pablo Rincon Crespo <pablo.rincon.crespo@gmail.com>
22  *
23  * Implements the id keyword
24  */
25 
26 #include "suricata-common.h"
27 #include "decode.h"
28 #include "detect.h"
29 
30 #include "detect-parse.h"
31 #include "detect-engine.h"
32 #include "detect-engine-mpm.h"
34 
35 #include "detect-id.h"
36 #include "flow.h"
37 #include "flow-var.h"
38 
39 #include "util-debug.h"
40 #include "util-byte.h"
41 #include "util-unittest.h"
42 #include "util-unittest-helper.h"
43 
44 /**
45  * \brief Regex for parsing "id" option, matching number or "number"
46  */
47 #define PARSE_REGEX "^\\s*([0-9]{1,5}|\"[0-9]{1,5}\")\\s*$"
48 
49 static DetectParseRegex parse_regex;
50 
51 static int DetectIdMatch (DetectEngineThreadCtx *, Packet *,
52  const Signature *, const SigMatchCtx *);
53 static int DetectIdSetup (DetectEngineCtx *, Signature *, const char *);
54 #ifdef UNITTESTS
55 static void DetectIdRegisterTests(void);
56 #endif
57 void DetectIdFree(DetectEngineCtx *, void *);
58 
59 static int PrefilterSetupId(DetectEngineCtx *de_ctx, SigGroupHead *sgh);
60 static bool PrefilterIdIsPrefilterable(const Signature *s);
61 
62 /**
63  * \brief Registration function for keyword: id
64  */
65 void DetectIdRegister (void)
66 {
68  sigmatch_table[DETECT_ID].desc = "match on a specific IP ID value";
69  sigmatch_table[DETECT_ID].url = "/rules/header-keywords.html#id";
70  sigmatch_table[DETECT_ID].Match = DetectIdMatch;
71  sigmatch_table[DETECT_ID].Setup = DetectIdSetup;
73 #ifdef UNITTESTS
74  sigmatch_table[DETECT_ID].RegisterTests = DetectIdRegisterTests;
75 #endif
76  sigmatch_table[DETECT_ID].SupportsPrefilter = PrefilterIdIsPrefilterable;
77  sigmatch_table[DETECT_ID].SetupPrefilter = PrefilterSetupId;
78 
79  DetectSetupParseRegexes(PARSE_REGEX, &parse_regex);
80 }
81 
82 /**
83  * \brief This function is used to match the specified id on a packet
84  *
85  * \param t pointer to thread vars
86  * \param det_ctx pointer to the pattern matcher thread
87  * \param p pointer to the current packet
88  * \param m pointer to the sigmatch that we will cast into DetectIdData
89  *
90  * \retval 0 no match
91  * \retval 1 match
92  */
93 static int DetectIdMatch (DetectEngineThreadCtx *det_ctx, Packet *p,
94  const Signature *s, const SigMatchCtx *ctx)
95 {
96  const DetectIdData *id_d = (const DetectIdData *)ctx;
97 
98  /**
99  * To match a ipv4 packet with a "id" rule
100  */
101  if (!PacketIsIPv4(p) || PKT_IS_PSEUDOPKT(p)) {
102  return 0;
103  }
104 
105  const IPV4Hdr *ip4h = PacketGetIPv4(p);
106  if (id_d->id == IPV4_GET_RAW_IPID(ip4h)) {
107  SCLogDebug("IPV4 Proto and matched with ip_id: %u.\n",
108  id_d->id);
109  return 1;
110  }
111 
112  return 0;
113 }
114 
115 /**
116  * \brief This function is used to parse IPV4 ip_id passed via keyword: "id"
117  *
118  * \param idstr Pointer to the user provided id option
119  *
120  * \retval id_d pointer to DetectIdData on success
121  * \retval NULL on failure
122  */
123 static DetectIdData *DetectIdParse (const char *idstr)
124 {
125  uint16_t temp;
126  DetectIdData *id_d = NULL;
127  int res = 0;
128  size_t pcre2len;
129  pcre2_match_data *match = NULL;
130 
131  int ret = DetectParsePcreExec(&parse_regex, &match, idstr, 0, 0);
132 
133  if (ret < 1 || ret > 3) {
134  SCLogError("invalid id option '%s'. The id option "
135  "value must be in the range %u - %u",
137  goto error;
138  }
139 
140  char copy_str[128] = "";
141  char *tmp_str;
142  pcre2len = sizeof(copy_str);
143  res = pcre2_substring_copy_bynumber(match, 1, (PCRE2_UCHAR8 *)copy_str, &pcre2len);
144  if (res < 0) {
145  SCLogError("pcre2_substring_copy_bynumber failed");
146  goto error;
147  }
148  tmp_str = copy_str;
149 
150  /* Let's see if we need to scape "'s */
151  if (tmp_str[0] == '"')
152  {
153  tmp_str[strlen(tmp_str) - 1] = '\0';
154  tmp_str += 1;
155  }
156 
157  /* ok, fill the id data */
158  if (StringParseUint16(&temp, 10, 0, (const char *)tmp_str) < 0) {
159  SCLogError("invalid id option '%s'", tmp_str);
160  goto error;
161  }
162 
163  /* We have a correct id option */
164  id_d = SCMalloc(sizeof(DetectIdData));
165  if (unlikely(id_d == NULL))
166  goto error;
167 
168  id_d->id = temp;
169 
170  SCLogDebug("detect-id: will look for ip_id: %u\n", id_d->id);
171  pcre2_match_data_free(match);
172  return id_d;
173 
174 error:
175  if (match) {
176  pcre2_match_data_free(match);
177  }
178  return NULL;
179 }
180 
181 /**
182  * \brief this function is used to add the parsed "id" option
183  * \brief into the current signature
184  *
185  * \param de_ctx pointer to the Detection Engine Context
186  * \param s pointer to the Current Signature
187  * \param idstr pointer to the user provided "id" option
188  *
189  * \retval 0 on Success
190  * \retval -1 on Failure
191  */
192 int DetectIdSetup (DetectEngineCtx *de_ctx, Signature *s, const char *idstr)
193 {
194  DetectIdData *id_d = NULL;
195 
196  id_d = DetectIdParse(idstr);
197  if (id_d == NULL)
198  return -1;
199 
200  /* Okay so far so good, lets get this into a SigMatch
201  * and put it in the Signature. */
203  NULL) {
204  DetectIdFree(de_ctx, id_d);
205  return -1;
206  }
208  return 0;
209 }
210 
211 /**
212  * \brief this function will free memory associated with DetectIdData
213  *
214  * \param id_d pointer to DetectIdData
215  */
217 {
218  DetectIdData *id_d = (DetectIdData *)ptr;
219  SCFree(id_d);
220 }
221 
222 /* prefilter code */
223 
224 static void
225 PrefilterPacketIdMatch(DetectEngineThreadCtx *det_ctx, Packet *p, const void *pectx)
226 {
227  const PrefilterPacketHeaderCtx *ctx = pectx;
228 
229  if (!PacketIsIPv4(p) || PKT_IS_PSEUDOPKT(p)) {
230  return;
231  }
232 
233  if (!PrefilterPacketHeaderExtraMatch(ctx, p))
234  return;
235 
236  const IPV4Hdr *ip4h = PacketGetIPv4(p);
237  if (ctx->v1.u16[0] == IPV4_GET_RAW_IPID(ip4h)) {
238  SCLogDebug("packet matches IP id %u", ctx->v1.u16[0]);
239  PrefilterAddSids(&det_ctx->pmq, ctx->sigs_array, ctx->sigs_cnt);
240  }
241 }
242 
243 static void
244 PrefilterPacketIdSet(PrefilterPacketHeaderValue *v, void *smctx)
245 {
246  const DetectIdData *a = smctx;
247  v->u16[0] = a->id;
248 }
249 
250 static bool
251 PrefilterPacketIdCompare(PrefilterPacketHeaderValue v, void *smctx)
252 {
253  const DetectIdData *a = smctx;
254  if (v.u16[0] == a->id)
255  return true;
256  return false;
257 }
258 
259 static int PrefilterSetupId(DetectEngineCtx *de_ctx, SigGroupHead *sgh)
260 {
262  PrefilterPacketIdSet,
263  PrefilterPacketIdCompare,
264  PrefilterPacketIdMatch);
265 }
266 
267 static bool PrefilterIdIsPrefilterable(const Signature *s)
268 {
269  const SigMatch *sm;
270  for (sm = s->init_data->smlists[DETECT_SM_LIST_MATCH] ; sm != NULL; sm = sm->next) {
271  switch (sm->type) {
272  case DETECT_ID:
273  return true;
274  }
275  }
276  return false;
277 }
278 
279 #ifdef UNITTESTS /* UNITTESTS */
280 
281 /**
282  * \test DetectIdTestParse01 is a test to make sure that we parse the "id"
283  * option correctly when given valid id option
284  */
285 static int DetectIdTestParse01 (void)
286 {
287  DetectIdData *id_d = DetectIdParse(" 35402 ");
288 
289  FAIL_IF_NULL(id_d);
290  FAIL_IF_NOT(id_d->id == 35402);
291 
292  DetectIdFree(NULL, id_d);
293 
294  PASS;
295 }
296 
297 /**
298  * \test DetectIdTestParse02 is a test to make sure that we parse the "id"
299  * option correctly when given an invalid id option
300  * it should return id_d = NULL
301  */
302 static int DetectIdTestParse02 (void)
303 {
304  DetectIdData *id_d = DetectIdParse("65537");
305 
306  FAIL_IF_NOT_NULL(id_d);
307 
308  PASS;
309 }
310 
311 /**
312  * \test DetectIdTestParse03 is a test to make sure that we parse the "id"
313  * option correctly when given an invalid id option
314  * it should return id_d = NULL
315  */
316 static int DetectIdTestParse03 (void)
317 {
318  DetectIdData *id_d = DetectIdParse("12what?");
319 
320  FAIL_IF_NOT_NULL(id_d);
321 
322  PASS;
323 }
324 
325 /**
326  * \test DetectIdTestParse04 is a test to make sure that we parse the "id"
327  * option correctly when given valid id option but wrapped with "'s
328  */
329 static int DetectIdTestParse04 (void)
330 {
331  /* yep, look if we trim blank spaces correctly and ignore "'s */
332  DetectIdData *id_d = DetectIdParse(" \"35402\" ");
333 
334  FAIL_IF_NULL(id_d);
335  FAIL_IF_NOT(id_d->id == 35402);
336 
337  DetectIdFree(NULL, id_d);
338 
339  PASS;
340 }
341 
342 /**
343  * \test DetectIdTestSig01
344  * \brief Test to check "id" keyword with constructed packets
345  */
346 static int DetectIdTestMatch01(void)
347 {
348  uint8_t *buf = (uint8_t *)"Hi all!";
349  uint16_t buflen = strlen((char *)buf);
350  Packet *p[3];
351  p[0] = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_TCP);
352  p[1] = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_UDP);
353  p[2] = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_ICMP);
354 
355  FAIL_IF_NULL(p[0]);
356  FAIL_IF_NULL(p[1]);
357  FAIL_IF_NULL(p[2]);
358 
359  /* TCP IP id = 1234 */
360  p[0]->l3.hdrs.ip4h->ip_id = htons(1234);
361 
362  /* UDP IP id = 5678 */
363  p[1]->l3.hdrs.ip4h->ip_id = htons(5678);
364 
365  /* UDP IP id = 91011 */
366  p[2]->l3.hdrs.ip4h->ip_id = htons(5101);
367 
368  const char *sigs[3];
369  sigs[0]= "alert ip any any -> any any (msg:\"Testing id 1\"; id:1234; sid:1;)";
370  sigs[1]= "alert ip any any -> any any (msg:\"Testing id 2\"; id:5678; sid:2;)";
371  sigs[2]= "alert ip any any -> any any (msg:\"Testing id 3\"; id:5101; sid:3;)";
372 
373  uint32_t sid[3] = {1, 2, 3};
374 
375  uint32_t results[3][3] = {
376  /* packet 0 match sid 1 but should not match sid 2 */
377  {1, 0, 0},
378  /* packet 1 should not match */
379  {0, 1, 0},
380  /* packet 2 should not match */
381  {0, 0, 1} };
382 
383  FAIL_IF_NOT(UTHGenericTest(p, 3, sigs, sid, (uint32_t *)results, 3));
384 
385  UTHFreePackets(p, 3);
386 
387  PASS;
388 }
389 
390 /**
391  * \brief this function registers unit tests for DetectId
392  */
393 void DetectIdRegisterTests(void)
394 {
395  UtRegisterTest("DetectIdTestParse01", DetectIdTestParse01);
396  UtRegisterTest("DetectIdTestParse02", DetectIdTestParse02);
397  UtRegisterTest("DetectIdTestParse03", DetectIdTestParse03);
398  UtRegisterTest("DetectIdTestParse04", DetectIdTestParse04);
399  UtRegisterTest("DetectIdTestMatch01", DetectIdTestMatch01);
400 
401 }
402 #endif /* UNITTESTS */
util-byte.h
SigTableElmt_::url
const char * url
Definition: detect.h:1299
IPV4_GET_RAW_IPID
#define IPV4_GET_RAW_IPID(ip4h)
Definition: decode-ipv4.h:99
detect-engine.h
FAIL_IF_NULL
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
Definition: util-unittest.h:89
SignatureInitData_::smlists
struct SigMatch_ * smlists[DETECT_SM_LIST_MAX]
Definition: detect.h:581
SigTableElmt_::desc
const char * desc
Definition: detect.h:1298
SigTableElmt_::Free
void(* Free)(DetectEngineCtx *, void *)
Definition: detect.h:1286
DetectParseRegex
Definition: detect-parse.h:62
SigTableElmt_::name
const char * name
Definition: detect.h:1296
PKT_IS_PSEUDOPKT
#define PKT_IS_PSEUDOPKT(p)
return 1 if the packet is a pseudo packet
Definition: decode.h:1315
SigGroupHead_
Container for matching data for a signature group.
Definition: detect.h:1448
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
UtRegisterTest
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
Definition: util-unittest.c:103
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
DETECT_ID
@ DETECT_ID
Definition: detect-engine-register.h:83
results
struct DetectRfbSecresult_ results[]
DetectEngineThreadCtx_::pmq
PrefilterRuleStore pmq
Definition: detect.h:1204
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:839
DetectIdData_::id
uint16_t id
Definition: detect-id.h:31
StringParseUint16
int StringParseUint16(uint16_t *res, int base, size_t len, const char *str)
Definition: util-byte.c:337
PrefilterPacketHeaderCtx_::sigs_array
SigIntId * sigs_array
Definition: detect-engine-prefilter-common.h:43
PARSE_REGEX
#define PARSE_REGEX
Regex for parsing "id" option, matching number or "number".
Definition: detect-id.c:47
IPV4Hdr_::ip_id
uint16_t ip_id
Definition: decode-ipv4.h:76
PacketL3::hdrs
union PacketL3::Hdrs hdrs
UTHBuildPacket
Packet * UTHBuildPacket(uint8_t *payload, uint16_t payload_len, uint8_t ipproto)
UTHBuildPacket is a wrapper that build packets with default ip and port fields.
Definition: util-unittest-helper.c:359
DetectParsePcreExec
int DetectParsePcreExec(DetectParseRegex *parse_regex, pcre2_match_data **match, const char *str, int start_offset, int options)
Definition: detect-parse.c:2674
PrefilterPacketHeaderCtx_::sigs_cnt
uint32_t sigs_cnt
Definition: detect-engine-prefilter-common.h:42
PacketL3::Hdrs::ip4h
IPV4Hdr * ip4h
Definition: decode.h:427
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1281
PrefilterPacketHeaderValue::u16
uint16_t u16[8]
Definition: detect-engine-prefilter-common.h:25
util-unittest.h
util-unittest-helper.h
FAIL_IF_NOT
#define FAIL_IF_NOT(expr)
Fail a test if expression evaluates to false.
Definition: util-unittest.h:82
SigTableElmt_::SetupPrefilter
int(* SetupPrefilter)(DetectEngineCtx *de_ctx, struct SigGroupHead_ *sgh)
Definition: detect.h:1284
PrefilterPacketHeaderCtx_
Definition: detect-engine-prefilter-common.h:35
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
DetectEngineThreadCtx_
Definition: detect.h:1095
DetectSetupParseRegexes
void DetectSetupParseRegexes(const char *parse_str, DetectParseRegex *detect_parse)
Definition: detect-parse.c:2800
detect-engine-mpm.h
detect.h
SigMatch_::next
struct SigMatch_ * next
Definition: detect.h:354
DetectIdRegister
void DetectIdRegister(void)
Registration function for keyword: id.
Definition: detect-id.c:65
DETECT_SM_LIST_MATCH
@ DETECT_SM_LIST_MATCH
Definition: detect.h:114
Signature_::flags
uint32_t flags
Definition: detect.h:597
Packet_
Definition: decode.h:488
detect-id.h
Signature_::init_data
SignatureInitData * init_data
Definition: detect.h:665
SigTableElmt_::Match
int(* Match)(DetectEngineThreadCtx *, Packet *, const Signature *, const SigMatchCtx *)
Definition: detect.h:1264
PrefilterPacketHeaderCtx_::v1
PrefilterPacketHeaderValue v1
Definition: detect-engine-prefilter-common.h:36
SigMatchCtx_
Used to start a pointer to SigMatch context Should never be dereferenced without casting to something...
Definition: detect.h:345
IPV4Hdr_
Definition: decode-ipv4.h:72
DetectIdData_
Definition: detect-id.h:30
suricata-common.h
SigMatch_::type
uint16_t type
Definition: detect.h:351
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:127
UTHGenericTest
int UTHGenericTest(Packet **pkt, int numpkts, const char *sigs[], uint32_t sids[], uint32_t *results, int numsigs)
UTHGenericTest: function that perform a generic check taking care of as maximum common unittest eleme...
Definition: util-unittest-helper.c:565
PrefilterSetupPacketHeader
int PrefilterSetupPacketHeader(DetectEngineCtx *de_ctx, SigGroupHead *sgh, int sm_type, void(*Set)(PrefilterPacketHeaderValue *v, void *), bool(*Compare)(PrefilterPacketHeaderValue v, void *), void(*Match)(DetectEngineThreadCtx *det_ctx, Packet *p, const void *pectx))
Definition: detect-engine-prefilter-common.c:417
SCMalloc
#define SCMalloc(sz)
Definition: util-mem.h:47
Packet_::l3
struct PacketL3 l3
Definition: decode.h:589
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
DETECT_IPID_MAX
#define DETECT_IPID_MAX
Definition: detect-id.h:28
SCFree
#define SCFree(p)
Definition: util-mem.h:61
SigTableElmt_::SupportsPrefilter
bool(* SupportsPrefilter)(const Signature *s)
Definition: detect.h:1283
detect-parse.h
Signature_
Signature container.
Definition: detect.h:596
SigMatch_
a single match condition for a signature
Definition: detect.h:350
DETECT_IPID_MIN
#define DETECT_IPID_MIN
Definition: detect-id.h:27
DetectIdFree
void DetectIdFree(DetectEngineCtx *, void *)
this function will free memory associated with DetectIdData
Definition: detect-id.c:216
PrefilterPacketHeaderValue
Definition: detect-engine-prefilter-common.h:23
SigMatchAppendSMToList
SigMatch * SigMatchAppendSMToList(DetectEngineCtx *de_ctx, Signature *s, uint16_t type, SigMatchCtx *ctx, const int list)
Append a SigMatch to the list type.
Definition: detect-parse.c:447
detect-engine-prefilter-common.h
flow.h
flow-var.h
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1288
SIG_FLAG_REQUIRE_PACKET
#define SIG_FLAG_REQUIRE_PACKET
Definition: detect.h:249
UTHFreePackets
void UTHFreePackets(Packet **p, int numpkts)
UTHFreePackets: function to release the allocated data from UTHBuildPacket and the packet itself.
Definition: util-unittest-helper.c:450