suricata
runmodes.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2022 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 /** \file
19  *
20  * \author Victor Julien <victor@inliniac.net>
21  */
22 
23 #ifndef SURICATA_RUNMODES_H
24 #define SURICATA_RUNMODES_H
25 
26 /* Run mode */
27 enum RunModes {
44  RUNMODE_USER_MAX, /* Last standard running mode */
55 #ifdef OS_WIN32
56  RUNMODE_INSTALL_SERVICE,
57  RUNMODE_REMOVE_SERVICE,
58  RUNMODE_CHANGE_SERVICE_PARAMS,
59 #endif
62 };
63 
64 /* Run Mode Global Thread Names */
65 extern const char *thread_name_autofp;
66 extern const char *thread_name_single;
67 extern const char *thread_name_workers;
68 extern const char *thread_name_verdict;
69 extern const char *thread_name_flow_mgr;
70 extern const char *thread_name_flow_bypass;
71 extern const char *thread_name_flow_rec;
72 extern const char *thread_name_unix_socket;
73 extern const char *thread_name_detect_loader;
74 extern const char *thread_name_counter_stats;
75 extern const char *thread_name_counter_wakeup;
76 
77 char *RunmodeGetActive(void);
78 const char *RunModeGetMainMode(void);
79 
80 void RunModeListRunmodes(void);
81 int RunModeEngineIsIPS(int capture_mode, const char *runmode, const char *capture_plugin_name);
82 void RunModeDispatch(int, const char *, const char *capture_plugin_name, const char *capture_plugin_args);
83 void RunModeRegisterRunModes(void);
84 void RunModeRegisterNewRunMode(enum RunModes, const char *, const char *, int (*RunModeFunc)(void),
85  int (*RunModeIsIPSEnabled)(void));
87 void RunModeInitializeOutputs(void);
88 void RunModeShutDown(void);
89 
90 /* bool indicating if filedata logger is enabled */
92 /** bool indicating if run mode is offline */
93 bool IsRunModeOffline(enum RunModes run_mode_to_check);
94 bool IsRunModeSystem(enum RunModes run_mode_to_check);
95 
98 
99 extern bool threading_set_cpu_affinity;
100 extern float threading_detect_ratio;
101 extern uint64_t threading_set_stack_size;
102 
103 extern int debuglog_enabled;
104 
105 #endif /* SURICATA_RUNMODES_H */
RUNMODE_AFXDP_DEV
@ RUNMODE_AFXDP_DEV
Definition: runmodes.h:37
RunModeListRunmodes
void RunModeListRunmodes(void)
Lists all registered runmodes.
Definition: runmodes.c:241
threading_set_stack_size
uint64_t threading_set_stack_size
Definition: runmodes.c:61
RunModeEnablesBypassManager
void RunModeEnablesBypassManager(void)
Definition: runmodes.c:444
RUNMODE_UNIX_SOCKET
@ RUNMODE_UNIX_SOCKET
Definition: runmodes.h:41
IsRunModeOffline
bool IsRunModeOffline(enum RunModes run_mode_to_check)
Definition: runmodes.c:540
RUNMODE_UNITTEST
@ RUNMODE_UNITTEST
Definition: runmodes.h:40
RUNMODE_DPDK
@ RUNMODE_DPDK
Definition: runmodes.h:39
RUNMODE_UNKNOWN
@ RUNMODE_UNKNOWN
Definition: runmodes.h:28
RunModeNeedsBypassManager
int RunModeNeedsBypassManager(void)
Definition: runmodes.c:449
RUNMODE_PRINT_BUILDINFO
@ RUNMODE_PRINT_BUILDINFO
Definition: runmodes.h:49
RUNMODE_LIST_RUNMODES
@ RUNMODE_LIST_RUNMODES
Definition: runmodes.h:47
RUNMODE_ERF_FILE
@ RUNMODE_ERF_FILE
Definition: runmodes.h:34
RUNMODE_NFLOG
@ RUNMODE_NFLOG
Definition: runmodes.h:32
RunModeRegisterNewRunMode
void RunModeRegisterNewRunMode(enum RunModes, const char *, const char *, int(*RunModeFunc)(void), int(*RunModeIsIPSEnabled)(void))
Registers a new runmode.
Definition: runmodes.c:465
RUNMODE_PCAP_DEV
@ RUNMODE_PCAP_DEV
Definition: runmodes.h:29
RUNMODE_LIST_KEYWORDS
@ RUNMODE_LIST_KEYWORDS
Definition: runmodes.h:45
thread_name_unix_socket
const char * thread_name_unix_socket
Definition: runmodes.c:71
RunModeGetMainMode
const char * RunModeGetMainMode(void)
Definition: runmodes.c:206
RunModeOutputFiledataEnabled
int RunModeOutputFiledataEnabled(void)
Definition: runmodes.c:522
RUNMODE_DAG
@ RUNMODE_DAG
Definition: runmodes.h:35
RUNMODE_NETMAP
@ RUNMODE_NETMAP
Definition: runmodes.h:38
RUNMODE_DUMP_FEATURES
@ RUNMODE_DUMP_FEATURES
Definition: runmodes.h:60
RUNMODE_USER_MAX
@ RUNMODE_USER_MAX
Definition: runmodes.h:44
threading_detect_ratio
float threading_detect_ratio
Definition: runmodes.c:927
RunModeShutDown
void RunModeShutDown(void)
Definition: runmodes.c:558
RunModes
RunModes
Definition: runmodes.h:27
thread_name_workers
const char * thread_name_workers
Definition: runmodes.c:66
RUNMODE_CONF_TEST
@ RUNMODE_CONF_TEST
Definition: runmodes.h:52
thread_name_flow_rec
const char * thread_name_flow_rec
Definition: runmodes.c:69
RUNMODE_PRINT_USAGE
@ RUNMODE_PRINT_USAGE
Definition: runmodes.h:50
RUNMODE_LIST_APP_LAYERS
@ RUNMODE_LIST_APP_LAYERS
Definition: runmodes.h:46
thread_name_counter_wakeup
const char * thread_name_counter_wakeup
Definition: runmodes.c:74
thread_name_autofp
const char * thread_name_autofp
Definition: runmodes.c:64
threading_set_cpu_affinity
bool threading_set_cpu_affinity
Definition: runmodes.c:60
RunmodeGetActive
char * RunmodeGetActive(void)
Definition: runmodes.c:194
RunModeInitializeOutputs
void RunModeInitializeOutputs(void)
Definition: runmodes.c:747
RUNMODE_DUMP_CONFIG
@ RUNMODE_DUMP_CONFIG
Definition: runmodes.h:51
RunModeDispatch
void RunModeDispatch(int, const char *, const char *capture_plugin_name, const char *capture_plugin_args)
Definition: runmodes.c:390
thread_name_verdict
const char * thread_name_verdict
Definition: runmodes.c:67
RunModeEngineIsIPS
int RunModeEngineIsIPS(int capture_mode, const char *runmode, const char *capture_plugin_name)
Definition: runmodes.c:360
IsRunModeSystem
bool IsRunModeSystem(enum RunModes run_mode_to_check)
Definition: runmodes.c:527
thread_name_flow_mgr
const char * thread_name_flow_mgr
Definition: runmodes.c:68
RUNMODE_NFQ
@ RUNMODE_NFQ
Definition: runmodes.h:31
RUNMODE_ENGINE_ANALYSIS
@ RUNMODE_ENGINE_ANALYSIS
Definition: runmodes.h:54
RUNMODE_PRINT_VERSION
@ RUNMODE_PRINT_VERSION
Definition: runmodes.h:48
RunModeInitializeThreadSettings
void RunModeInitializeThreadSettings(void)
Definition: runmodes.c:932
thread_name_flow_bypass
const char * thread_name_flow_bypass
Definition: runmodes.c:70
RUNMODE_WINDIVERT
@ RUNMODE_WINDIVERT
Definition: runmodes.h:42
debuglog_enabled
int debuglog_enabled
Definition: runmodes.c:59
thread_name_single
const char * thread_name_single
Definition: runmodes.c:65
RUNMODE_AFP_DEV
@ RUNMODE_AFP_DEV
Definition: runmodes.h:36
thread_name_detect_loader
const char * thread_name_detect_loader
Definition: runmodes.c:72
thread_name_counter_stats
const char * thread_name_counter_stats
Definition: runmodes.c:73
RUNMODE_PCAP_FILE
@ RUNMODE_PCAP_FILE
Definition: runmodes.h:30
RUNMODE_PLUGIN
@ RUNMODE_PLUGIN
Definition: runmodes.h:43
RunModeRegisterRunModes
void RunModeRegisterRunModes(void)
Register all runmodes in the engine.
Definition: runmodes.c:216
RUNMODE_IPFW
@ RUNMODE_IPFW
Definition: runmodes.h:33
RUNMODE_MAX
@ RUNMODE_MAX
Definition: runmodes.h:61
RUNMODE_LIST_UNITTEST
@ RUNMODE_LIST_UNITTEST
Definition: runmodes.h:53