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