Go to the documentation of this file.
69 static int AFPRunModeIsIPS(
void)
81 if (af_packet_node == NULL) {
87 for (ldev = 0; ldev < nlive; ldev++) {
89 if (live_dev == NULL) {
95 if (if_root == NULL) {
96 if (if_default == NULL) {
100 if_root = if_default;
103 const char *copymodestr = NULL;
104 const char *copyifacestr = NULL;
107 if (strcmp(copymodestr,
"ips") == 0) {
117 if (has_ids && has_ips) {
118 SCLogError(
"using both IPS and TAP/IDS mode is not allowed due to undefined behavior. See "
126 static int AFPRunModeEnableIPS(
void)
128 int r = AFPRunModeIsIPS();
141 "Workers af-packet mode, each thread does all"
142 " tasks from acquisition to logging",
145 "Multi socket AF_PACKET mode. Packets from "
146 "each flow are assigned to a single detect "
152 #ifdef HAVE_AF_PACKET
154 static void AFPDerefConfig(
void *conf)
165 static int cluster_id_auto = 1;
177 static void *ParseAFPConfig(
const char *iface)
179 const char *threadsstr = NULL;
183 const char *tmpclusterid;
184 const char *tmpctype;
185 const char *copymodestr;
188 const char *out_iface = NULL;
190 const char *ebpf_file = NULL;
222 #ifdef HAVE_PACKET_EBPF
228 if (af_packet_node == NULL) {
229 SCLogInfo(
"%s: unable to find af-packet config using default values", iface);
236 if (if_root == NULL && if_default == NULL) {
237 SCLogInfo(
"%s: unable to find af-packet config for "
238 "interface \"%s\" or \"default\", using default values",
244 if (if_root == NULL) {
245 if_root = if_default;
249 if (active_runmode && !strcmp(
"single", active_runmode)) {
254 if (threadsstr != NULL) {
255 if (strcmp(threadsstr,
"auto") == 0) {
260 "threads, resetting to default",
269 if (out_iface != NULL) {
270 if (strlen(out_iface) > 0) {
272 if (strcmp(iface, out_iface) == 0) {
274 "Invalid config: interface (%s) and copy-iface (%s) can't be the same",
279 SCLogWarning(
"copy-iface corresponding to %s interface cannot be NULL", iface);
286 "%s: \"use-mmap\" option is obsolete: mmap is always enabled", aconf->
iface);
299 #ifdef HAVE_TPACKET_V3
303 SCLogWarning(
"%s: system too old for tpacket v3 switching to v2", iface);
307 SCLogWarning(
"%s: tpacket v3 is only implemented for 'workers' runmode."
308 " Switching to tpacket v2.",
325 SCLogWarning(
"%s: copy mode activated but no destination"
326 " iface. Disabling feature",
328 }
else if (strlen(copymodestr) <= 0) {
330 }
else if (strcmp(copymodestr,
"ips") == 0) {
334 SCLogWarning(
"%s: using tpacket_v3 in IPS mode will result in high latency", iface);
336 }
else if (strcmp(copymodestr,
"tap") == 0) {
340 SCLogWarning(
"%s: using tpacket_v3 in TAP mode will result in high latency", iface);
348 aconf->
cluster_id = (uint16_t)(cluster_id_auto++);
351 SCLogWarning(
"%s: invalid cluster_id, resetting to 0", iface);
361 }
else if (strcmp(tmpctype,
"cluster_round_robin") == 0) {
362 SCLogConfig(
"%s: using round-robin cluster mode for AF_PACKET", aconf->
iface);
365 }
else if (strcmp(tmpctype,
"cluster_flow") == 0 || strcmp(tmpctype,
"cluster_rollover") == 0) {
366 if (strcmp(tmpctype,
"cluster_rollover") == 0) {
367 SCLogWarning(
"%s: cluster_rollover deprecated; using \"cluster_flow\" instead. See "
378 SCLogConfig(
"%s: using defrag kernel functionality for AF_PACKET", aconf->
iface);
383 }
else if (strcmp(tmpctype,
"cluster_cpu") == 0) {
387 }
else if (strcmp(tmpctype,
"cluster_qm") == 0) {
388 SCLogConfig(
"%s: using queue based cluster mode for AF_PACKET", aconf->
iface);
391 }
else if (strcmp(tmpctype,
"cluster_random") == 0) {
392 SCLogConfig(
"%s: using random based cluster mode for AF_PACKET", aconf->
iface);
395 #ifdef HAVE_PACKET_EBPF
396 }
else if (strcmp(tmpctype,
"cluster_ebpf") == 0) {
397 SCLogInfo(
"%s: using ebpf based cluster mode for AF_PACKET", aconf->
iface);
399 cluster_type = PACKET_FANOUT_EBPF;
408 SCLogConfig(
"%s: Rollover requested for AF_PACKET but ignored -- see ticket #6128.",
410 SCLogWarning(
"%s: rollover option has been deprecated and will be ignored as it can cause "
412 "tracking issues; see ticket #6128.",
421 #ifdef HAVE_PACKET_EBPF
422 SCLogConfig(
"%s: af-packet will use '%s' as eBPF load balancing file", iface, ebpf_file);
424 aconf->ebpf_t_config.
flags |= EBPF_SOCKET_FILTER;
428 #ifdef HAVE_PACKET_EBPF
433 aconf->ebpf_t_config.
flags |= EBPF_PINNED_MAPS;
435 const char *pinned_maps_name = NULL;
438 &pinned_maps_name) != 1) {
439 aconf->ebpf_t_config.pinned_maps_name = pinned_maps_name;
441 aconf->ebpf_t_config.pinned_maps_name = NULL;
444 aconf->ebpf_t_config.pinned_maps_name = NULL;
448 #ifdef HAVE_PACKET_EBPF
450 if (aconf->
ebpf_lb_file && cluster_type == PACKET_FANOUT_EBPF) {
453 &aconf->ebpf_t_config);
460 SCLogError(
"%s: eBPF support is not built-in", iface);
467 #ifdef HAVE_PACKET_EBPF
468 SCLogConfig(
"%s: af-packet will use '%s' as eBPF filter file", iface, ebpf_file);
470 aconf->ebpf_t_config.mode = AFP_MODE_EBPF_BYPASS;
471 aconf->ebpf_t_config.
flags |= EBPF_SOCKET_FILTER;
475 #ifdef HAVE_PACKET_EBPF
476 SCLogConfig(
"%s: using bypass kernel functionality for AF_PACKET", aconf->
iface);
480 SCLogError(
"%s: bypass set but eBPF support is not built-in", iface);
487 #ifdef HAVE_PACKET_EBPF
490 &aconf->ebpf_t_config);
492 SCLogWarning(
"%s: failed to load eBPF filter file", iface);
495 SCLogError(
"%s: eBPF support is not built-in", iface);
502 #ifdef HAVE_PACKET_XDP
503 aconf->ebpf_t_config.mode = AFP_MODE_XDP_BYPASS;
504 aconf->ebpf_t_config.
flags |= EBPF_XDP_CODE;
508 SCLogConfig(
"%s: using bypass kernel functionality for AF_PACKET", aconf->
iface);
511 if (aconf->ebpf_t_config.
flags & EBPF_PINNED_MAPS) {
513 struct ebpf_timeout_config *ebt =
SCCalloc(1,
sizeof(
struct ebpf_timeout_config));
515 SCLogError(
"%s: flow bypass alloc error", iface);
517 memcpy(ebt, &(aconf->ebpf_t_config),
sizeof(
struct ebpf_timeout_config));
519 EBPFCheckBypassedFlowCreate,
526 SCLogWarning(
"%s: XDP filter set but XDP support is not built-in", iface);
528 #ifdef HAVE_PACKET_XDP
529 const char *xdp_mode;
531 aconf->
xdp_mode = XDP_FLAGS_SKB_MODE;
533 if (!strcmp(xdp_mode,
"soft")) {
534 aconf->
xdp_mode = XDP_FLAGS_SKB_MODE;
535 }
else if (!strcmp(xdp_mode,
"driver")) {
536 aconf->
xdp_mode = XDP_FLAGS_DRV_MODE;
537 }
else if (!strcmp(xdp_mode,
"hw")) {
538 aconf->
xdp_mode = XDP_FLAGS_HW_MODE;
539 aconf->ebpf_t_config.
flags |= EBPF_XDP_HW_MODE;
548 if (boolval ==
false) {
550 aconf->ebpf_t_config.cpus_count = 1;
558 #ifdef HAVE_PACKET_XDP
561 &aconf->ebpf_t_config);
564 SCLogInfo(
"%s: loaded pinned maps from sysfs", iface);
567 SCLogWarning(
"%s: failed to load XDP filter file", iface);
577 "xdp-cpu-redirect", &cpuset) == 1) {
581 SCLogError(
"Previously found node has disappeared");
583 EBPFBuildCPUSet(node, aconf->
iface);
587 EBPFBuildCPUSet(NULL, aconf->
iface);
596 SCLogError(
"%s: XDP support is not built-in", iface);
610 if (value % getpagesize()) {
611 SCLogWarning(
"%s: block-size %" PRIuMAX
" must be a multiple of pagesize (%u).", iface,
612 value, getpagesize());
631 if (strcmp(tmpctype,
"auto") == 0) {
637 }
else if (strcmp(tmpctype,
"kernel") == 0) {
651 SCLogNotice(
"%s: fanout not supported on this system, falling "
652 "back to 1 capture thread",
664 SCLogPerf(
"%s: cluster_flow: %u cores, using %u threads", iface, aconf->
threads,
670 if (rss_queues > 0) {
672 SCLogPerf(
"%s: cluster_qm: %d RSS queues, using %u threads", iface, rss_queues,
690 SCLogWarning(
"%s: inefficient setup: ring-size < max_pending_packets. "
691 "Resetting to decent value %d.",
710 "%s: using AF_PACKET with offloads enabled leads to capture problems",
722 if (active_runmode == NULL || strcmp(
"workers", active_runmode) != 0) {
730 static int AFPConfigGeThreadsCount(
void *conf)
743 #ifdef HAVE_AF_PACKET
745 const char *live_dev = NULL;
749 (void)
ConfGet(
"af-packet.live-interface", &live_dev);
765 FatalError(
"Some IPS capture threads did not peer.");
768 SCLogDebug(
"RunModeIdsAFPAutoFp initialised");
780 #ifdef HAVE_AF_PACKET
782 const char *live_dev = NULL;
786 (void)
ConfGet(
"af-packet.live-interface", &live_dev);
793 AFPConfigGeThreadsCount,
803 FatalError(
"Some IPS capture threads did not peer.");
806 SCLogDebug(
"RunModeIdsAFPSingle initialised");
821 #ifdef HAVE_AF_PACKET
823 const char *live_dev = NULL;
827 (void)
ConfGet(
"af-packet.live-interface", &live_dev);
841 FatalError(
"Some IPS capture threads did not peer.");
844 SCLogDebug(
"RunModeIdsAFPWorkers initialised");
const char * thread_name_workers
ChecksumValidationMode checksum_mode
#define PACKET_FANOUT_FLAG_DEFRAG
int RunModeIdsAFPWorkers(void)
Workers version of the AF_PACKET processing.
int RunModeSetLiveCaptureWorkers(ConfigIfaceParserFunc ConfigParser, ConfigIfaceThreadsCountFunc ModThreadsCount, const char *recv_mod_name, const char *decode_mod_name, const char *thread_name, const char *live_dev)
#define SC_ATOMIC_INIT(name)
wrapper for initializing an atomic variable.
#define AFP_COPY_MODE_NONE
int RunModeIdsAFPSingle(void)
Single thread version of the AF_PACKET processing.
void RunModeIdsAFPRegister(void)
int ConfGetChildValueBoolWithDefault(const ConfNode *base, const ConfNode *dflt, const char *name, int *val)
ConfNode * ConfGetNode(const char *name)
Get a ConfNode by name.
#define PACKET_FANOUT_RND
uint16_t UtilCpuGetNumProcessorsConfigured(void)
Get the number of cpus configured in the system.
#define PACKET_FANOUT_HASH
TmEcode AFPPeersListInit(void)
Init the global list of AFPPeer.
#define SC_ATOMIC_ADD(name, val)
add a value to our atomic variable
const char * RunModeAFPGetDefaultMode(void)
int StringParseUint16(uint16_t *res, int base, size_t len, const char *str)
const char * thread_name_autofp
ConfNode * ConfNodeLookupKeyValue(const ConfNode *base, const char *key, const char *value)
Lookup for a key value under a specific node.
@ CHECKSUM_VALIDATION_DISABLE
@ CHECKSUM_VALIDATION_KERNEL
char * RunmodeGetActive(void)
int StringParseInt32(int32_t *res, int base, size_t len, const char *str)
int ConfGetChildValueIntWithDefault(const ConfNode *base, const ConfNode *dflt, const char *name, intmax_t *val)
const char * thread_name_single
ConfNode * ConfGetChildWithDefault(const ConfNode *base, const ConfNode *dflt, const char *name)
int AFPGetLinkType(const char *ifname)
TmEcode AFPPeersListCheck(void)
Check that all AFPPeer got a peer.
int ConfValIsTrue(const char *val)
Check if a value is true.
#define AFP_BLOCK_SIZE_DEFAULT_ORDER
size_t strlcpy(char *dst, const char *src, size_t siz)
int RunModeSetLiveCaptureAutoFp(ConfigIfaceParserFunc ConfigParser, ConfigIfaceThreadsCountFunc ModThreadsCount, const char *recv_mod_name, const char *decode_mod_name, const char *thread_name, const char *live_dev)
@ CHECKSUM_VALIDATION_ENABLE
int ConfGet(const char *name, const char **vptr)
Retrieve the value of a configuration node.
@ CHECKSUM_VALIDATION_AUTO
const char * ebpf_filter_file
void RunModeRegisterNewRunMode(enum RunModes runmode, const char *name, const char *description, int(*RunModeFunc)(void), int(*RunModeIsIPSEnabled)(void))
Registers a new runmode.
void RunModeEnablesBypassManager(void)
LiveDevice * LiveGetDevice(const char *name)
Get a pointer to the device at idx.
int GetIfaceRSSQueuesNum(const char *dev)
ConfNode * ConfFindDeviceConfig(ConfNode *node, const char *iface)
Find the configuration node for a specific device.
#define PACKET_FANOUT_CPU
void EngineModeSetIPS(void)
int ConfGetChildValueWithDefault(const ConfNode *base, const ConfNode *dflt, const char *name, const char **vptr)
void(* DerefFunc)(void *)
#define SCLogWarning(...)
Macro used to log WARNING messages.
#define AFP_COPY_MODE_TAP
#define SC_ATOMIC_SUB(name, val)
sub a value from our atomic variable
int GetIfaceOffloading(const char *dev, int csum, int other)
output offloading status of the link
int DisableIfaceOffloading(LiveDevice *dev, int csum, int other)
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
uint32_t max_pending_packets
int ConfGetChildValue(const ConfNode *base, const char *name, const char **vptr)
void TimeModeSetLive(void)
void ConfSetBPFFilter(ConfNode *if_root, ConfNode *if_default, const char *iface, const char **bpf_filter)
const char * LiveGetDeviceName(int number)
Get a pointer to the device name at idx.
const char * xdp_filter_file
int RunModeIdsAFPAutoFp(void)
#define SC_ATOMIC_RESET(name)
wrapper for reinitializing an atomic variable.
int BypassedFlowManagerRegisterUpdateFunc(BypassedUpdateFunc UpdateFunc, void *data)
struct SCLogConfig_ SCLogConfig
Holds the config state used by the logging api.
#define SCLogError(...)
Macro used to log ERROR messages.
#define AFP_COPY_MODE_IPS
int ConfValIsFalse(const char *val)
Check if a value is false.
int RunModeSetLiveCaptureSingle(ConfigIfaceParserFunc ConfigParser, ConfigIfaceThreadsCountFunc ModThreadsCount, const char *recv_mod_name, const char *decode_mod_name, const char *thread_name, const char *live_dev)
char iface[AFP_IFACE_NAME_LENGTH]
int LiveGetDeviceCount(void)
Get the number of registered devices.
uint16_t UtilCpuGetNumProcessorsOnline(void)
Get the number of cpus online in the system.
const char * ebpf_lb_file
#define SCLogNotice(...)
Macro used to log NOTICE messages.
int BypassedFlowManagerRegisterCheckFunc(BypassedCheckFunc CheckFunc, BypassedCheckFuncInit CheckFuncInit, void *data)
int AFPIsFanoutSupported(uint16_t cluster_id)
test if we can use FANOUT. Older kernels like those in CentOS6 have HAVE_PACKET_FANOUT defined but fa...
#define LINKTYPE_ETHERNET
#define AFP_EMERGENCY_MODE