suricata
detect.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2023 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 
24 #ifndef SURICATA_DETECT_H
25 #define SURICATA_DETECT_H
26 
27 #include "suricata-common.h"
28 #include "flow.h"
29 
30 #include "detect-engine-proto.h"
31 #include "detect-reference.h"
32 #include "detect-metadata.h"
33 #include "detect-engine-register.h"
34 
35 #include "util-prefilter.h"
36 #include "util-mpm.h"
37 #include "util-spm.h"
38 #include "util-hash.h"
39 #include "util-hashlist.h"
40 #include "util-radix4-tree.h"
41 #include "util-radix6-tree.h"
42 #include "util-file.h"
43 #include "reputation.h"
44 
45 #define DETECT_MAX_RULE_SIZE 8192
46 
47 #define DETECT_TRANSFORMS_MAX 16
48 
49 /** default rule priority if not set through priority keyword or via
50  * classtype. */
51 #define DETECT_DEFAULT_PRIO 3
52 
53 // tx_id value to use when there is no transaction
54 #define PACKET_ALERT_NOTX UINT64_MAX
55 
56 /* forward declaration for sigorder logic in detect-engine-sigorder.[ch] */
57 struct SCSigOrderFunc_;
58 
59 /* Forward declarations for structures from Rust. */
61 
64  SIG_TYPE_IPONLY, // rule is handled by IPONLY engine
65  SIG_TYPE_LIKE_IPONLY, // rule is handled by pkt engine, has action effect like ip-only
66  /** Proto detect only signature.
67  * Inspected once per direction when protocol detection is done. */
68  SIG_TYPE_PDONLY, // rule is handled by PDONLY engine
73 
74  SIG_TYPE_APPLAYER, // app-layer but not tx, e.g. appproto
75  SIG_TYPE_APP_TX, // rule is handled by TX engine
76 
78 };
79 
84 };
85 
88 };
89 
91 
92 /*
93  The detection engine groups similar signatures/rules together. Internally a
94  tree of different types of data is created on initialization. This is it's
95  global layout:
96 
97  For TCP/UDP
98 
99  - Flow direction
100  -- Protocol
101  -=- Dst port
102 
103  For the other protocols
104 
105  - Flow direction
106  -- Protocol
107 */
108 
109 /* holds the values for different possible lists in struct Signature.
110  * These codes are access points to particular lists in the array
111  * Signature->init_data->smlists[DETECT_SM_LIST_MAX]. */
113  /* list for non-payload per packet matches, e.g. ttl, flow keyword */
115  /* list for payload and stream match */
117 
118  /* base64_data keyword uses some hardcoded logic so consider
119  * built-in
120  * TODO convert to inspect engine */
122 
123  /* list for post match actions: flowbit set, flowint increment, etc */
125 
126  DETECT_SM_LIST_TMATCH, /**< post-detection tagging */
127 
128  /* lists for alert thresholding and suppression */
131 
133 
134  /* start of dynamically registered lists */
136 };
137 
138 /* used for Signature->list, which indicates which list
139  * we're adding keywords to in cases of sticky buffers like
140  * file_data */
141 #define DETECT_SM_LIST_NOTSET INT_MAX
142 
143 /*
144  * DETECT ADDRESS
145  */
146 
147 /* a is ... than b */
148 enum {
149  ADDRESS_ER = -1, /**< error e.g. compare ipv4 and ipv6 */
150  ADDRESS_LT, /**< smaller [aaa] [bbb] */
151  ADDRESS_LE, /**< smaller with overlap [aa[bab]bb] */
152  ADDRESS_EQ, /**< exactly equal [abababab] */
153  ADDRESS_ES, /**< within [bb[aaa]bb] and [[abab]bbb] and [bbb[abab]] */
154  ADDRESS_EB, /**< completely overlaps [aa[bbb]aa] and [[baba]aaa] and [aaa[baba]] */
155  ADDRESS_GE, /**< bigger with overlap [bb[aba]aa] */
156  ADDRESS_GT, /**< bigger [bbb] [aaa] */
157 };
158 
159 #define ADDRESS_FLAG_NOT 0x01 /**< address is negated */
160 
161 /** \brief address structure for use in the detection engine.
162  *
163  * Contains the address information and matching information.
164  */
165 typedef struct DetectAddress_ {
166  /** address data for this group */
169 
170  /** flags affecting this address */
171  uint8_t flags;
172 
173  /** ptr to the previous address in the list */
175  /** ptr to the next address in the list */
178 
179 /** Address grouping head. IPv4 and IPv6 are split out */
180 typedef struct DetectAddressHead_ {
184 
185 
186 typedef struct DetectMatchAddressIPv4_ {
187  uint32_t ip; /**< address in host order, start of range */
188  uint32_t ip2; /**< address in host order, end of range */
190 
191 typedef struct DetectMatchAddressIPv6_ {
192  uint32_t ip[4];
193  uint32_t ip2[4];
195 
196 /*
197  * DETECT PORT
198  */
199 
200 /* a is ... than b */
201 enum {
202  PORT_ER = -1, /* error */
203  PORT_LT, /* smaller [aaa] [bbb] */
204  PORT_LE, /* smaller with overlap [aa[bab]bb] */
205  PORT_EQ, /* exactly equal [abababab] */
206  PORT_ES, /* within [bb[aaa]bb] and [[abab]bbb] and [bbb[abab]] */
207  PORT_EB, /* completely overlaps [aa[bbb]aa] and [[baba]aaa] and [aaa[baba]] */
208  PORT_GE, /* bigger with overlap [bb[aba]aa] */
209  PORT_GT, /* bigger [bbb] [aaa] */
210 };
211 
212 #define PORT_FLAG_ANY 0x01 /**< 'any' special port */
213 #define PORT_FLAG_NOT 0x02 /**< negated port */
214 #define PORT_SIGGROUPHEAD_COPY 0x04 /**< sgh is a ptr copy */
215 
216 /** \brief Port structure for detection engine */
217 typedef struct DetectPort_ {
218  uint16_t port;
219  uint16_t port2;
220 
221  uint8_t flags; /**< flags for this port */
222 
223  /* signatures that belong in this group
224  *
225  * If the PORT_SIGGROUPHEAD_COPY flag is set, we don't own this pointer
226  * (memory is freed elsewhere).
227  */
228  struct SigGroupHead_ *sh;
229 
230  struct DetectPort_ *prev;
231  struct DetectPort_ *next;
232  struct DetectPort_ *last; /* Pointer to the last node in the list */
234 
235 /* Signature flags */
236 /** \note: additions should be added to the rule analyzer as well */
237 
238 #define SIG_FLAG_SRC_ANY BIT_U32(0) /**< source is any */
239 #define SIG_FLAG_DST_ANY BIT_U32(1) /**< destination is any */
240 #define SIG_FLAG_SP_ANY BIT_U32(2) /**< source port is any */
241 #define SIG_FLAG_DP_ANY BIT_U32(3) /**< destination port is any */
242 
243 // vacancy
244 
245 #define SIG_FLAG_DSIZE BIT_U32(5) /**< signature has a dsize setting */
246 #define SIG_FLAG_APPLAYER BIT_U32(6) /**< signature applies to app layer instead of packets */
247 
248 // vacancy
249 
250 #define SIG_FLAG_REQUIRE_PACKET BIT_U32(9) /**< signature is requiring packet match */
251 #define SIG_FLAG_REQUIRE_STREAM BIT_U32(10) /**< signature is requiring stream match */
252 
253 #define SIG_FLAG_MPM_NEG BIT_U32(11)
254 
255 #define SIG_FLAG_FLUSH BIT_U32(12) /**< detection logic needs stream flush notification */
256 
257 #define SIG_FLAG_REQUIRE_STREAM_ONLY \
258  BIT_U32(13) /**< signature is requiring stream match. Stream match is not optional, so no \
259  fallback to packet payload. */
260 
261 // vacancies
262 
263 #define SIG_FLAG_REQUIRE_FLOWVAR BIT_U32(17) /**< signature can only match if a flowbit, flowvar or flowint is available. */
264 
265 #define SIG_FLAG_FILESTORE BIT_U32(18) /**< signature has filestore keyword */
266 
267 #define SIG_FLAG_TOSERVER BIT_U32(19)
268 #define SIG_FLAG_TOCLIENT BIT_U32(20)
269 
270 #define SIG_FLAG_TLSSTORE BIT_U32(21)
271 
272 #define SIG_FLAG_BYPASS BIT_U32(22)
273 
274 #define SIG_FLAG_PREFILTER BIT_U32(23) /**< sig is part of a prefilter engine */
275 
276 // vacancy
277 
278 /** Info for Source and Target identification */
279 #define SIG_FLAG_SRC_IS_TARGET BIT_U32(25)
280 /** Info for Source and Target identification */
281 #define SIG_FLAG_DEST_IS_TARGET BIT_U32(26)
282 
283 #define SIG_FLAG_HAS_TARGET (SIG_FLAG_DEST_IS_TARGET|SIG_FLAG_SRC_IS_TARGET)
284 
285 /* signature init flags */
286 // available 0
287 #define SIG_FLAG_INIT_PACKET BIT_U32(1) /**< signature has matches against a packet (as opposed to app layer) */
288 #define SIG_FLAG_INIT_FLOW BIT_U32(2) /**< signature has a flow setting */
289 #define SIG_FLAG_INIT_BIDIREC BIT_U32(3) /**< signature has bidirectional operator */
290 #define SIG_FLAG_INIT_FIRST_IPPROTO_SEEN \
291  BIT_U32(4) /** < signature has seen the first ip_proto keyword */
292 #define SIG_FLAG_INIT_STATE_MATCH BIT_U32(6) /**< signature has matches that require stateful inspection */
293 #define SIG_FLAG_INIT_NEED_FLUSH BIT_U32(7)
294 #define SIG_FLAG_INIT_PRIO_EXPLICIT \
295  BIT_U32(8) /**< priority is explicitly set by the priority keyword */
296 #define SIG_FLAG_INIT_FILEDATA BIT_U32(9) /**< signature has filedata keyword */
297 #define SIG_FLAG_INIT_JA BIT_U32(10) /**< signature has ja3/ja4 keyword */
298 
299 /* signature mask flags */
300 /** \note: additions should be added to the rule analyzer as well */
301 #define SIG_MASK_REQUIRE_PAYLOAD BIT_U8(0)
302 #define SIG_MASK_REQUIRE_FLOW BIT_U8(1)
303 #define SIG_MASK_REQUIRE_FLAGS_INITDEINIT BIT_U8(2) /* SYN, FIN, RST */
304 #define SIG_MASK_REQUIRE_FLAGS_UNUSUAL BIT_U8(3) /* URG, ECN, CWR */
305 #define SIG_MASK_REQUIRE_NO_PAYLOAD BIT_U8(4)
306 #define SIG_MASK_REQUIRE_REAL_PKT BIT_U8(5)
307 // vacancy 1x
308 #define SIG_MASK_REQUIRE_ENGINE_EVENT BIT_U8(7)
309 
310 /* for now a uint8_t is enough */
311 #define SignatureMask uint8_t
312 
313 #define FILE_SIG_NEED_FILE 0x01
314 #define FILE_SIG_NEED_FILENAME 0x02
315 #define FILE_SIG_NEED_MAGIC 0x04 /**< need the start of the file */
316 #define FILE_SIG_NEED_FILECONTENT 0x08
317 #define FILE_SIG_NEED_MD5 0x10
318 #define FILE_SIG_NEED_SHA1 0x20
319 #define FILE_SIG_NEED_SHA256 0x40
320 #define FILE_SIG_NEED_SIZE 0x80
321 
322 /* Detection Engine flags */
323 #define DE_QUIET 0x01 /**< DE is quiet (esp for unittests) */
324 
325 typedef struct IPOnlyCIDRItem_ {
326  /* address data for this item */
327  uint8_t family;
328  /* netmask in CIDR values (ex. /16 /18 /24..) */
329  uint8_t netmask;
330  /* If this host or net is negated for the signum */
331  uint8_t negated;
332 
333  uint32_t ip[4];
334  SigIntId signum; /**< our internal id */
335 
336  /* linked list, the header should be the biggest network */
338 
340 
341 /** \brief Used to start a pointer to SigMatch context
342  * Should never be dereferenced without casting to something else.
343  */
344 typedef struct SigMatchCtx_ {
345  int foo;
347 
348 /** \brief a single match condition for a signature */
349 typedef struct SigMatch_ {
350  uint16_t type; /**< match type */
351  uint16_t idx; /**< position in the signature */
352  SigMatchCtx *ctx; /**< plugin specific data */
353  struct SigMatch_ *next;
354  struct SigMatch_ *prev;
356 
357 /** \brief Data needed for Match() */
358 typedef struct SigMatchData_ {
359  uint16_t type; /**< match type */
360  bool is_last; /**< Last element of the list */
361  SigMatchCtx *ctx; /**< plugin specific data */
363 
364 struct DetectEngineThreadCtx_;// DetectEngineThreadCtx;
365 
366 /* inspection buffer is a simple structure that is passed between prefilter,
367  * transformation functions and inspection functions.
368  * Initially setup with 'orig' ptr and len, transformations can then take
369  * then and fill the 'buf'. Multiple transformations can update the buffer,
370  * both growing and shrinking it.
371  * Prefilter and inspection will only deal with 'inspect'. */
372 
373 typedef struct InspectionBuffer {
374  const uint8_t *inspect; /**< active pointer, points either to ::buf or ::orig */
375  uint64_t inspect_offset;
376  uint32_t inspect_len; /**< size of active data. See to ::len or ::orig_len */
377  bool initialized; /**< is initialized. ::inspect might be NULL if transform lead to 0 size */
378  uint8_t flags; /**< DETECT_CI_FLAGS_* for use with DetectEngineContentInspection */
379 #ifdef DEBUG_VALIDATION
380  bool multi;
381 #endif
382  uint32_t len; /**< how much is in use */
383  uint8_t *buf;
384  uint32_t size; /**< size of the memory allocation */
385 
386  uint32_t orig_len;
387  const uint8_t *orig;
389 
390 /* inspection buffers are kept per tx (in det_ctx), but some protocols
391  * need a bit more. A single TX might have multiple buffers, e.g. files in
392  * SMTP or DNS queries. Since all prefilters+transforms run before the
393  * individual rules need the same buffers, we need a place to store the
394  * transformed data. This array of arrays is that place. */
395 
398  uint32_t size; /**< size in number of elements */
399  uint32_t max:31; /**< max id in use in this run */
400  uint32_t init:1; /**< first time used this run. Used for clean logic */
402 
403 typedef struct TransformData_ {
405  void *options;
407 
408 typedef struct DetectEngineTransforms {
410  int cnt;
412 
413 /** callback for getting the buffer we need to prefilter/inspect */
414 typedef InspectionBuffer *(*InspectionBufferGetDataPtr)(
415  struct DetectEngineThreadCtx_ *det_ctx,
416  const DetectEngineTransforms *transforms,
417  Flow *f, const uint8_t flow_flags,
418  void *txv, const int list_id);
419 typedef InspectionBuffer *(*InspectionMultiBufferGetDataPtr)(struct DetectEngineThreadCtx_ *det_ctx,
420  const DetectEngineTransforms *transforms, Flow *f, const uint8_t flow_flags, void *txv,
421  const int list_id, const uint32_t local_id);
423 
424 typedef uint8_t (*InspectEngineFuncPtr)(struct DetectEngineCtx_ *de_ctx,
425  struct DetectEngineThreadCtx_ *det_ctx,
426  const struct DetectEngineAppInspectionEngine_ *engine, const struct Signature_ *s, Flow *f,
427  uint8_t flags, void *alstate, void *txv, uint64_t tx_id);
428 
431  uint8_t dir;
432  uint8_t id; /**< per sig id used in state keeping */
433  bool mpm;
434  bool stream;
435  /** will match on a NULL buffer (so an absent buffer) */
437  uint16_t sm_list;
438  uint16_t sm_list_base; /**< base buffer being transformed */
439  int16_t progress;
440 
441  struct {
442  union {
445  };
447  /** pointer to the transforms in the 'DetectBuffer entry for this list */
449  } v2;
450 
452 
455 
456 typedef struct DetectBufferType_ {
457  char name[32];
458  char description[128];
459  int id;
461  bool mpm;
462  bool packet; /**< compat to packet matches */
463  bool frame; /**< is about Frame inspection */
465  bool multi_instance; /**< buffer supports multiple buffer instances per tx */
466  void (*SetupCallback)(const struct DetectEngineCtx_ *, struct Signature_ *);
467  bool (*ValidateCallback)(const struct Signature_ *, const char **sigerror);
470 
472 
473 /**
474  * \param alert_flags[out] for setting PACKET_ALERT_FLAG_*
475  */
477  struct DetectEngineThreadCtx_ *,
478  const struct DetectEnginePktInspectionEngine *engine,
479  const struct Signature_ *s,
480  Packet *p, uint8_t *alert_flags);
481 
482 /** callback for getting the buffer we need to prefilter/inspect */
483 typedef InspectionBuffer *(*InspectionBufferGetPktDataPtr)(
484  struct DetectEngineThreadCtx_ *det_ctx,
485  const DetectEngineTransforms *transforms,
486  Packet *p, const int list_id);
487 
490  bool mpm;
491  uint16_t sm_list;
492  uint16_t sm_list_base;
493  struct {
496  /** pointer to the transforms in the 'DetectBuffer entry for this list */
498  } v1;
501 
502 struct Frame;
503 struct Frames;
505 
506 /**
507  * \param alert_flags[out] for setting PACKET_ALERT_FLAG_*
508  */
510  const struct DetectEngineFrameInspectionEngine *engine, const struct Signature_ *s,
511  Packet *p, const struct Frames *frames, const struct Frame *frame);
512 
515  uint8_t dir;
516  uint8_t type;
517  bool mpm;
518  uint16_t sm_list;
519  uint16_t sm_list_base;
520  struct {
522  /** pointer to the transforms in the 'DetectBuffer entry for this list */
524  } v1;
528 
529 typedef struct SignatureInitDataBuffer_ {
530  uint32_t id; /**< buffer id */
531  bool sm_init; /**< initialized by sigmatch, which is likely something like `urilen:10; http.uri;
532  content:"abc";`. These need to be in the same list. Unset once `http.uri` is
533  set up. */
534  bool multi_capable; /**< true if we can have multiple instances of this buffer, so e.g. for
535  http.uri. */
536  /* sig match list */
540 
541 typedef struct SignatureInitData_ {
542  /** Number of sigmatches. Used for assigning SigMatch::idx */
543  uint16_t sm_cnt;
544 
545  /** option was prefixed with '!'. Only set for sigmatches that
546  * have the SIGMATCH_HANDLE_NEGATION flag set. */
547  bool negated;
548 
549  /* track if we saw any negation in the addresses. If so, we
550  * skip it for ip-only */
553 
554  /* used to hold flags that are used during init */
555  uint32_t init_flags;
556  /* coccinelle: SignatureInitData:init_flags:SIG_FLAG_INIT_ */
557 
558  /* used at init to determine max dsize */
560 
561  /** netblocks and hosts specified at the sid, in CIDR format */
563 
564  /* list id for `mpm_sm`. Should always match `SigMatchListSMBelongsTo(s, mpm_sm)`. */
566  /* the fast pattern added from this signature */
568  /* used to speed up init of prefilter */
570 
571  /* SigMatch list used for adding content and friends. E.g. file_data; */
572  int list;
573  bool list_set;
574 
576 
577  /** score to influence rule grouping. A higher value leads to a higher
578  * likelihood of a rulegroup with this sig ending up as a contained
579  * group. */
580  int score;
581 
582  /** address settings for this signature */
584 
586 
587  /* holds built-in sm lists */
589  /* holds built-in sm lists' tails */
591 
592  /* Storage for buffers. */
594  uint32_t buffer_index;
595  uint32_t buffers_size;
597 
598  /* highest list/buffer id which holds a DETECT_CONTENT */
601 
602 /** \brief Signature container */
603 typedef struct Signature_ {
604  uint32_t flags;
605  /* coccinelle: Signature:flags:SIG_FLAG_ */
606  enum SignatureType type;
607 
609 
610  uint16_t dsize_low;
611  uint16_t dsize_high;
612  uint8_t dsize_mode;
613 
615  SigIntId num; /**< signature number, internal id */
616 
617  /** inline -- action */
618  uint8_t action;
619  uint8_t file_flags;
620 
621  /** addresses, ports and proto this sig matches on */
623 
624  /** classification id **/
625  uint16_t class_id;
626 
627  /** ipv4 match arrays */
634  /** ipv6 match arrays */
637 
638  uint32_t id; /**< sid, set by the 'sid' rule keyword */
639  uint32_t gid; /**< generator id */
640  uint32_t rev;
641  int prio;
642 
643  /** port settings for this signature */
645 
646 #ifdef PROFILE_RULES
647  uint16_t profiling_id;
648 #endif
649 
653 
654  /* Matching structures for the built-ins. The others are in
655  * their inspect engines. */
657 
658  /* memory is still owned by the sm_lists/sm_arrays entry */
660 
661  char *msg;
662 
663  /** classification message */
664  char *class_msg;
665  /** Reference */
667  /** Metadata */
669 
670  char *sig_str;
671 
673 
674  /** ptr to the next sig in the list */
675  struct Signature_ *next;
677 
682  /* must be last */
684 };
685 
686 /** \brief one time registration of keywords at start up */
687 typedef struct DetectBufferMpmRegistry_ {
688  const char *name;
689  char pname[32]; /**< name used in profiling */
690  int direction; /**< SIG_FLAG_TOSERVER or SIG_FLAG_TOCLIENT */
691  int16_t sm_list;
692  int16_t sm_list_base;
693  int priority;
694  int id; /**< index into this array and result arrays */
697 
699  MpmCtx *mpm_ctx, const struct DetectBufferMpmRegistry_ *mpm_reg, int list_id);
701 
702  union {
703  /* app-layer matching: use if type == DETECT_BUFFER_MPM_TYPE_APP */
704  struct {
705  union {
708  };
712 
713  /* pkt matching: use if type == DETECT_BUFFER_MPM_TYPE_PKT */
714  struct {
716  struct SigGroupHead_ *sgh, MpmCtx *mpm_ctx,
717  const struct DetectBufferMpmRegistry_ *mpm_reg, int list_id);
720 
721  /* frame matching: use if type == DETECT_BUFFER_MPM_TYPE_FRAME */
722  struct {
724  uint8_t type;
726  };
727 
730 
731 /* helper structure to track pattern stats and assign pattern id's. */
732 typedef struct DetectPatternTracker {
733  const struct DetectContentData_ *cd;
734  int sm_list;
735  uint32_t cnt;
736  uint32_t mpm;
738 
739 typedef struct DetectReplaceList_ {
740  const struct DetectContentData_ *cd;
741  uint8_t *found;
744 
745 /** only execute flowvar storage if rule matched */
746 #define DETECT_VAR_TYPE_FLOW_POSTMATCH 1
747 #define DETECT_VAR_TYPE_PKT_POSTMATCH 2
748 
749 /** list for flowvar store candidates, to be stored from
750  * post-match function */
751 typedef struct DetectVarList_ {
752  uint32_t idx; /**< flowvar name idx */
753  uint16_t len; /**< data len */
754  uint16_t key_len;
755  int type; /**< type of store candidate POSTMATCH or ALWAYS */
756  uint8_t *key;
757  uint8_t *buffer; /**< alloc'd buffer, may be freed by
758  post-match, post-non-match */
761 
762 typedef struct SCFPSupportSMList_ {
763  int list_id;
764  int priority;
767 
768 /** \brief IP only rules matching ctx. */
769 typedef struct DetectEngineIPOnlyCtx_ {
770  /* Lookup trees */
773 
774  /* Used to build the radix trees */
776  uint32_t max_idx;
777 
778  /* Used to map large signums to smaller values to compact the bitsets
779  * stored in the radix trees */
780  uint32_t *sig_mapping;
783 
784 typedef struct DetectEngineLookupFlow_ {
787  struct SigGroupHead_ *sgh[256];
789 
790 typedef struct SigString_ {
791  char *filename;
792  char *sig_str;
793  char *sig_error;
794  int line;
797 
798 /** \brief Signature loader statistics */
799 typedef struct SigFileLoaderStat_ {
800  TAILQ_HEAD(, SigString_) failed_sigs;
807 
809  void *(*InitFunc)(void *);
810  void (*FreeFunc)(void *);
811  void *data;
813  int id;
814  const char *name; /* keyword name, for error printing */
816 
818 {
819  DETECT_PREFILTER_MPM = 0, /**< use only mpm / fast_pattern */
820  DETECT_PREFILTER_AUTO = 1, /**< use mpm + keyword prefilters */
821 };
822 
824 {
826  DETECT_ENGINE_TYPE_DD_STUB = 1, /* delayed detect stub: can be reloaded */
827  DETECT_ENGINE_TYPE_MT_STUB = 2, /* multi-tenant stub: cannot be reloaded */
829 };
830 
831 /* Flow states:
832  * toserver
833  * toclient
834  */
835 #define FLOW_STATES 2
836 
837 typedef struct {
838  uint32_t content_limit;
841 
842 /** \brief main detection engine ctx */
843 typedef struct DetectEngineCtx_ {
845  uint8_t flags; /**< only DE_QUIET */
846  uint8_t mpm_matcher; /**< mpm matcher this ctx uses */
847  uint8_t spm_matcher; /**< spm matcher this ctx uses */
848 
849  uint32_t tenant_id;
850 
852  uint32_t sig_cnt;
853 
854  /* version of the srep data */
855  uint32_t srep_version;
856 
857  /* reputation for netblocks */
859 
861  uint32_t sig_array_len; /* size in array members */
862 
863  uint32_t signum;
864 
865  /** Maximum value of all our sgh's non_mpm_store_cnt setting,
866  * used to alloc det_ctx::non_mpm_id_array */
868 
869  /* used by the signature ordering module */
871 
872  /* main sigs */
874 
875  /* init phase vars */
877 
880 
881  /* hash table used to cull out duplicate sigs */
883 
885 
886  /* maximum recursion depth for content inspection */
888 
889  /* maximum number of times a tx will get logged for rules not using app-layer keywords */
891 
892  /* force app-layer tx finding for alerts with signatures not having app-layer keywords */
894 
895  /* registration id for per thread ctx for the filemagic/file.magic keywords */
897 
898  /* spm thread context prototype, built as spm matchers are constructed and
899  * later used to construct thread context for each thread. */
901 
902  /* Config options */
903 
906 
907  /* max flowbit id that is used */
908  uint32_t max_fb_id;
909 
911 
912  /* array containing all sgh's in use so we can loop
913  * through it in Stage4. */
915  uint32_t sgh_array_cnt;
916  uint32_t sgh_array_size;
917 
922 
923  /* the max local id used amongst all sigs */
925 
926  /** version of the detect engine. The version is incremented on reloads */
927  uint32_t version;
928 
929  /** sgh for signatures that match against invalid packets. In those cases
930  * we can't lookup by proto, address, port as we don't have these */
932 
933  /* Maximum size of the buffer for decoded base64 data. */
935 
936  /** Store rule file and line so that parsers can use them in errors. */
938  char *rule_file;
939  const char *sigerror;
942 
943  /** The rule errored out due to missing requirements. */
945 
946  /* specify the configuration for mpm context factory */
948 
950  /** hash list of keywords that need thread local ctxs */
952 
954 
955 #ifdef PROFILE_RULES
956  struct SCProfileDetectCtx_ *profile_ctx;
957 #endif
958 #ifdef PROFILING
964 #endif
965  char config_prefix[64];
966 
967  enum DetectEngineType type;
968 
969  /** how many de_ctx' are referencing this */
970  uint32_t ref_cnt;
971  /** list in master: either active or freelist */
973 
974  /** id of loader thread 'owning' this de_ctx */
976 
977  /** are we using just mpm or also other prefilters */
979 
981 
984 
985  /** table for storing the string representation with the parsers result */
987 
988  /** table to store metadata keys and values */
990 
991  /* hash tables with rule-time buffer registration. Start time registration
992  * is in detect-engine.c::g_buffer_type_hash */
995  uint32_t buffer_type_id;
996 
999  /* list with app inspect engines. Both the start-time registered ones and
1000  * the rule-time registered ones. */
1008 
1009  uint32_t prefilter_id;
1011 
1012  /** time of last ruleset reload */
1013  struct timeval last_reload;
1014 
1015  /** signatures stats */
1017 
1018  /* list of Fast Pattern registrations. Initially filled using a copy of
1019  * `g_fp_support_smlist_list`, then extended at rule loading time if needed */
1021 
1022  /** per keyword flag indicating if a prefilter has been
1023  * set for it. If true, the setup function will have to
1024  * run. */
1027 
1028  /* classification config parsing */
1029 
1030  /* hash table used for holding the classification config info */
1032  pcre2_code *class_conf_regex;
1033  pcre2_match_data *class_conf_regex_match;
1034 
1035  /* reference config parsing */
1036 
1037  /* hash table used for holding the reference config info */
1040  pcre2_match_data *reference_conf_regex_match;
1041 
1042  /* --engine-analysis */
1044 
1045  /* path to the tenant yaml for this engine */
1047 
1048  /* Track rule requirements for reporting after loading rules. */
1050 
1051  /* number of signatures using filestore, limited as u16 */
1052  uint16_t filestore_cnt;
1054 
1055 /* Engine groups profiles (low, medium, high, custom) */
1056 enum {
1062 };
1063 
1064 /* Siggroup mpm context profile */
1065 enum {
1069 #define ENGINE_SGH_MPM_FACTORY_CONTEXT_START_ID_RANGE (ENGINE_SGH_MPM_FACTORY_CONTEXT_AUTO + 1)
1070 };
1071 
1072 #define DETECT_FILESTORE_MAX 15
1079 
1080 /** array of TX inspect rule candidates */
1081 typedef struct RuleMatchCandidateTx {
1082  SigIntId id; /**< internal signature id */
1083  uint32_t *flags; /**< inspect flags ptr */
1084  union {
1085  struct {
1087  uint8_t stream_result;
1088  };
1089  uint32_t stream_reset;
1090  };
1091 
1092  const Signature *s; /**< ptr to sig */
1094 
1095 /**
1096  * Detection engine thread data.
1097  */
1098 typedef struct DetectEngineThreadCtx_ {
1099  /** \note multi-tenant hash lookup code from Detect() *depends*
1100  * on this being the first member */
1101  uint32_t tenant_id;
1102 
1103  SC_ATOMIC_DECLARE(int, so_far_used_by_detect);
1104 
1105  /* the thread to which this detection engine thread belongs */
1107 
1108  /** Array of non-prefiltered sigs that need to be evaluated. Updated
1109  * per packet based on the rule group and traffic properties. */
1111  uint32_t non_pf_id_cnt; // size is cnt * sizeof(uint32_t)
1112 
1116 
1119 
1120  uint32_t (*TenantGetId)(const void *, const Packet *p);
1121 
1122  /* detection engine variables */
1123 
1125 
1126  /** offset into the payload of the end of the last match by: content, pcre, etc */
1127  uint32_t buffer_offset;
1128 
1129  /** used by pcre match function alone: normally in sync with buffer_offset, but
1130  * points to 1 byte after the start of the last pcre match if a pcre match happened. */
1132 
1133  /** SPM thread context used for scanning. This has been cloned from the
1134  * prototype held by DetectEngineCtx. */
1136 
1137  /* byte_* values */
1138  uint64_t *byte_values;
1139 
1140  uint8_t *base64_decoded;
1143 
1144  /* counter for the filestore array below -- up here for cache reasons. */
1145  uint16_t filestore_cnt;
1146 
1147  /** id for alert counter */
1148  uint16_t counter_alerts;
1149  /** id for discarded alerts counter */
1151  /** id for suppressed alerts counter */
1153 #ifdef PROFILING
1158 #endif
1159 
1160  struct {
1162  uint32_t buffers_size; /**< in number of elements */
1163  uint32_t to_clear_idx;
1164  uint32_t *to_clear_queue;
1166 
1167  struct {
1168  /** inspection buffers for more complex case. As we can inspect multiple
1169  * buffers in parallel, we need this extra wrapper struct */
1171  uint32_t buffers_size; /**< in number of elements */
1172  uint32_t to_clear_idx;
1173  uint32_t *to_clear_queue;
1175 
1176  /* true if tx_id is set */
1178  /** ID of the transaction currently being inspected. */
1179  uint64_t tx_id;
1180  int64_t frame_id;
1181  uint64_t frame_inspect_progress; /**< used to set Frame::inspect_progress after all inspection
1182  on a frame is complete. */
1184 
1188 
1189  /** array of signature pointers we're going to inspect in the detection
1190  * loop. */
1192  /** size of the array in items (mem size if * sizeof(Signature *)
1193  * Only used during initialization. */
1195  /** size in use */
1197 
1200 
1203 
1204  MpmThreadCtx mtc; /**< thread ctx for the mpm */
1206 
1207  /* string to replace */
1209  /* vars to store in post match function */
1211 
1212  /* Array in which the filestore keyword stores file id and tx id. If the
1213  * full signature matches, these are processed by a post-match filestore
1214  * function to finalize the store. */
1215  struct {
1216  uint32_t file_id;
1217  uint64_t tx_id;
1219 
1221  /** store for keyword contexts that need a per thread storage. Per de_ctx. */
1224  /** store for keyword contexts that need a per thread storage. Global. */
1227 
1229  uint16_t events;
1230 
1231  /** stats id for lua rule errors */
1233 
1234  /** stats id for lua blocked function counts */
1236 
1237  /** stats if for lua instruction limit errors */
1239 
1240  /** stat of lua memory limit errors. */
1242 
1243 #ifdef DEBUG
1244  uint64_t pkt_stream_add_cnt;
1245  uint64_t payload_mpm_cnt;
1246  uint64_t payload_mpm_size;
1247  uint64_t stream_mpm_cnt;
1248  uint64_t stream_mpm_size;
1249  uint64_t payload_persig_cnt;
1250  uint64_t payload_persig_size;
1251  uint64_t stream_persig_cnt;
1252  uint64_t stream_persig_size;
1253 #endif
1254 #ifdef PROFILE_RULES
1255  struct SCProfileData_ *rule_perf_data;
1256  int rule_perf_data_size;
1257  uint32_t rule_perf_last_sync;
1258 #endif
1259 #ifdef PROFILING
1262  int keyword_perf_list; /**< list we're currently inspecting, DETECT_SM_LIST_* */
1264 
1266  /** bytes inspected by current prefilter callback call */
1268  /** number of times we inspected a buffer */
1270 #endif
1272 
1273 /** \brief element in sigmatch type table.
1274  */
1275 typedef struct SigTableElmt_ {
1276  /** Packet match function pointer */
1277  int (*Match)(DetectEngineThreadCtx *, Packet *, const Signature *, const SigMatchCtx *);
1278 
1279  /** AppLayer TX match function pointer */
1281  uint8_t flags, void *alstate, void *txv,
1282  const Signature *, const SigMatchCtx *);
1283 
1284  /** File match function pointer */
1286  Flow *, /**< *LOCKED* flow */
1287  uint8_t flags, File *, const Signature *, const SigMatchCtx *);
1288 
1289  /** InspectionBuffer transformation callback */
1290  void (*Transform)(InspectionBuffer *, void *context);
1291  bool (*TransformValidate)(const uint8_t *content, uint16_t content_len, void *context);
1292 
1293  /** keyword setup function pointer */
1294  int (*Setup)(DetectEngineCtx *, Signature *, const char *);
1295 
1296  bool (*SupportsPrefilter)(const Signature *s);
1298 
1299  void (*Free)(DetectEngineCtx *, void *);
1300 #ifdef UNITTESTS
1301  void (*RegisterTests)(void);
1302 #endif
1303  uint16_t flags;
1304  /* coccinelle: SigTableElmt:flags:SIGMATCH_ */
1305 
1306  /** better keyword to replace the current one */
1307  uint16_t alternative;
1308 
1309  const char *name; /**< keyword name alias */
1310  const char *alias; /**< name alias */
1311  const char *desc;
1312  const char *url;
1313 
1315 
1316 /* event code */
1317 enum {
1331 
1333 };
1334 
1335 #define SIG_GROUP_HEAD_HAVERAWSTREAM BIT_U16(0)
1336 #ifdef HAVE_MAGIC
1337 #define SIG_GROUP_HEAD_HAVEFILEMAGIC BIT_U16(1)
1338 #endif
1339 #define SIG_GROUP_HEAD_HAVEFILEMD5 BIT_U16(2)
1340 #define SIG_GROUP_HEAD_HAVEFILESIZE BIT_U16(3)
1341 #define SIG_GROUP_HEAD_HAVEFILESHA1 BIT_U16(4)
1342 #define SIG_GROUP_HEAD_HAVEFILESHA256 BIT_U16(5)
1353 };
1354 
1355 typedef struct MpmStore_ {
1356  uint8_t *sid_array;
1357  uint32_t sid_array_size;
1358 
1361  int sm_list;
1365 
1367 
1368 typedef void (*PrefilterPktFn)(DetectEngineThreadCtx *det_ctx, Packet *p, const void *pectx);
1369 typedef void (*PrefilterFrameFn)(DetectEngineThreadCtx *det_ctx, const void *pectx, Packet *p,
1370  const struct Frames *frames, const struct Frame *frame);
1371 
1372 typedef struct AppLayerTxData AppLayerTxData;
1373 typedef void (*PrefilterTxFn)(DetectEngineThreadCtx *det_ctx, const void *pectx, Packet *p, Flow *f,
1374  void *tx, const uint64_t tx_id, const AppLayerTxData *tx_data, const uint8_t flags);
1375 
1376 typedef struct PrefilterEngineList_ {
1377  uint16_t id;
1378 
1379  /** App Proto this engine applies to: only used with Tx Engines */
1381  /** Minimal Tx progress we need before running the engine. Only used
1382  * with Tx Engine */
1384 
1385  uint8_t frame_type;
1386 
1387  SignatureMask pkt_mask; /**< mask for pkt engines */
1388 
1389  /** Context for matching. Might be MpmCtx for MPM engines, other ctx'
1390  * for other engines. */
1391  void *pectx;
1392 
1396 
1398 
1399  /** Free function for pectx data. If NULL the memory is not freed. */
1400  void (*Free)(void *pectx);
1401 
1402  const char *name;
1403  /* global id for this prefilter */
1404  uint32_t gid;
1406 
1407 typedef struct PrefilterEngine_ {
1408  uint16_t local_id;
1409 
1410  /** App Proto this engine applies to: only used with Tx Engines */
1412 
1413  union {
1414  SignatureMask pkt_mask; /**< mask for pkt engines */
1415  /** Minimal Tx progress we need before running the engine. Only used
1416  * with Tx Engine */
1418  uint8_t frame_type;
1419  } ctx;
1420 
1421  /** Context for matching. Might be MpmCtx for MPM engines, other ctx'
1422  * for other engines. */
1423  void *pectx;
1424 
1425  union {
1429  } cb;
1430 
1431  /* global id for this prefilter */
1432  uint32_t gid;
1433  bool is_last;
1436 
1437 typedef struct SigGroupHeadInitData_ {
1439 
1440  uint8_t *sig_array; /**< bit array of sig nums (internal id's) */
1441  uint32_t sig_size; /**< size in bytes */
1442 
1443  uint8_t protos[256]; /**< proto(s) this sgh is for */
1444  uint32_t direction; /**< set to SIG_FLAG_TOSERVER, SIG_FLAG_TOCLIENT or both */
1445  int score; /**< try to make this group a unique one */
1446  uint32_t max_sig_id; /**< max signature idx for this sgh */
1447 
1451 
1456 
1457  /** number of sigs in this group */
1459 
1460  /** Array with sig ptrs... size is sig_cnt * sizeof(Signature *) */
1463 
1464 /** \brief Container for matching data for a signature group */
1465 typedef struct SigGroupHead_ {
1466  uint16_t flags;
1467  /* coccinelle: SigGroupHead:flags:SIG_GROUP_HEAD_ */
1468 
1469  /** the number of signatures in this sgh that have the filestore keyword
1470  * set. */
1471  uint16_t filestore_cnt;
1472 
1473  uint32_t id; /**< unique id used to index sgh_array for stats */
1474 
1475  /* non prefilter list excluding SYN rules */
1478  SignatureNonPrefilterStore *non_pf_other_store_array; // size is non_mpm_store_cnt * sizeof(SignatureNonPrefilterStore)
1479  /* non mpm list including SYN rules */
1480  SignatureNonPrefilterStore *non_pf_syn_store_array; // size is non_mpm_syn_store_cnt * sizeof(SignatureNonPrefilterStore)
1481 
1486 
1487  /* ptr to our init data we only use at... init :) */
1489 
1491 
1492 /** sigmatch has no options, so the parser shouldn't expect any */
1493 #define SIGMATCH_NOOPT BIT_U16(0)
1494 /** sigmatch is compatible with a ip only rule */
1495 #define SIGMATCH_IPONLY_COMPAT BIT_U16(1)
1496 /** sigmatch is compatible with a decode event only rule */
1497 #define SIGMATCH_DEONLY_COMPAT BIT_U16(2)
1498 /**< Flag to indicate that the signature is not built-in */
1499 #define SIGMATCH_NOT_BUILT BIT_U16(3)
1500 /** sigmatch may have options, so the parser should be ready to
1501  * deal with both cases */
1502 #define SIGMATCH_OPTIONAL_OPT BIT_U16(4)
1503 /** input may be wrapped in double quotes. They will be stripped before
1504  * input data is passed to keyword parser */
1505 #define SIGMATCH_QUOTES_OPTIONAL BIT_U16(5)
1506 /** input MUST be wrapped in double quotes. They will be stripped before
1507  * input data is passed to keyword parser. Missing double quotes lead to
1508  * error and signature invalidation. */
1509 #define SIGMATCH_QUOTES_MANDATORY BIT_U16(6)
1510 /** negation parsing is handled by the rule parser. Signature::init_data::negated
1511  * will be set to true or false prior to calling the keyword parser. Exclamation
1512  * mark is stripped from the input to the keyword parser. */
1513 #define SIGMATCH_HANDLE_NEGATION BIT_U16(7)
1514 /** keyword is a content modifier */
1515 #define SIGMATCH_INFO_CONTENT_MODIFIER BIT_U16(8)
1516 /** keyword is a sticky buffer */
1517 #define SIGMATCH_INFO_STICKY_BUFFER BIT_U16(9)
1518 /** keyword is deprecated: used to suggest an alternative */
1519 #define SIGMATCH_INFO_DEPRECATED BIT_U16(10)
1520 /** strict parsing is enabled */
1521 #define SIGMATCH_STRICT_PARSING BIT_U16(11)
1524 {
1525  TENANT_SELECTOR_UNKNOWN = 0, /**< not set */
1526  TENANT_SELECTOR_DIRECT, /**< method provides direct tenant id */
1527  TENANT_SELECTOR_VLAN, /**< map vlan to tenant id */
1528  TENANT_SELECTOR_LIVEDEV, /**< map livedev to tenant id */
1529 };
1530 
1532  uint32_t tenant_id;
1533 
1534  /* traffic id that maps to the tenant id */
1535  uint32_t traffic_id;
1536 
1539 
1540 typedef struct DetectEngineMasterCtx_ {
1542 
1543  /** enable multi tenant mode */
1545 
1546  /** version, incremented after each 'apply to threads' */
1547  uint32_t version;
1548 
1549  /** list of active detection engines. This list is used to generate the
1550  * threads det_ctx's */
1552 
1553  /** free list, containing detection engines that will be removed but may
1554  * still be referenced by det_ctx's. Freed as soon as all references are
1555  * gone. */
1557 
1559 
1560  /** list of tenant mappings. Updated under lock. Used to generate lookup
1561  * structures. */
1563 
1564  /** list of keywords that need thread local ctxs,
1565  * only updated by keyword registration at start up. Not
1566  * covered by the lock. */
1570 
1571 /* Table with all SigMatch registrations */
1573 
1574 /** Remember to add the options in SignatureIsIPOnly() at detect.c otherwise it wont be part of a signature group */
1575 
1576 /* detection api */
1577 TmEcode Detect(ThreadVars *tv, Packet *p, void *data);
1578 
1579 SigMatch *SigMatchAlloc(void);
1580 Signature *SigFindSignatureBySidGid(DetectEngineCtx *, uint32_t, uint32_t);
1582 
1583 void SigRegisterTests(void);
1584 
1586 char *DetectLoadCompleteSigPath(const DetectEngineCtx *, const char *sig_file);
1587 int SigLoadSignatures(DetectEngineCtx *, char *, bool);
1589  DetectEngineThreadCtx *det_ctx, Packet *p);
1590 
1593 
1594 int DetectUnregisterThreadCtxFuncs(DetectEngineCtx *, void *data, const char *name);
1595 int DetectRegisterThreadCtxFuncs(DetectEngineCtx *, const char *name, void *(*InitFunc)(void *), void *data, void (*FreeFunc)(void *), int);
1597 void *DetectGetInnerTx(void *tx_ptr, AppProto alproto, AppProto engine_alproto, uint8_t flow_flags);
1598 
1599 void RuleMatchCandidateTxArrayInit(DetectEngineThreadCtx *det_ctx, uint32_t size);
1601 
1603 
1606 
1607 /* events */
1608 void DetectEngineSetEvent(DetectEngineThreadCtx *det_ctx, uint8_t e);
1609 
1611 
1612 #endif /* SURICATA_DETECT_H */
DetectEngineThreadCtx_::byte_values
uint64_t * byte_values
Definition: detect.h:1138
DetectEngineCtx_::sgh_hash_table
HashListTable * sgh_hash_table
Definition: detect.h:876
DetectEngineCtx_::pkt_mpms_list_cnt
uint32_t pkt_mpms_list_cnt
Definition: detect.h:1004
DetectEngineAppInspectionEngine_::stream
bool stream
Definition: detect.h:434
DetectEngineCtx_::frame_mpms_list_cnt
uint32_t frame_mpms_list_cnt
Definition: detect.h:1007
SCFPSupportSMList
struct SCFPSupportSMList_ SCFPSupportSMList
SigFileLoaderStat_::bad_files
int bad_files
Definition: detect.h:801
SigGroupHead_::non_pf_syn_store_cnt
uint32_t non_pf_syn_store_cnt
Definition: detect.h:1477
DETECT_EVENT_TOO_MANY_BUFFERS
@ DETECT_EVENT_TOO_MANY_BUFFERS
Definition: detect.h:1332
SIG_TYPE_STREAM
@ SIG_TYPE_STREAM
Definition: detect.h:72
DetectEngineThreadCtx_::non_pf_store_ptr
SignatureNonPrefilterStore * non_pf_store_ptr
Definition: detect.h:1201
DetectEngineTenantMapping_
Definition: detect.h:1531
SignatureInitData_::max_content_list_id
uint32_t max_content_list_id
Definition: detect.h:599
DetectAddress_::ip
Address ip
Definition: detect.h:167
SigMatchSignaturesGetSgh
const SigGroupHead * SigMatchSignaturesGetSgh(const DetectEngineCtx *de_ctx, const Packet *p)
Get the SigGroupHead for a packet.
Definition: detect.c:220
DetectPatternTracker
Definition: detect.h:732
PrefilterEngineList_::frame_type
uint8_t frame_type
Definition: detect.h:1385
SCFPSupportSMList_
Definition: detect.h:762
DetectEngineThreadCtx_::keyword_perf_data_per_list
struct SCProfileKeywordData_ ** keyword_perf_data_per_list
Definition: detect.h:1261
SigGroupHead_::tx_engines
PrefilterEngine * tx_engines
Definition: detect.h:1484
SigMatchAlloc
SigMatch * SigMatchAlloc(void)
Definition: detect-parse.c:323
DetectEngineAppInspectionEngine_
Definition: detect.h:429
SigTableElmt_::url
const char * url
Definition: detect.h:1312
DetectBufferType_::supports_transforms
bool supports_transforms
Definition: detect.h:464
SigLoadSignatures
int SigLoadSignatures(DetectEngineCtx *, char *, bool)
Load signatures.
Definition: detect-engine-loader.c:287
MPMB_UDP_TS
@ MPMB_UDP_TS
Definition: detect.h:1349
SignatureInitDataBuffer_::head
SigMatch * head
Definition: detect.h:537
SigMatch_::prev
struct SigMatch_ * prev
Definition: detect.h:354
DetectEngineAppInspectionEngine_::mpm
bool mpm
Definition: detect.h:433
SCProfileKeywordData_
Definition: util-profiling-keywords.c:41
DetectBufferType_::mpm
bool mpm
Definition: detect.h:461
PrefilterEngineList_::Prefilter
PrefilterPktFn Prefilter
Definition: detect.h:1393
SignatureInitDataBuffer_::sm_init
bool sm_init
Definition: detect.h:531
RuleMatchCandidateTx::stream_stored
bool stream_stored
Definition: detect.h:1086
DetectReplaceList_::cd
const struct DetectContentData_ * cd
Definition: detect.h:740
DetectEngineThreadCtx_::alert_queue_size
uint16_t alert_queue_size
Definition: detect.h:1185
DetectEngineThreadCtx_::buffer_offset
uint32_t buffer_offset
Definition: detect.h:1127
DETECT_SM_LIST_PMATCH
@ DETECT_SM_LIST_PMATCH
Definition: detect.h:116
DetectBufferMpmRegistry_::direction
int direction
Definition: detect.h:690
DetectEngineThreadCtx_::to_clear_idx
uint32_t to_clear_idx
Definition: detect.h:1163
SignatureInitDataBuffer
struct SignatureInitDataBuffer_ SignatureInitDataBuffer
SigMatchFree
void SigMatchFree(DetectEngineCtx *, SigMatch *sm)
free a SigMatch
Definition: detect-parse.c:337
DetectEngineCtx_::class_conf_ht
HashTable * class_conf_ht
Definition: detect.h:1031
SignatureInitData_::smlists
struct SigMatch_ * smlists[DETECT_SM_LIST_MAX]
Definition: detect.h:588
detect-engine-proto.h
DetectEngineThreadCtx_::keyword_perf_data
struct SCProfileKeywordData_ * keyword_perf_data
Definition: detect.h:1260
DetectEngineThreadCtx_::match_array_cnt
SigIntId match_array_cnt
Definition: detect.h:1196
DetectVarList_::idx
uint32_t idx
Definition: detect.h:752
MpmStore_::sid_array_size
uint32_t sid_array_size
Definition: detect.h:1357
SigTableElmt_::desc
const char * desc
Definition: detect.h:1311
SignatureInitData_::list_set
bool list_set
Definition: detect.h:573
Signature_::addr_src_match6
DetectMatchAddressIPv6 * addr_src_match6
Definition: detect.h:636
DetectEngineThreadCtx_::SC_ATOMIC_DECLARE
SC_ATOMIC_DECLARE(int, so_far_used_by_detect)
Signature_::sig_str
char * sig_str
Definition: detect.h:670
MpmStore_::sid_array
uint8_t * sid_array
Definition: detect.h:1356
DetectEngineThreadKeywordCtxItem
struct DetectEngineThreadKeywordCtxItem_ DetectEngineThreadKeywordCtxItem
DetectEngineCtx_::sgh_mpm_context_proto_tcp_packet
int32_t sgh_mpm_context_proto_tcp_packet
Definition: detect.h:918
DetectEngineIPOnlyCtx_::tree_ipv6dst
SCRadix6Tree tree_ipv6dst
Definition: detect.h:772
SIG_TYPE_APP_TX
@ SIG_TYPE_APP_TX
Definition: detect.h:75
DetectVarList_::buffer
uint8_t * buffer
Definition: detect.h:757
SigTableElmt_::Free
void(* Free)(DetectEngineCtx *, void *)
Definition: detect.h:1299
IPOnlyCIDRItem
struct IPOnlyCIDRItem_ IPOnlyCIDRItem
util-hashlist.h
DetectEngineCtx_::decoder_event_sgh
struct SigGroupHead_ * decoder_event_sgh
Definition: detect.h:931
DetectEngineCtx_::flow_gh
DetectEngineLookupFlow flow_gh[FLOW_STATES]
Definition: detect.h:873
SCFPSupportSMList_::next
struct SCFPSupportSMList_ * next
Definition: detect.h:765
DetectEngineThreadCtx_::counter_match_list
uint16_t counter_match_list
Definition: detect.h:1157
SigString
struct SigString_ SigString
DetectEnginePktInspectionEngine
Definition: detect.h:488
DetectEngineMasterCtx_::tenant_mapping_list
DetectEngineTenantMapping * tenant_mapping_list
Definition: detect.h:1562
Signature_::filestore_ctx
const struct DetectFilestoreData_ * filestore_ctx
Definition: detect.h:659
DetectEngineAppInspectionEngine_::next
struct DetectEngineAppInspectionEngine_ * next
Definition: detect.h:453
SigGroupHead_::flags
uint16_t flags
Definition: detect.h:1466
DetectEngineThreadCtx_::filestore
struct DetectEngineThreadCtx_::@97 filestore[DETECT_FILESTORE_MAX]
SignatureIsIPOnly
int SignatureIsIPOnly(DetectEngineCtx *de_ctx, const Signature *s)
Test is a initialized signature is IP only.
Definition: detect-engine-build.c:209
SCFPSupportSMList_::list_id
int list_id
Definition: detect.h:763
SigTableElmt_::name
const char * name
Definition: detect.h:1309
DetectEngineMasterCtx_::list
DetectEngineCtx * list
Definition: detect.h:1551
SignatureInitData_::smlists_tail
struct SigMatch_ * smlists_tail[DETECT_SM_LIST_MAX]
Definition: detect.h:590
InspectionBuffer::initialized
bool initialized
Definition: detect.h:377
MpmThreadCtx_
Definition: util-mpm.h:46
DetectPatternTracker::mpm
uint32_t mpm
Definition: detect.h:736
Signature_::num
SigIntId num
Definition: detect.h:615
DetectEngineCtx
struct DetectEngineCtx_ DetectEngineCtx
main detection engine ctx
IPOnlyCIDRItem_::netmask
uint8_t netmask
Definition: detect.h:329
DetectEngineCtx_::type
enum DetectEngineType type
Definition: detect.h:967
SigGroupHead_
Container for matching data for a signature group.
Definition: detect.h:1465
DetectEngineCtx_::pattern_hash_table
HashListTable * pattern_hash_table
Definition: detect.h:879
DetectEngineThreadCtx_::sgh_perf_data
struct SCProfileSghData_ * sgh_perf_data
Definition: detect.h:1263
DetectEngineCtx_::rule_file
char * rule_file
Definition: detect.h:938
DetectEngineCtx_::guess_applayer
bool guess_applayer
Definition: detect.h:893
DetectEngineIPOnlyCtx_::tree_ipv4dst
SCRadix4Tree tree_ipv4dst
Definition: detect.h:771
PORT_LT
@ PORT_LT
Definition: detect.h:203
DetectEngineTransforms
Definition: detect.h:408
PrefilterEngineList_::id
uint16_t id
Definition: detect.h:1377
DetectBufferMpmRegistry_::sm_list_base
int16_t sm_list_base
Definition: detect.h:692
SigGroupHeadInitData_::sig_array
uint8_t * sig_array
Definition: detect.h:1440
SCProfileSghDetectCtx_
Definition: util-profiling-rulegroups.c:52
DetectAddress_
address structure for use in the detection engine.
Definition: detect.h:165
DetectEngineCtx_::max_uniq_toclient_groups
uint16_t max_uniq_toclient_groups
Definition: detect.h:904
DetectEngineThreadCtx_::buffers
InspectionBufferMultipleForList * buffers
Definition: detect.h:1170
SignatureInitData_::prefilter_sm
SigMatch * prefilter_sm
Definition: detect.h:569
PrefilterRuleStore_
structure for storing potential rule matches
Definition: util-prefilter.h:34
SignatureInitData_::src_contains_negation
bool src_contains_negation
Definition: detect.h:551
FILE_DECODER_EVENT_LZMA_UNKNOWN_ERROR
@ FILE_DECODER_EVENT_LZMA_UNKNOWN_ERROR
Definition: detect.h:1330
DetectEngineCtx_::ref_cnt
uint32_t ref_cnt
Definition: detect.h:970
DetectEngineCtx_::sigerror_silent
bool sigerror_silent
Definition: detect.h:940
DetectEngineAppInspectionEngine_::Callback
InspectEngineFuncPtr Callback
Definition: detect.h:446
Signature_::alproto
AppProto alproto
Definition: detect.h:608
SignatureNonPrefilterStore_::id
SigIntId id
Definition: detect.h:1075
SigString_
Definition: detect.h:790
DetectAddressHead_
Definition: detect.h:180
MPMB_OTHERIP
@ MPMB_OTHERIP
Definition: detect.h:1351
DetectEngineCtx_::non_pf_store_cnt_max
uint32_t non_pf_store_cnt_max
Definition: detect.h:867
DetectEngineCtx_::filedata_config
DetectFileDataCfg * filedata_config
Definition: detect.h:953
next
struct HtpBodyChunk_ * next
Definition: app-layer-htp.h:0
DetectEngineFrameInspectionEngine::sm_list_base
uint16_t sm_list_base
Definition: detect.h:519
DetectPort_::port
uint16_t port
Definition: detect.h:218
SigMatchData_::is_last
bool is_last
Definition: detect.h:360
DetectEngineIPOnlyCtx_::ip_src
IPOnlyCIDRItem * ip_src
Definition: detect.h:775
AppProto
uint16_t AppProto
Definition: app-layer-protos.h:81
DETECT_SM_LIST_DYNAMIC_START
@ DETECT_SM_LIST_DYNAMIC_START
Definition: detect.h:135
IPOnlyCIDRItem_
Definition: detect.h:325
DetectFileDataCfg
Definition: detect.h:837
DetectEngineThreadCtx_::tx_id
uint64_t tx_id
Definition: detect.h:1179
DetectEngineThreadCtx_::decoder_events
AppLayerDecoderEvents * decoder_events
Definition: detect.h:1228
SigMatchData_::ctx
SigMatchCtx * ctx
Definition: detect.h:361
InspectionMultiBufferGetDataPtr
InspectionBuffer *(* InspectionMultiBufferGetDataPtr)(struct DetectEngineThreadCtx_ *det_ctx, const DetectEngineTransforms *transforms, Flow *f, const uint8_t flow_flags, void *txv, const int list_id, const uint32_t local_id)
Definition: detect.h:419
InspectionBuffer
Definition: detect.h:373
DetectVarList_::key_len
uint16_t key_len
Definition: detect.h:754
MpmStore_::sm_list
int sm_list
Definition: detect.h:1361
DetectEngineAppInspectionEngine_::GetData
InspectionBufferGetDataPtr GetData
Definition: detect.h:443
DetectEngineThreadKeywordCtxItem_
Definition: detect.h:808
DetectEngineCtx_::pkt_mpms_list
DetectBufferMpmRegistry * pkt_mpms_list
Definition: detect.h:1003
DETECT_BUFFER_MPM_TYPE_FRAME
@ DETECT_BUFFER_MPM_TYPE_FRAME
Definition: detect.h:681
Frame
Definition: app-layer-frames.h:43
Flow_
Flow data structure.
Definition: flow.h:356
SigTableElmt_::FileMatch
int(* FileMatch)(DetectEngineThreadCtx *, Flow *, uint8_t flags, File *, const Signature *, const SigMatchCtx *)
Definition: detect.h:1285
DetectVarList_
Definition: detect.h:751
DETECT_SM_LIST_THRESHOLD
@ DETECT_SM_LIST_THRESHOLD
Definition: detect.h:130
DetectReplaceList_::found
uint8_t * found
Definition: detect.h:741
DetectEngineThreadKeywordCtxItem_::data
void * data
Definition: detect.h:811
DetectEngineThreadCtx_::pmq
PrefilterRuleStore pmq
Definition: detect.h:1205
util-hash.h
EngineAnalysisCtx_
Definition: detect-engine-analyzer.c:83
InspectionBufferGetDataPtr
InspectionBuffer *(* InspectionBufferGetDataPtr)(struct DetectEngineThreadCtx_ *det_ctx, const DetectEngineTransforms *transforms, Flow *f, const uint8_t flow_flags, void *txv, const int list_id)
Definition: detect.h:414
SigGroupHeadInitData_::mpm_store
MpmStore mpm_store[MPMB_MAX]
Definition: detect.h:1438
DetectBufferMpmRegistry_::app_v2
struct DetectBufferMpmRegistry_::@84::@86 app_v2
ADDRESS_EB
@ ADDRESS_EB
Definition: detect.h:154
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1303
SigFindSignatureBySidGid
Signature * SigFindSignatureBySidGid(DetectEngineCtx *, uint32_t, uint32_t)
Find a specific signature by sid and gid.
Definition: detect-engine-build.c:79
DetectEngineIPOnlyCtx_::tree_ipv4src
SCRadix4Tree tree_ipv4src
Definition: detect.h:771
DetectEngineCtx_::inspection_recursion_limit
int inspection_recursion_limit
Definition: detect.h:887
PrefilterEngineList_::name
const char * name
Definition: detect.h:1402
DetectVarList_::len
uint16_t len
Definition: detect.h:753
DetectEngineFrameInspectionEngine::transforms
const DetectEngineTransforms * transforms
Definition: detect.h:523
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:843
FILE_DECODER_EVENT_LZMA_DECODER_ERROR
@ FILE_DECODER_EVENT_LZMA_DECODER_ERROR
Definition: detect.h:1327
DetectEnginePktInspectionEngine::smd
SigMatchData * smd
Definition: detect.h:489
DetectPatternTracker
struct DetectPatternTracker DetectPatternTracker
SCProfilePrefilterDetectCtx_
Definition: util-profiling-prefilter.c:48
SIG_TYPE_PKT_STREAM
@ SIG_TYPE_PKT_STREAM
Definition: detect.h:71
DetectEngineThreadCtx_::lua_blocked_function_errors
uint16_t lua_blocked_function_errors
Definition: detect.h:1235
SigMatchSignatures
void SigMatchSignatures(ThreadVars *th_v, DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, Packet *p)
wrapper for old tests
Definition: detect.c:1950
DetectEngineThreadCtx_::global_keyword_ctxs_array
void ** global_keyword_ctxs_array
Definition: detect.h:1226
TransformData_::options
void * options
Definition: detect.h:405
DetectEngineFrameInspectionEngine::mpm
bool mpm
Definition: detect.h:517
detect-engine-register.h
PrefilterEngine_::tx_min_progress
uint8_t tx_min_progress
Definition: detect.h:1417
InspectionBuffer::orig
const uint8_t * orig
Definition: detect.h:387
DetectEngineCtx_::reference_conf_regex_match
pcre2_match_data * reference_conf_regex_match
Definition: detect.h:1040
RuleMatchCandidateTxArrayFree
void RuleMatchCandidateTxArrayFree(DetectEngineThreadCtx *det_ctx)
Definition: detect.c:1007
DetectEngineThreadCtx_::p
Packet * p
Definition: detect.h:1183
DetectEngineAppInspectionEngine_::v2
struct DetectEngineAppInspectionEngine_::@79 v2
SigTableElmt_::AppLayerTxMatch
int(* AppLayerTxMatch)(DetectEngineThreadCtx *, Flow *, uint8_t flags, void *alstate, void *txv, const Signature *, const SigMatchCtx *)
Definition: detect.h:1280
DetectEngineThreadCtx_::keyword_perf_list
int keyword_perf_list
Definition: detect.h:1262
InspectionBufferGetPktDataPtr
InspectionBuffer *(* InspectionBufferGetPktDataPtr)(struct DetectEngineThreadCtx_ *det_ctx, const DetectEngineTransforms *transforms, Packet *p, const int list_id)
Definition: detect.h:483
DetectEngineCtx_::keyword_id
int keyword_id
Definition: detect.h:949
RuleMatchCandidateTx::id
SigIntId id
Definition: detect.h:1082
Detect
TmEcode Detect(ThreadVars *tv, Packet *p, void *data)
Detection engine thread wrapper.
Definition: detect.c:1871
DetectBufferMpmRegistry_::type
uint8_t type
Definition: detect.h:724
SignatureProperties
Definition: detect.h:86
FILE_DECODER_EVENT_Z_UNKNOWN_ERROR
@ FILE_DECODER_EVENT_Z_UNKNOWN_ERROR
Definition: detect.h:1324
DetectBufferMpmRegistry_::next
struct DetectBufferMpmRegistry_ * next
Definition: detect.h:728
HashTable_
Definition: util-hash.h:35
DetectPatternTracker::cnt
uint32_t cnt
Definition: detect.h:735
DetectEngineTenantMapping_::next
struct DetectEngineTenantMapping_ * next
Definition: detect.h:1537
DetectEngineThreadCtx_::buffers_size
uint32_t buffers_size
Definition: detect.h:1162
DetectEngineCtx_::srep_version
uint32_t srep_version
Definition: detect.h:855
DetectBufferType_::name
char name[32]
Definition: detect.h:457
DetectEngineCtx_::profile_sgh_ctx
struct SCProfileSghDetectCtx_ * profile_sgh_ctx
Definition: detect.h:962
Frames
Definition: app-layer-frames.h:58
DetectBufferMpmRegistry_
one time registration of keywords at start up
Definition: detect.h:687
ENGINE_SGH_MPM_FACTORY_CONTEXT_AUTO
@ ENGINE_SGH_MPM_FACTORY_CONTEXT_AUTO
Definition: detect.h:1068
DetectPort_::next
struct DetectPort_ * next
Definition: detect.h:231
DetectEngineCtx_::tcp_priorityports
DetectPort * tcp_priorityports
Definition: detect.h:982
DetectReplaceList_
Definition: detect.h:739
MPMB_TCP_STREAM_TS
@ MPMB_TCP_STREAM_TS
Definition: detect.h:1347
DetectEngineAppInspectionEngine_::sm_list_base
uint16_t sm_list_base
Definition: detect.h:438
ENGINE_PROFILE_LOW
@ ENGINE_PROFILE_LOW
Definition: detect.h:1058
Address_
Definition: decode.h:108
DetectPatternTracker::cd
const struct DetectContentData_ * cd
Definition: detect.h:733
DetectEngineCtx_::sigerror_requires
bool sigerror_requires
Definition: detect.h:944
InspectionBuffer::size
uint32_t size
Definition: detect.h:384
DetectEngineThreadCtx_::spm_thread_ctx
SpmThreadCtx * spm_thread_ctx
Definition: detect.h:1135
DetectAddressHead
struct DetectAddressHead_ DetectAddressHead
InspectionBuffer::flags
uint8_t flags
Definition: detect.h:378
DetectEngineCtx_::dport_hash_table
HashListTable * dport_hash_table
Definition: detect.h:980
SignatureInitDataBuffer_::multi_capable
bool multi_capable
Definition: detect.h:534
Signature_::sm_arrays
SigMatchData * sm_arrays[DETECT_SM_LIST_MAX]
Definition: detect.h:656
SigGroupHead_::payload_engines
PrefilterEngine * payload_engines
Definition: detect.h:1483
DetectEngineCtx_::mpm_ctx_factory_container
MpmCtxFactoryContainer * mpm_ctx_factory_container
Definition: detect.h:910
DetectEngineCtx_::prefilter_setting
enum DetectEnginePrefilterSetting prefilter_setting
Definition: detect.h:978
SignatureInitData_::init_flags
uint32_t init_flags
Definition: detect.h:555
DetectEngineCtx_::reference_conf_regex
pcre2_code * reference_conf_regex
Definition: detect.h:1039
DetectBufferType_
Definition: detect.h:456
DetectPort_::sh
struct SigGroupHead_ * sh
Definition: detect.h:228
DetectEngineCtx_::udp_priorityports
DetectPort * udp_priorityports
Definition: detect.h:983
DetectContentData_
Definition: detect-content.h:93
DetectEngineSetEvent
void DetectEngineSetEvent(DetectEngineThreadCtx *det_ctx, uint8_t e)
Definition: detect-engine.c:4991
SigFileLoaderStat_::TAILQ_HEAD
TAILQ_HEAD(, SigString_) failed_sigs
FILE_DECODER_EVENT_LZMA_XZ_ERROR
@ FILE_DECODER_EVENT_LZMA_XZ_ERROR
Definition: detect.h:1329
DetectEngineCtx_::sigerror_ok
bool sigerror_ok
Definition: detect.h:941
DetectEngineCtx_::class_conf_regex
pcre2_code * class_conf_regex
Definition: detect.h:1032
PrefilterEngine_::local_id
uint16_t local_id
Definition: detect.h:1408
ADDRESS_GT
@ ADDRESS_GT
Definition: detect.h:156
PrefilterEngineList_::Free
void(* Free)(void *pectx)
Definition: detect.h:1400
DetectEngineThreadCtx_::lua_instruction_limit_errors
uint16_t lua_instruction_limit_errors
Definition: detect.h:1238
RuleMatchCandidateTxArrayInit
void RuleMatchCandidateTxArrayInit(DetectEngineThreadCtx *det_ctx, uint32_t size)
Definition: detect.c:994
MPMB_MAX
@ MPMB_MAX
Definition: detect.h:1352
SigTableElmt_
element in sigmatch type table.
Definition: detect.h:1275
SCDetectRequiresStatus
struct SCDetectRequiresStatus SCDetectRequiresStatus
Definition: detect.h:60
SigMatchData_
Data needed for Match()
Definition: detect.h:358
InspectionBufferMultipleForList::init
uint32_t init
Definition: detect.h:400
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1294
DetectEngineCtx_::sgh_mpm_context_proto_udp_packet
int32_t sgh_mpm_context_proto_udp_packet
Definition: detect.h:919
DetectPort
struct DetectPort_ DetectPort
Port structure for detection engine.
RuleMatchCandidateTx::s
const Signature * s
Definition: detect.h:1092
DetectEngineCtx_::reference_conf_ht
HashTable * reference_conf_ht
Definition: detect.h:1038
DetectBufferMpmRegistry_::transforms
DetectEngineTransforms transforms
Definition: detect.h:700
SIG_TYPE_APPLAYER
@ SIG_TYPE_APPLAYER
Definition: detect.h:74
DetectEngineThreadCtx_::counter_fnonmpm_list
uint16_t counter_fnonmpm_list
Definition: detect.h:1156
SigMatchData_::type
uint16_t type
Definition: detect.h:359
DetectEngineCtx_::version
uint32_t version
Definition: detect.h:927
DetectMatchAddressIPv4_::ip
uint32_t ip
Definition: detect.h:187
DETECT_TRANSFORMS_MAX
#define DETECT_TRANSFORMS_MAX
Definition: detect.h:47
InspectionBuffer::orig_len
uint32_t orig_len
Definition: detect.h:386
DetectEngineThreadCtx_::varlist
DetectVarList * varlist
Definition: detect.h:1210
Signature_::dsize_low
uint16_t dsize_low
Definition: detect.h:610
DetectPort_::port2
uint16_t port2
Definition: detect.h:219
SignatureNonPrefilterStore_
Definition: detect.h:1074
DetectEngineThreadCtx_::counter_nonmpm_list
uint16_t counter_nonmpm_list
Definition: detect.h:1155
MPMB_TCP_STREAM_TC
@ MPMB_TCP_STREAM_TC
Definition: detect.h:1348
DetectEngineThreadCtx_::events
uint16_t events
Definition: detect.h:1229
AppLayerDecoderEvents_
Data structure to store app layer decoder events.
Definition: app-layer-events.h:36
SigGroupHead
struct SigGroupHead_ SigGroupHead
Container for matching data for a signature group.
DetectMatchAddressIPv6
struct DetectMatchAddressIPv6_ DetectMatchAddressIPv6
DetectUnregisterThreadCtxFuncs
int DetectUnregisterThreadCtxFuncs(DetectEngineCtx *, void *data, const char *name)
Remove Thread keyword context registration.
Definition: detect-engine.c:3701
TransformData_
Definition: detect.h:403
FLOW_STATES
#define FLOW_STATES
Definition: detect.h:835
Signature_::frame_inspect
DetectEngineFrameInspectionEngine * frame_inspect
Definition: detect.h:652
DetectEngineIPOnlyCtx_::tree_ipv6src
SCRadix6Tree tree_ipv6src
Definition: detect.h:772
DetectEnginePktInspectionEngine::transforms
const DetectEngineTransforms * transforms
Definition: detect.h:497
MpmBuiltinBuffers
MpmBuiltinBuffers
Definition: detect.h:1344
DetectPort_::flags
uint8_t flags
Definition: detect.h:221
SigRegisterTests
void SigRegisterTests(void)
Definition: detect.c:4961
DetectThreadCtxGetKeywordThreadCtx
void * DetectThreadCtxGetKeywordThreadCtx(DetectEngineThreadCtx *, int)
Retrieve thread local keyword ctx by id.
Definition: detect-engine.c:3719
DetectEngineFrameInspectionEngine::Callback
InspectionBufferFrameInspectFunc Callback
Definition: detect.h:521
InspectionBufferMultipleForList::size
uint32_t size
Definition: detect.h:398
DetectEngineThreadCtx_::mt_det_ctxs_hash
HashTable * mt_det_ctxs_hash
Definition: detect.h:1115
DetectAddress_::prev
struct DetectAddress_ * prev
Definition: detect.h:174
PrefilterEngine_::cb
union PrefilterEngine_::@99 cb
DETECT_PREFILTER_AUTO
@ DETECT_PREFILTER_AUTO
Definition: detect.h:820
DetectEngineThreadCtx_::keyword_ctxs_size
int keyword_ctxs_size
Definition: detect.h:1223
PrefilterEngine_::is_last_for_progress
bool is_last_for_progress
Definition: detect.h:1434
detect-reference.h
Signature_::gid
uint32_t gid
Definition: detect.h:639
DetectEngineThreadCtx_::lua_rule_errors
uint16_t lua_rule_errors
Definition: detect.h:1232
DetectEngineCtx_::prefilter_id
uint32_t prefilter_id
Definition: detect.h:1009
DetectEngineCtx_::sgh_array_size
uint32_t sgh_array_size
Definition: detect.h:916
SigGroupHeadInitData_::pkt_mpms
MpmCtx ** pkt_mpms
Definition: detect.h:1449
SigString_::sig_error
char * sig_error
Definition: detect.h:793
DetectMatchAddressIPv6_::ip2
uint32_t ip2[4]
Definition: detect.h:193
DetectEngineAppInspectionEngine_::id
uint8_t id
Definition: detect.h:432
SCRadix4Tree_
Structure for the radix tree.
Definition: util-radix4-tree.h:66
PrefilterEngineList_::next
struct PrefilterEngineList_ * next
Definition: detect.h:1397
DetectEngineThreadCtx_::counter_alerts_suppressed
uint16_t counter_alerts_suppressed
Definition: detect.h:1152
SigTableElmt_::SetupPrefilter
int(* SetupPrefilter)(DetectEngineCtx *de_ctx, struct SigGroupHead_ *sgh)
Definition: detect.h:1297
Signature_::next
struct Signature_ * next
Definition: detect.h:675
DetectEngineCtx_::sgh_mpm_context_proto_other_packet
int32_t sgh_mpm_context_proto_other_packet
Definition: detect.h:920
DetectVarList
struct DetectVarList_ DetectVarList
DetectEngineAppInspectionEngine_::sm_list
uint16_t sm_list
Definition: detect.h:437
TENANT_SELECTOR_UNKNOWN
@ TENANT_SELECTOR_UNKNOWN
Definition: detect.h:1525
DetectEngineTenantMapping_::tenant_id
uint32_t tenant_id
Definition: detect.h:1532
InspectionBufferMultipleForList
Definition: detect.h:396
SigFileLoaderStat_::skipped_sigs_total
int skipped_sigs_total
Definition: detect.h:805
DetectBufferMpmType
DetectBufferMpmType
Definition: detect.h:678
DETECT_SM_LIST_POSTMATCH
@ DETECT_SM_LIST_POSTMATCH
Definition: detect.h:124
DetectEngineTenantMapping
struct DetectEngineTenantMapping_ DetectEngineTenantMapping
DetectEngineCtx_::prefilter_hash_table
HashListTable * prefilter_hash_table
Definition: detect.h:1010
ENGINE_PROFILE_HIGH
@ ENGINE_PROFILE_HIGH
Definition: detect.h:1060
SigGroupHeadInitData_::score
int score
Definition: detect.h:1445
DetectReplaceList
struct DetectReplaceList_ DetectReplaceList
SignaturePropertyFlowAction
SignaturePropertyFlowAction
Definition: detect.h:80
SigString_::TAILQ_ENTRY
TAILQ_ENTRY(SigString_) next
DetectEngineTenantSelectors
DetectEngineTenantSelectors
Definition: detect.h:1524
DetectBufferMpmRegistry_::GetData
InspectionBufferGetDataPtr GetData
Definition: detect.h:706
DetectFileDataCfg::content_inspect_min_size
uint32_t content_inspect_min_size
Definition: detect.h:839
InspectionBufferPktInspectFunc
int(* InspectionBufferPktInspectFunc)(struct DetectEngineThreadCtx_ *, const struct DetectEnginePktInspectionEngine *engine, const struct Signature_ *s, Packet *p, uint8_t *alert_flags)
Definition: detect.h:476
DetectBufferType
struct DetectBufferType_ DetectBufferType
DetectEngineCtx_::class_conf_regex_match
pcre2_match_data * class_conf_regex_match
Definition: detect.h:1033
DetectEngineThreadCtx_::tx_candidates
RuleMatchCandidateTx * tx_candidates
Definition: detect.h:1198
InspectionBuffer
struct InspectionBuffer InspectionBuffer
SIG_TYPE_PKT
@ SIG_TYPE_PKT
Definition: detect.h:70
DetectEngineCtx_::requirements
SCDetectRequiresStatus * requirements
Definition: detect.h:1049
DetectEngineMasterCtx
struct DetectEngineMasterCtx_ DetectEngineMasterCtx
SignatureInitData_::prefilter_list
int prefilter_list
Definition: detect.h:585
Signature_::addr_src_match4
DetectMatchAddressIPv4 * addr_src_match4
Definition: detect.h:633
SigTableElmt_::TransformValidate
bool(* TransformValidate)(const uint8_t *content, uint16_t content_len, void *context)
Definition: detect.h:1291
Signature_::class_id
uint16_t class_id
Definition: detect.h:625
DetectEngineThreadCtx_::counter_alerts_overflow
uint16_t counter_alerts_overflow
Definition: detect.h:1150
DETECT_FILESTORE_MAX
#define DETECT_FILESTORE_MAX
Definition: detect.h:1072
PrefilterEngineList_::alproto
AppProto alproto
Definition: detect.h:1380
SignatureInitData
struct SignatureInitData_ SignatureInitData
SigGroupHeadInitData_::sig_cnt
SigIntId sig_cnt
Definition: detect.h:1458
SRepCIDRTree_
Definition: reputation.h:36
DetectBufferMpmRegistry_::sgh_mpm_context
int sgh_mpm_context
Definition: detect.h:696
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectEnginePktInspectionEngine::sm_list
uint16_t sm_list
Definition: detect.h:491
DetectEngineThreadCtx_::match_array_len
uint32_t match_array_len
Definition: detect.h:1194
ADDRESS_GE
@ ADDRESS_GE
Definition: detect.h:155
DetectBufferMpmRegistry_::GetData
InspectionBufferGetPktDataPtr GetData
Definition: detect.h:718
IPOnlyCIDRItem_::negated
uint8_t negated
Definition: detect.h:331
SignatureInitData_::buffers_size
uint32_t buffers_size
Definition: detect.h:595
ENGINE_SGH_MPM_FACTORY_CONTEXT_SINGLE
@ ENGINE_SGH_MPM_FACTORY_CONTEXT_SINGLE
Definition: detect.h:1067
DetectEngineThreadCtx_
Definition: detect.h:1098
PrefilterEngine_
Definition: detect.h:1407
MpmStore_
Definition: detect.h:1355
SigGroupHeadInitData_::tx_engines
PrefilterEngineList * tx_engines
Definition: detect.h:1454
SIG_TYPE_IPONLY
@ SIG_TYPE_IPONLY
Definition: detect.h:64
SCProfileKeywordDetectCtx_
Definition: util-profiling-keywords.c:49
PORT_ES
@ PORT_ES
Definition: detect.h:206
SignatureInitData_::mpm_sm
SigMatch * mpm_sm
Definition: detect.h:567
DetectEngineCtx_::srepCIDR_ctx
SRepCIDRTree * srepCIDR_ctx
Definition: detect.h:858
SignatureInitData_::src
const DetectAddressHead * src
Definition: detect.h:583
DetectEngineThreadCtx_::tx_candidates_size
uint32_t tx_candidates_size
Definition: detect.h:1199
signature_properties
const struct SignatureProperties signature_properties[SIG_TYPE_MAX]
Definition: detect-engine.c:113
DETECT_SM_LIST_BASE64_DATA
@ DETECT_SM_LIST_BASE64_DATA
Definition: detect.h:121
DetectEngineThreadKeywordCtxItem_::id
int id
Definition: detect.h:813
DetectBufferMpmRegistry_::sm_list
int16_t sm_list
Definition: detect.h:691
DetectEngineThreadCtx_::buffers
InspectionBuffer * buffers
Definition: detect.h:1161
DetectEngineMasterCtx_::keyword_list
DetectEngineThreadKeywordCtxItem * keyword_list
Definition: detect.h:1567
SignatureInitData_::mpm_sm_list
int mpm_sm_list
Definition: detect.h:565
PrefilterEngineList_::PrefilterFrame
PrefilterFrameFn PrefilterFrame
Definition: detect.h:1395
DetectEngineMasterCtx_::tenant_selector
enum DetectEngineTenantSelectors tenant_selector
Definition: detect.h:1558
DetectEngineCtx_::keyword_hash
HashListTable * keyword_hash
Definition: detect.h:951
PrefilterEngineList_::pectx
void * pectx
Definition: detect.h:1391
SignatureInitData_::cidr_dst
IPOnlyCIDRItem * cidr_dst
Definition: detect.h:562
DetectEngineCtx_::last_reload
struct timeval last_reload
Definition: detect.h:1013
SignatureInitData_::list
int list
Definition: detect.h:572
DetectEngineCtx_::failure_fatal
bool failure_fatal
Definition: detect.h:844
Signature_::pkt_inspect
DetectEnginePktInspectionEngine * pkt_inspect
Definition: detect.h:651
DetectEngineAppInspectionEngine_::GetMultiData
InspectionMultiBufferGetDataPtr GetMultiData
Definition: detect.h:444
SCProfileSghData_
Definition: util-profiling-rulegroups.c:38
DetectReplaceList_::next
struct DetectReplaceList_ * next
Definition: detect.h:742
DetectEngineLookupFlow_::sgh
struct SigGroupHead_ * sgh[256]
Definition: detect.h:787
Signature_::references
DetectReference * references
Definition: detect.h:666
PrefilterEngineList_::PrefilterTx
PrefilterTxFn PrefilterTx
Definition: detect.h:1394
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:58
DetectEngineCtx_::sm_types_prefilter
bool * sm_types_prefilter
Definition: detect.h:1025
SignatureNonPrefilterStore_::alproto
AppProto alproto
Definition: detect.h:1077
PrefilterEngine_::ctx
union PrefilterEngine_::@98 ctx
PrefilterEngineList_::gid
uint32_t gid
Definition: detect.h:1404
ADDRESS_LT
@ ADDRESS_LT
Definition: detect.h:150
PORT_EB
@ PORT_EB
Definition: detect.h:207
DetectEngineFrameInspectionEngine::sm_list
uint16_t sm_list
Definition: detect.h:518
DetectMetadataHead
Definition: detect-metadata.h:39
SigTableElmt
struct SigTableElmt_ SigTableElmt
element in sigmatch type table.
SigMatch
struct SigMatch_ SigMatch
a single match condition for a signature
DetectBufferMpmRegistry_::pkt_v1
struct DetectBufferMpmRegistry_::@84::@87 pkt_v1
SigMatch_::next
struct SigMatch_ * next
Definition: detect.h:353
DetectEngineCtx_::mpm_matcher
uint8_t mpm_matcher
Definition: detect.h:846
PORT_GT
@ PORT_GT
Definition: detect.h:209
InspectionBuffer::inspect_offset
uint64_t inspect_offset
Definition: detect.h:375
DetectEngineCtx_::frame_inspect_engines
DetectEngineFrameInspectionEngine * frame_inspect_engines
Definition: detect.h:1005
DetectBufferMpmRegistry_::priority
int priority
Definition: detect.h:693
PrefilterEngineList
struct PrefilterEngineList_ PrefilterEngineList
DetectEngineMasterCtx_::free_list
DetectEngineCtx * free_list
Definition: detect.h:1556
DetectEngineCtx_::filestore_cnt
uint16_t filestore_cnt
Definition: detect.h:1052
ADDRESS_LE
@ ADDRESS_LE
Definition: detect.h:151
DetectEngineThreadKeywordCtxItem_::next
struct DetectEngineThreadKeywordCtxItem_ * next
Definition: detect.h:812
DetectAddress_::ip2
Address ip2
Definition: detect.h:168
DetectEngineThreadCtx_::non_pf_id_cnt
uint32_t non_pf_id_cnt
Definition: detect.h:1111
PrefilterFrameFn
void(* PrefilterFrameFn)(DetectEngineThreadCtx *det_ctx, const void *pectx, Packet *p, const struct Frames *frames, const struct Frame *frame)
Definition: detect.h:1369
DETECT_SM_LIST_MATCH
@ DETECT_SM_LIST_MATCH
Definition: detect.h:114
DetectPort_
Port structure for detection engine.
Definition: detect.h:217
SigGroupHead_::init
SigGroupHeadInitData * init
Definition: detect.h:1488
DetectEngineCtx_::sig_cnt
uint32_t sig_cnt
Definition: detect.h:852
InspectionBuffer::buf
uint8_t * buf
Definition: detect.h:383
SigTableElmt_::alternative
uint16_t alternative
Definition: detect.h:1307
SignatureInitData_::cidr_src
IPOnlyCIDRItem * cidr_src
Definition: detect.h:562
Signature_::app_inspect
DetectEngineAppInspectionEngine * app_inspect
Definition: detect.h:650
SigMatch_::ctx
SigMatchCtx * ctx
Definition: detect.h:352
DetectReference_
Signature reference list.
Definition: detect-reference.h:30
DetectBufferType_::ValidateCallback
bool(* ValidateCallback)(const struct Signature_ *, const char **sigerror)
Definition: detect.h:467
SigFileLoaderStat_::bad_sigs_total
int bad_sigs_total
Definition: detect.h:804
SigGroupHeadInitData_::direction
uint32_t direction
Definition: detect.h:1444
DetectLoadCompleteSigPath
char * DetectLoadCompleteSigPath(const DetectEngineCtx *, const char *sig_file)
Create the path if default-rule-path was specified.
Definition: detect-engine-loader.c:62
PORT_ER
@ PORT_ER
Definition: detect.h:202
MpmStore_::direction
int direction
Definition: detect.h:1359
DetectEngineThreadCtx_::base64_decoded_len
int base64_decoded_len
Definition: detect.h:1141
DetectVarList_::next
struct DetectVarList_ * next
Definition: detect.h:759
DetectEngineThreadCtx_::lua_memory_limit_errors
uint16_t lua_memory_limit_errors
Definition: detect.h:1241
RuleMatchCandidateTx::stream_result
uint8_t stream_result
Definition: detect.h:1087
Signature_::action
uint8_t action
Definition: detect.h:618
DetectEngineLookupFlow_::udp
DetectPort * udp
Definition: detect.h:786
DetectEngineThreadCtx_::raw_stream_progress
uint64_t raw_stream_progress
Definition: detect.h:1124
PrefilterEngine_::alproto
AppProto alproto
Definition: detect.h:1411
Signature_::flags
uint32_t flags
Definition: detect.h:604
IPOnlyCIDRItem_::next
struct IPOnlyCIDRItem_ * next
Definition: detect.h:337
DetectEngineCtx_::max_fb_id
uint32_t max_fb_id
Definition: detect.h:908
DetectEngineIPOnlyCtx_::sig_mapping
uint32_t * sig_mapping
Definition: detect.h:780
Packet_
Definition: decode.h:476
DetectEngineFrameInspectionEngine::alproto
AppProto alproto
Definition: detect.h:514
FILE_DECODER_EVENT_Z_STREAM_ERROR
@ FILE_DECODER_EVENT_Z_STREAM_ERROR
Definition: detect.h:1322
DetectEngineCtx_::sgh_mpm_context_stream
int32_t sgh_mpm_context_stream
Definition: detect.h:921
SignatureNonPrefilterStore
struct SignatureNonPrefilterStore_ SignatureNonPrefilterStore
DetectBufferMpmRegistry
struct DetectBufferMpmRegistry_ DetectBufferMpmRegistry
one time registration of keywords at start up
DetectPort_::last
struct DetectPort_ * last
Definition: detect.h:232
sigmatch_table
SigTableElmt * sigmatch_table
Definition: detect-parse.c:128
DetectEngineThreadCtx_::frame_id
int64_t frame_id
Definition: detect.h:1180
ENGINE_PROFILE_MEDIUM
@ ENGINE_PROFILE_MEDIUM
Definition: detect.h:1059
InspectionBufferFrameInspectFunc
int(* InspectionBufferFrameInspectFunc)(struct DetectEngineThreadCtx_ *, const struct DetectEngineFrameInspectionEngine *engine, const struct Signature_ *s, Packet *p, const struct Frames *frames, const struct Frame *frame)
Definition: detect.h:509
DetectEngineCtx_::frame_mpms_list
DetectBufferMpmRegistry * frame_mpms_list
Definition: detect.h:1006
FILE_DECODER_EVENT_INVALID_SWF_LENGTH
@ FILE_DECODER_EVENT_INVALID_SWF_LENGTH
Definition: detect.h:1319
TransformData
struct TransformData_ TransformData
DetectEngineCtx_::sgh_mpm_ctx_cnf
uint8_t sgh_mpm_ctx_cnf
Definition: detect.h:947
DetectEngineAppInspectionEngine_::match_on_null
bool match_on_null
Definition: detect.h:436
DetectBufferType_::packet
bool packet
Definition: detect.h:462
SCSigOrderFunc_
Structure holding the signature ordering function used by the signature ordering module.
Definition: detect-engine-sigorder.c:101
PrefilterEngine
struct PrefilterEngine_ PrefilterEngine
MpmStore_::alproto
AppProto alproto
Definition: detect.h:1363
DetectEngineMasterCtx_::multi_tenant_enabled
int multi_tenant_enabled
Definition: detect.h:1544
DetectRegisterThreadCtxFuncs
int DetectRegisterThreadCtxFuncs(DetectEngineCtx *, const char *name, void *(*InitFunc)(void *), void *data, void(*FreeFunc)(void *), int)
Register Thread keyword context Funcs.
Definition: detect-engine.c:3649
DetectEngineThreadCtx_::filestore_cnt
uint16_t filestore_cnt
Definition: detect.h:1145
DetectEngineFrameInspectionEngine
Definition: detect.h:513
DetectFileDataCfg::content_limit
uint32_t content_limit
Definition: detect.h:838
SigFileLoaderStat
struct SigFileLoaderStat_ SigFileLoaderStat
Signature loader statistics.
DetectEngineCtx_::max_uniq_toserver_groups
uint16_t max_uniq_toserver_groups
Definition: detect.h:905
DETECT_BUFFER_MPM_TYPE_PKT
@ DETECT_BUFFER_MPM_TYPE_PKT
Definition: detect.h:679
FILE_DECODER_EVENT_LZMA_IO_ERROR
@ FILE_DECODER_EVENT_LZMA_IO_ERROR
Definition: detect.h:1325
TmEcode
TmEcode
Definition: tm-threads-common.h:79
DetectEnginePktInspectionEngine::Callback
InspectionBufferPktInspectFunc Callback
Definition: detect.h:495
PrefilterEngine_::PrefilterFrame
PrefilterFrameFn PrefilterFrame
Definition: detect.h:1428
PrefilterEngine_::frame_type
uint8_t frame_type
Definition: detect.h:1418
Signature_::init_data
SignatureInitData * init_data
Definition: detect.h:672
DetectEngineCtx_::profile_keyword_ctx
struct SCProfileKeywordDetectCtx_ * profile_keyword_ctx
Definition: detect.h:959
SigGroupHeadInitData_::max_sig_id
uint32_t max_sig_id
Definition: detect.h:1446
DetectEngineCtx_::sgh_array_cnt
uint32_t sgh_array_cnt
Definition: detect.h:915
DetectEngineThreadCtx_::alert_queue_capacity
uint16_t alert_queue_capacity
Definition: detect.h:1186
SignatureInitData_::negated
bool negated
Definition: detect.h:547
DetectEngineCtx_::sgh_array
struct SigGroupHead_ ** sgh_array
Definition: detect.h:914
SigTableElmt_::Match
int(* Match)(DetectEngineThreadCtx *, Packet *, const Signature *, const SigMatchCtx *)
Definition: detect.h:1277
reputation.h
MpmStore
struct MpmStore_ MpmStore
SignatureInitData_
Definition: detect.h:541
SCFPSupportSMList_::priority
int priority
Definition: detect.h:764
HashListTable_
Definition: util-hashlist.h:37
PrefilterTxFn
void(* PrefilterTxFn)(DetectEngineThreadCtx *det_ctx, const void *pectx, Packet *p, Flow *f, void *tx, const uint64_t tx_id, const AppLayerTxData *tx_data, const uint8_t flags)
Definition: detect.h:1373
DetectEngineCtx_::byte_extract_max_local_id
int32_t byte_extract_max_local_id
Definition: detect.h:924
SignatureInitData_::dst_contains_negation
bool dst_contains_negation
Definition: detect.h:552
DetectEnginePktInspectionEngine::sm_list_base
uint16_t sm_list_base
Definition: detect.h:492
DetectEngineTransforms::transforms
TransformData transforms[DETECT_TRANSFORMS_MAX]
Definition: detect.h:409
Signature_::addr_dst_match6_cnt
uint16_t addr_dst_match6_cnt
Definition: detect.h:630
SIG_TYPE_DEONLY
@ SIG_TYPE_DEONLY
Definition: detect.h:69
SIG_PROP_FLOW_ACTION_PACKET
@ SIG_PROP_FLOW_ACTION_PACKET
Definition: detect.h:81
ADDRESS_ER
@ ADDRESS_ER
Definition: detect.h:149
DetectEngineThreadCtx
struct DetectEngineThreadCtx_ DetectEngineThreadCtx
SigGroupHead_::frame_engines
PrefilterEngine * frame_engines
Definition: detect.h:1485
SigGroupHeadInitData_::app_mpms
MpmCtx ** app_mpms
Definition: detect.h:1448
DetectEngineFrameInspectionEngine::dir
uint8_t dir
Definition: detect.h:515
DetectEngineTransforms
struct DetectEngineTransforms DetectEngineTransforms
Signature_::sp
DetectPort * sp
Definition: detect.h:644
SIG_TYPE_NOT_SET
@ SIG_TYPE_NOT_SET
Definition: detect.h:63
FILE_DECODER_EVENT_Z_BUF_ERROR
@ FILE_DECODER_EVENT_Z_BUF_ERROR
Definition: detect.h:1323
DetectEngineThreadCtx_::mtc
MpmThreadCtx mtc
Definition: detect.h:1204
SigString_::filename
char * filename
Definition: detect.h:791
DetectBufferType_::multi_instance
bool multi_instance
Definition: detect.h:465
DETECT_ENGINE_TYPE_TENANT
@ DETECT_ENGINE_TYPE_TENANT
Definition: detect.h:828
RuleMatchCandidateTx::flags
uint32_t * flags
Definition: detect.h:1083
DetectEngineCtx_::dup_sig_hash_table
HashListTable * dup_sig_hash_table
Definition: detect.h:882
DetectEngineCtx_::config_prefix
char config_prefix[64]
Definition: detect.h:965
DetectVarList_::type
int type
Definition: detect.h:755
DetectEngineAppInspectionEngine_::alproto
AppProto alproto
Definition: detect.h:430
ENGINE_SGH_MPM_FACTORY_CONTEXT_FULL
@ ENGINE_SGH_MPM_FACTORY_CONTEXT_FULL
Definition: detect.h:1066
PORT_LE
@ PORT_LE
Definition: detect.h:204
SigMatchCtx_
Used to start a pointer to SigMatch context Should never be dereferenced without casting to something...
Definition: detect.h:344
Signature_::class_msg
char * class_msg
Definition: detect.h:664
DetectPatternTracker::sm_list
int sm_list
Definition: detect.h:734
DetectEngineAppInspectionEngine_::smd
SigMatchData * smd
Definition: detect.h:451
SigGroupHeadInitData_::pkt_engines
PrefilterEngineList * pkt_engines
Definition: detect.h:1452
DetectBufferMpmRegistry_::GetMultiData
InspectionMultiBufferGetDataPtr GetMultiData
Definition: detect.h:707
DetectBufferType_::id
int id
Definition: detect.h:459
DetectEngineCtx_::spm_matcher
uint8_t spm_matcher
Definition: detect.h:847
DetectEnginePktInspectionEngine::GetData
InspectionBufferGetPktDataPtr GetData
Definition: detect.h:494
DETECT_ENGINE_TYPE_NORMAL
@ DETECT_ENGINE_TYPE_NORMAL
Definition: detect.h:825
SignatureInitDataBuffer_::tail
SigMatch * tail
Definition: detect.h:538
DetectEngineIPOnlyCtx_::ip_dst
IPOnlyCIDRItem * ip_dst
Definition: detect.h:775
MpmStore_::mpm_ctx
MpmCtx * mpm_ctx
Definition: detect.h:1364
util-file.h
DetectAddressHead_::ipv6_head
DetectAddress * ipv6_head
Definition: detect.h:182
DetectMetadataHashFree
void DetectMetadataHashFree(DetectEngineCtx *de_ctx)
Definition: detect-metadata.c:80
util-prefilter.h
SignatureInitData_::dsize_sm
SigMatch * dsize_sm
Definition: detect.h:559
DetectBufferType_::frame
bool frame
Definition: detect.h:463
File_
Definition: util-file.h:79
AppLayerTxData
struct AppLayerTxData AppLayerTxData
Definition: detect.h:1372
DetectEngineIPOnlyCtx
struct DetectEngineIPOnlyCtx_ DetectEngineIPOnlyCtx
IP only rules matching ctx.
MPMB_TCP_PKT_TC
@ MPMB_TCP_PKT_TC
Definition: detect.h:1346
DetectEngineThreadCtx_::multi_inspect
struct DetectEngineThreadCtx_::@96 multi_inspect
DetectEngineCtx_::sig_stat
SigFileLoaderStat sig_stat
Definition: detect.h:1016
DetectEngineCtx_::address_table
HashListTable * address_table
Definition: detect.h:986
DetectEngineThreadCtx_::to_clear_queue
uint32_t * to_clear_queue
Definition: detect.h:1164
DetectEngineCtx_::profile_prefilter_ctx
struct SCProfilePrefilterDetectCtx_ * profile_prefilter_ctx
Definition: detect.h:960
TENANT_SELECTOR_DIRECT
@ TENANT_SELECTOR_DIRECT
Definition: detect.h:1526
InspectionBufferMultipleForList
struct InspectionBufferMultipleForList InspectionBufferMultipleForList
util-mpm.h
InspectEngineFuncPtr
uint8_t(* InspectEngineFuncPtr)(struct DetectEngineCtx_ *de_ctx, struct DetectEngineThreadCtx_ *det_ctx, const struct DetectEngineAppInspectionEngine_ *engine, const struct Signature_ *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
Definition: detect.h:424
flags
uint8_t flags
Definition: decode-gre.h:0
Signature_::proto
DetectProto proto
Definition: detect.h:622
SigTableElmt_::alias
const char * alias
Definition: detect.h:1310
DetectBufferMpmRegistry_::type
enum DetectBufferMpmType type
Definition: detect.h:695
SigMatchCtx
struct SigMatchCtx_ SigMatchCtx
Used to start a pointer to SigMatch context Should never be dereferenced without casting to something...
SigGroupHead_::non_pf_other_store_array
SignatureNonPrefilterStore * non_pf_other_store_array
Definition: detect.h:1478
DetectEngineMasterCtx_::keyword_id
int keyword_id
Definition: detect.h:1568
DetectEngineCtx_::app_mpms_list
DetectBufferMpmRegistry * app_mpms_list
Definition: detect.h:998
suricata-common.h
SigMatch_::idx
uint16_t idx
Definition: detect.h:351
SIG_PROP_FLOW_ACTION_FLOW_IF_STATEFUL
@ SIG_PROP_FLOW_ACTION_FLOW_IF_STATEFUL
Definition: detect.h:83
DetectEngineThreadCtx_::prefilter_bytes_called
uint64_t prefilter_bytes_called
Definition: detect.h:1269
SigString_::line
int line
Definition: detect.h:794
SigGroupHeadInitData_::frame_engines
PrefilterEngineList * frame_engines
Definition: detect.h:1455
SigMatch_::type
uint16_t type
Definition: detect.h:350
DETECT_BUFFER_MPM_TYPE_APP
@ DETECT_BUFFER_MPM_TYPE_APP
Definition: detect.h:680
SigGroupHeadInitData_::payload_engines
PrefilterEngineList * payload_engines
Definition: detect.h:1453
DetectEngineThreadCtx_::tenant_id
uint32_t tenant_id
Definition: detect.h:1101
SigGroupHeadInitData_::match_array
Signature ** match_array
Definition: detect.h:1461
DetectEngineCtx_::buffer_type_hash_name
HashListTable * buffer_type_hash_name
Definition: detect.h:993
DetectEngineCtx_::next
struct DetectEngineCtx_ * next
Definition: detect.h:972
Signature_::dsize_high
uint16_t dsize_high
Definition: detect.h:611
SigGroupHead_::non_pf_other_store_cnt
uint32_t non_pf_other_store_cnt
Definition: detect.h:1476
Signature_::file_flags
uint8_t file_flags
Definition: detect.h:619
DetectBufferMpmRegistry_::name
const char * name
Definition: detect.h:688
detect-metadata.h
DETECT_ENGINE_TYPE_DD_STUB
@ DETECT_ENGINE_TYPE_DD_STUB
Definition: detect.h:826
TENANT_SELECTOR_VLAN
@ TENANT_SELECTOR_VLAN
Definition: detect.h:1527
DetectEngineFrameInspectionEngine::next
struct DetectEngineFrameInspectionEngine * next
Definition: detect.h:526
SigTableElmt_::Transform
void(* Transform)(InspectionBuffer *, void *context)
Definition: detect.h:1290
SignatureInitData_::curbuf
SignatureInitDataBuffer * curbuf
Definition: detect.h:596
DetectEngineThreadCtx_::prefilter_perf_data
struct SCProfilePrefilterData_ * prefilter_perf_data
Definition: detect.h:1265
DetectEnginePrefilterSetting
DetectEnginePrefilterSetting
Definition: detect.h:818
DetectPort_::prev
struct DetectPort_ * prev
Definition: detect.h:230
util-spm.h
DetectEnginePktInspectionEngine::next
struct DetectEnginePktInspectionEngine * next
Definition: detect.h:499
SignatureType
SignatureType
Definition: detect.h:62
SigGroupHeadInitData_::sig_size
uint32_t sig_size
Definition: detect.h:1441
PrefilterEngineList_
Definition: detect.h:1376
SigFileLoaderStat_::total_files
int total_files
Definition: detect.h:802
util-radix4-tree.h
DetectEngineThreadCtx_::frame_inspect_progress
uint64_t frame_inspect_progress
Definition: detect.h:1181
DetectMatchAddressIPv4_::ip2
uint32_t ip2
Definition: detect.h:188
DetectEngineCtx_::profile_match_logging_threshold
uint32_t profile_match_logging_threshold
Definition: detect.h:963
IPOnlyCIDRItem_::ip
uint32_t ip[4]
Definition: detect.h:333
PrefilterEngine_::gid
uint32_t gid
Definition: detect.h:1432
Signature_::rev
uint32_t rev
Definition: detect.h:640
SignatureInitData_::sm_cnt
uint16_t sm_cnt
Definition: detect.h:543
DetectEngineFrameInspectionEngine::v1
struct DetectEngineFrameInspectionEngine::@83 v1
util-radix6-tree.h
DetectEngineCtx_::sig_list
Signature * sig_list
Definition: detect.h:851
DETECT_SM_LIST_TMATCH
@ DETECT_SM_LIST_TMATCH
Definition: detect.h:126
DetectEngineCtx_::profile_keyword_ctx_per_list
struct SCProfileKeywordDetectCtx_ ** profile_keyword_ctx_per_list
Definition: detect.h:961
RuleMatchCandidateTx
struct RuleMatchCandidateTx RuleMatchCandidateTx
PrefilterPktFn
void(* PrefilterPktFn)(DetectEngineThreadCtx *det_ctx, Packet *p, const void *pectx)
Definition: detect.h:1368
DetectEngineCtx_::loader_id
int loader_id
Definition: detect.h:975
FILE_DECODER_EVENT_NO_MEM
@ FILE_DECODER_EVENT_NO_MEM
Definition: detect.h:1318
TransformData_::transform
int transform
Definition: detect.h:404
DetectEngineCtx_::pkt_inspect_engines
DetectEnginePktInspectionEngine * pkt_inspect_engines
Definition: detect.h:1002
SIG_TYPE_MAX
@ SIG_TYPE_MAX
Definition: detect.h:77
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:32
Signature_::prio
int prio
Definition: detect.h:641
DetectEngineCtx_::ea
struct EngineAnalysisCtx_ * ea
Definition: detect.h:1043
DetectEngineIPOnlyCtx_::sig_mapping_size
uint32_t sig_mapping_size
Definition: detect.h:781
DetectEngineCtx_::sm_types_silent_error
bool * sm_types_silent_error
Definition: detect.h:1026
DetectEngineThreadCtx_::non_pf_id_array
SigIntId * non_pf_id_array
Definition: detect.h:1110
DetectEngineAppInspectionEngine_::progress
int16_t progress
Definition: detect.h:439
DetectEngineThreadKeywordCtxItem_::FreeFunc
void(* FreeFunc)(void *)
Definition: detect.h:810
DetectMatchAddressIPv6_::ip
uint32_t ip[4]
Definition: detect.h:192
SigGroupHeadInitData
struct SigGroupHeadInitData_ SigGroupHeadInitData
DetectAddress
struct DetectAddress_ DetectAddress
address structure for use in the detection engine.
SpmGlobalThreadCtx_
Definition: util-spm.h:47
DetectEngineCtx_::app_mpms_list_cnt
uint32_t app_mpms_list_cnt
Definition: detect.h:997
Signature_::addr_src_match6_cnt
uint16_t addr_src_match6_cnt
Definition: detect.h:631
DetectProto_
Definition: detect-engine-proto.h:35
DetectFilestoreData_
Definition: detect-filestore.h:36
SigGroupHeadInitData_
Definition: detect.h:1437
InspectionBuffer::inspect_len
uint32_t inspect_len
Definition: detect.h:376
SignatureInitData_::buffers
SignatureInitDataBuffer * buffers
Definition: detect.h:593
DetectEngineCtx_::app_inspect_engines
DetectEngineAppInspectionEngine * app_inspect_engines
Definition: detect.h:1001
SignatureInitData_::dst
const DetectAddressHead * dst
Definition: detect.h:583
DetectEngineCtx_::filemagic_thread_ctx_id
int filemagic_thread_ctx_id
Definition: detect.h:896
ENGINE_PROFILE_CUSTOM
@ ENGINE_PROFILE_CUSTOM
Definition: detect.h:1061
PrefilterEngine_::pectx
void * pectx
Definition: detect.h:1423
DetectEngineThreadCtx_::alert_queue
PacketAlert * alert_queue
Definition: detect.h:1187
DetectEngineThreadCtx_::pcre_match_start_offset
uint32_t pcre_match_start_offset
Definition: detect.h:1131
DetectEngineThreadCtx_::global_keyword_ctxs_size
int global_keyword_ctxs_size
Definition: detect.h:1225
Signature_::dp
DetectPort * dp
Definition: detect.h:644
DetectEngineCtx_::mpm_hash_table
HashListTable * mpm_hash_table
Definition: detect.h:878
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:374
DumpPatterns
void DumpPatterns(DetectEngineCtx *de_ctx)
Definition: detect-engine-analyzer.c:1322
Signature_::metadata
DetectMetadataHead * metadata
Definition: detect.h:668
DetectEngineThreadCtx_::tv
ThreadVars * tv
Definition: detect.h:1106
MPMB_UDP_TC
@ MPMB_UDP_TC
Definition: detect.h:1350
DetectEngineThreadCtx_::non_pf_store_cnt
uint32_t non_pf_store_cnt
Definition: detect.h:1202
DetectBufferMpmRegistry_::id
int id
Definition: detect.h:694
DetectEngineThreadCtx_::counter_alerts
uint16_t counter_alerts
Definition: detect.h:1148
SCRadix6Tree_
Structure for the radix tree.
Definition: util-radix6-tree.h:64
InspectionBuffer::len
uint32_t len
Definition: detect.h:382
DetectVarList_::key
uint8_t * key
Definition: detect.h:756
DetectEngineThreadCtx_::keyword_ctxs_array
void ** keyword_ctxs_array
Definition: detect.h:1222
FILE_DECODER_EVENT_Z_DATA_ERROR
@ FILE_DECODER_EVENT_Z_DATA_ERROR
Definition: detect.h:1321
SigFileLoaderStat_::good_sigs_total
int good_sigs_total
Definition: detect.h:803
SigTableElmt_::SupportsPrefilter
bool(* SupportsPrefilter)(const Signature *s)
Definition: detect.h:1296
Signature_::addr_dst_match6
DetectMatchAddressIPv6 * addr_dst_match6
Definition: detect.h:635
DetectEngineMasterCtx_
Definition: detect.h:1540
Signature_::id
uint32_t id
Definition: detect.h:638
DetectBufferMpmRegistry_::PrefilterRegisterWithListId
int(* PrefilterRegisterWithListId)(struct DetectEngineCtx_ *de_ctx, struct SigGroupHead_ *sgh, MpmCtx *mpm_ctx, const struct DetectBufferMpmRegistry_ *mpm_reg, int list_id)
Definition: detect.h:698
DetectEngineThreadKeywordCtxItem_::name
const char * name
Definition: detect.h:814
DetectEngineCtx_::guess_applayer_log_limit
uint8_t guess_applayer_log_limit
Definition: detect.h:890
DetectEngineThreadCtx_::base64_decoded_len_max
int base64_decoded_len_max
Definition: detect.h:1142
DetectEngineLookupFlow
struct DetectEngineLookupFlow_ DetectEngineLookupFlow
RuleMatchCandidateTx::stream_reset
uint32_t stream_reset
Definition: detect.h:1089
DisableDetectFlowFileFlags
void DisableDetectFlowFileFlags(Flow *f)
disable file features we don't need Called if we have no detection engine.
Definition: detect.c:1940
DetectBufferType_::transforms
DetectEngineTransforms transforms
Definition: detect.h:468
DetectEngineType
DetectEngineType
Definition: detect.h:824
DetectEnginePktInspectionEngine::v1
struct DetectEnginePktInspectionEngine::@82 v1
SignatureInitData_::score
int score
Definition: detect.h:580
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
DetectEngineCtx_::tenant_path
char * tenant_path
Definition: detect.h:1046
PrefilterEngineList_::pkt_mask
SignatureMask pkt_mask
Definition: detect.h:1387
SCProfilePrefilterData_
Definition: util-profiling-prefilter.c:36
DetectBufferMpmRegistry_::tx_min_progress
int tx_min_progress
Definition: detect.h:710
DetectEngineAppInspectionEngine_::transforms
const DetectEngineTransforms * transforms
Definition: detect.h:448
DETECT_SM_LIST_MAX
@ DETECT_SM_LIST_MAX
Definition: detect.h:132
SigMatchCtx_::foo
int foo
Definition: detect.h:345
DetectBufferType_::parent_id
int parent_id
Definition: detect.h:460
DETECT_PREFILTER_MPM
@ DETECT_PREFILTER_MPM
Definition: detect.h:819
SignatureMask
#define SignatureMask
Definition: detect.h:311
DetectBufferMpmRegistry_::alproto
AppProto alproto
Definition: detect.h:709
DetectAddress_::next
struct DetectAddress_ * next
Definition: detect.h:176
DetectEngineTenantMapping_::traffic_id
uint32_t traffic_id
Definition: detect.h:1535
SigGroupHeadInitData_::protos
uint8_t protos[256]
Definition: detect.h:1443
DetectMatchAddressIPv6_
Definition: detect.h:191
PrefilterEngine_::pkt_mask
SignatureMask pkt_mask
Definition: detect.h:1414
MPMB_TCP_PKT_TS
@ MPMB_TCP_PKT_TS
Definition: detect.h:1345
DetectMatchAddressIPv4_
Definition: detect.h:186
DetectEngineThreadCtx_::tx_id_set
bool tx_id_set
Definition: detect.h:1177
DetectEnginePktInspectionEngine
struct DetectEnginePktInspectionEngine DetectEnginePktInspectionEngine
DetectEngineThreadCtx_::base64_decoded
uint8_t * base64_decoded
Definition: detect.h:1140
Signature_::dsize_mode
uint8_t dsize_mode
Definition: detect.h:612
PORT_EQ
@ PORT_EQ
Definition: detect.h:205
DetectEngineLookupFlow_
Definition: detect.h:784
DetectEngineTransforms::cnt
int cnt
Definition: detect.h:410
PrefilterEngine_::is_last
bool is_last
Definition: detect.h:1433
DetectEngineThreadCtx_::de_ctx
DetectEngineCtx * de_ctx
Definition: detect.h:1220
DetectEngineCtx_::sig_array
Signature ** sig_array
Definition: detect.h:860
SigGroupHead_::non_pf_syn_store_array
SignatureNonPrefilterStore * non_pf_syn_store_array
Definition: detect.h:1480
PacketAlert_
Definition: decode.h:239
PrefilterEngineList_::tx_min_progress
uint8_t tx_min_progress
Definition: detect.h:1383
DetectEngineAppInspectionEngine_::dir
uint8_t dir
Definition: detect.h:431
DETECT_BUFFER_MPM_TYPE_SIZE
@ DETECT_BUFFER_MPM_TYPE_SIZE
Definition: detect.h:683
DETECT_ENGINE_TYPE_MT_STUB
@ DETECT_ENGINE_TYPE_MT_STUB
Definition: detect.h:827
SignatureNonPrefilterStore_::mask
SignatureMask mask
Definition: detect.h:1076
DetectEngineCtx_::buffer_type_id
uint32_t buffer_type_id
Definition: detect.h:995
Signature
struct Signature_ Signature
Signature container.
DetectEngineIPOnlyCtx_
IP only rules matching ctx.
Definition: detect.h:769
FILE_DECODER_EVENT_INVALID_SWF_VERSION
@ FILE_DECODER_EVENT_INVALID_SWF_VERSION
Definition: detect.h:1320
DetectEngineCtx_::sigerror
const char * sigerror
Definition: detect.h:939
DetectBufferType_::SetupCallback
void(* SetupCallback)(const struct DetectEngineCtx_ *, struct Signature_ *)
Definition: detect.h:466
DetectEngineThreadCtx_::mt_det_ctxs_cnt
uint32_t mt_det_ctxs_cnt
Definition: detect.h:1113
DetectMetadataHashInit
int DetectMetadataHashInit(DetectEngineCtx *de_ctx)
Definition: detect-metadata.c:69
DetectEngineMasterCtx_::lock
SCMutex lock
Definition: detect.h:1541
DetectEnginePktInspectionEngine::mpm
bool mpm
Definition: detect.h:490
DetectEngineCtx_::spm_global_thread_ctx
SpmGlobalThreadCtx * spm_global_thread_ctx
Definition: detect.h:900
DetectFlowbitsAnalyze
int DetectFlowbitsAnalyze(DetectEngineCtx *de_ctx)
Definition: detect-flowbits.c:420
SigGroupHead_::pkt_engines
PrefilterEngine * pkt_engines
Definition: detect.h:1482
DetectEngineCtx_::flags
uint8_t flags
Definition: detect.h:845
SIG_PROP_FLOW_ACTION_FLOW
@ SIG_PROP_FLOW_ACTION_FLOW
Definition: detect.h:82
DetectEngineThreadCtx_::replist
DetectReplaceList * replist
Definition: detect.h:1208
SignatureInitData_::transforms
DetectEngineTransforms transforms
Definition: detect.h:575
PrefilterEngine_::Prefilter
PrefilterPktFn Prefilter
Definition: detect.h:1426
ENGINE_PROFILE_UNKNOWN
@ ENGINE_PROFILE_UNKNOWN
Definition: detect.h:1057
SigString_::sig_str
char * sig_str
Definition: detect.h:792
DetectEngineCtx_::io_ctx
DetectEngineIPOnlyCtx io_ctx
Definition: detect.h:884
PrefilterEngine_::PrefilterTx
PrefilterTxFn PrefilterTx
Definition: detect.h:1427
DetectMatchAddressIPv4
struct DetectMatchAddressIPv4_ DetectMatchAddressIPv4
DetectEngineCtx_::rule_line
int rule_line
Definition: detect.h:937
MpmCtx_
Definition: util-mpm.h:88
Signature_::addr_dst_match4
DetectMatchAddressIPv4 * addr_dst_match4
Definition: detect.h:632
Signature_::msg
char * msg
Definition: detect.h:661
DetectBufferMpmRegistry_::frame_v1
struct DetectBufferMpmRegistry_::@84::@88 frame_v1
flow.h
SignatureInitDataBuffer_
Definition: detect.h:529
Signature_::addr_src_match4_cnt
uint16_t addr_src_match4_cnt
Definition: detect.h:629
SigIntId
#define SigIntId
Definition: suricata-common.h:315
DetectGetInnerTx
void * DetectGetInnerTx(void *tx_ptr, AppProto alproto, AppProto engine_alproto, uint8_t flow_flags)
Definition: detect.c:1074
DetectEngineAppInspectionEngine
struct DetectEngineAppInspectionEngine_ DetectEngineAppInspectionEngine
TENANT_SELECTOR_LIVEDEV
@ TENANT_SELECTOR_LIVEDEV
Definition: detect.h:1528
Signature_::addr_dst_match4_cnt
uint16_t addr_dst_match4_cnt
Definition: detect.h:628
DetectEngineFrameInspectionEngine::type
uint8_t type
Definition: detect.h:516
DetectSigmatchListEnum
DetectSigmatchListEnum
Definition: detect.h:112
DetectEngineMasterCtx_::version
uint32_t version
Definition: detect.h:1547
DetectEngineCtx_::sig_array_len
uint32_t sig_array_len
Definition: detect.h:861
DetectEngineCtx_::metadata_table
HashTable * metadata_table
Definition: detect.h:989
Signature_::type
enum SignatureType type
Definition: detect.h:606
DetectEngineCtx_::signum
uint32_t signum
Definition: detect.h:863
DetectEngineCtx_::tenant_id
uint32_t tenant_id
Definition: detect.h:849
SigGroupHead_::filestore_cnt
uint16_t filestore_cnt
Definition: detect.h:1471
SignatureInitData_::buffer_index
uint32_t buffer_index
Definition: detect.h:594
IPOnlyCIDRItem_::signum
SigIntId signum
Definition: detect.h:334
SigFileLoaderStat_
Signature loader statistics.
Definition: detect.h:799
FILE_DECODER_EVENT_LZMA_HEADER_TOO_SHORT_ERROR
@ FILE_DECODER_EVENT_LZMA_HEADER_TOO_SHORT_ERROR
Definition: detect.h:1326
DetectAddress_::flags
uint8_t flags
Definition: detect.h:171
PORT_GE
@ PORT_GE
Definition: detect.h:208
DetectEngineCtx_::buffer_type_hash_id
HashListTable * buffer_type_hash_id
Definition: detect.h:994
DetectEngineCtx_::base64_decode_max_len
uint32_t base64_decode_max_len
Definition: detect.h:934
DetectEngineLookupFlow_::tcp
DetectPort * tcp
Definition: detect.h:785
DETECT_SM_LIST_SUPPRESS
@ DETECT_SM_LIST_SUPPRESS
Definition: detect.h:129
SCMutex
#define SCMutex
Definition: threads-debug.h:114
DetectEngineCtx_::fp_support_smlist_list
SCFPSupportSMList * fp_support_smlist_list
Definition: detect.h:1020
SIG_TYPE_PDONLY
@ SIG_TYPE_PDONLY
Definition: detect.h:68
InspectionBufferMultipleForList::inspection_buffers
InspectionBuffer * inspection_buffers
Definition: detect.h:397
MpmStore_::sgh_mpm_context
int32_t sgh_mpm_context
Definition: detect.h:1362
InspectionBufferMultipleForList::max
uint32_t max
Definition: detect.h:399
DetectAddressHead_::ipv4_head
DetectAddress * ipv4_head
Definition: detect.h:181
SignatureProperties::flow_action
enum SignaturePropertyFlowAction flow_action
Definition: detect.h:87
SigGroupHead_::id
uint32_t id
Definition: detect.h:1473
IPOnlyCIDRItem_::family
uint8_t family
Definition: detect.h:327
DetectEngineThreadCtx_::counter_mpm_list
uint16_t counter_mpm_list
Definition: detect.h:1154
DetectEngineThreadCtx_::prefilter_bytes
uint64_t prefilter_bytes
Definition: detect.h:1267
ADDRESS_EQ
@ ADDRESS_EQ
Definition: detect.h:152
FILE_DECODER_EVENT_LZMA_MEMLIMIT_ERROR
@ FILE_DECODER_EVENT_LZMA_MEMLIMIT_ERROR
Definition: detect.h:1328
DetectEngineFrameInspectionEngine
struct DetectEngineFrameInspectionEngine DetectEngineFrameInspectionEngine
SigMatchData
struct SigMatchData_ SigMatchData
Data needed for Match()
MpmStore_::buffer
enum MpmBuiltinBuffers buffer
Definition: detect.h:1360
DetectEngineThreadCtx_::tenant_array_size
uint32_t tenant_array_size
Definition: detect.h:1118
DetectEngineThreadCtx_::tenant_array
struct DetectEngineTenantMapping_ * tenant_array
Definition: detect.h:1117
DetectEngineCtx_::sc_sig_order_funcs
struct SCSigOrderFunc_ * sc_sig_order_funcs
Definition: detect.h:870
MpmCtxFactoryContainer_
Definition: util-mpm.h:125
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1301
DetectEngineThreadCtx_::file_id
uint32_t file_id
Definition: detect.h:1216
DetectEngineThreadCtx_::mt_det_ctxs
struct DetectEngineThreadCtx_ ** mt_det_ctxs
Definition: detect.h:1114
Signature_::mask
SignatureMask mask
Definition: detect.h:614
RuleMatchCandidateTx
Definition: detect.h:1081
SIG_TYPE_LIKE_IPONLY
@ SIG_TYPE_LIKE_IPONLY
Definition: detect.h:65
DetectEngineThreadCtx_::TenantGetId
uint32_t(* TenantGetId)(const void *, const Packet *p)
Definition: detect.h:1120
DetectBufferType_::description
char description[128]
Definition: detect.h:458
DetectEngineThreadCtx_::inspect
struct DetectEngineThreadCtx_::@95 inspect
DetectEngineIPOnlyCtx_::max_idx
uint32_t max_idx
Definition: detect.h:776
SigGroupHeadInitData_::frame_mpms
MpmCtx ** frame_mpms
Definition: detect.h:1450
DetectBufferMpmRegistry_::pname
char pname[32]
Definition: detect.h:689
SpmThreadCtx_
Definition: util-spm.h:54
ADDRESS_ES
@ ADDRESS_ES
Definition: detect.h:153
DetectEngineFrameInspectionEngine::smd
SigMatchData * smd
Definition: detect.h:525
DetectEngineThreadCtx_::match_array
Signature ** match_array
Definition: detect.h:1191