suricata
detect-engine-loader.c
Go to the documentation of this file.
1 /* Copyright (C) 2021-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 #include "suricata-common.h"
25 #include "suricata.h"
26 #include "conf.h"
27 #include "detect.h"
28 #include "detect-parse.h"
29 
30 #include "runmodes.h"
31 #include "threads.h"
32 #include "threadvars.h"
33 #include "tm-threads.h"
34 #include "queue.h"
35 
36 #include "detect-engine-loader.h"
37 #include "detect-engine-build.h"
38 #include "detect-engine-analyzer.h"
39 #include "detect-engine-mpm.h"
40 #include "detect-engine-sigorder.h"
41 
42 #include "util-detect.h"
43 #include "util-threshold-config.h"
44 #include "util-path.h"
45 
46 #include "rust.h"
47 
48 #ifdef HAVE_GLOB_H
49 #include <glob.h>
50 #endif
51 
52 extern int rule_reload;
53 extern int engine_analysis;
54 static bool fp_engine_analysis_set = false;
56 
57 /**
58  * \brief Create the path if default-rule-path was specified
59  * \param sig_file The name of the file
60  * \retval str Pointer to the string path + sig_file
61  */
62 char *DetectLoadCompleteSigPath(const DetectEngineCtx *de_ctx, const char *sig_file)
63 {
64  const char *defaultpath = NULL;
65  char *path = NULL;
66  char varname[128];
67 
68  if (sig_file == NULL) {
69  SCLogError("invalid sig_file argument - NULL");
70  return NULL;
71  }
72 
73  /* If we have a configuration prefix, only use it if the primary configuration node
74  * is not marked as final, as that means it was provided on the command line with
75  * a --set. */
76  ConfNode *default_rule_path = ConfGetNode("default-rule-path");
77  if ((!default_rule_path || !default_rule_path->final) && strlen(de_ctx->config_prefix) > 0) {
78  snprintf(varname, sizeof(varname), "%s.default-rule-path",
80  default_rule_path = ConfGetNode(varname);
81  }
82  if (default_rule_path) {
83  defaultpath = default_rule_path->val;
84  }
85 
86  /* Path not specified */
87  if (PathIsRelative(sig_file)) {
88  if (defaultpath) {
89  path = PathMergeAlloc(defaultpath, sig_file);
90  if (unlikely(path == NULL))
91  return NULL;
92  } else {
93  path = SCStrdup(sig_file);
94  if (unlikely(path == NULL))
95  return NULL;
96  }
97  } else {
98  path = SCStrdup(sig_file);
99  if (unlikely(path == NULL))
100  return NULL;
101  }
102  return path;
103 }
104 
105 /**
106  * \brief Load a file with signatures
107  * \param de_ctx Pointer to the detection engine context
108  * \param sig_file Filename to load signatures from
109  * \param goodsigs_tot Will store number of valid signatures in the file
110  * \param badsigs_tot Will store number of invalid signatures in the file
111  * \retval 0 on success, -1 on error
112  */
113 static int DetectLoadSigFile(
114  DetectEngineCtx *de_ctx, char *sig_file, int *goodsigs, int *badsigs, int *skippedsigs)
115 {
116  Signature *sig = NULL;
117  int good = 0, bad = 0, skipped = 0;
118  char line[DETECT_MAX_RULE_SIZE] = "";
119  size_t offset = 0;
120  int lineno = 0, multiline = 0;
121 
122  (*goodsigs) = 0;
123  (*badsigs) = 0;
124  (*skippedsigs) = 0;
125 
126  FILE *fp = fopen(sig_file, "r");
127  if (fp == NULL) {
128  SCLogError("opening rule file %s:"
129  " %s.",
130  sig_file, strerror(errno));
131  return -1;
132  }
133 
134  while(fgets(line + offset, (int)sizeof(line) - offset, fp) != NULL) {
135  lineno++;
136  size_t len = strlen(line);
137 
138  /* ignore comments and empty lines */
139  if (line[0] == '\n' || line [0] == '\r' || line[0] == ' ' || line[0] == '#' || line[0] == '\t')
140  continue;
141 
142  /* Check for multiline rules. */
143  while (len > 0 && isspace((unsigned char)line[--len]));
144  if (line[len] == '\\') {
145  multiline++;
146  offset = len;
147  if (offset < sizeof(line) - 1) {
148  /* We have room for more. */
149  continue;
150  }
151  /* No more room in line buffer, continue, rule will fail
152  * to parse. */
153  }
154 
155  /* Check if we have a trailing newline, and remove it */
156  len = strlen(line);
157  if (len > 0 && (line[len - 1] == '\n' || line[len - 1] == '\r')) {
158  line[len - 1] = '\0';
159  }
160 
161  /* Reset offset. */
162  offset = 0;
163 
164  de_ctx->rule_file = sig_file;
165  de_ctx->rule_line = lineno - multiline;
166 
167  sig = DetectEngineAppendSig(de_ctx, line);
168  if (sig != NULL) {
169  if (rule_engine_analysis_set || fp_engine_analysis_set) {
170  if (fp_engine_analysis_set) {
171  EngineAnalysisFP(de_ctx, sig, line);
172  }
174  EngineAnalysisRules(de_ctx, sig, line);
175  }
176  }
177  SCLogDebug("signature %"PRIu32" loaded", sig->id);
178  good++;
179  } else {
180  if (!de_ctx->sigerror_silent) {
181  SCLogError("error parsing signature \"%s\" from "
182  "file %s at line %" PRId32 "",
183  line, sig_file, lineno - multiline);
184 
185  if (!SigStringAppend(&de_ctx->sig_stat, sig_file, line, de_ctx->sigerror, (lineno - multiline))) {
186  SCLogError("Error adding sig \"%s\" from "
187  "file %s at line %" PRId32 "",
188  line, sig_file, lineno - multiline);
189  }
190  if (de_ctx->sigerror) {
191  de_ctx->sigerror = NULL;
192  }
193  }
195  EngineAnalysisRulesFailure(de_ctx, line, sig_file, lineno - multiline);
196  }
197  if (!de_ctx->sigerror_ok) {
198  bad++;
199  }
200  if (de_ctx->sigerror_requires) {
201  SCLogInfo("Skipping signature due to missing requirements: %s from file %s at line "
202  "%" PRId32,
203  line, sig_file, lineno - multiline);
204  skipped++;
205  }
206  }
207  multiline = 0;
208  }
209  fclose(fp);
210 
211  *goodsigs = good;
212  *badsigs = bad;
213  *skippedsigs = skipped;
214  return 0;
215 }
216 
217 /**
218  * \brief Expands wildcards and reads signatures from each matching file
219  * \param de_ctx Pointer to the detection engine context
220  * \param sig_file Filename (or pattern) holding signatures
221  * \retval -1 on error
222  */
223 static int ProcessSigFiles(DetectEngineCtx *de_ctx, char *pattern, SigFileLoaderStat *st,
224  int *good_sigs, int *bad_sigs, int *skipped_sigs)
225 {
226  int r = 0;
227 
228  if (pattern == NULL) {
229  SCLogError("opening rule file null");
230  return -1;
231  }
232 
233 #ifdef HAVE_GLOB_H
234  glob_t files;
235  r = glob(pattern, 0, NULL, &files);
236 
237  if (r == GLOB_NOMATCH) {
238  SCLogWarning("No rule files match the pattern %s", pattern);
239  ++(st->bad_files);
240  ++(st->total_files);
241  return -1;
242  } else if (r != 0) {
243  SCLogError("error expanding template %s: %s", pattern, strerror(errno));
244  return -1;
245  }
246 
247  for (size_t i = 0; i < (size_t)files.gl_pathc; i++) {
248  char *fname = files.gl_pathv[i];
249  if (strcmp("/dev/null", fname) == 0)
250  continue;
251 #else
252  char *fname = pattern;
253  if (strcmp("/dev/null", fname) == 0)
254  return 0;
255 #endif
256  if (strlen(de_ctx->config_prefix) > 0) {
257  SCLogConfig("tenant id %d: Loading rule file: %s", de_ctx->tenant_id, fname);
258  } else {
259  SCLogConfig("Loading rule file: %s", fname);
260  }
261  r = DetectLoadSigFile(de_ctx, fname, good_sigs, bad_sigs, skipped_sigs);
262  if (r < 0) {
263  ++(st->bad_files);
264  }
265 
266  ++(st->total_files);
267 
268  st->good_sigs_total += *good_sigs;
269  st->bad_sigs_total += *bad_sigs;
270  st->skipped_sigs_total += *skipped_sigs;
271 
272 #ifdef HAVE_GLOB_H
273  }
274  globfree(&files);
275 #endif
276  return r;
277 }
278 
279 /**
280  * \brief Load signatures
281  * \param de_ctx Pointer to the detection engine context
282  * \param sig_file Filename (or pattern) holding signatures
283  * \param sig_file_exclusive File passed in 'sig_file' should be loaded exclusively.
284  * \retval -1 on error
285  */
286 int SigLoadSignatures(DetectEngineCtx *de_ctx, char *sig_file, bool sig_file_exclusive)
287 {
288  SCEnter();
289 
290  ConfNode *rule_files;
291  ConfNode *file = NULL;
292  SigFileLoaderStat *sig_stat = &de_ctx->sig_stat;
293  int ret = 0;
294  char *sfile = NULL;
295  char varname[128] = "rule-files";
296  int good_sigs = 0;
297  int bad_sigs = 0;
298  int skipped_sigs = 0;
299 
300  if (strlen(de_ctx->config_prefix) > 0) {
301  snprintf(varname, sizeof(varname), "%s.rule-files",
303  }
304 
306  SetupEngineAnalysis(de_ctx, &fp_engine_analysis_set, &rule_engine_analysis_set);
307  }
308 
309  /* ok, let's load signature files from the general config */
310  if (!(sig_file != NULL && sig_file_exclusive)) {
311  rule_files = ConfGetNode(varname);
312  if (rule_files != NULL) {
313  if (!ConfNodeIsSequence(rule_files)) {
314  SCLogWarning("Invalid rule-files configuration section: "
315  "expected a list of filenames.");
316  }
317  else {
318  TAILQ_FOREACH(file, &rule_files->head, next) {
319  sfile = DetectLoadCompleteSigPath(de_ctx, file->val);
320  good_sigs = bad_sigs = skipped_sigs = 0;
321  ret = ProcessSigFiles(
322  de_ctx, sfile, sig_stat, &good_sigs, &bad_sigs, &skipped_sigs);
323  SCFree(sfile);
324 
325  if (de_ctx->failure_fatal && ret != 0) {
326  /* Some rules failed to load, just exit as
327  * errors would have already been logged. */
328  exit(EXIT_FAILURE);
329  }
330 
331  if (good_sigs == 0) {
332  SCLogConfig("No rules loaded from %s.", file->val);
333  }
334  }
335  }
336  }
337  }
338 
339  /* If a Signature file is specified from command-line, parse it too */
340  if (sig_file != NULL) {
341  ret = ProcessSigFiles(de_ctx, sig_file, sig_stat, &good_sigs, &bad_sigs, &skipped_sigs);
342 
343  if (ret != 0) {
344  if (de_ctx->failure_fatal) {
345  exit(EXIT_FAILURE);
346  }
347  }
348 
349  if (good_sigs == 0) {
350  SCLogConfig("No rules loaded from %s", sig_file);
351  }
352  }
353 
354  /* now we should have signatures to work with */
355  if (sig_stat->good_sigs_total <= 0) {
356  if (sig_stat->total_files > 0) {
357  SCLogWarning(
358  "%d rule files specified, but no rules were loaded!", sig_stat->total_files);
359  } else {
360  SCLogInfo("No signatures supplied.");
361  goto end;
362  }
363  } else {
364  /* we report the total of files and rules successfully loaded and failed */
365  if (strlen(de_ctx->config_prefix) > 0) {
366  SCLogInfo("tenant id %d: %" PRId32 " rule files processed. %" PRId32
367  " rules successfully loaded, %" PRId32 " rules failed, %" PRId32
368  " rules skipped",
369  de_ctx->tenant_id, sig_stat->total_files, sig_stat->good_sigs_total,
370  sig_stat->bad_sigs_total, sig_stat->skipped_sigs_total);
371  } else {
372  SCLogInfo("%" PRId32 " rule files processed. %" PRId32
373  " rules successfully loaded, %" PRId32 " rules failed, %" PRId32
374  " rules skipped",
375  sig_stat->total_files, sig_stat->good_sigs_total, sig_stat->bad_sigs_total,
376  sig_stat->skipped_sigs_total);
377  }
378  if (de_ctx->requirements != NULL && sig_stat->skipped_sigs_total > 0) {
379  SCDetectRequiresStatusLog(de_ctx->requirements, PROG_VER,
380  strlen(de_ctx->config_prefix) > 0 ? de_ctx->tenant_id : 0);
381  }
382  }
383 
384  if ((sig_stat->bad_sigs_total || sig_stat->bad_files) && de_ctx->failure_fatal) {
385  ret = -1;
386  goto end;
387  }
388 
392 
394  ret = -1;
395  goto end;
396  }
397 
398  /* Setup the signature group lookup structure and pattern matchers */
399  if (SigGroupBuild(de_ctx) < 0)
400  goto end;
401 
402  ret = 0;
403 
404  end:
405  gettimeofday(&de_ctx->last_reload, NULL);
408  }
409 
411  SCReturnInt(ret);
412 }
413 
414 #define NLOADERS 4
415 static DetectLoaderControl *loaders = NULL;
416 static int cur_loader = 0;
417 static void TmThreadWakeupDetectLoaderThreads(void);
418 static int num_loaders = NLOADERS;
419 
420 /** \param loader -1 for auto select
421  * \retval loader_id or negative in case of error */
422 int DetectLoaderQueueTask(int loader_id, LoaderFunc Func, void *func_ctx, LoaderFreeFunc FreeFunc)
423 {
424  if (loader_id == -1) {
425  loader_id = cur_loader;
426  cur_loader++;
427  if (cur_loader >= num_loaders)
428  cur_loader = 0;
429  }
430  if (loader_id >= num_loaders || loader_id < 0) {
431  return -ERANGE;
432  }
433 
434  DetectLoaderControl *loader = &loaders[loader_id];
435 
436  DetectLoaderTask *t = SCCalloc(1, sizeof(*t));
437  if (t == NULL)
438  return -ENOMEM;
439 
440  t->Func = Func;
441  t->ctx = func_ctx;
442  t->FreeFunc = FreeFunc;
443 
444  SCMutexLock(&loader->m);
445  TAILQ_INSERT_TAIL(&loader->task_list, t, next);
446  SCMutexUnlock(&loader->m);
447 
448  TmThreadWakeupDetectLoaderThreads();
449 
450  SCLogDebug("%d %p %p", loader_id, Func, func_ctx);
451  return loader_id;
452 }
453 
454 /** \brief wait for loader tasks to complete
455  * \retval result 0 for ok, -1 for errors */
457 {
458  SCLogDebug("waiting");
459  int errors = 0;
460  for (int i = 0; i < num_loaders; i++) {
461  bool done = false;
462 
463  DetectLoaderControl *loader = &loaders[i];
464  while (!done) {
465  SCMutexLock(&loader->m);
466  if (TAILQ_EMPTY(&loader->task_list)) {
467  done = true;
468  }
469  SCMutexUnlock(&loader->m);
470  if (!done) {
471  /* nudge thread in case it's sleeping */
472  SCCtrlMutexLock(loader->tv->ctrl_mutex);
473  pthread_cond_broadcast(loader->tv->ctrl_cond);
474  SCCtrlMutexUnlock(loader->tv->ctrl_mutex);
475  }
476  }
477  SCMutexLock(&loader->m);
478  if (loader->result != 0) {
479  errors++;
480  loader->result = 0;
481  }
482  SCMutexUnlock(&loader->m);
483  }
484  if (errors) {
485  SCLogError("%d loaders reported errors", errors);
486  return -1;
487  }
488  SCLogDebug("done");
489  return 0;
490 }
491 
492 static void DetectLoaderInit(DetectLoaderControl *loader)
493 {
494  memset(loader, 0x00, sizeof(*loader));
495  SCMutexInit(&loader->m, NULL);
496  TAILQ_INIT(&loader->task_list);
497 }
498 
500 {
501  intmax_t setting = NLOADERS;
502  (void)ConfGetInt("multi-detect.loaders", &setting);
503 
504  if (setting < 1 || setting > 1024) {
505  FatalError("invalid multi-detect.loaders setting %" PRIdMAX, setting);
506  }
507 
508  num_loaders = (int32_t)setting;
509  SCLogInfo("using %d detect loader threads", num_loaders);
510 
511  BUG_ON(loaders != NULL);
512  loaders = SCCalloc(num_loaders, sizeof(DetectLoaderControl));
513  BUG_ON(loaders == NULL);
514 
515  for (int i = 0; i < num_loaders; i++) {
516  DetectLoaderInit(&loaders[i]);
517  }
518 }
519 
520 /**
521  * \brief Unpauses all threads present in tv_root
522  */
523 static void TmThreadWakeupDetectLoaderThreads(void)
524 {
526  for (int i = 0; i < TVT_MAX; i++) {
527  ThreadVars *tv = tv_root[i];
528  while (tv != NULL) {
529  if (strncmp(tv->name,"DL#",3) == 0) {
530  BUG_ON(tv->ctrl_cond == NULL);
532  pthread_cond_broadcast(tv->ctrl_cond);
534  }
535  tv = tv->next;
536  }
537  }
539 }
540 
541 /**
542  * \brief Unpauses all threads present in tv_root
543  */
545 {
547  for (int i = 0; i < TVT_MAX; i++) {
548  ThreadVars *tv = tv_root[i];
549  while (tv != NULL) {
550  if (strncmp(tv->name,"DL#",3) == 0)
552 
553  tv = tv->next;
554  }
555  }
557 }
558 
559 SC_ATOMIC_DECLARE(int, detect_loader_cnt);
560 
561 typedef struct DetectLoaderThreadData_ {
562  uint32_t instance;
564 
565 static TmEcode DetectLoaderThreadInit(ThreadVars *t, const void *initdata, void **data)
566 {
568  if (ftd == NULL)
569  return TM_ECODE_FAILED;
570 
571  ftd->instance = SC_ATOMIC_ADD(detect_loader_cnt, 1); /* id's start at 0 */
572  SCLogDebug("detect loader instance %u", ftd->instance);
573 
574  /* pass thread data back to caller */
575  *data = ftd;
576 
577  DetectLoaderControl *loader = &loaders[ftd->instance];
578  loader->tv = t;
579 
580  return TM_ECODE_OK;
581 }
582 
583 static TmEcode DetectLoaderThreadDeinit(ThreadVars *t, void *data)
584 {
585  SCFree(data);
586  return TM_ECODE_OK;
587 }
588 
589 
590 static TmEcode DetectLoader(ThreadVars *th_v, void *thread_data)
591 {
592  DetectLoaderThreadData *ftd = (DetectLoaderThreadData *)thread_data;
593  BUG_ON(ftd == NULL);
594 
596  SCLogDebug("loader thread started");
597  bool run = TmThreadsWaitForUnpause(th_v);
598  while (run) {
599  /* see if we have tasks */
600 
601  DetectLoaderControl *loader = &loaders[ftd->instance];
602  SCMutexLock(&loader->m);
603 
604  DetectLoaderTask *task = NULL, *tmptask = NULL;
605  TAILQ_FOREACH_SAFE(task, &loader->task_list, next, tmptask) {
606  int r = task->Func(task->ctx, ftd->instance);
607  loader->result |= r;
608  TAILQ_REMOVE(&loader->task_list, task, next);
609  task->FreeFunc(task->ctx);
610  SCFree(task);
611  }
612 
613  SCMutexUnlock(&loader->m);
614 
615  if (TmThreadsCheckFlag(th_v, THV_KILL)) {
616  break;
617  }
618 
619  /* just wait until someone wakes us up */
621  SCCtrlCondWait(th_v->ctrl_cond, th_v->ctrl_mutex);
623 
624  SCLogDebug("woke up...");
625  }
626 
630 
631  return TM_ECODE_OK;
632 }
633 
634 /** \brief spawn the detect loader manager thread */
636 {
637  for (int i = 0; i < num_loaders; i++) {
638  char name[TM_THREAD_NAME_MAX];
639  snprintf(name, sizeof(name), "%s#%02d", thread_name_detect_loader, i+1);
640 
641  ThreadVars *tv_loader = TmThreadCreateCmdThreadByName(name, "DetectLoader", 1);
642  if (tv_loader == NULL) {
643  FatalError("failed to create thread %s", name);
644  }
645  if (TmThreadSpawn(tv_loader) != TM_ECODE_OK) {
646  FatalError("failed to create spawn %s", name);
647  }
648  }
649 }
650 
652 {
653  tmm_modules[TMM_DETECTLOADER].name = "DetectLoader";
654  tmm_modules[TMM_DETECTLOADER].ThreadInit = DetectLoaderThreadInit;
655  tmm_modules[TMM_DETECTLOADER].ThreadDeinit = DetectLoaderThreadDeinit;
656  tmm_modules[TMM_DETECTLOADER].Management = DetectLoader;
659  SCLogDebug("%s registered", tmm_modules[TMM_DETECTLOADER].name);
660 
661  SC_ATOMIC_INIT(detect_loader_cnt);
662 }
DetectLoaderTask_::FreeFunc
LoaderFreeFunc FreeFunc
Definition: detect-engine-loader.h:40
TmModule_::cap_flags
uint8_t cap_flags
Definition: tm-modules.h:73
DetectLoaderControl_
Definition: detect-engine-loader.h:44
SigFileLoaderStat_::bad_files
int bad_files
Definition: detect.h:812
tm-threads.h
ConfGetInt
int ConfGetInt(const char *name, intmax_t *val)
Retrieve a configuration value as an integer.
Definition: conf.c:399
SCCtrlCondWait
#define SCCtrlCondWait
Definition: threads-debug.h:386
len
uint8_t len
Definition: app-layer-dnp3.h:2
TmThreadSpawn
TmEcode TmThreadSpawn(ThreadVars *tv)
Spawns a thread associated with the ThreadVars instance tv.
Definition: tm-threads.c:1663
SCRunmodeGet
int SCRunmodeGet(void)
Get the current run mode.
Definition: suricata.c:264
DetectLoaderThreadSpawn
void DetectLoaderThreadSpawn(void)
spawn the detect loader manager thread
Definition: detect-engine-loader.c:635
offset
uint64_t offset
Definition: util-streaming-buffer.h:0
ThreadVars_::name
char name[16]
Definition: threadvars.h:65
PathMergeAlloc
char * PathMergeAlloc(const char *const dir, const char *const fname)
Definition: util-path.c:107
TAILQ_INIT
#define TAILQ_INIT(head)
Definition: queue.h:262
SC_ATOMIC_INIT
#define SC_ATOMIC_INIT(name)
wrapper for initializing an atomic variable.
Definition: util-atomic.h:314
ConfNode_::val
char * val
Definition: conf.h:34
SigLoadSignatures
int SigLoadSignatures(DetectEngineCtx *de_ctx, char *sig_file, bool sig_file_exclusive)
Load signatures.
Definition: detect-engine-loader.c:286
DetectEngineCtx_::rule_file
char * rule_file
Definition: detect.h:949
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
SetupEngineAnalysis
void SetupEngineAnalysis(DetectEngineCtx *de_ctx, bool *fp_analysis, bool *rule_analysis)
Definition: detect-engine-analyzer.c:475
DetectLoaderTask_::ctx
void * ctx
Definition: detect-engine-loader.h:39
DetectEngineCtx_::sigerror_silent
bool sigerror_silent
Definition: detect.h:951
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
TmThreadsSetFlag
void TmThreadsSetFlag(ThreadVars *tv, uint32_t flag)
Set a thread flag.
Definition: tm-threads.c:101
TmThreadWaitForFlag
void TmThreadWaitForFlag(ThreadVars *tv, uint32_t flags)
Waits till the specified flag(s) is(are) set. We don't bother if the kill flag has been set or not on...
Definition: tm-threads.c:1760
SC_ATOMIC_DECLARE
SC_ATOMIC_DECLARE(int, detect_loader_cnt)
next
struct HtpBodyChunk_ * next
Definition: app-layer-htp.h:0
THV_DEINIT
#define THV_DEINIT
Definition: threadvars.h:45
ConfGetNode
ConfNode * ConfGetNode(const char *name)
Get a ConfNode by name.
Definition: conf.c:181
threads.h
TmThreadContinueDetectLoaderThreads
void TmThreadContinueDetectLoaderThreads(void)
Unpauses all threads present in tv_root.
Definition: detect-engine-loader.c:544
SC_ATOMIC_ADD
#define SC_ATOMIC_ADD(name, val)
add a value to our atomic variable
Definition: util-atomic.h:332
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:854
THV_RUNNING
#define THV_RUNNING
Definition: threadvars.h:55
TAILQ_EMPTY
#define TAILQ_EMPTY(head)
Definition: queue.h:248
TAILQ_FOREACH
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:252
LoaderFreeFunc
void(* LoaderFreeFunc)(void *ctx)
Definition: detect-engine-loader.h:35
SCSigSignatureOrderingModuleCleanup
void SCSigSignatureOrderingModuleCleanup(DetectEngineCtx *de_ctx)
De-registers all the signature ordering functions registered.
Definition: detect-engine-sigorder.c:852
SCMutexLock
#define SCMutexLock(mut)
Definition: threads-debug.h:117
rust.h
tv_root
ThreadVars * tv_root[TVT_MAX]
Definition: tm-threads.c:82
LoaderFunc
int(* LoaderFunc)(void *ctx, int loader_id)
Definition: detect-engine-loader.h:34
DetectEngineCtx_::sigerror_requires
bool sigerror_requires
Definition: detect.h:955
TAILQ_INSERT_TAIL
#define TAILQ_INSERT_TAIL(head, elm, field)
Definition: queue.h:294
DetectParseDupSigHashFree
void DetectParseDupSigHashFree(DetectEngineCtx *de_ctx)
Frees the hash table that is used to cull duplicate sigs.
Definition: detect-parse.c:2516
DetectEngineCtx_::sigerror_ok
bool sigerror_ok
Definition: detect.h:952
DetectLoaderControl_::result
int result
Definition: detect-engine-loader.h:51
DetectEngineAppendSig
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
Definition: detect-parse.c:2694
SCThresholdConfInitContext
int SCThresholdConfInitContext(DetectEngineCtx *de_ctx)
Inits the context to be used by the Threshold Config parsing API.
Definition: util-threshold-config.c:169
TM_ECODE_FAILED
@ TM_ECODE_FAILED
Definition: tm-threads-common.h:81
TM_THREAD_NAME_MAX
#define TM_THREAD_NAME_MAX
Definition: tm-threads.h:49
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:80
TmModule_::ThreadDeinit
TmEcode(* ThreadDeinit)(ThreadVars *, void *)
Definition: tm-modules.h:49
THV_RUNNING_DONE
#define THV_RUNNING_DONE
Definition: threadvars.h:46
SigFileLoaderStat_::skipped_sigs_total
int skipped_sigs_total
Definition: detect.h:816
NLOADERS
#define NLOADERS
Definition: detect-engine-loader.c:414
TmThreadContinue
void TmThreadContinue(ThreadVars *tv)
Unpauses a thread.
Definition: tm-threads.c:1772
DetectEngineCtx_::requirements
SCDetectRequiresStatus * requirements
Definition: detect.h:1060
TAILQ_REMOVE
#define TAILQ_REMOVE(head, elm, field)
Definition: queue.h:312
rule_engine_analysis_set
bool rule_engine_analysis_set
Definition: detect-engine-loader.c:55
SigStringAppend
int SigStringAppend(SigFileLoaderStat *sig_stats, const char *sig_file, const char *sig_str, const char *sig_error, int line)
Append a new list member to SigString list.
Definition: util-detect.c:104
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:18
DetectLoadersInit
void DetectLoadersInit(void)
Definition: detect-engine-loader.c:499
SCSigOrderSignatures
void SCSigOrderSignatures(DetectEngineCtx *de_ctx)
Orders the signatures.
Definition: detect-engine-sigorder.c:760
SCMutexUnlock
#define SCMutexUnlock(mut)
Definition: threads-debug.h:119
DetectEngineCtx_::last_reload
struct timeval last_reload
Definition: detect.h:1024
DetectEngineCtx_::failure_fatal
bool failure_fatal
Definition: detect.h:855
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
detect-engine-mpm.h
detect.h
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:58
TmModule_::Management
TmEcode(* Management)(ThreadVars *, void *)
Definition: tm-modules.h:65
THV_KILL
#define THV_KILL
Definition: threadvars.h:40
ConfNode_::final
int final
Definition: conf.h:39
SCSigRegisterSignatureOrderingFuncs
void SCSigRegisterSignatureOrderingFuncs(DetectEngineCtx *de_ctx)
Lets you register the Signature ordering functions. The order in which the functions are registered s...
Definition: detect-engine-sigorder.c:832
SCLogWarning
#define SCLogWarning(...)
Macro used to log WARNING messages.
Definition: util-debug.h:249
EngineAnalysisRules
void EngineAnalysisRules(const DetectEngineCtx *de_ctx, const Signature *s, const char *line)
Prints analysis of loaded rules.
Definition: detect-engine-analyzer.c:1491
TVT_MAX
@ TVT_MAX
Definition: tm-threads-common.h:90
rule_reload
int rule_reload
engine_analysis
int engine_analysis
ThreadVars_::next
struct ThreadVars_ * next
Definition: threadvars.h:125
DetectLoaderThreadData_::instance
uint32_t instance
Definition: detect-engine-loader.c:562
SigFileLoaderStat_::bad_sigs_total
int bad_sigs_total
Definition: detect.h:815
util-detect.h
BUG_ON
#define BUG_ON(x)
Definition: suricata-common.h:309
tv_root_lock
SCMutex tv_root_lock
Definition: tm-threads.c:85
thread_name_detect_loader
const char * thread_name_detect_loader
Definition: runmodes.c:72
TmModuleDetectLoaderRegister
void TmModuleDetectLoaderRegister(void)
Definition: detect-engine-loader.c:651
SCCtrlMutexLock
#define SCCtrlMutexLock(mut)
Definition: threads-debug.h:376
detect-engine-build.h
tmm_modules
TmModule tmm_modules[TMM_SIZE]
Definition: tm-modules.c:29
DetectLoaderThreadData
struct DetectLoaderThreadData_ DetectLoaderThreadData
ThreadVars_::ctrl_cond
SCCtrlCondT * ctrl_cond
Definition: threadvars.h:133
conf.h
DETECT_MAX_RULE_SIZE
#define DETECT_MAX_RULE_SIZE
Definition: detect.h:45
TmEcode
TmEcode
Definition: tm-threads-common.h:79
name
const char * name
Definition: tm-threads.c:2081
DetectLoaderThreadData_
Definition: detect-engine-loader.c:561
queue.h
TmModule_::name
const char * name
Definition: tm-modules.h:44
runmodes.h
SCLogInfo
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
Definition: util-debug.h:224
TAILQ_FOREACH_SAFE
#define TAILQ_FOREACH_SAFE(var, head, field, tvar)
Definition: queue.h:329
EngineAnalysisRulesFailure
void EngineAnalysisRulesFailure(const DetectEngineCtx *de_ctx, char *line, char *file, int lineno)
Definition: detect-engine-analyzer.c:623
SCMutexInit
#define SCMutexInit(mut, mutattrs)
Definition: threads-debug.h:116
DetectLoaderQueueTask
int DetectLoaderQueueTask(int loader_id, LoaderFunc Func, void *func_ctx, LoaderFreeFunc FreeFunc)
Definition: detect-engine-loader.c:422
SigGroupBuild
int SigGroupBuild(DetectEngineCtx *de_ctx)
Convert the signature list into the runtime match structure.
Definition: detect-engine-build.c:2113
DetectEngineCtx_::config_prefix
char config_prefix[64]
Definition: detect.h:976
detect-engine-analyzer.h
DetectLoaderTask_
Definition: detect-engine-loader.h:37
THV_INIT_DONE
#define THV_INIT_DONE
Definition: threadvars.h:37
SCCtrlMutexUnlock
#define SCCtrlMutexUnlock(mut)
Definition: threads-debug.h:378
DetectEngineCtx_::sig_stat
SigFileLoaderStat sig_stat
Definition: detect.h:1027
EngineAnalysisFP
void EngineAnalysisFP(const DetectEngineCtx *de_ctx, const Signature *s, char *line)
Definition: detect-engine-analyzer.c:169
suricata-common.h
TMM_DETECTLOADER
@ TMM_DETECTLOADER
Definition: tm-threads-common.h:71
util-path.h
TmThreadsWaitForUnpause
bool TmThreadsWaitForUnpause(ThreadVars *tv)
Wait for a thread to become unpaused.
Definition: tm-threads.c:364
CleanupEngineAnalysis
void CleanupEngineAnalysis(DetectEngineCtx *de_ctx)
Definition: detect-engine-analyzer.c:511
DetectLoaderControl_::m
SCMutex m
Definition: detect-engine-loader.h:50
SigFileLoaderStat_::total_files
int total_files
Definition: detect.h:813
ConfNodeIsSequence
int ConfNodeIsSequence(const ConfNode *node)
Check if a node is a sequence or node.
Definition: conf.c:911
TmModule_::ThreadInit
TmEcode(* ThreadInit)(ThreadVars *, const void *, void **)
Definition: tm-modules.h:47
SCStrdup
#define SCStrdup(s)
Definition: util-mem.h:56
FatalError
#define FatalError(...)
Definition: util-debug.h:502
TmThreadCreateCmdThreadByName
ThreadVars * TmThreadCreateCmdThreadByName(const char *name, const char *module, int mucond)
Creates and returns the TV instance for a Command thread (CMD). This function supports only custom sl...
Definition: tm-threads.c:1134
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:32
threadvars.h
detect-engine-sigorder.h
SCLogConfig
struct SCLogConfig_ SCLogConfig
Holds the config state used by the logging api.
RUNMODE_ENGINE_ANALYSIS
@ RUNMODE_ENGINE_ANALYSIS
Definition: runmodes.h:54
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
SCFree
#define SCFree(p)
Definition: util-mem.h:61
SigFileLoaderStat_::good_sigs_total
int good_sigs_total
Definition: detect.h:814
ConfNode_
Definition: conf.h:32
Signature_::id
uint32_t id
Definition: detect.h:649
PathIsRelative
int PathIsRelative(const char *path)
Check if a path is relative.
Definition: util-path.c:69
detect-parse.h
Signature_
Signature container.
Definition: detect.h:614
DetectLoadersSync
int DetectLoadersSync(void)
wait for loader tasks to complete
Definition: detect-engine-loader.c:456
suricata.h
DetectLoaderTask_::Func
LoaderFunc Func
Definition: detect-engine-loader.h:38
DetectLoadCompleteSigPath
char * DetectLoadCompleteSigPath(const DetectEngineCtx *de_ctx, const char *sig_file)
Create the path if default-rule-path was specified.
Definition: detect-engine-loader.c:62
DetectEngineCtx_::sigerror
const char * sigerror
Definition: detect.h:950
ThreadVars_::ctrl_mutex
SCCtrlMutex * ctrl_mutex
Definition: threadvars.h:132
DetectEngineCtx_::rule_line
int rule_line
Definition: detect.h:948
PROG_VER
#define PROG_VER
Definition: suricata.h:71
TmThreadsCheckFlag
int TmThreadsCheckFlag(ThreadVars *tv, uint32_t flag)
Check if a thread flag is set.
Definition: tm-threads.c:93
THV_CLOSED
#define THV_CLOSED
Definition: threadvars.h:42
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
SCReturnInt
#define SCReturnInt(x)
Definition: util-debug.h:275
DetectEngineCtx_::tenant_id
uint32_t tenant_id
Definition: detect.h:860
detect-engine-loader.h
SigFileLoaderStat_
Signature loader statistics.
Definition: detect.h:810
TmModule_::flags
uint8_t flags
Definition: tm-modules.h:76
DetectLoaderControl_::tv
ThreadVars * tv
Definition: detect-engine-loader.h:46
util-threshold-config.h
TM_FLAG_MANAGEMENT_TM
#define TM_FLAG_MANAGEMENT_TM
Definition: tm-modules.h:36