Go to the documentation of this file.
54 static bool fp_engine_analysis_set =
false;
64 const char *defaultpath = NULL;
68 if (sig_file == NULL) {
69 SCLogError(
"invalid sig_file argument - NULL");
78 snprintf(varname,
sizeof(varname),
"%s.default-rule-path",
82 if (default_rule_path) {
83 defaultpath = default_rule_path->
val;
113 static int DetectLoadSigFile(
117 int good = 0, bad = 0, skipped = 0;
120 int lineno = 0, multiline = 0;
126 FILE *fp = fopen(sig_file,
"r");
130 sig_file, strerror(errno));
134 while(fgets(line +
offset, (
int)
sizeof(line) -
offset, fp) != NULL) {
136 size_t len = strlen(line);
139 if (line[0] ==
'\n' || line [0] ==
'\r' || line[0] ==
' ' || line[0] ==
'#' || line[0] ==
'\t')
143 while (
len > 0 && isspace((
unsigned char)line[--
len]));
144 if (line[
len] ==
'\\') {
147 if (
offset <
sizeof(line) - 1) {
157 if (
len > 0 && (line[
len - 1] ==
'\n' || line[
len - 1] ==
'\r')) {
158 line[
len - 1] =
'\0';
170 if (fp_engine_analysis_set) {
181 SCLogError(
"error parsing signature \"%s\" from "
182 "file %s at line %" PRId32
"",
183 line, sig_file, lineno - multiline);
187 "file %s at line %" PRId32
"",
188 line, sig_file, lineno - multiline);
201 SCLogInfo(
"Skipping signature due to missing requirements: %s from file %s at line "
203 line, sig_file, lineno - multiline);
213 *skippedsigs = skipped;
224 int *good_sigs,
int *bad_sigs,
int *skipped_sigs)
228 if (pattern == NULL) {
235 r = glob(pattern, 0, NULL, &files);
237 if (r == GLOB_NOMATCH) {
238 SCLogWarning(
"No rule files match the pattern %s", pattern);
243 SCLogError(
"error expanding template %s: %s", pattern, strerror(errno));
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)
252 char *fname = pattern;
253 if (strcmp(
"/dev/null", fname) == 0)
261 r = DetectLoadSigFile(
de_ctx, fname, good_sigs, bad_sigs, skipped_sigs);
295 char varname[128] =
"rule-files";
298 int skipped_sigs = 0;
301 snprintf(varname,
sizeof(varname),
"%s.rule-files",
310 if (!(sig_file != NULL && sig_file_exclusive)) {
312 if (rule_files != NULL) {
314 SCLogWarning(
"Invalid rule-files configuration section: "
315 "expected a list of filenames.");
320 good_sigs = bad_sigs = skipped_sigs = 0;
321 ret = ProcessSigFiles(
322 de_ctx, sfile, sig_stat, &good_sigs, &bad_sigs, &skipped_sigs);
331 if (good_sigs == 0) {
340 if (sig_file != NULL) {
341 ret = ProcessSigFiles(
de_ctx, sig_file, sig_stat, &good_sigs, &bad_sigs, &skipped_sigs);
349 if (good_sigs == 0) {
358 "%d rule files specified, but no rules were loaded!", sig_stat->
total_files);
366 SCLogInfo(
"tenant id %d: %" PRId32
" rule files processed. %" PRId32
367 " rules successfully loaded, %" PRId32
" rules failed, %" PRId32
372 SCLogInfo(
"%" PRId32
" rule files processed. %" PRId32
373 " rules successfully loaded, %" PRId32
" rules failed, %" PRId32
416 static int cur_loader = 0;
417 static void TmThreadWakeupDetectLoaderThreads(
void);
424 if (loader_id == -1) {
425 loader_id = cur_loader;
427 if (cur_loader >= num_loaders)
430 if (loader_id >= num_loaders || loader_id < 0) {
448 TmThreadWakeupDetectLoaderThreads();
450 SCLogDebug(
"%d %p %p", loader_id, Func, func_ctx);
460 for (
int i = 0; i < num_loaders; i++) {
478 if (loader->
result != 0) {
485 SCLogError(
"%d loaders reported errors", errors);
494 memset(loader, 0x00,
sizeof(*loader));
502 (void)
ConfGetInt(
"multi-detect.loaders", &setting);
504 if (setting < 1 || setting > 1024) {
505 FatalError(
"invalid multi-detect.loaders setting %" PRIdMAX, setting);
508 num_loaders = (int32_t)setting;
509 SCLogInfo(
"using %d detect loader threads", num_loaders);
515 for (
int i = 0; i < num_loaders; i++) {
516 DetectLoaderInit(&loaders[i]);
523 static void TmThreadWakeupDetectLoaderThreads(
void)
526 for (
int i = 0; i <
TVT_MAX; i++) {
529 if (strncmp(
tv->
name,
"DL#",3) == 0) {
547 for (
int i = 0; i <
TVT_MAX; i++) {
550 if (strncmp(
tv->
name,
"DL#",3) == 0)
565 static TmEcode DetectLoaderThreadInit(
ThreadVars *t,
const void *initdata,
void **data)
637 for (
int i = 0; i < num_loaders; i++) {
642 if (tv_loader == NULL) {
int ConfGetInt(const char *name, intmax_t *val)
Retrieve a configuration value as an integer.
TmEcode TmThreadSpawn(ThreadVars *tv)
Spawns a thread associated with the ThreadVars instance tv.
int SCRunmodeGet(void)
Get the current run mode.
void DetectLoaderThreadSpawn(void)
spawn the detect loader manager thread
char * PathMergeAlloc(const char *const dir, const char *const fname)
#define SC_ATOMIC_INIT(name)
wrapper for initializing an atomic variable.
int SigLoadSignatures(DetectEngineCtx *de_ctx, char *sig_file, bool sig_file_exclusive)
Load signatures.
void SetupEngineAnalysis(DetectEngineCtx *de_ctx, bool *fp_analysis, bool *rule_analysis)
void TmThreadsSetFlag(ThreadVars *tv, uint32_t flag)
Set a thread flag.
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...
SC_ATOMIC_DECLARE(int, detect_loader_cnt)
struct HtpBodyChunk_ * next
ConfNode * ConfGetNode(const char *name)
Get a ConfNode by name.
void TmThreadContinueDetectLoaderThreads(void)
Unpauses all threads present in tv_root.
#define SC_ATOMIC_ADD(name, val)
add a value to our atomic variable
main detection engine ctx
#define TAILQ_EMPTY(head)
#define TAILQ_FOREACH(var, head, field)
void(* LoaderFreeFunc)(void *ctx)
void SCSigSignatureOrderingModuleCleanup(DetectEngineCtx *de_ctx)
De-registers all the signature ordering functions registered.
ThreadVars * tv_root[TVT_MAX]
int(* LoaderFunc)(void *ctx, int loader_id)
#define TAILQ_INSERT_TAIL(head, elm, field)
void DetectParseDupSigHashFree(DetectEngineCtx *de_ctx)
Frees the hash table that is used to cull duplicate sigs.
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
int SCThresholdConfInitContext(DetectEngineCtx *de_ctx)
Inits the context to be used by the Threshold Config parsing API.
#define TM_THREAD_NAME_MAX
TmEcode(* ThreadDeinit)(ThreadVars *, void *)
void TmThreadContinue(ThreadVars *tv)
Unpauses a thread.
SCDetectRequiresStatus * requirements
#define TAILQ_REMOVE(head, elm, field)
bool rule_engine_analysis_set
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.
void DetectLoadersInit(void)
void SCSigOrderSignatures(DetectEngineCtx *de_ctx)
Orders the signatures.
#define SCMutexUnlock(mut)
struct timeval last_reload
Per thread variable structure.
TmEcode(* Management)(ThreadVars *, void *)
void SCSigRegisterSignatureOrderingFuncs(DetectEngineCtx *de_ctx)
Lets you register the Signature ordering functions. The order in which the functions are registered s...
#define SCLogWarning(...)
Macro used to log WARNING messages.
void EngineAnalysisRules(const DetectEngineCtx *de_ctx, const Signature *s, const char *line)
Prints analysis of loaded rules.
struct ThreadVars_ * next
const char * thread_name_detect_loader
void TmModuleDetectLoaderRegister(void)
#define SCCtrlMutexLock(mut)
TmModule tmm_modules[TMM_SIZE]
struct DetectLoaderThreadData_ DetectLoaderThreadData
#define DETECT_MAX_RULE_SIZE
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
#define TAILQ_FOREACH_SAFE(var, head, field, tvar)
void EngineAnalysisRulesFailure(const DetectEngineCtx *de_ctx, char *line, char *file, int lineno)
#define SCMutexInit(mut, mutattrs)
int DetectLoaderQueueTask(int loader_id, LoaderFunc Func, void *func_ctx, LoaderFreeFunc FreeFunc)
int SigGroupBuild(DetectEngineCtx *de_ctx)
Convert the signature list into the runtime match structure.
#define SCCtrlMutexUnlock(mut)
SigFileLoaderStat sig_stat
void EngineAnalysisFP(const DetectEngineCtx *de_ctx, const Signature *s, char *line)
bool TmThreadsWaitForUnpause(ThreadVars *tv)
Wait for a thread to become unpaused.
void CleanupEngineAnalysis(DetectEngineCtx *de_ctx)
int ConfNodeIsSequence(const ConfNode *node)
Check if a node is a sequence or node.
TmEcode(* ThreadInit)(ThreadVars *, const void *, void **)
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...
struct SCLogConfig_ SCLogConfig
Holds the config state used by the logging api.
@ RUNMODE_ENGINE_ANALYSIS
#define SCLogError(...)
Macro used to log ERROR messages.
int PathIsRelative(const char *path)
Check if a path is relative.
int DetectLoadersSync(void)
wait for loader tasks to complete
char * DetectLoadCompleteSigPath(const DetectEngineCtx *de_ctx, const char *sig_file)
Create the path if default-rule-path was specified.
int TmThreadsCheckFlag(ThreadVars *tv, uint32_t flag)
Check if a thread flag is set.
Signature loader statistics.
#define TM_FLAG_MANAGEMENT_TM