Go to the documentation of this file.
34 #ifdef HAVE_SYS_RESOURCE_H
36 #include <sys/resource.h>
145 #ifdef SYSTEMD_NOTIFY
170 #define DEFAULT_MAX_PENDING_PACKETS 1024
173 #define VERBOSE_MAX (SC_LOG_DEBUG - SC_LOG_NOTICE)
198 #ifndef AFLFUZZ_NO_RANDOM
323 #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
324 static void SignalHandlerSigint(
int sig)
328 static void SignalHandlerSigterm(
int sig)
334 #define UNW_LOCAL_ONLY
335 #include <libunwind.h>
336 static void SignalHandlerUnexpected(
int sig_num, siginfo_t *info,
void *context)
341 signal(SIGABRT, SIG_DFL);
342 signal(SIGSEGV, SIG_DFL);
344 if ((r = unw_init_local(&cursor, (unw_context_t *)(context)) != 0)) {
345 SCLogError(
"unable to obtain stack trace: unw_init_local: %s", unw_strerror(r));
354 if (unw_is_signal_frame(&cursor) == 0) {
357 if (unw_get_proc_name(&cursor,
name,
sizeof(
name), &off) == UNW_ENOMEM) {
366 r = unw_step(&cursor);
376 kill(getpid(), sig_num);
378 #undef UNW_LOCAL_ONLY
388 static void SignalHandlerSigusr2(
int sig)
398 static void SignalHandlerSigHup(
int sig)
451 #ifdef HAVE_AF_PACKET
459 #ifdef BUILD_HYPERSCAN
480 static void OnNotifyRunning(
void)
482 #ifdef SYSTEMD_NOTIFY
508 static int SetBpfString(
int argc,
char *argv[])
510 char *bpf_filter = NULL;
511 uint32_t bpf_len = 0;
516 while(argv[tmpindex] != NULL) {
517 bpf_len+=strlen(argv[tmpindex]) + 1;
529 while(argv[tmpindex] != NULL) {
530 strlcat(bpf_filter, argv[tmpindex],bpf_len);
531 if(argv[tmpindex + 1] != NULL) {
532 strlcat(bpf_filter,
" ", bpf_len);
537 if(strlen(bpf_filter) > 0) {
549 static void SetBpfStringFromFile(
char *filename)
551 char *bpf_filter = NULL;
552 char *bpf_comment_tmp = NULL;
553 char *bpf_comment_start = NULL;
559 fp = fopen(filename,
"r");
561 SCLogError(
"Failed to open file %s", filename);
566 SCLogError(
"Failed to stat file %s", filename);
570 bpf_len = ((size_t)(st.st_size)) + 1;
574 SCLogError(
"Failed to allocate buffer for bpf filter in file %s", filename);
578 nm = fread(bpf_filter, 1, bpf_len - 1, fp);
579 if ((ferror(fp) != 0) || (nm != (bpf_len - 1))) {
580 SCLogError(
"Failed to read complete BPF file %s", filename);
587 bpf_filter[nm] =
'\0';
589 if(strlen(bpf_filter) > 0) {
591 bpf_comment_start = bpf_filter;
592 while((bpf_comment_tmp = strchr(bpf_comment_start,
'#')) != NULL) {
593 while((*bpf_comment_tmp !=
'\0') &&
594 (*bpf_comment_tmp !=
'\r') && (*bpf_comment_tmp !=
'\n'))
596 *bpf_comment_tmp++ =
' ';
598 bpf_comment_start = bpf_comment_tmp;
601 while((bpf_comment_tmp = strchr(bpf_filter,
'\r')) != NULL) {
602 *bpf_comment_tmp =
' ';
604 while((bpf_comment_tmp = strchr(bpf_filter,
'\n')) != NULL) {
605 *bpf_comment_tmp =
' ';
608 while (strlen(bpf_filter) > 0 &&
609 bpf_filter[strlen(bpf_filter)-1] ==
' ')
611 bpf_filter[strlen(bpf_filter)-1] =
'\0';
613 if (strlen(bpf_filter) > 0) {
623 static void PrintUsage(
const char *progname)
630 printf(
"USAGE: %s [OPTIONS] [BPF FILTER]\n\n", progname);
632 printf(
"\n General:\n");
633 printf(
"\t-v : be more verbose (use multiple times to "
634 "increase verbosity)\n");
635 printf(
"\t-c <path> : path to configuration file\n");
636 printf(
"\t-l <dir> : default log directory\n");
637 printf(
"\t--include <path> : additional configuration file\n");
638 printf(
"\t--set name=value : set a configuration value\n");
639 printf(
"\t--pidfile <file> : write pid to this file\n");
640 printf(
"\t-T : test configuration file (use with -c)\n");
641 printf(
"\t--init-errors-fatal : enable fatal failure on signature init "
644 printf(
"\t-D : run as daemon\n");
646 printf(
"\t--service-install : install as service\n");
647 printf(
"\t--service-remove : remove service\n");
648 printf(
"\t--service-change-params : change service startup parameters\n");
650 #ifdef HAVE_LIBCAP_NG
651 printf(
"\t--user <user> : run suricata as this user after init\n");
652 printf(
"\t--group <group> : run suricata as this group after init\n");
654 #ifdef BUILD_UNIX_SOCKET
655 printf(
"\t--unix-socket[=<file>] : use unix socket to control suricata work\n");
657 printf(
"\t--runmode <runmode_id> : specific runmode modification the engine should run. The argument\n"
658 "\t supplied should be the id for the runmode obtained by running\n"
659 "\t --list-runmodes\n");
660 printf(
"\t--plugin <path> : load plugin in addition to config\n");
662 printf(
"\n Capture and IPS:\n");
664 printf(
"\t-F <bpf filter file> : bpf filter file\n");
665 printf(
"\t-k [all|none] : force checksum check (all) or disabled it "
667 printf(
"\t-i <dev or ip> : run in pcap live mode\n");
668 printf(
"\t--pcap[=<dev>] : run in pcap mode, no value select interfaces "
669 "from suricata.yaml\n");
670 #ifdef HAVE_PCAP_SET_BUFF
671 printf(
"\t--pcap-buffer-size : size of the pcap buffer value from 0 - %i\n",INT_MAX);
674 printf(
"\t-q <qid[:qid]> : run in inline nfqueue mode (use colon to "
675 "specify a range of queues)\n");
678 printf(
"\t-d <divert port> : run in inline ipfw divert mode\n");
680 #ifdef HAVE_AF_PACKET
681 printf(
"\t--af-packet[=<dev>] : run in af-packet mode, no value select interfaces from suricata.yaml\n");
684 printf(
"\t--af-xdp[=<dev>] : run in af-xdp mode, no value select "
685 "interfaces from suricata.yaml\n");
688 printf(
"\t--netmap[=<dev>] : run in netmap mode, no value select interfaces from suricata.yaml\n");
691 printf(
"\t--pfring[=<dev>] : run in pfring mode, use interfaces from suricata.yaml\n");
692 printf(
"\t--pfring-int <dev> : run in pfring mode, use interface <dev>\n");
693 printf(
"\t--pfring-cluster-id <id> : pfring cluster id \n");
694 printf(
"\t--pfring-cluster-type <type> : pfring cluster type for PF_RING 4.1.2 and later cluster_round_robin|cluster_flow\n");
697 printf(
"\t--dpdk : run in dpdk mode, uses interfaces from "
701 printf(
"\t--dag <dagX:Y> : process ERF records from DAG interface X, stream Y\n");
704 printf(
"\t--windivert <filter> : run in inline WinDivert mode\n");
705 printf(
"\t--windivert-forward <filter> : run in inline WinDivert mode, as a gateway\n");
708 printf(
"\t--reject-dev <dev> : send reject packets from this interface\n");
711 printf(
"\n Capture Files:\n");
712 printf(
"\t-r <path> : run in pcap file/offline mode\n");
713 printf(
"\t--pcap-file-continuous : when running in pcap mode with a directory, "
714 "continue checking directory for pcaps until interrupted\n");
715 printf(
"\t--pcap-file-delete : when running in replay mode (-r with "
716 "directory or file), will delete pcap files that have been processed when done\n");
717 printf(
"\t--pcap-file-recursive : will descend into subdirectories when running "
718 "in replay mode (-r)\n");
719 printf(
"\t--pcap-file-buffer-size : set read buffer size (setvbuf)\n");
720 printf(
"\t--erf-in <path> : process an ERF file\n");
722 printf(
"\n Detection:\n");
723 printf(
"\t-s <path> : path to signature file loaded in addition to "
724 "suricata.yaml settings (optional)\n");
725 printf(
"\t-S <path> : path to signature file loaded exclusively "
727 printf(
"\t--disable-detection : disable detection engine\n");
728 printf(
"\t--engine-analysis : print reports on analysis of different "
729 "sections in the engine and exit.\n"
730 "\t Please have a look at the conf parameter "
731 "engine-analysis on what reports\n"
732 "\t can be printed\n");
734 printf(
"\n Firewall:\n");
735 printf(
"\t--firewall : enable firewall mode\n");
736 printf(
"\t--firewall-rules-exclusive=<path> : path to firewall rule file loaded "
739 printf(
"\n Info:\n");
740 printf(
"\t-V : display Suricata version\n");
741 printf(
"\t--list-keywords[=all|csv|<kword>] : list keywords implemented by the engine\n");
742 printf(
"\t--list-runmodes : list supported runmodes\n");
743 printf(
"\t--list-app-layer-protos : list supported app layer protocols\n");
744 printf(
"\t--list-rule-protos : list supported rule protocols\n");
745 printf(
"\t--list-app-layer-hooks : list supported app layer hooks for use in "
747 printf(
"\t--list-app-layer-frames : list supported app layer frames for use with "
748 "'frame' keyword\n");
749 printf(
"\t--dump-config : show the running configuration\n");
750 printf(
"\t--dump-features : display provided features\n");
751 printf(
"\t--build-info : display build information\n");
753 printf(
"\n Testing:\n");
754 printf(
"\t--simulate-ips : force engine into IPS mode. Useful for QA\n");
756 printf(
"\t-u : run the unittests and exit\n");
757 printf(
"\t-U=REGEX, --unittest-filter=REGEX : filter unittests with a pcre compatible "
759 printf(
"\t--list-unittests : list unit tests\n");
760 printf(
"\t--fatal-unittests : enable fatal failure on unittest error\n");
761 printf(
"\t--unittests-coverage : display unittest coverage report\n");
764 printf(
"\nTo run " PROG_NAME " with default configuration on "
765 "interface eth0 with signature file \"signatures.rules\", run the "
766 "command as:\n\n%s -c suricata.yaml -s signatures.rules -i eth0 \n\n",
770 static void PrintBuildInfo(
void)
775 char features[2048] =
"";
780 strlcat(features,
"DEBUG ",
sizeof(features));
782 #ifdef DEBUG_VALIDATION
783 strlcat(features,
"DEBUG_VALIDATION ",
sizeof(features));
786 strlcat(features,
"QA_SIMULATION ",
sizeof(features));
789 strlcat(features,
"UNITTESTS ",
sizeof(features));
792 strlcat(features,
"NFQ ",
sizeof(features));
795 strlcat(features,
"IPFW ",
sizeof(features));
797 #ifdef HAVE_PCAP_SET_BUFF
798 strlcat(features,
"PCAP_SET_BUFF ",
sizeof(features));
801 strlcat(features,
"PF_RING ",
sizeof(features));
804 strlcat(features,
"NAPATECH ",
sizeof(features));
806 #ifdef HAVE_AF_PACKET
807 strlcat(features,
"AF_PACKET ",
sizeof(features));
810 strlcat(features,
"NETMAP ",
sizeof(features));
812 #ifdef HAVE_PACKET_FANOUT
813 strlcat(features,
"HAVE_PACKET_FANOUT ",
sizeof(features));
816 strlcat(features,
"DAG ",
sizeof(features));
818 #ifdef HAVE_LIBCAP_NG
819 strlcat(features,
"LIBCAP_NG ",
sizeof(features));
822 strlcat(features,
"LIBNET1.1 ",
sizeof(features));
824 strlcat(features,
"HAVE_HTP_URI_NORMALIZE_HOOK ",
sizeof(features));
825 #ifdef PCRE2_HAVE_JIT
826 strlcat(features,
"PCRE_JIT ",
sizeof(features));
829 strlcat(features,
"HAVE_NSS ",
sizeof(features));
831 strlcat(features,
"HTTP2_DECOMPRESSION ",
sizeof(features));
833 strlcat(features,
"HAVE_LUA ",
sizeof(features));
835 strlcat(features,
"HAVE_JA3 ",
sizeof(features));
838 strlcat(features,
"HAVE_JA4 ",
sizeof(features));
840 strlcat(features,
"HAVE_LIBJANSSON ",
sizeof(features));
842 strlcat(features,
"PROFILING ",
sizeof(features));
844 #ifdef PROFILE_LOCKING
845 strlcat(features,
"PROFILE_LOCKING ",
sizeof(features));
847 #ifdef BUILD_UNIX_SOCKET
848 strlcat(features,
"UNIX_SOCKET ",
sizeof(features));
850 #if defined(TLS_C11) || defined(TLS_GNU)
851 strlcat(features,
"TLS ",
sizeof(features));
854 strlcat(features,
"TLS_C11 ",
sizeof(features));
855 #elif defined(TLS_GNU)
856 strlcat(features,
"TLS_GNU ",
sizeof(features));
859 strlcat(features,
"MAGIC ",
sizeof(features));
861 strlcat(features,
"RUST ",
sizeof(features));
862 #if defined(SC_ADDRESS_SANITIZER)
863 strlcat(features,
"ASAN ",
sizeof(features));
865 #if defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION)
866 strlcat(features,
"FUZZ ",
sizeof(features));
868 #if defined(HAVE_POPCNT64)
869 strlcat(features,
"POPCNT64 ",
sizeof(features));
871 if (strlen(features) == 0) {
872 strlcat(features,
"none",
sizeof(features));
875 printf(
"Features: %s\n", features);
878 memset(features, 0x00,
sizeof(features));
879 #if defined(__SSE4_2__)
880 strlcat(features,
"SSE_4_2 ",
sizeof(features));
882 #if defined(__SSE4_1__)
883 strlcat(features,
"SSE_4_1 ",
sizeof(features));
885 #if defined(__SSE3__)
886 strlcat(features,
"SSE_3 ",
sizeof(features));
888 #if defined(__SSE2__)
889 strlcat(features,
"SSE_2 ",
sizeof(features));
891 if (strlen(features) == 0) {
892 strlcat(features,
"none",
sizeof(features));
894 printf(
"SIMD support: %s\n", features);
897 memset(features, 0x00,
sizeof(features));
898 #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1)
899 strlcat(features,
"1 ",
sizeof(features));
901 #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2)
902 strlcat(features,
"2 ",
sizeof(features));
904 #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
905 strlcat(features,
"4 ",
sizeof(features));
907 #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8)
908 strlcat(features,
"8 ",
sizeof(features));
910 #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16)
911 strlcat(features,
"16 ",
sizeof(features));
913 if (strlen(features) == 0) {
914 strlcat(features,
"none",
sizeof(features));
916 strlcat(features,
"byte(s)",
sizeof(features));
918 printf(
"Atomic intrinsics: %s\n", features);
922 #elif __WORDSIZE == 32
925 bits =
"<unknown>-bits";
928 #if __BYTE_ORDER == __BIG_ENDIAN
929 endian =
"Big-endian";
930 #elif __BYTE_ORDER == __LITTLE_ENDIAN
931 endian =
"Little-endian";
933 endian =
"<unknown>-endian";
936 printf(
"%s, %s architecture\n", bits, endian);
938 printf(
"GCC version %s, C version %"PRIiMAX
"\n", __VERSION__, (intmax_t)__STDC_VERSION__);
940 printf(
"C version %"PRIiMAX
"\n", (intmax_t)__STDC_VERSION__);
944 printf(
"compiled with -fstack-protector\n");
947 printf(
"compiled with -fstack-protector-all\n");
956 #if _FORTIFY_SOURCE == 2
957 printf(
"compiled with _FORTIFY_SOURCE=2\n");
958 #elif _FORTIFY_SOURCE == 1
959 printf(
"compiled with _FORTIFY_SOURCE=1\n");
960 #elif _FORTIFY_SOURCE == 0
961 printf(
"compiled with _FORTIFY_SOURCE=0\n");
964 printf(
"L1 cache line size (CLS)=%d\n",
CLS);
967 tls =
"_Thread_local";
968 #elif defined(TLS_GNU)
971 #error "Unsupported thread local"
973 printf(
"thread local storage method: %s\n", tls);
975 printf(
"compiled with %s\n", htp_get_version());
977 #include "build-info.h"
1073 static TmEcode ParseInterfacesList(
const int runmode,
char *pcap_dev)
1079 if (strlen(pcap_dev) == 0) {
1082 SCLogError(
"No interface found in config for pcap");
1089 if (strlen(pcap_dev)) {
1091 SCLogError(
"Failed to set pfring.live-interface");
1098 char iface_selector[] =
"dpdk.interfaces";
1101 SCLogError(
"No interface found in config for %s", iface_selector);
1105 #ifdef HAVE_AF_PACKET
1108 if (strlen(pcap_dev)) {
1110 SCLogError(
"Failed to set af-packet.live-interface");
1116 SCLogError(
"No interface found in config for af-packet");
1124 if (strlen(pcap_dev)) {
1126 SCLogError(
"Failed to set af-xdp.live-interface");
1132 SCLogError(
"No interface found in config for af-xdp");
1140 if (strlen(pcap_dev)) {
1142 SCLogError(
"Failed to set netmap.live-interface");
1148 SCLogError(
"No interface found in config for netmap");
1157 SCLogError(
"No group found in config for nflog");
1166 static void SCInstanceInit(
SCInstance *suri,
const char *progname)
1168 memset(suri, 0x00,
sizeof(*suri));
1195 #if HAVE_DETECT_DISABLED==1
1205 if (strstr(prog_ver,
"RELEASE") != NULL) {
1225 if (strstr(
PROG_VER,
"-dev") == NULL) {
1236 static TmEcode PrintVersion(
void)
1244 const char *mode = suri->
system ?
"SYSTEM" :
"USER";
1245 SCLogNotice(
"This is %s version %s running in %s mode",
1256 static void SCPrintElapsedTime(
struct timeval *start_time)
1258 if (start_time == NULL)
1260 struct timeval end_time;
1261 memset(&end_time, 0,
sizeof(end_time));
1262 gettimeofday(&end_time, NULL);
1263 uint64_t milliseconds = ((end_time.tv_sec - start_time->tv_sec) * 1000) +
1264 (((1000000 + end_time.tv_usec - start_time->tv_usec) / 1000) - 1000);
1265 SCLogInfo(
"time elapsed %.3fs", (
float)milliseconds/(
float)1000);
1268 static int ParseCommandLineAfpacket(
SCInstance *suri,
const char *in_arg)
1270 #ifdef HAVE_AF_PACKET
1282 SCLogInfo(
"Multiple af-packet option without interface on each is useless");
1286 "has been specified");
1292 SCLogError(
"AF_PACKET not enabled. On Linux "
1293 "host, make sure to pass --enable-af-packet to "
1294 "configure when building.");
1299 static int ParseCommandLineAfxdp(
SCInstance *suri,
const char *in_arg)
1313 SCLogInfo(
"Multiple af-xdp options without interface on each is useless");
1317 "has been specified");
1324 "host, make sure correct libraries are installed,"
1325 " see documentation for information.");
1330 static int ParseCommandLineDpdk(
SCInstance *suri,
const char *in_arg)
1336 SCLogInfo(
"Multiple dpdk options have no effect on Suricata");
1339 "has been specified");
1346 "host, make sure to pass --enable-dpdk to "
1347 "configure when building.");
1352 static int ParseCommandLinePcapLive(
SCInstance *suri,
const char *in_arg)
1354 #if defined(OS_WIN32) && !defined(HAVE_LIBWPCAP)
1356 FatalError(
"Live capture not available. To support live capture compile against Npcap.");
1360 if (in_arg != NULL) {
1363 if (strlen(in_arg) > 9 && strncmp(in_arg,
"DeviceNPF", 9) == 0) {
1364 snprintf(suri->
pcap_dev,
sizeof(suri->
pcap_dev),
"\\Device\\NPF%s", in_arg+9);
1370 if (strcmp(suri->
pcap_dev, in_arg) != 0) {
1372 }
else if (strlen(suri->
pcap_dev) > 0 && isdigit((
unsigned char)suri->
pcap_dev[0])) {
1373 SCLogError(
"failed to find a pcap device for IP %s", in_arg);
1387 "has been specified");
1397 static bool IsLogDirectoryWritable(
const char*
str)
1399 return access(
str, W_OK) == 0;
1408 static void AddCommandLineOptionValue(
1409 const char ***values,
const char *value,
const char *description)
1411 if (*values == NULL) {
1412 *values =
SCCalloc(2,
sizeof(
char *));
1413 if (*values == NULL) {
1414 FatalError(
"Failed to allocate memory for %s: %s", description, strerror(errno));
1416 (*values)[0] = value;
1418 for (
int i = 0;; i++) {
1419 if ((*values)[i] == NULL) {
1420 const char **new_values =
SCRealloc(*values, (i + 2) *
sizeof(
char *));
1421 if (new_values == NULL) {
1423 "Failed to allocate memory for %s: %s", description, strerror(errno));
1425 *values = new_values;
1426 (*values)[i] = value;
1427 (*values)[i + 1] = NULL;
1441 int dump_config = 0;
1442 int dump_features = 0;
1443 int list_app_layer_protocols = 0;
1444 int list_rule_protocols = 0;
1445 int list_app_layer_hooks = 0;
1446 int list_app_layer_frames = 0;
1447 int list_unittests = 0;
1448 int list_runmodes = 0;
1449 int list_keywords = 0;
1454 int is_firewall = 0;
1463 struct option long_opts[] = {
1465 {
"dump-config", 0, &dump_config, 1},
1466 {
"dump-features", 0, &dump_features, 1},
1467 {
"pfring", optional_argument, 0, 0},
1468 {
"pfring-int", required_argument, 0, 0},
1469 {
"pfring-cluster-id", required_argument, 0, 0},
1470 {
"pfring-cluster-type", required_argument, 0, 0},
1474 {
"af-packet", optional_argument, 0, 0},
1475 {
"af-xdp", optional_argument, 0, 0},
1476 {
"netmap", optional_argument, 0, 0},
1477 {
"pcap", optional_argument, 0, 0},
1478 {
"pcap-file-continuous", 0, 0, 0},
1479 {
"pcap-file-delete", 0, 0, 0},
1480 {
"pcap-file-recursive", 0, 0, 0},
1481 {
"pcap-file-buffer-size", required_argument, 0, 0},
1482 {
"simulate-ips", 0, 0 , 0},
1484 {
"strict-rule-keywords", optional_argument, 0, 0},
1486 {
"plugin", required_argument, 0, 0},
1487 {
"capture-plugin", required_argument, 0, 0},
1488 {
"capture-plugin-args", required_argument, 0, 0},
1490 #ifdef BUILD_UNIX_SOCKET
1491 {
"unix-socket", optional_argument, 0, 0},
1493 {
"pcap-buffer-size", required_argument, 0, 0},
1494 {
"unittest-filter", required_argument, 0,
'U'},
1495 {
"list-app-layer-protos", 0, &list_app_layer_protocols, 1},
1496 {
"list-rule-protos", 0, &list_rule_protocols, 1},
1497 {
"list-app-layer-hooks", 0, &list_app_layer_hooks, 1},
1498 {
"list-app-layer-frames", 0, &list_app_layer_frames, 1},
1499 {
"list-unittests", 0, &list_unittests, 1},
1500 {
"list-runmodes", 0, &list_runmodes, 1},
1501 {
"list-keywords", optional_argument, &list_keywords, 1},
1502 {
"runmode", required_argument, NULL, 0},
1505 {
"service-install", 0, 0, 0},
1506 {
"service-remove", 0, 0, 0},
1507 {
"service-change-params", 0, 0, 0},
1509 {
"pidfile", required_argument, 0, 0},
1510 {
"init-errors-fatal", 0, 0, 0},
1511 {
"disable-detection", 0, 0, 0},
1512 {
"disable-hashing", 0, 0, 0},
1513 {
"fatal-unittests", 0, 0, 0},
1515 {
"user", required_argument, 0, 0},
1516 {
"group", required_argument, 0, 0},
1517 {
"erf-in", required_argument, 0, 0},
1518 {
"dag", required_argument, 0, 0},
1519 {
"build-info", 0, &build_info, 1},
1520 {
"data-dir", required_argument, 0, 0},
1522 {
"windivert", required_argument, 0, 0},
1523 {
"windivert-forward", required_argument, 0, 0},
1525 #ifdef HAVE_LIBNET11
1526 {
"reject-dev", required_argument, 0, 0},
1528 {
"set", required_argument, 0, 0},
1530 {
"nflog", optional_argument, 0, 0},
1532 {
"simulate-packet-flow-memcap", required_argument, 0, 0},
1533 {
"simulate-applayer-error-at-offset-ts", required_argument, 0, 0},
1534 {
"simulate-applayer-error-at-offset-tc", required_argument, 0, 0},
1535 {
"simulate-packet-loss", required_argument, 0, 0},
1536 {
"simulate-packet-tcp-reassembly-memcap", required_argument, 0, 0},
1537 {
"simulate-packet-tcp-ssn-memcap", required_argument, 0, 0},
1538 {
"simulate-packet-defrag-memcap", required_argument, 0, 0},
1539 {
"simulate-alert-queue-realloc-failure", 0, 0, 0},
1543 {
"firewall", 0, &is_firewall, 1 },
1544 {
"firewall-rules-exclusive", required_argument, 0, 0},
1546 {
"include", required_argument, 0, 0},
1553 int option_index = 0;
1555 char short_opts[] =
"c:TDhi:l:q:d:r:us:S:U:VF:vk:";
1557 while ((opt = getopt_long(argc, argv, short_opts, long_opts, &option_index)) != -1) {
1560 if (strcmp((long_opts[option_index]).
name,
"help") == 0) {
1563 }
else if (strcmp((long_opts[option_index]).
name,
"pfring") == 0 ||
1564 strcmp((long_opts[option_index]).
name,
"pfring-int") == 0) {
1569 if (optarg != NULL) {
1572 ((strlen(optarg) <
sizeof(suri->
pcap_dev)) ?
1573 (strlen(optarg) + 1) :
sizeof(suri->
pcap_dev)));
1578 "to pass --enable-pfring to configure when building.");
1581 }
else if (strcmp((long_opts[option_index]).
name,
"pfring-cluster-id") == 0) {
1584 SCLogError(
"failed to set pfring.cluster-id");
1589 "to pass --enable-pfring to configure when building.");
1592 }
else if (strcmp((long_opts[option_index]).
name,
"pfring-cluster-type") == 0) {
1595 SCLogError(
"failed to set pfring.cluster-type");
1600 "to pass --enable-pfring to configure when building.");
1603 }
else if (strcmp((long_opts[option_index]).
name,
"plugin") == 0) {
1605 }
else if (strcmp((long_opts[option_index]).
name,
"capture-plugin") == 0) {
1608 }
else if (strcmp((long_opts[option_index]).
name,
"capture-plugin-args") == 0) {
1610 }
else if (strcmp((long_opts[option_index]).
name,
"dpdk") == 0) {
1611 if (ParseCommandLineDpdk(suri, optarg) !=
TM_ECODE_OK) {
1614 }
else if (strcmp((long_opts[option_index]).
name,
"af-packet") == 0) {
1615 if (ParseCommandLineAfpacket(suri, optarg) !=
TM_ECODE_OK) {
1618 }
else if (strcmp((long_opts[option_index]).
name,
"af-xdp") == 0) {
1619 if (ParseCommandLineAfxdp(suri, optarg) !=
TM_ECODE_OK) {
1622 }
else if (strcmp((long_opts[option_index]).
name,
"netmap") == 0) {
1630 ((strlen(optarg) <
sizeof(suri->
pcap_dev)) ?
1631 (strlen(optarg) + 1) :
sizeof(suri->
pcap_dev)));
1637 SCLogInfo(
"Multiple netmap option without interface on each is useless");
1642 "has been specified");
1643 PrintUsage(argv[0]);
1650 }
else if (strcmp((long_opts[option_index]).
name,
"nflog") == 0) {
1660 }
else if (strcmp((long_opts[option_index]).
name,
"pcap") == 0) {
1661 if (ParseCommandLinePcapLive(suri, optarg) !=
TM_ECODE_OK) {
1664 }
else if (strcmp((long_opts[option_index]).
name,
"simulate-ips") == 0) {
1667 }
else if (strcmp((long_opts[option_index]).
name,
"init-errors-fatal") == 0) {
1669 SCLogError(
"failed to set engine init-failure-fatal");
1672 #ifdef BUILD_UNIX_SOCKET
1673 }
else if (strcmp((long_opts[option_index]).
name ,
"unix-socket") == 0) {
1678 SCLogError(
"failed to set unix-command.filename");
1684 "has been specified");
1685 PrintUsage(argv[0]);
1690 else if(strcmp((long_opts[option_index]).
name,
"list-app-layer-protocols") == 0) {
1692 }
else if (strcmp((long_opts[option_index]).
name,
"list-app-layer-hooks") == 0) {
1694 }
else if (strcmp((long_opts[option_index]).
name,
"list-unittests") == 0) {
1698 SCLogError(
"unit tests not enabled. Make sure to pass --enable-unittests to "
1699 "configure when building");
1702 }
else if (strcmp((long_opts[option_index]).
name,
"list-runmodes") == 0) {
1705 }
else if (strcmp((long_opts[option_index]).
name,
"list-keywords") == 0) {
1707 if (strcmp(
"short", optarg) != 0) {
1711 }
else if (strcmp((long_opts[option_index]).
name,
"runmode") == 0) {
1713 }
else if (strcmp((long_opts[option_index]).
name,
"engine-analysis") == 0) {
1717 else if (strcmp((long_opts[option_index]).
name,
"service-install") == 0) {
1718 suri->
run_mode = RUNMODE_INSTALL_SERVICE;
1720 }
else if (strcmp((long_opts[option_index]).
name,
"service-remove") == 0) {
1721 suri->
run_mode = RUNMODE_REMOVE_SERVICE;
1723 }
else if (strcmp((long_opts[option_index]).
name,
"service-change-params") == 0) {
1724 suri->
run_mode = RUNMODE_CHANGE_SERVICE_PARAMS;
1728 else if (strcmp((long_opts[option_index]).
name,
"pidfile") == 0) {
1731 SCLogError(
"strdup failed: %s", strerror(errno));
1734 }
else if (strcmp((long_opts[option_index]).
name,
"disable-detection") == 0) {
1736 }
else if (strcmp((long_opts[option_index]).
name,
"disable-hashing") == 0) {
1740 }
else if (strcmp((long_opts[option_index]).
name,
"fatal-unittests") == 0) {
1744 SCLogError(
"unit tests not enabled. Make sure to pass --enable-unittests to "
1745 "configure when building");
1748 }
else if (strcmp((long_opts[option_index]).
name,
"user") == 0) {
1749 #ifndef HAVE_LIBCAP_NG
1751 " drop privileges, but it was not compiled into Suricata.");
1757 }
else if (strcmp((long_opts[option_index]).
name,
"group") == 0) {
1758 #ifndef HAVE_LIBCAP_NG
1760 " drop privileges, but it was not compiled into Suricata.");
1766 }
else if (strcmp((long_opts[option_index]).
name,
"erf-in") == 0) {
1772 }
else if (strcmp((long_opts[option_index]).
name,
"dag") == 0) {
1778 SCLogError(
"more than one run mode has been specified");
1779 PrintUsage(argv[0]);
1784 SCLogError(
"libdag and a DAG card are required"
1785 " to receive packets using --dag.");
1788 }
else if (strcmp((long_opts[option_index]).
name,
"napatech") == 0) {
1789 #ifdef HAVE_NAPATECH
1792 SCLogError(
"libntapi and a Napatech adapter are required"
1793 " to capture packets using --napatech.");
1796 }
else if (strcmp((long_opts[option_index]).
name,
"pcap-buffer-size") == 0) {
1797 #ifdef HAVE_PCAP_SET_BUFF
1799 SCLogError(
"failed to set pcap-buffer-size");
1804 " doesn't support setting buffer size.");
1806 }
else if (strcmp((long_opts[option_index]).
name,
"build-info") == 0) {
1809 }
else if (strcmp((long_opts[option_index]).
name,
"windivert-forward") == 0) {
1813 if (WinDivertRegisterQueue(
true, optarg) == -1) {
1817 if (WinDivertRegisterQueue(
true, optarg) == -1) {
1822 "has been specified");
1823 PrintUsage(argv[0]);
1827 else if(strcmp((long_opts[option_index]).
name,
"windivert") == 0) {
1830 if (WinDivertRegisterQueue(
false, optarg) == -1) {
1834 if (WinDivertRegisterQueue(
false, optarg) == -1) {
1839 "has been specified");
1840 PrintUsage(argv[0]);
1844 SCLogError(
"WinDivert not enabled. Make sure to pass --enable-windivert to "
1845 "configure when building.");
1848 }
else if(strcmp((long_opts[option_index]).
name,
"reject-dev") == 0) {
1849 #ifdef HAVE_LIBNET11
1851 extern char *g_reject_dev;
1852 extern uint16_t g_reject_dev_mtu;
1853 g_reject_dev = optarg;
1856 g_reject_dev_mtu = (uint16_t)mtu;
1859 SCLogError(
"Libnet 1.1 support not enabled. Compile Suricata with libnet support.");
1863 else if (strcmp((long_opts[option_index]).
name,
"set") == 0) {
1864 if (optarg != NULL) {
1866 char *val = strchr(optarg,
'=');
1868 FatalError(
"Invalid argument for --set, must be key=val.");
1871 FatalError(
"failed to set configuration value %s", optarg);
1875 else if (strcmp((long_opts[option_index]).
name,
"pcap-file-continuous") == 0) {
1877 SCLogError(
"Failed to set pcap-file.continuous");
1881 else if (strcmp((long_opts[option_index]).
name,
"pcap-file-delete") == 0) {
1883 SCLogError(
"Failed to set pcap-file.delete-when-done");
1887 else if (strcmp((long_opts[option_index]).
name,
"pcap-file-recursive") == 0) {
1889 SCLogError(
"failed to set pcap-file.recursive");
1892 }
else if (strcmp((long_opts[option_index]).
name,
"pcap-file-buffer-size") == 0) {
1894 SCLogError(
"failed to set pcap-file.buffer-size");
1897 }
else if (strcmp((long_opts[option_index]).
name,
"data-dir") == 0) {
1898 if (optarg == NULL) {
1899 SCLogError(
"no option argument (optarg) for -d");
1909 " supplied at the command-line (-d %s) doesn't "
1910 "exist. Shutting down the engine.",
1915 }
else if (strcmp((long_opts[option_index]).
name,
"strict-rule-keywords") == 0) {
1916 if (optarg == NULL) {
1922 FatalError(
"failed to duplicate 'strict' string");
1924 }
else if (strcmp((long_opts[option_index]).
name,
"include") == 0) {
1925 AddCommandLineOptionValue(
1927 }
else if (strcmp((long_opts[option_index]).
name,
"firewall-rules-exclusive") == 0) {
1929 SCLogError(
"can't have multiple --firewall-rules-exclusive options");
1937 (long_opts[option_index]).
name, optarg);
1948 SCLogError(
"failed to set engine init-failure-fatal");
1961 if (optarg == NULL) {
1962 SCLogError(
"no option argument (optarg) for -i");
1965 #ifdef HAVE_AF_PACKET
1966 if (ParseCommandLineAfpacket(suri, optarg) !=
TM_ECODE_OK) {
1971 #if defined HAVE_NETMAP
1977 "option%s %s available:"
1979 " NETMAP (--netmap=%s)"
1981 ". Use --pcap=%s to suppress this warning",
1982 i == 1 ?
"" :
"s", i == 1 ?
"is" :
"are"
1990 if (ParseCommandLinePcapLive(suri, optarg) !=
TM_ECODE_OK) {
1996 if (optarg == NULL) {
1997 SCLogError(
"no option argument (optarg) for -l");
2007 " supplied at the command-line (-l %s) doesn't "
2008 "exist. Shutting down the engine.",
2012 if (!IsLogDirectoryWritable(optarg)) {
2014 " supplied at the command-line (-l %s) is not "
2015 "writable. Shutting down the engine.",
2034 "has been specified");
2035 PrintUsage(argv[0]);
2039 SCLogError(
"NFQUEUE not enabled. Make sure to pass --enable-nfqueue to configure when "
2056 "has been specified");
2057 PrintUsage(argv[0]);
2061 SCLogError(
"IPFW not enabled. Make sure to pass --enable-ipfw to configure when "
2072 "has been specified");
2073 PrintUsage(argv[0]);
2078 SCLogError(
"pcap file '%s': %s", optarg, strerror(errno));
2082 SCLogError(
"ERROR: Failed to set pcap-file.file\n");
2089 SCLogError(
"can't have multiple -s options or mix -s and -S.");
2096 SCLogError(
"can't have multiple -S options or mix -s and -S.");
2109 PrintUsage(argv[0]);
2113 SCLogError(
"unit tests not enabled. Make sure to pass --enable-unittests to configure "
2130 if (optarg == NULL) {
2131 SCLogError(
"no option argument (optarg) for -F");
2135 SetBpfStringFromFile(optarg);
2138 static bool ignore_extra =
false;
2141 else if (!ignore_extra) {
2142 SCLogNotice(
"extraneous verbose option(s) ignored");
2143 ignore_extra =
true;
2147 if (optarg == NULL) {
2148 SCLogError(
"no option argument (optarg) for -k");
2151 if (!strcmp(
"all", optarg))
2153 else if (!strcmp(
"none", optarg))
2156 SCLogError(
"option '%s' invalid for -k", optarg);
2161 PrintUsage(argv[0]);
2171 SCLogError(
"can't use -s/-S or --firewall-rules-exclusive when detection is disabled");
2178 if (list_app_layer_protocols)
2180 if (list_rule_protocols)
2182 if (list_app_layer_hooks)
2184 if (list_app_layer_frames)
2202 ret = SetBpfString(optind, argv);
2210 int WindowsInitService(
int argc,
char **argv)
2212 if (SCRunningAsService()) {
2213 char path[MAX_PATH];
2215 strlcpy(path, argv[0], MAX_PATH);
2216 if ((
p = strrchr(path,
'\\'))) {
2219 if (!SetCurrentDirectory(path)) {
2220 SCLogError(
"Can't set current directory to: %s", path);
2223 SCLogInfo(
"Current directory is set to: %s", path);
2224 SCServiceInit(argc, argv);
2229 if (0 != WSAStartup(MAKEWORD(2, 2), &wsaData)) {
2230 SCLogError(
"Can't initialize Windows sockets: %d", WSAGetLastError());
2241 const char *pid_filename;
2244 SCLogInfo(
"Use pid file %s from config file.", pid_filename);
2251 SCLogError(
"strdup failed: %s", strerror(errno));
2270 SCLogError(
"Unable to create PID file, concurrent run of"
2271 " Suricata can occur.");
2272 SCLogError(
"PID file creation WILL be mandatory for daemon mode"
2273 " in future version");
2288 if (
SCConfGet(
"run-as.user", &
id) == 1) {
2292 if (
SCConfGet(
"run-as.group", &
id) == 1) {
2310 static int InitSignalHandler(
SCInstance *suri)
2313 #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
2318 if (
SCConfGetBool(
"logging.stacktrace-on-signal", &enabled) == 0) {
2323 SCLogInfo(
"Preparing unexpected signal handling");
2324 struct sigaction stacktrace_action;
2325 memset(&stacktrace_action, 0,
sizeof(stacktrace_action));
2326 stacktrace_action.sa_sigaction = SignalHandlerUnexpected;
2327 stacktrace_action.sa_flags = SA_SIGINFO;
2328 sigaction(SIGSEGV, &stacktrace_action, NULL);
2329 sigaction(SIGABRT, &stacktrace_action, NULL);
2352 #ifdef PROFILE_RULES
2353 SCProfilingRulesGlobalInit();
2360 #ifdef PROFILE_RULES
2414 SCPrintElapsedTime(start_time);
2488 PrintUsage(argv[0]);
2498 case RUNMODE_INSTALL_SERVICE:
2499 if (SCServiceInstall(argc, argv)) {
2502 SCLogInfo(
"Suricata service has been successfully installed.");
2504 case RUNMODE_REMOVE_SERVICE:
2505 if (SCServiceRemove()) {
2508 SCLogInfo(
"Suricata service has been successfully removed.");
2510 case RUNMODE_CHANGE_SERVICE_PARAMS:
2511 if (SCServiceChangeParams(argc, argv)) {
2514 SCLogInfo(
"Suricata service startup parameters has been successfully changed.");
2531 SCLogError(
"Please specify a runmode or capture option. "
2532 "Use --list-runmodes to see available runmodes.");
2547 static void SetupDelayedDetect(
SCInstance *suri)
2556 if (decnf != NULL) {
2558 if (strcmp(denode->
val,
"delayed-detect") == 0) {
2569 SCLogInfo(
"Packets will start being processed before signatures are active.");
2587 static int ConfigGetCaptureValue(
SCInstance *suri)
2591 intmax_t tmp_max_pending_packets;
2592 if (
SCConfGetInt(
"max-pending-packets", &tmp_max_pending_packets) != 1)
2594 if (tmp_max_pending_packets < 1 || tmp_max_pending_packets > 2147483648) {
2595 SCLogError(
"Maximum max-pending-packets setting is 2147483648 and must be greater than 0. "
2596 "Please check %s for errors",
2607 const char *temp_default_packet_size;
2608 if ((
SCConfGetNonNull(
"default-packet-size", &temp_default_packet_size)) != 1) {
2611 int strip_trailing_plus = 0;
2621 const int mtu = GetGlobalMTUWin32();
2635 strip_trailing_plus = 1;
2641 for (lthread = 0; lthread < nlive; lthread++) {
2644 (void)
strlcpy(dev, live_dev,
sizeof(dev));
2646 if (strip_trailing_plus) {
2647 size_t len = strlen(dev);
2649 (dev[
len-1] ==
'+' ||
2650 dev[
len-1] ==
'^' ||
2669 SCLogError(
"Error parsing max-pending-packets "
2670 "from conf file - %s. Killing engine",
2671 temp_default_packet_size);
2681 static void PostRunStartedDetectSetup(
const SCInstance *suri)
2695 SCLogNotice(
"Signature(s) loaded, Detect thread(s) activated.");
2707 SetupDelayedDetect(suri);
2710 int default_tenant = 0;
2712 (void)
SCConfGetBool(
"multi-detect.default", &default_tenant);
2715 "detection engine contexts failed.");
2725 FatalError(
"initializing detection engine failed.");
2741 static void PostConfLoadedSetupHostMode(
void)
2743 const char *hostmode = NULL;
2746 if (!strcmp(hostmode,
"router")) {
2748 }
else if (!strcmp(hostmode,
"bridge")) {
2750 }
else if (!strcmp(hostmode,
"sniffer-only")) {
2753 if (strcmp(hostmode,
"auto") != 0) {
2774 SCLogInfo(
"No 'host-mode': suricata is in IPS mode, using "
2775 "default setting 'router'");
2779 SCLogInfo(
"No 'host-mode': suricata is in IDS mode, using "
2780 "default setting 'sniffer-only'");
2792 FatalError(
"could not set USER mode logdir");
2798 FatalError(
"could not set USER mode datadir");
2810 int cnf_firewall_enabled = 0;
2811 if (
SCConfGetBool(
"firewall.enabled", &cnf_firewall_enabled) == 1) {
2812 if (cnf_firewall_enabled == 1) {
2816 FatalError(
"firewall mode enabled through commandline, but disabled in config");
2821 SCLogWarning(
"firewall mode is EXPERIMENTAL and subject to change");
2829 int disable_offloading;
2830 if (
SCConfGetBool(
"capture.disable-offloading", &disable_offloading) == 0)
2831 disable_offloading = 1;
2832 if (disable_offloading) {
2839 const char *cv = NULL;
2841 if (strcmp(cv,
"none") == 0) {
2843 }
else if (strcmp(cv,
"all") == 0) {
2850 SCConfSet(
"stream.checksum-validation",
"0");
2853 SCConfSet(
"stream.checksum-validation",
"1");
2862 #ifdef HAVE_PACKET_EBPF
2864 EBPFRegisterExtension();
2887 SCLogInfo(
"Setting engine mode to IDS mode by default");
2908 const char *custom_umask;
2911 if (
StringParseUint16(&mask, 8, (uint16_t)strlen(custom_umask), custom_umask) > 0) {
2912 umask((mode_t)mask);
2929 SCLogInfo(
"== Carrying out Engine Analysis ==");
2930 const char *temp = NULL;
2931 if (
SCConfGet(
"engine-analysis", &temp) == 0) {
2932 SCLogInfo(
"no engine-analysis parameter(s) defined in conf file. "
2933 "Please define/enable them in the conf to use this "
2952 "basic address vars test failed. Please check %s for errors", suri->
conf_filename);
2981 "supplied by %s (default-log-dir) doesn't exist. "
2982 "Shutting down the engine",
2986 if (!IsLogDirectoryWritable(suri->
log_dir)) {
2988 "supplied by %s (default-log-dir) is not writable. "
2989 "Shutting down the engine",
3007 PostConfLoadedSetupHostMode();
3074 return EXIT_FAILURE;
3097 SCInstanceInit(&
suricata, progname);
3115 if (
SCConfGetBool(
"vlan.use-for-tracking", &tracking) == 1 && !tracking) {
3119 SCLogDebug(
"vlan tracking is %s", tracking == 1 ?
"enabled" :
"disabled");
3120 if (
SCConfGetBool(
"livedev.use-for-tracking", &tracking) == 1 && !tracking) {
3124 if (
SCConfGetBool(
"decoder.recursion-level.use-for-tracking", &tracking) == 1 && !tracking) {
3140 SCLogInfo(
"Running suricata under test mode");
3174 SCLogNotice(
"Configuration provided was successfully loaded. Exiting.");
3217 int limit_nproc = 0;
3218 if (
SCConfGetBool(
"security.limit-noproc", &limit_nproc) == 0) {
3222 #if defined(SC_ADDRESS_SANITIZER)
3225 "\"security.limit-noproc\" (setrlimit()) not set when using address sanitizer");
3231 #if defined(HAVE_SYS_RESOURCE_H) && defined(RLIMIT_NPROC)
3234 SCLogWarning(
"setrlimit has no effect when running as root.");
3237 struct rlimit r = { 0, 0 };
3238 if (setrlimit(RLIMIT_NPROC, &r) != 0) {
3239 SCLogWarning(
"setrlimit failed to prevent process creation.");
3265 PostRunStartedDetectSetup(&
suricata);
@ RUNMODE_LIST_APP_LAYERS
enum SCRunModes SCRunMode
@ RUNMODE_ENGINE_ANALYSIS
void TmModuleUnixManagerRegister(void)
void StatsReleaseResources(void)
Releases the resources allotted by the Stats API.
#define DETECT_ENGINE_MPM_CACHE_OP_PRUNE
void TmModuleReceiveIPFWRegister(void)
Registration Function for RecieveIPFW.
void SuricataMainLoop(void)
int ExceptionSimulationCommandLineParser(const char *name, const char *arg)
char * firewall_rule_file
void AppLayerHtpNeedFileInspection(void)
Sets a flag that informs the HTP app layer that some module in the engine needs the http request file...
void TmThreadDisablePacketThreads(const uint16_t set, const uint16_t check, const uint8_t module_flags)
Disable all packet threads.
enum SCRunModes aux_run_mode
void IPPairInitConfig(bool quiet)
initialize the configuration
void SCLogInitLogModule(SCLogInitData *sc_lid)
Initializes the logging module.
void EngineModeSetIPS(const enum EngineHostMode mode)
void SCEnableDefaultSignalHandlers(void)
Enable default signal handlers.
int LiveDeviceListClean(void)
void DetectEngineDeReference(DetectEngineCtx **de_ctx)
struct timeval start_time
bool IsRunModeOffline(enum SCRunModes run_mode_to_check)
#define SC_ATOMIC_INIT(name)
wrapper for initializing an atomic variable.
SystemHugepageSnapshot * prerun_snap
void TmThreadContinueThreads(void)
Unpauses all threads present in tv_root.
enum DetectEngineType type
int SigLoadSignatures(DetectEngineCtx *de_ctx, char *sig_file, bool sig_file_exclusive)
Load signatures.
const char * firewall_rule_file_exclusive
#define SC_ATOMIC_SET(name, val)
Set the value for the atomic variable.
@ RUNMODE_LIST_APP_LAYER_FRAMES
SCConfNode * SCConfGetRootNode(void)
Get the root configuration node.
DetectEngineCtx * DetectEngineCtxInitStubForDD(void)
void LiveDevRegisterExtension(void)
void OutputTxShutdown(void)
void AppLayerHtpPrintStats(void)
void StatsSetupPostConfigPreOutput(void)
char * runmode_custom_mode
struct HtpBodyChunk_ * next
void TmModuleReceiveNFQRegister(void)
void DetectEngineMpmCacheService(uint32_t op_flags)
int LiveBuildDeviceList(const char *runmode)
void RunModeShutDown(void)
void SCProtoNameInit(void)
void SuricataPostInit(void)
void RunModeDispatch(int runmode, const char *custom_mode, const char *capture_plugin_name, const char *capture_plugin_args)
volatile sig_atomic_t sigint_count
SC_ATOMIC_DECLARE(unsigned int, engine_stage)
void TmModuleRunDeInit(void)
void TmThreadsUnsealThreads(void)
void RegisterFlowBypassInfo(void)
#define SCSetThreadName(n)
int SCConfYamlHandleInclude(SCConfNode *parent, const char *filename)
Include a file in the configuration.
void SCLogDeInitLogModule(void)
De-Initializes the logging module.
void TmModuleDecodeErfFileRegister(void)
Register the ERF file decoder module.
main detection engine ctx
int StringParseUint16(uint16_t *res, int base, size_t len, const char *str)
void DetectEngineReloadSetIdle(void)
void DatalinkTableDeinit(void)
int SCConfGet(const char *name, const char **vptr)
Retrieve the value of a configuration node.
DetectEngineCtx * DetectEngineGetCurrent(void)
int EngineModeIsUnknown(void)
void VarNameStoreInit(void)
void TmModuleFlowRecyclerRegister(void)
int SCConfNodeChildValueIsTrue(const SCConfNode *node, const char *key)
Test if a configuration node has a true value.
void DatalinkTableInit(void)
void Daemonize(void)
Daemonize the process.
void UtilSignalHandlerSetup(int sig, void(*handler)(int))
#define TAILQ_FOREACH(var, head, field)
void EngineModeSetFirewall(const enum EngineHostMode mode)
void TmModuleDecodeAFPRegister(void)
Registration Function for DecodeAFP.
void TmModuleDecodeWinDivertRegister(void)
void UtilCpuEnableSparcMisalignEmulation(void)
Handle memory access miss align on SPARC processors.
int DetectEngineAddToMaster(DetectEngineCtx *de_ctx)
int SCConfGetChildValueBool(const SCConfNode *base, const char *name, int *val)
void TmModuleStatsLoggerRegister(void)
void RegisterAllModules(void)
int DetectEngineMultiTenantSetup(const bool unix_socket)
setup multi-detect / multi-tenancy
void SupportFastPatternForSigMatchTypes(void)
Registers the keywords(SMs) that should be given fp support.
bool EngineHostModeIsSniffer(void)
TmEcode SCParseCommandLine(int argc, char **argv)
int CheckValidDaemonModes(int daemon, int mode)
Check for a valid combination daemon/mode.
void SCGetGroupID(const char *group_name, uint32_t *gid)
Function to get the group ID from the specified group name.
int SCConfGetBool(const char *name, int *val)
Retrieve a configuration value as a boolean.
enum EngineHostMode g_engine_host_mode
void TmThreadDisableReceiveThreads(void)
Disable all threads having the specified TMs.
void StatsInit(void)
Initializes the perf counter api. Things are hard coded currently. More work to be done when we imple...
void PreRunInit(const int runmode)
void MacSetRegisterFlowStorage(void)
void SuricataShutdown(void)
const char * conf_filename
int GetIfaceMTU(const char *dev)
output the link MTU
void GlobalsInitPreConfig(void)
void TmModuleReceiveNetmapRegister(void)
void PacketPoolPostRunmodes(void)
Set the max_pending_return_packets value.
void NFQInitConfig(bool quiet)
To initialize the NFQ global configuration data.
void TmModuleReceiveWinDivertRegister(void)
bool EngineModeIsFirewall(void)
void SCProfilingDestroy(void)
Free resources used by profiling.
void AFPPeersListClean(void)
Clean the global peers list.
void RunModeInitializeOutputs(void)
int DetectPortTestConfVars(void)
void SCThresholdConfGlobalInit(void)
void DecodeUnregisterCounters(void)
const char * capture_plugin_name
int SCConfYamlLoadFile(const char *filename)
Load configuration from a YAML file.
void HostBitInitCtx(void)
bool IsRunModeSystem(enum SCRunModes run_mode_to_check)
const char * capture_plugin_args
void ThresholdRegisterGlobalCounters(void)
void TmModuleLoggerRegister(void)
void PacketPoolInit(void)
int AppLayerDeSetup(void)
De initializes the app layer.
@ RUNMODE_LIST_APP_LAYER_HOOKS
size_t strlcpy(char *dst, const char *src, size_t siz)
void PcapTranslateIPToDevice(char *pcap_dev, size_t len)
void FlowDisableFlowRecyclerThread(void)
Used to disable flow recycler thread(s).
void SCRunmodeSet(SCRunMode run_mode)
Set the current run mode.
void TmModuleDecodePcapFileRegister(void)
void TmModuleBypassedFlowManagerRegister(void)
void IPPairShutdown(void)
shutdown the flow engine
void SCConfInit(void)
Initialize the configuration system.
void DetectParseFreeRegexes(void)
void SCConfDump(void)
Dump configuration to stdout.
void TmModuleDecodeNFLOGRegister(void)
int NFQParseAndRegisterQueues(const char *queues)
Parses and adds Netfilter queue(s).
void FlowInitConfig(bool quiet)
initialize the configuration
int AppLayerSetup(void)
Setup the app layer.
void FeatureTrackingRegister(void)
void TmModuleReceiveDPDKRegister(void)
void UnixManagerThreadSpawnNonRunmode(const bool unix_socket_enabled)
void RunModeInitializeThreadSettings(void)
void StreamTcpInitConfig(bool)
To initialize the stream global configuration data.
int GetIfaceMaxPacketSize(LiveDevice *ld)
output max packet size for a link
SCRunMode SCRunmodeGet(void)
Get the current run mode.
void TmModuleDecodeNetmapRegister(void)
Registration Function for DecodeNetmap.
void PreRunPostPrivsDropInit(const int runmode)
void SigTableCleanup(void)
int DetectEngineMoveToFreeList(DetectEngineCtx *de_ctx)
volatile sig_atomic_t sigterm_count
TmEcode TmThreadWaitOnThreadInit(void)
Used to check if all threads have finished their initialization. On finding an un-initialized thread,...
const char * SCLogLevel2Name(const SCLogLevel lvl)
void TmModuleVerdictNFQRegister(void)
void AppLayerRegisterGlobalCounters(void)
HACK to work around our broken unix manager (re)init loop.
int SCFinalizeRunMode(int argc)
void RunModeListRunmodes(void)
Lists all registered runmodes.
size_t strlcat(char *, const char *src, size_t siz)
void LiveSetOffloadDisable(void)
void StatsSetupPostConfigPostOutput(void)
void EngineModeSetIDS(void)
void TmModuleReceiveAFPRegister(void)
Registration Function for RecieveAFP.
int LiveBuildDeviceListCustom(const char *runmode, const char *itemname)
LiveDevice * LiveGetDevice(const char *name)
Get a pointer to the device at idx.
void UnixSocketKillSocketThread(void)
void TmModuleVerdictIPFWRegister(void)
Registration Function for VerdictIPFW.
int SCConfGetInt(const char *name, intmax_t *val)
Retrieve a configuration value as an integer.
bool g_stats_eps_per_app_proto_errors
void HttpRangeContainersInit(void)
struct timeval last_reload
void TmModuleVerdictWinDivertRegister(void)
void HostCleanup(void)
Cleanup the host engine.
void FlowDisableFlowManagerThread(void)
Used to disable flow manager thread(s).
int SCConfGetNonNull(const char *name, const char **vptr)
Retrieve the non-null value of a configuration node.
int UtilSignalUnblock(int signum)
int DetectEngineEnabled(void)
Check if detection is enabled.
void TmThreadClearThreadsFamily(int family)
#define THV_REQ_FLOW_LOOP
void FlowRateRegisterFlowStorage(void)
void TmModuleRunInit(void)
void HTPAtExitPrintStats(void)
Print the stats of the HTTP requests.
int UtilSignalBlock(int signum)
void SCProfilingPrefilterGlobalInit(void)
void ThresholdDestroy(void)
#define SCLogWarning(...)
Macro used to log WARNING messages.
int PostConfLoadedSetup(SCInstance *suri)
const char * GetProgramVersion(void)
get string with program version
void TmModuleReceivePcapFileRegister(void)
int32_t CoredumpLoadConfig(void)
Configures the core dump size.
int IPFWRegisterQueue(char *queue)
Add an IPFW divert.
int ListAppLayerHooks(const char *conf_filename)
int ListAppLayerProtocols(const char *conf_filename)
void DatasetsDestroy(void)
void UtilCpuPrintSummary(void)
Print a summary of CPUs detected (configured and online)
int profiling_packets_enabled
int SystemDNotifyReady(void)
void TmThreadKillThreads(void)
void OutputDeregisterAll(void)
Deregister all modules. Useful for a memory clean exit.
void PostConfLoadedDetectSetup(SCInstance *suri)
int EngineModeIsIDS(void)
TmModule tmm_modules[TMM_SIZE]
const char * SCConfigGetLogDirectory(void)
void OutputNotifyFileRotation(void)
Notifies all registered file rotation notification flags.
void VarNameStoreDestroy(void)
void TmModuleFlowWorkerRegister(void)
uint32_t max_pending_packets
const char ** additional_configs
#define DEFAULT_PID_FILENAME
volatile sig_atomic_t sighup_count
TmEcode ConfigSetDataDirectory(char *name)
void TmModuleDecodeErfDagRegister(void)
Register the ERF file decoder module.
#define SCDropMainThreadCaps(...)
void TmModuleDebugList(void)
void TmModuleDecodeNFQRegister(void)
void SCProtoNameRelease(void)
int RunmodeIsUnittests(void)
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
void TmModuleReceiveNFLOGRegister(void)
#define DEFAULT_PACKET_SIZE
#define WarnInvalidConfEntry(param_name, format, value)
Generic API that can be used by all to log an invalid conf entry.
#define TM_FLAG_RECEIVE_TM
void TmModuleReceiveErfFileRegister(void)
Register the ERF file receiver (reader) module.
int SCConfSetFromString(const char *input, int final)
Set a configuration parameter from a string.
int SCConfSetFinal(const char *name, const char *val)
Set a final configuration value.
#define SCRealloc(ptr, sz)
void TmModuleDecodeAFXDPRegister(void)
Registration Function for DecodeAFXDP.
uint32_t default_packet_size
void SigTableApplyStrictCommandLineOption(const char *str)
@ DETECT_ENGINE_TYPE_NORMAL
void TmThreadKillThreadsFamily(int family)
void FeatureTrackingRelease(void)
void TmqhCleanup(void)
Clean up registration time allocs.
void StreamTcpFreeConfig(bool quiet)
void DecodeGlobalConfig(void)
char * strict_rule_parsing_string
DetectEngineCtx * DetectEngineCtxInitStubForMT(void)
const char * LiveGetDeviceName(int number)
Get a pointer to the device name at idx.
void FlowShutdown(void)
shutdown the flow engine
void SCHInfoLoadFromConfig(void)
Load the host os policy information from the configuration.
void DetectEngineBumpVersion(void)
void TmModuleFlowManagerRegister(void)
int SCStartInternalRunMode(int argc, char **argv)
int SCPidfileTestRunning(const char *pid_filename)
Check the Suricata pid file (used at the startup)
void HostShutdown(void)
shutdown the flow engine
#define SCFstatFn(fd, statbuf)
void LiveSetOffloadWarn(void)
void ParseSizeDeinit(void)
void SCConfDeInit(void)
De-initializes the configuration system.
void RunModeRegisterRunModes(void)
Register all runmodes in the engine.
int ListRuleProtocols(const char *conf_filename)
void SCProfilingDump(void)
void TmModuleReceiveAFXDPRegister(void)
void EngineStop(void)
make sure threads can stop the engine by calling this function. Purpose: pcap file mode needs to be a...
int ParseSizeStringU32(const char *size, uint32_t *res)
bool EngineHostModeIsBridge(void)
void TmModuleReceiveErfDagRegister(void)
Register the ERF file receiver (reader) module.
void IPPairBitInitCtx(void)
TmEcode ConfigSetLogDirectory(const char *name)
void TmModuleDecodeIPFWRegister(void)
Registration Function for DecodeIPFW.
int ConfUnixSocketIsEnable(void)
#define TM_FLAG_PACKET_ALL
struct SCLogConfig_ SCLogConfig
Holds the config state used by the logging api.
#define DETECT_ENGINE_MPM_CACHE_OP_SAVE
volatile sig_atomic_t sigusr2_count
void SystemHugepageSnapshotDestroy(SystemHugepageSnapshot *s)
void TmModuleDecodePcapRegister(void)
Registration Function for DecodePcap.
TmEcode SCLoadYamlConfig(void)
TmEcode ConfigCheckDataDirectory(const char *data_dir)
SCConfNode * SCConfGetNode(const char *name)
Get a SCConfNode by name.
#define SCLogError(...)
Macro used to log ERROR messages.
int DetectEngineReloadStart(void)
void TopologyDestroy(void)
#define DEFAULT_CONF_FILE
#define SC_LOG_MAX_LOG_MSG_LEN
void AppLayerParserPostStreamSetup(void)
void TmModuleReceivePcapRegister(void)
Registration Function for ReceivePcap.
void SCGetUserID(const char *user_name, const char *group_name, uint32_t *uid, uint32_t *gid)
Function to get the user and group ID from the specified user name.
bool install_signal_handlers
void TmModuleRespondRejectRegister(void)
void CoredumpEnable(void)
Enable coredumps on systems where coredumps can and need to be enabled.
void RunUnittests(int list_unittests, const char *regex_arg)
TmEcode ConfigCheckLogDirectoryExists(const char *log_dir)
int SCConfSet(const char *name, const char *val)
Set a configuration value.
void PacketAlertTagInit(void)
int RunModeEngineIsIPS(int capture_mode, const char *runmode, const char *capture_plugin_name)
DetectEngineCtx * DetectEngineCtxInit(void)
void SCOnLoggingReady(void)
Invokes all registered logging ready callbacks.
void TmModuleDecodeLibRegister(void)
register a "Decode" module for suricata as a library.
int EngineModeIsIPS(void)
int ListAppLayerFrames(const char *conf_filename)
void SCProfilingKeywordsGlobalInit(void)
void EngineDone(void)
Used to indicate that the current task is done.
bool firewall_rule_file_exclusive
const char * GetDocURL(void)
void PostRunDeinit(const int runmode, struct timeval *start_time)
clean up / shutdown code for packet modes
void HostInitConfig(bool quiet)
initialize the configuration
TmEcode TmThreadWaitOnThreadRunning(void)
Waits for all threads to be in a running state.
void HttpRangeContainersDestroy(void)
void SCLogLoadConfig(int daemon, int verbose, uint32_t userid, uint32_t groupid)
int DetectEngineReload(const SCInstance *suri)
Reload the detection engine.
#define DEFAULT_MAX_PENDING_PACKETS
void DetectEngineClearMaster(void)
void SetMasterExceptionPolicy(void)
void TmThreadCheckThreadState(void)
Used to check the thread for certain conditions of failure.
void OutputFilestoreRegisterGlobalCounters(void)
int InitGlobal(void)
Global initialization common to all runmodes.
int LiveGetDeviceCount(void)
Get the number of registered devices.
SystemHugepageSnapshot * SystemHugepageSnapshotCreate(void)
The function creates a snapshot of the system's hugepage usage per NUMA node and per hugepage size....
void SCProfilingSghsGlobalInit(void)
@ RUNMODE_LIST_RULE_PROTOS
int SCPidfileCreate(const char *pidfile)
Write a pid file (used at the startup) This commonly needed by the init scripts.
int LiveRegisterDeviceName(const char *dev)
Add a device for monitoring.
#define SCStatFn(pathname, statbuf)
void LiveDeviceFinalize(void)
void TmModuleDecodeDPDKRegister(void)
Registration Function for DecodeDPDK.
void PacketPoolDestroy(void)
void HTPFreeConfig(void)
Clears the HTTP server configuration memory used by HTP library.
void LandlockSandboxing(SCInstance *suri)
int ListKeywords(const char *keyword_info)
#define SCLogNotice(...)
Macro used to log NOTICE messages.
void SuricataPreInit(const char *progname)
const char ** additional_plugins
void DPDKCleanupEAL(void)
@ RUNMODE_PRINT_BUILDINFO
void SCPidfileRemove(const char *pid_filename)
Remove the pid file (used at the startup)
void NFQContextsClean(void)
Clean global contexts. Must be called on exit.
void SystemHugepageEvaluateHugepages(SystemHugepageSnapshot *pre_s, SystemHugepageSnapshot *post_s)
The function compares two hugepage snapshots and prints out recommendations for hugepage configuratio...
#define DEBUG_VALIDATE_BUG_ON(exp)
void SCProfilingInit(void)
Initialize profiling.
void GlobalsDestroy(void)
@ ENGINE_HOST_IS_SNIFFER_ONLY
int DetectEngineReloadIsStart(void)
int SCStorageFinalize(void)
volatile uint8_t suricata_ctl_flags
#define TM_FLAG_FLOWWORKER_TM
void TagDestroyCtx(void)
Destroy tag context hash tables.
int DetectAddressTestConfVars(void)
void FlowWorkToDoCleanup(void)
Clean up all the flows that have unprocessed segments and have some work to do in the detection engin...
void MpmHSGlobalCleanup(void)
void SCPluginsLoad(const char *capture_plugin_name, const char *capture_plugin_args, const char **additional_plugins)
void TmqResetQueues(void)