suricata
suricata.c
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 /**
19  * \file
20  *
21  * \author Victor Julien <victor@inliniac.net>
22  */
23 
24 #include "suricata-common.h"
25 
26 #if HAVE_GETOPT_H
27 #include <getopt.h>
28 #endif
29 
30 #if HAVE_SIGNAL_H
31 #include <signal.h>
32 #endif
33 #ifndef OS_WIN32
34 #ifdef HAVE_SYS_RESOURCE_H
35 // setrlimit
36 #include <sys/resource.h>
37 #endif
38 #endif
39 
40 #include "suricata.h"
41 
42 #include "conf.h"
43 #include "conf-yaml-loader.h"
44 
45 #include "decode.h"
46 #include "defrag.h"
47 #include "flow.h"
48 #include "stream-tcp.h"
49 #include "ippair.h"
50 
51 #include "detect.h"
52 #include "detect-parse.h"
53 #include "detect-engine.h"
54 #include "detect-engine-address.h"
55 #include "detect-engine-alert.h"
56 #include "detect-engine-port.h"
57 #include "detect-engine-tag.h"
59 #include "detect-fast-pattern.h"
60 
61 #include "datasets.h"
62 
63 #include "feature.h"
64 
65 #include "flow-bypass.h"
66 #include "flow-manager.h"
67 #include "flow-timeout.h"
68 #include "flow-worker.h"
69 
70 #include "flow-bit.h"
71 #include "host-bit.h"
72 #include "ippair-bit.h"
73 
74 #include "app-layer.h"
75 #include "app-layer-parser.h"
76 #include "app-layer-htp.h"
77 #include "app-layer-htp-range.h"
78 
79 #include "output.h"
80 #include "output-filestore.h"
81 
82 #include "respond-reject.h"
83 
84 #include "runmode-af-packet.h"
85 #include "runmode-af-xdp.h"
86 #include "runmode-netmap.h"
87 #include "runmode-unittests.h"
88 
89 #include "source-nfq.h"
90 #include "source-nfq-prototypes.h"
91 #include "source-nflog.h"
92 #include "source-ipfw.h"
93 #include "source-pcap.h"
94 #include "source-pcap-file.h"
96 #include "source-erf-file.h"
97 #include "source-erf-dag.h"
98 #include "source-napatech.h"
99 #include "source-af-packet.h"
100 #include "source-af-xdp.h"
101 #include "source-netmap.h"
102 #include "source-dpdk.h"
103 #include "source-windivert.h"
105 
106 #include "unix-manager.h"
107 
109 #include "util-threshold-config.h"
110 #include "util-reference-config.h"
111 
112 #include "tmqh-packetpool.h"
113 #include "tm-queuehandlers.h"
114 
115 #include "util-byte.h"
116 #include "util-conf.h"
117 #include "util-coredump-config.h"
118 #include "util-cpu.h"
119 #include "util-daemon.h"
120 #include "util-device.h"
121 #include "util-dpdk.h"
122 #include "util-ebpf.h"
123 #include "util-exception-policy.h"
124 #include "util-host-os-info.h"
125 #include "util-hugepages.h"
126 #include "util-ioctl.h"
127 #include "util-landlock.h"
128 #include "util-macset.h"
129 #include "util-misc.h"
130 #include "util-mpm-hs.h"
131 #include "util-path.h"
132 #include "util-pidfile.h"
133 #include "util-plugin.h"
134 #include "util-privs.h"
135 #include "util-profiling.h"
136 #include "util-proto-name.h"
137 #include "util-running-modes.h"
138 #include "util-signal.h"
139 #include "util-time.h"
140 #include "util-validate.h"
141 #include "util-var-name.h"
142 #ifdef SYSTEMD_NOTIFY
143 #include "util-systemd.h"
144 #endif
145 
146 #ifdef WINDIVERT
147 #include "decode-sll.h"
148 #include "win32-syscall.h"
149 #endif
150 
151 /*
152  * we put this here, because we only use it here in main.
153  */
154 volatile sig_atomic_t sigint_count = 0;
155 volatile sig_atomic_t sighup_count = 0;
156 volatile sig_atomic_t sigterm_count = 0;
157 volatile sig_atomic_t sigusr2_count = 0;
158 
159 /*
160  * Flag to indicate if the engine is at the initialization
161  * or already processing packets. 3 stages: SURICATA_INIT,
162  * SURICATA_RUNTIME and SURICATA_FINALIZE
163  */
164 SC_ATOMIC_DECLARE(unsigned int, engine_stage);
165 
166 /* Max packets processed simultaneously per thread. */
167 #define DEFAULT_MAX_PENDING_PACKETS 1024
168 
169 /** suricata engine control flags */
170 volatile uint8_t suricata_ctl_flags = 0;
171 
172 /** Engine mode: inline (ENGINE_MODE_IPS) or just
173  * detection mode (ENGINE_MODE_IDS by default) */
174 static enum EngineMode g_engine_mode = ENGINE_MODE_UNKNOWN;
175 
176 /** Host mode: set if box is sniffing only
177  * or is a router */
179 
180 /** Maximum packets to simultaneously process. */
182 
183 /** global indicating if detection is enabled */
185 
186 /** set caps or not */
187 bool sc_set_caps = false;
188 
189 bool g_system = false;
190 
191 /** disable randomness to get reproducible results across runs */
192 #ifndef AFLFUZZ_NO_RANDOM
194 #else
195 int g_disable_randomness = 1;
196 #endif
197 
198 /** determine (without branching) if we include the vlan_ids when hashing or
199  * comparing flows */
200 uint16_t g_vlan_mask = 0xffff;
201 
202 /** determine (without branching) if we include the livedev ids when hashing or
203  * comparing flows */
204 uint16_t g_livedev_mask = 0xffff;
205 
206 /* flag to disable hashing almost globally, to be similar to disabling nss
207  * support */
208 bool g_disable_hashing = false;
209 
210 /* snapshot of the system's hugepages before system intitialization. */
212 
213 /** add per-proto app-layer error counters for exception policies stats? disabled by default */
215 
216 /** Suricata instance */
218 
219 int SuriHasSigFile(void)
220 {
221  return (suricata.sig_file != NULL);
222 }
223 
225 {
226  return (g_engine_mode == ENGINE_MODE_UNKNOWN);
227 }
228 
230 {
231  DEBUG_VALIDATE_BUG_ON(g_engine_mode == ENGINE_MODE_UNKNOWN);
232  return (g_engine_mode == ENGINE_MODE_IPS);
233 }
234 
236 {
237  DEBUG_VALIDATE_BUG_ON(g_engine_mode == ENGINE_MODE_UNKNOWN);
238  return (g_engine_mode == ENGINE_MODE_IDS);
239 }
240 
242 {
243  g_engine_mode = ENGINE_MODE_IPS;
244 }
245 
247 {
248  g_engine_mode = ENGINE_MODE_IDS;
249 }
250 
251 #ifdef UNITTESTS
253 {
255  return 1;
256 
257  return 0;
258 }
259 #endif
260 
261 int SCRunmodeGet(void)
262 {
263  return suricata.run_mode;
264 }
265 
266 void SCRunmodeSet(int run_mode)
267 {
268  suricata.run_mode = run_mode;
269 }
270 
271 /** signal handlers
272  *
273  * WARNING: don't use the SCLog* API in the handlers. The API is complex
274  * with memory allocation possibly happening, calls to syslog, json message
275  * construction, etc.
276  */
277 
278 #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
279 static void SignalHandlerSigint(/*@unused@*/ int sig)
280 {
281  sigint_count = 1;
282 }
283 static void SignalHandlerSigterm(/*@unused@*/ int sig)
284 {
285  sigterm_count = 1;
286 }
287 #ifndef OS_WIN32
288 #if HAVE_LIBUNWIND
289 #define UNW_LOCAL_ONLY
290 #include <libunwind.h>
291 static void SignalHandlerUnexpected(int sig_num, siginfo_t *info, void *context)
292 {
294  unw_cursor_t cursor;
295  /* Restore defaults for signals to avoid loops */
296  signal(SIGABRT, SIG_DFL);
297  signal(SIGSEGV, SIG_DFL);
298  int r;
299  if ((r = unw_init_local(&cursor, (unw_context_t *)(context)) != 0)) {
300  SCLogError("unable to obtain stack trace: unw_init_local: %s", unw_strerror(r));
301  goto terminate;
302  }
303 
304  char *temp = msg;
305  int cw = snprintf(temp, SC_LOG_MAX_LOG_MSG_LEN - (temp - msg), "stacktrace:sig %d:", sig_num);
306  temp += cw;
307  r = 1;
308  while (r > 0) {
309  if (unw_is_signal_frame(&cursor) == 0) {
310  unw_word_t off;
311  char name[256];
312  if (unw_get_proc_name(&cursor, name, sizeof(name), &off) == UNW_ENOMEM) {
313  cw = snprintf(temp, SC_LOG_MAX_LOG_MSG_LEN - (temp - msg), "[unknown]:");
314  } else {
315  cw = snprintf(
316  temp, SC_LOG_MAX_LOG_MSG_LEN - (temp - msg), "%s+0x%08" PRIx64, name, off);
317  }
318  temp += cw;
319  }
320 
321  r = unw_step(&cursor);
322  if (r > 0) {
323  cw = snprintf(temp, SC_LOG_MAX_LOG_MSG_LEN - (temp - msg), ";");
324  temp += cw;
325  }
326  }
327  SCLogError("%s", msg);
328 
329 terminate:
330  // Propagate signal to watchers, if any
331  kill(getpid(), sig_num);
332 }
333 #undef UNW_LOCAL_ONLY
334 #endif /* HAVE_LIBUNWIND */
335 #endif /* !OS_WIN32 */
336 #endif
337 
338 #ifndef OS_WIN32
339 /**
340  * SIGUSR2 handler. Just set sigusr2_count. The main loop will act on
341  * it.
342  */
343 static void SignalHandlerSigusr2(int sig)
344 {
345  if (sigusr2_count < 2)
346  sigusr2_count++;
347 }
348 
349 /**
350  * SIGHUP handler. Just set sighup_count. The main loop will act on
351  * it.
352  */
353 static void SignalHandlerSigHup(/*@unused@*/ int sig)
354 {
355  sighup_count = 1;
356 }
357 #endif
358 
360 {
361  TimeInit();
364  SCProtoNameInit();
365  FrameConfigInit();
366 }
367 
368 void GlobalsDestroy(void)
369 {
370  SCInstance *suri = &suricata;
372  HostShutdown();
373  HTPFreeConfig();
375 
377 
378  /* TODO this can do into it's own func */
380  if (de_ctx) {
383  }
385 
386  AppLayerDeSetup();
387  DatasetsSave();
388  DatasetsDestroy();
390  TagDestroyCtx();
391 
396  TimeDeinit();
397  SigTableCleanup();
398  TmqhCleanup();
400  ParseSizeDeinit();
401 
402 #ifdef HAVE_DPDK
403  DPDKCleanupEAL();
404 #endif
405 
406 #ifdef HAVE_AF_PACKET
408 #endif
409 
410 #ifdef NFQ
412 #endif
413 
414 #ifdef BUILD_HYPERSCAN
416 #endif
417 
418  ConfDeInit();
419 
421 
423  SCFree(suri->pid_filename);
424  suri->pid_filename = NULL;
425 
428 }
429 
430 /**
431  * \brief Used to send OS specific notification of running threads
432  *
433  * \retval TmEcode TM_ECODE_OK on success; TM_ECODE_FAILED on failure.
434  */
435 static void OnNotifyRunning(void)
436 {
437 #ifdef SYSTEMD_NOTIFY
438  if (SystemDNotifyReady() < 0) {
439  SCLogWarning("failed to notify systemd");
440  }
441 #endif
442 }
443 
444 /** \brief make sure threads can stop the engine by calling this
445  * function. Purpose: pcap file mode needs to be able to tell the
446  * engine the file eof is reached. */
447 void EngineStop(void)
448 {
450 }
451 
452 /**
453  * \brief Used to indicate that the current task is done.
454  *
455  * This is mainly used by pcap-file to tell it has finished
456  * to treat a pcap files when running in unix-socket mode.
457  */
458 void EngineDone(void)
459 {
461 }
462 
463 static int SetBpfString(int argc, char *argv[])
464 {
465  char *bpf_filter = NULL;
466  uint32_t bpf_len = 0;
467  int tmpindex = 0;
468 
469  /* attempt to parse remaining args as bpf filter */
470  tmpindex = argc;
471  while(argv[tmpindex] != NULL) {
472  bpf_len+=strlen(argv[tmpindex]) + 1;
473  tmpindex++;
474  }
475 
476  if (bpf_len == 0)
477  return TM_ECODE_OK;
478 
479  bpf_filter = SCCalloc(1, bpf_len);
480  if (unlikely(bpf_filter == NULL))
481  return TM_ECODE_FAILED;
482 
483  tmpindex = optind;
484  while(argv[tmpindex] != NULL) {
485  strlcat(bpf_filter, argv[tmpindex],bpf_len);
486  if(argv[tmpindex + 1] != NULL) {
487  strlcat(bpf_filter," ", bpf_len);
488  }
489  tmpindex++;
490  }
491 
492  if(strlen(bpf_filter) > 0) {
493  if (ConfSetFinal("bpf-filter", bpf_filter) != 1) {
494  SCLogError("Failed to set bpf filter.");
495  SCFree(bpf_filter);
496  return TM_ECODE_FAILED;
497  }
498  }
499  SCFree(bpf_filter);
500 
501  return TM_ECODE_OK;
502 }
503 
504 static void SetBpfStringFromFile(char *filename)
505 {
506  char *bpf_filter = NULL;
507  char *bpf_comment_tmp = NULL;
508  char *bpf_comment_start = NULL;
509  uint32_t bpf_len = 0;
510  SCStat st;
511  FILE *fp = NULL;
512  size_t nm = 0;
513 
514  fp = fopen(filename, "r");
515  if (fp == NULL) {
516  SCLogError("Failed to open file %s", filename);
517  exit(EXIT_FAILURE);
518  }
519 
520  if (SCFstatFn(fileno(fp), &st) != 0) {
521  SCLogError("Failed to stat file %s", filename);
522  exit(EXIT_FAILURE);
523  }
524  bpf_len = st.st_size + 1;
525 
526  bpf_filter = SCCalloc(1, bpf_len);
527  if (unlikely(bpf_filter == NULL)) {
528  SCLogError("Failed to allocate buffer for bpf filter in file %s", filename);
529  exit(EXIT_FAILURE);
530  }
531 
532  nm = fread(bpf_filter, 1, bpf_len - 1, fp);
533  if ((ferror(fp) != 0) || (nm != (bpf_len - 1))) {
534  SCLogError("Failed to read complete BPF file %s", filename);
535  SCFree(bpf_filter);
536  fclose(fp);
537  exit(EXIT_FAILURE);
538  }
539  fclose(fp);
540  bpf_filter[nm] = '\0';
541 
542  if(strlen(bpf_filter) > 0) {
543  /*replace comments with space*/
544  bpf_comment_start = bpf_filter;
545  while((bpf_comment_tmp = strchr(bpf_comment_start, '#')) != NULL) {
546  while((*bpf_comment_tmp !='\0') &&
547  (*bpf_comment_tmp != '\r') && (*bpf_comment_tmp != '\n'))
548  {
549  *bpf_comment_tmp++ = ' ';
550  }
551  bpf_comment_start = bpf_comment_tmp;
552  }
553  /*remove remaining '\r' and '\n' */
554  while((bpf_comment_tmp = strchr(bpf_filter, '\r')) != NULL) {
555  *bpf_comment_tmp = ' ';
556  }
557  while((bpf_comment_tmp = strchr(bpf_filter, '\n')) != NULL) {
558  *bpf_comment_tmp = ' ';
559  }
560  /* cut trailing spaces */
561  while (strlen(bpf_filter) > 0 &&
562  bpf_filter[strlen(bpf_filter)-1] == ' ')
563  {
564  bpf_filter[strlen(bpf_filter)-1] = '\0';
565  }
566  if (strlen(bpf_filter) > 0) {
567  if (ConfSetFinal("bpf-filter", bpf_filter) != 1) {
568  SCFree(bpf_filter);
569  FatalError("failed to set bpf filter");
570  }
571  }
572  }
573  SCFree(bpf_filter);
574 }
575 
576 static void PrintUsage(const char *progname)
577 {
578 #ifdef REVISION
579  printf("%s %s (%s)\n", PROG_NAME, PROG_VER, xstr(REVISION));
580 #else
581  printf("%s %s\n", PROG_NAME, PROG_VER);
582 #endif
583  printf("USAGE: %s [OPTIONS] [BPF FILTER]\n\n", progname);
584  printf("\t-c <path> : path to configuration file\n");
585  printf("\t-T : test configuration file (use with -c)\n");
586  printf("\t-i <dev or ip> : run in pcap live mode\n");
587  printf("\t-F <bpf filter file> : bpf filter file\n");
588  printf("\t-r <path> : run in pcap file/offline mode\n");
589 #ifdef NFQ
590  printf("\t-q <qid[:qid]> : run in inline nfqueue mode (use colon to specify a range of queues)\n");
591 #endif /* NFQ */
592 #ifdef IPFW
593  printf("\t-d <divert port> : run in inline ipfw divert mode\n");
594 #endif /* IPFW */
595  printf("\t-s <path> : path to signature file loaded in addition to suricata.yaml settings (optional)\n");
596  printf("\t-S <path> : path to signature file loaded exclusively (optional)\n");
597  printf("\t-l <dir> : default log directory\n");
598 #ifndef OS_WIN32
599  printf("\t-D : run as daemon\n");
600 #else
601  printf("\t--service-install : install as service\n");
602  printf("\t--service-remove : remove service\n");
603  printf("\t--service-change-params : change service startup parameters\n");
604 #endif /* OS_WIN32 */
605  printf("\t-k [all|none] : force checksum check (all) or disabled it (none)\n");
606  printf("\t-V : display Suricata version\n");
607  printf("\t-v : be more verbose (use multiple times to increase verbosity)\n");
608 #ifdef UNITTESTS
609  printf("\t-u : run the unittests and exit\n");
610  printf("\t-U, --unittest-filter=REGEX : filter unittests with a regex\n");
611  printf("\t--list-unittests : list unit tests\n");
612  printf("\t--fatal-unittests : enable fatal failure on unittest error\n");
613  printf("\t--unittests-coverage : display unittest coverage report\n");
614 #endif /* UNITTESTS */
615  printf("\t--list-app-layer-protos : list supported app layer protocols\n");
616  printf("\t--list-keywords[=all|csv|<kword>] : list keywords implemented by the engine\n");
617  printf("\t--list-runmodes : list supported runmodes\n");
618  printf("\t--runmode <runmode_id> : specific runmode modification the engine should run. The argument\n"
619  "\t supplied should be the id for the runmode obtained by running\n"
620  "\t --list-runmodes\n");
621  printf("\t--engine-analysis : print reports on analysis of different sections in the engine and exit.\n"
622  "\t Please have a look at the conf parameter engine-analysis on what reports\n"
623  "\t can be printed\n");
624  printf("\t--pidfile <file> : write pid to this file\n");
625  printf("\t--init-errors-fatal : enable fatal failure on signature init error\n");
626  printf("\t--disable-detection : disable detection engine\n");
627  printf("\t--dump-config : show the running configuration\n");
628  printf("\t--dump-features : display provided features\n");
629  printf("\t--build-info : display build information\n");
630  printf("\t--pcap[=<dev>] : run in pcap mode, no value select interfaces from suricata.yaml\n");
631  printf("\t--pcap-file-continuous : when running in pcap mode with a directory, continue checking directory for pcaps until interrupted\n");
632  printf("\t--pcap-file-delete : when running in replay mode (-r with directory or file), will delete pcap files that have been processed when done\n");
633  printf("\t--pcap-file-recursive : will descend into subdirectories when running in replay mode (-r)\n");
634  printf("\t--pcap-file-buffer-size : set read buffer size (setvbuf)\n");
635 #ifdef HAVE_PCAP_SET_BUFF
636  printf("\t--pcap-buffer-size : size of the pcap buffer value from 0 - %i\n",INT_MAX);
637 #endif /* HAVE_SET_PCAP_BUFF */
638 #ifdef HAVE_DPDK
639  printf("\t--dpdk : run in dpdk mode, uses interfaces from "
640  "suricata.yaml\n");
641 #endif
642 #ifdef HAVE_AF_PACKET
643  printf("\t--af-packet[=<dev>] : run in af-packet mode, no value select interfaces from suricata.yaml\n");
644 #endif
645 #ifdef HAVE_AF_XDP
646  printf("\t--af-xdp[=<dev>] : run in af-xdp mode, no value select "
647  "interfaces from suricata.yaml\n");
648 #endif
649 #ifdef HAVE_NETMAP
650  printf("\t--netmap[=<dev>] : run in netmap mode, no value select interfaces from suricata.yaml\n");
651 #endif
652 #ifdef HAVE_PFRING
653  printf("\t--pfring[=<dev>] : run in pfring mode, use interfaces from suricata.yaml\n");
654  printf("\t--pfring-int <dev> : run in pfring mode, use interface <dev>\n");
655  printf("\t--pfring-cluster-id <id> : pfring cluster id \n");
656  printf("\t--pfring-cluster-type <type> : pfring cluster type for PF_RING 4.1.2 and later cluster_round_robin|cluster_flow\n");
657 #endif /* HAVE_PFRING */
658  printf("\t--simulate-ips : force engine into IPS mode. Useful for QA\n");
659 #ifdef HAVE_LIBCAP_NG
660  printf("\t--user <user> : run suricata as this user after init\n");
661  printf("\t--group <group> : run suricata as this group after init\n");
662 #endif /* HAVE_LIBCAP_NG */
663  printf("\t--erf-in <path> : process an ERF file\n");
664 #ifdef HAVE_DAG
665  printf("\t--dag <dagX:Y> : process ERF records from DAG interface X, stream Y\n");
666 #endif
667 #ifdef HAVE_NAPATECH
668  printf("\t--napatech : run Napatech Streams using the API\n");
669 #endif
670 #ifdef BUILD_UNIX_SOCKET
671  printf("\t--unix-socket[=<file>] : use unix socket to control suricata work\n");
672 #endif
673 #ifdef WINDIVERT
674  printf("\t--windivert <filter> : run in inline WinDivert mode\n");
675  printf("\t--windivert-forward <filter> : run in inline WinDivert mode, as a gateway\n");
676 #endif
677 #ifdef HAVE_LIBNET11
678  printf("\t--reject-dev <dev> : send reject packets from this interface\n");
679 #endif
680  printf("\t--include <path> : additional configuration file\n");
681  printf("\t--set name=value : set a configuration value\n");
682  printf("\n");
683  printf("\nTo run the engine with default configuration on "
684  "interface eth0 with signature file \"signatures.rules\", run the "
685  "command as:\n\n%s -c suricata.yaml -s signatures.rules -i eth0 \n\n",
686  progname);
687 }
688 
689 static void PrintBuildInfo(void)
690 {
691  const char *bits;
692  const char *endian;
693  char features[2048] = "";
694  const char *tls;
695 
696  printf("This is %s version %s\n", PROG_NAME, GetProgramVersion());
697 #ifdef DEBUG
698  strlcat(features, "DEBUG ", sizeof(features));
699 #endif
700 #ifdef DEBUG_VALIDATION
701  strlcat(features, "DEBUG_VALIDATION ", sizeof(features));
702 #endif
703 #ifdef UNITTESTS
704  strlcat(features, "UNITTESTS ", sizeof(features));
705 #endif
706 #ifdef NFQ
707  strlcat(features, "NFQ ", sizeof(features));
708 #endif
709 #ifdef IPFW
710  strlcat(features, "IPFW ", sizeof(features));
711 #endif
712 #ifdef HAVE_PCAP_SET_BUFF
713  strlcat(features, "PCAP_SET_BUFF ", sizeof(features));
714 #endif
715 #ifdef HAVE_PFRING
716  strlcat(features, "PF_RING ", sizeof(features));
717 #endif
718 #ifdef HAVE_AF_PACKET
719  strlcat(features, "AF_PACKET ", sizeof(features));
720 #endif
721 #ifdef HAVE_NETMAP
722  strlcat(features, "NETMAP ", sizeof(features));
723 #endif
724 #ifdef HAVE_PACKET_FANOUT
725  strlcat(features, "HAVE_PACKET_FANOUT ", sizeof(features));
726 #endif
727 #ifdef HAVE_DAG
728  strlcat(features, "DAG ", sizeof(features));
729 #endif
730 #ifdef HAVE_LIBCAP_NG
731  strlcat(features, "LIBCAP_NG ", sizeof(features));
732 #endif
733 #ifdef HAVE_LIBNET11
734  strlcat(features, "LIBNET1.1 ", sizeof(features));
735 #endif
736 #ifdef HAVE_HTP_URI_NORMALIZE_HOOK
737  strlcat(features, "HAVE_HTP_URI_NORMALIZE_HOOK ", sizeof(features));
738 #endif
739 #ifdef PCRE2_HAVE_JIT
740  strlcat(features, "PCRE_JIT ", sizeof(features));
741 #endif
742  /* For compatibility, just say we have HAVE_NSS. */
743  strlcat(features, "HAVE_NSS ", sizeof(features));
744  /* HTTP2_DECOMPRESSION is not an optional feature in this major version */
745  strlcat(features, "HTTP2_DECOMPRESSION ", sizeof(features));
746  /* Lua is now vendored in and always available. */
747  strlcat(features, "HAVE_LUA ", sizeof(features));
748 #ifdef HAVE_JA3
749  strlcat(features, "HAVE_JA3 ", sizeof(features));
750 #endif
751 #ifdef HAVE_JA4
752  strlcat(features, "HAVE_JA4 ", sizeof(features));
753 #endif
754  strlcat(features, "HAVE_LIBJANSSON ", sizeof(features));
755 #ifdef PROFILING
756  strlcat(features, "PROFILING ", sizeof(features));
757 #endif
758 #ifdef PROFILE_LOCKING
759  strlcat(features, "PROFILE_LOCKING ", sizeof(features));
760 #endif
761 #if defined(TLS_C11) || defined(TLS_GNU)
762  strlcat(features, "TLS ", sizeof(features));
763 #endif
764 #if defined(TLS_C11)
765  strlcat(features, "TLS_C11 ", sizeof(features));
766 #elif defined(TLS_GNU)
767  strlcat(features, "TLS_GNU ", sizeof(features));
768 #endif
769 #ifdef HAVE_MAGIC
770  strlcat(features, "MAGIC ", sizeof(features));
771 #endif
772  strlcat(features, "RUST ", sizeof(features));
773 #if defined(SC_ADDRESS_SANITIZER)
774  strlcat(features, "ASAN ", sizeof(features));
775 #endif
776 #if defined(HAVE_POPCNT64)
777  strlcat(features, "POPCNT64 ", sizeof(features));
778 #endif
779  if (strlen(features) == 0) {
780  strlcat(features, "none", sizeof(features));
781  }
782 
783  printf("Features: %s\n", features);
784 
785  /* SIMD stuff */
786  memset(features, 0x00, sizeof(features));
787 #if defined(__SSE4_2__)
788  strlcat(features, "SSE_4_2 ", sizeof(features));
789 #endif
790 #if defined(__SSE4_1__)
791  strlcat(features, "SSE_4_1 ", sizeof(features));
792 #endif
793 #if defined(__SSE3__)
794  strlcat(features, "SSE_3 ", sizeof(features));
795 #endif
796 #if defined(__SSE2__)
797  strlcat(features, "SSE_2 ", sizeof(features));
798 #endif
799  if (strlen(features) == 0) {
800  strlcat(features, "none", sizeof(features));
801  }
802  printf("SIMD support: %s\n", features);
803 
804  /* atomics stuff */
805  memset(features, 0x00, sizeof(features));
806 #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1)
807  strlcat(features, "1 ", sizeof(features));
808 #endif
809 #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2)
810  strlcat(features, "2 ", sizeof(features));
811 #endif
812 #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
813  strlcat(features, "4 ", sizeof(features));
814 #endif
815 #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8)
816  strlcat(features, "8 ", sizeof(features));
817 #endif
818 #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16)
819  strlcat(features, "16 ", sizeof(features));
820 #endif
821  if (strlen(features) == 0) {
822  strlcat(features, "none", sizeof(features));
823  } else {
824  strlcat(features, "byte(s)", sizeof(features));
825  }
826  printf("Atomic intrinsics: %s\n", features);
827 
828 #if __WORDSIZE == 64
829  bits = "64-bits";
830 #elif __WORDSIZE == 32
831  bits = "32-bits";
832 #else
833  bits = "<unknown>-bits";
834 #endif
835 
836 #if __BYTE_ORDER == __BIG_ENDIAN
837  endian = "Big-endian";
838 #elif __BYTE_ORDER == __LITTLE_ENDIAN
839  endian = "Little-endian";
840 #else
841  endian = "<unknown>-endian";
842 #endif
843 
844  printf("%s, %s architecture\n", bits, endian);
845 #ifdef __GNUC__
846  printf("GCC version %s, C version %"PRIiMAX"\n", __VERSION__, (intmax_t)__STDC_VERSION__);
847 #else
848  printf("C version %"PRIiMAX"\n", (intmax_t)__STDC_VERSION__);
849 #endif
850 
851 #if __SSP__ == 1
852  printf("compiled with -fstack-protector\n");
853 #endif
854 #if __SSP_ALL__ == 2
855  printf("compiled with -fstack-protector-all\n");
856 #endif
857 /*
858  * Workaround for special defines of _FORTIFY_SOURCE like
859  * FORTIFY_SOURCE=((defined __OPTIMIZE && OPTIMIZE > 0) ? 2 : 0)
860  * which is used by Gentoo for example and would result in the error
861  * 'defined' undeclared when _FORTIFY_SOURCE used via %d in printf func
862  *
863  */
864 #if _FORTIFY_SOURCE == 2
865  printf("compiled with _FORTIFY_SOURCE=2\n");
866 #elif _FORTIFY_SOURCE == 1
867  printf("compiled with _FORTIFY_SOURCE=1\n");
868 #elif _FORTIFY_SOURCE == 0
869  printf("compiled with _FORTIFY_SOURCE=0\n");
870 #endif
871 #ifdef CLS
872  printf("L1 cache line size (CLS)=%d\n", CLS);
873 #endif
874 #if defined(TLS_C11)
875  tls = "_Thread_local";
876 #elif defined(TLS_GNU)
877  tls = "__thread";
878 #else
879 #error "Unsupported thread local"
880 #endif
881  printf("thread local storage method: %s\n", tls);
882 
883  printf("compiled with %s, linked against %s\n",
884  HTP_VERSION_STRING_FULL, htp_get_version());
885  printf("\n");
886 #include "build-info.h"
887 }
888 
892 
894 {
895  /* commanders */
897  /* managers */
901  /* nfq */
905  /* ipfw */
909  /* pcap live */
912  /* pcap file */
915  /* af-packet */
918  /* af-xdp */
921  /* netmap */
924  /* dag file */
927  /* dag live */
930  /* napatech */
933 
934  /* flow worker */
936  /* respond-reject */
938 
939  /* log api */
942 
944  /* nflog */
947 
948  /* windivert */
952 
953  /* Dpdk */
956 }
957 
959 {
960  SCEnter();
961 
962  SCInstance *suri = &suricata;
963 
964  if (suri->conf_filename == NULL)
966 
967  if (ConfYamlLoadFile(suri->conf_filename) != 0) {
968  /* Error already displayed. */
970  }
971 
972  if (suri->additional_configs) {
973  for (int i = 0; suri->additional_configs[i] != NULL; i++) {
974  SCLogConfig("Loading additional configuration file %s", suri->additional_configs[i]);
976  }
977  }
978 
980 }
981 
982 static TmEcode ParseInterfacesList(const int runmode, char *pcap_dev)
983 {
984  SCEnter();
985 
986  /* run the selected runmode */
987  if (runmode == RUNMODE_PCAP_DEV) {
988  if (strlen(pcap_dev) == 0) {
989  int ret = LiveBuildDeviceList("pcap");
990  if (ret == 0) {
991  SCLogError("No interface found in config for pcap");
993  }
994  }
995  } else if (runmode == RUNMODE_PLUGIN) {
996  if (strcmp(suricata.capture_plugin_name, "pfring") == 0) {
997  /* Special handling for pfring. */
998  if (strlen(pcap_dev)) {
999  if (ConfSetFinal("pfring.live-interface", pcap_dev) != 1) {
1000  SCLogError("Failed to set pfring.live-interface");
1002  }
1003  }
1004  }
1005 #ifdef HAVE_DPDK
1006  } else if (runmode == RUNMODE_DPDK) {
1007  char iface_selector[] = "dpdk.interfaces";
1008  int ret = LiveBuildDeviceList(iface_selector);
1009  if (ret == 0) {
1010  SCLogError("No interface found in config for %s", iface_selector);
1012  }
1013 #endif
1014 #ifdef HAVE_AF_PACKET
1015  } else if (runmode == RUNMODE_AFP_DEV) {
1016  /* iface has been set on command line */
1017  if (strlen(pcap_dev)) {
1018  if (ConfSetFinal("af-packet.live-interface", pcap_dev) != 1) {
1019  SCLogError("Failed to set af-packet.live-interface");
1021  }
1022  } else {
1023  int ret = LiveBuildDeviceList("af-packet");
1024  if (ret == 0) {
1025  SCLogError("No interface found in config for af-packet");
1027  }
1028  }
1029 #endif
1030 #ifdef HAVE_AF_XDP
1031  } else if (runmode == RUNMODE_AFXDP_DEV) {
1032  /* iface has been set on command line */
1033  if (strlen(pcap_dev)) {
1034  if (ConfSetFinal("af-xdp.live-interface", pcap_dev) != 1) {
1035  SCLogError("Failed to set af-xdp.live-interface");
1037  }
1038  } else {
1039  int ret = LiveBuildDeviceList("af-xdp");
1040  if (ret == 0) {
1041  SCLogError("No interface found in config for af-xdp");
1043  }
1044  }
1045 #endif
1046 #ifdef HAVE_NETMAP
1047  } else if (runmode == RUNMODE_NETMAP) {
1048  /* iface has been set on command line */
1049  if (strlen(pcap_dev)) {
1050  if (ConfSetFinal("netmap.live-interface", pcap_dev) != 1) {
1051  SCLogError("Failed to set netmap.live-interface");
1053  }
1054  } else {
1055  int ret = LiveBuildDeviceList("netmap");
1056  if (ret == 0) {
1057  SCLogError("No interface found in config for netmap");
1059  }
1060  }
1061 #endif
1062 #ifdef HAVE_NFLOG
1063  } else if (runmode == RUNMODE_NFLOG) {
1064  int ret = LiveBuildDeviceListCustom("nflog", "group");
1065  if (ret == 0) {
1066  SCLogError("No group found in config for nflog");
1068  }
1069 #endif
1070  }
1071 
1073 }
1074 
1075 static void SCInstanceInit(SCInstance *suri, const char *progname)
1076 {
1077  memset(suri, 0x00, sizeof(*suri));
1078 
1079  suri->progname = progname;
1080  suri->run_mode = RUNMODE_UNKNOWN;
1081 
1082  memset(suri->pcap_dev, 0, sizeof(suri->pcap_dev));
1083  suri->sig_file = NULL;
1084  suri->sig_file_exclusive = false;
1085  suri->pid_filename = NULL;
1086  suri->regex_arg = NULL;
1087 
1088  suri->keyword_info = NULL;
1089  suri->runmode_custom_mode = NULL;
1090 #ifndef OS_WIN32
1091  suri->user_name = NULL;
1092  suri->group_name = NULL;
1093  suri->do_setuid = false;
1094  suri->do_setgid = false;
1095 #endif /* OS_WIN32 */
1096  suri->userid = 0;
1097  suri->groupid = 0;
1098  suri->delayed_detect = 0;
1099  suri->daemon = 0;
1100  suri->offline = 0;
1101  suri->verbose = 0;
1102  /* use -1 as unknown */
1103  suri->checksum_validation = -1;
1104 #if HAVE_DETECT_DISABLED==1
1105  g_detect_disabled = suri->disabled_detect = 1;
1106 #else
1107  g_detect_disabled = suri->disabled_detect = 0;
1108 #endif
1109 }
1110 
1111 const char *GetDocURL(void)
1112 {
1113  const char *prog_ver = GetProgramVersion();
1114  if (strstr(prog_ver, "RELEASE") != NULL) {
1115  return DOC_URL "suricata-" PROG_VER;
1116  }
1117  return DOC_URL "latest";
1118 }
1119 
1120 /** \brief get string with program version
1121  *
1122  * Get the program version as passed to us from AC_INIT
1123  *
1124  * Add 'RELEASE' is no '-dev' in the version. Add the REVISION if passed
1125  * to us.
1126  *
1127  * Possible outputs:
1128  * release: '5.0.1 RELEASE'
1129  * dev with rev: '5.0.1-dev (64a789bbf 2019-10-18)'
1130  * dev w/o rev: '5.0.1-dev'
1131  */
1132 const char *GetProgramVersion(void)
1133 {
1134  if (strstr(PROG_VER, "-dev") == NULL) {
1135  return PROG_VER " RELEASE";
1136  } else {
1137 #ifdef REVISION
1138  return PROG_VER " (" xstr(REVISION) ")";
1139 #else
1140  return PROG_VER;
1141 #endif
1142  }
1143 }
1144 
1145 static TmEcode PrintVersion(void)
1146 {
1147  printf("This is %s version %s\n", PROG_NAME, GetProgramVersion());
1148  return TM_ECODE_OK;
1149 }
1150 
1151 static TmEcode LogVersion(SCInstance *suri)
1152 {
1153  const char *mode = suri->system ? "SYSTEM" : "USER";
1154  SCLogNotice("This is %s version %s running in %s mode",
1155  PROG_NAME, GetProgramVersion(), mode);
1156  return TM_ECODE_OK;
1157 }
1158 
1159 static void SCSetStartTime(SCInstance *suri)
1160 {
1161  memset(&suri->start_time, 0, sizeof(suri->start_time));
1162  gettimeofday(&suri->start_time, NULL);
1163 }
1164 
1165 static void SCPrintElapsedTime(struct timeval *start_time)
1166 {
1167  if (start_time == NULL)
1168  return;
1169  struct timeval end_time;
1170  memset(&end_time, 0, sizeof(end_time));
1171  gettimeofday(&end_time, NULL);
1172  uint64_t milliseconds = ((end_time.tv_sec - start_time->tv_sec) * 1000) +
1173  (((1000000 + end_time.tv_usec - start_time->tv_usec) / 1000) - 1000);
1174  SCLogInfo("time elapsed %.3fs", (float)milliseconds/(float)1000);
1175 }
1176 
1177 static int ParseCommandLineAfpacket(SCInstance *suri, const char *in_arg)
1178 {
1179 #ifdef HAVE_AF_PACKET
1180  if (suri->run_mode == RUNMODE_UNKNOWN) {
1181  suri->run_mode = RUNMODE_AFP_DEV;
1182  if (in_arg) {
1183  LiveRegisterDeviceName(in_arg);
1184  memset(suri->pcap_dev, 0, sizeof(suri->pcap_dev));
1185  strlcpy(suri->pcap_dev, in_arg, sizeof(suri->pcap_dev));
1186  }
1187  } else if (suri->run_mode == RUNMODE_AFP_DEV) {
1188  if (in_arg) {
1189  LiveRegisterDeviceName(in_arg);
1190  } else {
1191  SCLogInfo("Multiple af-packet option without interface on each is useless");
1192  }
1193  } else {
1194  SCLogError("more than one run mode "
1195  "has been specified");
1196  PrintUsage(suri->progname);
1197  return TM_ECODE_FAILED;
1198  }
1199  return TM_ECODE_OK;
1200 #else
1201  SCLogError("AF_PACKET not enabled. On Linux "
1202  "host, make sure to pass --enable-af-packet to "
1203  "configure when building.");
1204  return TM_ECODE_FAILED;
1205 #endif
1206 }
1207 
1208 static int ParseCommandLineAfxdp(SCInstance *suri, const char *in_arg)
1209 {
1210 #ifdef HAVE_AF_XDP
1211  if (suri->run_mode == RUNMODE_UNKNOWN) {
1212  suri->run_mode = RUNMODE_AFXDP_DEV;
1213  if (in_arg) {
1214  LiveRegisterDeviceName(in_arg);
1215  memset(suri->pcap_dev, 0, sizeof(suri->pcap_dev));
1216  strlcpy(suri->pcap_dev, in_arg, sizeof(suri->pcap_dev));
1217  }
1218  } else if (suri->run_mode == RUNMODE_AFXDP_DEV) {
1219  if (in_arg) {
1220  LiveRegisterDeviceName(in_arg);
1221  } else {
1222  SCLogInfo("Multiple af-xdp options without interface on each is useless");
1223  }
1224  } else {
1225  SCLogError("more than one run mode "
1226  "has been specified");
1227  PrintUsage(suri->progname);
1228  return TM_ECODE_FAILED;
1229  }
1230  return TM_ECODE_OK;
1231 #else
1232  SCLogError("AF_XDP not enabled. On Linux "
1233  "host, make sure correct libraries are installed,"
1234  " see documentation for information.");
1235  return TM_ECODE_FAILED;
1236 #endif
1237 }
1238 
1239 static int ParseCommandLineDpdk(SCInstance *suri, const char *in_arg)
1240 {
1241 #ifdef HAVE_DPDK
1242  if (suri->run_mode == RUNMODE_UNKNOWN) {
1243  suri->run_mode = RUNMODE_DPDK;
1244  } else if (suri->run_mode == RUNMODE_DPDK) {
1245  SCLogInfo("Multiple dpdk options have no effect on Suricata");
1246  } else {
1247  SCLogError("more than one run mode "
1248  "has been specified");
1249  PrintUsage(suri->progname);
1250  return TM_ECODE_FAILED;
1251  }
1252  return TM_ECODE_OK;
1253 #else
1254  SCLogError("DPDK not enabled. On Linux "
1255  "host, make sure to pass --enable-dpdk to "
1256  "configure when building.");
1257  return TM_ECODE_FAILED;
1258 #endif
1259 }
1260 
1261 static int ParseCommandLinePcapLive(SCInstance *suri, const char *in_arg)
1262 {
1263 #if defined(OS_WIN32) && !defined(HAVE_LIBWPCAP)
1264  /* If running on Windows without Npcap, bail early as live capture is not supported. */
1265  FatalError("Live capture not available. To support live capture compile against Npcap.");
1266 #endif
1267  memset(suri->pcap_dev, 0, sizeof(suri->pcap_dev));
1268 
1269  if (in_arg != NULL) {
1270  /* some windows shells require escaping of the \ in \Device. Otherwise
1271  * the backslashes are stripped. We put them back here. */
1272  if (strlen(in_arg) > 9 && strncmp(in_arg, "DeviceNPF", 9) == 0) {
1273  snprintf(suri->pcap_dev, sizeof(suri->pcap_dev), "\\Device\\NPF%s", in_arg+9);
1274  } else {
1275  strlcpy(suri->pcap_dev, in_arg, sizeof(suri->pcap_dev));
1276  PcapTranslateIPToDevice(suri->pcap_dev, sizeof(suri->pcap_dev));
1277  }
1278 
1279  if (strcmp(suri->pcap_dev, in_arg) != 0) {
1280  SCLogInfo("translated %s to pcap device %s", in_arg, suri->pcap_dev);
1281  } else if (strlen(suri->pcap_dev) > 0 && isdigit((unsigned char)suri->pcap_dev[0])) {
1282  SCLogError("failed to find a pcap device for IP %s", in_arg);
1283  return TM_ECODE_FAILED;
1284  }
1285  }
1286 
1287  if (suri->run_mode == RUNMODE_UNKNOWN) {
1288  suri->run_mode = RUNMODE_PCAP_DEV;
1289  if (in_arg) {
1291  }
1292  } else if (suri->run_mode == RUNMODE_PCAP_DEV) {
1294  } else {
1295  SCLogError("more than one run mode "
1296  "has been specified");
1297  PrintUsage(suri->progname);
1298  return TM_ECODE_FAILED;
1299  }
1300  return TM_ECODE_OK;
1301 }
1302 
1303 /**
1304  * Helper function to check if log directory is writable
1305  */
1306 static bool IsLogDirectoryWritable(const char* str)
1307 {
1308  if (access(str, W_OK) == 0)
1309  return true;
1310  return false;
1311 }
1312 
1313 extern int g_skip_prefilter;
1314 
1315 TmEcode SCParseCommandLine(int argc, char **argv)
1316 {
1317  SCInstance *suri = &suricata;
1318  int opt;
1319 
1320  int dump_config = 0;
1321  int dump_features = 0;
1322  int list_app_layer_protocols = 0;
1323  int list_unittests = 0;
1324  int list_runmodes = 0;
1325  int list_keywords = 0;
1326  int build_info = 0;
1327  int conf_test = 0;
1328  int engine_analysis = 0;
1329  int ret = TM_ECODE_OK;
1330 
1331 #ifdef UNITTESTS
1332  coverage_unittests = 0;
1333  g_ut_modules = 0;
1334  g_ut_covered = 0;
1335 #endif
1336 
1337  // clang-format off
1338  struct option long_opts[] = {
1339  {"dump-config", 0, &dump_config, 1},
1340  {"dump-features", 0, &dump_features, 1},
1341  {"pfring", optional_argument, 0, 0},
1342  {"pfring-int", required_argument, 0, 0},
1343  {"pfring-cluster-id", required_argument, 0, 0},
1344  {"pfring-cluster-type", required_argument, 0, 0},
1345 #ifdef HAVE_DPDK
1346  {"dpdk", 0, 0, 0},
1347 #endif
1348  {"af-packet", optional_argument, 0, 0},
1349  {"af-xdp", optional_argument, 0, 0},
1350  {"netmap", optional_argument, 0, 0},
1351  {"pcap", optional_argument, 0, 0},
1352  {"pcap-file-continuous", 0, 0, 0},
1353  {"pcap-file-delete", 0, 0, 0},
1354  {"pcap-file-recursive", 0, 0, 0},
1355  {"pcap-file-buffer-size", required_argument, 0, 0},
1356  {"simulate-ips", 0, 0 , 0},
1357  {"no-random", 0, &g_disable_randomness, 1},
1358  {"strict-rule-keywords", optional_argument, 0, 0},
1359 
1360  {"capture-plugin", required_argument, 0, 0},
1361  {"capture-plugin-args", required_argument, 0, 0},
1362 
1363 #ifdef BUILD_UNIX_SOCKET
1364  {"unix-socket", optional_argument, 0, 0},
1365 #endif
1366  {"pcap-buffer-size", required_argument, 0, 0},
1367  {"unittest-filter", required_argument, 0, 'U'},
1368  {"list-app-layer-protos", 0, &list_app_layer_protocols, 1},
1369  {"list-unittests", 0, &list_unittests, 1},
1370  {"list-runmodes", 0, &list_runmodes, 1},
1371  {"list-keywords", optional_argument, &list_keywords, 1},
1372  {"runmode", required_argument, NULL, 0},
1373  {"engine-analysis", 0, &engine_analysis, 1},
1374 #ifdef OS_WIN32
1375  {"service-install", 0, 0, 0},
1376  {"service-remove", 0, 0, 0},
1377  {"service-change-params", 0, 0, 0},
1378 #endif /* OS_WIN32 */
1379  {"pidfile", required_argument, 0, 0},
1380  {"init-errors-fatal", 0, 0, 0},
1381  {"disable-detection", 0, 0, 0},
1382  {"disable-hashing", 0, 0, 0},
1383  {"fatal-unittests", 0, 0, 0},
1384  {"unittests-coverage", 0, &coverage_unittests, 1},
1385  {"user", required_argument, 0, 0},
1386  {"group", required_argument, 0, 0},
1387  {"erf-in", required_argument, 0, 0},
1388  {"dag", required_argument, 0, 0},
1389  {"napatech", 0, 0, 0},
1390  {"build-info", 0, &build_info, 1},
1391  {"data-dir", required_argument, 0, 0},
1392 #ifdef WINDIVERT
1393  {"windivert", required_argument, 0, 0},
1394  {"windivert-forward", required_argument, 0, 0},
1395 #endif
1396 #ifdef HAVE_LIBNET11
1397  {"reject-dev", required_argument, 0, 0},
1398 #endif
1399  {"set", required_argument, 0, 0},
1400 #ifdef HAVE_NFLOG
1401  {"nflog", optional_argument, 0, 0},
1402 #endif
1403  {"simulate-packet-flow-memcap", required_argument, 0, 0},
1404  {"simulate-applayer-error-at-offset-ts", required_argument, 0, 0},
1405  {"simulate-applayer-error-at-offset-tc", required_argument, 0, 0},
1406  {"simulate-packet-loss", required_argument, 0, 0},
1407  {"simulate-packet-tcp-reassembly-memcap", required_argument, 0, 0},
1408  {"simulate-packet-tcp-ssn-memcap", required_argument, 0, 0},
1409  {"simulate-packet-defrag-memcap", required_argument, 0, 0},
1410  {"simulate-alert-queue-realloc-failure", 0, 0, 0},
1411 
1412  {"qa-skip-prefilter", 0, &g_skip_prefilter, 1 },
1413 
1414  {"include", required_argument, 0, 0},
1415 
1416  {NULL, 0, NULL, 0}
1417  };
1418  // clang-format on
1419 
1420  /* getopt_long stores the option index here. */
1421  int option_index = 0;
1422 
1423  char short_opts[] = "c:TDhi:l:q:d:r:us:S:U:VF:vk:";
1424 
1425  while ((opt = getopt_long(argc, argv, short_opts, long_opts, &option_index)) != -1) {
1426  switch (opt) {
1427  case 0:
1428  if (strcmp((long_opts[option_index]).name , "pfring") == 0 ||
1429  strcmp((long_opts[option_index]).name , "pfring-int") == 0) {
1430 #ifdef HAVE_PFRING
1431  /* TODO: Which plugin? */
1432  suri->run_mode = RUNMODE_PLUGIN;
1433  suri->capture_plugin_name = "pfring";
1434  if (optarg != NULL) {
1435  memset(suri->pcap_dev, 0, sizeof(suri->pcap_dev));
1436  strlcpy(suri->pcap_dev, optarg,
1437  ((strlen(optarg) < sizeof(suri->pcap_dev)) ?
1438  (strlen(optarg) + 1) : sizeof(suri->pcap_dev)));
1439  LiveRegisterDeviceName(optarg);
1440  }
1441 #else
1442  SCLogError("PF_RING not enabled. Make sure "
1443  "to pass --enable-pfring to configure when building.");
1444  return TM_ECODE_FAILED;
1445 #endif /* HAVE_PFRING */
1446  }
1447  else if(strcmp((long_opts[option_index]).name , "pfring-cluster-id") == 0){
1448 #ifdef HAVE_PFRING
1449  if (ConfSetFinal("pfring.cluster-id", optarg) != 1) {
1450  SCLogError("failed to set pfring.cluster-id");
1451  return TM_ECODE_FAILED;
1452  }
1453 #else
1454  SCLogError("PF_RING not enabled. Make sure "
1455  "to pass --enable-pfring to configure when building.");
1456  return TM_ECODE_FAILED;
1457 #endif /* HAVE_PFRING */
1458  }
1459  else if(strcmp((long_opts[option_index]).name , "pfring-cluster-type") == 0){
1460 #ifdef HAVE_PFRING
1461  if (ConfSetFinal("pfring.cluster-type", optarg) != 1) {
1462  SCLogError("failed to set pfring.cluster-type");
1463  return TM_ECODE_FAILED;
1464  }
1465 #else
1466  SCLogError("PF_RING not enabled. Make sure "
1467  "to pass --enable-pfring to configure when building.");
1468  return TM_ECODE_FAILED;
1469 #endif /* HAVE_PFRING */
1470  }
1471  else if (strcmp((long_opts[option_index]).name , "capture-plugin") == 0){
1472  suri->run_mode = RUNMODE_PLUGIN;
1473  suri->capture_plugin_name = optarg;
1474  }
1475  else if (strcmp((long_opts[option_index]).name , "capture-plugin-args") == 0){
1476  suri->capture_plugin_args = optarg;
1477  } else if (strcmp((long_opts[option_index]).name, "dpdk") == 0) {
1478  if (ParseCommandLineDpdk(suri, optarg) != TM_ECODE_OK) {
1479  return TM_ECODE_FAILED;
1480  }
1481  } else if (strcmp((long_opts[option_index]).name, "af-packet") == 0) {
1482  if (ParseCommandLineAfpacket(suri, optarg) != TM_ECODE_OK) {
1483  return TM_ECODE_FAILED;
1484  }
1485  } else if (strcmp((long_opts[option_index]).name, "af-xdp") == 0) {
1486  if (ParseCommandLineAfxdp(suri, optarg) != TM_ECODE_OK) {
1487  return TM_ECODE_FAILED;
1488  }
1489  } else if (strcmp((long_opts[option_index]).name, "netmap") == 0) {
1490 #ifdef HAVE_NETMAP
1491  if (suri->run_mode == RUNMODE_UNKNOWN) {
1492  suri->run_mode = RUNMODE_NETMAP;
1493  if (optarg) {
1494  LiveRegisterDeviceName(optarg);
1495  memset(suri->pcap_dev, 0, sizeof(suri->pcap_dev));
1496  strlcpy(suri->pcap_dev, optarg,
1497  ((strlen(optarg) < sizeof(suri->pcap_dev)) ?
1498  (strlen(optarg) + 1) : sizeof(suri->pcap_dev)));
1499  }
1500  } else if (suri->run_mode == RUNMODE_NETMAP) {
1501  if (optarg) {
1502  LiveRegisterDeviceName(optarg);
1503  } else {
1504  SCLogInfo("Multiple netmap option without interface on each is useless");
1505  break;
1506  }
1507  } else {
1508  SCLogError("more than one run mode "
1509  "has been specified");
1510  PrintUsage(argv[0]);
1511  return TM_ECODE_FAILED;
1512  }
1513 #else
1514  SCLogError("NETMAP not enabled.");
1515  return TM_ECODE_FAILED;
1516 #endif
1517  } else if (strcmp((long_opts[option_index]).name, "nflog") == 0) {
1518 #ifdef HAVE_NFLOG
1519  if (suri->run_mode == RUNMODE_UNKNOWN) {
1520  suri->run_mode = RUNMODE_NFLOG;
1521  LiveBuildDeviceListCustom("nflog", "group");
1522  }
1523 #else
1524  SCLogError("NFLOG not enabled.");
1525  return TM_ECODE_FAILED;
1526 #endif /* HAVE_NFLOG */
1527  } else if (strcmp((long_opts[option_index]).name, "pcap") == 0) {
1528  if (ParseCommandLinePcapLive(suri, optarg) != TM_ECODE_OK) {
1529  return TM_ECODE_FAILED;
1530  }
1531  } else if (strcmp((long_opts[option_index]).name, "simulate-ips") == 0) {
1532  SCLogInfo("Setting IPS mode");
1533  EngineModeSetIPS();
1534  } else if (strcmp((long_opts[option_index]).name, "init-errors-fatal") == 0) {
1535  if (ConfSetFinal("engine.init-failure-fatal", "1") != 1) {
1536  SCLogError("failed to set engine init-failure-fatal");
1537  return TM_ECODE_FAILED;
1538  }
1539 #ifdef BUILD_UNIX_SOCKET
1540  } else if (strcmp((long_opts[option_index]).name , "unix-socket") == 0) {
1541  if (suri->run_mode == RUNMODE_UNKNOWN) {
1542  suri->run_mode = RUNMODE_UNIX_SOCKET;
1543  if (optarg) {
1544  if (ConfSetFinal("unix-command.filename", optarg) != 1) {
1545  SCLogError("failed to set unix-command.filename");
1546  return TM_ECODE_FAILED;
1547  }
1548 
1549  }
1550  } else {
1551  SCLogError("more than one run mode "
1552  "has been specified");
1553  PrintUsage(argv[0]);
1554  return TM_ECODE_FAILED;
1555  }
1556 #endif
1557  }
1558  else if(strcmp((long_opts[option_index]).name, "list-app-layer-protocols") == 0) {
1559  /* listing all supported app layer protocols */
1560  }
1561  else if(strcmp((long_opts[option_index]).name, "list-unittests") == 0) {
1562 #ifdef UNITTESTS
1564 #else
1565  SCLogError("unit tests not enabled. Make sure to pass --enable-unittests to "
1566  "configure when building");
1567  return TM_ECODE_FAILED;
1568 #endif /* UNITTESTS */
1569  } else if (strcmp((long_opts[option_index]).name, "list-runmodes") == 0) {
1571  return TM_ECODE_OK;
1572  } else if (strcmp((long_opts[option_index]).name, "list-keywords") == 0) {
1573  if (optarg) {
1574  if (strcmp("short",optarg)) {
1575  suri->keyword_info = optarg;
1576  }
1577  }
1578  } else if (strcmp((long_opts[option_index]).name, "runmode") == 0) {
1579  suri->runmode_custom_mode = optarg;
1580  } else if(strcmp((long_opts[option_index]).name, "engine-analysis") == 0) {
1581  // do nothing for now
1582  }
1583 #ifdef OS_WIN32
1584  else if(strcmp((long_opts[option_index]).name, "service-install") == 0) {
1585  suri->run_mode = RUNMODE_INSTALL_SERVICE;
1586  return TM_ECODE_OK;
1587  }
1588  else if(strcmp((long_opts[option_index]).name, "service-remove") == 0) {
1589  suri->run_mode = RUNMODE_REMOVE_SERVICE;
1590  return TM_ECODE_OK;
1591  }
1592  else if(strcmp((long_opts[option_index]).name, "service-change-params") == 0) {
1593  suri->run_mode = RUNMODE_CHANGE_SERVICE_PARAMS;
1594  return TM_ECODE_OK;
1595  }
1596 #endif /* OS_WIN32 */
1597  else if(strcmp((long_opts[option_index]).name, "pidfile") == 0) {
1598  suri->pid_filename = SCStrdup(optarg);
1599  if (suri->pid_filename == NULL) {
1600  SCLogError("strdup failed: %s", strerror(errno));
1601  return TM_ECODE_FAILED;
1602  }
1603  }
1604  else if(strcmp((long_opts[option_index]).name, "disable-detection") == 0) {
1605  g_detect_disabled = suri->disabled_detect = 1;
1606  } else if (strcmp((long_opts[option_index]).name, "disable-hashing") == 0) {
1607  g_disable_hashing = true;
1608  } else if (strcmp((long_opts[option_index]).name, "fatal-unittests") == 0) {
1609 #ifdef UNITTESTS
1610  unittests_fatal = 1;
1611 #else
1612  SCLogError("unit tests not enabled. Make sure to pass --enable-unittests to "
1613  "configure when building");
1614  return TM_ECODE_FAILED;
1615 #endif /* UNITTESTS */
1616  } else if (strcmp((long_opts[option_index]).name, "user") == 0) {
1617 #ifndef HAVE_LIBCAP_NG
1618  SCLogError("libcap-ng is required to"
1619  " drop privileges, but it was not compiled into Suricata.");
1620  return TM_ECODE_FAILED;
1621 #else
1622  suri->user_name = optarg;
1623  suri->do_setuid = true;
1624 #endif /* HAVE_LIBCAP_NG */
1625  } else if (strcmp((long_opts[option_index]).name, "group") == 0) {
1626 #ifndef HAVE_LIBCAP_NG
1627  SCLogError("libcap-ng is required to"
1628  " drop privileges, but it was not compiled into Suricata.");
1629  return TM_ECODE_FAILED;
1630 #else
1631  suri->group_name = optarg;
1632  suri->do_setgid = true;
1633 #endif /* HAVE_LIBCAP_NG */
1634  } else if (strcmp((long_opts[option_index]).name, "erf-in") == 0) {
1635  suri->run_mode = RUNMODE_ERF_FILE;
1636  if (ConfSetFinal("erf-file.file", optarg) != 1) {
1637  SCLogError("failed to set erf-file.file");
1638  return TM_ECODE_FAILED;
1639  }
1640  } else if (strcmp((long_opts[option_index]).name, "dag") == 0) {
1641 #ifdef HAVE_DAG
1642  if (suri->run_mode == RUNMODE_UNKNOWN) {
1643  suri->run_mode = RUNMODE_DAG;
1644  }
1645  else if (suri->run_mode != RUNMODE_DAG) {
1646  SCLogError("more than one run mode has been specified");
1647  PrintUsage(argv[0]);
1648  return TM_ECODE_FAILED;
1649  }
1650  LiveRegisterDeviceName(optarg);
1651 #else
1652  SCLogError("libdag and a DAG card are required"
1653  " to receive packets using --dag.");
1654  return TM_ECODE_FAILED;
1655 #endif /* HAVE_DAG */
1656  } else if (strcmp((long_opts[option_index]).name, "napatech") == 0) {
1657 #ifdef HAVE_NAPATECH
1658  suri->run_mode = RUNMODE_NAPATECH;
1659 #else
1660  SCLogError("libntapi and a Napatech adapter are required"
1661  " to capture packets using --napatech.");
1662  return TM_ECODE_FAILED;
1663 #endif /* HAVE_NAPATECH */
1664  } else if (strcmp((long_opts[option_index]).name, "pcap-buffer-size") == 0) {
1665 #ifdef HAVE_PCAP_SET_BUFF
1666  if (ConfSetFinal("pcap.buffer-size", optarg) != 1) {
1667  SCLogError("failed to set pcap-buffer-size");
1668  return TM_ECODE_FAILED;
1669  }
1670 #else
1671  SCLogError("The version of libpcap you have"
1672  " doesn't support setting buffer size.");
1673 #endif /* HAVE_PCAP_SET_BUFF */
1674  } else if (strcmp((long_opts[option_index]).name, "build-info") == 0) {
1676  return TM_ECODE_OK;
1677  } else if (strcmp((long_opts[option_index]).name, "windivert-forward") == 0) {
1678 #ifdef WINDIVERT
1679  if (suri->run_mode == RUNMODE_UNKNOWN) {
1680  suri->run_mode = RUNMODE_WINDIVERT;
1681  if (WinDivertRegisterQueue(true, optarg) == -1) {
1682  exit(EXIT_FAILURE);
1683  }
1684  } else if (suri->run_mode == RUNMODE_WINDIVERT) {
1685  if (WinDivertRegisterQueue(true, optarg) == -1) {
1686  exit(EXIT_FAILURE);
1687  }
1688  } else {
1689  SCLogError("more than one run mode "
1690  "has been specified");
1691  PrintUsage(argv[0]);
1692  exit(EXIT_FAILURE);
1693  }
1694  }
1695  else if(strcmp((long_opts[option_index]).name, "windivert") == 0) {
1696  if (suri->run_mode == RUNMODE_UNKNOWN) {
1697  suri->run_mode = RUNMODE_WINDIVERT;
1698  if (WinDivertRegisterQueue(false, optarg) == -1) {
1699  exit(EXIT_FAILURE);
1700  }
1701  } else if (suri->run_mode == RUNMODE_WINDIVERT) {
1702  if (WinDivertRegisterQueue(false, optarg) == -1) {
1703  exit(EXIT_FAILURE);
1704  }
1705  } else {
1706  SCLogError("more than one run mode "
1707  "has been specified");
1708  PrintUsage(argv[0]);
1709  exit(EXIT_FAILURE);
1710  }
1711 #else
1712  SCLogError("WinDivert not enabled. Make sure to pass --enable-windivert to "
1713  "configure when building.");
1714  return TM_ECODE_FAILED;
1715 #endif /* WINDIVERT */
1716  } else if(strcmp((long_opts[option_index]).name, "reject-dev") == 0) {
1717 #ifdef HAVE_LIBNET11
1718  BUG_ON(optarg == NULL); /* for static analysis */
1719  extern char *g_reject_dev;
1720  extern uint16_t g_reject_dev_mtu;
1721  g_reject_dev = optarg;
1722  int mtu = GetIfaceMTU(g_reject_dev);
1723  if (mtu > 0) {
1724  g_reject_dev_mtu = (uint16_t)mtu;
1725  }
1726 #else
1727  SCLogError("Libnet 1.1 support not enabled. Compile Suricata with libnet support.");
1728  return TM_ECODE_FAILED;
1729 #endif
1730  }
1731  else if (strcmp((long_opts[option_index]).name, "set") == 0) {
1732  if (optarg != NULL) {
1733  /* Quick validation. */
1734  char *val = strchr(optarg, '=');
1735  if (val == NULL) {
1736  FatalError("Invalid argument for --set, must be key=val.");
1737  }
1738  if (!ConfSetFromString(optarg, 1)) {
1739  FatalError("failed to set configuration value %s", optarg);
1740  }
1741  }
1742  }
1743  else if (strcmp((long_opts[option_index]).name, "pcap-file-continuous") == 0) {
1744  if (ConfSetFinal("pcap-file.continuous", "true") != 1) {
1745  SCLogError("Failed to set pcap-file.continuous");
1746  return TM_ECODE_FAILED;
1747  }
1748  }
1749  else if (strcmp((long_opts[option_index]).name, "pcap-file-delete") == 0) {
1750  if (ConfSetFinal("pcap-file.delete-when-done", "true") != 1) {
1751  SCLogError("Failed to set pcap-file.delete-when-done");
1752  return TM_ECODE_FAILED;
1753  }
1754  }
1755  else if (strcmp((long_opts[option_index]).name, "pcap-file-recursive") == 0) {
1756  if (ConfSetFinal("pcap-file.recursive", "true") != 1) {
1757  SCLogError("failed to set pcap-file.recursive");
1758  return TM_ECODE_FAILED;
1759  }
1760  } else if (strcmp((long_opts[option_index]).name, "pcap-file-buffer-size") == 0) {
1761  if (ConfSetFinal("pcap-file.buffer-size", optarg) != 1) {
1762  SCLogError("failed to set pcap-file.buffer-size");
1763  return TM_ECODE_FAILED;
1764  }
1765  } else if (strcmp((long_opts[option_index]).name, "data-dir") == 0) {
1766  if (optarg == NULL) {
1767  SCLogError("no option argument (optarg) for -d");
1768  return TM_ECODE_FAILED;
1769  }
1770 
1771  if (ConfigSetDataDirectory(optarg) != TM_ECODE_OK) {
1772  SCLogError("Failed to set data directory.");
1773  return TM_ECODE_FAILED;
1774  }
1775  if (ConfigCheckDataDirectory(optarg) != TM_ECODE_OK) {
1776  SCLogError("The data directory \"%s\""
1777  " supplied at the command-line (-d %s) doesn't "
1778  "exist. Shutting down the engine.",
1779  optarg, optarg);
1780  return TM_ECODE_FAILED;
1781  }
1782  suri->set_datadir = true;
1783  } else if (strcmp((long_opts[option_index]).name, "strict-rule-keywords") == 0) {
1784  if (optarg == NULL) {
1785  suri->strict_rule_parsing_string = SCStrdup("all");
1786  } else {
1787  suri->strict_rule_parsing_string = SCStrdup(optarg);
1788  }
1789  if (suri->strict_rule_parsing_string == NULL) {
1790  FatalError("failed to duplicate 'strict' string");
1791  }
1792  } else if (strcmp((long_opts[option_index]).name, "include") == 0) {
1793  if (suri->additional_configs == NULL) {
1794  suri->additional_configs = SCCalloc(2, sizeof(char *));
1795  if (suri->additional_configs == NULL) {
1796  FatalError(
1797  "Failed to allocate memory for additional configuration files: %s",
1798  strerror(errno));
1799  }
1800  suri->additional_configs[0] = optarg;
1801  } else {
1802  for (int i = 0;; i++) {
1803  if (suri->additional_configs[i] == NULL) {
1804  const char **additional_configs =
1805  SCRealloc(suri->additional_configs, (i + 2) * sizeof(char *));
1806  if (additional_configs == NULL) {
1807  FatalError("Failed to allocate memory for additional configuration "
1808  "files: %s",
1809  strerror(errno));
1810  } else {
1811  suri->additional_configs = additional_configs;
1812  }
1813  suri->additional_configs[i] = optarg;
1814  suri->additional_configs[i + 1] = NULL;
1815  break;
1816  }
1817  }
1818  }
1819  } else {
1821  (long_opts[option_index]).name, optarg);
1822  if (r < 0)
1823  return TM_ECODE_FAILED;
1824  }
1825  break;
1826  case 'c':
1827  suri->conf_filename = optarg;
1828  break;
1829  case 'T':
1830  conf_test = 1;
1831  if (ConfSetFinal("engine.init-failure-fatal", "1") != 1) {
1832  SCLogError("failed to set engine init-failure-fatal");
1833  return TM_ECODE_FAILED;
1834  }
1835  break;
1836 #ifndef OS_WIN32
1837  case 'D':
1838  suri->daemon = 1;
1839  break;
1840 #endif /* OS_WIN32 */
1841  case 'h':
1842  suri->run_mode = RUNMODE_PRINT_USAGE;
1843  return TM_ECODE_OK;
1844  case 'i':
1845  if (optarg == NULL) {
1846  SCLogError("no option argument (optarg) for -i");
1847  return TM_ECODE_FAILED;
1848  }
1849 #ifdef HAVE_AF_PACKET
1850  if (ParseCommandLineAfpacket(suri, optarg) != TM_ECODE_OK) {
1851  return TM_ECODE_FAILED;
1852  }
1853 #else /* not afpacket */
1854  /* warn user if netmap is available */
1855 #if defined HAVE_NETMAP
1856  int i = 0;
1857 #ifdef HAVE_NETMAP
1858  i++;
1859 #endif
1860  SCLogWarning("faster capture "
1861  "option%s %s available:"
1862 #ifdef HAVE_NETMAP
1863  " NETMAP (--netmap=%s)"
1864 #endif
1865  ". Use --pcap=%s to suppress this warning",
1866  i == 1 ? "" : "s", i == 1 ? "is" : "are"
1867 #ifdef HAVE_NETMAP
1868  ,
1869  optarg
1870 #endif
1871  ,
1872  optarg);
1873 #endif /* have faster methods */
1874  if (ParseCommandLinePcapLive(suri, optarg) != TM_ECODE_OK) {
1875  return TM_ECODE_FAILED;
1876  }
1877 #endif
1878  break;
1879  case 'l':
1880  if (optarg == NULL) {
1881  SCLogError("no option argument (optarg) for -l");
1882  return TM_ECODE_FAILED;
1883  }
1884 
1885  if (ConfigSetLogDirectory(optarg) != TM_ECODE_OK) {
1886  SCLogError("Failed to set log directory.");
1887  return TM_ECODE_FAILED;
1888  }
1889  if (ConfigCheckLogDirectoryExists(optarg) != TM_ECODE_OK) {
1890  SCLogError("The logging directory \"%s\""
1891  " supplied at the command-line (-l %s) doesn't "
1892  "exist. Shutting down the engine.",
1893  optarg, optarg);
1894  return TM_ECODE_FAILED;
1895  }
1896  if (!IsLogDirectoryWritable(optarg)) {
1897  SCLogError("The logging directory \"%s\""
1898  " supplied at the command-line (-l %s) is not "
1899  "writable. Shutting down the engine.",
1900  optarg, optarg);
1901  return TM_ECODE_FAILED;
1902  }
1903  suri->set_logdir = true;
1904 
1905  break;
1906  case 'q':
1907 #ifdef NFQ
1908  if (suri->run_mode == RUNMODE_UNKNOWN) {
1909  suri->run_mode = RUNMODE_NFQ;
1910  EngineModeSetIPS();
1911  if (NFQParseAndRegisterQueues(optarg) == -1)
1912  return TM_ECODE_FAILED;
1913  } else if (suri->run_mode == RUNMODE_NFQ) {
1914  if (NFQParseAndRegisterQueues(optarg) == -1)
1915  return TM_ECODE_FAILED;
1916  } else {
1917  SCLogError("more than one run mode "
1918  "has been specified");
1919  PrintUsage(argv[0]);
1920  return TM_ECODE_FAILED;
1921  }
1922 #else
1923  SCLogError("NFQUEUE not enabled. Make sure to pass --enable-nfqueue to configure when "
1924  "building.");
1925  return TM_ECODE_FAILED;
1926 #endif /* NFQ */
1927  break;
1928  case 'd':
1929 #ifdef IPFW
1930  if (suri->run_mode == RUNMODE_UNKNOWN) {
1931  suri->run_mode = RUNMODE_IPFW;
1932  EngineModeSetIPS();
1933  if (IPFWRegisterQueue(optarg) == -1)
1934  return TM_ECODE_FAILED;
1935  } else if (suri->run_mode == RUNMODE_IPFW) {
1936  if (IPFWRegisterQueue(optarg) == -1)
1937  return TM_ECODE_FAILED;
1938  } else {
1939  SCLogError("more than one run mode "
1940  "has been specified");
1941  PrintUsage(argv[0]);
1942  return TM_ECODE_FAILED;
1943  }
1944 #else
1945  SCLogError("IPFW not enabled. Make sure to pass --enable-ipfw to configure when "
1946  "building.");
1947  return TM_ECODE_FAILED;
1948 #endif /* IPFW */
1949  break;
1950  case 'r':
1951  BUG_ON(optarg == NULL); /* for static analysis */
1952  if (suri->run_mode == RUNMODE_UNKNOWN) {
1953  suri->run_mode = RUNMODE_PCAP_FILE;
1954  } else {
1955  SCLogError("more than one run mode "
1956  "has been specified");
1957  PrintUsage(argv[0]);
1958  return TM_ECODE_FAILED;
1959  }
1960  SCStat buf;
1961  if (SCStatFn(optarg, &buf) != 0) {
1962  SCLogError("pcap file '%s': %s", optarg, strerror(errno));
1963  return TM_ECODE_FAILED;
1964  }
1965  if (ConfSetFinal("pcap-file.file", optarg) != 1) {
1966  SCLogError("ERROR: Failed to set pcap-file.file\n");
1967  return TM_ECODE_FAILED;
1968  }
1969 
1970  break;
1971  case 's':
1972  if (suri->sig_file != NULL) {
1973  SCLogError("can't have multiple -s options or mix -s and -S.");
1974  return TM_ECODE_FAILED;
1975  }
1976  suri->sig_file = optarg;
1977  break;
1978  case 'S':
1979  if (suri->sig_file != NULL) {
1980  SCLogError("can't have multiple -S options or mix -s and -S.");
1981  return TM_ECODE_FAILED;
1982  }
1983  suri->sig_file = optarg;
1984  suri->sig_file_exclusive = true;
1985  break;
1986  case 'u':
1987 #ifdef UNITTESTS
1988  if (suri->run_mode == RUNMODE_UNKNOWN) {
1989  suri->run_mode = RUNMODE_UNITTEST;
1990  } else {
1991  SCLogError("more than one run mode has"
1992  " been specified");
1993  PrintUsage(argv[0]);
1994  return TM_ECODE_FAILED;
1995  }
1996 #else
1997  SCLogError("unit tests not enabled. Make sure to pass --enable-unittests to configure "
1998  "when building.");
1999  return TM_ECODE_FAILED;
2000 #endif /* UNITTESTS */
2001  break;
2002  case 'U':
2003 #ifdef UNITTESTS
2004  suri->regex_arg = optarg;
2005 
2006  if(strlen(suri->regex_arg) == 0)
2007  suri->regex_arg = NULL;
2008 #endif
2009  break;
2010  case 'V':
2012  return TM_ECODE_OK;
2013  case 'F':
2014  if (optarg == NULL) {
2015  SCLogError("no option argument (optarg) for -F");
2016  return TM_ECODE_FAILED;
2017  }
2018 
2019  SetBpfStringFromFile(optarg);
2020  break;
2021  case 'v':
2022  suri->verbose++;
2023  break;
2024  case 'k':
2025  if (optarg == NULL) {
2026  SCLogError("no option argument (optarg) for -k");
2027  return TM_ECODE_FAILED;
2028  }
2029  if (!strcmp("all", optarg))
2030  suri->checksum_validation = 1;
2031  else if (!strcmp("none", optarg))
2032  suri->checksum_validation = 0;
2033  else {
2034  SCLogError("option '%s' invalid for -k", optarg);
2035  return TM_ECODE_FAILED;
2036  }
2037  break;
2038  default:
2039  PrintUsage(argv[0]);
2040  return TM_ECODE_FAILED;
2041  }
2042  }
2043 
2044  if (suri->disabled_detect && suri->sig_file != NULL) {
2045  SCLogError("can't use -s/-S when detection is disabled");
2046  return TM_ECODE_FAILED;
2047  }
2048 
2049  /* save the runmode from the command-line (if any) */
2050  suri->aux_run_mode = suri->run_mode;
2051 
2052  if (list_app_layer_protocols)
2054  if (list_keywords)
2056  if (list_unittests)
2058  if (dump_config)
2059  suri->run_mode = RUNMODE_DUMP_CONFIG;
2060  if (dump_features)
2062  if (conf_test)
2063  suri->run_mode = RUNMODE_CONF_TEST;
2064  if (engine_analysis)
2066 
2067  suri->offline = IsRunModeOffline(suri->run_mode);
2068  g_system = suri->system = IsRunModeSystem(suri->run_mode);
2069 
2070  ret = SetBpfString(optind, argv);
2071  if (ret != TM_ECODE_OK)
2072  return ret;
2073 
2074  return TM_ECODE_OK;
2075 }
2076 
2077 #ifdef OS_WIN32
2078 int WindowsInitService(int argc, char **argv)
2079 {
2080  if (SCRunningAsService()) {
2081  char path[MAX_PATH];
2082  char *p = NULL;
2083  strlcpy(path, argv[0], MAX_PATH);
2084  if ((p = strrchr(path, '\\'))) {
2085  *p = '\0';
2086  }
2087  if (!SetCurrentDirectory(path)) {
2088  SCLogError("Can't set current directory to: %s", path);
2089  return -1;
2090  }
2091  SCLogInfo("Current directory is set to: %s", path);
2092  SCServiceInit(argc, argv);
2093  }
2094 
2095  /* Windows socket subsystem initialization */
2096  WSADATA wsaData;
2097  if (0 != WSAStartup(MAKEWORD(2, 2), &wsaData)) {
2098  SCLogError("Can't initialize Windows sockets: %d", WSAGetLastError());
2099  return -1;
2100  }
2101 
2102  return 0;
2103 }
2104 #endif /* OS_WIN32 */
2105 
2106 static int MayDaemonize(SCInstance *suri)
2107 {
2108  if (suri->daemon == 1 && suri->pid_filename == NULL) {
2109  const char *pid_filename;
2110 
2111  if (ConfGet("pid-file", &pid_filename) == 1) {
2112  SCLogInfo("Use pid file %s from config file.", pid_filename);
2113  } else {
2114  pid_filename = DEFAULT_PID_FILENAME;
2115  }
2116  /* The pid file name may be in config memory, but is needed later. */
2117  suri->pid_filename = SCStrdup(pid_filename);
2118  if (suri->pid_filename == NULL) {
2119  SCLogError("strdup failed: %s", strerror(errno));
2120  return TM_ECODE_FAILED;
2121  }
2122  }
2123 
2124  if (suri->pid_filename != NULL && SCPidfileTestRunning(suri->pid_filename) != 0) {
2125  SCFree(suri->pid_filename);
2126  suri->pid_filename = NULL;
2127  return TM_ECODE_FAILED;
2128  }
2129 
2130  if (suri->daemon == 1) {
2131  Daemonize();
2132  }
2133 
2134  if (suri->pid_filename != NULL) {
2135  if (SCPidfileCreate(suri->pid_filename) != 0) {
2136  SCFree(suri->pid_filename);
2137  suri->pid_filename = NULL;
2138  SCLogError("Unable to create PID file, concurrent run of"
2139  " Suricata can occur.");
2140  SCLogError("PID file creation WILL be mandatory for daemon mode"
2141  " in future version");
2142  }
2143  }
2144 
2145  return TM_ECODE_OK;
2146 }
2147 
2148 /* Initialize the user and group Suricata is to run as. */
2149 static int InitRunAs(SCInstance *suri)
2150 {
2151 #ifndef OS_WIN32
2152  /* Try to get user/group to run suricata as if
2153  command line as not decide of that */
2154  if (!suri->do_setuid && !suri->do_setgid) {
2155  const char *id;
2156  if (ConfGet("run-as.user", &id) == 1) {
2157  suri->do_setuid = true;
2158  suri->user_name = id;
2159  }
2160  if (ConfGet("run-as.group", &id) == 1) {
2161  suri->do_setgid = true;
2162  suri->group_name = id;
2163  }
2164  }
2165  /* Get the suricata user ID to given user ID */
2166  if (suri->do_setuid) {
2167  SCGetUserID(suri->user_name, suri->group_name, &suri->userid, &suri->groupid);
2168  sc_set_caps = true;
2169  /* Get the suricata group ID to given group ID */
2170  } else if (suri->do_setgid) {
2171  SCGetGroupID(suri->group_name, &suri->groupid);
2172  sc_set_caps = true;
2173  }
2174 #endif
2175  return TM_ECODE_OK;
2176 }
2177 
2178 static int InitSignalHandler(SCInstance *suri)
2179 {
2180  /* registering signals we use */
2181 #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
2182  UtilSignalHandlerSetup(SIGINT, SignalHandlerSigint);
2183  UtilSignalHandlerSetup(SIGTERM, SignalHandlerSigterm);
2184 #if HAVE_LIBUNWIND
2185  int enabled;
2186  if (ConfGetBool("logging.stacktrace-on-signal", &enabled) == 0) {
2187  enabled = 1;
2188  }
2189 
2190  if (enabled) {
2191  SCLogInfo("Preparing unexpected signal handling");
2192  struct sigaction stacktrace_action;
2193  memset(&stacktrace_action, 0, sizeof(stacktrace_action));
2194  stacktrace_action.sa_sigaction = SignalHandlerUnexpected;
2195  stacktrace_action.sa_flags = SA_SIGINFO;
2196  sigaction(SIGSEGV, &stacktrace_action, NULL);
2197  sigaction(SIGABRT, &stacktrace_action, NULL);
2198  }
2199 #endif /* HAVE_LIBUNWIND */
2200 #endif
2201 #ifndef OS_WIN32
2202  UtilSignalHandlerSetup(SIGHUP, SignalHandlerSigHup);
2203  UtilSignalHandlerSetup(SIGPIPE, SIG_IGN);
2204  UtilSignalHandlerSetup(SIGSYS, SIG_IGN);
2205 #endif /* OS_WIN32 */
2206 
2207  return TM_ECODE_OK;
2208 }
2209 
2210 /* initialization code for both the main modes and for
2211  * unix socket mode.
2212  *
2213  * Will be run once per pcap in unix-socket mode */
2214 void PreRunInit(const int runmode)
2215 {
2217  if (runmode == RUNMODE_UNIX_SOCKET)
2218  return;
2219 
2220  StatsInit();
2221 #ifdef PROFILE_RULES
2223 #endif
2224 #ifdef PROFILING
2228 #endif /* PROFILING */
2229 #ifdef PROFILE_RULES
2230  SCProfilingInit();
2231 #endif
2232  DefragInit();
2239 }
2240 
2241 /* tasks we need to run before packets start flowing,
2242  * but after we dropped privs */
2243 void PreRunPostPrivsDropInit(const int runmode)
2244 {
2247  DatasetsInit();
2248 
2249  if (runmode == RUNMODE_UNIX_SOCKET) {
2250  /* As the above did some necessary startup initialization, it
2251  * also setup some outputs where only one is allowed, so
2252  * deinitialize to the state that unix-mode does after every
2253  * pcap. */
2255  return;
2256  }
2257 
2259 }
2260 
2261 /* clean up / shutdown code for both the main modes and for
2262  * unix socket mode.
2263  *
2264  * Will be run once per pcap in unix-socket mode */
2265 void PostRunDeinit(const int runmode, struct timeval *start_time)
2266 {
2267  if (runmode == RUNMODE_UNIX_SOCKET)
2268  return;
2269 
2270  /* needed by FlowWorkToDoCleanup */
2271  PacketPoolInit();
2272 
2273  /* handle graceful shutdown of the flow engine, it's helper
2274  * threads and the packet threads */
2279  SCPrintElapsedTime(start_time);
2281 
2282  /* kill the stats threads */
2285 
2286  /* kill packet threads -- already in 'disabled' state */
2289 
2291 
2292  /* mgt and ppt threads killed, we can run non thread-safe
2293  * shutdown functions */
2296  RunModeShutDown();
2297  FlowShutdown();
2298  IPPairShutdown();
2299  HostCleanup();
2301  DefragDestroy();
2303 
2304  TmqResetQueues();
2305 #ifdef PROFILING
2307  SCProfilingDump();
2309 #endif
2310 }
2311 
2312 int SCStartInternalRunMode(int argc, char **argv)
2313 {
2314  SCInstance *suri = &suricata;
2315  /* Treat internal running mode */
2316  switch (suri->run_mode) {
2317  case RUNMODE_LIST_KEYWORDS:
2318  return ListKeywords(suri->keyword_info);
2320  if (suri->conf_filename != NULL) {
2321  return ListAppLayerProtocols(suri->conf_filename);
2322  } else {
2324  }
2325  case RUNMODE_PRINT_VERSION:
2326  PrintVersion();
2327  return TM_ECODE_DONE;
2329  PrintBuildInfo();
2330  return TM_ECODE_DONE;
2331  case RUNMODE_PRINT_USAGE:
2332  PrintUsage(argv[0]);
2333  return TM_ECODE_DONE;
2334  case RUNMODE_LIST_RUNMODES:
2336  return TM_ECODE_DONE;
2337  case RUNMODE_LIST_UNITTEST:
2338  RunUnittests(1, suri->regex_arg);
2339  case RUNMODE_UNITTEST:
2340  RunUnittests(0, suri->regex_arg);
2341 #ifdef OS_WIN32
2342  case RUNMODE_INSTALL_SERVICE:
2343  if (SCServiceInstall(argc, argv)) {
2344  return TM_ECODE_FAILED;
2345  }
2346  SCLogInfo("Suricata service has been successfully installed.");
2347  return TM_ECODE_DONE;
2348  case RUNMODE_REMOVE_SERVICE:
2349  if (SCServiceRemove()) {
2350  return TM_ECODE_FAILED;
2351  }
2352  SCLogInfo("Suricata service has been successfully removed.");
2353  return TM_ECODE_DONE;
2354  case RUNMODE_CHANGE_SERVICE_PARAMS:
2355  if (SCServiceChangeParams(argc, argv)) {
2356  return TM_ECODE_FAILED;
2357  }
2358  SCLogInfo("Suricata service startup parameters has been successfully changed.");
2359  return TM_ECODE_DONE;
2360 #endif /* OS_WIN32 */
2361  default:
2362  /* simply continue for other running mode */
2363  break;
2364  }
2365  return TM_ECODE_OK;
2366 }
2367 
2369 {
2370  SCInstance *suri = &suricata;
2371  switch (suri->run_mode) {
2372  case RUNMODE_UNKNOWN:
2373  PrintUsage(suri->progname);
2374  return TM_ECODE_FAILED;
2375  default:
2376  break;
2377  }
2378 
2379  if (!CheckValidDaemonModes(suri->daemon, suri->run_mode)) {
2380  return TM_ECODE_FAILED;
2381  }
2382 
2383  return TM_ECODE_OK;
2384 }
2385 
2386 static void SetupDelayedDetect(SCInstance *suri)
2387 {
2388  /* In offline mode delayed init of detect is a bad idea */
2389  if (suri->offline) {
2390  suri->delayed_detect = 0;
2391  } else {
2392  if (ConfGetBool("detect.delayed-detect", &suri->delayed_detect) != 1) {
2393  ConfNode *denode = NULL;
2394  ConfNode *decnf = ConfGetNode("detect-engine");
2395  if (decnf != NULL) {
2396  TAILQ_FOREACH(denode, &decnf->head, next) {
2397  if (strcmp(denode->val, "delayed-detect") == 0) {
2398  (void)ConfGetChildValueBool(denode, "delayed-detect", &suri->delayed_detect);
2399  }
2400  }
2401  }
2402  }
2403  }
2404 
2405  SCLogConfig("Delayed detect %s", suri->delayed_detect ? "enabled" : "disabled");
2406  if (suri->delayed_detect) {
2407  SCLogInfo("Packets will start being processed before signatures are active.");
2408  }
2409 
2410 }
2411 
2412 static int LoadSignatures(DetectEngineCtx *de_ctx, SCInstance *suri)
2413 {
2414  if (SigLoadSignatures(de_ctx, suri->sig_file, suri->sig_file_exclusive) < 0) {
2415  SCLogError("Loading signatures failed.");
2416  if (de_ctx->failure_fatal)
2417  return TM_ECODE_FAILED;
2418  }
2419 
2420  return TM_ECODE_OK;
2421 }
2422 
2423 static int ConfigGetCaptureValue(SCInstance *suri)
2424 {
2425  /* Pull the max pending packets from the config, if not found fall
2426  * back on a sane default. */
2427  intmax_t tmp_max_pending_packets;
2428  if (ConfGetInt("max-pending-packets", &tmp_max_pending_packets) != 1)
2429  tmp_max_pending_packets = DEFAULT_MAX_PENDING_PACKETS;
2430  if (tmp_max_pending_packets < 1 || tmp_max_pending_packets > 2147483648) {
2431  SCLogError("Maximum max-pending-packets setting is 2147483648 and must be greater than 0. "
2432  "Please check %s for errors",
2433  suri->conf_filename);
2434  return TM_ECODE_FAILED;
2435  } else {
2436  max_pending_packets = (uint32_t)tmp_max_pending_packets;
2437  }
2438 
2439  SCLogDebug("Max pending packets set to %" PRIu32, max_pending_packets);
2440 
2441  /* Pull the default packet size from the config, if not found fall
2442  * back on a sane default. */
2443  const char *temp_default_packet_size;
2444  if ((ConfGet("default-packet-size", &temp_default_packet_size)) != 1) {
2445  int lthread;
2446  int nlive;
2447  int strip_trailing_plus = 0;
2448  switch (suri->run_mode) {
2449 #ifdef WINDIVERT
2450  case RUNMODE_WINDIVERT: {
2451  /* by default, WinDivert collects from all devices */
2452  const int mtu = GetGlobalMTUWin32();
2453 
2454  if (mtu > 0) {
2455  /* SLL_HEADER_LEN is the longest header + 8 for VLAN */
2456  default_packet_size = mtu + SLL_HEADER_LEN + 8;
2457  break;
2458  }
2460  break;
2461  }
2462 #endif /* WINDIVERT */
2463  case RUNMODE_NETMAP:
2464  /* in netmap igb0+ has a special meaning, however the
2465  * interface really is igb0 */
2466  strip_trailing_plus = 1;
2467  /* fall through */
2468  case RUNMODE_PLUGIN:
2469  case RUNMODE_PCAP_DEV:
2470  case RUNMODE_AFP_DEV:
2471  case RUNMODE_AFXDP_DEV:
2472  nlive = LiveGetDeviceCount();
2473  for (lthread = 0; lthread < nlive; lthread++) {
2474  const char *live_dev = LiveGetDeviceName(lthread);
2475  char dev[128]; /* need to be able to support GUID names on Windows */
2476  (void)strlcpy(dev, live_dev, sizeof(dev));
2477 
2478  if (strip_trailing_plus) {
2479  size_t len = strlen(dev);
2480  if (len &&
2481  (dev[len-1] == '+' ||
2482  dev[len-1] == '^' ||
2483  dev[len-1] == '*'))
2484  {
2485  dev[len-1] = '\0';
2486  }
2487  }
2488  LiveDevice *ld = LiveGetDevice(dev);
2489  unsigned int iface_max_packet_size = GetIfaceMaxPacketSize(ld);
2490  if (iface_max_packet_size > default_packet_size)
2491  default_packet_size = iface_max_packet_size;
2492  }
2493  if (default_packet_size)
2494  break;
2495  /* fall through */
2496  default:
2498  }
2499  } else {
2500  if (ParseSizeStringU32(temp_default_packet_size, &default_packet_size) < 0) {
2501  SCLogError("Error parsing max-pending-packets "
2502  "from conf file - %s. Killing engine",
2503  temp_default_packet_size);
2504  return TM_ECODE_FAILED;
2505  }
2506  }
2507 
2508  SCLogDebug("Default packet size set to %"PRIu32, default_packet_size);
2509 
2510  return TM_ECODE_OK;
2511 }
2512 
2513 static void PostRunStartedDetectSetup(const SCInstance *suri)
2514 {
2515 #ifndef OS_WIN32
2516  /* registering signal handlers we use. We setup usr2 here, so that one
2517  * can't call it during the first sig load phase or while threads are still
2518  * starting up. */
2519  if (DetectEngineEnabled() && suri->delayed_detect == 0) {
2520  UtilSignalHandlerSetup(SIGUSR2, SignalHandlerSigusr2);
2521  UtilSignalUnblock(SIGUSR2);
2522  }
2523 #endif
2524  if (suri->delayed_detect) {
2525  /* force 'reload', this will load the rules and swap engines */
2526  DetectEngineReload(suri);
2527  SCLogNotice("Signature(s) loaded, Detect thread(s) activated.");
2528 #ifndef OS_WIN32
2529  UtilSignalHandlerSetup(SIGUSR2, SignalHandlerSigusr2);
2530  UtilSignalUnblock(SIGUSR2);
2531 #endif
2532  }
2533 }
2534 
2536 {
2537  DetectEngineCtx *de_ctx = NULL;
2538  if (!suri->disabled_detect) {
2539  SetupDelayedDetect(suri);
2540  int mt_enabled = 0;
2541  (void)ConfGetBool("multi-detect.enabled", &mt_enabled);
2542  int default_tenant = 0;
2543  if (mt_enabled)
2544  (void)ConfGetBool("multi-detect.default", &default_tenant);
2546  FatalError("initializing multi-detect "
2547  "detection engine contexts failed.");
2548  }
2549  if (suri->delayed_detect && suri->run_mode != RUNMODE_CONF_TEST) {
2551  } else if (mt_enabled && !default_tenant && suri->run_mode != RUNMODE_CONF_TEST) {
2553  } else {
2555  }
2556  if (de_ctx == NULL) {
2557  FatalError("initializing detection engine failed.");
2558  }
2559 
2561  if (LoadSignatures(de_ctx, suri) != TM_ECODE_OK)
2562  exit(EXIT_FAILURE);
2563  }
2564 
2565  gettimeofday(&de_ctx->last_reload, NULL);
2568  }
2569 }
2570 
2571 static void PostConfLoadedSetupHostMode(void)
2572 {
2573  const char *hostmode = NULL;
2574 
2575  if (ConfGet("host-mode", &hostmode) == 1) {
2576  if (!strcmp(hostmode, "router")) {
2578  } else if (!strcmp(hostmode, "sniffer-only")) {
2580  } else {
2581  if (strcmp(hostmode, "auto") != 0) {
2582  WarnInvalidConfEntry("host-mode", "%s", "auto");
2583  }
2584  if (EngineModeIsIPS()) {
2586  } else {
2588  }
2589  }
2590  } else {
2591  if (EngineModeIsIPS()) {
2593  SCLogInfo("No 'host-mode': suricata is in IPS mode, using "
2594  "default setting 'router'");
2595  } else {
2597  SCLogInfo("No 'host-mode': suricata is in IDS mode, using "
2598  "default setting 'sniffer-only'");
2599  }
2600  }
2601 }
2602 
2603 static void SetupUserMode(SCInstance *suri)
2604 {
2605  /* apply 'user mode' config updates here */
2606  if (suri->system == false) {
2607  if (suri->set_logdir == false) {
2608  /* override log dir to current work dir" */
2609  if (ConfigSetLogDirectory((char *)".") != TM_ECODE_OK) {
2610  FatalError("could not set USER mode logdir");
2611  }
2612  }
2613  if (suri->set_datadir == false) {
2614  /* override data dir to current work dir" */
2615  if (ConfigSetDataDirectory((char *)".") != TM_ECODE_OK) {
2616  FatalError("could not set USER mode datadir");
2617  }
2618  }
2619  }
2620 }
2621 
2622 /**
2623  * This function is meant to contain code that needs
2624  * to be run once the configuration has been loaded.
2625  */
2627 {
2628  /* load the pattern matchers */
2629  MpmTableSetup();
2630  SpmTableSetup();
2631 
2632  int disable_offloading;
2633  if (ConfGetBool("capture.disable-offloading", &disable_offloading) == 0)
2634  disable_offloading = 1;
2635  if (disable_offloading) {
2637  } else {
2639  }
2640 
2641  if (suri->checksum_validation == -1) {
2642  const char *cv = NULL;
2643  if (ConfGet("capture.checksum-validation", &cv) == 1) {
2644  if (strcmp(cv, "none") == 0) {
2645  suri->checksum_validation = 0;
2646  } else if (strcmp(cv, "all") == 0) {
2647  suri->checksum_validation = 1;
2648  }
2649  }
2650  }
2651  switch (suri->checksum_validation) {
2652  case 0:
2653  ConfSet("stream.checksum-validation", "0");
2654  break;
2655  case 1:
2656  ConfSet("stream.checksum-validation", "1");
2657  break;
2658  }
2659 
2660  if (suri->runmode_custom_mode) {
2661  ConfSet("runmode", suri->runmode_custom_mode);
2662  }
2663 
2664  StorageInit();
2665 #ifdef HAVE_PACKET_EBPF
2666  if (suri->run_mode == RUNMODE_AFP_DEV) {
2667  EBPFRegisterExtension();
2669  }
2670 #endif
2672 
2674 
2675 #ifdef HAVE_PLUGINS
2677 #endif
2678 
2679  LiveDeviceFinalize(); // must be after EBPF extension registration
2680 
2683  FatalError("IPS mode setup failed");
2684  }
2685 
2686  if (EngineModeIsUnknown()) { // if still uninitialized, set the default
2687  SCLogInfo("Setting engine mode to IDS mode by default");
2688  EngineModeSetIDS();
2689  }
2690 
2692 
2693  ConfNode *eps = ConfGetNode("stats.exception-policy");
2694  if (eps != NULL) {
2695  if (ConfNodeChildValueIsTrue(eps, "per-app-proto-errors")) {
2697  }
2698  }
2699 
2700  /* Must occur prior to output mod registration
2701  and app layer setup. */
2703 
2704  AppLayerSetup();
2705 
2706  /* Suricata will use this umask if provided. By default it will use the
2707  umask passed on from the shell. */
2708  const char *custom_umask;
2709  if (ConfGet("umask", &custom_umask) == 1) {
2710  uint16_t mask;
2711  if (StringParseUint16(&mask, 8, (uint16_t)strlen(custom_umask), custom_umask) > 0) {
2712  umask((mode_t)mask);
2713  }
2714  }
2715 
2716 
2717  if (ConfigGetCaptureValue(suri) != TM_ECODE_OK) {
2719  }
2720 
2721 #ifdef NFQ
2722  if (suri->run_mode == RUNMODE_NFQ)
2723  NFQInitConfig(false);
2724 #endif
2725 
2726  /* Load the Host-OS lookup. */
2728 
2729  if (suri->run_mode == RUNMODE_ENGINE_ANALYSIS) {
2730  SCLogInfo("== Carrying out Engine Analysis ==");
2731  const char *temp = NULL;
2732  if (ConfGet("engine-analysis", &temp) == 0) {
2733  SCLogInfo("no engine-analysis parameter(s) defined in conf file. "
2734  "Please define/enable them in the conf to use this "
2735  "feature.");
2737  }
2738  }
2739 
2740  /* hardcoded initialization code */
2741  SigTableSetup(); /* load the rule keywords */
2743  TmqhSetup();
2744 
2745  TagInitCtx();
2747  ThresholdInit();
2748  HostBitInitCtx();
2749  IPPairBitInitCtx();
2750 
2751  if (DetectAddressTestConfVars() < 0) {
2752  SCLogError(
2753  "basic address vars test failed. Please check %s for errors", suri->conf_filename);
2755  }
2756  if (DetectPortTestConfVars() < 0) {
2757  SCLogError("basic port vars test failed. Please check %s for errors", suri->conf_filename);
2759  }
2760 
2763 
2764  StorageFinalize();
2765 
2766  TmModuleRunInit();
2767 
2768  if (MayDaemonize(suri) != TM_ECODE_OK)
2770 
2771  if (InitSignalHandler(suri) != TM_ECODE_OK)
2773 
2774  /* Check for the existence of the default logging directory which we pick
2775  * from suricata.yaml. If not found, shut the engine down */
2776  suri->log_dir = ConfigGetLogDirectory();
2777 
2779  SCLogError("The logging directory \"%s\" "
2780  "supplied by %s (default-log-dir) doesn't exist. "
2781  "Shutting down the engine",
2782  suri->log_dir, suri->conf_filename);
2784  }
2785  if (!IsLogDirectoryWritable(suri->log_dir)) {
2786  SCLogError("The logging directory \"%s\" "
2787  "supplied by %s (default-log-dir) is not writable. "
2788  "Shutting down the engine",
2789  suri->log_dir, suri->conf_filename);
2791  }
2792 
2793  if (suri->disabled_detect) {
2794  SCLogConfig("detection engine disabled");
2795  /* disable raw reassembly */
2796  (void)ConfSetFinal("stream.reassembly.raw", "false");
2797  }
2798 
2800 
2802 
2804 
2805  /* hostmode depends on engine mode being set */
2806  PostConfLoadedSetupHostMode();
2807 
2808  PreRunInit(suri->run_mode);
2809 
2811 }
2812 
2814 {
2815  SCInstance *suri = &suricata;
2816  while(1) {
2817  if (sigterm_count || sigint_count) {
2819  }
2820 
2822  SCLogNotice("Signal Received. Stopping engine.");
2823  break;
2824  }
2825 
2827 
2828  if (sighup_count > 0) {
2830  sighup_count--;
2831  }
2832 
2833  if (sigusr2_count > 0) {
2834  if (!(DetectEngineReloadIsStart())) {
2836  DetectEngineReload(suri);
2838  sigusr2_count--;
2839  }
2840 
2841  } else if (DetectEngineReloadIsStart()) {
2842  DetectEngineReload(suri);
2844  }
2845 
2846  usleep(10* 1000);
2847  }
2848 }
2849 
2850 /**
2851  * \brief Global initialization common to all runmodes.
2852  *
2853  * This can be used by fuzz targets.
2854  */
2855 
2856 int InitGlobal(void)
2857 {
2858  rs_init(&suricata_context);
2859 
2860  SC_ATOMIC_INIT(engine_stage);
2861 
2862  /* initialize the logging subsys */
2863  SCLogInitLogModule(NULL);
2864 
2865  SCSetThreadName("Suricata-Main");
2866 
2867  /* Ignore SIGUSR2 as early as possible. We redeclare interest
2868  * once we're done launching threads. The goal is to either die
2869  * completely or handle any and all SIGUSR2s correctly.
2870  */
2871 #ifndef OS_WIN32
2872  UtilSignalHandlerSetup(SIGUSR2, SIG_IGN);
2873  if (UtilSignalBlock(SIGUSR2)) {
2874  SCLogError("SIGUSR2 initialization error");
2875  return EXIT_FAILURE;
2876  }
2877 #endif
2878 
2879  ParseSizeInit();
2881 
2882  /* Initialize the configuration module. */
2883  ConfInit();
2884 
2885  VarNameStoreInit();
2886 
2887  // zero all module storage
2888  memset(tmm_modules, 0, TMM_SIZE * sizeof(TmModule));
2889 
2890  return 0;
2891 }
2892 
2893 void SuricataPreInit(const char *progname)
2894 {
2895  SCInstanceInit(&suricata, progname);
2896 
2897  if (InitGlobal() != 0) {
2898  exit(EXIT_FAILURE);
2899  }
2900 }
2901 
2902 void SuricataInit(void)
2903 {
2904  /* Initializations for global vars, queues, etc (memsets, mutex init..) */
2906 
2908  ConfDump();
2909  exit(EXIT_SUCCESS);
2910  }
2911 
2912  int tracking = 1;
2913  if (ConfGetBool("vlan.use-for-tracking", &tracking) == 1 && !tracking) {
2914  /* Ignore vlan_ids when comparing flows. */
2915  g_vlan_mask = 0x0000;
2916  }
2917  SCLogDebug("vlan tracking is %s", tracking == 1 ? "enabled" : "disabled");
2918  if (ConfGetBool("livedev.use-for-tracking", &tracking) == 1 && !tracking) {
2919  /* Ignore livedev id when comparing flows. */
2920  g_livedev_mask = 0x0000;
2921  }
2922  SetupUserMode(&suricata);
2923  InitRunAs(&suricata);
2924 
2925  /* Since our config is now loaded we can finish configurating the
2926  * logging module. */
2928 
2929  LogVersion(&suricata);
2932 
2934  SCLogInfo("Running suricata under test mode");
2935 
2936  if (ParseInterfacesList(suricata.aux_run_mode, suricata.pcap_dev) != TM_ECODE_OK) {
2937  exit(EXIT_FAILURE);
2938  }
2939 
2941  exit(EXIT_FAILURE);
2942  }
2943 
2945 
2946  /* Re-enable coredumps after privileges are dropped. */
2947  CoredumpEnable();
2948 
2951  }
2952 
2954 
2956 
2959  goto out;
2960  } else if (suricata.run_mode == RUNMODE_CONF_TEST){
2961  SCLogNotice("Configuration provided was successfully loaded. Exiting.");
2962  goto out;
2963  } else if (suricata.run_mode == RUNMODE_DUMP_FEATURES) {
2964  FeatureDump();
2965  goto out;
2966  }
2967 
2970 
2971  SCSetStartTime(&suricata);
2976  }
2977 
2978  return;
2979 
2980 out:
2981  GlobalsDestroy();
2982  exit(EXIT_SUCCESS);
2983 }
2984 
2986 {
2987  /* Update the engine stage/status flag */
2988  SC_ATOMIC_SET(engine_stage, SURICATA_DEINIT);
2989 
2992  /* kill remaining threads */
2994 }
2995 
2997 {
2998  /* Wait till all the threads have been initialized */
3001  FatalError("Engine initialization failed, "
3002  "aborting...");
3003  }
3004 
3005  int limit_nproc = 0;
3006  if (ConfGetBool("security.limit-noproc", &limit_nproc) == 0) {
3007  limit_nproc = 0;
3008  }
3009 
3010 #if defined(SC_ADDRESS_SANITIZER)
3011  if (limit_nproc) {
3012  SCLogWarning(
3013  "\"security.limit-noproc\" (setrlimit()) not set when using address sanitizer");
3014  limit_nproc = 0;
3015  }
3016 #endif
3017 
3018  if (limit_nproc) {
3019 #if defined(HAVE_SYS_RESOURCE_H)
3020 #ifdef linux
3021  if (geteuid() == 0) {
3022  SCLogWarning("setrlimit has no effet when running as root.");
3023  }
3024 #endif
3025  struct rlimit r = { 0, 0 };
3026  if (setrlimit(RLIMIT_NPROC, &r) != 0) {
3027  SCLogWarning("setrlimit failed to prevent process creation.");
3028  }
3029 #else
3030  SCLogWarning("setrlimit unavailable.");
3031 #endif
3032  }
3033 
3034  SC_ATOMIC_SET(engine_stage, SURICATA_RUNTIME);
3036 
3037  /* Un-pause all the paused threads */
3039 
3040  /* Must ensure all threads are fully operational before continuing with init process */
3043  exit(EXIT_FAILURE);
3044  }
3045 
3046  /* Print notice and send OS specific notification of threads in running state */
3047  OnNotifyRunning();
3048 
3049  PostRunStartedDetectSetup(&suricata);
3050  if (suricata.run_mode == RUNMODE_DPDK) { // only DPDK uses hpages at the moment
3054  SystemHugepageSnapshotDestroy(postrun_snap);
3055  }
3056  SCPledge();
3057 }
RUNMODE_AFXDP_DEV
@ RUNMODE_AFXDP_DEV
Definition: runmodes.h:37
DefragDestroy
void DefragDestroy(void)
Definition: defrag.c:1133
util-byte.h
ConfGetInt
int ConfGetInt(const char *name, intmax_t *val)
Retrieve a configuration value as an integer.
Definition: conf.c:399
TmModuleUnixManagerRegister
void TmModuleUnixManagerRegister(void)
Definition: unix-manager.c:1289
StatsReleaseResources
void StatsReleaseResources(void)
Releases the resources allotted by the Stats API.
Definition: counters.c:1272
source-nflog.h
TagInitCtx
void TagInitCtx(void)
Definition: detect-engine-tag.c:52
TmModuleReceiveIPFWRegister
void TmModuleReceiveIPFWRegister(void)
Registration Function for RecieveIPFW.
Definition: source-ipfw.c:150
flow-bypass.h
len
uint8_t len
Definition: app-layer-dnp3.h:2
SuricataMainLoop
void SuricataMainLoop(void)
Definition: suricata.c:2813
ExceptionSimulationCommandLineParser
int ExceptionSimulationCommandLineParser(const char *name, const char *arg)
Definition: util-exception-policy.c:316
ippair.h
g_livedev_mask
uint16_t g_livedev_mask
Definition: suricata.c:204
app-layer-htp-range.h
AppLayerHtpNeedFileInspection
void AppLayerHtpNeedFileInspection(void)
Sets a flag that informs the HTP app layer that some module in the engine needs the http request file...
Definition: app-layer-htp.c:504
SCInstance_::run_mode
enum RunModes run_mode
Definition: suricata.h:124
detect-engine.h
source-pcap.h
SCInstance_::groupid
uint32_t groupid
Definition: suricata.h:142
SCRunmodeGet
int SCRunmodeGet(void)
Get the current run mode.
Definition: suricata.c:261
RUNMODE_UNIX_SOCKET
@ RUNMODE_UNIX_SOCKET
Definition: runmodes.h:42
g_system
bool g_system
Definition: suricata.c:189
ConfNodeChildValueIsTrue
int ConfNodeChildValueIsTrue(const ConfNode *node, const char *key)
Test if a configuration node has a true value.
Definition: conf.c:854
win32-syscall.h
SCInstance_::daemon
int daemon
Definition: suricata.h:151
IPPairInitConfig
void IPPairInitConfig(bool quiet)
initialize the configuration
Definition: ippair.c:162
SCLogInitLogModule
void SCLogInitLogModule(SCLogInitData *sc_lid)
Initializes the logging module.
Definition: util-debug.c:1390
SLL_HEADER_LEN
#define SLL_HEADER_LEN
Definition: decode-sll.h:27
SCInstance_::checksum_validation
int checksum_validation
Definition: suricata.h:154
LiveDeviceListClean
int LiveDeviceListClean(void)
Definition: util-device.c:314
SCInstance_::do_setuid
bool do_setuid
Definition: suricata.h:138
DetectEngineDeReference
void DetectEngineDeReference(DetectEngineCtx **de_ctx)
Definition: detect-engine.c:4574
RUNMODE_UNITTEST
@ RUNMODE_UNITTEST
Definition: runmodes.h:40
StorageInit
void StorageInit(void)
Definition: util-storage.c:68
SCInstance_::start_time
struct timeval start_time
Definition: suricata.h:156
SC_ATOMIC_INIT
#define SC_ATOMIC_INIT(name)
wrapper for initializing an atomic variable.
Definition: util-atomic.h:314
prerun_snap
SystemHugepageSnapshot * prerun_snap
Definition: suricata.c:211
TmThreadContinueThreads
void TmThreadContinueThreads(void)
Unpauses all threads present in tv_root.
Definition: tm-threads.c:1911
source-pcap-file.h
SCInstance_::do_setgid
bool do_setgid
Definition: suricata.h:139
ConfNode_::val
char * val
Definition: conf.h:34
CLS
#define CLS
Definition: suricata-common.h:56
ConfGetBool
int ConfGetBool(const char *name, int *val)
Retrieve a configuration value as a boolean.
Definition: conf.c:482
RUNMODE_DPDK
@ RUNMODE_DPDK
Definition: runmodes.h:39
stream-tcp.h
DetectEngineCtx_::type
enum DetectEngineType type
Definition: detect.h:962
SigLoadSignatures
int SigLoadSignatures(DetectEngineCtx *de_ctx, char *sig_file, bool sig_file_exclusive)
Load signatures.
Definition: detect-engine-loader.c:287
runmode-af-packet.h
RUNMODE_UNKNOWN
@ RUNMODE_UNKNOWN
Definition: runmodes.h:28
SCInstance_::group_name
const char * group_name
Definition: suricata.h:137
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
SC_ATOMIC_SET
#define SC_ATOMIC_SET(name, val)
Set the value for the atomic variable.
Definition: util-atomic.h:386
runmode-unittests.h
TmqhSetup
void TmqhSetup(void)
Definition: tm-queuehandlers.c:39
RUNMODE_PRINT_BUILDINFO
@ RUNMODE_PRINT_BUILDINFO
Definition: runmodes.h:50
DetectEngineCtxInitStubForDD
DetectEngineCtx * DetectEngineCtxInitStubForDD(void)
Definition: detect-engine.c:2553
LiveDevRegisterExtension
void LiveDevRegisterExtension(void)
Definition: util-device.c:465
OutputTxShutdown
void OutputTxShutdown(void)
Definition: output-tx.c:661
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
AppLayerHtpPrintStats
void AppLayerHtpPrintStats(void)
Definition: app-layer-htp.c:2645
util-hugepages.h
StatsSetupPostConfigPreOutput
void StatsSetupPostConfigPreOutput(void)
Definition: counters.c:895
SCInstance_::runmode_custom_mode
char * runmode_custom_mode
Definition: suricata.h:134
util-coredump-config.h
next
struct HtpBodyChunk_ * next
Definition: app-layer-htp.h:0
SigTableSetup
void SigTableSetup(void)
Definition: detect-engine-register.c:454
TmModuleReceiveNFQRegister
void TmModuleReceiveNFQRegister(void)
Definition: source-nfq.c:169
LiveBuildDeviceList
int LiveBuildDeviceList(const char *runmode)
Definition: util-device.c:274
RunModeShutDown
void RunModeShutDown(void)
Definition: runmodes.c:565
SuricataInit
void SuricataInit(void)
Definition: suricata.c:2902
TM_ECODE_DONE
@ TM_ECODE_DONE
Definition: tm-threads-common.h:84
SCProtoNameInit
void SCProtoNameInit(void)
Definition: util-proto-name.c:417
SuricataPostInit
void SuricataPostInit(void)
Definition: suricata.c:2996
ippair-bit.h
RunModeDispatch
void RunModeDispatch(int runmode, const char *custom_mode, const char *capture_plugin_name, const char *capture_plugin_args)
Definition: runmodes.c:397
ConfGetNode
ConfNode * ConfGetNode(const char *name)
Get a ConfNode by name.
Definition: conf.c:181
util-macset.h
RUNMODE_LIST_RUNMODES
@ RUNMODE_LIST_RUNMODES
Definition: runmodes.h:48
sigint_count
volatile sig_atomic_t sigint_count
Definition: suricata.c:154
SC_ATOMIC_DECLARE
SC_ATOMIC_DECLARE(unsigned int, engine_stage)
SCProfilingRulesGlobalInit
void SCProfilingRulesGlobalInit(void)
TmModuleRunDeInit
void TmModuleRunDeInit(void)
Definition: tm-modules.c:136
RegisterFlowBypassInfo
void RegisterFlowBypassInfo(void)
Definition: flow-util.c:229
SCSetThreadName
#define SCSetThreadName(n)
Definition: threads.h:303
SCRunmodeSet
void SCRunmodeSet(int run_mode)
Set the current run mode.
Definition: suricata.c:266
sc_set_caps
bool sc_set_caps
Definition: suricata.c:187
SCLogDeInitLogModule
void SCLogDeInitLogModule(void)
De-Initializes the logging module.
Definition: util-debug.c:1597
LiveDevice_
Definition: util-device.h:50
util-pidfile.h
TmModuleDecodeErfFileRegister
void TmModuleDecodeErfFileRegister(void)
Register the ERF file decoder module.
Definition: source-erf-file.c:98
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:841
StringParseUint16
int StringParseUint16(uint16_t *res, int base, size_t len, const char *str)
Definition: util-byte.c:337
DetectEngineReloadSetIdle
void DetectEngineReloadSetIdle(void)
Definition: detect-engine.c:2065
SCInstance_::userid
uint32_t userid
Definition: suricata.h:141
RUNMODE_ERF_FILE
@ RUNMODE_ERF_FILE
Definition: runmodes.h:34
source-windivert-prototypes.h
DetectEngineGetCurrent
DetectEngineCtx * DetectEngineGetCurrent(void)
Definition: detect-engine.c:3786
EngineModeIsUnknown
int EngineModeIsUnknown(void)
Definition: suricata.c:224
VarNameStoreInit
void VarNameStoreInit(void)
TmModuleFlowRecyclerRegister
void TmModuleFlowRecyclerRegister(void)
Definition: flow-manager.c:1285
g_skip_prefilter
int g_skip_prefilter
Definition: detect-engine-mpm.c:1072
Daemonize
void Daemonize(void)
Daemonize the process.
Definition: util-daemon.c:101
UtilSignalHandlerSetup
void UtilSignalHandlerSetup(int sig, void(*handler)(int))
Definition: util-signal.c:60
TAILQ_FOREACH
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:252
TmModuleDecodeAFPRegister
void TmModuleDecodeAFPRegister(void)
Registration Function for DecodeAFP.
Definition: source-af-packet.c:601
RUNMODE_NFLOG
@ RUNMODE_NFLOG
Definition: runmodes.h:32
TmModuleDecodeWinDivertRegister
void TmModuleDecodeWinDivertRegister(void)
Definition: source-windivert.c:74
SURICATA_DEINIT
@ SURICATA_DEINIT
Definition: suricata.h:97
SURICATA_STOP
#define SURICATA_STOP
Definition: suricata.h:89
DetectEngineAddToMaster
int DetectEngineAddToMaster(DetectEngineCtx *de_ctx)
Definition: detect-engine.c:4598
TmModuleStatsLoggerRegister
void TmModuleStatsLoggerRegister(void)
Definition: output-stats.c:169
ConfYamlHandleInclude
int ConfYamlHandleInclude(ConfNode *parent, const char *filename)
Include a file in the configuration.
Definition: conf-yaml-loader.c:114
RegisterAllModules
void RegisterAllModules(void)
Definition: suricata.c:893
ENGINE_MODE_IPS
@ ENGINE_MODE_IPS
Definition: suricata.h:104
RUNMODE_PCAP_DEV
@ RUNMODE_PCAP_DEV
Definition: runmodes.h:29
DetectEngineMultiTenantSetup
int DetectEngineMultiTenantSetup(const bool unix_socket)
setup multi-detect / multi-tenancy
Definition: detect-engine.c:4235
flow-bit.h
SupportFastPatternForSigMatchTypes
void SupportFastPatternForSigMatchTypes(void)
Registers the keywords(SMs) that should be given fp support.
Definition: detect-fast-pattern.c:142
util-var-name.h
ConfDump
void ConfDump(void)
Dump configuration to stdout.
Definition: conf.c:746
suricata_context
const SuricataContext suricata_context
Definition: rust-context.c:25
SCParseCommandLine
TmEcode SCParseCommandLine(int argc, char **argv)
Definition: suricata.c:1315
SCPledge
#define SCPledge(...)
Definition: util-privs.h:99
CheckValidDaemonModes
int CheckValidDaemonModes(int daemon, int mode)
Check for a valid combination daemon/mode.
Definition: util-daemon.c:177
SCGetGroupID
void SCGetGroupID(const char *group_name, uint32_t *gid)
Function to get the group ID from the specified group name.
Definition: util-privs.c:208
ConfSetFinal
int ConfSetFinal(const char *name, const char *val)
Set a final configuration value.
Definition: conf.c:303
unittests_fatal
int unittests_fatal
Definition: util-unittest.c:52
TmThreadDisableReceiveThreads
void TmThreadDisableReceiveThreads(void)
Disable all threads having the specified TMs.
Definition: tm-threads.c:1345
StatsInit
void StatsInit(void)
Initializes the perf counter api. Things are hard coded currently. More work to be done when we imple...
Definition: counters.c:885
util-privs.h
PreRunInit
void PreRunInit(const int runmode)
Definition: suricata.c:2214
RUNMODE_LIST_KEYWORDS
@ RUNMODE_LIST_KEYWORDS
Definition: runmodes.h:46
SURICATA_DONE
#define SURICATA_DONE
Definition: suricata.h:91
MacSetRegisterFlowStorage
void MacSetRegisterFlowStorage(void)
Definition: util-macset.c:62
SuricataShutdown
void SuricataShutdown(void)
Definition: suricata.c:2985
SCInstance_::conf_filename
const char * conf_filename
Definition: suricata.h:160
GetIfaceMTU
int GetIfaceMTU(const char *dev)
output the link MTU
Definition: util-ioctl.c:81
RUNMODE_NAPATECH
@ RUNMODE_NAPATECH
Definition: runmodes.h:41
GlobalsInitPreConfig
void GlobalsInitPreConfig(void)
Definition: suricata.c:359
TmModuleReceiveNetmapRegister
void TmModuleReceiveNetmapRegister(void)
Definition: source-netmap.c:74
PacketPoolPostRunmodes
void PacketPoolPostRunmodes(void)
Set the max_pending_return_packets value.
Definition: tmqh-packetpool.c:459
NFQInitConfig
void NFQInitConfig(bool quiet)
To initialize the NFQ global configuration data.
Definition: source-nfq.c:206
TmModuleReceiveWinDivertRegister
void TmModuleReceiveWinDivertRegister(void)
Definition: source-windivert.c:61
SystemHugepageSnapshot
Definition: util-hugepages.h:44
HOST_VERBOSE
#define HOST_VERBOSE
Definition: host.h:92
TM_ECODE_FAILED
@ TM_ECODE_FAILED
Definition: tm-threads-common.h:83
SCProfilingDestroy
void SCProfilingDestroy(void)
Free resources used by profiling.
Definition: util-profiling.c:273
IsRunModeOffline
bool IsRunModeOffline(enum RunModes run_mode_to_check)
Definition: runmodes.c:547
AFPPeersListClean
void AFPPeersListClean(void)
Clean the global peers list.
Definition: source-af-packet.c:583
RunModeInitializeOutputs
void RunModeInitializeOutputs(void)
Definition: runmodes.c:754
DetectPortTestConfVars
int DetectPortTestConfVars(void)
Definition: detect-engine-port.c:1106
SCThresholdConfGlobalInit
void SCThresholdConfGlobalInit(void)
Definition: util-threshold-config.c:102
DecodeUnregisterCounters
void DecodeUnregisterCounters(void)
Definition: decode.c:576
SCInstance_::capture_plugin_name
const char * capture_plugin_name
Definition: suricata.h:164
RUNMODE_DAG
@ RUNMODE_DAG
Definition: runmodes.h:35
HostBitInitCtx
void HostBitInitCtx(void)
Definition: host-bit.c:49
EngineMode
EngineMode
Definition: suricata.h:101
SCInstance_::set_datadir
bool set_datadir
Definition: suricata.h:146
tmqh-packetpool.h
g_ut_covered
int g_ut_covered
Definition: suricata.c:891
SCInstance_::capture_plugin_args
const char * capture_plugin_args
Definition: suricata.h:165
TmModuleLoggerRegister
void TmModuleLoggerRegister(void)
Definition: output.c:830
TmThreadDisablePacketThreads
void TmThreadDisablePacketThreads(void)
Disable all packet threads.
Definition: tm-threads.c:1474
host_mode
uint8_t host_mode
Definition: suricata.c:178
RUNMODE_NETMAP
@ RUNMODE_NETMAP
Definition: runmodes.h:38
RUNMODE_DUMP_FEATURES
@ RUNMODE_DUMP_FEATURES
Definition: runmodes.h:61
FeatureDump
void FeatureDump(void)
Definition: feature.c:144
PacketPoolInit
void PacketPoolInit(void)
Definition: tmqh-packetpool.c:244
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:82
AppLayerDeSetup
int AppLayerDeSetup(void)
De initializes the app layer.
Definition: app-layer.c:1046
strlcpy
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: util-strlcpyu.c:43
PcapTranslateIPToDevice
void PcapTranslateIPToDevice(char *pcap_dev, size_t len)
Definition: source-pcap.c:656
FlowDisableFlowRecyclerThread
void FlowDisableFlowRecyclerThread(void)
Used to disable flow recycler thread(s).
Definition: flow-manager.c:1213
ParseSizeInit
void ParseSizeInit(void)
Definition: util-misc.c:35
TmModuleDecodePcapFileRegister
void TmModuleDecodePcapFileRegister(void)
Definition: source-pcap-file.c:129
TmModuleBypassedFlowManagerRegister
void TmModuleBypassedFlowManagerRegister(void)
Definition: flow-bypass.c:222
IPPairShutdown
void IPPairShutdown(void)
shutdown the flow engine
Definition: ippair.c:293
source-erf-dag.h
util-signal.h
DetectParseFreeRegexes
void DetectParseFreeRegexes(void)
Definition: detect-parse.c:2661
TmModuleDecodeNFLOGRegister
void TmModuleDecodeNFLOGRegister(void)
Definition: source-nflog.c:55
ConfGet
int ConfGet(const char *name, const char **vptr)
Retrieve the value of a configuration node.
Definition: conf.c:335
NFQParseAndRegisterQueues
int NFQParseAndRegisterQueues(const char *queues)
Parses and adds Netfilter queue(s).
Definition: source-nfq.c:879
ConfGetRootNode
ConfNode * ConfGetRootNode(void)
Get the root configuration node.
Definition: conf.c:207
FlowInitConfig
void FlowInitConfig(bool quiet)
initialize the configuration
Definition: flow.c:530
AppLayerSetup
int AppLayerSetup(void)
Setup the app layer.
Definition: app-layer.c:1031
FeatureTrackingRegister
void FeatureTrackingRegister(void)
Definition: feature.c:152
TmModuleReceiveDPDKRegister
void TmModuleReceiveDPDKRegister(void)
Definition: source-dpdk.c:50
UnixManagerThreadSpawnNonRunmode
void UnixManagerThreadSpawnNonRunmode(const bool unix_socket_enabled)
Definition: unix-manager.c:1283
RunModeInitializeThreadSettings
void RunModeInitializeThreadSettings(void)
Definition: runmodes.c:939
StreamTcpInitConfig
void StreamTcpInitConfig(bool)
To initialize the stream global configuration data.
Definition: stream-tcp.c:461
ENGINE_MODE_UNKNOWN
@ ENGINE_MODE_UNKNOWN
Definition: suricata.h:102
app-layer-htp.h
IsRunModeSystem
bool IsRunModeSystem(enum RunModes run_mode_to_check)
Definition: runmodes.c:534
datasets.h
GetIfaceMaxPacketSize
int GetIfaceMaxPacketSize(LiveDevice *ld)
output max packet size for a link
Definition: util-ioctl.c:120
TmModuleDecodeNetmapRegister
void TmModuleDecodeNetmapRegister(void)
Registration Function for DecodeNetmap.
Definition: source-netmap.c:84
PreRunPostPrivsDropInit
void PreRunPostPrivsDropInit(const int runmode)
Definition: suricata.c:2243
feature.h
decode.h
util-device.h
SigTableCleanup
void SigTableCleanup(void)
Definition: detect-engine-register.c:445
DetectEngineMoveToFreeList
int DetectEngineMoveToFreeList(DetectEngineCtx *de_ctx)
Definition: detect-engine.c:4658
sigterm_count
volatile sig_atomic_t sigterm_count
Definition: suricata.c:156
source-nfq.h
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
TmThreadWaitOnThreadInit
TmEcode TmThreadWaitOnThreadInit(void)
Used to check if all threads have finished their initialization. On finding an un-initialized thread,...
Definition: tm-threads.c:1950
TmModuleVerdictNFQRegister
void TmModuleVerdictNFQRegister(void)
Definition: source-nfq.c:184
SURI_HOST_IS_ROUTER
@ SURI_HOST_IS_ROUTER
Definition: suricata.h:116
ConfYamlLoadFile
int ConfYamlLoadFile(const char *filename)
Load configuration from a YAML file.
Definition: conf-yaml-loader.c:476
RUNMODE_CONF_TEST
@ RUNMODE_CONF_TEST
Definition: runmodes.h:53
AppLayerRegisterGlobalCounters
void AppLayerRegisterGlobalCounters(void)
HACK to work around our broken unix manager (re)init loop.
Definition: app-layer.c:1109
RunModeListRunmodes
void RunModeListRunmodes(void)
Lists all registered runmodes.
Definition: runmodes.c:245
RUNMODE_PRINT_USAGE
@ RUNMODE_PRINT_USAGE
Definition: runmodes.h:51
strlcat
size_t strlcat(char *, const char *src, size_t siz)
Definition: util-strlcatu.c:45
RUNMODE_LIST_APP_LAYERS
@ RUNMODE_LIST_APP_LAYERS
Definition: runmodes.h:47
util-cpu.h
suricata
SCInstance suricata
Definition: suricata.c:217
SCInstance_::unix_socket_enabled
bool unix_socket_enabled
Definition: suricata.h:147
LiveSetOffloadDisable
void LiveSetOffloadDisable(void)
Definition: util-device.c:71
StatsSetupPostConfigPostOutput
void StatsSetupPostConfigPostOutput(void)
Definition: counters.c:900
EngineModeSetIDS
void EngineModeSetIDS(void)
Definition: suricata.c:246
SpmTableSetup
void SpmTableSetup(void)
Definition: util-spm.c:122
TmModuleReceiveAFPRegister
void TmModuleReceiveAFPRegister(void)
Registration Function for RecieveAFP.
Definition: source-af-packet.c:383
LiveBuildDeviceListCustom
int LiveBuildDeviceListCustom(const char *runmode, const char *itemname)
Definition: util-device.c:279
util-exception-policy.h
LiveGetDevice
LiveDevice * LiveGetDevice(const char *name)
Get a pointer to the device at idx.
Definition: util-device.c:248
UnixSocketKillSocketThread
void UnixSocketKillSocketThread(void)
Definition: unix-manager.c:1279
TmModuleVerdictIPFWRegister
void TmModuleVerdictIPFWRegister(void)
Registration Function for VerdictIPFW.
Definition: source-ipfw.c:171
flow-worker.h
g_stats_eps_per_app_proto_errors
bool g_stats_eps_per_app_proto_errors
Definition: suricata.c:214
HttpRangeContainersInit
void HttpRangeContainersInit(void)
Definition: app-layer-htp-range.c:149
util-reference-config.h
source-napatech.h
DetectEngineCtx_::last_reload
struct timeval last_reload
Definition: detect.h:1008
SCInstance_::delayed_detect
int delayed_detect
Definition: suricata.h:149
TmModuleVerdictWinDivertRegister
void TmModuleVerdictWinDivertRegister(void)
Definition: source-windivert.c:68
DetectEngineCtx_::failure_fatal
bool failure_fatal
Definition: detect.h:842
SCInstance_::progname
const char * progname
Definition: suricata.h:159
HostCleanup
void HostCleanup(void)
Cleanup the host engine.
Definition: host.c:332
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
FlowDisableFlowManagerThread
void FlowDisableFlowManagerThread(void)
Used to disable flow manager thread(s).
Definition: flow-manager.c:130
util-ebpf.h
SCInstance_::pcap_dev
char pcap_dev[128]
Definition: suricata.h:127
detect.h
UtilSignalUnblock
int UtilSignalUnblock(int signum)
Definition: util-signal.c:46
DetectEngineEnabled
int DetectEngineEnabled(void)
Check if detection is enabled.
Definition: detect-engine.c:3753
SURICATA_RUNTIME
@ SURICATA_RUNTIME
Definition: suricata.h:96
TmThreadClearThreadsFamily
void TmThreadClearThreadsFamily(int family)
Definition: tm-threads.c:1623
TmModuleRunInit
void TmModuleRunInit(void)
Definition: tm-modules.c:118
detect-engine-port.h
EngineModeSetIPS
void EngineModeSetIPS(void)
Definition: suricata.c:241
SCInstance_::user_name
const char * user_name
Definition: suricata.h:136
HTPAtExitPrintStats
void HTPAtExitPrintStats(void)
Print the stats of the HTTP requests.
Definition: app-layer-htp.c:1652
util-time.h
UtilSignalBlock
int UtilSignalBlock(int signum)
Definition: util-signal.c:29
SCProfilingPrefilterGlobalInit
void SCProfilingPrefilterGlobalInit(void)
Definition: util-profiling-prefilter.c:61
ThresholdDestroy
void ThresholdDestroy(void)
Definition: detect-engine-threshold.c:71
SCLogWarning
#define SCLogWarning(...)
Macro used to log WARNING messages.
Definition: util-debug.h:249
PostConfLoadedSetup
int PostConfLoadedSetup(SCInstance *suri)
Definition: suricata.c:2626
GetProgramVersion
const char * GetProgramVersion(void)
get string with program version
Definition: suricata.c:1132
engine_analysis
int engine_analysis
app-layer-parser.h
TVT_MGMT
@ TVT_MGMT
Definition: tm-threads-common.h:90
TmModuleReceivePcapFileRegister
void TmModuleReceivePcapFileRegister(void)
Definition: source-pcap-file.c:116
BUG_ON
#define BUG_ON(x)
Definition: suricata-common.h:300
runmode-netmap.h
CoredumpLoadConfig
int32_t CoredumpLoadConfig(void)
Configures the core dump size.
Definition: util-coredump-config.c:90
detect-engine-tag.h
IPFWRegisterQueue
int IPFWRegisterQueue(char *queue)
Add an IPFW divert.
Definition: source-ipfw.c:698
xstr
#define xstr(s)
Definition: suricata-common.h:290
util-profiling.h
ListAppLayerProtocols
int ListAppLayerProtocols(const char *conf_filename)
Definition: util-running-modes.c:43
SCInstance_::offline
int offline
Definition: suricata.h:152
DatasetsDestroy
void DatasetsDestroy(void)
Definition: datasets.c:990
UtilCpuPrintSummary
void UtilCpuPrintSummary(void)
Print a summary of CPUs detected (configured and online)
Definition: util-cpu.c:140
profiling_packets_enabled
int profiling_packets_enabled
Definition: util-profiling.c:97
SystemDNotifyReady
int SystemDNotifyReady(void)
TmThreadKillThreads
void TmThreadKillThreads(void)
Definition: tm-threads.c:1553
OutputDeregisterAll
void OutputDeregisterAll(void)
Deregister all modules. Useful for a memory clean exit.
Definition: output.c:629
source-pcap-file-helper.h
PostConfLoadedDetectSetup
void PostConfLoadedDetectSetup(SCInstance *suri)
Definition: suricata.c:2535
EngineModeIsIDS
int EngineModeIsIDS(void)
Definition: suricata.c:235
util-systemd.h
TmModuleNapatechDecodeRegister
void TmModuleNapatechDecodeRegister(void)
Register the Napatech decoder module.
Definition: source-napatech.c:192
tmm_modules
TmModule tmm_modules[TMM_SIZE]
Definition: tm-modules.c:33
conf-yaml-loader.h
decode-sll.h
coverage_unittests
int coverage_unittests
Definition: suricata.c:889
RUNMODE_DUMP_CONFIG
@ RUNMODE_DUMP_CONFIG
Definition: runmodes.h:52
DatasetsSave
void DatasetsSave(void)
Definition: datasets.c:1068
detect-engine-alert.h
conf.h
util-landlock.h
source-ipfw.h
TMM_SIZE
@ TMM_SIZE
Definition: tm-threads-common.h:77
source-netmap.h
OutputNotifyFileRotation
void OutputNotifyFileRotation(void)
Notifies all registered file rotation notification flags.
Definition: output.c:701
StorageFinalize
int StorageFinalize(void)
Definition: util-storage.c:138
VarNameStoreDestroy
void VarNameStoreDestroy(void)
Definition: util-var-name.c:116
SCInstance_::verbose
int verbose
Definition: suricata.h:153
TmEcode
TmEcode
Definition: tm-threads-common.h:81
source-windivert.h
TmModuleFlowWorkerRegister
void TmModuleFlowWorkerRegister(void)
Definition: flow-worker.c:765
SCInstance_::aux_run_mode
enum RunModes aux_run_mode
Definition: suricata.h:125
max_pending_packets
uint32_t max_pending_packets
Definition: suricata.c:181
util-plugin.h
SCInstance_::additional_configs
const char ** additional_configs
Definition: suricata.h:161
flow-timeout.h
DEFAULT_PID_FILENAME
#define DEFAULT_PID_FILENAME
Definition: suricata.h:83
sighup_count
volatile sig_atomic_t sighup_count
Definition: suricata.c:155
ConfigSetDataDirectory
TmEcode ConfigSetDataDirectory(char *name)
Definition: util-conf.c:66
TmModuleDecodeErfDagRegister
void TmModuleDecodeErfDagRegister(void)
Register the ERF file decoder module.
Definition: source-erf-dag.c:151
SCInstance_::set_logdir
bool set_logdir
Definition: suricata.h:145
SCDropMainThreadCaps
#define SCDropMainThreadCaps(...)
Definition: util-privs.h:90
TmModuleDebugList
void TmModuleDebugList(void)
Definition: tm-modules.c:35
TmModuleDecodeNFQRegister
void TmModuleDecodeNFQRegister(void)
Definition: source-nfq.c:192
util-proto-name.h
STREAM_VERBOSE
#define STREAM_VERBOSE
Definition: stream-tcp.h:35
defrag.h
SCProtoNameRelease
void SCProtoNameRelease(void)
Definition: util-proto-name.c:438
MpmTableSetup
void MpmTableSetup(void)
Definition: util-mpm.c:225
SCInstance_::log_dir
const char * log_dir
Definition: suricata.h:158
RunmodeIsUnittests
int RunmodeIsUnittests(void)
Definition: suricata.c:252
source-nfq-prototypes.h
SCPluginsLoad
void SCPluginsLoad(const char *capture_plugin_name, const char *capture_plugin_args)
SCLogInfo
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
Definition: util-debug.h:224
TmModuleReceiveNFLOGRegister
void TmModuleReceiveNFLOGRegister(void)
Definition: source-nflog.c:49
DEFAULT_PACKET_SIZE
#define DEFAULT_PACKET_SIZE
Definition: decode.h:674
WarnInvalidConfEntry
#define WarnInvalidConfEntry(param_name, format, value)
Generic API that can be used by all to log an invalid conf entry.
Definition: util-misc.h:35
util-host-os-info.h
TmModuleReceiveErfFileRegister
void TmModuleReceiveErfFileRegister(void)
Register the ERF file receiver (reader) module.
Definition: source-erf-file.c:80
TmModule_
Definition: tm-modules.h:44
SCRealloc
#define SCRealloc(ptr, sz)
Definition: util-mem.h:50
TmModuleDecodeAFXDPRegister
void TmModuleDecodeAFXDPRegister(void)
Registration Function for DecodeAFXDP.
Definition: source-af-xdp.c:91
default_packet_size
uint32_t default_packet_size
Definition: decode.c:77
tm-queuehandlers.h
SigTableApplyStrictCommandLineOption
void SigTableApplyStrictCommandLineOption(const char *str)
Definition: detect-parse.c:392
DETECT_ENGINE_TYPE_NORMAL
@ DETECT_ENGINE_TYPE_NORMAL
Definition: detect.h:823
PROG_NAME
#define PROG_NAME
Definition: suricata.h:70
TmThreadKillThreadsFamily
void TmThreadKillThreadsFamily(int family)
Definition: tm-threads.c:1524
detect-fast-pattern.h
FeatureTrackingRelease
void FeatureTrackingRelease(void)
Definition: feature.c:136
TmqhCleanup
void TmqhCleanup(void)
Clean up registration time allocs.
Definition: tm-queuehandlers.c:49
util-dpdk.h
util-conf.h
StreamTcpFreeConfig
void StreamTcpFreeConfig(bool quiet)
Definition: stream-tcp.c:792
source-dpdk.h
flow-manager.h
DecodeGlobalConfig
void DecodeGlobalConfig(void)
Definition: decode.c:999
SCInstance_::strict_rule_parsing_string
char * strict_rule_parsing_string
Definition: suricata.h:162
SuriHasSigFile
int SuriHasSigFile(void)
Definition: suricata.c:219
suricata-common.h
DetectEngineCtxInitStubForMT
DetectEngineCtx * DetectEngineCtxInitStubForMT(void)
Definition: detect-engine.c:2548
util-path.h
util-daemon.h
LiveGetDeviceName
const char * LiveGetDeviceName(int number)
Get a pointer to the device name at idx.
Definition: util-device.c:184
FlowShutdown
void FlowShutdown(void)
shutdown the flow engine
Definition: flow.c:677
SCHInfoLoadFromConfig
void SCHInfoLoadFromConfig(void)
Load the host os policy information from the configuration.
Definition: util-host-os-info.c:331
DetectEngineBumpVersion
void DetectEngineBumpVersion(void)
Definition: detect-engine.c:3777
source-af-xdp.h
TmModuleFlowManagerRegister
void TmModuleFlowManagerRegister(void)
Definition: flow-manager.c:1271
SCStartInternalRunMode
int SCStartInternalRunMode(int argc, char **argv)
Definition: suricata.c:2312
SCPidfileTestRunning
int SCPidfileTestRunning(const char *pid_filename)
Check the Suricata pid file (used at the startup)
Definition: util-pidfile.c:105
HostShutdown
void HostShutdown(void)
shutdown the flow engine
Definition: host.c:296
DOC_URL
#define DOC_URL
Definition: suricata.h:85
SCFstatFn
#define SCFstatFn(fd, statbuf)
Definition: util-path.h:34
output-filestore.h
LiveSetOffloadWarn
void LiveSetOffloadWarn(void)
Definition: util-device.c:76
ParseSizeDeinit
void ParseSizeDeinit(void)
Definition: util-misc.c:54
util-classification-config.h
RunModeRegisterRunModes
void RunModeRegisterRunModes(void)
Register all runmodes in the engine.
Definition: runmodes.c:219
SCStrdup
#define SCStrdup(s)
Definition: util-mem.h:56
FatalError
#define FatalError(...)
Definition: util-debug.h:502
ConfGetChildValueBool
int ConfGetChildValueBool(const ConfNode *base, const char *name, int *val)
Definition: conf.c:500
SCProfilingDump
void SCProfilingDump(void)
Definition: util-profiling.c:299
TmModuleReceiveAFXDPRegister
void TmModuleReceiveAFXDPRegister(void)
Definition: source-af-xdp.c:77
EngineStop
void EngineStop(void)
make sure threads can stop the engine by calling this function. Purpose: pcap file mode needs to be a...
Definition: suricata.c:447
FrameConfigInit
void FrameConfigInit(void)
Definition: app-layer-frames.c:38
SCInstance_::sig_file
char * sig_file
Definition: suricata.h:128
ParseSizeStringU32
int ParseSizeStringU32(const char *size, uint32_t *res)
Definition: util-misc.c:173
TmModuleReceiveErfDagRegister
void TmModuleReceiveErfDagRegister(void)
Register the ERF file receiver (reader) module.
Definition: source-erf-dag.c:133
IPPairBitInitCtx
void IPPairBitInitCtx(void)
Definition: ippair-bit.c:49
ConfigSetLogDirectory
TmEcode ConfigSetLogDirectory(const char *name)
Definition: util-conf.c:33
util-validate.h
TmModuleDecodeIPFWRegister
void TmModuleDecodeIPFWRegister(void)
Registration Function for DecodeIPFW.
Definition: source-ipfw.c:186
source-af-packet.h
ConfUnixSocketIsEnable
int ConfUnixSocketIsEnable(void)
Definition: util-conf.c:136
RUNMODE_NFQ
@ RUNMODE_NFQ
Definition: runmodes.h:31
ConfSetFromString
int ConfSetFromString(const char *input, int final)
Set a configuration parameter from a string.
Definition: conf.c:249
SCLogConfig
struct SCLogConfig_ SCLogConfig
Holds the config state used by the logging api.
g_vlan_mask
uint16_t g_vlan_mask
Definition: suricata.c:200
ConfInit
void ConfInit(void)
Initialize the configuration system.
Definition: conf.c:120
DatasetsInit
int DatasetsInit(void)
Definition: datasets.c:856
ConfigGetLogDirectory
const char * ConfigGetLogDirectory(void)
Definition: util-conf.c:38
sigusr2_count
volatile sig_atomic_t sigusr2_count
Definition: suricata.c:157
SystemHugepageSnapshotDestroy
void SystemHugepageSnapshotDestroy(SystemHugepageSnapshot *s)
Definition: util-hugepages.c:304
RUNMODE_ENGINE_ANALYSIS
@ RUNMODE_ENGINE_ANALYSIS
Definition: runmodes.h:55
RUNMODE_PRINT_VERSION
@ RUNMODE_PRINT_VERSION
Definition: runmodes.h:49
TmModuleDecodePcapRegister
void TmModuleDecodePcapRegister(void)
Registration Function for DecodePcap.
Definition: source-pcap.c:153
util-running-modes.h
SCLoadYamlConfig
TmEcode SCLoadYamlConfig(void)
Definition: suricata.c:958
unix-manager.h
runmode-af-xdp.h
str
#define str(s)
Definition: suricata-common.h:291
ConfigCheckDataDirectory
TmEcode ConfigCheckDataDirectory(const char *data_dir)
Definition: util-conf.c:99
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
g_detect_disabled
int g_detect_disabled
Definition: suricata.c:184
DetectEngineReloadStart
int DetectEngineReloadStart(void)
Definition: detect-engine.c:2039
SCFree
#define SCFree(p)
Definition: util-mem.h:61
DEFAULT_CONF_FILE
#define DEFAULT_CONF_FILE
Definition: suricata.h:79
ConfNode_
Definition: conf.h:32
SC_LOG_MAX_LOG_MSG_LEN
#define SC_LOG_MAX_LOG_MSG_LEN
Definition: util-debug.h:84
AppLayerParserPostStreamSetup
void AppLayerParserPostStreamSetup(void)
Definition: app-layer-parser.c:255
TmModuleReceivePcapRegister
void TmModuleReceivePcapRegister(void)
Registration Function for ReceivePcap.
Definition: source-pcap.c:135
SCGetUserID
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.
Definition: util-privs.c:141
util-ioctl.h
detect-parse.h
SCInstance_::system
bool system
Definition: suricata.h:144
SCInstance_::pid_filename
char * pid_filename
Definition: suricata.h:130
TmModuleRespondRejectRegister
void TmModuleRespondRejectRegister(void)
Definition: respond-reject.c:50
CoredumpEnable
void CoredumpEnable(void)
Enable coredumps on systems where coredumps can and need to be enabled.
Definition: util-coredump-config.c:57
RunUnittests
void RunUnittests(int list_unittests, const char *regex_arg)
Definition: runmode-unittests.c:227
source-erf-file.h
ConfigCheckLogDirectoryExists
TmEcode ConfigCheckLogDirectoryExists(const char *log_dir)
Definition: util-conf.c:56
TimeDeinit
void TimeDeinit(void)
Definition: util-time.c:87
PacketAlertTagInit
void PacketAlertTagInit(void)
Definition: detect-engine-alert.c:45
RunModeEngineIsIPS
int RunModeEngineIsIPS(int capture_mode, const char *runmode, const char *capture_plugin_name)
Definition: runmodes.c:367
DetectEngineCtxInit
DetectEngineCtx * DetectEngineCtxInit(void)
Definition: detect-engine.c:2558
RUNMODE_WINDIVERT
@ RUNMODE_WINDIVERT
Definition: runmodes.h:43
EngineModeIsIPS
int EngineModeIsIPS(void)
Definition: suricata.c:229
TmModuleNapatechStreamRegister
void TmModuleNapatechStreamRegister(void)
Register the Napatech receiver (reader) module.
Definition: source-napatech.c:174
SCProfilingKeywordsGlobalInit
void SCProfilingKeywordsGlobalInit(void)
Definition: util-profiling-keywords.c:61
suricata.h
TVT_PPT
@ TVT_PPT
Definition: tm-threads-common.h:89
EngineDone
void EngineDone(void)
Used to indicate that the current task is done.
Definition: suricata.c:458
FLOW_QUIET
#define FLOW_QUIET
Definition: flow.h:43
GetDocURL
const char * GetDocURL(void)
Definition: suricata.c:1111
util-mpm-hs.h
PostRunDeinit
void PostRunDeinit(const int runmode, struct timeval *start_time)
Definition: suricata.c:2265
HostInitConfig
void HostInitConfig(bool quiet)
initialize the configuration
Definition: host.c:168
TmThreadWaitOnThreadRunning
TmEcode TmThreadWaitOnThreadRunning(void)
Waits for all threads to be in a running state.
Definition: tm-threads.c:1842
ConfDeInit
void ConfDeInit(void)
De-initializes the configuration system.
Definition: conf.c:688
HttpRangeContainersDestroy
void HttpRangeContainersDestroy(void)
Definition: app-layer-htp-range.c:182
ConfSet
int ConfSet(const char *name, const char *val)
Set a configuration value.
Definition: conf.c:224
SCLogLoadConfig
void SCLogLoadConfig(int daemon, int verbose, uint32_t userid, uint32_t groupid)
Definition: util-debug.c:1420
DetectEngineReload
int DetectEngineReload(const SCInstance *suri)
Reload the detection engine.
Definition: detect-engine.c:4725
DEFAULT_MAX_PENDING_PACKETS
#define DEFAULT_MAX_PENDING_PACKETS
Definition: suricata.c:167
SCInstance_
Definition: suricata.h:123
DetectEngineClearMaster
void DetectEngineClearMaster(void)
Definition: detect-engine.c:4698
SetMasterExceptionPolicy
void SetMasterExceptionPolicy(void)
Definition: util-exception-policy.c:59
TmThreadCheckThreadState
void TmThreadCheckThreadState(void)
Used to check the thread for certain conditions of failure.
Definition: tm-threads.c:1927
OutputFilestoreRegisterGlobalCounters
void OutputFilestoreRegisterGlobalCounters(void)
Definition: output-filestore.c:516
InitGlobal
int InitGlobal(void)
Global initialization common to all runmodes.
Definition: suricata.c:2856
SCInstance_::disabled_detect
int disabled_detect
Definition: suricata.h:150
LiveGetDeviceCount
int LiveGetDeviceCount(void)
Get the number of registered devices.
Definition: util-device.c:164
SystemHugepageSnapshotCreate
SystemHugepageSnapshot * SystemHugepageSnapshotCreate(void)
The function creates a snapshot of the system's hugepage usage per NUMA node and per hugepage size....
Definition: util-hugepages.c:323
SCProfilingSghsGlobalInit
void SCProfilingSghsGlobalInit(void)
Definition: util-profiling-rulegroups.c:64
SCPidfileCreate
int SCPidfileCreate(const char *pidfile)
Write a pid file (used at the startup) This commonly needed by the init scripts.
Definition: util-pidfile.c:42
LiveRegisterDeviceName
int LiveRegisterDeviceName(const char *dev)
Add a device for monitoring.
Definition: util-device.c:97
SCStatFn
#define SCStatFn(pathname, statbuf)
Definition: util-path.h:35
ENGINE_MODE_IDS
@ ENGINE_MODE_IDS
Definition: suricata.h:103
LiveDeviceFinalize
void LiveDeviceFinalize(void)
Definition: util-device.c:442
TmModuleDecodeDPDKRegister
void TmModuleDecodeDPDKRegister(void)
Registration Function for DecodeDPDK.
Definition: source-dpdk.c:64
SCInstance_::sig_file_exclusive
bool sig_file_exclusive
Definition: suricata.h:129
PROG_VER
#define PROG_VER
Definition: suricata.h:71
util-misc.h
PacketPoolDestroy
void PacketPoolDestroy(void)
Definition: tmqh-packetpool.c:274
HTPFreeConfig
void HTPFreeConfig(void)
Clears the HTTP server configuration memory used by HTP library.
Definition: app-layer-htp.c:1665
flow.h
LandlockSandboxing
void LandlockSandboxing(SCInstance *suri)
Definition: util-landlock.c:34
respond-reject.h
SCInstance_::regex_arg
char * regex_arg
Definition: suricata.h:131
ListKeywords
int ListKeywords(const char *keyword_info)
Definition: util-running-modes.c:32
SCLogNotice
#define SCLogNotice(...)
Macro used to log NOTICE messages.
Definition: util-debug.h:237
SuricataPreInit
void SuricataPreInit(const char *progname)
Definition: suricata.c:2893
msg
const char * msg
Definition: app-layer-htp.c:567
DPDKCleanupEAL
void DPDKCleanupEAL(void)
Definition: util-dpdk.c:28
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
RUNMODE_AFP_DEV
@ RUNMODE_AFP_DEV
Definition: runmodes.h:36
SCReturnInt
#define SCReturnInt(x)
Definition: util-debug.h:275
SCPidfileRemove
void SCPidfileRemove(const char *pid_filename)
Remove the pid file (used at the startup)
Definition: util-pidfile.c:83
ThresholdInit
void ThresholdInit(void)
Definition: detect-engine-threshold.c:66
TimeInit
void TimeInit(void)
Definition: util-time.c:79
RUNMODE_PCAP_FILE
@ RUNMODE_PCAP_FILE
Definition: runmodes.h:30
SCInstance_::keyword_info
char * keyword_info
Definition: suricata.h:133
RUNMODE_PLUGIN
@ RUNMODE_PLUGIN
Definition: runmodes.h:44
SURI_HOST_IS_SNIFFER_ONLY
@ SURI_HOST_IS_SNIFFER_ONLY
Definition: suricata.h:115
NFQContextsClean
void NFQContextsClean(void)
Clean global contexts. Must be called on exit.
Definition: source-nfq.c:1300
SystemHugepageEvaluateHugepages
void SystemHugepageEvaluateHugepages(SystemHugepageSnapshot *pre_s, SystemHugepageSnapshot *post_s)
The function compares two hugepage snapshots and prints out recommendations for hugepage configuratio...
Definition: util-hugepages.c:363
DEBUG_VALIDATE_BUG_ON
#define DEBUG_VALIDATE_BUG_ON(exp)
Definition: util-validate.h:102
SCFinalizeRunMode
int SCFinalizeRunMode(void)
Definition: suricata.c:2368
SCStat
struct stat SCStat
Definition: util-path.h:33
SCProfilingInit
void SCProfilingInit(void)
Initialize profiling.
Definition: util-profiling.c:136
g_ut_modules
int g_ut_modules
Definition: suricata.c:890
detect-engine-address.h
RUNMODE_IPFW
@ RUNMODE_IPFW
Definition: runmodes.h:33
GlobalsDestroy
void GlobalsDestroy(void)
Definition: suricata.c:368
output.h
util-threshold-config.h
DefragInit
void DefragInit(void)
Definition: defrag.c:1113
DetectEngineReloadIsStart
int DetectEngineReloadIsStart(void)
Definition: detect-engine.c:2053
suricata_ctl_flags
volatile uint8_t suricata_ctl_flags
Definition: suricata.c:170
host-bit.h
detect-engine-threshold.h
RUNMODE_LIST_UNITTEST
@ RUNMODE_LIST_UNITTEST
Definition: runmodes.h:54
app-layer.h
TagDestroyCtx
void TagDestroyCtx(void)
Destroy tag context hash tables.
Definition: detect-engine-tag.c:72
DetectAddressTestConfVars
int DetectAddressTestConfVars(void)
Definition: detect-engine-address.c:1217
g_disable_randomness
int g_disable_randomness
Definition: suricata.c:193
geteuid
#define geteuid()
Definition: win32-misc.h:41
FlowWorkToDoCleanup
void FlowWorkToDoCleanup(void)
Clean up all the flows that have unprocessed segments and have some work to do in the detection engin...
Definition: flow-timeout.c:416
MpmHSGlobalCleanup
void MpmHSGlobalCleanup(void)
g_disable_hashing
bool g_disable_hashing
Definition: suricata.c:208
TmqResetQueues
void TmqResetQueues(void)
Definition: tm-queues.c:80