Go to the documentation of this file.
95 #define DETECT_ENGINE_DEFAULT_INSPECTION_RECURSION_LIMIT 3000
102 static uint32_t TenantIdHash(
HashTable *h,
void *
data, uint16_t data_len);
103 static char TenantIdCompare(
void *d1, uint16_t d1_len,
void *d2, uint16_t d2_len);
104 static void TenantIdFree(
void *d);
105 static uint32_t DetectEngineTenantGetIdFromLivedev(
const void *
ctx,
const Packet *
p);
106 static uint32_t DetectEngineTenantGetIdFromVlanId(
const void *
ctx,
const Packet *
p);
107 static uint32_t DetectEngineTenantGetIdFromPcap(
const void *
ctx,
const Packet *
p);
109 static bool DetectEngineMultiTenantEnabledWithLock(
void);
141 return "packet_filter";
175 FatalError(
"failed to register inspect engine %s: %s",
name, strerror(errno));
177 new_engine->
sm_list = (uint16_t)sm_list;
182 if (g_pkt_inspect_engines == NULL) {
183 g_pkt_inspect_engines = new_engine;
186 while (t->
next != NULL) {
190 t->
next = new_engine;
197 static void AppLayerInspectEngineRegisterInternal(
const char *
name,
AppProto alproto, uint32_t dir,
216 SCLogError(
"Invalid arguments: must register "
217 "GetData with DetectEngineInspectBufferGeneric");
220 SCLogError(
"Invalid arguments: must register "
221 "GetData with DetectEngineInspectBufferGeneric");
224 SCLogError(
"Invalid arguments: must register "
225 "GetData with DetectEngineInspectMultiBufferGeneric");
237 AppLayerInspectEngineRegisterInternal(
238 name,
ALPROTO_DOH2, dir, progress, Callback, GetData, GetDataSingle, GetMultiData);
247 new_engine->
dir = direction;
248 new_engine->
sm_list = (uint16_t)sm_list;
260 if (g_app_inspect_engines == NULL) {
261 g_app_inspect_engines = new_engine;
264 while (t->
next != NULL) {
268 t->
next = new_engine;
282 if (t->
sm_list == sm_list && t->
alproto == alproto && t_direction == dir &&
290 AppLayerInspectEngineRegisterInternal(
291 name, alproto, dir, progress, Callback, GetData, NULL, NULL);
304 if (t->
sm_list == sm_list && t->
alproto == alproto && t_direction == dir &&
313 AppLayerInspectEngineRegisterInternal(
314 name, alproto, dir, progress, Callback, NULL, GetData, NULL);
318 static void DetectAppLayerInspectEngineCopy(
320 int sm_list,
int new_list,
333 new_engine->
sm_list = (uint16_t)new_list;
337 new_engine->
v2 = t->
v2;
344 while (list->
next != NULL) {
348 list->
next = new_engine;
370 new_engine->
v2 = t->
v2;
375 list->
next = new_engine;
384 static void DetectPktInspectEngineCopy(
386 int sm_list,
int new_list,
397 new_engine->
sm_list = (uint16_t)new_list;
400 new_engine->
v1 = t->
v1;
407 while (list->
next != NULL) {
411 list->
next = new_engine;
430 new_engine->
v1 = t->
v1;
436 while (list->
next != NULL) {
440 list->
next = new_engine;
472 FatalError(
"failed to register inspect engine %s: %s",
name, strerror(errno));
474 new_engine->
sm_list = (uint16_t)sm_list;
476 new_engine->
dir = direction;
485 while (list->
next != NULL) {
489 list->
next = new_engine;
508 new_engine->
sm_list = (uint16_t)new_list;
514 new_engine->
v1 = t->
v1;
519 while (list->
next != NULL) {
523 list->
next = new_engine;
545 new_engine->
v1 = t->
v1;
551 while (list->
next != NULL) {
555 list->
next = new_engine;
567 static void AppendStreamInspectEngine(
570 bool prepend =
false;
579 new_engine->
mpm =
true;
582 new_engine->
dir = direction;
583 new_engine->
stream =
true;
586 new_engine->
smd = stream;
594 }
else if (prepend) {
601 while (a->
next != NULL) {
605 a->
next = new_engine;
608 SCLogDebug(
"sid %u: engine %p/%u added", s->
id, new_engine, new_engine->
id);
615 bool prepend =
false;
638 new_engine->
mpm =
true;
644 new_engine->
smd = smd;
645 new_engine->
v1 = u->
v1;
651 }
else if (prepend) {
656 while (a->
next != NULL) {
660 a->
next = new_engine;
668 bool prepend =
false;
678 new_engine->
mpm =
true;
683 new_engine->
smd = smd;
684 new_engine->
v1 = e->
v1;
690 }
else if (prepend) {
695 while (a->
next != NULL) {
699 a->
next = new_engine;
705 const int mpm_list,
const int files_id, uint8_t *last_id,
bool *head_is_mpm)
730 SCLogDebug(
"app engine: t %p t->id %u => alproto:%s files:%s", t, t->
id,
738 bool prepend =
false;
743 new_engine->
mpm =
true;
750 new_engine->
smd = smd;
753 new_engine->
v2 = t->
v2;
759 if (new_engine->
sm_list == files_id) {
761 SCLogDebug(
"sid %u: engine %p/%u is FILE ENGINE", s->
id, new_engine, new_engine->
id);
764 SCLogDebug(
"sid %u: engine %p/%u %s", s->
id, new_engine, new_engine->
id,
772 if (new_engine->
sm_list == files_id) {
774 SCLogDebug(
"sid %u: engine %p/%u is FILE ENGINE", s->
id, new_engine, new_engine->
id);
776 new_engine->
id = ++(*last_id);
777 SCLogDebug(
"sid %u: engine %p/%u %s", s->
id, new_engine, new_engine->
id,
783 while (a->
next != NULL) {
791 a->
next = new_engine;
792 if (new_engine->
sm_list == files_id) {
794 SCLogDebug(
"sid %u: engine %p/%u is FILE ENGINE", s->
id, new_engine, new_engine->
id);
796 new_engine->
id = ++(*last_id);
797 SCLogDebug(
"sid %u: engine %p/%u %s", s->
id, new_engine, new_engine->
id,
802 SCLogDebug(
"sid %u: engine %p/%u added", s->
id, new_engine, new_engine->
id);
811 const AppProto p,
const uint8_t state,
const uint8_t direction)
813 if (!((direction & (STREAM_TOSERVER | STREAM_TOCLIENT)) == STREAM_TOSERVER) &&
814 !((direction & (STREAM_TOSERVER | STREAM_TOCLIENT)) == STREAM_TOCLIENT))
818 p, state, direction);
821 if (direction == STREAM_TOSERVER) {
822 pname =
"request_started";
824 pname =
"response_started";
828 if (state == complete) {
829 if (direction == STREAM_TOSERVER) {
830 pname =
"request_complete";
832 pname =
"response_complete";
844 if (app_proto == NULL) {
848 if (strcmp(app_proto,
"http") == 0)
857 char generic_hook_name[256];
858 snprintf(generic_hook_name,
sizeof(generic_hook_name),
"%s:%s:generic", app_proto,
name);
861 SCLogError(
"no list registered as %s for %s hook %s", generic_hook_name, app_proto,
name);
875 bool head_is_mpm =
false;
888 direction = STREAM_TOSERVER;
891 direction = STREAM_TOCLIENT;
903 .sm_list = (uint16_t)sm_list,
904 .sm_list_base = (uint16_t)sm_list,
907 AppendAppInspectEngine(
de_ctx, &t, s, NULL, mpm_list, files_id, &last_id, &head_is_mpm);
908 SCLogDebug(
"sid %u: appended pass-tru engine at hook:%u sm_list:%d for "
909 "SIG_FLAG_INIT_HOOK_LTE",
910 s->
id, state, sm_list);
925 u != NULL; u = u->
next) {
927 AppendFrameInspectEngine(
de_ctx, u, s, smd, mpm_list);
936 AppendPacketInspectEngine(
de_ctx, e, s, smd, mpm_list);
954 AppendAppInspectEngine(
955 de_ctx, t, s, smd, mpm_list, files_id, &last_id, &head_is_mpm);
989 AppendAppInspectEngine(
de_ctx, &t, s, NULL, mpm_list, files_id, &last_id, &head_is_mpm);
999 AppendStreamInspectEngine(s, stream, 0, last_id + 1);
1001 AppendStreamInspectEngine(s, stream, 1, last_id + 1);
1003 AppendStreamInspectEngine(s, stream, 0, last_id + 1);
1004 AppendStreamInspectEngine(s, stream, 1, last_id + 1);
1016 SCLogDebug(
"%u: engine %s id %u progress %d %s", s->
id,
1018 iter->
sm_list == mpm_list ?
"MPM" :
"");
1069 for (
int i = 0; i < arrays; i++) {
1070 if (bufs[i] == ie->
smd) {
1076 bufs[arrays++] = ie->
smd;
1086 for (
int i = 0; i < arrays; i++) {
1087 if (bufs[i] == e->
smd) {
1093 bufs[arrays++] = e->
smd;
1103 for (
int i = 0; i < arrays; i++) {
1104 if (bufs[i] == u->
smd) {
1110 bufs[arrays++] = u->
smd;
1116 for (
int i = 0; i < engines; i++) {
1117 if (bufs[i] == NULL)
1138 static int g_buffer_type_reg_closed = 0;
1142 return g_buffer_type_id;
1158 static uint32_t DetectBufferTypeHashNameFunc(
HashListTable *ht,
void *data, uint16_t datalen)
1182 static uint32_t DetectBufferTypeHashIdFunc(
HashListTable *ht,
void *data, uint16_t datalen)
1185 uint32_t hash = map->
id;
1190 static char DetectBufferTypeCompareNameFunc(
void *data1, uint16_t len1,
void *data2, uint16_t len2)
1195 char r = (strcmp(map1->
name, map2->
name) == 0);
1208 SCLogDebug(
"%s: transform ids match; checking specialized data", map1->
name);
1217 SCLogDebug(
"identity data: only one is null");
1242 static char DetectBufferTypeCompareIdFunc(
void *data1, uint16_t len1,
void *data2, uint16_t len2)
1246 return map1->
id == map2->
id;
1249 static void DetectBufferTypeFreeFunc(
void *data)
1263 SCLogError(
"%s allocates transform option memory but has no free routine",
1273 static int DetectBufferTypeInit(
void)
1275 BUG_ON(g_buffer_type_hash);
1277 DetectBufferTypeCompareNameFunc, DetectBufferTypeFreeFunc);
1278 if (g_buffer_type_hash == NULL)
1284 static void DetectBufferTypeFree(
void)
1286 if (g_buffer_type_hash == NULL)
1290 g_buffer_type_hash = NULL;
1293 static int DetectBufferTypeAdd(
const char *
string)
1295 BUG_ON(
string == NULL || strlen(
string) >= 64);
1302 map->
id = g_buffer_type_id++;
1312 memset(&map, 0,
sizeof(map));
1321 BUG_ON(g_buffer_type_reg_closed);
1322 if (g_buffer_type_hash == NULL)
1323 DetectBufferTypeInit();
1327 return DetectBufferTypeAdd(
name);
1335 BUG_ON(g_buffer_type_reg_closed);
1340 SCLogDebug(
"%p %s -- %d supports multi instance", exists,
name, exists->
id);
1345 BUG_ON(g_buffer_type_reg_closed);
1349 exists->
frame =
true;
1350 SCLogDebug(
"%p %s -- %d supports frame inspection", exists,
name, exists->
id);
1355 BUG_ON(g_buffer_type_reg_closed);
1360 SCLogDebug(
"%p %s -- %d supports packet inspection", exists,
name, exists->
id);
1365 BUG_ON(g_buffer_type_reg_closed);
1375 BUG_ON(g_buffer_type_reg_closed);
1380 SCLogDebug(
"%p %s -- %d supports transformations", exists,
name, exists->
id);
1396 memset(&map, 0,
sizeof(map));
1406 memset(&lookup, 0,
sizeof(lookup));
1416 return res ? res->
name : NULL;
1421 BUG_ON(
string == NULL || strlen(
string) >= 32);
1437 const int direction,
const AppProto alproto,
const uint8_t frame_type)
1444 const int buffer_id = DetectEngineBufferTypeAdd(
de_ctx,
name);
1445 if (buffer_id < 0) {
1474 return DetectEngineBufferTypeAdd(
de_ctx,
name);
1482 BUG_ON(desc == NULL || strlen(desc) >= 128);
1504 exists->
frame =
true;
1505 SCLogDebug(
"%p %s -- %d supports frame inspection", exists,
name, exists->
id);
1513 SCLogDebug(
"%p %s -- %d supports packet inspection", exists,
name, exists->
id);
1529 SCLogDebug(
"%p %s -- %d supports transformations", exists,
name, exists->
id);
1571 BUG_ON(g_buffer_type_reg_closed);
1587 const char *
name,
bool (*ValidateCallback)(
const Signature *,
const char **sigerror,
1590 BUG_ON(g_buffer_type_reg_closed);
1637 const uint8_t *content, uint16_t content_len,
const char **namestr)
1663 const int size = g_buffer_type_id;
1667 DetectBufferTypeCompareNameFunc, DetectBufferTypeFreeFunc);
1670 HashListTableInit(256, DetectBufferTypeHashIdFunc, DetectBufferTypeCompareIdFunc,
1682 memcpy(copy, map,
sizeof(*copy));
1688 SCLogDebug(
"name %s id %d mpm %s packet %s -- %s. "
1689 "Callbacks: Setup %p Validate %p",
1690 map->
name, map->
id, map->
mpm ?
"true" :
"false", map->
packet ?
"true" :
"false",
1697 DetectAppLayerInspectEngineCopyListToDetectCtx(
de_ctx);
1699 DetectFrameInspectEngineCopyListToDetectCtx(
de_ctx);
1701 DetectPktInspectEngineCopyListToDetectCtx(
de_ctx);
1743 while (framemlist) {
1754 BUG_ON(g_buffer_type_hash == NULL);
1756 g_buffer_type_reg_closed = 1;
1767 SCLogError(
"buffer '%s' does not support transformations", base_map->
name);
1774 memset(&t, 0,
sizeof(t));
1775 for (
int i = 0; i < transform_cnt; i++) {
1778 t.
cnt = transform_cnt;
1781 memset(&lookup_map, 0,
sizeof(lookup_map));
1787 DetectBufferAddTransformData(&lookup_map);
1804 map->
mpm = base_map->
mpm;
1811 }
else if (map->
packet) {
1821 SCLogDebug(
"buffer %s registered with id %d, parent %d", map->name, map->id, map->parent_id);
1824 DetectFrameInspectEngineCopy(
de_ctx, map->parent_id, map->id, &map->transforms);
1825 }
else if (map->packet) {
1826 DetectPktInspectEngineCopy(
de_ctx, map->parent_id, map->id, &map->transforms);
1828 DetectAppLayerInspectEngineCopy(
de_ctx, map->parent_id, map->id, &map->transforms);
1834 static int DetectEngineInspectRulePacketMatches(
1838 Packet *
p, uint8_t *_alert_flags)
1846 SCLogDebug(
"running match functions, sm %p", smd);
1864 static int DetectEngineInspectRulePayloadMatches(
1886 SCLogDebug(
"no match in stream, fall back to packet payload");
1894 SCLogDebug(
"SIG_FLAG_REQUIRE_STREAM_ONLY, so no match");
1912 uint8_t *alert_flags)
1918 SCLogDebug(
"sid %u: e %p Callback returned no match", s->
id, e);
1921 SCLogDebug(
"sid %u: e %p Callback returned true", s->
id, e);
1940 e->
sm_list = (uint16_t)list_id;
1949 while (a->
next != NULL) {
1961 if (DetectEnginePktInspectionAppend(
1964 SCLogDebug(
"sid %u: DetectEngineInspectRulePayloadMatches appended", s->
id);
1968 if (DetectEnginePktInspectionAppend(
1971 SCLogDebug(
"sid %u: DetectEngineInspectRulePacketMatches appended", s->
id);
2053 uint8_t
flags,
void *alstate,
void *txv, uint64_t tx_id)
2056 SCLogDebug(
"running match functions, sm %p", smd);
2062 AppLayerTxMatch(det_ctx, f,
flags, alstate, txv, s, smd->
ctx);
2095 void *alstate,
void *txv, uint64_t tx_id)
2097 const int list_id = engine->
sm_list;
2098 SCLogDebug(
"running inspect on %d", list_id);
2122 const uint8_t *data = buffer->
inspect;
2127 ci_flags |= buffer->
flags;
2156 void *alstate,
void *txv, uint64_t tx_id)
2158 const int list_id = engine->
sm_list;
2159 SCLogDebug(
"running inspect on %d", list_id);
2173 f,
flags, txv, list_id);
2183 const uint8_t *data = buffer->
inspect;
2188 ci_flags |= buffer->
flags;
2207 AppLayerInspectEngineRegisterInternal(
name, alproto, dir, progress,
2218 if (buffer->
inspect == NULL) {
2219 const uint8_t *b = NULL;
2222 if (!GetBuf(txv, flow_flags, &b, &b_len))
2235 if (buffer == NULL) {
2242 const uint8_t *data = NULL;
2243 uint32_t data_len = 0;
2245 if (!GetBuf(det_ctx, txv, flow_flags, index, &data, &data_len)) {
2256 const Signature *s,
Flow *f, uint8_t
flags,
void *alstate,
void *txv, uint64_t tx_id)
2258 uint32_t local_id = 0;
2268 if (buffer == NULL || buffer->
inspect == NULL)
2280 if (local_id == 0) {
2307 const int list_id = engine->
sm_list;
2308 SCLogDebug(
"running inspect on %d", list_id);
2326 ci_flags |= buffer->
flags;
2345 static void InjectPackets(
2353 for (
int i = 0; i < no_of_detect_tvs; i++) {
2354 if (
SC_ATOMIC_GET(new_det_ctx[i]->so_far_used_by_detect) != 1) {
2355 if (detect_tvs[i]->inq != NULL) {
2393 if (no_of_detect_tvs == 0) {
2403 memset(detect_tvs, 0x00, (no_of_detect_tvs *
sizeof(
ThreadVars *)));
2428 if (new_det_ctx[i] == NULL) {
2430 "failure in live rule swap. Let's get out of here");
2434 SCLogDebug(
"live rule swap created new det_ctx - %p and de_ctx "
2435 "- %p\n", new_det_ctx[i], new_de_ctx);
2440 BUG_ON(i != no_of_detect_tvs);
2453 SCLogDebug(
"swapping new det_ctx - %p with older one - %p",
2466 SCLogDebug(
"Live rule swap has swapped %d old det_ctx's with new ones, "
2467 "along with the new de_ctx", no_of_detect_tvs);
2469 InjectPackets(detect_tvs, new_det_ctx, no_of_detect_tvs);
2473 uint32_t threads_done = 0;
2475 for (i = 0; i < no_of_detect_tvs; i++) {
2477 threads_done = no_of_detect_tvs;
2481 if (
SC_ATOMIC_GET(new_det_ctx[i]->so_far_used_by_detect) == 1) {
2482 SCLogDebug(
"new_det_ctx - %p used by detect engine", new_det_ctx[i]);
2485 TmThreadsCaptureBreakLoop(detect_tvs[i]);
2488 if (threads_done < no_of_detect_tvs) {
2499 if (i != no_of_detect_tvs) {
2512 for (i = 0; i < no_of_detect_tvs; i++) {
2513 SCLogDebug(
"Freeing old_det_ctx - %p used by detect",
2523 for (i = 0; i < no_of_detect_tvs; i++) {
2524 if (new_det_ctx[i] != NULL)
2532 int sgh_mpm_caching = 0;
2533 if (
SCConfGetBool(
"detect.sgh-mpm-caching", &sgh_mpm_caching) != 1) {
2536 return (
bool)sgh_mpm_caching;
2545 char yamlpath[] =
"detect.sgh-mpm-caching-path";
2546 const char *strval = NULL;
2547 if (
SCConfGet(yamlpath, &strval) == 1 && strval != NULL) {
2551 static bool notified =
false;
2553 SCLogInfo(
"%s has no path specified, using %s", yamlpath, SGH_CACHE_DIR);
2556 return SGH_CACHE_DIR;
2644 if (prefix != NULL) {
2648 int failure_fatal = 0;
2649 if (
SCConfGetBool(
"engine.init-failure-fatal", (
int *)&failure_fatal) != 1) {
2650 SCLogDebug(
"ConfGetBool could not load the value.");
2658 SCLogDebug(
"Unable to alloc SpmGlobalThreadCtx.");
2670 if (DetectEngineCtxLoadConf(
de_ctx) == -1) {
2679 DetectBufferTypeSetupDetectEngine(
de_ctx);
2727 if (prefix == NULL || strlen(prefix) == 0)
2765 #ifdef PROFILE_RULES
2766 if (
de_ctx->profile_ctx != NULL) {
2767 SCProfilingRuleDestroyCtx(
de_ctx->profile_ctx);
2768 de_ctx->profile_ctx = NULL;
2811 DetectEngineCtxFreeThreadKeywordData(
de_ctx);
2813 DetectEngineCtxFreeFailedSigs(
de_ctx);
2833 DetectBufferTypeFreeDetectEngine(
de_ctx);
2872 const char *max_uniq_toclient_groups_str = NULL;
2873 const char *max_uniq_toserver_groups_str = NULL;
2874 const char *sgh_mpm_context = NULL;
2875 const char *de_ctx_profile = NULL;
2877 (void)
SCConfGet(
"detect.profile", &de_ctx_profile);
2878 (void)
SCConfGet(
"detect.sgh-mpm-context", &sgh_mpm_context);
2883 if (de_ctx_custom != NULL) {
2885 if (de_ctx_profile == NULL) {
2886 if (opt->
val && strcmp(opt->
val,
"profile") == 0) {
2887 de_ctx_profile = opt->head.tqh_first->
val;
2891 if (sgh_mpm_context == NULL) {
2892 if (opt->
val && strcmp(opt->
val,
"sgh-mpm-context") == 0) {
2893 sgh_mpm_context = opt->head.tqh_first->
val;
2899 if (de_ctx_profile != NULL) {
2900 if (strcmp(de_ctx_profile,
"low") == 0 ||
2901 strcmp(de_ctx_profile,
"lowest") == 0) {
2903 }
else if (strcmp(de_ctx_profile,
"medium") == 0) {
2905 }
else if (strcmp(de_ctx_profile,
"high") == 0 ||
2906 strcmp(de_ctx_profile,
"highest") == 0) {
2908 }
else if (strcmp(de_ctx_profile,
"custom") == 0) {
2911 SCLogError(
"invalid value for detect.profile: '%s'. "
2912 "Valid options: low, medium, high and custom.",
2917 SCLogDebug(
"Profile for detection engine groups is \"%s\"", de_ctx_profile);
2919 SCLogDebug(
"Profile for detection engine groups not provided "
2920 "at suricata.yaml. Using default (\"medium\").");
2924 if (sgh_mpm_context == NULL || strcmp(sgh_mpm_context,
"auto") == 0) {
2934 if (strcmp(sgh_mpm_context,
"single") == 0) {
2936 }
else if (strcmp(sgh_mpm_context,
"full") == 0) {
2940 "invalid conf value for detect-engine.sgh-mpm-context-"
2965 (void)
SCConfGet(
"detect.custom-values.toclient-groups", &max_uniq_toclient_groups_str);
2966 (void)
SCConfGet(
"detect.custom-values.toserver-groups", &max_uniq_toserver_groups_str);
2968 if (de_ctx_custom != NULL) {
2970 if (opt->
val && strcmp(opt->
val,
"custom-values") == 0) {
2971 if (max_uniq_toclient_groups_str == NULL) {
2973 opt->head.tqh_first,
"toclient-sp-groups");
2975 if (max_uniq_toclient_groups_str == NULL) {
2977 opt->head.tqh_first,
"toclient-groups");
2979 if (max_uniq_toserver_groups_str == NULL) {
2981 opt->head.tqh_first,
"toserver-dp-groups");
2983 if (max_uniq_toserver_groups_str == NULL) {
2985 opt->head.tqh_first,
"toserver-groups");
2990 if (max_uniq_toclient_groups_str != NULL) {
2992 (uint16_t)strlen(max_uniq_toclient_groups_str),
2993 (
const char *)max_uniq_toclient_groups_str) <= 0) {
2997 "toclient-groups failed, using %u",
3005 if (max_uniq_toserver_groups_str != NULL) {
3007 (uint16_t)strlen(max_uniq_toserver_groups_str),
3008 (
const char *)max_uniq_toserver_groups_str) <= 0) {
3012 "toserver-groups failed, using %u",
3032 if (
SCConfGetInt(
"detect.inspection-recursion-limit", &value) == 1) {
3033 if (value >= 0 && value <= INT_MAX) {
3039 SCConfNode *insp_recursion_limit_node = NULL;
3040 char *insp_recursion_limit = NULL;
3042 if (de_ctx_custom != NULL) {
3045 if (opt->
val && strcmp(opt->
val,
"inspection-recursion-limit") != 0)
3049 if (insp_recursion_limit_node == NULL) {
3051 "entry for detect-engine:inspection-recursion-limit");
3054 insp_recursion_limit = insp_recursion_limit_node->
val;
3055 SCLogDebug(
"Found detect-engine.inspection-recursion-limit - %s:%s",
3056 insp_recursion_limit_node->
name, insp_recursion_limit_node->
val);
3060 if (insp_recursion_limit != NULL) {
3062 0, (
const char *)insp_recursion_limit) < 0) {
3064 "detect-engine.inspection-recursion-limit: %s "
3077 SCLogDebug(
"de_ctx->inspection_recursion_limit: %d",
3082 if (
SCConfGetInt(
"detect.stream-tx-log-limit", &value) == 1) {
3083 if (value >= 0 && value <= UINT8_MAX) {
3086 SCLogWarning(
"Invalid value for detect-engine.stream-tx-log-limit: must be between 0 "
3087 "and 255, will default to 4");
3090 int guess_applayer = 0;
3091 if ((
SCConfGetBool(
"detect.guess-applayer-tx", &guess_applayer)) == 1) {
3092 if (guess_applayer == 1) {
3099 const char *ports = NULL;
3100 (void)
SCConfGet(
"detect.grouping.tcp-priority-ports", &ports);
3102 SCLogConfig(
"grouping: tcp-priority-ports %s", ports);
3104 (void)
SCConfGet(
"detect.grouping.tcp-whitelist", &ports);
3107 "grouping: tcp-priority-ports from legacy 'tcp-whitelist' setting: %s", ports);
3109 ports =
"53, 80, 139, 443, 445, 1433, 3306, 3389, 6666, 6667, 8080";
3110 SCLogConfig(
"grouping: tcp-priority-ports (default) %s", ports);
3115 "for detect.grouping.tcp-priority-ports",
3119 for ( ; x != NULL; x = x->
next) {
3122 "for detect.grouping.tcp-priority-ports: only single ports allowed",
3131 (void)
SCConfGet(
"detect.grouping.udp-priority-ports", &ports);
3133 SCLogConfig(
"grouping: udp-priority-ports %s", ports);
3135 (void)
SCConfGet(
"detect.grouping.udp-whitelist", &ports);
3138 "grouping: udp-priority-ports from legacy 'udp-whitelist' setting: %s", ports);
3140 ports =
"53, 135, 5060";
3141 SCLogConfig(
"grouping: udp-priority-ports (default) %s", ports);
3146 "for detect.grouping.udp-priority-ports",
3152 "for detect.grouping.udp-priority-ports: only single ports allowed",
3161 const char *pf_setting = NULL;
3162 if (
SCConfGet(
"detect.prefilter.default", &pf_setting) == 1 && pf_setting) {
3163 if (strcasecmp(pf_setting,
"mpm") == 0) {
3165 }
else if (strcasecmp(pf_setting,
"auto") == 0) {
3174 SCLogConfig(
"prefilter engines: MPM and keywords");
3194 SCLogError(
"setting up thread local detect ctx");
3203 SCLogError(
"setting up thread local detect ctx "
3204 "for keyword \"%s\" failed",
3242 SCLogError(
"setting up thread local detect ctx");
3254 SCLogError(
"setting up thread local detect ctx "
3255 "for keyword \"%s\" failed",
3286 uint32_t map_array_size = 0;
3287 uint32_t map_cnt = 0;
3288 uint32_t max_tenant_id = 0;
3296 "set using multi-detect.selector");
3310 HashTableInit(tcnt * 2, TenantIdHash, TenantIdCompare, TenantIdFree);
3311 if (mt_det_ctxs_hash == NULL) {
3316 SCLogInfo(
"no tenants left, or none registered yet");
3327 map_array_size = map_cnt + 1;
3329 map_array =
SCCalloc(map_array_size,
sizeof(*map_array));
3330 if (map_array == NULL)
3337 if (map_cnt >= map_array_size) {
3349 list = master->
list;
3354 if (mt_det_ctx == NULL)
3356 if (
HashTableAdd(mt_det_ctxs_hash, mt_det_ctx, 0) != 0) {
3365 mt_det_ctxs_hash = NULL;
3377 det_ctx->
TenantGetId = DetectEngineTenantGetIdFromVlanId;
3381 det_ctx->
TenantGetId = DetectEngineTenantGetIdFromLivedev;
3385 det_ctx->
TenantGetId = DetectEngineTenantGetIdFromPcap;
3392 if (map_array != NULL)
3394 if (mt_det_ctxs_hash != NULL)
3422 if (det_ctx->
replace == NULL) {
3472 DetectEngineThreadCtxInitGlobalKeywords(det_ctx);
3473 #ifdef PROFILE_RULES
3474 SCProfilingRuleThreadSetup(
de_ctx->profile_ctx, det_ctx);
3513 if (det_ctx->
de_ctx == NULL) {
3574 if (DetectEngineThreadCtxInitForMT(
tv, det_ctx) !=
TM_ECODE_OK) {
3583 *data = (
void *)det_ctx;
3607 if (det_ctx->
de_ctx == NULL) {
3638 if (mt && DetectEngineMultiTenantEnabledWithLock()) {
3639 if (DetectEngineThreadCtxInitForMT(
tv, det_ctx) !=
TM_ECODE_OK) {
3652 SCLogDebug(
"PACKET PKT_STREAM_ADD: %"PRIu64, det_ctx->pkt_stream_add_cnt);
3654 SCLogDebug(
"PAYLOAD MPM %"PRIu64
"/%"PRIu64, det_ctx->payload_mpm_cnt, det_ctx->payload_mpm_size);
3655 SCLogDebug(
"STREAM MPM %"PRIu64
"/%"PRIu64, det_ctx->stream_mpm_cnt, det_ctx->stream_mpm_size);
3657 SCLogDebug(
"PAYLOAD SIG %"PRIu64
"/%"PRIu64, det_ctx->payload_persig_cnt, det_ctx->payload_persig_size);
3658 SCLogDebug(
"STREAM SIG %"PRIu64
"/%"PRIu64, det_ctx->stream_persig_cnt, det_ctx->stream_persig_size);
3666 #ifdef PROFILE_RULES
3667 SCProfilingRuleThreadCleanup(det_ctx);
3676 if (det_ctx->
de_ctx != NULL) {
3717 for (uint32_t x = 0; x < fb->
size; x++) {
3728 DetectEngineThreadCtxDeinitGlobalKeywords(det_ctx);
3729 if (det_ctx->
de_ctx != NULL) {
3730 DetectEngineThreadCtxDeinitKeywords(det_ctx->
de_ctx, det_ctx);
3754 if (det_ctx == NULL) {
3763 DetectEngineThreadCtxFree(det_ctx);
3768 static uint32_t DetectKeywordCtxHashFunc(
HashListTable *ht,
void *data, uint16_t datalen)
3775 return (uint32_t)hash;
3778 static char DetectKeywordCtxCompareFunc(
void *data1, uint16_t len1,
void *data2, uint16_t len2)
3782 const char *name1 = ctx1->
name;
3783 const char *name2 = ctx2->
name;
3784 return (strcmp(name1, name2) == 0 && ctx1->
data == ctx2->
data);
3787 static void DetectKeywordCtxFreeFunc(
void *ptr)
3810 BUG_ON(
de_ctx == NULL || InitFunc == NULL || FreeFunc == NULL);
3814 DetectKeywordCtxHashFunc, DetectKeywordCtxCompareFunc, DetectKeywordCtxFreeFunc);
3899 void *(*InitFunc)(
void *),
void *data,
void (*FreeFunc)(
void *))
3902 BUG_ON(InitFunc == NULL || FreeFunc == NULL);
3908 while (item != NULL) {
3909 if (strcmp(
name, item->
name) == 0) {
3959 if (master->
list == NULL) {
4018 static bool DetectEngineMultiTenantEnabledWithLock(
void)
4028 bool enabled = DetectEngineMultiTenantEnabledWithLock();
4043 static int DetectEngineMultiTenantLoadTenant(uint32_t tenant_id,
const char *filename,
int loader_id)
4048 snprintf(prefix,
sizeof(prefix),
"multi-detect.%u", tenant_id);
4051 if (
SCStatFn(filename, &st) != 0) {
4052 SCLogError(
"failed to stat file %s", filename);
4058 SCLogError(
"tenant %u already registered", tenant_id);
4065 SCLogError(
"failed to properly setup yaml %s", filename);
4102 static int DetectEngineMultiTenantReloadTenant(uint32_t tenant_id,
const char *filename,
int reload_cnt)
4105 if (old_de_ctx == NULL) {
4106 SCLogError(
"tenant detect engine not found");
4110 if (filename == NULL)
4114 snprintf(prefix,
sizeof(prefix),
"multi-detect.%u.reload.%d", tenant_id, reload_cnt);
4125 SCLogError(
"failed to properly setup yaml %s", filename);
4130 if (new_de_ctx == NULL) {
4143 goto new_de_ctx_error;
4148 goto new_de_ctx_error;
4173 static void DetectLoaderFreeTenant(
void *
ctx)
4176 if (t->
yaml != NULL) {
4182 static int DetectLoaderFuncLoadTenant(
void *vctx,
int loader_id)
4187 if (DetectEngineMultiTenantLoadTenant(
ctx->tenant_id,
ctx->yaml, loader_id) != 0) {
4193 static int DetectLoaderSetupLoadTenant(uint32_t tenant_id,
const char *yaml)
4201 if (t->
yaml == NULL) {
4209 static int DetectLoaderFuncReloadTenant(
void *vctx,
int loader_id)
4215 if (DetectEngineMultiTenantReloadTenant(
ctx->tenant_id,
ctx->yaml,
ctx->reload_cnt) != 0) {
4221 static int DetectLoaderSetupReloadTenants(
const int reload_cnt)
4240 loader_id, DetectLoaderFuncReloadTenant, t, DetectLoaderFreeTenant);
4254 static int DetectLoaderSetupReloadTenant(uint32_t tenant_id,
const char *yaml,
int reload_cnt)
4257 if (old_de_ctx == NULL)
4269 if (t->
yaml == NULL) {
4279 loader_id, DetectLoaderFuncReloadTenant, t, DetectLoaderFreeTenant);
4286 int r = DetectLoaderSetupLoadTenant(tenant_id, yaml);
4300 int r = DetectLoaderSetupReloadTenant(tenant_id, yaml, reload_cnt);
4314 int r = DetectLoaderSetupReloadTenants(reload_cnt);
4324 static int DetectEngineMultiTenantSetupLoadLivedevMappings(
4325 const SCConfNode *mappings_root_node,
bool failure_fatal)
4329 int mapping_cnt = 0;
4330 if (mappings_root_node != NULL) {
4333 if (tenant_id_node == NULL)
4336 if (device_node == NULL)
4339 uint32_t tenant_id = 0;
4341 tenant_id_node->
val) < 0) {
4344 tenant_id_node->
val);
4348 const char *dev = device_node->
val;
4367 SCLogConfig(
"device %s connected to tenant-id %u", dev, tenant_id);
4376 SCLogConfig(
"%d device - tenant-id mappings defined", mapping_cnt);
4383 static int DetectEngineMultiTenantSetupLoadVlanMappings(
4384 const SCConfNode *mappings_root_node,
bool failure_fatal)
4388 int mapping_cnt = 0;
4389 if (mappings_root_node != NULL) {
4392 if (tenant_id_node == NULL)
4395 if (vlan_id_node == NULL)
4398 uint32_t tenant_id = 0;
4400 tenant_id_node->
val) < 0) {
4403 tenant_id_node->
val);
4407 uint16_t vlan_id = 0;
4409 &vlan_id, 10, (uint16_t)strlen(vlan_id_node->
val), vlan_id_node->
val) < 0) {
4415 if (vlan_id == 0 || vlan_id >= 4095) {
4417 "of %s is invalid. Valid range 1-4094.",
4425 SCLogConfig(
"vlan %u connected to tenant-id %u", vlan_id, tenant_id);
4451 int failure_fatal = 0;
4452 (void)
SCConfGetBool(
"engine.init-failure-fatal", &failure_fatal);
4465 const char *handler = NULL;
4467 SCLogConfig(
"multi-tenant selector type %s", handler);
4469 if (strcmp(handler,
"vlan") == 0) {
4473 if ((
SCConfGetBool(
"vlan.use-for-tracking", &vlanbool)) == 1 && vlanbool == 0) {
4475 "can't use multi-detect selector 'vlan'");
4480 }
else if (strcmp(handler,
"direct") == 0) {
4482 }
else if (strcmp(handler,
"device") == 0) {
4485 SCLogWarning(
"multi-tenant 'device' mode not supported for IPS");
4492 "multi-detect.selector",
4499 SCLogConfig(
"multi-detect is enabled (multi tenancy). Selector: %s", handler);
4505 int mapping_cnt = DetectEngineMultiTenantSetupLoadVlanMappings(mappings_root_node,
4507 if (mapping_cnt == 0) {
4513 SCLogNotice(
"no tenant traffic mappings defined, "
4514 "tenants won't be used until mappings are added");
4516 if (failure_fatal) {
4517 SCLogError(
"no multi-detect mappings defined");
4525 int mapping_cnt = DetectEngineMultiTenantSetupLoadLivedevMappings(mappings_root_node,
4527 if (mapping_cnt == 0) {
4528 if (failure_fatal) {
4529 SCLogError(
"no multi-detect mappings defined");
4541 if (tenants_root_node != NULL) {
4542 const char *path = NULL;
4545 path = path_node->
val;
4551 if (id_node == NULL) {
4555 if (yaml_node == NULL) {
4559 uint32_t tenant_id = 0;
4561 &tenant_id, 10, (uint16_t)strlen(id_node->
val), id_node->
val) < 0) {
4569 char yaml_path[PATH_MAX] =
"";
4571 if (
PathMerge(yaml_path, PATH_MAX, path, yaml_node->
val) < 0)
4574 size_t r =
strlcpy(yaml_path, yaml_node->
val,
sizeof(yaml_path));
4575 if (r >=
sizeof(yaml_path))
4583 snprintf(prefix,
sizeof(prefix),
"multi-detect.%u", tenant_id);
4585 SCLogError(
"failed to load yaml %s", yaml_path);
4589 int r = DetectLoaderSetupLoadTenant(tenant_id, yaml_path);
4610 SCLogDebug(
"multi-detect not enabled (multi tenancy)");
4617 static uint32_t DetectEngineTenantGetIdFromVlanId(
const void *
ctx,
const Packet *
p)
4621 uint32_t vlan_id = 0;
4641 static uint32_t DetectEngineTenantGetIdFromLivedev(
const void *
ctx,
const Packet *
p)
4646 if (ld == NULL || det_ctx == NULL)
4653 static int DetectEngineTenantRegisterSelector(
4660 SCLogInfo(
"conflicting selector already set");
4667 if (
m->traffic_id == traffic_id) {
4668 SCLogInfo(
"traffic id already registered");
4689 SCLogDebug(
"tenant handler %u %u %u registered", selector, tenant_id, traffic_id);
4694 static int DetectEngineTenantUnregisterSelector(
4718 SCLogInfo(
"tenant handler %u %u %u unregistered", selector, tenant_id, traffic_id);
4732 return DetectEngineTenantRegisterSelector(
4743 return DetectEngineTenantUnregisterSelector(
TENANT_SELECTOR_VLAN, tenant_id, (uint32_t)vlan_id);
4758 static uint32_t DetectEngineTenantGetIdFromPcap(
const void *
ctx,
const Packet *
p)
4768 if (master->
list == NULL) {
4792 (*de_ctx)->ref_cnt--;
4800 if (instance == NULL)
4803 if (master->
list == NULL) {
4804 master->
list = instance;
4807 master->
list = instance;
4824 r = DetectEngineAddToList(
de_ctx);
4832 if (instance == NULL) {
4837 if (instance ==
de_ctx) {
4841 instance = instance->
next;
4846 if (instance ==
de_ctx) {
4854 if (instance == NULL) {
4860 instance->
next = NULL;
4878 ret = DetectEngineMoveToFreeListNoLock(master,
de_ctx);
4902 SCLogDebug(
"freeing detect engine %p", instance);
4924 DetectEngineMoveToFreeListNoLock(master, instance);
4931 static int reloads = 0;
4946 memset(prefix, 0,
sizeof(prefix));
4951 snprintf(prefix,
sizeof(prefix),
"detect-engine-reloads.%d", reloads++);
4978 if (old_de_ctx == NULL)
4980 SCLogDebug(
"get ref to old_de_ctx %p", old_de_ctx);
4994 if (new_de_ctx == NULL) {
5006 SCLogDebug(
"set up new_de_ctx %p", new_de_ctx);
5019 SCLogDebug(
"going to reload the threads to use new_de_ctx %p", new_de_ctx);
5024 DetectEngineReloadThreads(new_de_ctx);
5027 SCLogDebug(
"threads now run new_de_ctx %p", new_de_ctx);
5036 SCLogDebug(
"old_de_ctx should have been freed");
5042 #ifdef HAVE_MALLOC_TRIM
5053 static uint32_t TenantIdHash(
HashTable *h,
void *data, uint16_t data_len)
5059 static char TenantIdCompare(
void *d1, uint16_t d1_len,
void *d2, uint16_t d2_len)
5066 static void TenantIdFree(
void *d)
5068 DetectEngineThreadCtxFree(d);
5084 for ( ; list != NULL; list = list->
next) {
5095 if (stub_de_ctx == NULL) {
5097 if (stub_de_ctx == NULL) {
5102 if (master->
list == NULL) {
5103 master->
list = stub_de_ctx;
5106 master->
list = stub_de_ctx;
5112 DetectEngineReloadThreads(stub_de_ctx);
5122 SCLogDebug(
"old_de_ctx should have been freed");
5126 static int g_parse_metadata = 0;
5130 g_parse_metadata = 1;
5135 g_parse_metadata = 0;
5140 return g_parse_metadata;
5149 return "packet/stream payload";
5155 return "base64_data";
5158 return "post-match";
5166 return "max (internal)";
5185 for (; sm != NULL; sm = sm->
next) {
5191 *sigerror =
"md5-like keyword should not be used together with "
5192 "nocase, since the rule is automatically "
5193 "lowercased anyway which makes nocase redundant.";
5198 *sigerror =
"Invalid length for md5-like keyword (should "
5199 "be 32 characters long). This rule will therefore "
5206 if (!isxdigit(cd->
content[i])) {
5208 "Invalid md5-like string (should be string of hexadecimal characters)."
5209 "This rule will therefore never match.";
5226 for (; sm != NULL; sm = sm->
next) {
5232 bool changed =
false;
5235 if (isupper(cd->
content[u])) {
5254 SCLogError(
"no detection engine available for rate filter callback registration");
5291 static int DetectEngineInitYamlConf(
const char *conf)
5298 static void DetectEngineDeInitYamlConf(
void)
5304 static int DetectEngineTest01(
void)
5310 " - profile: medium\n"
5311 " - custom-values:\n"
5312 " toclient_src_groups: 2\n"
5313 " toclient_dst_groups: 2\n"
5314 " toclient_sp_groups: 2\n"
5315 " toclient_dp_groups: 3\n"
5316 " toserver_src_groups: 2\n"
5317 " toserver_dst_groups: 4\n"
5318 " toserver_sp_groups: 2\n"
5319 " toserver_dp_groups: 25\n"
5320 " - inspection-recursion-limit: 0\n";
5322 FAIL_IF(DetectEngineInitYamlConf(conf) == -1);
5331 DetectEngineDeInitYamlConf();
5336 static int DetectEngineTest02(
void)
5342 " - profile: medium\n"
5343 " - custom-values:\n"
5344 " toclient_src_groups: 2\n"
5345 " toclient_dst_groups: 2\n"
5346 " toclient_sp_groups: 2\n"
5347 " toclient_dp_groups: 3\n"
5348 " toserver_src_groups: 2\n"
5349 " toserver_dst_groups: 4\n"
5350 " toserver_sp_groups: 2\n"
5351 " toserver_dp_groups: 25\n"
5352 " - inspection-recursion-limit:\n";
5354 FAIL_IF(DetectEngineInitYamlConf(conf) == -1);
5364 DetectEngineDeInitYamlConf();
5369 static int DetectEngineTest03(
void)
5375 " - profile: medium\n"
5376 " - custom-values:\n"
5377 " toclient_src_groups: 2\n"
5378 " toclient_dst_groups: 2\n"
5379 " toclient_sp_groups: 2\n"
5380 " toclient_dp_groups: 3\n"
5381 " toserver_src_groups: 2\n"
5382 " toserver_dst_groups: 4\n"
5383 " toserver_sp_groups: 2\n"
5384 " toserver_dp_groups: 25\n";
5386 FAIL_IF(DetectEngineInitYamlConf(conf) == -1);
5396 DetectEngineDeInitYamlConf();
5401 static int DetectEngineTest04(
void)
5407 " - profile: medium\n"
5408 " - custom-values:\n"
5409 " toclient_src_groups: 2\n"
5410 " toclient_dst_groups: 2\n"
5411 " toclient_sp_groups: 2\n"
5412 " toclient_dp_groups: 3\n"
5413 " toserver_src_groups: 2\n"
5414 " toserver_dst_groups: 4\n"
5415 " toserver_sp_groups: 2\n"
5416 " toserver_dp_groups: 25\n"
5417 " - inspection-recursion-limit: 10\n";
5419 FAIL_IF(DetectEngineInitYamlConf(conf) == -1);
5428 DetectEngineDeInitYamlConf();
5433 static int DetectEngineTest08(
void)
5439 " - profile: custom\n"
5440 " - custom-values:\n"
5441 " toclient-groups: 23\n"
5442 " toserver-groups: 27\n";
5444 FAIL_IF(DetectEngineInitYamlConf(conf) == -1);
5454 DetectEngineDeInitYamlConf();
5460 static int DetectEngineTest09(
void)
5466 " - profile: custom\n"
5467 " - custom-values:\n"
5468 " toclient-groups: BA\n"
5469 " toserver-groups: BA\n"
5470 " - inspection-recursion-limit: 10\n";
5472 FAIL_IF(DetectEngineInitYamlConf(conf) == -1);
5482 DetectEngineDeInitYamlConf();
5489 static void *DetectEngineFailingThreadKeywordInit(
void *data)
5495 static void DetectEngineNoopThreadKeywordFree(
void *
ctx)
5503 static int DetectEngineThreadCtxInitKeywordFailTest(
void)
5520 DetectEngineFailingThreadKeywordInit, NULL, DetectEngineNoopThreadKeywordFree, 0);
5545 "DetectEngineThreadCtxInitKeywordFailTest", DetectEngineThreadCtxInitKeywordFailTest);
#define DETECT_CONTENT_NOCASE
#define HashListTableGetListData(hb)
#define DE_STATE_ID_FILE_INSPECT
void SCProfilingSghThreadCleanup(DetectEngineThreadCtx *det_ctx)
DetectEngineCtx * DetectEngineCtxInitWithPrefix(const char *prefix, uint32_t tenant_id)
int SCConfYamlLoadString(const char *string, size_t len)
Load configuration from a YAML string.
InspectionBuffer * DetectGetMultiData(struct DetectEngineThreadCtx_ *det_ctx, const DetectEngineTransforms *transforms, Flow *f, const uint8_t flow_flags, void *txv, const int list_id, uint32_t index, InspectionMultiBufferGetDataPtr GetBuf)
struct DetectEngineThreadCtx_::@101 inspect
#define DETECT_ENGINE_MPM_CACHE_OP_PRUNE
struct DetectEngineAppInspectionEngine_::@82 v2
void DetectEngineResetMaxSigId(DetectEngineCtx *de_ctx)
int DetectEngineMTApply(void)
void SCProfilingKeywordDestroyCtx(DetectEngineCtx *de_ctx)
bool DetectEngineBufferTypeSupportsPacketGetById(const DetectEngineCtx *de_ctx, const int id)
DetectEngineThreadCtx * DetectEngineThreadCtxInitForReload(ThreadVars *tv, DetectEngineCtx *new_de_ctx, int mt)
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
void SCConfNodeRemove(SCConfNode *node)
Remove (and SCFree) the provided configuration node.
struct SigMatch_ * smlists[DETECT_SM_LIST_MAX]
void SCProfilingKeywordThreadCleanup(DetectEngineThreadCtx *det_ctx)
int SCConfGetTime(const char *name, uint64_t *val)
Retrieve a configuration value as a time duration in seconds.
void DetectBufferTypeRegisterSetupCallback(const char *name, void(*SetupCallback)(const DetectEngineCtx *, Signature *, const DetectBufferType *))
void AlertQueueFree(DetectEngineThreadCtx *det_ctx)
void SCProfilingSghThreadSetup(SCProfileSghDetectCtx *ctx, DetectEngineThreadCtx *det_ctx)
StatsCounterId counter_alerts
int DetectParseDupSigHashInit(DetectEngineCtx *de_ctx)
Initializes the hash table that is used to cull duplicate sigs.
#define SIG_FLAG_FW_HOOK_LTE
InspectionBuffer * DetectGetSingleData(struct DetectEngineThreadCtx_ *det_ctx, const DetectEngineTransforms *transforms, Flow *f, const uint8_t flow_flags, void *txv, const int list_id, InspectionSingleBufferGetDataPtr GetBuf)
SigTableElmt * sigmatch_table
#define SIG_JSON_CONTENT_ARRAY_LEN
void DetectLoaderThreadSpawn(void)
spawn the detect loader manager thread
uint8_t SinglePatternMatchDefaultMatcher(void)
Returns the single pattern matcher algorithm to be used, based on the spm-algo setting in yaml.
void DetectEngineDeReference(DetectEngineCtx **de_ctx)
#define DETECT_CI_FLAGS_START
uint8_t DetectEngineInspectBufferGeneric(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
Do the content inspection & validation for a signature.
void(* Free)(DetectEngineCtx *, void *)
int DetectEngineMustParseMetadata(void)
const char * AppLayerParserGetStateNameById(uint8_t ipproto, AppProto alproto, const int id, const uint8_t direction)
void MpmFactoryDeRegisterAllMpmCtxProfiles(DetectEngineCtx *de_ctx)
@ DETECT_TABLE_APP_FILTER
DetectEngineTenantMapping * tenant_mapping_list
#define SC_ATOMIC_INIT(name)
wrapper for initializing an atomic variable.
struct DetectEngineAppInspectionEngine_ * next
InspectionBuffer * SCInspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
uint8_t DetectEngineInspectMultiBufferGeneric(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
int DetectEngineAppHookToSmlist(const AppProto p, const uint8_t state, const int direction)
get the sm_list for a app hook
void MpmStoreFree(DetectEngineCtx *de_ctx)
Frees the hash table - DetectEngineCtx->mpm_hash_table, allocated by MpmStoreInit() function.
void DetectFrameMpmRegisterByParentId(DetectEngineCtx *de_ctx, const int id, const int parent_id, DetectEngineTransforms *transforms)
copy a mpm engine from parent_id, add in transforms
void DetectEngineBufferTypeSupportsPacket(DetectEngineCtx *de_ctx, const char *name)
void DetectEngineBufferRunSetupCallback(const DetectEngineCtx *de_ctx, const int id, Signature *s)
enum DetectEngineType type
void DetectEnginePruneFreeList(void)
int SigLoadSignatures(DetectEngineCtx *de_ctx, char *sig_file, bool sig_file_exclusive)
Load signatures.
uint8_t DetectEngineInspectBufferSingle(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
Do the content inspection & validation for a signature.
void * DetectThreadCtxGetKeywordThreadCtx(DetectEngineThreadCtx *det_ctx, int id)
Retrieve thread local keyword ctx by id.
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
#define SIG_FLAG_INIT_NEED_FLUSH
void SCClassSCConfInit(DetectEngineCtx *de_ctx)
uint8_t app_progress_hook
DetectEngineCtx * DetectEngineCtxInitStubForDD(void)
HashTable * policy_signatures
#define KEYWORD_PROFILING_SET_LIST(ctx, list)
uint16_t max_uniq_toclient_groups
int ActionInitConfig(void)
Load the action order from config. If none is provided, it will be default to ACTION_PASS,...
InspectEngineFuncPtr Callback
int PathMerge(char *out_buf, size_t buf_size, const char *const dir, const char *const fname)
@ DETECT_TABLE_PACKET_PRE_STREAM
StatsCounterId StatsRegisterCounter(const char *name, StatsThreadContext *stats)
Registers a normal, unqualified counter.
void PacketEnqueue(PacketQueue *q, Packet *p)
DetectFileDataCfg * filedata_config
struct HtpBodyChunk_ * next
struct SignatureHook_::@87::@88 app
void DetectBufferTypeSupportsFrames(const char *name)
void DetectEngineMpmCacheService(uint32_t op_flags)
void DetectMpmInitializeFrameMpms(DetectEngineCtx *de_ctx)
simple fifo queue for packets with mutex and cond Calling the mutex or triggering the cond is respons...
@ DETECT_SM_LIST_DYNAMIC_START
int AppLayerParserGetStateProgress(uint8_t ipproto, AppProto alproto, void *alstate, uint8_t flags)
get the progress value for a tx/protocol
AppLayerDecoderEvents * decoder_events
uint8_t AppLayerParserGetStateProgressCompletionStatus(AppProto alproto, uint8_t direction)
union SignatureHook_::@87 t
void *(* InitFunc)(void *)
#define SCMutexIsLocked(mut)
InspectionBufferGetDataPtr GetData
DetectBufferMpmRegistry * pkt_mpms_list
void TmThreadContinueDetectLoaderThreads(void)
Unpauses all threads present in tv_root.
@ DETECT_SM_LIST_THRESHOLD
int SCConfYamlHandleInclude(SCConfNode *parent, const char *filename)
Include a file in the configuration.
const char * AppProtoToString(AppProto alproto)
Maps the ALPROTO_*, to its string equivalent.
int DetectEngineReloadTenantBlocking(uint32_t tenant_id, const char *yaml, int reload_cnt)
Reload a tenant and wait for loading to complete.
int inspection_recursion_limit
void DetectAddressMapFree(DetectEngineCtx *de_ctx)
const DetectEngineTransforms * transforms
main detection engine ctx
int StringParseUint16(uint16_t *res, int base, size_t len, const char *str)
void DetectEngineReloadSetIdle(void)
void DetectBufferTypeRegisterValidateCallback(const char *name, bool(*ValidateCallback)(const Signature *, const char **sigerror, const DetectBufferType *))
int SCConfGet(const char *name, const char **vptr)
Retrieve the value of a configuration node.
void ** global_keyword_ctxs_array
DetectEngineCtx * DetectEngineGetCurrent(void)
void SCInspectionBufferSetupAndApplyTransforms(DetectEngineThreadCtx *det_ctx, const int list_id, InspectionBuffer *buffer, const uint8_t *data, const uint32_t data_len, const DetectEngineTransforms *transforms)
setup the buffer with our initial data
uint8_t(* SCDetectRateFilterFunc)(const Packet *p, uint32_t sid, uint32_t gid, uint32_t rev, uint8_t original_action, uint8_t new_action, void *arg)
Function type for rate filter callback.
Signature * pkt_policy_signatures[DETECT_FIREWALL_POLICY_SIZE]
uint32_t TmThreadCountThreadsByTmmFlags(uint8_t flags)
returns a count of all the threads that match the flag
void DetectBufferTypeSupportsMultiInstance(const char *name)
HashListTableBucket * HashListTableGetListHead(HashListTable *ht)
#define TAILQ_FOREACH(var, head, field)
LiveDevice * LiveDeviceGetById(const int id)
uint8_t DetectEngineInspectPacketPayload(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const Signature *s, Flow *f, Packet *p)
Do the content inspection & validation for a signature.
int DetectEngineAddToMaster(DetectEngineCtx *de_ctx)
InspectionBuffer *(* InspectionBufferGetPktDataPtr)(struct DetectEngineThreadCtx_ *det_ctx, const DetectEngineTransforms *transforms, Packet *p, const int list_id)
void SCSigSignatureOrderingModuleCleanup(DetectEngineCtx *de_ctx)
De-registers all the signature ordering functions registered.
const char * DetectEngineBufferTypeGetNameById(const DetectEngineCtx *de_ctx, const int id)
void(* CacheStatsPrint)(void *data)
int DetectEngineMultiTenantSetup(const bool unix_socket)
setup multi-detect / multi-tenancy
void PrefilterDeinit(DetectEngineCtx *de_ctx)
struct DetectBufferMpmRegistry_ * next
#define SIG_FLAG_REQUIRE_STREAM
struct DetectEngineTenantMapping_ * next
void DetectEngineSetEvent(DetectEngineThreadCtx *det_ctx, uint8_t e)
#define SIG_FLAG_TXBOTHDIR
bool DetectContentInspectionMatchOnAbsentBuffer(const SigMatchData *smd)
tells if we should match on absent buffer, because there is an absent keyword being used
int SCConfGetBool(const char *name, int *val)
Retrieve a configuration value as a boolean.
struct SCProfileSghDetectCtx_ * profile_sgh_ctx
ThreadVars * tv_root[TVT_MAX]
one time registration of keywords at start up
void SCReferenceConfDeinit(DetectEngineCtx *de_ctx)
struct DetectPort_ * next
DetectPort * tcp_priorityports
void DetectEngineCtxFree(DetectEngineCtx *de_ctx)
Free a DetectEngineCtx::
StatsCounterId counter_alerts_overflow
void(* TransformId)(const uint8_t **data, uint32_t *length, const void *context)
SpmThreadCtx * spm_thread_ctx
int DetectEngineReloadTenantsBlocking(const int reload_cnt)
Reload all tenants and wait for loading to complete.
#define SCMUTEX_INITIALIZER
SigMatchData * sm_arrays[DETECT_SM_LIST_MAX]
const char * conf_filename
enum DetectEnginePrefilterSetting prefilter_setting
void DetectParseDupSigHashFree(DetectEngineCtx *de_ctx)
Frees the hash table that is used to cull duplicate sigs.
DetectPort * udp_priorityports
int SCConfYamlLoadFileWithPrefix(const char *filename, const char *prefix)
Load configuration from a YAML file, insert in tree at 'prefix'.
int StringParseInt32(int32_t *res, int base, size_t len, const char *str)
int PrefilterGenericMpmFrameRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
@ ENGINE_SGH_MPM_FACTORY_CONTEXT_FULL
uint32_t DetectEngineGetVersion(void)
StatsCounterId counter_alerts_suppressed
const char * SCConfNodeLookupChildValue(const SCConfNode *node, const char *name)
Lookup the value of a child configuration node by name.
void SigCleanSignatures(DetectEngineCtx *de_ctx)
StatsCounterId lua_instruction_limit_errors
void * HashListTableLookup(HashListTable *ht, void *data, uint16_t datalen)
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
StatsCounterId counter_firewall_discarded_alerts
bool EngineModeIsFirewall(void)
#define SIG_FLAG_TOCLIENT
bool DetectMd5ValidateCallback(const Signature *s, const char **sigerror, const DetectBufferType *map)
bool DetectEngineMpmCachingEnabled(void)
bool DetectBufferIsPresent(const Signature *s, const uint32_t buf_id)
#define KEYWORD_PROFILING_START
StatsCounterAvgId StatsRegisterAvgCounter(const char *name, StatsThreadContext *stats)
Registers a counter, whose value holds the average of all the values assigned to it.
HashTable * non_pf_engine_names
int PrefilterMultiGenericMpmRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
DetectEngineFrameInspectionEngine * frame_inspect
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, uint8_t progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
Registers an app inspection engine.
void DetectBufferTypeCloseRegistration(void)
const DetectEngineTransforms * transforms
#define FAIL_IF_NOT(expr)
Fail a test if expression evaluates to false.
void(* SetupCallback)(const struct DetectEngineCtx_ *, struct Signature_ *, const struct DetectBufferType_ *)
void HashTableFree(HashTable *ht)
Free a HashTable and all its contents.
const char * cache_dir_path
void SCAppLayerDecoderEventsSetEventRaw(AppLayerDecoderEvents **sevents, uint8_t event)
Set an app layer decoder event.
int DetectBufferTypeGetByName(const char *name)
#define KEYWORD_PROFILING_END(ctx, type, m)
void DetectBufferTypeSupportsPacket(const char *name)
InspectionBufferFrameInspectFunc Callback
int HashListTableAdd(HashListTable *ht, void *data, uint16_t datalen)
int SigGroupHeadHashInit(DetectEngineCtx *de_ctx)
Initializes the hash table in the detection engine context to hold the SigGroupHeads.
void SCRConfDeInitContext(DetectEngineCtx *de_ctx)
Releases de_ctx resources related to Reference Config API.
HashTable * mt_det_ctxs_hash
size_t strlcpy(char *dst, const char *src, size_t siz)
bool DetectEnginePktInspectionRun(ThreadVars *tv, DetectEngineThreadCtx *det_ctx, const Signature *s, Flow *f, Packet *p, uint8_t *alert_flags)
void DetectAppLayerMpmRegisterByParentId(DetectEngineCtx *de_ctx, const int id, const int parent_id, DetectEngineTransforms *transforms)
copy a mpm engine from parent_id, add in transforms
void AlertQueueInit(DetectEngineThreadCtx *det_ctx)
const char * DetectEngineAppHookToName(const AppProto p, const uint8_t state, const uint8_t direction)
uint16_t base64_decode_max_len
@ SIGNATURE_HOOK_TYPE_APP
#define PKT_SET_SRC(p, src_val)
void SCConfInit(void)
Initialize the configuration system.
struct DetectEngineThreadCtx_::@102 multi_inspect
void SCConfDump(void)
Dump configuration to stdout.
@ TENANT_SELECTOR_UNKNOWN
#define HashListTableGetListNext(hb)
@ DETECT_SM_LIST_POSTMATCH
#define SIG_FLAG_TOSERVER
DetectEngineTenantSelectors
int DetectPortParse(const DetectEngineCtx *de_ctx, DetectPort **head, const char *str)
Function for parsing port strings.
int(* InspectionBufferPktInspectFunc)(struct DetectEngineThreadCtx_ *, const struct DetectEnginePktInspectionEngine *engine, const struct Signature_ *s, Packet *p, uint8_t *alert_flags)
void InspectionBufferFree(InspectionBuffer *buffer)
HashListTable * HashListTableInit(uint32_t size, uint32_t(*Hash)(struct HashListTable_ *, void *, uint16_t), char(*Compare)(void *, uint16_t, void *, uint16_t), void(*Free)(void *))
SCDetectRequiresStatus * requirements
#define TAILQ_REMOVE(head, elm, field)
SCRunMode SCRunmodeGet(void)
Get the current run mode.
#define FAIL_IF_NOT_NULL(expr)
Fail a test if expression evaluates to non-NULL.
bool(* ValidateCallback)(const struct Signature_ *, const char **sigerror, const struct DetectBufferType_ *)
int DetectEngineMoveToFreeList(DetectEngineCtx *de_ctx)
struct DetectFirewallPolicies * fw_policies
bool(* TransformValidate)(const uint8_t *content, uint16_t content_len, const void *context)
StatsCounterAvgId counter_mpm_list
#define PASS
Pass the test.
const char * DetectTableToString(enum DetectTable table)
SpmGlobalThreadCtx * SpmInitGlobalThreadCtx(uint8_t matcher)
void SCProfilingPrefilterDestroyCtx(DetectEngineCtx *de_ctx)
void DetectMpmInitializePktMpms(DetectEngineCtx *de_ctx)
StatsCounterId lua_memory_limit_errors
void DetectLoadersInit(void)
struct TmSlot_ * tm_slots
const char * DetectEngineBufferTypeGetDescriptionById(const DetectEngineCtx *de_ctx, const int id)
#define SCMutexUnlock(mut)
@ DETECT_SM_LIST_BASE64_DATA
@ ENGINE_SGH_MPM_FACTORY_CONTEXT_SINGLE
#define PKT_PSEUDO_STREAM_END
InspectionBuffer * buffers
DetectEngineThreadKeywordCtxItem * keyword_list
LiveDevice * LiveGetDevice(const char *name)
Get a pointer to the device at idx.
int SCConfGetInt(const char *name, intmax_t *val)
Retrieve a configuration value as an integer.
enum DetectEngineTenantSelectors tenant_selector
HashListTable * keyword_hash
void DetectPktInspectEngineRegister(const char *name, InspectionBufferGetPktDataPtr GetPktData, InspectionBufferPktInspectFunc Callback)
register inspect engine at start up time
int DetectEngineInspectStreamPayload(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const Signature *s, Flow *f, Packet *p)
Do the content inspection & validation for a signature on the raw stream.
DetectEnginePktInspectionEngine * pkt_inspect
InspectionMultiBufferGetDataPtr GetMultiData
int DetectBufferTypeMaxId(void)
void DatasetPostReloadCleanup(void)
int SCConfGetNonNull(const char *name, const char **vptr)
Retrieve the non-null value of a configuration node.
Per thread variable structure.
bool DetectEngineBufferTypeValidateTransform(DetectEngineCtx *de_ctx, int sm_list, const uint8_t *content, uint16_t content_len, const char **namestr)
Check content byte array compatibility with transforms.
bool * sm_types_prefilter
int DetectEngineEnabled(void)
Check if detection is enabled.
SigMatchData * SigMatchList2DataArray(SigMatch *head)
convert SigMatch list to SigMatchData array
TmEcode DetectEngineThreadCtxInit(ThreadVars *tv, void *initdata, void **data)
initialize thread specific detection engine context
void(* CacheStatsDeinit)(void *data)
int DetectEngineReloadIsIdle(void)
#define DETECT_ENGINE_INSPECT_SIG_MATCH
#define PKT_DETECT_HAS_STREAMDATA
bool(* InspectionSingleBufferGetDataPtr)(const void *txv, const uint8_t flow_flags, const uint8_t **buf, uint32_t *buf_len)
@ DETECT_TABLE_PACKET_PRE_FLOW
void SCClassConfDeinit(DetectEngineCtx *de_ctx)
@ DETECT_TABLE_PACKET_FILTER
@ DETECT_ENGINE_CONTENT_INSPECTION_MODE_STATE
DetectEngineFrameInspectionEngine * frame_inspect_engines
DetectEngineCtx * free_list
int StringParseUint32(uint32_t *res, int base, size_t len, const char *str)
struct DetectEngineThreadKeywordCtxItem_ * next
#define SCLogWarning(...)
Macro used to log WARNING messages.
int HashTableAdd(HashTable *ht, void *data, uint16_t datalen)
int DetectEngineBufferTypeRegister(DetectEngineCtx *de_ctx, const char *name)
Port structure for detection engine.
uint8_t json_content_capacity
DetectEngineAppInspectionEngine * app_inspect
struct ThreadVars_ * next
bool DetectEngineContentInspection(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const Signature *s, const SigMatchData *smd, Packet *p, Flow *f, const uint8_t *buffer, const uint32_t buffer_len, const uint64_t stream_start_offset, const uint8_t flags, const enum DetectContentInspectionType inspection_mode)
wrapper around DetectEngineContentInspectionInternal to return true/false only
StatsCounterId lua_rule_errors
uint32_t hashlittle_safe(const void *key, size_t length, uint32_t initval)
int SigGroupCleanup(DetectEngineCtx *de_ctx)
uint8_t DetectEngineInspectStream(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const struct DetectEngineAppInspectionEngine_ *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
inspect engine for stateful rules
int DetectEngineLoadTenantBlocking(uint32_t tenant_id, const char *yaml)
Load a tenant and wait for loading to complete.
void TmModuleDetectLoaderRegister(void)
struct DetectEngineFrameInspectionEngine::@86 v1
TransformIdData xform_id[DETECT_TRANSFORMS_MAX]
DetectEngineCtx * DetectEngineCtxInit(void)
void RuleMatchCandidateTxArrayFree(DetectEngineThreadCtx *det_ctx)
void DetectEngineInitializeFastPatternList(DetectEngineCtx *de_ctx)
#define DE_STATE_FLAG_BASE
void PatternMatchThreadPrepare(MpmThreadCtx *mpm_thread_ctx, DetectEngineCtx *de_ctx)
int SCRConfLoadReferenceConfigFile(DetectEngineCtx *de_ctx, FILE *fd)
Loads the Reference info from the reference.config file.
int DetectEngineTenantRegisterLivedev(uint32_t tenant_id, int device_id)
#define DETECT_CI_FLAGS_END
void DetectEngineBufferTypeSupportsFrames(DetectEngineCtx *de_ctx, const char *name)
int(* InspectionBufferFrameInspectFunc)(struct DetectEngineThreadCtx_ *, const struct DetectEngineFrameInspectionEngine *engine, const struct Signature_ *s, Packet *p, const struct Frames *frames, const struct Frame *frame)
void *(* CacheStatsInit)(void)
DetectBufferMpmRegistry * frame_mpms_list
TmModule * TmModuleGetById(int id)
Returns a TM Module by its id.
struct TenantLoaderCtx_ TenantLoaderCtx
uint16_t max_uniq_toserver_groups
int(* CacheRuleset)(MpmConfig *)
const DetectBufferType * DetectEngineBufferTypeGetById(const DetectEngineCtx *de_ctx, const int id)
InspectionBufferPktInspectFunc Callback
int ThresholdCacheThreadInit(DetectEngineThreadCtx *det_ctx)
SignatureInitData * init_data
enum DetectEngineSyncState state
SpmThreadCtx * SpmMakeThreadCtx(const SpmGlobalThreadCtx *global_thread_ctx)
void SCReferenceSCConfInit(DetectEngineCtx *de_ctx)
struct SCProfileKeywordDetectCtx_ * profile_keyword_ctx
InspectionSingleBufferGetDataPtr GetDataSingle
const char ** additional_configs
Data structures and function prototypes for keeping state for the detection engine.
int(* Match)(DetectEngineThreadCtx *, Packet *, const Signature *, const SigMatchCtx *)
void SCProfilingPrefilterThreadCleanup(DetectEngineThreadCtx *det_ctx)
void SCConfCreateContextBackup(void)
Creates a backup of the conf_hash hash_table used by the conf API.
int DetectEngineThreadCtxGetJsonContext(DetectEngineThreadCtx *det_ctx)
int32_t byte_extract_max_local_id
@ SIG_PROP_FLOW_ACTION_PACKET
bool DetectEngineMultiTenantEnabled(void)
const struct SignatureProperties signature_properties[SIG_TYPE_MAX]
SCDetectRateFilterFunc RateFilterCallback
int RunmodeIsUnittests(void)
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
#define TAILQ_FOREACH_SAFE(var, head, field, tvar)
#define SIG_FLAG_REQUIRE_STREAM_ONLY
void SpmDestroyGlobalThreadCtx(SpmGlobalThreadCtx *global_thread_ctx)
#define DETECT_ENGINE_INSPECT_SIG_CANT_MATCH
void DetectEngineRegisterTests(void)
int DetectLoaderQueueTask(int loader_id, LoaderFunc Func, void *func_ctx, LoaderFreeFunc FreeFunc)
@ DETECT_ENGINE_TYPE_TENANT
void DetectEngineBufferTypeSupportsTransformations(DetectEngineCtx *de_ctx, const char *name)
#define PACKET_ALERT_FLAG_STREAM_MATCH
bool(* InspectionMultiBufferGetDataPtr)(struct DetectEngineThreadCtx_ *det_ctx, const void *txv, const uint8_t flow_flags, uint32_t local_id, const uint8_t **buf, uint32_t *buf_len)
int SigGroupBuild(DetectEngineCtx *de_ctx)
Convert the signature list into the runtime match structure.
bool DetectEngineBufferTypeSupportsMpmGetById(const DetectEngineCtx *de_ctx, const int id)
void DetectAppLayerMpmMultiRegister(const char *name, int direction, int priority, PrefilterRegisterFunc PrefilterRegister, InspectionMultiBufferGetDataPtr GetData, AppProto alproto, uint8_t tx_min_progress)
const char * DetectSigmatchListEnumToString(enum DetectSigmatchListEnum type)
#define SCRealloc(ptr, sz)
uint64_t cache_max_age_seconds
void SRepReloadComplete(void)
Increment effective reputation version after a rule/reputation reload is complete.
#define SIG_FLAG_INIT_STATE_MATCH
bool DetectEngineBufferTypeSupportsFramesGetById(const DetectEngineCtx *de_ctx, const int id)
int DetectEngineBufferTypeRegisterWithFrameEngines(DetectEngineCtx *de_ctx, const char *name, const int direction, const AppProto alproto, const uint8_t frame_type)
InspectionBufferGetPktDataPtr GetData
SCConfNode * SCConfNodeLookupChild(const SCConfNode *node, const char *name)
Lookup a child configuration node by name.
@ DETECT_ENGINE_TYPE_NORMAL
void * FlowWorkerGetDetectCtxPtr(void *flow_worker)
bool DetectEngineBufferTypeSupportsMultiInstanceGetById(const DetectEngineCtx *de_ctx, const int id)
SigFileLoaderStat sig_stat
void DetectEngineFrameMpmRegister(DetectEngineCtx *de_ctx, const char *name, int direction, int priority, int(*PrefilterRegister)(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id), AppProto alproto, uint8_t type)
uint32_t * to_clear_queue
void SpmDestroyThreadCtx(SpmThreadCtx *thread_ctx)
struct SCProfilePrefilterDetectCtx_ * profile_prefilter_ctx
#define FAIL_IF(expr)
Fail a test if expression evaluates to true.
#define DETECT_CI_FLAGS_SINGLE
int DetectEnginePktInspectionSetup(Signature *s)
int DetectBufferTypeRegister(const char *name)
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)
int DetectRegisterThreadCtxFuncs(DetectEngineCtx *de_ctx, const char *name, void *(*InitFunc)(void *), void *data, void(*FreeFunc)(void *), int mode)
Register Thread keyword context Funcs.
void DetectAppLayerMultiRegister(const char *name, AppProto alproto, uint32_t dir, uint8_t progress, InspectionMultiBufferGetDataPtr GetData, int priority)
int MpmStoreInit(DetectEngineCtx *de_ctx)
Initializes the MpmStore mpm hash table to be used by the detection engine context.
DetectBufferMpmRegistry * app_mpms_list
struct DetectEnginePktInspectionEngine::@85 v1
@ SIG_PROP_FLOW_ACTION_FLOW_IF_STATEFUL
DetectEngineCtx * DetectEngineCtxInitStubForMT(void)
void DetectBufferTypeSupportsMpm(const char *name)
void HashListTableFree(HashListTable *ht)
#define DETECT_FIREWALL_POLICY_SIZE
HashListTable * buffer_type_hash_name
struct DetectEngineCtx_ * next
@ DETECT_ENGINE_TYPE_DD_STUB
void DetectEngineBumpVersion(void)
struct DetectEngineFrameInspectionEngine * next
enum SignatureHookType type
int DetectEngineInspectFrameBufferGeneric(DetectEngineThreadCtx *det_ctx, const DetectEngineFrameInspectionEngine *engine, const Signature *s, Packet *p, const Frames *frames, const Frame *frame)
Do the content inspection & validation for a signature.
TmEcode DetectEngineThreadCtxDeinit(ThreadVars *tv, void *data)
struct DetectEnginePktInspectionEngine * next
void * rate_filter_callback_arg
#define DETECT_ENGINE_DEFAULT_INSPECTION_RECURSION_LIMIT
PostRuleMatchWorkQueueItem * q
uint8_t PatternMatchDefaultMatcher(void)
Function to return the multi pattern matcher algorithm to be used by the engine, based on the mpm-alg...
void SCConfDeInit(void)
De-initializes the configuration system.
int DetectEngineTenantRegisterPcapFile(uint32_t tenant_id)
void SigGroupHeadHashFree(DetectEngineCtx *de_ctx)
Frees the hash table - DetectEngineCtx->sgh_hash_table, allocated by SigGroupHeadHashInit() function.
void SCAppLayerDecoderEventsFreeEvents(AppLayerDecoderEvents **events)
uint8_t DetectEngineInspectGenericList(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const struct DetectEngineAppInspectionEngine_ *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
Do the content inspection & validation for a signature.
void DetectEngineAppInspectionEngineSignatureFree(DetectEngineCtx *de_ctx, Signature *s)
free app inspect engines for a signature
@ DETECT_ENGINE_CONTENT_INSPECTION_MODE_HEADER
#define DETECT_ENGINE_INSPECT_SIG_NO_MATCH
DetectEnginePktInspectionEngine * pkt_inspect_engines
void DetectEngineBufferTypeSupportsMpm(DetectEngineCtx *de_ctx, const char *name)
bool * sm_types_silent_error
Packet * PacketGetFromAlloc(void)
Get a malloced packet.
void DetectEngineFreeFastPatternList(DetectEngineCtx *de_ctx)
void DetectBufferTypeSupportsTransformations(const char *name)
const char * DetectEngineMpmCachingGetPath(void)
struct SCLogConfig_ SCLogConfig
Holds the config state used by the logging api.
#define DETECT_ENGINE_MPM_CACHE_OP_SAVE
int DetectAddressMapInit(DetectEngineCtx *de_ctx)
SignatureInitDataBuffer * buffers
DetectEngineAppInspectionEngine * app_inspect_engines
int filemagic_thread_ctx_id
int global_keyword_ctxs_size
SigJsonContent * json_content
void PrefilterInit(DetectEngineCtx *de_ctx)
const Signature ** replace
void * DetectThreadCtxGetGlobalKeywordThreadCtx(DetectEngineThreadCtx *det_ctx, int id)
Retrieve thread local keyword ctx by id.
SCConfNode * SCConfGetNode(const char *name)
Get a SCConfNode by name.
#define SCLogError(...)
Macro used to log ERROR messages.
int SRepInit(DetectEngineCtx *de_ctx)
init reputation
int DetectEngineReloadStart(void)
void DetectEngineUnsetParseMetadata(void)
@ PKT_SRC_DETECT_RELOAD_FLUSH
void ** keyword_ctxs_array
uint8_t guess_applayer_log_limit
int HashListTableRemove(HashListTable *ht, void *data, uint16_t datalen)
DetectEngineTransforms transforms
void SCConfRestoreContextBackup(void)
Restores the backup of the hash_table present in backup_conf_hash back to conf_hash.
a single match condition for a signature
const DetectEngineTransforms * transforms
int DetectLoadersSync(void)
wait for loader tasks to complete
void SCProfilingSghDestroyCtx(DetectEngineCtx *de_ctx)
HashTable * HashTableInit(uint32_t size, uint32_t(*Hash)(struct HashTable_ *, void *, uint16_t), char(*Compare)(void *, uint16_t, void *, uint16_t), void(*Free)(void *))
SpmTableElmt spm_table[SPM_TABLE_SIZE]
DetectEngineCtx * DetectEngineReference(DetectEngineCtx *de_ctx)
bool SCDetectEngineRegisterRateFilterCallback(SCDetectRateFilterFunc fn, void *arg)
Register a callback when a rate_filter has been applied to an alert.
MpmTableElmt mpm_table[MPM_TABLE_SIZE]
struct DetectEngineSyncer_ DetectEngineSyncer
void DetectMpmInitializeAppMpms(DetectEngineCtx *de_ctx)
int EngineModeIsIPS(void)
void(* ConfigDeinit)(MpmConfig **)
void InspectionBufferSetupMultiEmpty(InspectionBuffer *buffer)
setup the buffer empty
void(* ConfigCacheDirSet)(MpmConfig *, const char *dir_path)
InspectionBuffer *(* InspectionBufferGetDataPtr)(struct DetectEngineThreadCtx_ *det_ctx, const DetectEngineTransforms *transforms, Flow *f, const uint8_t flow_flags, void *txv, const int list_id)
void PmqFree(PrefilterRuleStore *pmq)
Cleanup and free a Pmq.
int(* CachePrune)(MpmConfig *)
@ DETECT_ENGINE_TYPE_MT_STUB
uint16_t vlan_id[VLAN_MAX_LAYERS]
int DetectEngineReload(const SCInstance *suri)
Reload the detection engine.
bool DetectEngineBufferRunValidateCallback(const DetectEngineCtx *de_ctx, const int id, const Signature *s, const char **sigerror)
bool DetectEngineContentInspectionBuffer(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const Signature *s, const SigMatchData *smd, Packet *p, Flow *f, const InspectionBuffer *b, const enum DetectContentInspectionType inspection_mode)
wrapper around DetectEngineContentInspectionInternal to return true/false only
SpmGlobalThreadCtx * spm_global_thread_ctx
void DetectEngineClearMaster(void)
StatsCounterAvgId counter_match_list
void SRepDestroy(DetectEngineCtx *de_ctx)
MpmConfig *(* ConfigInit)(void)
@ SIG_PROP_FLOW_ACTION_FLOW
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
#define SCStatFn(pathname, statbuf)
int DetectUnregisterThreadCtxFuncs(DetectEngineCtx *de_ctx, void *data, const char *name)
Remove Thread keyword context registration.
#define SC_ATOMIC_GET(name)
Get the value from the atomic variable.
void DetectAppLayerInspectEngineRegisterSingle(const char *name, AppProto alproto, uint32_t dir, uint8_t progress, InspectEngineFuncPtr Callback, InspectionSingleBufferGetDataPtr GetData)
void DetectEngineFrameInspectEngineRegister(DetectEngineCtx *de_ctx, const char *name, int dir, InspectionBufferFrameInspectFunc Callback, AppProto alproto, uint8_t type)
register inspect engine at start up time
int DetectEngineTenantRegisterVlanId(uint32_t tenant_id, uint16_t vlan_id)
void DetectEngineSetParseMetadata(void)
int TmThreadsCheckFlag(ThreadVars *tv, uint32_t flag)
Check if a thread flag is set.
#define SCLogNotice(...)
Macro used to log NOTICE messages.
void DetectPktMpmRegisterByParentId(DetectEngineCtx *de_ctx, const int id, const int parent_id, DetectEngineTransforms *transforms)
copy a mpm engine from parent_id, add in transforms
void SpmDestroyCtx(SpmCtx *ctx)
@ TENANT_SELECTOR_LIVEDEV
AppProto alproto
application level protocol
int DetectEngineTenantUnregisterPcapFile(uint32_t tenant_id)
Signature loader statistics.
int DetectEngineInspectPktBufferGeneric(DetectEngineThreadCtx *det_ctx, const DetectEnginePktInspectionEngine *engine, const Signature *s, Packet *p, uint8_t *_alert_flags)
Do the content inspection & validation for a signature.
HashListTable * buffer_type_hash_id
DetectEngineCtx * DetectEngineGetByTenantId(uint32_t tenant_id)
SpmCtx * SpmInitCtx(const uint8_t *needle, uint16_t needle_len, int nocase, SpmGlobalThreadCtx *global_thread_ctx)
void DetectPortCleanupList(const DetectEngineCtx *de_ctx, DetectPort *head)
Free a DetectPort list and each of its members.
@ DETECT_SM_LIST_SUPPRESS
InspectionBuffer * inspection_buffers
void DetectLowerSetupCallback(const DetectEngineCtx *de_ctx, Signature *s, const DetectBufferType *map)
#define DEBUG_VALIDATE_BUG_ON(exp)
int DetectEngineAppInspectionEngine2Signature(DetectEngineCtx *de_ctx, Signature *s)
bool SCClassConfLoadClassificationConfigFile(DetectEngineCtx *de_ctx, FILE *fd)
Loads the Classtype info from the classification.config file.
void InspectionBufferSetupMulti(DetectEngineThreadCtx *det_ctx, InspectionBuffer *buffer, const DetectEngineTransforms *transforms, const uint8_t *data, const uint32_t data_len)
setup the buffer with our initial data
StatsCounterId lua_blocked_function_errors
int DetectEngineTenantUnregisterVlanId(uint32_t tenant_id, uint16_t vlan_id)
int PmqSetup(PrefilterRuleStore *pmq)
Setup a pmq.
void PatternMatchThreadDestroy(MpmThreadCtx *mpm_thread_ctx, uint16_t mpm_matcher)
int VarNameStoreActivate(void)
InspectionBuffer * InspectionBufferMultipleForListGet(DetectEngineThreadCtx *det_ctx, const int list_id, const uint32_t local_id)
for a InspectionBufferMultipleForList get a InspectionBuffer
void RuleMatchCandidateTxArrayInit(DetectEngineThreadCtx *det_ctx, uint32_t size)
void SCProfilingKeywordThreadSetup(SCProfileKeywordDetectCtx *ctx, DetectEngineThreadCtx *det_ctx)
int DetectEngineReloadIsStart(void)
int DetectRegisterThreadCtxGlobalFuncs(const char *name, void *(*InitFunc)(void *), void *data, void(*FreeFunc)(void *))
Register Thread keyword context Funcs (Global)
PostRuleMatchWorkQueue post_rule_work_queue
uint32_t tenant_array_size
struct DetectEngineTenantMapping_ * tenant_array
volatile uint8_t suricata_ctl_flags
#define TM_FLAG_FLOWWORKER_TM
void FlowWorkerReplaceDetectCtx(void *flow_worker, void *detect_ctx)
uint32_t StringHashDjb2(const uint8_t *data, uint32_t datalen)
int DetectEngineBufferTypeGetByIdTransforms(DetectEngineCtx *de_ctx, const int id, TransformData *transforms, int transform_cnt)
uint32_t(* TenantGetId)(const void *, const Packet *p)
void SCProfilingPrefilterThreadSetup(SCProfilePrefilterDetectCtx *ctx, DetectEngineThreadCtx *det_ctx)
void SCClassConfDeInitContext(DetectEngineCtx *de_ctx)
Releases resources used by the Classification Config API.
void PrefilterPktNonPFStatsDump(void)
#define SIG_FLAG_REQUIRE_PACKET