blob: 49d7a6ad7e3975f7834aa6c3be23e4db67b70cd8 [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
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530654/*
655 * This is a version of ip_compute_csum() optimized for IP headers,
656 * which always checksum on 4 octet boundaries.
657 * This function code has been taken from
658 * Linux kernel lib/checksum.c
659 */
Niklas Söderlundf4700a62021-08-06 14:28:55 +0200660static inline __sum16 ip_fast_csum(const void *iph, unsigned int ihl)
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530661{
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200662 return (__sum16)~do_csum(iph, ihl * 4);
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530663}
664
665/*
666 * Fold a partial checksum
667 * This function code has been taken from
668 * Linux kernel include/asm-generic/checksum.h
669 */
670static inline __sum16 csum_fold(__wsum csum)
671{
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200672 u32 sum = (u32)csum;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530673
674 sum = (sum & 0xffff) + (sum >> 16);
675 sum = (sum & 0xffff) + (sum >> 16);
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200676 return (__sum16)~sum;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530677}
678
679/*
680 * This function code has been taken from
681 * Linux kernel lib/checksum.c
682 */
683static inline u32 from64to32(u64 x)
684{
685 /* add up 32-bit and 32-bit for 32+c bit */
686 x = (x & 0xffffffff) + (x >> 32);
687 /* add up carry.. */
688 x = (x & 0xffffffff) + (x >> 32);
689 return (u32)x;
690}
691
692__wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
693 __u32 len, __u8 proto, __wsum sum);
694
695/*
696 * This function code has been taken from
697 * Linux kernel lib/checksum.c
698 */
699__wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
700 __u32 len, __u8 proto, __wsum sum)
701{
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200702 unsigned long long s = (u32)sum;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530703
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200704 s += (u32)saddr;
705 s += (u32)daddr;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530706#ifdef __BIG_ENDIAN__
707 s += proto + len;
708#else
709 s += (proto + len) << 8;
710#endif
Niklas Söderlund29f24c42021-08-06 14:28:54 +0200711 return (__wsum)from64to32(s);
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530712}
713
714/*
715 * This function has been taken from
716 * Linux kernel include/asm-generic/checksum.h
717 */
718static inline __sum16
719csum_tcpudp_magic(__be32 saddr, __be32 daddr, __u32 len,
720 __u8 proto, __wsum sum)
721{
722 return csum_fold(csum_tcpudp_nofold(saddr, daddr, len, proto, sum));
723}
724
725static inline u16 udp_csum(u32 saddr, u32 daddr, u32 len,
726 u8 proto, u16 *udp_pkt)
727{
728 u32 csum = 0;
729 u32 cnt = 0;
730
731 /* udp hdr and data */
732 for (; cnt < len; cnt += 2)
733 csum += udp_pkt[cnt >> 1];
734
735 return csum_tcpudp_magic(saddr, daddr, len, proto, csum);
736}
737
738#define ETH_FCS_SIZE 4
739
740#define PKT_HDR_SIZE (sizeof(struct ethhdr) + sizeof(struct iphdr) + \
741 sizeof(struct udphdr))
742
743#define PKT_SIZE (opt_pkt_size - ETH_FCS_SIZE)
744#define IP_PKT_SIZE (PKT_SIZE - sizeof(struct ethhdr))
745#define UDP_PKT_SIZE (IP_PKT_SIZE - sizeof(struct iphdr))
746#define UDP_PKT_DATA_SIZE (UDP_PKT_SIZE - sizeof(struct udphdr))
747
748static u8 pkt_data[XSK_UMEM__DEFAULT_FRAME_SIZE];
749
750static void gen_eth_hdr_data(void)
751{
752 struct udphdr *udp_hdr = (struct udphdr *)(pkt_data +
753 sizeof(struct ethhdr) +
754 sizeof(struct iphdr));
755 struct iphdr *ip_hdr = (struct iphdr *)(pkt_data +
756 sizeof(struct ethhdr));
757 struct ethhdr *eth_hdr = (struct ethhdr *)pkt_data;
758
759 /* ethernet header */
760 memcpy(eth_hdr->h_dest, "\x3c\xfd\xfe\x9e\x7f\x71", ETH_ALEN);
761 memcpy(eth_hdr->h_source, "\xec\xb1\xd7\x98\x3a\xc0", ETH_ALEN);
762 eth_hdr->h_proto = htons(ETH_P_IP);
763
764 /* IP header */
765 ip_hdr->version = IPVERSION;
766 ip_hdr->ihl = 0x5; /* 20 byte header */
767 ip_hdr->tos = 0x0;
768 ip_hdr->tot_len = htons(IP_PKT_SIZE);
769 ip_hdr->id = 0;
770 ip_hdr->frag_off = 0;
771 ip_hdr->ttl = IPDEFTTL;
772 ip_hdr->protocol = IPPROTO_UDP;
773 ip_hdr->saddr = htonl(0x0a0a0a10);
774 ip_hdr->daddr = htonl(0x0a0a0a20);
775
776 /* IP header checksum */
777 ip_hdr->check = 0;
778 ip_hdr->check = ip_fast_csum((const void *)ip_hdr, ip_hdr->ihl);
779
780 /* UDP header */
781 udp_hdr->source = htons(0x1000);
782 udp_hdr->dest = htons(0x1000);
783 udp_hdr->len = htons(UDP_PKT_SIZE);
784
785 /* UDP data */
Jay Jayatheerthan46e32682019-12-20 14:25:30 +0530786 memset32_htonl(pkt_data + PKT_HDR_SIZE, opt_pkt_fill_pattern,
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530787 UDP_PKT_DATA_SIZE);
788
789 /* UDP header checksum */
790 udp_hdr->check = 0;
791 udp_hdr->check = udp_csum(ip_hdr->saddr, ip_hdr->daddr, UDP_PKT_SIZE,
792 IPPROTO_UDP, (u16 *)udp_hdr);
793}
794
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +0530795static void gen_eth_frame(struct xsk_umem_info *umem, u64 addr)
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100796{
797 memcpy(xsk_umem__get_data(umem->buffer, addr), pkt_data,
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530798 PKT_SIZE);
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100799}
800
801static struct xsk_umem_info *xsk_configure_umem(void *buffer, u64 size)
802{
803 struct xsk_umem_info *umem;
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +0300804 struct xsk_umem_config cfg = {
Magnus Karlssonc8a039a2020-08-28 14:51:05 +0200805 /* We recommend that you set the fill ring size >= HW RX ring size +
806 * AF_XDP RX ring size. Make sure you fill up the fill ring
807 * with buffers at regular intervals, and you will with this setting
808 * avoid allocation failures in the driver. These are usually quite
809 * expensive since drivers have not been written to assume that
810 * allocation failures are common. For regular sockets, kernel
811 * allocated memory is used that only runs out in OOM situations
812 * that should be rare.
813 */
814 .fill_size = XSK_RING_PROD__DEFAULT_NUM_DESCS * 2,
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +0300815 .comp_size = XSK_RING_CONS__DEFAULT_NUM_DESCS,
816 .frame_size = opt_xsk_frame_size,
817 .frame_headroom = XSK_UMEM__DEFAULT_FRAME_HEADROOM,
Kevin Laatzc543f542019-08-27 02:25:28 +0000818 .flags = opt_umem_flags
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +0300819 };
Magnus Karlsson661842c2019-11-07 18:47:39 +0100820 int ret;
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100821
822 umem = calloc(1, sizeof(*umem));
823 if (!umem)
824 exit_with_error(errno);
825
826 ret = xsk_umem__create(&umem->umem, buffer, size, &umem->fq, &umem->cq,
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +0300827 &cfg);
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100828 if (ret)
829 exit_with_error(-ret);
830
Magnus Karlsson661842c2019-11-07 18:47:39 +0100831 umem->buffer = buffer;
832 return umem;
833}
834
835static void xsk_populate_fill_ring(struct xsk_umem_info *umem)
836{
837 int ret, i;
838 u32 idx;
839
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100840 ret = xsk_ring_prod__reserve(&umem->fq,
Magnus Karlssonc8a039a2020-08-28 14:51:05 +0200841 XSK_RING_PROD__DEFAULT_NUM_DESCS * 2, &idx);
842 if (ret != XSK_RING_PROD__DEFAULT_NUM_DESCS * 2)
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100843 exit_with_error(-ret);
Magnus Karlssonc8a039a2020-08-28 14:51:05 +0200844 for (i = 0; i < XSK_RING_PROD__DEFAULT_NUM_DESCS * 2; i++)
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100845 *xsk_ring_prod__fill_addr(&umem->fq, idx++) =
846 i * opt_xsk_frame_size;
Magnus Karlssonc8a039a2020-08-28 14:51:05 +0200847 xsk_ring_prod__submit(&umem->fq, XSK_RING_PROD__DEFAULT_NUM_DESCS * 2);
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100848}
849
Magnus Karlsson661842c2019-11-07 18:47:39 +0100850static struct xsk_socket_info *xsk_configure_socket(struct xsk_umem_info *umem,
851 bool rx, bool tx)
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100852{
853 struct xsk_socket_config cfg;
854 struct xsk_socket_info *xsk;
Magnus Karlsson661842c2019-11-07 18:47:39 +0100855 struct xsk_ring_cons *rxr;
856 struct xsk_ring_prod *txr;
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100857 int ret;
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100858
859 xsk = calloc(1, sizeof(*xsk));
860 if (!xsk)
861 exit_with_error(errno);
862
863 xsk->umem = umem;
864 cfg.rx_size = XSK_RING_CONS__DEFAULT_NUM_DESCS;
865 cfg.tx_size = XSK_RING_PROD__DEFAULT_NUM_DESCS;
Mariusz Dudek3627d972020-12-03 10:05:46 +0100866 if (opt_num_xsks > 1 || opt_reduced_cap)
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100867 cfg.libbpf_flags = XSK_LIBBPF_FLAGS__INHIBIT_PROG_LOAD;
868 else
869 cfg.libbpf_flags = 0;
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100870 cfg.xdp_flags = opt_xdp_flags;
871 cfg.bind_flags = opt_xdp_bind_flags;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100872
Magnus Karlsson661842c2019-11-07 18:47:39 +0100873 rxr = rx ? &xsk->rx : NULL;
874 txr = tx ? &xsk->tx : NULL;
875 ret = xsk_socket__create(&xsk->xsk, opt_if, opt_queue, umem->umem,
876 rxr, txr, &cfg);
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100877 if (ret)
878 exit_with_error(-ret);
879
Wang Hai2620e922021-06-28 17:18:15 +0800880 ret = bpf_get_link_xdp_id(opt_ifindex, &prog_id, opt_xdp_flags);
881 if (ret)
882 exit_with_error(-ret);
883
Ciara Loftus60dc6092020-10-02 13:36:11 +0000884 xsk->app_stats.rx_empty_polls = 0;
885 xsk->app_stats.fill_fail_polls = 0;
886 xsk->app_stats.copy_tx_sendtos = 0;
887 xsk->app_stats.tx_wakeup_sendtos = 0;
888 xsk->app_stats.opt_polls = 0;
889 xsk->app_stats.prev_rx_empty_polls = 0;
890 xsk->app_stats.prev_fill_fail_polls = 0;
891 xsk->app_stats.prev_copy_tx_sendtos = 0;
892 xsk->app_stats.prev_tx_wakeup_sendtos = 0;
893 xsk->app_stats.prev_opt_polls = 0;
894
Magnus Karlsson248c7f92019-02-21 10:21:27 +0100895 return xsk;
896}
897
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200898static struct option long_options[] = {
899 {"rxdrop", no_argument, 0, 'r'},
900 {"txonly", no_argument, 0, 't'},
901 {"l2fwd", no_argument, 0, 'l'},
902 {"interface", required_argument, 0, 'i'},
903 {"queue", required_argument, 0, 'q'},
904 {"poll", no_argument, 0, 'p'},
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200905 {"xdp-skb", no_argument, 0, 'S'},
906 {"xdp-native", no_argument, 0, 'N'},
907 {"interval", required_argument, 0, 'n'},
Björn Töpel58c50ae2018-08-28 14:44:35 +0200908 {"zero-copy", no_argument, 0, 'z'},
909 {"copy", no_argument, 0, 'c'},
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +0300910 {"frame-size", required_argument, 0, 'f'},
Magnus Karlsson46738f72019-08-14 09:27:21 +0200911 {"no-need-wakeup", no_argument, 0, 'm'},
Kevin Laatzc543f542019-08-27 02:25:28 +0000912 {"unaligned", no_argument, 0, 'u'},
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +0100913 {"shared-umem", no_argument, 0, 'M'},
Andre Guedesb3133322019-11-14 08:28:47 -0800914 {"force", no_argument, 0, 'F'},
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +0530915 {"duration", required_argument, 0, 'd'},
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +0530916 {"batch-size", required_argument, 0, 'b'},
Jay Jayatheerthanece6e962019-12-20 14:25:28 +0530917 {"tx-pkt-count", required_argument, 0, 'C'},
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530918 {"tx-pkt-size", required_argument, 0, 's'},
Jay Jayatheerthan46e32682019-12-20 14:25:30 +0530919 {"tx-pkt-pattern", required_argument, 0, 'P'},
Ciara Loftusb36c3202020-07-08 07:28:34 +0000920 {"extra-stats", no_argument, 0, 'x'},
Magnus Karlsson74e00672020-09-10 10:31:06 +0200921 {"quiet", no_argument, 0, 'Q'},
Ciara Loftus60dc6092020-10-02 13:36:11 +0000922 {"app-stats", no_argument, 0, 'a'},
Ciara Loftus67ed3752020-10-02 13:36:12 +0000923 {"irq-string", no_argument, 0, 'I'},
Björn Töpelb35fc142020-11-30 19:52:04 +0100924 {"busy-poll", no_argument, 0, 'B'},
Mariusz Dudek3627d972020-12-03 10:05:46 +0100925 {"reduce-cap", no_argument, 0, 'R'},
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200926 {0, 0, 0, 0}
927};
928
929static void usage(const char *prog)
930{
931 const char *str =
932 " Usage: %s [OPTIONS]\n"
933 " Options:\n"
934 " -r, --rxdrop Discard all incoming packets (default)\n"
935 " -t, --txonly Only send packets\n"
936 " -l, --l2fwd MAC swap L2 forwarding\n"
937 " -i, --interface=n Run on interface n\n"
938 " -q, --queue=n Use queue n (default 0)\n"
939 " -p, --poll Use poll syscall\n"
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200940 " -S, --xdp-skb=n Use XDP skb-mod\n"
Anton Ivanov4564a8bb2019-10-07 09:26:36 +0100941 " -N, --xdp-native=n Enforce XDP native mode\n"
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200942 " -n, --interval=n Specify statistics update interval (default 1 sec).\n"
Björn Töpel58c50ae2018-08-28 14:44:35 +0200943 " -z, --zero-copy Force zero-copy mode.\n"
944 " -c, --copy Force copy mode.\n"
Magnus Karlsson46738f72019-08-14 09:27:21 +0200945 " -m, --no-need-wakeup Turn off use of driver need wakeup flag.\n"
Kevin Laatzc543f542019-08-27 02:25:28 +0000946 " -f, --frame-size=n Set the frame size (must be a power of two in aligned mode, default is %d).\n"
947 " -u, --unaligned Enable unaligned chunk placement\n"
Mariusz Dudek3627d972020-12-03 10:05:46 +0100948 " -M, --shared-umem Enable XDP_SHARED_UMEM (cannot be used with -R)\n"
Andre Guedesb3133322019-11-14 08:28:47 -0800949 " -F, --force Force loading the XDP prog\n"
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +0530950 " -d, --duration=n Duration in secs to run command.\n"
951 " Default: forever.\n"
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +0530952 " -b, --batch-size=n Batch size for sending or receiving\n"
953 " packets. Default: %d\n"
Jay Jayatheerthanece6e962019-12-20 14:25:28 +0530954 " -C, --tx-pkt-count=n Number of packets to send.\n"
955 " Default: Continuous packets.\n"
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530956 " -s, --tx-pkt-size=n Transmit packet size.\n"
957 " (Default: %d bytes)\n"
958 " Min size: %d, Max size %d.\n"
Jay Jayatheerthan46e32682019-12-20 14:25:30 +0530959 " -P, --tx-pkt-pattern=nPacket fill pattern. Default: 0x%x\n"
Ciara Loftusb36c3202020-07-08 07:28:34 +0000960 " -x, --extra-stats Display extra statistics.\n"
Magnus Karlsson74e00672020-09-10 10:31:06 +0200961 " -Q, --quiet Do not display any stats.\n"
Ciara Loftus60dc6092020-10-02 13:36:11 +0000962 " -a, --app-stats Display application (syscall) statistics.\n"
Ciara Loftus67ed3752020-10-02 13:36:12 +0000963 " -I, --irq-string Display driver interrupt statistics for interface associated with irq-string.\n"
Björn Töpelb35fc142020-11-30 19:52:04 +0100964 " -B, --busy-poll Busy poll.\n"
Mariusz Dudek3627d972020-12-03 10:05:46 +0100965 " -R, --reduce-cap Use reduced capabilities (cannot be used with -M)\n"
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200966 "\n";
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +0530967 fprintf(stderr, str, prog, XSK_UMEM__DEFAULT_FRAME_SIZE,
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530968 opt_batch_size, MIN_PKT_SIZE, MIN_PKT_SIZE,
Jay Jayatheerthan46e32682019-12-20 14:25:30 +0530969 XSK_UMEM__DEFAULT_FRAME_SIZE, opt_pkt_fill_pattern);
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +0530970
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200971 exit(EXIT_FAILURE);
972}
973
974static void parse_command_line(int argc, char **argv)
975{
976 int option_index, c;
977
978 opterr = 0;
979
980 for (;;) {
Mariusz Dudek3627d972020-12-03 10:05:46 +0100981 c = getopt_long(argc, argv, "Frtli:q:pSNn:czf:muMd:b:C:s:P:xQaI:BR",
Magnus Karlsson46738f72019-08-14 09:27:21 +0200982 long_options, &option_index);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +0200983 if (c == -1)
984 break;
985
986 switch (c) {
987 case 'r':
988 opt_bench = BENCH_RXDROP;
989 break;
990 case 't':
991 opt_bench = BENCH_TXONLY;
992 break;
993 case 'l':
994 opt_bench = BENCH_L2FWD;
995 break;
996 case 'i':
997 opt_if = optarg;
998 break;
999 case 'q':
1000 opt_queue = atoi(optarg);
1001 break;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001002 case 'p':
1003 opt_poll = 1;
1004 break;
1005 case 'S':
1006 opt_xdp_flags |= XDP_FLAGS_SKB_MODE;
Björn Töpel9f5232c2018-06-04 14:06:01 +02001007 opt_xdp_bind_flags |= XDP_COPY;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001008 break;
1009 case 'N':
Toke Høiland-Jørgensend50ecc42019-12-16 12:07:42 +01001010 /* default, set below */
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001011 break;
1012 case 'n':
1013 opt_interval = atoi(optarg);
1014 break;
Björn Töpel58c50ae2018-08-28 14:44:35 +02001015 case 'z':
1016 opt_xdp_bind_flags |= XDP_ZEROCOPY;
1017 break;
1018 case 'c':
1019 opt_xdp_bind_flags |= XDP_COPY;
1020 break;
Kevin Laatzc543f542019-08-27 02:25:28 +00001021 case 'u':
1022 opt_umem_flags |= XDP_UMEM_UNALIGNED_CHUNK_FLAG;
1023 opt_unaligned_chunks = 1;
Kevin Laatz3945b372019-08-27 02:25:30 +00001024 opt_mmap_flags = MAP_HUGETLB;
Kevin Laatzc543f542019-08-27 02:25:28 +00001025 break;
Maciej Fijalkowski743e5682019-02-01 22:42:28 +01001026 case 'F':
1027 opt_xdp_flags &= ~XDP_FLAGS_UPDATE_IF_NOEXIST;
1028 break;
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +03001029 case 'f':
1030 opt_xsk_frame_size = atoi(optarg);
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001031 break;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001032 case 'm':
1033 opt_need_wakeup = false;
1034 opt_xdp_bind_flags &= ~XDP_USE_NEED_WAKEUP;
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +03001035 break;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001036 case 'M':
1037 opt_num_xsks = MAX_SOCKS;
1038 break;
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301039 case 'd':
1040 opt_duration = atoi(optarg);
1041 opt_duration *= 1000000000;
1042 break;
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301043 case 'b':
1044 opt_batch_size = atoi(optarg);
1045 break;
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301046 case 'C':
1047 opt_pkt_count = atoi(optarg);
1048 break;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +05301049 case 's':
1050 opt_pkt_size = atoi(optarg);
1051 if (opt_pkt_size > (XSK_UMEM__DEFAULT_FRAME_SIZE) ||
1052 opt_pkt_size < MIN_PKT_SIZE) {
1053 fprintf(stderr,
1054 "ERROR: Invalid frame size %d\n",
1055 opt_pkt_size);
1056 usage(basename(argv[0]));
1057 }
1058 break;
Jay Jayatheerthan46e32682019-12-20 14:25:30 +05301059 case 'P':
1060 opt_pkt_fill_pattern = strtol(optarg, NULL, 16);
1061 break;
Ciara Loftusb36c3202020-07-08 07:28:34 +00001062 case 'x':
1063 opt_extra_stats = 1;
1064 break;
Magnus Karlsson74e00672020-09-10 10:31:06 +02001065 case 'Q':
1066 opt_quiet = 1;
1067 break;
Ciara Loftus60dc6092020-10-02 13:36:11 +00001068 case 'a':
1069 opt_app_stats = 1;
1070 break;
Ciara Loftus67ed3752020-10-02 13:36:12 +00001071 case 'I':
1072 opt_irq_str = optarg;
1073 if (get_interrupt_number())
1074 irqs_at_init = get_irqs();
1075 if (irqs_at_init < 0) {
1076 fprintf(stderr, "ERROR: Failed to get irqs for %s\n", opt_irq_str);
1077 usage(basename(argv[0]));
1078 }
Björn Töpelb35fc142020-11-30 19:52:04 +01001079 break;
1080 case 'B':
1081 opt_busy_poll = 1;
Ciara Loftus67ed3752020-10-02 13:36:12 +00001082 break;
Mariusz Dudek3627d972020-12-03 10:05:46 +01001083 case 'R':
1084 opt_reduced_cap = true;
1085 break;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001086 default:
1087 usage(basename(argv[0]));
1088 }
1089 }
1090
Toke Høiland-Jørgensend50ecc42019-12-16 12:07:42 +01001091 if (!(opt_xdp_flags & XDP_FLAGS_SKB_MODE))
1092 opt_xdp_flags |= XDP_FLAGS_DRV_MODE;
1093
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001094 opt_ifindex = if_nametoindex(opt_if);
1095 if (!opt_ifindex) {
1096 fprintf(stderr, "ERROR: interface \"%s\" does not exist\n",
1097 opt_if);
1098 usage(basename(argv[0]));
1099 }
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001100
Kevin Laatzc543f542019-08-27 02:25:28 +00001101 if ((opt_xsk_frame_size & (opt_xsk_frame_size - 1)) &&
1102 !opt_unaligned_chunks) {
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +03001103 fprintf(stderr, "--frame-size=%d is not a power of two\n",
1104 opt_xsk_frame_size);
1105 usage(basename(argv[0]));
1106 }
Mariusz Dudek3627d972020-12-03 10:05:46 +01001107
1108 if (opt_reduced_cap && opt_num_xsks > 1) {
1109 fprintf(stderr, "ERROR: -M and -R cannot be used together\n");
1110 usage(basename(argv[0]));
1111 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001112}
1113
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001114static void kick_tx(struct xsk_socket_info *xsk)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001115{
1116 int ret;
1117
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001118 ret = sendto(xsk_socket__fd(xsk->xsk), NULL, 0, MSG_DONTWAIT, NULL, 0);
Maciej Fijalkowski8ed47e12020-02-05 05:58:34 +01001119 if (ret >= 0 || errno == ENOBUFS || errno == EAGAIN ||
1120 errno == EBUSY || errno == ENETDOWN)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001121 return;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001122 exit_with_error(errno);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001123}
1124
Björn Töpel284cbc62020-11-30 19:52:03 +01001125static inline void complete_tx_l2fwd(struct xsk_socket_info *xsk)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001126{
Kevin Laatz03895e62019-08-27 02:25:29 +00001127 struct xsk_umem_info *umem = xsk->umem;
Yonghong Songb74e21a2019-02-28 22:19:41 -08001128 u32 idx_cq = 0, idx_fq = 0;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001129 unsigned int rcvd;
1130 size_t ndescs;
1131
1132 if (!xsk->outstanding_tx)
1133 return;
1134
Magnus Karlsson3131cf62020-09-10 10:31:04 +02001135 /* In copy mode, Tx is driven by a syscall so we need to use e.g. sendto() to
1136 * really send the packets. In zero-copy mode we do not have to do this, since Tx
1137 * is driven by the NAPI loop. So as an optimization, we do not have to call
1138 * sendto() all the time in zero-copy mode for l2fwd.
1139 */
Ciara Loftus60dc6092020-10-02 13:36:11 +00001140 if (opt_xdp_bind_flags & XDP_COPY) {
1141 xsk->app_stats.copy_tx_sendtos++;
Magnus Karlsson3131cf62020-09-10 10:31:04 +02001142 kick_tx(xsk);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001143 }
Magnus Karlsson3131cf62020-09-10 10:31:04 +02001144
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301145 ndescs = (xsk->outstanding_tx > opt_batch_size) ? opt_batch_size :
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001146 xsk->outstanding_tx;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001147
1148 /* re-add completed Tx buffers */
Kevin Laatz03895e62019-08-27 02:25:29 +00001149 rcvd = xsk_ring_cons__peek(&umem->cq, ndescs, &idx_cq);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001150 if (rcvd > 0) {
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001151 unsigned int i;
1152 int ret;
1153
Kevin Laatz03895e62019-08-27 02:25:29 +00001154 ret = xsk_ring_prod__reserve(&umem->fq, rcvd, &idx_fq);
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001155 while (ret != rcvd) {
1156 if (ret < 0)
1157 exit_with_error(-ret);
Björn Töpelb35fc142020-11-30 19:52:04 +01001158 if (opt_busy_poll || xsk_ring_prod__needs_wakeup(&umem->fq)) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001159 xsk->app_stats.fill_fail_polls++;
Björn Töpel284cbc62020-11-30 19:52:03 +01001160 recvfrom(xsk_socket__fd(xsk->xsk), NULL, 0, MSG_DONTWAIT, NULL,
1161 NULL);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001162 }
Kevin Laatz03895e62019-08-27 02:25:29 +00001163 ret = xsk_ring_prod__reserve(&umem->fq, rcvd, &idx_fq);
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001164 }
Kevin Laatz03895e62019-08-27 02:25:29 +00001165
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001166 for (i = 0; i < rcvd; i++)
Kevin Laatz03895e62019-08-27 02:25:29 +00001167 *xsk_ring_prod__fill_addr(&umem->fq, idx_fq++) =
1168 *xsk_ring_cons__comp_addr(&umem->cq, idx_cq++);
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001169
1170 xsk_ring_prod__submit(&xsk->umem->fq, rcvd);
1171 xsk_ring_cons__release(&xsk->umem->cq, rcvd);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001172 xsk->outstanding_tx -= rcvd;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001173 }
1174}
1175
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301176static inline void complete_tx_only(struct xsk_socket_info *xsk,
1177 int batch_size)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001178{
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001179 unsigned int rcvd;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001180 u32 idx;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001181
1182 if (!xsk->outstanding_tx)
1183 return;
1184
Ciara Loftus60dc6092020-10-02 13:36:11 +00001185 if (!opt_need_wakeup || xsk_ring_prod__needs_wakeup(&xsk->tx)) {
1186 xsk->app_stats.tx_wakeup_sendtos++;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001187 kick_tx(xsk);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001188 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001189
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301190 rcvd = xsk_ring_cons__peek(&xsk->umem->cq, batch_size, &idx);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001191 if (rcvd > 0) {
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001192 xsk_ring_cons__release(&xsk->umem->cq, rcvd);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001193 xsk->outstanding_tx -= rcvd;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001194 }
1195}
1196
Björn Töpelf2d27282020-11-30 19:52:02 +01001197static void rx_drop(struct xsk_socket_info *xsk)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001198{
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001199 unsigned int rcvd, i;
Yonghong Songb74e21a2019-02-28 22:19:41 -08001200 u32 idx_rx = 0, idx_fq = 0;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001201 int ret;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001202
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301203 rcvd = xsk_ring_cons__peek(&xsk->rx, opt_batch_size, &idx_rx);
Magnus Karlsson46738f72019-08-14 09:27:21 +02001204 if (!rcvd) {
Björn Töpelb35fc142020-11-30 19:52:04 +01001205 if (opt_busy_poll || xsk_ring_prod__needs_wakeup(&xsk->umem->fq)) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001206 xsk->app_stats.rx_empty_polls++;
Björn Töpelf2d27282020-11-30 19:52:02 +01001207 recvfrom(xsk_socket__fd(xsk->xsk), NULL, 0, MSG_DONTWAIT, NULL, NULL);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001208 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001209 return;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001210 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001211
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001212 ret = xsk_ring_prod__reserve(&xsk->umem->fq, rcvd, &idx_fq);
1213 while (ret != rcvd) {
1214 if (ret < 0)
1215 exit_with_error(-ret);
Björn Töpelb35fc142020-11-30 19:52:04 +01001216 if (opt_busy_poll || xsk_ring_prod__needs_wakeup(&xsk->umem->fq)) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001217 xsk->app_stats.fill_fail_polls++;
Björn Töpelf2d27282020-11-30 19:52:02 +01001218 recvfrom(xsk_socket__fd(xsk->xsk), NULL, 0, MSG_DONTWAIT, NULL, NULL);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001219 }
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001220 ret = xsk_ring_prod__reserve(&xsk->umem->fq, rcvd, &idx_fq);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001221 }
1222
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001223 for (i = 0; i < rcvd; i++) {
1224 u64 addr = xsk_ring_cons__rx_desc(&xsk->rx, idx_rx)->addr;
1225 u32 len = xsk_ring_cons__rx_desc(&xsk->rx, idx_rx++)->len;
Kevin Laatz03895e62019-08-27 02:25:29 +00001226 u64 orig = xsk_umem__extract_addr(addr);
1227
1228 addr = xsk_umem__add_offset_to_addr(addr);
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001229 char *pkt = xsk_umem__get_data(xsk->umem->buffer, addr);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001230
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001231 hex_dump(pkt, len, addr);
Kevin Laatz03895e62019-08-27 02:25:29 +00001232 *xsk_ring_prod__fill_addr(&xsk->umem->fq, idx_fq++) = orig;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001233 }
1234
1235 xsk_ring_prod__submit(&xsk->umem->fq, rcvd);
1236 xsk_ring_cons__release(&xsk->rx, rcvd);
Ciara Loftus2e8806f2020-10-02 13:36:10 +00001237 xsk->ring_stats.rx_npkts += rcvd;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001238}
1239
1240static void rx_drop_all(void)
1241{
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001242 struct pollfd fds[MAX_SOCKS] = {};
Magnus Karlsson46738f72019-08-14 09:27:21 +02001243 int i, ret;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001244
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001245 for (i = 0; i < num_socks; i++) {
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001246 fds[i].fd = xsk_socket__fd(xsks[i]->xsk);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001247 fds[i].events = POLLIN;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001248 }
1249
1250 for (;;) {
1251 if (opt_poll) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001252 for (i = 0; i < num_socks; i++)
1253 xsks[i]->app_stats.opt_polls++;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001254 ret = poll(fds, num_socks, opt_timeout);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001255 if (ret <= 0)
1256 continue;
1257 }
1258
1259 for (i = 0; i < num_socks; i++)
Björn Töpelf2d27282020-11-30 19:52:02 +01001260 rx_drop(xsks[i]);
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301261
1262 if (benchmark_done)
1263 break;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001264 }
1265}
1266
Weqaar Janjuab69e56c2020-08-29 00:17:17 +08001267static void tx_only(struct xsk_socket_info *xsk, u32 *frame_nb, int batch_size)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001268{
Magnus Karlsson46738f72019-08-14 09:27:21 +02001269 u32 idx;
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301270 unsigned int i;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001271
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301272 while (xsk_ring_prod__reserve(&xsk->tx, batch_size, &idx) <
1273 batch_size) {
1274 complete_tx_only(xsk, batch_size);
Magnus Karlsson092fde02020-12-10 17:34:07 +01001275 if (benchmark_done)
1276 return;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001277 }
1278
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301279 for (i = 0; i < batch_size; i++) {
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301280 struct xdp_desc *tx_desc = xsk_ring_prod__tx_desc(&xsk->tx,
1281 idx + i);
Magnus Karlsson3b80d102021-05-06 14:43:49 +02001282 tx_desc->addr = (*frame_nb + i) * opt_xsk_frame_size;
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +05301283 tx_desc->len = PKT_SIZE;
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301284 }
1285
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301286 xsk_ring_prod__submit(&xsk->tx, batch_size);
Magnus Karlsson90da4b32020-11-16 12:12:43 +01001287 xsk->ring_stats.tx_npkts += batch_size;
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301288 xsk->outstanding_tx += batch_size;
Weqaar Janjuab69e56c2020-08-29 00:17:17 +08001289 *frame_nb += batch_size;
1290 *frame_nb %= NUM_FRAMES;
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301291 complete_tx_only(xsk, batch_size);
1292}
1293
1294static inline int get_batch_size(int pkt_cnt)
1295{
1296 if (!opt_pkt_count)
1297 return opt_batch_size;
1298
1299 if (pkt_cnt + opt_batch_size <= opt_pkt_count)
1300 return opt_batch_size;
1301
1302 return opt_pkt_count - pkt_cnt;
1303}
1304
1305static void complete_tx_only_all(void)
1306{
1307 bool pending;
1308 int i;
1309
1310 do {
1311 pending = false;
1312 for (i = 0; i < num_socks; i++) {
1313 if (xsks[i]->outstanding_tx) {
1314 complete_tx_only(xsks[i], opt_batch_size);
1315 pending = !!xsks[i]->outstanding_tx;
1316 }
1317 }
1318 } while (pending);
Magnus Karlsson46738f72019-08-14 09:27:21 +02001319}
1320
1321static void tx_only_all(void)
1322{
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001323 struct pollfd fds[MAX_SOCKS] = {};
Magnus Karlsson46738f72019-08-14 09:27:21 +02001324 u32 frame_nb[MAX_SOCKS] = {};
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301325 int pkt_cnt = 0;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001326 int i, ret;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001327
Magnus Karlsson46738f72019-08-14 09:27:21 +02001328 for (i = 0; i < num_socks; i++) {
1329 fds[0].fd = xsk_socket__fd(xsks[i]->xsk);
1330 fds[0].events = POLLOUT;
1331 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001332
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301333 while ((opt_pkt_count && pkt_cnt < opt_pkt_count) || !opt_pkt_count) {
1334 int batch_size = get_batch_size(pkt_cnt);
1335
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001336 if (opt_poll) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001337 for (i = 0; i < num_socks; i++)
1338 xsks[i]->app_stats.opt_polls++;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001339 ret = poll(fds, num_socks, opt_timeout);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001340 if (ret <= 0)
1341 continue;
1342
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001343 if (!(fds[0].revents & POLLOUT))
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001344 continue;
1345 }
1346
Magnus Karlsson46738f72019-08-14 09:27:21 +02001347 for (i = 0; i < num_socks; i++)
Weqaar Janjuab69e56c2020-08-29 00:17:17 +08001348 tx_only(xsks[i], &frame_nb[i], batch_size);
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301349
1350 pkt_cnt += batch_size;
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301351
1352 if (benchmark_done)
1353 break;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001354 }
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301355
1356 if (opt_pkt_count)
1357 complete_tx_only_all();
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001358}
1359
Björn Töpel284cbc62020-11-30 19:52:03 +01001360static void l2fwd(struct xsk_socket_info *xsk)
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001361{
Magnus Karlsson46738f72019-08-14 09:27:21 +02001362 unsigned int rcvd, i;
1363 u32 idx_rx = 0, idx_tx = 0;
1364 int ret;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001365
Björn Töpel284cbc62020-11-30 19:52:03 +01001366 complete_tx_l2fwd(xsk);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001367
Jay Jayatheerthancd9e72b62019-12-20 14:25:27 +05301368 rcvd = xsk_ring_cons__peek(&xsk->rx, opt_batch_size, &idx_rx);
Magnus Karlsson46738f72019-08-14 09:27:21 +02001369 if (!rcvd) {
Björn Töpelb35fc142020-11-30 19:52:04 +01001370 if (opt_busy_poll || xsk_ring_prod__needs_wakeup(&xsk->umem->fq)) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001371 xsk->app_stats.rx_empty_polls++;
Björn Töpel284cbc62020-11-30 19:52:03 +01001372 recvfrom(xsk_socket__fd(xsk->xsk), NULL, 0, MSG_DONTWAIT, NULL, NULL);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001373 }
Magnus Karlsson46738f72019-08-14 09:27:21 +02001374 return;
1375 }
Magnus Karlsson90da4b32020-11-16 12:12:43 +01001376 xsk->ring_stats.rx_npkts += rcvd;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001377
Magnus Karlsson46738f72019-08-14 09:27:21 +02001378 ret = xsk_ring_prod__reserve(&xsk->tx, rcvd, &idx_tx);
1379 while (ret != rcvd) {
1380 if (ret < 0)
1381 exit_with_error(-ret);
Björn Töpel284cbc62020-11-30 19:52:03 +01001382 complete_tx_l2fwd(xsk);
Björn Töpelb35fc142020-11-30 19:52:04 +01001383 if (opt_busy_poll || xsk_ring_prod__needs_wakeup(&xsk->tx)) {
Ciara Loftus60dc6092020-10-02 13:36:11 +00001384 xsk->app_stats.tx_wakeup_sendtos++;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001385 kick_tx(xsk);
Ciara Loftus60dc6092020-10-02 13:36:11 +00001386 }
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001387 ret = xsk_ring_prod__reserve(&xsk->tx, rcvd, &idx_tx);
Magnus Karlsson46738f72019-08-14 09:27:21 +02001388 }
1389
1390 for (i = 0; i < rcvd; i++) {
1391 u64 addr = xsk_ring_cons__rx_desc(&xsk->rx, idx_rx)->addr;
1392 u32 len = xsk_ring_cons__rx_desc(&xsk->rx, idx_rx++)->len;
Ciara Loftus5a712e12019-09-13 10:39:48 +00001393 u64 orig = addr;
Kevin Laatz03895e62019-08-27 02:25:29 +00001394
1395 addr = xsk_umem__add_offset_to_addr(addr);
Magnus Karlsson46738f72019-08-14 09:27:21 +02001396 char *pkt = xsk_umem__get_data(xsk->umem->buffer, addr);
1397
1398 swap_mac_addresses(pkt);
1399
1400 hex_dump(pkt, len, addr);
Kevin Laatz03895e62019-08-27 02:25:29 +00001401 xsk_ring_prod__tx_desc(&xsk->tx, idx_tx)->addr = orig;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001402 xsk_ring_prod__tx_desc(&xsk->tx, idx_tx++)->len = len;
1403 }
1404
1405 xsk_ring_prod__submit(&xsk->tx, rcvd);
1406 xsk_ring_cons__release(&xsk->rx, rcvd);
1407
Magnus Karlsson90da4b32020-11-16 12:12:43 +01001408 xsk->ring_stats.tx_npkts += rcvd;
Magnus Karlsson46738f72019-08-14 09:27:21 +02001409 xsk->outstanding_tx += rcvd;
1410}
1411
1412static void l2fwd_all(void)
1413{
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001414 struct pollfd fds[MAX_SOCKS] = {};
Magnus Karlsson46738f72019-08-14 09:27:21 +02001415 int i, ret;
1416
Magnus Karlsson46738f72019-08-14 09:27:21 +02001417 for (;;) {
1418 if (opt_poll) {
Björn Töpel284cbc62020-11-30 19:52:03 +01001419 for (i = 0; i < num_socks; i++) {
1420 fds[i].fd = xsk_socket__fd(xsks[i]->xsk);
1421 fds[i].events = POLLOUT | POLLIN;
Ciara Loftus60dc6092020-10-02 13:36:11 +00001422 xsks[i]->app_stats.opt_polls++;
Björn Töpel284cbc62020-11-30 19:52:03 +01001423 }
Magnus Karlsson46738f72019-08-14 09:27:21 +02001424 ret = poll(fds, num_socks, opt_timeout);
1425 if (ret <= 0)
1426 continue;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001427 }
1428
Magnus Karlsson46738f72019-08-14 09:27:21 +02001429 for (i = 0; i < num_socks; i++)
Björn Töpel284cbc62020-11-30 19:52:03 +01001430 l2fwd(xsks[i]);
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301431
1432 if (benchmark_done)
1433 break;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001434 }
1435}
1436
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001437static void load_xdp_program(char **argv, struct bpf_object **obj)
1438{
1439 struct bpf_prog_load_attr prog_load_attr = {
1440 .prog_type = BPF_PROG_TYPE_XDP,
1441 };
1442 char xdp_filename[256];
1443 int prog_fd;
1444
1445 snprintf(xdp_filename, sizeof(xdp_filename), "%s_kern.o", argv[0]);
1446 prog_load_attr.file = xdp_filename;
1447
1448 if (bpf_prog_load_xattr(&prog_load_attr, obj, &prog_fd))
1449 exit(EXIT_FAILURE);
1450 if (prog_fd < 0) {
1451 fprintf(stderr, "ERROR: no program found: %s\n",
1452 strerror(prog_fd));
1453 exit(EXIT_FAILURE);
1454 }
1455
1456 if (bpf_set_link_xdp_fd(opt_ifindex, prog_fd, opt_xdp_flags) < 0) {
1457 fprintf(stderr, "ERROR: link set xdp fd failed\n");
1458 exit(EXIT_FAILURE);
1459 }
1460}
1461
1462static void enter_xsks_into_map(struct bpf_object *obj)
1463{
1464 struct bpf_map *map;
1465 int i, xsks_map;
1466
1467 map = bpf_object__find_map_by_name(obj, "xsks_map");
1468 xsks_map = bpf_map__fd(map);
1469 if (xsks_map < 0) {
1470 fprintf(stderr, "ERROR: no xsks map found: %s\n",
1471 strerror(xsks_map));
1472 exit(EXIT_FAILURE);
1473 }
1474
1475 for (i = 0; i < num_socks; i++) {
1476 int fd = xsk_socket__fd(xsks[i]->xsk);
1477 int key, ret;
1478
1479 key = i;
1480 ret = bpf_map_update_elem(xsks_map, &key, &fd, 0);
1481 if (ret) {
1482 fprintf(stderr, "ERROR: bpf_map_update_elem %d\n", i);
1483 exit(EXIT_FAILURE);
1484 }
1485 }
1486}
1487
Björn Töpelb35fc142020-11-30 19:52:04 +01001488static void apply_setsockopt(struct xsk_socket_info *xsk)
1489{
1490 int sock_opt;
1491
1492 if (!opt_busy_poll)
1493 return;
1494
1495 sock_opt = 1;
1496 if (setsockopt(xsk_socket__fd(xsk->xsk), SOL_SOCKET, SO_PREFER_BUSY_POLL,
1497 (void *)&sock_opt, sizeof(sock_opt)) < 0)
1498 exit_with_error(errno);
1499
1500 sock_opt = 20;
1501 if (setsockopt(xsk_socket__fd(xsk->xsk), SOL_SOCKET, SO_BUSY_POLL,
1502 (void *)&sock_opt, sizeof(sock_opt)) < 0)
1503 exit_with_error(errno);
Björn Töpel41bf9002020-11-30 19:52:05 +01001504
1505 sock_opt = opt_batch_size;
1506 if (setsockopt(xsk_socket__fd(xsk->xsk), SOL_SOCKET, SO_BUSY_POLL_BUDGET,
1507 (void *)&sock_opt, sizeof(sock_opt)) < 0)
1508 exit_with_error(errno);
Björn Töpelb35fc142020-11-30 19:52:04 +01001509}
1510
Mariusz Dudek3627d972020-12-03 10:05:46 +01001511static int recv_xsks_map_fd_from_ctrl_node(int sock, int *_fd)
1512{
1513 char cms[CMSG_SPACE(sizeof(int))];
1514 struct cmsghdr *cmsg;
1515 struct msghdr msg;
1516 struct iovec iov;
1517 int value;
1518 int len;
1519
1520 iov.iov_base = &value;
1521 iov.iov_len = sizeof(int);
1522
1523 msg.msg_name = 0;
1524 msg.msg_namelen = 0;
1525 msg.msg_iov = &iov;
1526 msg.msg_iovlen = 1;
1527 msg.msg_flags = 0;
1528 msg.msg_control = (caddr_t)cms;
1529 msg.msg_controllen = sizeof(cms);
1530
1531 len = recvmsg(sock, &msg, 0);
1532
1533 if (len < 0) {
1534 fprintf(stderr, "Recvmsg failed length incorrect.\n");
1535 return -EINVAL;
1536 }
1537
1538 if (len == 0) {
1539 fprintf(stderr, "Recvmsg failed no data\n");
1540 return -EINVAL;
1541 }
1542
1543 cmsg = CMSG_FIRSTHDR(&msg);
1544 *_fd = *(int *)CMSG_DATA(cmsg);
1545
1546 return 0;
1547}
1548
1549static int
1550recv_xsks_map_fd(int *xsks_map_fd)
1551{
1552 struct sockaddr_un server;
1553 int err;
1554
1555 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1556 if (sock < 0) {
1557 fprintf(stderr, "Error opening socket stream: %s", strerror(errno));
1558 return errno;
1559 }
1560
1561 server.sun_family = AF_UNIX;
1562 strcpy(server.sun_path, SOCKET_NAME);
1563
1564 if (connect(sock, (struct sockaddr *)&server, sizeof(struct sockaddr_un)) < 0) {
1565 close(sock);
1566 fprintf(stderr, "Error connecting stream socket: %s", strerror(errno));
1567 return errno;
1568 }
1569
1570 err = recv_xsks_map_fd_from_ctrl_node(sock, xsks_map_fd);
1571 if (err) {
Colin Ian King2faa7322020-12-03 11:44:52 +00001572 fprintf(stderr, "Error %d receiving fd\n", err);
Mariusz Dudek3627d972020-12-03 10:05:46 +01001573 return err;
1574 }
1575 return 0;
1576}
1577
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001578int main(int argc, char **argv)
1579{
Mariusz Dudek3627d972020-12-03 10:05:46 +01001580 struct __user_cap_header_struct hdr = { _LINUX_CAPABILITY_VERSION_3, 0 };
1581 struct __user_cap_data_struct data[2] = { { 0 } };
1582 struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
Magnus Karlsson661842c2019-11-07 18:47:39 +01001583 bool rx = false, tx = false;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001584 struct xsk_umem_info *umem;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001585 struct bpf_object *obj;
Mariusz Dudek3627d972020-12-03 10:05:46 +01001586 int xsks_map_fd = 0;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001587 pthread_t pt;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001588 int i, ret;
Magnus Karlsson248c7f92019-02-21 10:21:27 +01001589 void *bufs;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001590
1591 parse_command_line(argc, argv);
1592
Mariusz Dudek3627d972020-12-03 10:05:46 +01001593 if (opt_reduced_cap) {
1594 if (capget(&hdr, data) < 0)
1595 fprintf(stderr, "Error getting capabilities\n");
1596
1597 data->effective &= CAP_TO_MASK(CAP_NET_RAW);
1598 data->permitted &= CAP_TO_MASK(CAP_NET_RAW);
1599
1600 if (capset(&hdr, data) < 0)
1601 fprintf(stderr, "Setting capabilities failed\n");
1602
1603 if (capget(&hdr, data) < 0) {
1604 fprintf(stderr, "Error getting capabilities\n");
1605 } else {
1606 fprintf(stderr, "Capabilities EFF %x Caps INH %x Caps Per %x\n",
1607 data[0].effective, data[0].inheritable, data[0].permitted);
1608 fprintf(stderr, "Capabilities EFF %x Caps INH %x Caps Per %x\n",
1609 data[1].effective, data[1].inheritable, data[1].permitted);
1610 }
1611 } else {
1612 if (setrlimit(RLIMIT_MEMLOCK, &r)) {
1613 fprintf(stderr, "ERROR: setrlimit(RLIMIT_MEMLOCK) \"%s\"\n",
1614 strerror(errno));
1615 exit(EXIT_FAILURE);
1616 }
1617
1618 if (opt_num_xsks > 1)
1619 load_xdp_program(argv, &obj);
1620 }
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001621
Kevin Laatz3945b372019-08-27 02:25:30 +00001622 /* Reserve memory for the umem. Use hugepages if unaligned chunk mode */
1623 bufs = mmap(NULL, NUM_FRAMES * opt_xsk_frame_size,
1624 PROT_READ | PROT_WRITE,
1625 MAP_PRIVATE | MAP_ANONYMOUS | opt_mmap_flags, -1, 0);
1626 if (bufs == MAP_FAILED) {
1627 printf("ERROR: mmap failed\n");
1628 exit(EXIT_FAILURE);
1629 }
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001630
1631 /* Create sockets... */
Maxim Mikityanskiy123e8da12019-06-26 17:35:27 +03001632 umem = xsk_configure_umem(bufs, NUM_FRAMES * opt_xsk_frame_size);
Magnus Karlsson661842c2019-11-07 18:47:39 +01001633 if (opt_bench == BENCH_RXDROP || opt_bench == BENCH_L2FWD) {
1634 rx = true;
1635 xsk_populate_fill_ring(umem);
1636 }
1637 if (opt_bench == BENCH_L2FWD || opt_bench == BENCH_TXONLY)
1638 tx = true;
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001639 for (i = 0; i < opt_num_xsks; i++)
Magnus Karlsson661842c2019-11-07 18:47:39 +01001640 xsks[num_socks++] = xsk_configure_socket(umem, rx, tx);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001641
Björn Töpelb35fc142020-11-30 19:52:04 +01001642 for (i = 0; i < opt_num_xsks; i++)
1643 apply_setsockopt(xsks[i]);
1644
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +05301645 if (opt_bench == BENCH_TXONLY) {
1646 gen_eth_hdr_data();
1647
Magnus Karlsson661842c2019-11-07 18:47:39 +01001648 for (i = 0; i < NUM_FRAMES; i++)
1649 gen_eth_frame(umem, i * opt_xsk_frame_size);
Jay Jayatheerthan4a3c23a2019-12-20 14:25:29 +05301650 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001651
Magnus Karlsson2e5d72c2019-11-07 18:47:37 +01001652 if (opt_num_xsks > 1 && opt_bench != BENCH_TXONLY)
1653 enter_xsks_into_map(obj);
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001654
Mariusz Dudek3627d972020-12-03 10:05:46 +01001655 if (opt_reduced_cap) {
1656 ret = recv_xsks_map_fd(&xsks_map_fd);
1657 if (ret) {
1658 fprintf(stderr, "Error %d receiving xsks_map_fd\n", ret);
1659 exit_with_error(ret);
1660 }
1661 if (xsks[0]->xsk) {
1662 ret = xsk_socket__update_xskmap(xsks[0]->xsk, xsks_map_fd);
1663 if (ret) {
1664 fprintf(stderr, "Update of BPF map failed(%d)\n", ret);
1665 exit_with_error(ret);
1666 }
1667 }
1668 }
1669
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001670 signal(SIGINT, int_exit);
1671 signal(SIGTERM, int_exit);
1672 signal(SIGABRT, int_exit);
1673
1674 setlocale(LC_ALL, "");
1675
Magnus Karlsson74e00672020-09-10 10:31:06 +02001676 if (!opt_quiet) {
1677 ret = pthread_create(&pt, NULL, poller, NULL);
1678 if (ret)
1679 exit_with_error(ret);
1680 }
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001681
1682 prev_time = get_nsecs();
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301683 start_time = prev_time;
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001684
1685 if (opt_bench == BENCH_RXDROP)
1686 rx_drop_all();
1687 else if (opt_bench == BENCH_TXONLY)
Magnus Karlsson46738f72019-08-14 09:27:21 +02001688 tx_only_all();
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001689 else
Magnus Karlsson46738f72019-08-14 09:27:21 +02001690 l2fwd_all();
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001691
Jay Jayatheerthanece6e962019-12-20 14:25:28 +05301692 benchmark_done = true;
1693
Magnus Karlsson74e00672020-09-10 10:31:06 +02001694 if (!opt_quiet)
1695 pthread_join(pt, NULL);
Jay Jayatheerthand3f11b02019-12-20 14:25:25 +05301696
Jay Jayatheerthan69525582019-12-20 14:25:26 +05301697 xdpsock_cleanup();
1698
Maciej Fijalkowski6bc66992021-03-03 19:56:35 +01001699 munmap(bufs, NUM_FRAMES * opt_xsk_frame_size);
1700
Magnus Karlssonb4b8faa2018-05-02 13:01:36 +02001701 return 0;
1702}