blob: 7c56a7a784e139b56848b1b07231c05c9863e41c [file] [log] [blame]
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001// SPDX-License-Identifier: GPL-2.0
Björn Töpeldac091492018-05-18 14:00:21 +02002/* Copyright(c) 2017 - 2018 Intel Corporation. */
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02003
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02004#include <errno.h>
5#include <getopt.h>
6#include <libgen.h>
7#include <linux/bpf.h>
8#include <linux/if_link.h>
9#include <linux/if_xdp.h>
10#include <linux/if_ether.h>
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +053011#include <linux/ip.h>
Ciara Loftus67ed3752020-10-02 13:36:12 +000012#include <linux/limits.h>
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +053013#include <linux/udp.h>
14#include <arpa/inet.h>
Magnus Karlsson248c7f92019-02-21 10:21:27 +010015#include <locale.h>
16#include <net/ethernet.h>
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020017#include <net/if.h>
Magnus Karlsson248c7f92019-02-21 10:21:27 +010018#include <poll.h>
19#include <pthread.h>
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020020#include <signal.h>
21#include <stdbool.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
Mariusz Dudek3627d972020-12-03 10:05:46 +010025#include <sys/capability.h>
Magnus Karlsson248c7f92019-02-21 10:21:27 +010026#include <sys/mman.h>
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020027#include <sys/resource.h>
28#include <sys/socket.h>
Magnus Karlsson248c7f92019-02-21 10:21:27 +010029#include <sys/types.h>
Mariusz Dudek3627d972020-12-03 10:05:46 +010030#include <sys/un.h>
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020031#include <time.h>
32#include <unistd.h>
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020033
Toke Høiland-Jørgensen7cf245a2020-01-20 14:06:49 +010034#include <bpf/libbpf.h>
35#include <bpf/xsk.h>
Jakub Kicinski2bf3e2e2018-05-14 22:35:02 -070036#include <bpf/bpf.h>
Toke Høiland-Jørgensen7cf245a2020-01-20 14:06:49 +010037#include "xdpsock.h"
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020038
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020039#ifndef SOL_XDP
40#define SOL_XDP 283
41#endif
42
43#ifndef AF_XDP
44#define AF_XDP 44
45#endif
46
47#ifndef PF_XDP
48#define PF_XDP AF_XDP
49#endif
50
Magnus Karlsson248c7f92019-02-21 10:21:27 +010051#define NUM_FRAMES (4 * 1024)
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +053052#define MIN_PKT_SIZE 64
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020053
54#define DEBUG_HEXDUMP 0
55
Björn Töpela412ef52018-06-04 13:57:14 +020056typedef __u64 u64;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020057typedef __u32 u32;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +053058typedef __u16 u16;
59typedef __u8 u8;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020060
61static unsigned long prev_time;
62
63enum benchmark_type {
64 BENCH_RXDROP = 0,
65 BENCH_TXONLY = 1,
66 BENCH_L2FWD = 2,
67};
68
69static enum benchmark_type opt_bench = BENCH_RXDROP;
Maciej Fijalkowski743e5682019-02-01 22:42:28 +010070static u32 opt_xdp_flags = XDP_FLAGS_UPDATE_IF_NOEXIST;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020071static const char *opt_if = "";
72static int opt_ifindex;
73static int opt_queue;
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +053074static unsigned long opt_duration;
75static unsigned long start_time;
76static bool benchmark_done;
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +053077static u32 opt_batch_size = 64;
Jay Jayatheerthanece6e962019-12-20 14:25:28 +053078static int opt_pkt_count;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +053079static u16 opt_pkt_size = MIN_PKT_SIZE;
Jay Jayatheerthan46e32682019-12-20 14:25:30 +053080static u32 opt_pkt_fill_pattern = 0x12345678;
Ciara Loftusb36c3202020-07-08 07:28:34 +000081static bool opt_extra_stats;
Magnus Karlsson74e00672020-09-10 10:31:06 +020082static bool opt_quiet;
Ciara Loftus60dc6092020-10-02 13:36:11 +000083static bool opt_app_stats;
Ciara Loftus67ed3752020-10-02 13:36:12 +000084static const char *opt_irq_str = "";
85static u32 irq_no;
86static int irqs_at_init = -1;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020087static int opt_poll;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +020088static int opt_interval = 1;
Magnus Karlsson46738f72019-08-14 09:27:21 +020089static u32 opt_xdp_bind_flags = XDP_USE_NEED_WAKEUP;
Kevin Laatzc543f542019-08-27 02:25:28 +000090static u32 opt_umem_flags;
91static int opt_unaligned_chunks;
Kevin Laatz3945b372019-08-27 02:25:30 +000092static int opt_mmap_flags;
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +030093static int opt_xsk_frame_size = XSK_UMEM__DEFAULT_FRAME_SIZE;
Magnus Karlsson46738f72019-08-14 09:27:21 +020094static int opt_timeout = 1000;
95static bool opt_need_wakeup = true;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +010096static u32 opt_num_xsks = 1;
Wang Hai2620e922021-06-28 17:18:15 +080097static u32 prog_id;
Björn Töpelb35fc142020-11-30 19:52:04 +010098static bool opt_busy_poll;
Mariusz Dudek3627d972020-12-03 10:05:46 +010099static bool opt_reduced_cap;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200100
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000101struct xsk_ring_stats {
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200102 unsigned long rx_npkts;
103 unsigned long tx_npkts;
Ciara Loftusb36c3202020-07-08 07:28:34 +0000104 unsigned long rx_dropped_npkts;
105 unsigned long rx_invalid_npkts;
106 unsigned long tx_invalid_npkts;
107 unsigned long rx_full_npkts;
108 unsigned long rx_fill_empty_npkts;
109 unsigned long tx_empty_npkts;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200110 unsigned long prev_rx_npkts;
111 unsigned long prev_tx_npkts;
Ciara Loftusb36c3202020-07-08 07:28:34 +0000112 unsigned long prev_rx_dropped_npkts;
113 unsigned long prev_rx_invalid_npkts;
114 unsigned long prev_tx_invalid_npkts;
115 unsigned long prev_rx_full_npkts;
116 unsigned long prev_rx_fill_empty_npkts;
117 unsigned long prev_tx_empty_npkts;
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000118};
119
Ciara Loftus67ed3752020-10-02 13:36:12 +0000120struct xsk_driver_stats {
121 unsigned long intrs;
122 unsigned long prev_intrs;
123};
124
Ciara Loftus60dc6092020-10-02 13:36:11 +0000125struct xsk_app_stats {
126 unsigned long rx_empty_polls;
127 unsigned long fill_fail_polls;
128 unsigned long copy_tx_sendtos;
129 unsigned long tx_wakeup_sendtos;
130 unsigned long opt_polls;
131 unsigned long prev_rx_empty_polls;
132 unsigned long prev_fill_fail_polls;
133 unsigned long prev_copy_tx_sendtos;
134 unsigned long prev_tx_wakeup_sendtos;
135 unsigned long prev_opt_polls;
136};
137
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000138struct xsk_umem_info {
139 struct xsk_ring_prod fq;
140 struct xsk_ring_cons cq;
141 struct xsk_umem *umem;
142 void *buffer;
143};
144
145struct xsk_socket_info {
146 struct xsk_ring_cons rx;
147 struct xsk_ring_prod tx;
148 struct xsk_umem_info *umem;
149 struct xsk_socket *xsk;
150 struct xsk_ring_stats ring_stats;
Ciara Loftus60dc6092020-10-02 13:36:11 +0000151 struct xsk_app_stats app_stats;
Ciara Loftus67ed3752020-10-02 13:36:12 +0000152 struct xsk_driver_stats drv_stats;
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100153 u32 outstanding_tx;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200154};
155
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200156static int num_socks;
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100157struct xsk_socket_info *xsks[MAX_SOCKS];
Mariusz Dudek3627d972020-12-03 10:05:46 +0100158int sock;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200159
160static unsigned long get_nsecs(void)
161{
162 struct timespec ts;
163
164 clock_gettime(CLOCK_MONOTONIC, &ts);
165 return ts.tv_sec * 1000000000UL + ts.tv_nsec;
166}
167
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200168static void print_benchmark(bool running)
169{
170 const char *bench_str = "INVALID";
171
172 if (opt_bench == BENCH_RXDROP)
173 bench_str = "rxdrop";
174 else if (opt_bench == BENCH_TXONLY)
175 bench_str = "txonly";
176 else if (opt_bench == BENCH_L2FWD)
177 bench_str = "l2fwd";
178
179 printf("%s:%d %s ", opt_if, opt_queue, bench_str);
180 if (opt_xdp_flags & XDP_FLAGS_SKB_MODE)
181 printf("xdp-skb ");
182 else if (opt_xdp_flags & XDP_FLAGS_DRV_MODE)
183 printf("xdp-drv ");
184 else
185 printf(" ");
186
187 if (opt_poll)
188 printf("poll() ");
189
190 if (running) {
191 printf("running...");
192 fflush(stdout);
193 }
194}
195
Ciara Loftusb36c3202020-07-08 07:28:34 +0000196static int xsk_get_xdp_stats(int fd, struct xsk_socket_info *xsk)
197{
198 struct xdp_statistics stats;
199 socklen_t optlen;
200 int err;
201
202 optlen = sizeof(stats);
203 err = getsockopt(fd, SOL_XDP, XDP_STATISTICS, &stats, &optlen);
204 if (err)
205 return err;
206
207 if (optlen == sizeof(struct xdp_statistics)) {
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000208 xsk->ring_stats.rx_dropped_npkts = stats.rx_dropped;
209 xsk->ring_stats.rx_invalid_npkts = stats.rx_invalid_descs;
210 xsk->ring_stats.tx_invalid_npkts = stats.tx_invalid_descs;
211 xsk->ring_stats.rx_full_npkts = stats.rx_ring_full;
212 xsk->ring_stats.rx_fill_empty_npkts = stats.rx_fill_ring_empty_descs;
213 xsk->ring_stats.tx_empty_npkts = stats.tx_ring_empty_descs;
Ciara Loftusb36c3202020-07-08 07:28:34 +0000214 return 0;
215 }
216
217 return -EINVAL;
218}
219
Ciara Loftus60dc6092020-10-02 13:36:11 +0000220static void dump_app_stats(long dt)
221{
222 int i;
223
224 for (i = 0; i < num_socks && xsks[i]; i++) {
225 char *fmt = "%-18s %'-14.0f %'-14lu\n";
226 double rx_empty_polls_ps, fill_fail_polls_ps, copy_tx_sendtos_ps,
227 tx_wakeup_sendtos_ps, opt_polls_ps;
228
229 rx_empty_polls_ps = (xsks[i]->app_stats.rx_empty_polls -
230 xsks[i]->app_stats.prev_rx_empty_polls) * 1000000000. / dt;
231 fill_fail_polls_ps = (xsks[i]->app_stats.fill_fail_polls -
232 xsks[i]->app_stats.prev_fill_fail_polls) * 1000000000. / dt;
233 copy_tx_sendtos_ps = (xsks[i]->app_stats.copy_tx_sendtos -
234 xsks[i]->app_stats.prev_copy_tx_sendtos) * 1000000000. / dt;
235 tx_wakeup_sendtos_ps = (xsks[i]->app_stats.tx_wakeup_sendtos -
236 xsks[i]->app_stats.prev_tx_wakeup_sendtos)
237 * 1000000000. / dt;
238 opt_polls_ps = (xsks[i]->app_stats.opt_polls -
239 xsks[i]->app_stats.prev_opt_polls) * 1000000000. / dt;
240
241 printf("\n%-18s %-14s %-14s\n", "", "calls/s", "count");
242 printf(fmt, "rx empty polls", rx_empty_polls_ps, xsks[i]->app_stats.rx_empty_polls);
243 printf(fmt, "fill fail polls", fill_fail_polls_ps,
244 xsks[i]->app_stats.fill_fail_polls);
245 printf(fmt, "copy tx sendtos", copy_tx_sendtos_ps,
246 xsks[i]->app_stats.copy_tx_sendtos);
247 printf(fmt, "tx wakeup sendtos", tx_wakeup_sendtos_ps,
248 xsks[i]->app_stats.tx_wakeup_sendtos);
249 printf(fmt, "opt polls", opt_polls_ps, xsks[i]->app_stats.opt_polls);
250
251 xsks[i]->app_stats.prev_rx_empty_polls = xsks[i]->app_stats.rx_empty_polls;
252 xsks[i]->app_stats.prev_fill_fail_polls = xsks[i]->app_stats.fill_fail_polls;
253 xsks[i]->app_stats.prev_copy_tx_sendtos = xsks[i]->app_stats.copy_tx_sendtos;
254 xsks[i]->app_stats.prev_tx_wakeup_sendtos = xsks[i]->app_stats.tx_wakeup_sendtos;
255 xsks[i]->app_stats.prev_opt_polls = xsks[i]->app_stats.opt_polls;
256 }
257}
258
Ciara Loftus67ed3752020-10-02 13:36:12 +0000259static bool get_interrupt_number(void)
260{
261 FILE *f_int_proc;
262 char line[4096];
263 bool found = false;
264
265 f_int_proc = fopen("/proc/interrupts", "r");
266 if (f_int_proc == NULL) {
267 printf("Failed to open /proc/interrupts.\n");
268 return found;
269 }
270
271 while (!feof(f_int_proc) && !found) {
272 /* Make sure to read a full line at a time */
273 if (fgets(line, sizeof(line), f_int_proc) == NULL ||
274 line[strlen(line) - 1] != '\n') {
275 printf("Error reading from interrupts file\n");
276 break;
277 }
278
279 /* Extract interrupt number from line */
280 if (strstr(line, opt_irq_str) != NULL) {
281 irq_no = atoi(line);
282 found = true;
283 break;
284 }
285 }
286
287 fclose(f_int_proc);
288
289 return found;
290}
291
292static int get_irqs(void)
293{
294 char count_path[PATH_MAX];
295 int total_intrs = -1;
296 FILE *f_count_proc;
297 char line[4096];
298
299 snprintf(count_path, sizeof(count_path),
300 "/sys/kernel/irq/%i/per_cpu_count", irq_no);
301 f_count_proc = fopen(count_path, "r");
302 if (f_count_proc == NULL) {
303 printf("Failed to open %s\n", count_path);
304 return total_intrs;
305 }
306
307 if (fgets(line, sizeof(line), f_count_proc) == NULL ||
308 line[strlen(line) - 1] != '\n') {
309 printf("Error reading from %s\n", count_path);
310 } else {
311 static const char com[2] = ",";
312 char *token;
313
314 total_intrs = 0;
315 token = strtok(line, com);
316 while (token != NULL) {
317 /* sum up interrupts across all cores */
318 total_intrs += atoi(token);
319 token = strtok(NULL, com);
320 }
321 }
322
323 fclose(f_count_proc);
324
325 return total_intrs;
326}
327
328static void dump_driver_stats(long dt)
329{
330 int i;
331
332 for (i = 0; i < num_socks && xsks[i]; i++) {
333 char *fmt = "%-18s %'-14.0f %'-14lu\n";
334 double intrs_ps;
335 int n_ints = get_irqs();
336
337 if (n_ints < 0) {
338 printf("error getting intr info for intr %i\n", irq_no);
339 return;
340 }
341 xsks[i]->drv_stats.intrs = n_ints - irqs_at_init;
342
343 intrs_ps = (xsks[i]->drv_stats.intrs - xsks[i]->drv_stats.prev_intrs) *
344 1000000000. / dt;
345
346 printf("\n%-18s %-14s %-14s\n", "", "intrs/s", "count");
347 printf(fmt, "irqs", intrs_ps, xsks[i]->drv_stats.intrs);
348
349 xsks[i]->drv_stats.prev_intrs = xsks[i]->drv_stats.intrs;
350 }
351}
352
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200353static void dump_stats(void)
354{
355 unsigned long now = get_nsecs();
356 long dt = now - prev_time;
357 int i;
358
359 prev_time = now;
360
Prashant Bhole11c3f512018-08-31 10:00:49 +0900361 for (i = 0; i < num_socks && xsks[i]; i++) {
Ciara Loftus60dc6092020-10-02 13:36:11 +0000362 char *fmt = "%-18s %'-14.0f %'-14lu\n";
Ciara Loftusb36c3202020-07-08 07:28:34 +0000363 double rx_pps, tx_pps, dropped_pps, rx_invalid_pps, full_pps, fill_empty_pps,
364 tx_invalid_pps, tx_empty_pps;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200365
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000366 rx_pps = (xsks[i]->ring_stats.rx_npkts - xsks[i]->ring_stats.prev_rx_npkts) *
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200367 1000000000. / dt;
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000368 tx_pps = (xsks[i]->ring_stats.tx_npkts - xsks[i]->ring_stats.prev_tx_npkts) *
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200369 1000000000. / dt;
370
371 printf("\n sock%d@", i);
372 print_benchmark(false);
373 printf("\n");
374
Ciara Loftus60dc6092020-10-02 13:36:11 +0000375 printf("%-18s %-14s %-14s %-14.2f\n", "", "pps", "pkts",
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200376 dt / 1000000000.);
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000377 printf(fmt, "rx", rx_pps, xsks[i]->ring_stats.rx_npkts);
378 printf(fmt, "tx", tx_pps, xsks[i]->ring_stats.tx_npkts);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200379
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000380 xsks[i]->ring_stats.prev_rx_npkts = xsks[i]->ring_stats.rx_npkts;
381 xsks[i]->ring_stats.prev_tx_npkts = xsks[i]->ring_stats.tx_npkts;
Ciara Loftusb36c3202020-07-08 07:28:34 +0000382
383 if (opt_extra_stats) {
384 if (!xsk_get_xdp_stats(xsk_socket__fd(xsks[i]->xsk), xsks[i])) {
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000385 dropped_pps = (xsks[i]->ring_stats.rx_dropped_npkts -
386 xsks[i]->ring_stats.prev_rx_dropped_npkts) *
387 1000000000. / dt;
388 rx_invalid_pps = (xsks[i]->ring_stats.rx_invalid_npkts -
389 xsks[i]->ring_stats.prev_rx_invalid_npkts) *
390 1000000000. / dt;
391 tx_invalid_pps = (xsks[i]->ring_stats.tx_invalid_npkts -
392 xsks[i]->ring_stats.prev_tx_invalid_npkts) *
393 1000000000. / dt;
394 full_pps = (xsks[i]->ring_stats.rx_full_npkts -
395 xsks[i]->ring_stats.prev_rx_full_npkts) *
396 1000000000. / dt;
397 fill_empty_pps = (xsks[i]->ring_stats.rx_fill_empty_npkts -
398 xsks[i]->ring_stats.prev_rx_fill_empty_npkts) *
399 1000000000. / dt;
400 tx_empty_pps = (xsks[i]->ring_stats.tx_empty_npkts -
401 xsks[i]->ring_stats.prev_tx_empty_npkts) *
402 1000000000. / dt;
Ciara Loftusb36c3202020-07-08 07:28:34 +0000403
404 printf(fmt, "rx dropped", dropped_pps,
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000405 xsks[i]->ring_stats.rx_dropped_npkts);
Ciara Loftusb36c3202020-07-08 07:28:34 +0000406 printf(fmt, "rx invalid", rx_invalid_pps,
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000407 xsks[i]->ring_stats.rx_invalid_npkts);
Ciara Loftusb36c3202020-07-08 07:28:34 +0000408 printf(fmt, "tx invalid", tx_invalid_pps,
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000409 xsks[i]->ring_stats.tx_invalid_npkts);
Ciara Loftusb36c3202020-07-08 07:28:34 +0000410 printf(fmt, "rx queue full", full_pps,
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000411 xsks[i]->ring_stats.rx_full_npkts);
Ciara Loftusb36c3202020-07-08 07:28:34 +0000412 printf(fmt, "fill ring empty", fill_empty_pps,
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000413 xsks[i]->ring_stats.rx_fill_empty_npkts);
Ciara Loftusb36c3202020-07-08 07:28:34 +0000414 printf(fmt, "tx ring empty", tx_empty_pps,
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000415 xsks[i]->ring_stats.tx_empty_npkts);
Ciara Loftusb36c3202020-07-08 07:28:34 +0000416
Ciara Loftus2e8806f2020-10-02 13:36:10 +0000417 xsks[i]->ring_stats.prev_rx_dropped_npkts =
418 xsks[i]->ring_stats.rx_dropped_npkts;
419 xsks[i]->ring_stats.prev_rx_invalid_npkts =
420 xsks[i]->ring_stats.rx_invalid_npkts;
421 xsks[i]->ring_stats.prev_tx_invalid_npkts =
422 xsks[i]->ring_stats.tx_invalid_npkts;
423 xsks[i]->ring_stats.prev_rx_full_npkts =
424 xsks[i]->ring_stats.rx_full_npkts;
425 xsks[i]->ring_stats.prev_rx_fill_empty_npkts =
426 xsks[i]->ring_stats.rx_fill_empty_npkts;
427 xsks[i]->ring_stats.prev_tx_empty_npkts =
428 xsks[i]->ring_stats.tx_empty_npkts;
Ciara Loftusb36c3202020-07-08 07:28:34 +0000429 } else {
430 printf("%-15s\n", "Error retrieving extra stats");
431 }
432 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200433 }
Ciara Loftus60dc6092020-10-02 13:36:11 +0000434
435 if (opt_app_stats)
436 dump_app_stats(dt);
Ciara Loftus67ed3752020-10-02 13:36:12 +0000437 if (irq_no)
438 dump_driver_stats(dt);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200439}
440
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +0530441static bool is_benchmark_done(void)
442{
443 if (opt_duration > 0) {
444 unsigned long dt = (get_nsecs() - start_time);
445
446 if (dt >= opt_duration)
447 benchmark_done = true;
448 }
449 return benchmark_done;
450}
451
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200452static void *poller(void *arg)
453{
454 (void)arg;
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +0530455 while (!is_benchmark_done()) {
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200456 sleep(opt_interval);
457 dump_stats();
458 }
459
460 return NULL;
461}
462
Wang Hai2620e922021-06-28 17:18:15 +0800463static void remove_xdp_program(void)
464{
465 u32 curr_prog_id = 0;
466
467 if (bpf_get_link_xdp_id(opt_ifindex, &curr_prog_id, opt_xdp_flags)) {
468 printf("bpf_get_link_xdp_id failed\n");
469 exit(EXIT_FAILURE);
470 }
471
472 if (prog_id == curr_prog_id)
473 bpf_set_link_xdp_fd(opt_ifindex, -1, opt_xdp_flags);
474 else if (!curr_prog_id)
475 printf("couldn't find a prog id on a given interface\n");
476 else
477 printf("program on interface changed, not removing\n");
478}
479
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100480static void int_exit(int sig)
481{
Jay Jayatheerthan69525582019-12-20 14:25:26 +0530482 benchmark_done = true;
483}
484
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100485static void __exit_with_error(int error, const char *file, const char *func,
486 int line)
487{
488 fprintf(stderr, "%s:%s:%i: errno: %d/\"%s\"\n", file, func,
489 line, error, strerror(error));
Wang Hai2620e922021-06-28 17:18:15 +0800490
491 if (opt_num_xsks > 1)
492 remove_xdp_program();
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100493 exit(EXIT_FAILURE);
494}
495
Maciej Fijalkowskic9d27c92021-03-30 00:43:06 +0200496#define exit_with_error(error) __exit_with_error(error, __FILE__, __func__, __LINE__)
497
498static void xdpsock_cleanup(void)
499{
500 struct xsk_umem *umem = xsks[0]->umem->umem;
501 int i, cmd = CLOSE_CONN;
502
503 dump_stats();
504 for (i = 0; i < num_socks; i++)
505 xsk_socket__delete(xsks[i]->xsk);
506 (void)xsk_umem__delete(umem);
507
508 if (opt_reduced_cap) {
509 if (write(sock, &cmd, sizeof(int)) < 0)
510 exit_with_error(errno);
511 }
Wang Hai2620e922021-06-28 17:18:15 +0800512
513 if (opt_num_xsks > 1)
514 remove_xdp_program();
Maciej Fijalkowskic9d27c92021-03-30 00:43:06 +0200515}
516
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100517static void swap_mac_addresses(void *data)
518{
519 struct ether_header *eth = (struct ether_header *)data;
520 struct ether_addr *src_addr = (struct ether_addr *)&eth->ether_shost;
521 struct ether_addr *dst_addr = (struct ether_addr *)&eth->ether_dhost;
522 struct ether_addr tmp;
523
524 tmp = *src_addr;
525 *src_addr = *dst_addr;
526 *dst_addr = tmp;
527}
528
529static void hex_dump(void *pkt, size_t length, u64 addr)
530{
531 const unsigned char *address = (unsigned char *)pkt;
532 const unsigned char *line = address;
533 size_t line_size = 32;
534 unsigned char c;
535 char buf[32];
536 int i = 0;
537
538 if (!DEBUG_HEXDUMP)
539 return;
540
541 sprintf(buf, "addr=%llu", addr);
542 printf("length = %zu\n", length);
543 printf("%s | ", buf);
544 while (length-- > 0) {
545 printf("%02X ", *address++);
546 if (!(++i % line_size) || (length == 0 && i % line_size)) {
547 if (length == 0) {
548 while (i++ % line_size)
549 printf("__ ");
550 }
551 printf(" | "); /* right close */
552 while (line < address) {
553 c = *line++;
554 printf("%c", (c < 33 || c == 255) ? 0x2E : c);
555 }
556 printf("\n");
557 if (length > 0)
558 printf("%s | ", buf);
559 }
560 }
561 printf("\n");
562}
563
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530564static void *memset32_htonl(void *dest, u32 val, u32 size)
565{
566 u32 *ptr = (u32 *)dest;
567 int i;
568
569 val = htonl(val);
570
571 for (i = 0; i < (size & (~0x3)); i += 4)
572 ptr[i >> 2] = val;
573
574 for (; i < size; i++)
575 ((char *)dest)[i] = ((char *)&val)[i & 3];
576
577 return dest;
578}
579
580/*
581 * This function code has been taken from
582 * Linux kernel lib/checksum.c
583 */
584static inline unsigned short from32to16(unsigned int x)
585{
586 /* add up 16-bit and 16-bit for 16+c bit */
587 x = (x & 0xffff) + (x >> 16);
588 /* add up carry.. */
589 x = (x & 0xffff) + (x >> 16);
590 return x;
591}
592
593/*
594 * This function code has been taken from
595 * Linux kernel lib/checksum.c
596 */
597static unsigned int do_csum(const unsigned char *buff, int len)
598{
599 unsigned int result = 0;
600 int odd;
601
602 if (len <= 0)
603 goto out;
604 odd = 1 & (unsigned long)buff;
605 if (odd) {
606#ifdef __LITTLE_ENDIAN
607 result += (*buff << 8);
608#else
609 result = *buff;
610#endif
611 len--;
612 buff++;
613 }
614 if (len >= 2) {
615 if (2 & (unsigned long)buff) {
616 result += *(unsigned short *)buff;
617 len -= 2;
618 buff += 2;
619 }
620 if (len >= 4) {
621 const unsigned char *end = buff +
622 ((unsigned int)len & ~3);
623 unsigned int carry = 0;
624
625 do {
626 unsigned int w = *(unsigned int *)buff;
627
628 buff += 4;
629 result += carry;
630 result += w;
631 carry = (w > result);
632 } while (buff < end);
633 result += carry;
634 result = (result & 0xffff) + (result >> 16);
635 }
636 if (len & 2) {
637 result += *(unsigned short *)buff;
638 buff += 2;
639 }
640 }
641 if (len & 1)
642#ifdef __LITTLE_ENDIAN
643 result += *buff;
644#else
645 result += (*buff << 8);
646#endif
647 result = from32to16(result);
648 if (odd)
649 result = ((result >> 8) & 0xff) | ((result & 0xff) << 8);
650out:
651 return result;
652}
653
654__sum16 ip_fast_csum(const void *iph, unsigned int ihl);
655
656/*
657 * This is a version of ip_compute_csum() optimized for IP headers,
658 * which always checksum on 4 octet boundaries.
659 * This function code has been taken from
660 * Linux kernel lib/checksum.c
661 */
662__sum16 ip_fast_csum(const void *iph, unsigned int ihl)
663{
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200664 return (__sum16)~do_csum(iph, ihl * 4);
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530665}
666
667/*
668 * Fold a partial checksum
669 * This function code has been taken from
670 * Linux kernel include/asm-generic/checksum.h
671 */
672static inline __sum16 csum_fold(__wsum csum)
673{
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200674 u32 sum = (u32)csum;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530675
676 sum = (sum & 0xffff) + (sum >> 16);
677 sum = (sum & 0xffff) + (sum >> 16);
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200678 return (__sum16)~sum;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530679}
680
681/*
682 * This function code has been taken from
683 * Linux kernel lib/checksum.c
684 */
685static inline u32 from64to32(u64 x)
686{
687 /* add up 32-bit and 32-bit for 32+c bit */
688 x = (x & 0xffffffff) + (x >> 32);
689 /* add up carry.. */
690 x = (x & 0xffffffff) + (x >> 32);
691 return (u32)x;
692}
693
694__wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
695 __u32 len, __u8 proto, __wsum sum);
696
697/*
698 * This function code has been taken from
699 * Linux kernel lib/checksum.c
700 */
701__wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
702 __u32 len, __u8 proto, __wsum sum)
703{
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200704 unsigned long long s = (u32)sum;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530705
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200706 s += (u32)saddr;
707 s += (u32)daddr;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530708#ifdef __BIG_ENDIAN__
709 s += proto + len;
710#else
711 s += (proto + len) << 8;
712#endif
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200713 return (__wsum)from64to32(s);
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530714}
715
716/*
717 * This function has been taken from
718 * Linux kernel include/asm-generic/checksum.h
719 */
720static inline __sum16
721csum_tcpudp_magic(__be32 saddr, __be32 daddr, __u32 len,
722 __u8 proto, __wsum sum)
723{
724 return csum_fold(csum_tcpudp_nofold(saddr, daddr, len, proto, sum));
725}
726
727static inline u16 udp_csum(u32 saddr, u32 daddr, u32 len,
728 u8 proto, u16 *udp_pkt)
729{
730 u32 csum = 0;
731 u32 cnt = 0;
732
733 /* udp hdr and data */
734 for (; cnt < len; cnt += 2)
735 csum += udp_pkt[cnt >> 1];
736
737 return csum_tcpudp_magic(saddr, daddr, len, proto, csum);
738}
739
740#define ETH_FCS_SIZE 4
741
742#define PKT_HDR_SIZE (sizeof(struct ethhdr) + sizeof(struct iphdr) + \
743 sizeof(struct udphdr))
744
745#define PKT_SIZE (opt_pkt_size - ETH_FCS_SIZE)
746#define IP_PKT_SIZE (PKT_SIZE - sizeof(struct ethhdr))
747#define UDP_PKT_SIZE (IP_PKT_SIZE - sizeof(struct iphdr))
748#define UDP_PKT_DATA_SIZE (UDP_PKT_SIZE - sizeof(struct udphdr))
749
750static u8 pkt_data[XSK_UMEM__DEFAULT_FRAME_SIZE];
751
752static void gen_eth_hdr_data(void)
753{
754 struct udphdr *udp_hdr = (struct udphdr *)(pkt_data +
755 sizeof(struct ethhdr) +
756 sizeof(struct iphdr));
757 struct iphdr *ip_hdr = (struct iphdr *)(pkt_data +
758 sizeof(struct ethhdr));
759 struct ethhdr *eth_hdr = (struct ethhdr *)pkt_data;
760
761 /* ethernet header */
762 memcpy(eth_hdr->h_dest, "\x3c\xfd\xfe\x9e\x7f\x71", ETH_ALEN);
763 memcpy(eth_hdr->h_source, "\xec\xb1\xd7\x98\x3a\xc0", ETH_ALEN);
764 eth_hdr->h_proto = htons(ETH_P_IP);
765
766 /* IP header */
767 ip_hdr->version = IPVERSION;
768 ip_hdr->ihl = 0x5; /* 20 byte header */
769 ip_hdr->tos = 0x0;
770 ip_hdr->tot_len = htons(IP_PKT_SIZE);
771 ip_hdr->id = 0;
772 ip_hdr->frag_off = 0;
773 ip_hdr->ttl = IPDEFTTL;
774 ip_hdr->protocol = IPPROTO_UDP;
775 ip_hdr->saddr = htonl(0x0a0a0a10);
776 ip_hdr->daddr = htonl(0x0a0a0a20);
777
778 /* IP header checksum */
779 ip_hdr->check = 0;
780 ip_hdr->check = ip_fast_csum((const void *)ip_hdr, ip_hdr->ihl);
781
782 /* UDP header */
783 udp_hdr->source = htons(0x1000);
784 udp_hdr->dest = htons(0x1000);
785 udp_hdr->len = htons(UDP_PKT_SIZE);
786
787 /* UDP data */
Jay Jayatheerthan46e32682019-12-20 14:25:30 +0530788 memset32_htonl(pkt_data + PKT_HDR_SIZE, opt_pkt_fill_pattern,
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530789 UDP_PKT_DATA_SIZE);
790
791 /* UDP header checksum */
792 udp_hdr->check = 0;
793 udp_hdr->check = udp_csum(ip_hdr->saddr, ip_hdr->daddr, UDP_PKT_SIZE,
794 IPPROTO_UDP, (u16 *)udp_hdr);
795}
796
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +0530797static void gen_eth_frame(struct xsk_umem_info *umem, u64 addr)
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100798{
799 memcpy(xsk_umem__get_data(umem->buffer, addr), pkt_data,
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530800 PKT_SIZE);
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100801}
802
803static struct xsk_umem_info *xsk_configure_umem(void *buffer, u64 size)
804{
805 struct xsk_umem_info *umem;
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +0300806 struct xsk_umem_config cfg = {
Magnus Karlssonc8a039a2020-08-28 14:51:05 +0200807 /* We recommend that you set the fill ring size >= HW RX ring size +
808 * AF_XDP RX ring size. Make sure you fill up the fill ring
809 * with buffers at regular intervals, and you will with this setting
810 * avoid allocation failures in the driver. These are usually quite
811 * expensive since drivers have not been written to assume that
812 * allocation failures are common. For regular sockets, kernel
813 * allocated memory is used that only runs out in OOM situations
814 * that should be rare.
815 */
816 .fill_size = XSK_RING_PROD__DEFAULT_NUM_DESCS * 2,
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +0300817 .comp_size = XSK_RING_CONS__DEFAULT_NUM_DESCS,
818 .frame_size = opt_xsk_frame_size,
819 .frame_headroom = XSK_UMEM__DEFAULT_FRAME_HEADROOM,
Kevin Laatzc543f542019-08-27 02:25:28 +0000820 .flags = opt_umem_flags
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +0300821 };
Magnus Karlsson661842c2019-11-07 18:47:39 +0100822 int ret;
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100823
824 umem = calloc(1, sizeof(*umem));
825 if (!umem)
826 exit_with_error(errno);
827
828 ret = xsk_umem__create(&umem->umem, buffer, size, &umem->fq, &umem->cq,
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +0300829 &cfg);
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100830 if (ret)
831 exit_with_error(-ret);
832
Magnus Karlsson661842c2019-11-07 18:47:39 +0100833 umem->buffer = buffer;
834 return umem;
835}
836
837static void xsk_populate_fill_ring(struct xsk_umem_info *umem)
838{
839 int ret, i;
840 u32 idx;
841
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100842 ret = xsk_ring_prod__reserve(&umem->fq,
Magnus Karlssonc8a039a2020-08-28 14:51:05 +0200843 XSK_RING_PROD__DEFAULT_NUM_DESCS * 2, &idx);
844 if (ret != XSK_RING_PROD__DEFAULT_NUM_DESCS * 2)
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100845 exit_with_error(-ret);
Magnus Karlssonc8a039a2020-08-28 14:51:05 +0200846 for (i = 0; i < XSK_RING_PROD__DEFAULT_NUM_DESCS * 2; i++)
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100847 *xsk_ring_prod__fill_addr(&umem->fq, idx++) =
848 i * opt_xsk_frame_size;
Magnus Karlssonc8a039a2020-08-28 14:51:05 +0200849 xsk_ring_prod__submit(&umem->fq, XSK_RING_PROD__DEFAULT_NUM_DESCS * 2);
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100850}
851
Magnus Karlsson661842c2019-11-07 18:47:39 +0100852static struct xsk_socket_info *xsk_configure_socket(struct xsk_umem_info *umem,
853 bool rx, bool tx)
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100854{
855 struct xsk_socket_config cfg;
856 struct xsk_socket_info *xsk;
Magnus Karlsson661842c2019-11-07 18:47:39 +0100857 struct xsk_ring_cons *rxr;
858 struct xsk_ring_prod *txr;
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100859 int ret;
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100860
861 xsk = calloc(1, sizeof(*xsk));
862 if (!xsk)
863 exit_with_error(errno);
864
865 xsk->umem = umem;
866 cfg.rx_size = XSK_RING_CONS__DEFAULT_NUM_DESCS;
867 cfg.tx_size = XSK_RING_PROD__DEFAULT_NUM_DESCS;
Mariusz Dudek3627d972020-12-03 10:05:46 +0100868 if (opt_num_xsks > 1 || opt_reduced_cap)
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100869 cfg.libbpf_flags = XSK_LIBBPF_FLAGS__INHIBIT_PROG_LOAD;
870 else
871 cfg.libbpf_flags = 0;
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100872 cfg.xdp_flags = opt_xdp_flags;
873 cfg.bind_flags = opt_xdp_bind_flags;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100874
Magnus Karlsson661842c2019-11-07 18:47:39 +0100875 rxr = rx ? &xsk->rx : NULL;
876 txr = tx ? &xsk->tx : NULL;
877 ret = xsk_socket__create(&xsk->xsk, opt_if, opt_queue, umem->umem,
878 rxr, txr, &cfg);
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100879 if (ret)
880 exit_with_error(-ret);
881
Wang Hai2620e922021-06-28 17:18:15 +0800882 ret = bpf_get_link_xdp_id(opt_ifindex, &prog_id, opt_xdp_flags);
883 if (ret)
884 exit_with_error(-ret);
885
Ciara Loftus60dc6092020-10-02 13:36:11 +0000886 xsk->app_stats.rx_empty_polls = 0;
887 xsk->app_stats.fill_fail_polls = 0;
888 xsk->app_stats.copy_tx_sendtos = 0;
889 xsk->app_stats.tx_wakeup_sendtos = 0;
890 xsk->app_stats.opt_polls = 0;
891 xsk->app_stats.prev_rx_empty_polls = 0;
892 xsk->app_stats.prev_fill_fail_polls = 0;
893 xsk->app_stats.prev_copy_tx_sendtos = 0;
894 xsk->app_stats.prev_tx_wakeup_sendtos = 0;
895 xsk->app_stats.prev_opt_polls = 0;
896
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100897 return xsk;
898}
899
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200900static struct option long_options[] = {
901 {"rxdrop", no_argument, 0, 'r'},
902 {"txonly", no_argument, 0, 't'},
903 {"l2fwd", no_argument, 0, 'l'},
904 {"interface", required_argument, 0, 'i'},
905 {"queue", required_argument, 0, 'q'},
906 {"poll", no_argument, 0, 'p'},
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200907 {"xdp-skb", no_argument, 0, 'S'},
908 {"xdp-native", no_argument, 0, 'N'},
909 {"interval", required_argument, 0, 'n'},
Björn Töpel58c50ae2018-08-28 14:44:35 +0200910 {"zero-copy", no_argument, 0, 'z'},
911 {"copy", no_argument, 0, 'c'},
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +0300912 {"frame-size", required_argument, 0, 'f'},
Magnus Karlsson46738f72019-08-14 09:27:21 +0200913 {"no-need-wakeup", no_argument, 0, 'm'},
Kevin Laatzc543f542019-08-27 02:25:28 +0000914 {"unaligned", no_argument, 0, 'u'},
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100915 {"shared-umem", no_argument, 0, 'M'},
Andre Guedesb3133322019-11-14 08:28:47 -0800916 {"force", no_argument, 0, 'F'},
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +0530917 {"duration", required_argument, 0, 'd'},
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +0530918 {"batch-size", required_argument, 0, 'b'},
Jay Jayatheerthanece6e962019-12-20 14:25:28 +0530919 {"tx-pkt-count", required_argument, 0, 'C'},
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530920 {"tx-pkt-size", required_argument, 0, 's'},
Jay Jayatheerthan46e32682019-12-20 14:25:30 +0530921 {"tx-pkt-pattern", required_argument, 0, 'P'},
Ciara Loftusb36c3202020-07-08 07:28:34 +0000922 {"extra-stats", no_argument, 0, 'x'},
Magnus Karlsson74e00672020-09-10 10:31:06 +0200923 {"quiet", no_argument, 0, 'Q'},
Ciara Loftus60dc6092020-10-02 13:36:11 +0000924 {"app-stats", no_argument, 0, 'a'},
Ciara Loftus67ed3752020-10-02 13:36:12 +0000925 {"irq-string", no_argument, 0, 'I'},
Björn Töpelb35fc142020-11-30 19:52:04 +0100926 {"busy-poll", no_argument, 0, 'B'},
Mariusz Dudek3627d972020-12-03 10:05:46 +0100927 {"reduce-cap", no_argument, 0, 'R'},
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200928 {0, 0, 0, 0}
929};
930
931static void usage(const char *prog)
932{
933 const char *str =
934 " Usage: %s [OPTIONS]\n"
935 " Options:\n"
936 " -r, --rxdrop Discard all incoming packets (default)\n"
937 " -t, --txonly Only send packets\n"
938 " -l, --l2fwd MAC swap L2 forwarding\n"
939 " -i, --interface=n Run on interface n\n"
940 " -q, --queue=n Use queue n (default 0)\n"
941 " -p, --poll Use poll syscall\n"
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200942 " -S, --xdp-skb=n Use XDP skb-mod\n"
Anton Ivanov4564a8bb2019-10-07 09:26:36 +0100943 " -N, --xdp-native=n Enforce XDP native mode\n"
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200944 " -n, --interval=n Specify statistics update interval (default 1 sec).\n"
Björn Töpel58c50ae2018-08-28 14:44:35 +0200945 " -z, --zero-copy Force zero-copy mode.\n"
946 " -c, --copy Force copy mode.\n"
Magnus Karlsson46738f72019-08-14 09:27:21 +0200947 " -m, --no-need-wakeup Turn off use of driver need wakeup flag.\n"
Kevin Laatzc543f542019-08-27 02:25:28 +0000948 " -f, --frame-size=n Set the frame size (must be a power of two in aligned mode, default is %d).\n"
949 " -u, --unaligned Enable unaligned chunk placement\n"
Mariusz Dudek3627d972020-12-03 10:05:46 +0100950 " -M, --shared-umem Enable XDP_SHARED_UMEM (cannot be used with -R)\n"
Andre Guedesb3133322019-11-14 08:28:47 -0800951 " -F, --force Force loading the XDP prog\n"
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +0530952 " -d, --duration=n Duration in secs to run command.\n"
953 " Default: forever.\n"
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +0530954 " -b, --batch-size=n Batch size for sending or receiving\n"
955 " packets. Default: %d\n"
Jay Jayatheerthanece6e962019-12-20 14:25:28 +0530956 " -C, --tx-pkt-count=n Number of packets to send.\n"
957 " Default: Continuous packets.\n"
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530958 " -s, --tx-pkt-size=n Transmit packet size.\n"
959 " (Default: %d bytes)\n"
960 " Min size: %d, Max size %d.\n"
Jay Jayatheerthan46e32682019-12-20 14:25:30 +0530961 " -P, --tx-pkt-pattern=nPacket fill pattern. Default: 0x%x\n"
Ciara Loftusb36c3202020-07-08 07:28:34 +0000962 " -x, --extra-stats Display extra statistics.\n"
Magnus Karlsson74e00672020-09-10 10:31:06 +0200963 " -Q, --quiet Do not display any stats.\n"
Ciara Loftus60dc6092020-10-02 13:36:11 +0000964 " -a, --app-stats Display application (syscall) statistics.\n"
Ciara Loftus67ed3752020-10-02 13:36:12 +0000965 " -I, --irq-string Display driver interrupt statistics for interface associated with irq-string.\n"
Björn Töpelb35fc142020-11-30 19:52:04 +0100966 " -B, --busy-poll Busy poll.\n"
Mariusz Dudek3627d972020-12-03 10:05:46 +0100967 " -R, --reduce-cap Use reduced capabilities (cannot be used with -M)\n"
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200968 "\n";
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +0530969 fprintf(stderr, str, prog, XSK_UMEM__DEFAULT_FRAME_SIZE,
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530970 opt_batch_size, MIN_PKT_SIZE, MIN_PKT_SIZE,
Jay Jayatheerthan46e32682019-12-20 14:25:30 +0530971 XSK_UMEM__DEFAULT_FRAME_SIZE, opt_pkt_fill_pattern);
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530972
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200973 exit(EXIT_FAILURE);
974}
975
976static void parse_command_line(int argc, char **argv)
977{
978 int option_index, c;
979
980 opterr = 0;
981
982 for (;;) {
Mariusz Dudek3627d972020-12-03 10:05:46 +0100983 c = getopt_long(argc, argv, "Frtli:q:pSNn:czf:muMd:b:C:s:P:xQaI:BR",
Magnus Karlsson46738f72019-08-14 09:27:21 +0200984 long_options, &option_index);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200985 if (c == -1)
986 break;
987
988 switch (c) {
989 case 'r':
990 opt_bench = BENCH_RXDROP;
991 break;
992 case 't':
993 opt_bench = BENCH_TXONLY;
994 break;
995 case 'l':
996 opt_bench = BENCH_L2FWD;
997 break;
998 case 'i':
999 opt_if = optarg;
1000 break;
1001 case 'q':
1002 opt_queue = atoi(optarg);
1003 break;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001004 case 'p':
1005 opt_poll = 1;
1006 break;
1007 case 'S':
1008 opt_xdp_flags |= XDP_FLAGS_SKB_MODE;
Björn Töpel9f5232c2018-06-04 14:06:01 +02001009 opt_xdp_bind_flags |= XDP_COPY;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001010 break;
1011 case 'N':
Toke Høiland-Jørgensend50ecc42019-12-16 12:07:42 +01001012 /* default, set below */
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001013 break;
1014 case 'n':
1015 opt_interval = atoi(optarg);
1016 break;
Björn Töpel58c50ae2018-08-28 14:44:35 +02001017 case 'z':
1018 opt_xdp_bind_flags |= XDP_ZEROCOPY;
1019 break;
1020 case 'c':
1021 opt_xdp_bind_flags |= XDP_COPY;
1022 break;
Kevin Laatzc543f542019-08-27 02:25:28 +00001023 case 'u':
1024 opt_umem_flags |= XDP_UMEM_UNALIGNED_CHUNK_FLAG;
1025 opt_unaligned_chunks = 1;
Kevin Laatz3945b372019-08-27 02:25:30 +00001026 opt_mmap_flags = MAP_HUGETLB;
Kevin Laatzc543f542019-08-27 02:25:28 +00001027 break;
Maciej Fijalkowski743e5682019-02-01 22:42:28 +01001028 case 'F':
1029 opt_xdp_flags &= ~XDP_FLAGS_UPDATE_IF_NOEXIST;
1030 break;
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +03001031 case 'f':
1032 opt_xsk_frame_size = atoi(optarg);
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001033 break;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001034 case 'm':
1035 opt_need_wakeup = false;
1036 opt_xdp_bind_flags &= ~XDP_USE_NEED_WAKEUP;
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +03001037 break;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001038 case 'M':
1039 opt_num_xsks = MAX_SOCKS;
1040 break;
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301041 case 'd':
1042 opt_duration = atoi(optarg);
1043 opt_duration *= 1000000000;
1044 break;
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301045 case 'b':
1046 opt_batch_size = atoi(optarg);
1047 break;
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301048 case 'C':
1049 opt_pkt_count = atoi(optarg);
1050 break;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +05301051 case 's':
1052 opt_pkt_size = atoi(optarg);
1053 if (opt_pkt_size > (XSK_UMEM__DEFAULT_FRAME_SIZE) ||
1054 opt_pkt_size < MIN_PKT_SIZE) {
1055 fprintf(stderr,
1056 "ERROR: Invalid frame size %d\n",
1057 opt_pkt_size);
1058 usage(basename(argv[0]));
1059 }
1060 break;
Jay Jayatheerthan46e32682019-12-20 14:25:30 +05301061 case 'P':
1062 opt_pkt_fill_pattern = strtol(optarg, NULL, 16);
1063 break;
Ciara Loftusb36c3202020-07-08 07:28:34 +00001064 case 'x':
1065 opt_extra_stats = 1;
1066 break;
Magnus Karlsson74e00672020-09-10 10:31:06 +02001067 case 'Q':
1068 opt_quiet = 1;
1069 break;
Ciara Loftus60dc6092020-10-02 13:36:11 +00001070 case 'a':
1071 opt_app_stats = 1;
1072 break;
Ciara Loftus67ed3752020-10-02 13:36:12 +00001073 case 'I':
1074 opt_irq_str = optarg;
1075 if (get_interrupt_number())
1076 irqs_at_init = get_irqs();
1077 if (irqs_at_init < 0) {
1078 fprintf(stderr, "ERROR: Failed to get irqs for %s\n", opt_irq_str);
1079 usage(basename(argv[0]));
1080 }
Björn Töpelb35fc142020-11-30 19:52:04 +01001081 break;
1082 case 'B':
1083 opt_busy_poll = 1;
Ciara Loftus67ed3752020-10-02 13:36:12 +00001084 break;
Mariusz Dudek3627d972020-12-03 10:05:46 +01001085 case 'R':
1086 opt_reduced_cap = true;
1087 break;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001088 default:
1089 usage(basename(argv[0]));
1090 }
1091 }
1092
Toke Høiland-Jørgensend50ecc42019-12-16 12:07:42 +01001093 if (!(opt_xdp_flags & XDP_FLAGS_SKB_MODE))
1094 opt_xdp_flags |= XDP_FLAGS_DRV_MODE;
1095
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001096 opt_ifindex = if_nametoindex(opt_if);
1097 if (!opt_ifindex) {
1098 fprintf(stderr, "ERROR: interface \"%s\" does not exist\n",
1099 opt_if);
1100 usage(basename(argv[0]));
1101 }
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001102
Kevin Laatzc543f542019-08-27 02:25:28 +00001103 if ((opt_xsk_frame_size & (opt_xsk_frame_size - 1)) &&
1104 !opt_unaligned_chunks) {
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +03001105 fprintf(stderr, "--frame-size=%d is not a power of two\n",
1106 opt_xsk_frame_size);
1107 usage(basename(argv[0]));
1108 }
Mariusz Dudek3627d972020-12-03 10:05:46 +01001109
1110 if (opt_reduced_cap && opt_num_xsks > 1) {
1111 fprintf(stderr, "ERROR: -M and -R cannot be used together\n");
1112 usage(basename(argv[0]));
1113 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001114}
1115
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001116static void kick_tx(struct xsk_socket_info *xsk)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001117{
1118 int ret;
1119
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001120 ret = sendto(xsk_socket__fd(xsk->xsk), NULL, 0, MSG_DONTWAIT, NULL, 0);
Maciej Fijalkowski8ed47e12020-02-05 05:58:34 +01001121 if (ret >= 0 || errno == ENOBUFS || errno == EAGAIN ||
1122 errno == EBUSY || errno == ENETDOWN)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001123 return;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001124 exit_with_error(errno);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001125}
1126
Björn Töpel284cbc62020-11-30 19:52:03 +01001127static inline void complete_tx_l2fwd(struct xsk_socket_info *xsk)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001128{
Kevin Laatz03895e62019-08-27 02:25:29 +00001129 struct xsk_umem_info *umem = xsk->umem;
Yonghong Songb74e21a2019-02-28 22:19:41 -08001130 u32 idx_cq = 0, idx_fq = 0;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001131 unsigned int rcvd;
1132 size_t ndescs;
1133
1134 if (!xsk->outstanding_tx)
1135 return;
1136
Magnus Karlsson3131cf62020-09-10 10:31:04 +02001137 /* In copy mode, Tx is driven by a syscall so we need to use e.g. sendto() to
1138 * really send the packets. In zero-copy mode we do not have to do this, since Tx
1139 * is driven by the NAPI loop. So as an optimization, we do not have to call
1140 * sendto() all the time in zero-copy mode for l2fwd.
1141 */
Ciara Loftus60dc6092020-10-02 13:36:11 +00001142 if (opt_xdp_bind_flags & XDP_COPY) {
1143 xsk->app_stats.copy_tx_sendtos++;
Magnus Karlsson3131cf62020-09-10 10:31:04 +02001144 kick_tx(xsk);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001145 }
Magnus Karlsson3131cf62020-09-10 10:31:04 +02001146
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301147 ndescs = (xsk->outstanding_tx > opt_batch_size) ? opt_batch_size :
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001148 xsk->outstanding_tx;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001149
1150 /* re-add completed Tx buffers */
Kevin Laatz03895e62019-08-27 02:25:29 +00001151 rcvd = xsk_ring_cons__peek(&umem->cq, ndescs, &idx_cq);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001152 if (rcvd > 0) {
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001153 unsigned int i;
1154 int ret;
1155
Kevin Laatz03895e62019-08-27 02:25:29 +00001156 ret = xsk_ring_prod__reserve(&umem->fq, rcvd, &idx_fq);
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001157 while (ret != rcvd) {
1158 if (ret < 0)
1159 exit_with_error(-ret);
Björn Töpelb35fc142020-11-30 19:52:04 +01001160 if (opt_busy_poll || xsk_ring_prod__needs_wakeup(&umem->fq)) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001161 xsk->app_stats.fill_fail_polls++;
Björn Töpel284cbc62020-11-30 19:52:03 +01001162 recvfrom(xsk_socket__fd(xsk->xsk), NULL, 0, MSG_DONTWAIT, NULL,
1163 NULL);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001164 }
Kevin Laatz03895e62019-08-27 02:25:29 +00001165 ret = xsk_ring_prod__reserve(&umem->fq, rcvd, &idx_fq);
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001166 }
Kevin Laatz03895e62019-08-27 02:25:29 +00001167
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001168 for (i = 0; i < rcvd; i++)
Kevin Laatz03895e62019-08-27 02:25:29 +00001169 *xsk_ring_prod__fill_addr(&umem->fq, idx_fq++) =
1170 *xsk_ring_cons__comp_addr(&umem->cq, idx_cq++);
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001171
1172 xsk_ring_prod__submit(&xsk->umem->fq, rcvd);
1173 xsk_ring_cons__release(&xsk->umem->cq, rcvd);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001174 xsk->outstanding_tx -= rcvd;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001175 }
1176}
1177
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301178static inline void complete_tx_only(struct xsk_socket_info *xsk,
1179 int batch_size)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001180{
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001181 unsigned int rcvd;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001182 u32 idx;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001183
1184 if (!xsk->outstanding_tx)
1185 return;
1186
Ciara Loftus60dc6092020-10-02 13:36:11 +00001187 if (!opt_need_wakeup || xsk_ring_prod__needs_wakeup(&xsk->tx)) {
1188 xsk->app_stats.tx_wakeup_sendtos++;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001189 kick_tx(xsk);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001190 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001191
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301192 rcvd = xsk_ring_cons__peek(&xsk->umem->cq, batch_size, &idx);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001193 if (rcvd > 0) {
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001194 xsk_ring_cons__release(&xsk->umem->cq, rcvd);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001195 xsk->outstanding_tx -= rcvd;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001196 }
1197}
1198
Björn Töpelf2d27282020-11-30 19:52:02 +01001199static void rx_drop(struct xsk_socket_info *xsk)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001200{
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001201 unsigned int rcvd, i;
Yonghong Songb74e21a2019-02-28 22:19:41 -08001202 u32 idx_rx = 0, idx_fq = 0;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001203 int ret;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001204
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301205 rcvd = xsk_ring_cons__peek(&xsk->rx, opt_batch_size, &idx_rx);
Magnus Karlsson46738f72019-08-14 09:27:21 +02001206 if (!rcvd) {
Björn Töpelb35fc142020-11-30 19:52:04 +01001207 if (opt_busy_poll || xsk_ring_prod__needs_wakeup(&xsk->umem->fq)) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001208 xsk->app_stats.rx_empty_polls++;
Björn Töpelf2d27282020-11-30 19:52:02 +01001209 recvfrom(xsk_socket__fd(xsk->xsk), NULL, 0, MSG_DONTWAIT, NULL, NULL);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001210 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001211 return;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001212 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001213
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001214 ret = xsk_ring_prod__reserve(&xsk->umem->fq, rcvd, &idx_fq);
1215 while (ret != rcvd) {
1216 if (ret < 0)
1217 exit_with_error(-ret);
Björn Töpelb35fc142020-11-30 19:52:04 +01001218 if (opt_busy_poll || xsk_ring_prod__needs_wakeup(&xsk->umem->fq)) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001219 xsk->app_stats.fill_fail_polls++;
Björn Töpelf2d27282020-11-30 19:52:02 +01001220 recvfrom(xsk_socket__fd(xsk->xsk), NULL, 0, MSG_DONTWAIT, NULL, NULL);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001221 }
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001222 ret = xsk_ring_prod__reserve(&xsk->umem->fq, rcvd, &idx_fq);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001223 }
1224
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001225 for (i = 0; i < rcvd; i++) {
1226 u64 addr = xsk_ring_cons__rx_desc(&xsk->rx, idx_rx)->addr;
1227 u32 len = xsk_ring_cons__rx_desc(&xsk->rx, idx_rx++)->len;
Kevin Laatz03895e62019-08-27 02:25:29 +00001228 u64 orig = xsk_umem__extract_addr(addr);
1229
1230 addr = xsk_umem__add_offset_to_addr(addr);
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001231 char *pkt = xsk_umem__get_data(xsk->umem->buffer, addr);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001232
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001233 hex_dump(pkt, len, addr);
Kevin Laatz03895e62019-08-27 02:25:29 +00001234 *xsk_ring_prod__fill_addr(&xsk->umem->fq, idx_fq++) = orig;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001235 }
1236
1237 xsk_ring_prod__submit(&xsk->umem->fq, rcvd);
1238 xsk_ring_cons__release(&xsk->rx, rcvd);
Ciara Loftus2e8806f2020-10-02 13:36:10 +00001239 xsk->ring_stats.rx_npkts += rcvd;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001240}
1241
1242static void rx_drop_all(void)
1243{
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001244 struct pollfd fds[MAX_SOCKS] = {};
Magnus Karlsson46738f72019-08-14 09:27:21 +02001245 int i, ret;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001246
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001247 for (i = 0; i < num_socks; i++) {
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001248 fds[i].fd = xsk_socket__fd(xsks[i]->xsk);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001249 fds[i].events = POLLIN;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001250 }
1251
1252 for (;;) {
1253 if (opt_poll) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001254 for (i = 0; i < num_socks; i++)
1255 xsks[i]->app_stats.opt_polls++;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001256 ret = poll(fds, num_socks, opt_timeout);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001257 if (ret <= 0)
1258 continue;
1259 }
1260
1261 for (i = 0; i < num_socks; i++)
Björn Töpelf2d27282020-11-30 19:52:02 +01001262 rx_drop(xsks[i]);
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301263
1264 if (benchmark_done)
1265 break;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001266 }
1267}
1268
Weqaar Janjuab69e56c2020-08-29 00:17:17 +08001269static void tx_only(struct xsk_socket_info *xsk, u32 *frame_nb, int batch_size)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001270{
Magnus Karlsson46738f72019-08-14 09:27:21 +02001271 u32 idx;
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301272 unsigned int i;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001273
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301274 while (xsk_ring_prod__reserve(&xsk->tx, batch_size, &idx) <
1275 batch_size) {
1276 complete_tx_only(xsk, batch_size);
Magnus Karlsson092fde02020-12-10 17:34:07 +01001277 if (benchmark_done)
1278 return;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001279 }
1280
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301281 for (i = 0; i < batch_size; i++) {
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301282 struct xdp_desc *tx_desc = xsk_ring_prod__tx_desc(&xsk->tx,
1283 idx + i);
Magnus Karlsson3b80d102021-05-06 14:43:49 +02001284 tx_desc->addr = (*frame_nb + i) * opt_xsk_frame_size;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +05301285 tx_desc->len = PKT_SIZE;
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301286 }
1287
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301288 xsk_ring_prod__submit(&xsk->tx, batch_size);
Magnus Karlsson90da4b32020-11-16 12:12:43 +01001289 xsk->ring_stats.tx_npkts += batch_size;
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301290 xsk->outstanding_tx += batch_size;
Weqaar Janjuab69e56c2020-08-29 00:17:17 +08001291 *frame_nb += batch_size;
1292 *frame_nb %= NUM_FRAMES;
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301293 complete_tx_only(xsk, batch_size);
1294}
1295
1296static inline int get_batch_size(int pkt_cnt)
1297{
1298 if (!opt_pkt_count)
1299 return opt_batch_size;
1300
1301 if (pkt_cnt + opt_batch_size <= opt_pkt_count)
1302 return opt_batch_size;
1303
1304 return opt_pkt_count - pkt_cnt;
1305}
1306
1307static void complete_tx_only_all(void)
1308{
1309 bool pending;
1310 int i;
1311
1312 do {
1313 pending = false;
1314 for (i = 0; i < num_socks; i++) {
1315 if (xsks[i]->outstanding_tx) {
1316 complete_tx_only(xsks[i], opt_batch_size);
1317 pending = !!xsks[i]->outstanding_tx;
1318 }
1319 }
1320 } while (pending);
Magnus Karlsson46738f72019-08-14 09:27:21 +02001321}
1322
1323static void tx_only_all(void)
1324{
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001325 struct pollfd fds[MAX_SOCKS] = {};
Magnus Karlsson46738f72019-08-14 09:27:21 +02001326 u32 frame_nb[MAX_SOCKS] = {};
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301327 int pkt_cnt = 0;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001328 int i, ret;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001329
Magnus Karlsson46738f72019-08-14 09:27:21 +02001330 for (i = 0; i < num_socks; i++) {
1331 fds[0].fd = xsk_socket__fd(xsks[i]->xsk);
1332 fds[0].events = POLLOUT;
1333 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001334
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301335 while ((opt_pkt_count && pkt_cnt < opt_pkt_count) || !opt_pkt_count) {
1336 int batch_size = get_batch_size(pkt_cnt);
1337
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001338 if (opt_poll) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001339 for (i = 0; i < num_socks; i++)
1340 xsks[i]->app_stats.opt_polls++;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001341 ret = poll(fds, num_socks, opt_timeout);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001342 if (ret <= 0)
1343 continue;
1344
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001345 if (!(fds[0].revents & POLLOUT))
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001346 continue;
1347 }
1348
Magnus Karlsson46738f72019-08-14 09:27:21 +02001349 for (i = 0; i < num_socks; i++)
Weqaar Janjuab69e56c2020-08-29 00:17:17 +08001350 tx_only(xsks[i], &frame_nb[i], batch_size);
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301351
1352 pkt_cnt += batch_size;
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301353
1354 if (benchmark_done)
1355 break;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001356 }
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301357
1358 if (opt_pkt_count)
1359 complete_tx_only_all();
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001360}
1361
Björn Töpel284cbc62020-11-30 19:52:03 +01001362static void l2fwd(struct xsk_socket_info *xsk)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001363{
Magnus Karlsson46738f72019-08-14 09:27:21 +02001364 unsigned int rcvd, i;
1365 u32 idx_rx = 0, idx_tx = 0;
1366 int ret;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001367
Björn Töpel284cbc62020-11-30 19:52:03 +01001368 complete_tx_l2fwd(xsk);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001369
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301370 rcvd = xsk_ring_cons__peek(&xsk->rx, opt_batch_size, &idx_rx);
Magnus Karlsson46738f72019-08-14 09:27:21 +02001371 if (!rcvd) {
Björn Töpelb35fc142020-11-30 19:52:04 +01001372 if (opt_busy_poll || xsk_ring_prod__needs_wakeup(&xsk->umem->fq)) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001373 xsk->app_stats.rx_empty_polls++;
Björn Töpel284cbc62020-11-30 19:52:03 +01001374 recvfrom(xsk_socket__fd(xsk->xsk), NULL, 0, MSG_DONTWAIT, NULL, NULL);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001375 }
Magnus Karlsson46738f72019-08-14 09:27:21 +02001376 return;
1377 }
Magnus Karlsson90da4b32020-11-16 12:12:43 +01001378 xsk->ring_stats.rx_npkts += rcvd;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001379
Magnus Karlsson46738f72019-08-14 09:27:21 +02001380 ret = xsk_ring_prod__reserve(&xsk->tx, rcvd, &idx_tx);
1381 while (ret != rcvd) {
1382 if (ret < 0)
1383 exit_with_error(-ret);
Björn Töpel284cbc62020-11-30 19:52:03 +01001384 complete_tx_l2fwd(xsk);
Björn Töpelb35fc142020-11-30 19:52:04 +01001385 if (opt_busy_poll || xsk_ring_prod__needs_wakeup(&xsk->tx)) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001386 xsk->app_stats.tx_wakeup_sendtos++;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001387 kick_tx(xsk);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001388 }
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001389 ret = xsk_ring_prod__reserve(&xsk->tx, rcvd, &idx_tx);
Magnus Karlsson46738f72019-08-14 09:27:21 +02001390 }
1391
1392 for (i = 0; i < rcvd; i++) {
1393 u64 addr = xsk_ring_cons__rx_desc(&xsk->rx, idx_rx)->addr;
1394 u32 len = xsk_ring_cons__rx_desc(&xsk->rx, idx_rx++)->len;
Ciara Loftus5a712e12019-09-13 10:39:48 +00001395 u64 orig = addr;
Kevin Laatz03895e62019-08-27 02:25:29 +00001396
1397 addr = xsk_umem__add_offset_to_addr(addr);
Magnus Karlsson46738f72019-08-14 09:27:21 +02001398 char *pkt = xsk_umem__get_data(xsk->umem->buffer, addr);
1399
1400 swap_mac_addresses(pkt);
1401
1402 hex_dump(pkt, len, addr);
Kevin Laatz03895e62019-08-27 02:25:29 +00001403 xsk_ring_prod__tx_desc(&xsk->tx, idx_tx)->addr = orig;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001404 xsk_ring_prod__tx_desc(&xsk->tx, idx_tx++)->len = len;
1405 }
1406
1407 xsk_ring_prod__submit(&xsk->tx, rcvd);
1408 xsk_ring_cons__release(&xsk->rx, rcvd);
1409
Magnus Karlsson90da4b32020-11-16 12:12:43 +01001410 xsk->ring_stats.tx_npkts += rcvd;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001411 xsk->outstanding_tx += rcvd;
1412}
1413
1414static void l2fwd_all(void)
1415{
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001416 struct pollfd fds[MAX_SOCKS] = {};
Magnus Karlsson46738f72019-08-14 09:27:21 +02001417 int i, ret;
1418
Magnus Karlsson46738f72019-08-14 09:27:21 +02001419 for (;;) {
1420 if (opt_poll) {
Björn Töpel284cbc62020-11-30 19:52:03 +01001421 for (i = 0; i < num_socks; i++) {
1422 fds[i].fd = xsk_socket__fd(xsks[i]->xsk);
1423 fds[i].events = POLLOUT | POLLIN;
Ciara Loftus60dc6092020-10-02 13:36:11 +00001424 xsks[i]->app_stats.opt_polls++;
Björn Töpel284cbc62020-11-30 19:52:03 +01001425 }
Magnus Karlsson46738f72019-08-14 09:27:21 +02001426 ret = poll(fds, num_socks, opt_timeout);
1427 if (ret <= 0)
1428 continue;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001429 }
1430
Magnus Karlsson46738f72019-08-14 09:27:21 +02001431 for (i = 0; i < num_socks; i++)
Björn Töpel284cbc62020-11-30 19:52:03 +01001432 l2fwd(xsks[i]);
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301433
1434 if (benchmark_done)
1435 break;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001436 }
1437}
1438
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001439static void load_xdp_program(char **argv, struct bpf_object **obj)
1440{
1441 struct bpf_prog_load_attr prog_load_attr = {
1442 .prog_type = BPF_PROG_TYPE_XDP,
1443 };
1444 char xdp_filename[256];
1445 int prog_fd;
1446
1447 snprintf(xdp_filename, sizeof(xdp_filename), "%s_kern.o", argv[0]);
1448 prog_load_attr.file = xdp_filename;
1449
1450 if (bpf_prog_load_xattr(&prog_load_attr, obj, &prog_fd))
1451 exit(EXIT_FAILURE);
1452 if (prog_fd < 0) {
1453 fprintf(stderr, "ERROR: no program found: %s\n",
1454 strerror(prog_fd));
1455 exit(EXIT_FAILURE);
1456 }
1457
1458 if (bpf_set_link_xdp_fd(opt_ifindex, prog_fd, opt_xdp_flags) < 0) {
1459 fprintf(stderr, "ERROR: link set xdp fd failed\n");
1460 exit(EXIT_FAILURE);
1461 }
1462}
1463
1464static void enter_xsks_into_map(struct bpf_object *obj)
1465{
1466 struct bpf_map *map;
1467 int i, xsks_map;
1468
1469 map = bpf_object__find_map_by_name(obj, "xsks_map");
1470 xsks_map = bpf_map__fd(map);
1471 if (xsks_map < 0) {
1472 fprintf(stderr, "ERROR: no xsks map found: %s\n",
1473 strerror(xsks_map));
1474 exit(EXIT_FAILURE);
1475 }
1476
1477 for (i = 0; i < num_socks; i++) {
1478 int fd = xsk_socket__fd(xsks[i]->xsk);
1479 int key, ret;
1480
1481 key = i;
1482 ret = bpf_map_update_elem(xsks_map, &key, &fd, 0);
1483 if (ret) {
1484 fprintf(stderr, "ERROR: bpf_map_update_elem %d\n", i);
1485 exit(EXIT_FAILURE);
1486 }
1487 }
1488}
1489
Björn Töpelb35fc142020-11-30 19:52:04 +01001490static void apply_setsockopt(struct xsk_socket_info *xsk)
1491{
1492 int sock_opt;
1493
1494 if (!opt_busy_poll)
1495 return;
1496
1497 sock_opt = 1;
1498 if (setsockopt(xsk_socket__fd(xsk->xsk), SOL_SOCKET, SO_PREFER_BUSY_POLL,
1499 (void *)&sock_opt, sizeof(sock_opt)) < 0)
1500 exit_with_error(errno);
1501
1502 sock_opt = 20;
1503 if (setsockopt(xsk_socket__fd(xsk->xsk), SOL_SOCKET, SO_BUSY_POLL,
1504 (void *)&sock_opt, sizeof(sock_opt)) < 0)
1505 exit_with_error(errno);
Björn Töpel41bf9002020-11-30 19:52:05 +01001506
1507 sock_opt = opt_batch_size;
1508 if (setsockopt(xsk_socket__fd(xsk->xsk), SOL_SOCKET, SO_BUSY_POLL_BUDGET,
1509 (void *)&sock_opt, sizeof(sock_opt)) < 0)
1510 exit_with_error(errno);
Björn Töpelb35fc142020-11-30 19:52:04 +01001511}
1512
Mariusz Dudek3627d972020-12-03 10:05:46 +01001513static int recv_xsks_map_fd_from_ctrl_node(int sock, int *_fd)
1514{
1515 char cms[CMSG_SPACE(sizeof(int))];
1516 struct cmsghdr *cmsg;
1517 struct msghdr msg;
1518 struct iovec iov;
1519 int value;
1520 int len;
1521
1522 iov.iov_base = &value;
1523 iov.iov_len = sizeof(int);
1524
1525 msg.msg_name = 0;
1526 msg.msg_namelen = 0;
1527 msg.msg_iov = &iov;
1528 msg.msg_iovlen = 1;
1529 msg.msg_flags = 0;
1530 msg.msg_control = (caddr_t)cms;
1531 msg.msg_controllen = sizeof(cms);
1532
1533 len = recvmsg(sock, &msg, 0);
1534
1535 if (len < 0) {
1536 fprintf(stderr, "Recvmsg failed length incorrect.\n");
1537 return -EINVAL;
1538 }
1539
1540 if (len == 0) {
1541 fprintf(stderr, "Recvmsg failed no data\n");
1542 return -EINVAL;
1543 }
1544
1545 cmsg = CMSG_FIRSTHDR(&msg);
1546 *_fd = *(int *)CMSG_DATA(cmsg);
1547
1548 return 0;
1549}
1550
1551static int
1552recv_xsks_map_fd(int *xsks_map_fd)
1553{
1554 struct sockaddr_un server;
1555 int err;
1556
1557 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1558 if (sock < 0) {
1559 fprintf(stderr, "Error opening socket stream: %s", strerror(errno));
1560 return errno;
1561 }
1562
1563 server.sun_family = AF_UNIX;
1564 strcpy(server.sun_path, SOCKET_NAME);
1565
1566 if (connect(sock, (struct sockaddr *)&server, sizeof(struct sockaddr_un)) < 0) {
1567 close(sock);
1568 fprintf(stderr, "Error connecting stream socket: %s", strerror(errno));
1569 return errno;
1570 }
1571
1572 err = recv_xsks_map_fd_from_ctrl_node(sock, xsks_map_fd);
1573 if (err) {
Colin Ian King2faa7322020-12-03 11:44:52 +00001574 fprintf(stderr, "Error %d receiving fd\n", err);
Mariusz Dudek3627d972020-12-03 10:05:46 +01001575 return err;
1576 }
1577 return 0;
1578}
1579
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001580int main(int argc, char **argv)
1581{
Mariusz Dudek3627d972020-12-03 10:05:46 +01001582 struct __user_cap_header_struct hdr = { _LINUX_CAPABILITY_VERSION_3, 0 };
1583 struct __user_cap_data_struct data[2] = { { 0 } };
1584 struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
Magnus Karlsson661842c2019-11-07 18:47:39 +01001585 bool rx = false, tx = false;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001586 struct xsk_umem_info *umem;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001587 struct bpf_object *obj;
Mariusz Dudek3627d972020-12-03 10:05:46 +01001588 int xsks_map_fd = 0;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001589 pthread_t pt;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001590 int i, ret;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001591 void *bufs;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001592
1593 parse_command_line(argc, argv);
1594
Mariusz Dudek3627d972020-12-03 10:05:46 +01001595 if (opt_reduced_cap) {
1596 if (capget(&hdr, data) < 0)
1597 fprintf(stderr, "Error getting capabilities\n");
1598
1599 data->effective &= CAP_TO_MASK(CAP_NET_RAW);
1600 data->permitted &= CAP_TO_MASK(CAP_NET_RAW);
1601
1602 if (capset(&hdr, data) < 0)
1603 fprintf(stderr, "Setting capabilities failed\n");
1604
1605 if (capget(&hdr, data) < 0) {
1606 fprintf(stderr, "Error getting capabilities\n");
1607 } else {
1608 fprintf(stderr, "Capabilities EFF %x Caps INH %x Caps Per %x\n",
1609 data[0].effective, data[0].inheritable, data[0].permitted);
1610 fprintf(stderr, "Capabilities EFF %x Caps INH %x Caps Per %x\n",
1611 data[1].effective, data[1].inheritable, data[1].permitted);
1612 }
1613 } else {
1614 if (setrlimit(RLIMIT_MEMLOCK, &r)) {
1615 fprintf(stderr, "ERROR: setrlimit(RLIMIT_MEMLOCK) \"%s\"\n",
1616 strerror(errno));
1617 exit(EXIT_FAILURE);
1618 }
1619
1620 if (opt_num_xsks > 1)
1621 load_xdp_program(argv, &obj);
1622 }
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001623
Kevin Laatz3945b372019-08-27 02:25:30 +00001624 /* Reserve memory for the umem. Use hugepages if unaligned chunk mode */
1625 bufs = mmap(NULL, NUM_FRAMES * opt_xsk_frame_size,
1626 PROT_READ | PROT_WRITE,
1627 MAP_PRIVATE | MAP_ANONYMOUS | opt_mmap_flags, -1, 0);
1628 if (bufs == MAP_FAILED) {
1629 printf("ERROR: mmap failed\n");
1630 exit(EXIT_FAILURE);
1631 }
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001632
1633 /* Create sockets... */
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +03001634 umem = xsk_configure_umem(bufs, NUM_FRAMES * opt_xsk_frame_size);
Magnus Karlsson661842c2019-11-07 18:47:39 +01001635 if (opt_bench == BENCH_RXDROP || opt_bench == BENCH_L2FWD) {
1636 rx = true;
1637 xsk_populate_fill_ring(umem);
1638 }
1639 if (opt_bench == BENCH_L2FWD || opt_bench == BENCH_TXONLY)
1640 tx = true;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001641 for (i = 0; i < opt_num_xsks; i++)
Magnus Karlsson661842c2019-11-07 18:47:39 +01001642 xsks[num_socks++] = xsk_configure_socket(umem, rx, tx);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001643
Björn Töpelb35fc142020-11-30 19:52:04 +01001644 for (i = 0; i < opt_num_xsks; i++)
1645 apply_setsockopt(xsks[i]);
1646
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +05301647 if (opt_bench == BENCH_TXONLY) {
1648 gen_eth_hdr_data();
1649
Magnus Karlsson661842c2019-11-07 18:47:39 +01001650 for (i = 0; i < NUM_FRAMES; i++)
1651 gen_eth_frame(umem, i * opt_xsk_frame_size);
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +05301652 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001653
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001654 if (opt_num_xsks > 1 && opt_bench != BENCH_TXONLY)
1655 enter_xsks_into_map(obj);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001656
Mariusz Dudek3627d972020-12-03 10:05:46 +01001657 if (opt_reduced_cap) {
1658 ret = recv_xsks_map_fd(&xsks_map_fd);
1659 if (ret) {
1660 fprintf(stderr, "Error %d receiving xsks_map_fd\n", ret);
1661 exit_with_error(ret);
1662 }
1663 if (xsks[0]->xsk) {
1664 ret = xsk_socket__update_xskmap(xsks[0]->xsk, xsks_map_fd);
1665 if (ret) {
1666 fprintf(stderr, "Update of BPF map failed(%d)\n", ret);
1667 exit_with_error(ret);
1668 }
1669 }
1670 }
1671
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001672 signal(SIGINT, int_exit);
1673 signal(SIGTERM, int_exit);
1674 signal(SIGABRT, int_exit);
1675
1676 setlocale(LC_ALL, "");
1677
Magnus Karlsson74e00672020-09-10 10:31:06 +02001678 if (!opt_quiet) {
1679 ret = pthread_create(&pt, NULL, poller, NULL);
1680 if (ret)
1681 exit_with_error(ret);
1682 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001683
1684 prev_time = get_nsecs();
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301685 start_time = prev_time;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001686
1687 if (opt_bench == BENCH_RXDROP)
1688 rx_drop_all();
1689 else if (opt_bench == BENCH_TXONLY)
Magnus Karlsson46738f72019-08-14 09:27:21 +02001690 tx_only_all();
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001691 else
Magnus Karlsson46738f72019-08-14 09:27:21 +02001692 l2fwd_all();
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001693
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301694 benchmark_done = true;
1695
Magnus Karlsson74e00672020-09-10 10:31:06 +02001696 if (!opt_quiet)
1697 pthread_join(pt, NULL);
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301698
Jay Jayatheerthan69525582019-12-20 14:25:26 +05301699 xdpsock_cleanup();
1700
Maciej Fijalkowski6bc66992021-03-03 19:56:35 +01001701 munmap(bufs, NUM_FRAMES * opt_xsk_frame_size);
1702
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001703 return 0;
1704}