suricata
detect-isdataat.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-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 Pablo Rincon <pablo.rincon.crespo@gmail.com>
22  *
23  * Implements isdataat keyword
24  */
25 
26 #include "suricata-common.h"
27 #include "decode.h"
28 #include "detect.h"
29 #include "detect-engine.h"
30 #include "detect-parse.h"
31 #include "app-layer.h"
32 
33 #include "util-unittest.h"
34 #include "util-unittest-helper.h"
35 
36 #include "detect-isdataat.h"
37 #include "detect-content.h"
38 #include "detect-bytetest.h"
39 #include "detect-uricontent.h"
40 #include "detect-engine-build.h"
41 
42 #include "flow.h"
43 #include "flow-var.h"
44 
45 #include "util-debug.h"
46 #include "util-byte.h"
47 #include "detect-pcre.h"
48 #include "detect-byte.h"
49 
50 /**
51  * \brief Regex for parsing our isdataat options
52  */
53 #define PARSE_REGEX "^\\s*!?([^\\s,]+)\\s*(,\\s*relative)?\\s*(,\\s*rawbytes\\s*)?\\s*$"
54 
55 static DetectParseRegex parse_regex;
56 
57 int DetectIsdataatSetup (DetectEngineCtx *, Signature *, const char *);
58 #ifdef UNITTESTS
59 static void DetectIsdataatRegisterTests(void);
60 static void DetectAbsentRegisterTests(void);
61 #endif
62 void DetectIsdataatFree(DetectEngineCtx *, void *);
63 
64 static int DetectEndsWithSetup (DetectEngineCtx *de_ctx, Signature *s, const char *nullstr);
65 
66 static void DetectAbsentFree(DetectEngineCtx *de_ctx, void *ptr)
67 {
68  SCFree(ptr);
69 }
70 
71 static int DetectAbsentSetup(DetectEngineCtx *de_ctx, Signature *s, const char *optstr)
72 {
74  SCLogError("no buffer for absent keyword");
75  return -1;
76  }
77 
78  if (DetectBufferGetActiveList(de_ctx, s) == -1)
79  return -1;
80 
81  bool or_else;
82  if (optstr == NULL) {
83  or_else = false;
84  } else if (strcmp(optstr, "or_else") == 0) {
85  or_else = true;
86  } else {
87  SCLogError("unhandled value for absent keyword: %s", optstr);
88  return -1;
89  }
90  if (s->init_data->curbuf == NULL || s->init_data->list != (int)s->init_data->curbuf->id) {
91  SCLogError("unspected buffer for absent keyword");
92  return -1;
93  }
95  if (!b || b->frame) {
96  SCLogError("absent does not work with frames");
97  return -1;
98  }
99  if (s->init_data->curbuf->tail != NULL) {
100  SCLogError("absent must come first right after buffer");
101  return -1;
102  }
104  if (unlikely(dad == NULL))
105  return -1;
106 
107  dad->or_else = or_else;
108 
110  NULL) {
111  DetectAbsentFree(de_ctx, dad);
112  return -1;
113  }
114  return 0;
115 }
116 
118 {
119  bool has_other = false;
120  bool only_absent = false;
121  bool has_absent = false;
122  for (const SigMatch *sm = b->head; sm != NULL; sm = sm->next) {
123  if (sm->type == DETECT_ABSENT) {
124  has_absent = true;
125  const DetectAbsentData *dad = (const DetectAbsentData *)sm->ctx;
126  if (!dad->or_else) {
127  only_absent = true;
128  }
129  } else {
130  has_other = true;
131  if (sm->type == DETECT_CONTENT) {
132  const DetectContentData *cd = (DetectContentData *)sm->ctx;
133  if (has_absent && (cd->flags & DETECT_CONTENT_FAST_PATTERN)) {
134  SCLogError("signature can't have absent and fast_pattern on the same buffer");
135  return false;
136  }
137  }
138  }
139  }
140 
141  if (only_absent && has_other) {
142  SCLogError("signature can't have a buffer tested absent and tested with other keywords "
143  "such as content");
144  return false;
145  } else if (has_absent && !only_absent && !has_other) {
146  SCLogError(
147  "signature with absent: or_else expects other keywords to test on such as content");
148  return false;
149  }
150  return true;
151 }
152 
153 /**
154  * \brief Registration function for isdataat: keyword
155  */
157 {
158  sigmatch_table[DETECT_ISDATAAT].name = "isdataat";
159  sigmatch_table[DETECT_ISDATAAT].desc = "check if there is still data at a specific part of the payload";
160  sigmatch_table[DETECT_ISDATAAT].url = "/rules/payload-keywords.html#isdataat";
161  /* match is handled in DetectEngineContentInspection() */
165 #ifdef UNITTESTS
166  sigmatch_table[DETECT_ISDATAAT].RegisterTests = DetectIsdataatRegisterTests;
167 #endif
168  sigmatch_table[DETECT_ENDS_WITH].name = "endswith";
169  sigmatch_table[DETECT_ENDS_WITH].desc = "make sure the previous content matches exactly at the end of the buffer";
170  sigmatch_table[DETECT_ENDS_WITH].url = "/rules/payload-keywords.html#endswith";
171  sigmatch_table[DETECT_ENDS_WITH].Setup = DetectEndsWithSetup;
173 
174  sigmatch_table[DETECT_ABSENT].name = "absent";
175  sigmatch_table[DETECT_ABSENT].desc = "test if the buffer is absent";
176  sigmatch_table[DETECT_ABSENT].url = "/rules/payload-keywords.html#absent";
177  sigmatch_table[DETECT_ABSENT].Setup = DetectAbsentSetup;
178  sigmatch_table[DETECT_ABSENT].Free = DetectAbsentFree;
180 #ifdef UNITTESTS
181  sigmatch_table[DETECT_ABSENT].RegisterTests = DetectAbsentRegisterTests;
182 #endif
183 
184  DetectSetupParseRegexes(PARSE_REGEX, &parse_regex);
185 }
186 
187 /**
188  * \brief This function is used to parse isdataat options passed via isdataat: keyword
189  *
190  * \param de_ctx Pointer to the detection engine context
191  * \param isdataatstr Pointer to the user provided isdataat options
192  *
193  * \retval idad pointer to DetectIsdataatData on success
194  * \retval NULL on failure
195  */
196 static DetectIsdataatData *DetectIsdataatParse (DetectEngineCtx *de_ctx, const char *isdataatstr, char **offset)
197 {
198  DetectIsdataatData *idad = NULL;
199  char *args[3] = {NULL,NULL,NULL};
200  int res = 0;
201  size_t pcre2_len;
202  int i=0;
203 
204  pcre2_match_data *match = NULL;
205  int ret = DetectParsePcreExec(&parse_regex, &match, isdataatstr, 0, 0);
206  if (ret < 1 || ret > 4) {
207  SCLogError("pcre_exec parse error, ret %" PRId32 ", string %s", ret, isdataatstr);
208  goto error;
209  }
210 
211  if (ret > 1) {
212  const char *str_ptr;
213  res = pcre2_substring_get_bynumber(match, 1, (PCRE2_UCHAR8 **)&str_ptr, &pcre2_len);
214  if (res < 0) {
215  SCLogError("pcre2_substring_get_bynumber failed");
216  goto error;
217  }
218  args[0] = (char *)str_ptr;
219 
220 
221  if (ret > 2) {
222  res = pcre2_substring_get_bynumber(match, 2, (PCRE2_UCHAR8 **)&str_ptr, &pcre2_len);
223  if (res < 0) {
224  SCLogError("pcre2_substring_get_bynumber failed");
225  goto error;
226  }
227  args[1] = (char *)str_ptr;
228  }
229  if (ret > 3) {
230  res = pcre2_substring_get_bynumber(match, 3, (PCRE2_UCHAR8 **)&str_ptr, &pcre2_len);
231  if (res < 0) {
232  SCLogError("pcre2_substring_get_bynumber failed");
233  goto error;
234  }
235  args[2] = (char *)str_ptr;
236  }
237 
238  idad = SCMalloc(sizeof(DetectIsdataatData));
239  if (unlikely(idad == NULL))
240  goto error;
241 
242  idad->flags = 0;
243  idad->dataat = 0;
244 
245  if (args[0][0] != '-' && isalpha((unsigned char)args[0][0])) {
246  if (offset == NULL) {
247  SCLogError("isdataat supplied with "
248  "var name for offset. \"offset\" argument supplied to "
249  "this function has to be non-NULL");
250  goto error;
251  }
252  *offset = SCStrdup(args[0]);
253  if (*offset == NULL)
254  goto error;
255  } else {
256  if (StringParseUint16(&idad->dataat, 10,
257  strlen(args[0]), args[0]) < 0 ) {
258  SCLogError("isdataat out of range");
259  SCFree(idad);
260  idad = NULL;
261  goto error;
262  }
263  }
264 
265  if (args[1] !=NULL) {
266  idad->flags |= ISDATAAT_RELATIVE;
267 
268  if(args[2] !=NULL)
269  idad->flags |= ISDATAAT_RAWBYTES;
270  }
271 
272  if (isdataatstr[0] == '!') {
273  idad->flags |= ISDATAAT_NEGATED;
274  }
275 
276  for (i = 0; i < (ret -1); i++) {
277  if (args[i] != NULL)
278  pcre2_substring_free((PCRE2_UCHAR8 *)args[i]);
279  }
280 
281  pcre2_match_data_free(match);
282  return idad;
283 
284  }
285 
286 error:
287  if (match) {
288  pcre2_match_data_free(match);
289  }
290  for (i = 0; i < (ret -1) && i < 3; i++){
291  if (args[i] != NULL)
292  pcre2_substring_free((PCRE2_UCHAR8 *)args[i]);
293  }
294 
295  if (idad != NULL)
296  DetectIsdataatFree(de_ctx, idad);
297  return NULL;
298 
299 }
300 
301 /**
302  * \brief This function is used to add the parsed isdataatdata into the current
303  * signature.
304  * \param de_ctx pointer to the Detection Engine Context
305  * \param s pointer to the Current Signature
306  * \param isdataatstr pointer to the user provided isdataat options
307  *
308  * \retval 0 on Success
309  * \retval -1 on Failure
310  */
311 int DetectIsdataatSetup (DetectEngineCtx *de_ctx, Signature *s, const char *isdataatstr)
312 {
313  SigMatch *prev_pm = NULL;
314  DetectIsdataatData *idad = NULL;
315  char *offset = NULL;
316  int ret = -1;
317 
318  idad = DetectIsdataatParse(de_ctx, isdataatstr, &offset);
319  if (idad == NULL)
320  return -1;
321 
322  int sm_list;
323  if (s->init_data->list != DETECT_SM_LIST_NOTSET) {
324  if (DetectBufferGetActiveList(de_ctx, s) == -1)
325  goto end;
326  sm_list = s->init_data->list;
327 
328  if (idad->flags & ISDATAAT_RELATIVE) {
330  }
331  } else if (idad->flags & ISDATAAT_RELATIVE) {
332  prev_pm = DetectGetLastSMFromLists(s,
336  if (prev_pm == NULL)
337  sm_list = DETECT_SM_LIST_PMATCH;
338  else {
339  sm_list = SigMatchListSMBelongsTo(s, prev_pm);
340  if (sm_list < 0)
341  goto end;
342  }
343  } else {
344  sm_list = DETECT_SM_LIST_PMATCH;
345  }
346 
347  if (offset != NULL) {
348  DetectByteIndexType index;
349  if (!DetectByteRetrieveSMVar(offset, s, &index)) {
350  SCLogError("Unknown byte_extract var "
351  "seen in isdataat - %s\n",
352  offset);
353  goto end;
354  }
355  idad->dataat = index;
356  idad->flags |= ISDATAAT_OFFSET_VAR;
357  SCLogDebug("isdataat uses byte_extract with local id %u", idad->dataat);
358  SCFree(offset);
359  offset = NULL;
360  }
361 
362  /* 'ends with' scenario */
363  if (prev_pm != NULL && prev_pm->type == DETECT_CONTENT &&
364  idad->dataat == 1 &&
366  {
367  DetectIsdataatFree(de_ctx, idad);
368  DetectContentData *cd = (DetectContentData *)prev_pm->ctx;
370  ret = 0;
371  goto end;
372  }
373 
374  if (SigMatchAppendSMToList(de_ctx, s, DETECT_ISDATAAT, (SigMatchCtx *)idad, sm_list) == NULL) {
375  goto end;
376  }
377 
378  if (!(idad->flags & ISDATAAT_RELATIVE)) {
379  ret = 0;
380  goto end;
381  }
382 
383  if (prev_pm == NULL) {
384  ret = 0;
385  goto end;
386  }
387 
388  if (prev_pm->type == DETECT_CONTENT) {
389  DetectContentData *cd = (DetectContentData *)prev_pm->ctx;
391  } else if (prev_pm->type == DETECT_PCRE) {
392  DetectPcreData *pd = (DetectPcreData *)prev_pm->ctx;
394  }
395 
396  ret = 0;
397 
398 end:
399  if (offset)
400  SCFree(offset);
401  if (ret != 0)
402  DetectIsdataatFree(de_ctx, idad);
403  return ret;
404 }
405 
406 /**
407  * \brief this function will free memory associated with DetectIsdataatData
408  *
409  * \param idad pointer to DetectIsdataatData
410  */
412 {
413  DetectIsdataatData *idad = (DetectIsdataatData *)ptr;
414  SCFree(idad);
415 }
416 
417 static int DetectEndsWithSetup (DetectEngineCtx *de_ctx, Signature *s, const char *nullstr)
418 {
419  SigMatch *pm = NULL;
420  int ret = -1;
421 
422  /* retrieve the sm to apply the depth against */
424  if (pm == NULL) {
425  SCLogError("endswith needs a "
426  "preceding content option");
427  goto end;
428  }
429 
430  /* verify other conditions. */
432 
434 
435  ret = 0;
436  end:
437  return ret;
438 }
439 
440 #ifdef UNITTESTS
441 static int g_dce_stub_data_buffer_id = 0;
442 
443 /**
444  * \test DetectIsdataatTestParse01 is a test to make sure that we return a correct IsdataatData structure
445  * when given valid isdataat opt
446  */
447 static int DetectIsdataatTestParse01 (void)
448 {
449  int result = 0;
450  DetectIsdataatData *idad = NULL;
451  idad = DetectIsdataatParse(NULL, "30 ", NULL);
452  if (idad != NULL) {
453  DetectIsdataatFree(NULL, idad);
454  result = 1;
455  }
456 
457  return result;
458 }
459 
460 /**
461  * \test DetectIsdataatTestParse02 is a test to make sure that we return a correct IsdataatData structure
462  * when given valid isdataat opt
463  */
464 static int DetectIsdataatTestParse02 (void)
465 {
466  int result = 0;
467  DetectIsdataatData *idad = NULL;
468  idad = DetectIsdataatParse(NULL, "30 , relative", NULL);
469  if (idad != NULL && idad->flags & ISDATAAT_RELATIVE && !(idad->flags & ISDATAAT_RAWBYTES)) {
470  DetectIsdataatFree(NULL, idad);
471  result = 1;
472  }
473 
474  return result;
475 }
476 
477 /**
478  * \test DetectIsdataatTestParse03 is a test to make sure that we return a correct IsdataatData structure
479  * when given valid isdataat opt
480  */
481 static int DetectIsdataatTestParse03 (void)
482 {
483  int result = 0;
484  DetectIsdataatData *idad = NULL;
485  idad = DetectIsdataatParse(NULL, "30,relative, rawbytes ", NULL);
486  if (idad != NULL && idad->flags & ISDATAAT_RELATIVE && idad->flags & ISDATAAT_RAWBYTES) {
487  DetectIsdataatFree(NULL, idad);
488  result = 1;
489  }
490 
491  return result;
492 }
493 
494 /**
495  * \test Test isdataat option for dce sig.
496  */
497 static int DetectIsdataatTestParse04(void)
498 {
499  Signature *s = SigAlloc();
500  FAIL_IF_NULL(s);
501 
503 
504  FAIL_IF_NOT(DetectIsdataatSetup(NULL, s, "30") == 0);
505  SigMatch *sm = DetectBufferGetFirstSigMatch(s, g_dce_stub_data_buffer_id);
506  FAIL_IF_NOT_NULL(sm);
508  SigFree(NULL, s);
509 
510  s = SigAlloc();
511  FAIL_IF_NULL(s);
513  /* relative w/o preceeding match defaults to "pmatch" */
514  FAIL_IF_NOT(DetectIsdataatSetup(NULL, s, "30,relative") == 0);
515  sm = DetectBufferGetFirstSigMatch(s, g_dce_stub_data_buffer_id);
516  FAIL_IF_NOT_NULL(sm);
518 
519  SigFree(NULL, s);
520  PASS;
521 }
522 
523 static int DetectIsdataatTestParse06(void)
524 {
526  FAIL_IF(de_ctx == NULL);
527  de_ctx->flags |= DE_QUIET;
528 
529  Signature *s = DetectEngineAppendSig(de_ctx, "alert tcp any any -> any any "
530  "(msg:\"Testing bytejump_body\"; "
531  "content:\"one\"; "
532  "isdataat:!4,relative; sid:1;)");
533  FAIL_IF(s == NULL);
534 
536 
538  DetectIsdataatData *data =
540 
544 
545  s = DetectEngineAppendSig(de_ctx, "alert tcp any any -> any any "
546  "(msg:\"Testing bytejump_body\"; "
547  "content:\"one\"; "
548  "isdataat: !4,relative; sid:2;)");
549  FAIL_IF(s == NULL);
550 
552 
555 
560 
561  PASS;
562 }
563 
564 /**
565  * \test DetectIsdataatTestPacket01 is a test to check matches of
566  * isdataat, and isdataat relative
567  */
568 static int DetectIsdataatTestPacket01 (void)
569 {
570  int result = 0;
571  uint8_t *buf = (uint8_t *)"Hi all!";
572  uint16_t buflen = strlen((char *)buf);
573  Packet *p[3];
574  p[0] = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_TCP);
575  p[1] = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_UDP);
576  p[2] = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_ICMP);
577 
578  if (p[0] == NULL || p[1] == NULL ||p[2] == NULL)
579  goto end;
580 
581  const char *sigs[5];
582  sigs[0]= "alert ip any any -> any any (msg:\"Testing window 1\"; isdataat:6; sid:1;)";
583  sigs[1]= "alert ip any any -> any any (msg:\"Testing window 2\"; content:\"all\"; isdataat:1, relative; isdataat:6; sid:2;)";
584  sigs[2]= "alert ip any any -> any any (msg:\"Testing window 3\"; isdataat:8; sid:3;)";
585  sigs[3]= "alert ip any any -> any any (msg:\"Testing window 4\"; content:\"Hi\"; isdataat:5, relative; sid:4;)";
586  sigs[4]= "alert ip any any -> any any (msg:\"Testing window 4\"; content:\"Hi\"; isdataat:6, relative; sid:5;)";
587 
588  uint32_t sid[5] = {1, 2, 3, 4, 5};
589 
590  uint32_t results[3][5] = {
591  /* packet 0 match sid 1 but should not match sid 2 */
592  {1, 1, 0, 1, 0},
593  /* packet 1 should not match */
594  {1, 1, 0, 1, 0},
595  /* packet 2 should not match */
596  {1, 1, 0, 1, 0} };
597 
598  result = UTHGenericTest(p, 3, sigs, sid, (uint32_t *) results, 5);
599 
600  UTHFreePackets(p, 3);
601 end:
602  return result;
603 }
604 
605 /**
606  * \test DetectIsdataatTestPacket02 is a test to check matches of
607  * isdataat, and isdataat relative works if the previous keyword is pcre
608  * (bug 144)
609  */
610 static int DetectIsdataatTestPacket02 (void)
611 {
612  int result = 0;
613  uint8_t *buf = (uint8_t *)"GET /AllWorkAndNoPlayMakesWillADullBoy HTTP/1.0"
614  "User-Agent: Wget/1.11.4"
615  "Accept: */*"
616  "Host: www.google.com"
617  "Connection: Keep-Alive"
618  "Date: Mon, 04 Jan 2010 17:29:39 GMT";
619  uint16_t buflen = strlen((char *)buf);
620  Packet *p;
621  p = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_TCP);
622 
623  if (p == NULL)
624  goto end;
625 
626  char sig[] = "alert tcp any any -> any any (msg:\"pcre with"
627  " isdataat + relative\"; pcre:\"/A(ll|pp)WorkAndNoPlayMakesWillA"
628  "DullBoy/\"; isdataat:96,relative; sid:1;)";
629 
630  result = UTHPacketMatchSig(p, sig);
631 
632  UTHFreePacket(p);
633 end:
634  return result;
635 }
636 
637 /**
638  * \test DetectIsdataatTestPacket03 is a test to check matches of
639  * isdataat, and isdataat relative works if the previous keyword is byte_jump
640  * (bug 146)
641  */
642 static int DetectIsdataatTestPacket03 (void)
643 {
644  int result = 0;
645  uint8_t *buf = (uint8_t *)"GET /AllWorkAndNoPlayMakesWillADullBoy HTTP/1.0"
646  "User-Agent: Wget/1.11.4"
647  "Accept: */*"
648  "Host: www.google.com"
649  "Connection: Keep-Alive"
650  "Date: Mon, 04 Jan 2010 17:29:39 GMT";
651  uint16_t buflen = strlen((char *)buf);
652  Packet *p;
653  p = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_TCP);
654 
655  if (p == NULL)
656  goto end;
657 
658  char sig[] = "alert tcp any any -> any any (msg:\"byte_jump match = 0 "
659  "with distance content HTTP/1. relative against HTTP/1.0\"; byte_jump:1,"
660  "46,string,dec; isdataat:87,relative; sid:109; rev:1;)";
661 
662  result = UTHPacketMatchSig(p, sig);
663 
664  UTHFreePacket(p);
665 end:
666  return result;
667 }
668 
669 /**
670  * \brief this function registers unit tests for DetectIsdataat
671  */
672 void DetectIsdataatRegisterTests(void)
673 {
674  g_dce_stub_data_buffer_id = DetectBufferTypeGetByName("dce_stub_data");
675 
676  UtRegisterTest("DetectIsdataatTestParse01", DetectIsdataatTestParse01);
677  UtRegisterTest("DetectIsdataatTestParse02", DetectIsdataatTestParse02);
678  UtRegisterTest("DetectIsdataatTestParse03", DetectIsdataatTestParse03);
679  UtRegisterTest("DetectIsdataatTestParse04", DetectIsdataatTestParse04);
680  UtRegisterTest("DetectIsdataatTestParse06", DetectIsdataatTestParse06);
681 
682  UtRegisterTest("DetectIsdataatTestPacket01", DetectIsdataatTestPacket01);
683  UtRegisterTest("DetectIsdataatTestPacket02", DetectIsdataatTestPacket02);
684  UtRegisterTest("DetectIsdataatTestPacket03", DetectIsdataatTestPacket03);
685 }
686 
687 static int DetectAbsentTestParse01(void)
688 {
690  FAIL_IF(de_ctx == NULL);
691  de_ctx->flags |= DE_QUIET;
692 
694  "alert http any any -> any any "
695  "(msg:\"invalid absent only with negated content\"; http.user_agent; "
696  "absent; content:!\"one\"; sid:2;)");
697  FAIL_IF(s != NULL);
698  s = DetectEngineAppendSig(de_ctx, "alert http any any -> any any "
699  "(msg:\"invalid absent\"; http.user_agent; "
700  "content:!\"one\"; absent; sid:2;)");
701  FAIL_IF(s != NULL);
702  s = DetectEngineAppendSig(de_ctx, "alert http any any -> any any "
703  "(msg:\"invalid absent\"; http.user_agent; "
704  "content:\"one\"; absent: or_else; sid:2;)");
705  FAIL_IF(s != NULL);
706  s = DetectEngineAppendSig(de_ctx, "alert http any any -> any any "
707  "(msg:\"absent without sticky buffer\"; "
708  "content:!\"one\"; absent: or_else; sid:2;)");
709  FAIL_IF(s != NULL);
711  "alert websocket any any -> any any "
712  "(msg:\"absent with frame\"; "
713  "frame: websocket.pdu; absent: or_else; content:!\"one\"; sid:2;)");
714  FAIL_IF(s != NULL);
716  PASS;
717 }
718 
719 void DetectAbsentRegisterTests(void)
720 {
721  UtRegisterTest("DetectAbsentTestParse01", DetectAbsentTestParse01);
722 }
723 #endif
util-byte.h
SigTableElmt_::url
const char * url
Definition: detect.h:1312
DETECT_CONTENT_RELATIVE_NEXT
#define DETECT_CONTENT_RELATIVE_NEXT
Definition: detect-content.h:66
DetectSignatureSetAppProto
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:1738
SignatureInitDataBuffer_::head
SigMatch * head
Definition: detect.h:537
detect-content.h
detect-engine.h
DetectBufferGetFirstSigMatch
SigMatch * DetectBufferGetFirstSigMatch(const Signature *s, const uint32_t buf_id)
Definition: detect-engine.c:1326
DETECT_SM_LIST_PMATCH
@ DETECT_SM_LIST_PMATCH
Definition: detect.h:116
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:588
SigTableElmt_::desc
const char * desc
Definition: detect.h:1311
sigmatch_table
SigTableElmt * sigmatch_table
Definition: detect-parse.c:128
offset
uint64_t offset
Definition: util-streaming-buffer.h:0
ALPROTO_DCERPC
@ ALPROTO_DCERPC
Definition: app-layer-protos.h:38
SigTableElmt_::Free
void(* Free)(DetectEngineCtx *, void *)
Definition: detect.h:1299
DetectIsdataatSetup
int DetectIsdataatSetup(DetectEngineCtx *, Signature *, const char *)
This function is used to add the parsed isdataatdata into the current signature.
Definition: detect-isdataat.c:311
DetectParseRegex
Definition: detect-parse.h:62
SigTableElmt_::name
const char * name
Definition: detect.h:1309
SignatureInitData_::smlists_tail
struct SigMatch_ * smlists_tail[DETECT_SM_LIST_MAX]
Definition: detect.h:590
DETECT_BYTEJUMP
@ DETECT_BYTEJUMP
Definition: detect-engine-register.h:86
ISDATAAT_OFFSET_VAR
#define ISDATAAT_OFFSET_VAR
Definition: detect-isdataat.h:30
DETECT_ABSENT
@ DETECT_ABSENT
Definition: detect-engine-register.h:98
SigFree
void SigFree(DetectEngineCtx *, Signature *)
Definition: detect-parse.c:1629
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
DetectIsdataatData_::flags
uint8_t flags
Definition: detect-isdataat.h:34
DETECT_CONTENT
@ DETECT_CONTENT
Definition: detect-engine-register.h:72
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
detect-isdataat.h
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1303
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:843
StringParseUint16
int StringParseUint16(uint16_t *res, int base, size_t len, const char *str)
Definition: util-byte.c:337
DetectEngineCtxFree
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
Definition: detect-engine.c:2623
DE_QUIET
#define DE_QUIET
Definition: detect.h:323
UTHPacketMatchSig
int UTHPacketMatchSig(Packet *p, const char *sig)
Definition: util-unittest-helper.c:804
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
DetectIsdataatData_
Definition: detect-isdataat.h:32
DetectParsePcreExec
int DetectParsePcreExec(DetectParseRegex *parse_regex, pcre2_match_data **match, const char *str, int start_offset, int options)
Definition: detect-parse.c:2645
DetectBufferType_
Definition: detect.h:456
DetectContentData_
Definition: detect-content.h:93
DetectPcreData_::flags
uint16_t flags
Definition: detect-pcre.h:46
DetectEngineAppendSig
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
Definition: detect-parse.c:2591
DetectBufferGetActiveList
int DetectBufferGetActiveList(DetectEngineCtx *de_ctx, Signature *s)
Definition: detect-engine.c:1425
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1294
detect-pcre.h
PARSE_REGEX
#define PARSE_REGEX
Regex for parsing our isdataat options.
Definition: detect-isdataat.c:53
DetectByteIndexType
uint8_t DetectByteIndexType
Definition: detect-byte.h:28
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
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1094
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
DETECT_CONTENT_ENDS_WITH
#define DETECT_CONTENT_ENDS_WITH
Definition: detect-content.h:42
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectSetupParseRegexes
void DetectSetupParseRegexes(const char *parse_str, DetectParseRegex *detect_parse)
Definition: detect-parse.c:2771
SignatureInitData_::list
int list
Definition: detect.h:572
detect.h
SigMatch_::next
struct SigMatch_ * next
Definition: detect.h:353
SigMatch_::ctx
SigMatchCtx * ctx
Definition: detect.h:352
Packet_
Definition: decode.h:476
detect-engine-build.h
ISDATAAT_RELATIVE
#define ISDATAAT_RELATIVE
Definition: detect-isdataat.h:27
DetectContentData_::flags
uint32_t flags
Definition: detect-content.h:104
DetectEngineBufferTypeGetById
const DetectBufferType * DetectEngineBufferTypeGetById(const DetectEngineCtx *de_ctx, const int id)
Definition: detect-engine.c:1114
Signature_::init_data
SignatureInitData * init_data
Definition: detect.h:672
ISDATAAT_RAWBYTES
#define ISDATAAT_RAWBYTES
Definition: detect-isdataat.h:28
SigTableElmt_::Match
int(* Match)(DetectEngineThreadCtx *, Packet *, const Signature *, const SigMatchCtx *)
Definition: detect.h:1277
detect-byte.h
DETECT_PCRE
@ DETECT_PCRE
Definition: detect-engine-register.h:74
DetectAbsentValidateContentCallback
bool DetectAbsentValidateContentCallback(Signature *s, const SignatureInitDataBuffer *b)
Definition: detect-isdataat.c:117
SigMatchCtx_
Used to start a pointer to SigMatch context Should never be dereferenced without casting to something...
Definition: detect.h:344
DETECT_SM_LIST_NOTSET
#define DETECT_SM_LIST_NOTSET
Definition: detect.h:141
SignatureInitDataBuffer_::tail
SigMatch * tail
Definition: detect.h:538
DetectBufferType_::frame
bool frame
Definition: detect.h:463
DETECT_BYTETEST
@ DETECT_BYTETEST
Definition: detect-engine-register.h:85
FAIL_IF
#define FAIL_IF(expr)
Fail a test if expression evaluates to true.
Definition: util-unittest.h:71
DetectByteRetrieveSMVar
bool DetectByteRetrieveSMVar(const char *arg, const Signature *s, DetectByteIndexType *index)
Used to retrieve args from BM.
Definition: detect-byte.c:40
suricata-common.h
DetectAbsentData_
Definition: detect-isdataat.h:37
SigMatch_::type
uint16_t type
Definition: detect.h:350
SignatureInitData_::curbuf
SignatureInitDataBuffer * curbuf
Definition: detect.h:596
SCStrdup
#define SCStrdup(s)
Definition: util-mem.h:56
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
SIGMATCH_OPTIONAL_OPT
#define SIGMATCH_OPTIONAL_OPT
Definition: detect.h:1502
SCMalloc
#define SCMalloc(sz)
Definition: util-mem.h:47
ISDATAAT_NEGATED
#define ISDATAAT_NEGATED
Definition: detect-isdataat.h:29
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
SigMatchListSMBelongsTo
int SigMatchListSMBelongsTo(const Signature *s, const SigMatch *key_sm)
Definition: detect-parse.c:806
SCFree
#define SCFree(p)
Definition: util-mem.h:61
UTHFreePacket
void UTHFreePacket(Packet *p)
UTHFreePacket: function to release the allocated data from UTHBuildPacket and the packet itself.
Definition: util-unittest-helper.c:467
DETECT_BYTE_EXTRACT
@ DETECT_BYTE_EXTRACT
Definition: detect-engine-register.h:88
detect-parse.h
SignatureInitDataBuffer_::id
uint32_t id
Definition: detect.h:530
Signature_
Signature container.
Definition: detect.h:603
SigMatch_
a single match condition for a signature
Definition: detect.h:349
DETECT_ISDATAAT
@ DETECT_ISDATAAT
Definition: detect-engine-register.h:96
DetectIsdataatData_::dataat
uint16_t dataat
Definition: detect-isdataat.h:33
DetectEngineCtxInit
DetectEngineCtx * DetectEngineCtxInit(void)
Definition: detect-engine.c:2584
DETECT_PCRE_RELATIVE_NEXT
#define DETECT_PCRE_RELATIVE_NEXT
Definition: detect-pcre.h:34
DetectPcreData_
Definition: detect-pcre.h:42
DETECT_BYTEMATH
@ DETECT_BYTEMATH
Definition: detect-engine-register.h:87
detect-uricontent.h
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1493
DetectGetLastSMFromLists
SigMatch * DetectGetLastSMFromLists(const Signature *s,...)
Returns the sm with the largest index (added latest) from the lists passed to us.
Definition: detect-parse.c:607
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:437
DetectEngineCtx_::flags
uint8_t flags
Definition: detect.h:845
SigAlloc
Signature * SigAlloc(void)
Definition: detect-parse.c:1514
flow.h
SignatureInitDataBuffer_
Definition: detect.h:529
DETECT_CONTENT_FAST_PATTERN
#define DETECT_CONTENT_FAST_PATTERN
Definition: detect-content.h:34
DetectAbsentData_::or_else
bool or_else
Definition: detect-isdataat.h:39
DETECT_ENDS_WITH
@ DETECT_ENDS_WITH
Definition: detect-engine-register.h:77
flow-var.h
DetectIsdataatFree
void DetectIsdataatFree(DetectEngineCtx *, void *)
this function will free memory associated with DetectIsdataatData
Definition: detect-isdataat.c:411
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1301
DetectIsdataatRegister
void DetectIsdataatRegister(void)
Registration function for isdataat: keyword.
Definition: detect-isdataat.c:156
app-layer.h
detect-bytetest.h
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