suricata
runmode-af-xdp.c
Go to the documentation of this file.
1 /* Copyright (C) 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  * \ingroup afxdppacket
20  *
21  * @{
22  */
23 
24 /**
25  * \file
26  *
27  * \author Richard McConnell <richard_mcconnell@rapid7.com>
28  *
29  * AF_XDP socket runmode
30  *
31  */
32 #define SC_PCAP_DONT_INCLUDE_PCAP_H 1
34 #include "tm-threads.h"
35 #include "conf.h"
36 #include "runmodes.h"
37 #include "runmode-af-xdp.h"
38 #include "output.h"
39 #include "log-httplog.h"
40 #include "detect-engine-mpm.h"
41 
42 #include "alert-fastlog.h"
43 #include "alert-debuglog.h"
44 
45 #include "flow-bypass.h"
46 
47 #include "util-conf.h"
48 #include "util-debug.h"
49 #include "util-time.h"
50 #include "util-cpu.h"
51 #include "util-affinity.h"
52 #include "util-device-private.h"
53 #include "util-runmodes.h"
54 #include "util-ioctl.h"
55 #include "util-ebpf.h"
56 #include "util-byte.h"
57 
58 #include "source-af-xdp.h"
59 
60 #ifdef HAVE_AF_XDP
61 #include <linux/if_xdp.h>
62 #include <linux/if_link.h>
63 #include <xdp/xsk.h>
64 #endif
65 
66 const char *RunModeAFXDPGetDefaultMode(void)
67 {
68  return "workers";
69 }
70 
72 {
73  RunModeRegisterNewRunMode(RUNMODE_AFXDP_DEV, "single", "Single threaded af-xdp mode",
74  RunModeIdsAFXDPSingle, NULL);
76  "Workers af-xdp mode, each thread does all"
77  " tasks from acquisition to logging",
79 }
80 
81 #ifdef HAVE_AF_XDP
82 
83 #define DEFAULT_BUSY_POLL_TIME 20
84 #define DEFAULT_BUSY_POLL_BUDGET 64
85 #define DEFAULT_GRO_FLUSH_TIMEOUT 2000000
86 #define DEFAULT_NAPI_HARD_IRQS 2
87 
88 static void AFXDPDerefConfig(void *conf)
89 {
90  AFXDPIfaceConfig *pfp = (AFXDPIfaceConfig *)conf;
91  /* Pcap config is used only once but cost of this low. */
92  if (SC_ATOMIC_SUB(pfp->ref, 1) <= 1) {
93  SCFree(pfp);
94  }
95 }
96 
97 static TmEcode ConfigSetThreads(AFXDPIfaceConfig *aconf, const char *entry_str)
98 {
99  SCEnter();
100  const char *active_runmode = RunmodeGetActive();
101 
102  if (active_runmode && !strcmp("single", active_runmode)) {
103  aconf->threads = 1;
104  SCReturnInt(0);
105  }
106 
107  if (entry_str == NULL) {
108  SCLogError("Number of threads for interface \"%s\" not specified", aconf->iface);
110  }
111 
112  const int nr_queues = GetIfaceRSSQueuesNum(aconf->iface);
113 
114  if (strcmp(entry_str, "auto") == 0) {
115 
116  const int nr_cores = (int)UtilCpuGetNumProcessorsOnline();
117 
118  /* Threads limited to MIN(cores vs queues) */
119  aconf->threads = (nr_cores <= nr_queues) ? nr_cores : nr_queues;
120  const char *sys_type = nr_cores <= nr_queues ? "cores" : "queues";
121 
122  SCLogPerf("%u %s, so using %u threads", aconf->threads, sys_type, aconf->threads);
124  }
125 
126  if (StringParseUint16(&aconf->threads, 10, 0, entry_str) < 0) {
127  SCLogError("Threads entry for interface %s contain non-numerical characters - \"%s\"",
128  aconf->iface, entry_str);
130  }
131 
132  if (aconf->threads > nr_queues) {
133  SCLogWarning(
134  "Selected threads greater than configured queues, using: %d thread(s)", nr_queues);
135  aconf->threads = nr_queues;
136  }
137 
139 }
140 
141 /**
142  * \brief extract information from config file
143  *
144  * The returned structure will be freed by the thread init function.
145  * This is thus necessary to copy the structure before giving it
146  * to thread or to reparse the file for each thread (and thus have
147  * new structure.
148  *
149  * \return a AFXDPIfaceConfig corresponding to the interface name
150  */
151 static void *ParseAFXDPConfig(const char *iface)
152 {
153  const char *confstr = NULL;
154  SCConfNode *if_root;
155  SCConfNode *if_default = NULL;
156  SCConfNode *af_xdp_node = NULL;
157  int conf_val = 0;
158  intmax_t conf_val_int = 0;
159  int boolval = 0;
160 
161  if (iface == NULL) {
162  return NULL;
163  }
164 
165  AFXDPIfaceConfig *aconf = SCCalloc(1, sizeof(*aconf));
166  if (unlikely(aconf == NULL)) {
167  return NULL;
168  }
169 
170  /* default/basic config setup */
171  strlcpy(aconf->iface, iface, sizeof(aconf->iface));
172  aconf->DerefFunc = AFXDPDerefConfig;
173  aconf->threads = 1;
174  aconf->promisc = 1;
175  aconf->enable_busy_poll = true;
176  aconf->busy_poll_time = DEFAULT_BUSY_POLL_TIME;
177  aconf->busy_poll_budget = DEFAULT_BUSY_POLL_BUDGET;
178  aconf->mode = XDP_FLAGS_UPDATE_IF_NOEXIST;
179  aconf->gro_flush_timeout = DEFAULT_GRO_FLUSH_TIMEOUT;
180  aconf->napi_defer_hard_irqs = DEFAULT_NAPI_HARD_IRQS;
181  aconf->mem_alignment = XSK_UMEM__DEFAULT_FLAGS;
182 
183  /* Find initial node */
184  af_xdp_node = SCConfGetNode("af-xdp");
185  if (af_xdp_node == NULL) {
186  SCLogInfo("unable to find af-xdp config using default values");
187  goto finalize;
188  }
189 
190  if_root = ConfFindDeviceConfig(af_xdp_node, iface);
191  if_default = ConfFindDeviceConfig(af_xdp_node, "default");
192 
193  if (if_root == NULL && if_default == NULL) {
194  SCLogInfo("unable to find af-xdp config for "
195  "interface \"%s\" or \"default\", using default values",
196  iface);
197  goto finalize;
198  }
199 
200  /* If there is no setting for current interface use default one as main iface */
201  if (if_root == NULL) {
202  if_root = if_default;
203  if_default = NULL;
204  }
205 
206  /* Threading */
207  confstr = "auto";
208  (void)SCConfGetChildValueWithDefault(if_root, if_default, "threads", &confstr);
209  if (ConfigSetThreads(aconf, confstr) != TM_ECODE_OK) {
210  aconf->DerefFunc(aconf);
211  return NULL;
212  }
213 
214  SC_ATOMIC_RESET(aconf->ref);
215  (void)SC_ATOMIC_ADD(aconf->ref, aconf->threads);
216 
217  /* Promisc Mode */
218  (void)SCConfGetChildValueBoolWithDefault(if_root, if_default, "disable-promisc", &boolval);
219  if (boolval) {
220  SCLogConfig("Disabling promiscuous mode on iface %s", aconf->iface);
221  aconf->promisc = 0;
222  }
223 
224 #ifdef HAVE_AF_XDP
225  /* AF_XDP socket mode options */
226  if (SCConfGetChildValueWithDefault(if_root, if_default, "force-xdp-mode", &confstr) == 1) {
227  if (strncasecmp(confstr, "drv", 3) == 0) {
228  aconf->mode |= XDP_FLAGS_DRV_MODE;
229  } else if (strncasecmp(confstr, "skb", 3) == 0) {
230  aconf->mode |= XDP_FLAGS_SKB_MODE;
231  } else if (strncasecmp(confstr, "none", 4) == 0) {
232  } else {
233  SCLogWarning("Incorrect af-xdp xdp-mode setting, default (none) shall be applied");
234  }
235  }
236 
237  /* copy and zerocopy binding options */
238  if (SCConfGetChildValueWithDefault(if_root, if_default, "force-bind-mode", &confstr) == 1) {
239  if (strncasecmp(confstr, "zero", 4) == 0) {
240  aconf->bind_flags |= XDP_ZEROCOPY;
241  } else if (strncasecmp(confstr, "copy", 4) == 0) {
242  aconf->bind_flags |= XDP_COPY;
243  } else if (strncasecmp(confstr, "none", 4) == 0) {
244  } else {
245  SCLogWarning("Incorrect af-xdp copy-mode setting, default (none) shall be applied");
246  }
247  }
248 
249  /* memory alignment mode selection */
250  if (SCConfGetChildValueWithDefault(if_root, if_default, "mem-unaligned", &confstr) == 1) {
251  if (strncasecmp(confstr, "yes", 3) == 0) {
252  aconf->mem_alignment = XDP_UMEM_UNALIGNED_CHUNK_FLAG;
253  }
254  }
255 
256  /* Busy polling options */
257  if (SCConfGetChildValueBoolWithDefault(if_root, if_default, "enable-busy-poll", &conf_val) ==
258  1) {
259  if (conf_val == 0) {
260  aconf->enable_busy_poll = false;
261  }
262  }
263 
264  if (aconf->enable_busy_poll) {
266  if_root, if_default, "busy-poll-time", &conf_val_int) == 1) {
267  if (conf_val_int) {
268  aconf->busy_poll_time = conf_val_int;
269  }
270  }
271 
273  if_root, if_default, "busy-poll-budget", &conf_val_int) == 1) {
274  if (conf_val_int) {
275  aconf->busy_poll_budget = conf_val_int;
276  }
277  }
278 
279  /* 0 value is valid for these Linux tunable's */
281  if_root, if_default, "gro-flush-timeout", &conf_val_int) == 1) {
282  aconf->gro_flush_timeout = conf_val_int;
283  }
284 
286  if_root, if_default, "napi-defer-hard-irq", &conf_val_int) == 1) {
287  aconf->napi_defer_hard_irqs = conf_val_int;
288  }
289  }
290 #endif
291 
292 finalize:
293  if (LiveGetOffload() == 0) {
294  if (GetIfaceOffloading(iface, 0, 1) == 1) {
295  SCLogWarning("Using AF_XDP with offloading activated leads to capture problems");
296  }
297  } else {
299  }
300 
301  return aconf;
302 }
303 
304 static uint16_t AFXDPConfigGetThreadsCount(void *conf)
305 {
306  if (conf == NULL)
307  FatalError("Configuration file is NULL");
308 
309  AFXDPIfaceConfig *afxdp_conf = (AFXDPIfaceConfig *)conf;
310  return afxdp_conf->threads;
311 }
312 
313 #endif /* HAVE_AF_XDP */
314 
315 /**
316  * \brief Single thread version of the AF_XDP processing.
317  */
319 {
320  SCEnter();
321 
322 #ifdef HAVE_AF_XDP
323  int ret;
324  const char *live_dev = NULL;
325 
326  TimeModeSetLive();
327 
328  (void)SCConfGet("af-xdp.live-interface", &live_dev);
329 
331  FatalError("Unable to init AF_XDP queue protection.");
332  }
333 
334  ret = RunModeSetLiveCaptureSingle(ParseAFXDPConfig, AFXDPConfigGetThreadsCount, "ReceiveAFXDP",
335  "DecodeAFXDP", thread_name_single, live_dev);
336  if (ret != 0) {
337  FatalError("Unable to start runmode");
338  }
339 
340  SCLogDebug("RunModeIdsAFXDPSingle initialised");
341 
342 #endif /* HAVE_AF_XDP */
343  SCReturnInt(0);
344 }
345 
346 /**
347  * \brief Workers version of the AF_XDP processing.
348  *
349  * Start N threads with each thread doing all the work.
350  *
351  */
353 {
354  SCEnter();
355 
356 #ifdef HAVE_AF_XDP
357  int ret;
358  const char *live_dev = NULL;
359 
360  TimeModeSetLive();
361 
362  (void)SCConfGet("af-xdp.live-interface", &live_dev);
363 
365  FatalError("Unable to init AF_XDP queue protection.");
366  }
367 
368  ret = RunModeSetLiveCaptureWorkers(ParseAFXDPConfig, AFXDPConfigGetThreadsCount, "ReceiveAFXDP",
369  "DecodeAFXDP", thread_name_workers, live_dev);
370  if (ret != 0) {
371  FatalError("Unable to start runmode");
372  }
373 
374  SCLogDebug("RunModeIdsAFXDPWorkers initialised");
375 
376 #endif /* HAVE_AF_XDP */
377  SCReturnInt(0);
378 }
379 /**
380  * @}
381  */
thread_name_workers
const char * thread_name_workers
Definition: runmodes.c:68
util-device-private.h
util-byte.h
tm-threads.h
flow-bypass.h
RUNMODE_AFXDP_DEV
@ RUNMODE_AFXDP_DEV
Definition: runmodes.h:37
RunModeSetLiveCaptureWorkers
int RunModeSetLiveCaptureWorkers(ConfigIfaceParserFunc ConfigParser, ConfigIfaceThreadsCountFunc ModThreadsCount, const char *recv_mod_name, const char *decode_mod_name, const char *thread_name, const char *live_dev)
Definition: util-runmodes.c:333
alert-debuglog.h
AFXDPIfaceConfig::mode
uint32_t mode
Definition: source-af-xdp.h:36
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
AFXDPIfaceConfig::iface
char iface[AFXDP_IFACE_NAME_LENGTH]
Definition: source-af-xdp.h:30
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:279
LiveGetOffload
int LiveGetOffload(void)
Definition: util-device.c:87
AFXDPIfaceConfig::mem_alignment
int mem_alignment
Definition: source-af-xdp.h:38
AFXDPIfaceConfig::gro_flush_timeout
uint32_t gro_flush_timeout
Definition: source-af-xdp.h:42
AFXDPIfaceConfig::DerefFunc
void(* DerefFunc)(void *)
Definition: source-af-xdp.h:46
SC_ATOMIC_ADD
#define SC_ATOMIC_ADD(name, val)
add a value to our atomic variable
Definition: util-atomic.h:332
StringParseUint16
int StringParseUint16(uint16_t *res, int base, size_t len, const char *str)
Definition: util-byte.c:343
SCConfGet
int SCConfGet(const char *name, const char **vptr)
Retrieve the value of a configuration node.
Definition: conf.c:350
util-runmodes.h
RunmodeGetActive
char * RunmodeGetActive(void)
Definition: runmodes.c:199
RunModeAFXDPGetDefaultMode
const char * RunModeAFXDPGetDefaultMode(void)
Definition: runmode-af-xdp.c:66
TM_ECODE_FAILED
@ TM_ECODE_FAILED
Definition: tm-threads-common.h:82
thread_name_single
const char * thread_name_single
Definition: runmodes.c:67
AFXDPIfaceConfig::napi_defer_hard_irqs
uint32_t napi_defer_hard_irqs
Definition: source-af-xdp.h:43
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:81
AFXDPQueueProtectionInit
TmEcode AFXDPQueueProtectionInit(void)
strlcpy
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: util-strlcpyu.c:43
util-debug.h
SCConfGetChildValueIntWithDefault
int SCConfGetChildValueIntWithDefault(const SCConfNode *base, const SCConfNode *dflt, const char *name, intmax_t *val)
Definition: conf.c:476
AFXDPIfaceConfig::enable_busy_poll
bool enable_busy_poll
Definition: source-af-xdp.h:39
util-cpu.h
LiveGetDevice
LiveDevice * LiveGetDevice(const char *name)
Get a pointer to the device at idx.
Definition: util-device.c:268
GetIfaceRSSQueuesNum
int GetIfaceRSSQueuesNum(const char *dev)
Definition: util-ioctl.c:713
SCEnter
#define SCEnter(...)
Definition: util-debug.h:281
detect-engine-mpm.h
util-ebpf.h
AFXDPIfaceConfig::busy_poll_budget
uint32_t busy_poll_budget
Definition: source-af-xdp.h:41
util-affinity.h
AFXDPIfaceConfig::promisc
int promisc
Definition: source-af-xdp.h:33
util-time.h
SCLogWarning
#define SCLogWarning(...)
Macro used to log WARNING messages.
Definition: util-debug.h:259
AFXDPIfaceConfig::bind_flags
uint32_t bind_flags
Definition: source-af-xdp.h:37
SC_ATOMIC_SUB
#define SC_ATOMIC_SUB(name, val)
sub a value from our atomic variable
Definition: util-atomic.h:341
AFXDPIfaceConfig::threads
uint16_t threads
Definition: source-af-xdp.h:32
AFXDPIfaceConfig::busy_poll_time
uint32_t busy_poll_time
Definition: source-af-xdp.h:40
conf.h
RunModeRegisterNewRunMode
void RunModeRegisterNewRunMode(enum SCRunModes runmode, const char *name, const char *description, int(*RunModeFunc)(void), int(*RunModeIsIPSEnabled)(void))
Registers a new runmode.
Definition: runmodes.c:486
TmEcode
TmEcode
Definition: tm-threads-common.h:80
GetIfaceOffloading
int GetIfaceOffloading(const char *dev, int csum, int other)
output offloading status of the link
Definition: util-ioctl.c:670
DisableIfaceOffloading
int DisableIfaceOffloading(LiveDevice *dev, int csum, int other)
Definition: util-ioctl.c:683
runmodes.h
SCLogInfo
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
Definition: util-debug.h:229
TimeModeSetLive
void TimeModeSetLive(void)
Definition: util-time.c:99
alert-fastlog.h
RunModeIdsAFXDPRegister
void RunModeIdsAFXDPRegister(void)
Definition: runmode-af-xdp.c:71
util-conf.h
suricata-common.h
source-af-xdp.h
SCLogPerf
#define SCLogPerf(...)
Definition: util-debug.h:238
FatalError
#define FatalError(...)
Definition: util-debug.h:514
RunModeIdsAFXDPWorkers
int RunModeIdsAFXDPWorkers(void)
Workers version of the AF_XDP processing.
Definition: runmode-af-xdp.c:352
log-httplog.h
SC_ATOMIC_RESET
#define SC_ATOMIC_RESET(name)
wrapper for reinitializing an atomic variable.
Definition: util-atomic.h:323
SCLogConfig
struct SCLogConfig_ SCLogConfig
Holds the config state used by the logging api.
AFXDPIfaceConfig
Definition: source-af-xdp.h:29
runmode-af-xdp.h
SCConfGetNode
SCConfNode * SCConfGetNode(const char *name)
Get a SCConfNode by name.
Definition: conf.c:181
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:271
SCFree
#define SCFree(p)
Definition: util-mem.h:61
util-ioctl.h
RunModeSetLiveCaptureSingle
int RunModeSetLiveCaptureSingle(ConfigIfaceParserFunc ConfigParser, ConfigIfaceThreadsCountFunc ModThreadsCount, const char *recv_mod_name, const char *decode_mod_name, const char *thread_name, const char *live_dev)
Definition: util-runmodes.c:357
ConfFindDeviceConfig
SCConfNode * ConfFindDeviceConfig(SCConfNode *node, const char *iface)
Find the configuration node for a specific device.
Definition: util-conf.c:121
RunModeIdsAFXDPSingle
int RunModeIdsAFXDPSingle(void)
Single thread version of the AF_XDP processing.
Definition: runmode-af-xdp.c:318
SCConfGetChildValueWithDefault
int SCConfGetChildValueWithDefault(const SCConfNode *base, const SCConfNode *dflt, const char *name, const char **vptr)
Definition: conf.c:393
UtilCpuGetNumProcessorsOnline
uint16_t UtilCpuGetNumProcessorsOnline(void)
Get the number of cpus online in the system.
Definition: util-cpu.c:108
SCConfGetChildValueBoolWithDefault
int SCConfGetChildValueBoolWithDefault(const SCConfNode *base, const SCConfNode *dflt, const char *name, int *val)
Definition: conf.c:528
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
SCReturnInt
#define SCReturnInt(x)
Definition: util-debug.h:285
SCConfNode_
Definition: conf.h:37
output.h