-
Notifications
You must be signed in to change notification settings - Fork 144
/
xsk.c
1349 lines (1135 loc) · 32 KB
/
xsk.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
/*
* AF_XDP user-space access library.
*
* Copyright(c) 2018 - 2021 Intel Corporation.
*
* Author(s): Magnus Karlsson <magnus.karlsson@intel.com>
*/
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <bpf/bpf.h>
#include <bpf/libbpf.h>
#include <dirent.h>
#include <linux/err.h>
#include <linux/ethtool.h>
#include <linux/filter.h>
#include <linux/if_ether.h>
#include <linux/if_link.h>
#include <linux/if_packet.h>
#include <linux/if_xdp.h>
#include <linux/list.h>
#include <linux/sockios.h>
#include <net/if.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <xdp/xsk.h>
#include "libxdp_internal.h"
#include "xsk_def_xdp_prog.h"
#include "bpf_instr.h"
#ifndef SOL_XDP
#define SOL_XDP 283
#endif
#ifndef AF_XDP
#define AF_XDP 44
#endif
#ifndef PF_XDP
#define PF_XDP AF_XDP
#endif
#ifndef SO_NETNS_COOKIE
#define SO_NETNS_COOKIE 71
#endif
#define INIT_NS 1
struct xsk_umem {
struct xsk_ring_prod *fill_save;
struct xsk_ring_cons *comp_save;
char *umem_area;
struct xsk_umem_config config;
int fd;
int refcount;
struct list_head ctx_list;
bool rx_ring_setup_done;
bool tx_ring_setup_done;
};
struct xsk_ctx {
struct xsk_ring_prod *fill;
struct xsk_ring_cons *comp;
struct xsk_umem *umem;
__u32 queue_id;
int refcount;
int ifindex;
__u64 netns_cookie;
int xsks_map_fd;
struct list_head list;
struct xdp_program *xdp_prog;
int refcnt_map_fd;
char ifname[IFNAMSIZ];
};
struct xsk_socket {
struct xsk_ring_cons *rx;
struct xsk_ring_prod *tx;
struct xsk_ctx *ctx;
struct xsk_socket_config config;
int fd;
};
struct xsk_nl_info {
int ifindex;
int fd;
bool xdp_prog_attached;
};
/* Up until and including Linux 5.3 */
struct xdp_ring_offset_v1 {
__u64 producer;
__u64 consumer;
__u64 desc;
};
/* Up until and including Linux 5.3 */
struct xdp_mmap_offsets_v1 {
struct xdp_ring_offset_v1 rx;
struct xdp_ring_offset_v1 tx;
struct xdp_ring_offset_v1 fr;
struct xdp_ring_offset_v1 cr;
};
/* Export all inline helpers as symbols for use by language bindings. */
extern inline __u64 *xsk_ring_prod__fill_addr(struct xsk_ring_prod *fill,
__u32 idx);
extern inline const __u64 *
xsk_ring_cons__comp_addr(const struct xsk_ring_cons *comp, __u32 idx);
extern inline struct xdp_desc *xsk_ring_prod__tx_desc(struct xsk_ring_prod *tx,
__u32 idx);
extern inline const struct xdp_desc *
xsk_ring_cons__rx_desc(const struct xsk_ring_cons *rx, __u32 idx);
extern inline int xsk_ring_prod__needs_wakeup(const struct xsk_ring_prod *r);
extern inline __u32 xsk_prod_nb_free(struct xsk_ring_prod *r, __u32 nb);
extern inline __u32 xsk_cons_nb_avail(struct xsk_ring_cons *r, __u32 nb);
extern inline __u32 xsk_ring_prod__reserve(struct xsk_ring_prod *prod, __u32 nb,
__u32 *idx);
extern inline void xsk_ring_prod__submit(struct xsk_ring_prod *prod, __u32 nb);
extern inline __u32 xsk_ring_cons__peek(struct xsk_ring_cons *cons, __u32 nb,
__u32 *idx);
extern inline void xsk_ring_cons__cancel(struct xsk_ring_cons *cons, __u32 nb);
extern inline void xsk_ring_cons__release(struct xsk_ring_cons *cons, __u32 nb);
extern inline void *xsk_umem__get_data(void *umem_area, __u64 addr);
extern inline __u64 xsk_umem__extract_addr(__u64 addr);
extern inline __u64 xsk_umem__extract_offset(__u64 addr);
extern inline __u64 xsk_umem__add_offset_to_addr(__u64 addr);
int xsk_umem__fd(const struct xsk_umem *umem)
{
return umem ? umem->fd : -EINVAL;
}
int xsk_socket__fd(const struct xsk_socket *xsk)
{
return xsk ? xsk->fd : -EINVAL;
}
static bool xsk_page_aligned(void *buffer)
{
unsigned long addr = (unsigned long)buffer;
return !(addr & (getpagesize() - 1));
}
static void xsk_set_umem_config(struct xsk_umem_config *cfg,
const struct xsk_umem_opts *opts)
{
cfg->fill_size = OPTS_GET(opts, fill_size, 0) ?: XSK_RING_PROD__DEFAULT_NUM_DESCS;
cfg->comp_size = OPTS_GET(opts, comp_size, 0) ?: XSK_RING_CONS__DEFAULT_NUM_DESCS;
cfg->frame_size = OPTS_GET(opts, frame_size, 0) ?: XSK_UMEM__DEFAULT_FRAME_SIZE;
cfg->frame_headroom = OPTS_GET(opts, frame_headroom, 0) ?: XSK_UMEM__DEFAULT_FRAME_HEADROOM;
cfg->flags = OPTS_GET(opts, flags, 0) ?: XSK_UMEM__DEFAULT_FLAGS;
}
static int xsk_set_xdp_socket_config(struct xsk_socket_config *cfg,
const struct xsk_socket_config *usr_cfg)
{
if (!usr_cfg) {
cfg->rx_size = XSK_RING_CONS__DEFAULT_NUM_DESCS;
cfg->tx_size = XSK_RING_PROD__DEFAULT_NUM_DESCS;
cfg->libbpf_flags = 0;
cfg->xdp_flags = 0;
cfg->bind_flags = 0;
return 0;
}
if (usr_cfg->libbpf_flags & ~XSK_LIBBPF_FLAGS__INHIBIT_PROG_LOAD)
return -EINVAL;
cfg->rx_size = usr_cfg->rx_size;
cfg->tx_size = usr_cfg->tx_size;
cfg->libbpf_flags = usr_cfg->libbpf_flags;
cfg->xdp_flags = usr_cfg->xdp_flags;
cfg->bind_flags = usr_cfg->bind_flags;
return 0;
}
static void xsk_mmap_offsets_v1(struct xdp_mmap_offsets *off)
{
struct xdp_mmap_offsets_v1 off_v1;
/* getsockopt on a kernel <= 5.3 has no flags fields.
* Copy over the offsets to the correct places in the >=5.4 format
* and put the flags where they would have been on that kernel.
*/
memcpy(&off_v1, off, sizeof(off_v1));
off->rx.producer = off_v1.rx.producer;
off->rx.consumer = off_v1.rx.consumer;
off->rx.desc = off_v1.rx.desc;
off->rx.flags = off_v1.rx.consumer + sizeof(__u32);
off->tx.producer = off_v1.tx.producer;
off->tx.consumer = off_v1.tx.consumer;
off->tx.desc = off_v1.tx.desc;
off->tx.flags = off_v1.tx.consumer + sizeof(__u32);
off->fr.producer = off_v1.fr.producer;
off->fr.consumer = off_v1.fr.consumer;
off->fr.desc = off_v1.fr.desc;
off->fr.flags = off_v1.fr.consumer + sizeof(__u32);
off->cr.producer = off_v1.cr.producer;
off->cr.consumer = off_v1.cr.consumer;
off->cr.desc = off_v1.cr.desc;
off->cr.flags = off_v1.cr.consumer + sizeof(__u32);
}
static int xsk_get_mmap_offsets(int fd, struct xdp_mmap_offsets *off)
{
socklen_t optlen;
int err;
optlen = sizeof(*off);
err = getsockopt(fd, SOL_XDP, XDP_MMAP_OFFSETS, off, &optlen);
if (err)
return err;
if (optlen == sizeof(*off))
return 0;
if (optlen == sizeof(struct xdp_mmap_offsets_v1)) {
xsk_mmap_offsets_v1(off);
return 0;
}
return -EINVAL;
}
static int xsk_create_umem_rings(struct xsk_umem *umem, int fd,
struct xsk_ring_prod *fill,
struct xsk_ring_cons *comp)
{
struct xdp_mmap_offsets off;
void *map;
int err;
err = setsockopt(fd, SOL_XDP, XDP_UMEM_FILL_RING,
&umem->config.fill_size,
sizeof(umem->config.fill_size));
if (err)
return -errno;
err = setsockopt(fd, SOL_XDP, XDP_UMEM_COMPLETION_RING,
&umem->config.comp_size,
sizeof(umem->config.comp_size));
if (err)
return -errno;
err = xsk_get_mmap_offsets(fd, &off);
if (err)
return -errno;
map = mmap(NULL, off.fr.desc + umem->config.fill_size * sizeof(__u64),
PROT_READ | PROT_WRITE, MAP_SHARED | MAP_POPULATE, fd,
XDP_UMEM_PGOFF_FILL_RING);
if (map == MAP_FAILED)
return -errno;
fill->mask = umem->config.fill_size - 1;
fill->size = umem->config.fill_size;
fill->producer = map + off.fr.producer;
fill->consumer = map + off.fr.consumer;
fill->flags = map + off.fr.flags;
fill->ring = map + off.fr.desc;
fill->cached_cons = umem->config.fill_size;
map = mmap(NULL, off.cr.desc + umem->config.comp_size * sizeof(__u64),
PROT_READ | PROT_WRITE, MAP_SHARED | MAP_POPULATE, fd,
XDP_UMEM_PGOFF_COMPLETION_RING);
if (map == MAP_FAILED) {
err = -errno;
goto out_mmap;
}
comp->mask = umem->config.comp_size - 1;
comp->size = umem->config.comp_size;
comp->producer = map + off.cr.producer;
comp->consumer = map + off.cr.consumer;
comp->flags = map + off.cr.flags;
comp->ring = map + off.cr.desc;
return 0;
out_mmap:
munmap(map, off.fr.desc + umem->config.fill_size * sizeof(__u64));
return err;
}
struct xsk_umem *xsk_umem__create_opts(void *umem_area,
struct xsk_ring_prod *fill,
struct xsk_ring_cons *comp,
struct xsk_umem_opts *opts) {
struct xdp_umem_reg mr;
struct xsk_umem *umem;
size_t mr_size;
int err, fd;
__u64 size;
if (!umem_area || !fill || !comp) {
err = -EFAULT;
goto err;
}
if (!OPTS_VALID(opts, xsk_umem_opts)) {
err = -EINVAL;
goto err;
}
fd = OPTS_GET(opts, fd, 0);
size = OPTS_GET(opts, size, 0);
if (!size && !xsk_page_aligned(umem_area)) {
err = -EINVAL;
goto err;
}
umem = calloc(1, sizeof(*umem));
if (!umem) {
err = -ENOMEM;
goto err;
}
umem->fd = fd > 0 ? fd : socket(AF_XDP, SOCK_RAW, 0);
if (umem->fd < 0) {
err = -errno;
goto out_umem_alloc;
}
umem->umem_area = umem_area;
INIT_LIST_HEAD(&umem->ctx_list);
xsk_set_umem_config(&umem->config, opts);
memset(&mr, 0, sizeof(mr));
mr.addr = (uintptr_t)umem_area;
mr.len = size;
mr.chunk_size = umem->config.frame_size;
mr.headroom = umem->config.frame_headroom;
mr.flags = umem->config.flags;
mr.tx_metadata_len = OPTS_GET(opts, tx_metadata_len, XSK_UMEM__DEFAULT_TX_METADATA_LEN);
mr_size = sizeof(mr);
/* Older kernels don't support tx_metadata_len, skip if we are not setting a value */
if(!mr.tx_metadata_len)
mr_size = offsetof(struct xdp_umem_reg, tx_metadata_len);
err = setsockopt(umem->fd, SOL_XDP, XDP_UMEM_REG, &mr, mr_size);
if (err) {
err = -errno;
goto out_socket;
}
err = xsk_create_umem_rings(umem, umem->fd, fill, comp);
if (err)
goto out_socket;
umem->fill_save = fill;
umem->comp_save = comp;
return umem;
out_socket:
close(umem->fd);
out_umem_alloc:
free(umem);
err:
return libxdp_err_ptr(err, true);
}
int xsk_umem__create_with_fd(struct xsk_umem **umem_ptr, int fd,
void *umem_area, __u64 size,
struct xsk_ring_prod *fill,
struct xsk_ring_cons *comp,
const struct xsk_umem_config *usr_config)
{
struct xsk_umem *umem;
if(!umem_ptr)
return -EFAULT;
DECLARE_LIBXDP_OPTS(xsk_umem_opts, opts,
.fd = fd,
.size = size,
);
if (usr_config) {
opts.fill_size = usr_config->fill_size;
opts.comp_size = usr_config->comp_size;
opts.frame_size = usr_config->frame_size;
opts.frame_headroom = usr_config->frame_headroom;
opts.flags = usr_config->flags;
}
umem = xsk_umem__create_opts(umem_area, fill, comp, &opts);
if(!umem)
return errno;
*umem_ptr = umem;
return 0;
}
int xsk_umem__create(struct xsk_umem **umem_ptr, void *umem_area,
__u64 size, struct xsk_ring_prod *fill,
struct xsk_ring_cons *comp,
const struct xsk_umem_config *usr_config)
{
return xsk_umem__create_with_fd(umem_ptr, 0, umem_area, size,
fill, comp, usr_config);
}
static int xsk_init_xsk_struct(struct xsk_socket *xsk, int ifindex)
{
char ifname[IFNAMSIZ];
struct xsk_ctx *ctx;
char *interface;
ctx = calloc(1, sizeof(*ctx));
if (!ctx)
return -ENOMEM;
interface = if_indextoname(ifindex, &ifname[0]);
if (!interface) {
free(ctx);
return -errno;
}
ctx->ifindex = ifindex;
memcpy(ctx->ifname, ifname, IFNAMSIZ -1);
ctx->ifname[IFNAMSIZ - 1] = 0;
xsk->ctx = ctx;
return 0;
}
static enum xdp_attach_mode xsk_convert_xdp_flags(__u32 xdp_flags)
{
if (xdp_flags & ~XDP_FLAGS_MASK)
pr_warn("XDP flag: 0x%x contains flags not supported by libxdp.\n", xdp_flags);
if (xdp_flags & XDP_FLAGS_SKB_MODE)
return XDP_MODE_SKB;
if (xdp_flags & XDP_FLAGS_DRV_MODE)
return XDP_MODE_NATIVE;
if (xdp_flags & XDP_FLAGS_HW_MODE)
return XDP_MODE_HW;
return XDP_MODE_NATIVE;
}
#define MAX_DEV_QUEUE_PATH_LEN 64
static void xsk_get_queues_from_sysfs(const char* ifname, __u32 *rx, __u32 *tx) {
char buf[MAX_DEV_QUEUE_PATH_LEN];
struct dirent *entry;
DIR *dir;
int err;
*rx = *tx = 0;
err = try_snprintf(buf, MAX_DEV_QUEUE_PATH_LEN,
"/sys/class/net/%s/queues/", ifname);
if (err)
return;
dir = opendir(buf);
if(dir == NULL)
return;
while((entry = readdir(dir))) {
if (0 == strncmp(entry->d_name, "rx", 2))
++*rx;
if (0 == strncmp(entry->d_name, "tx", 2))
++*tx;
}
closedir(dir);
}
static int xsk_get_max_queues(char *ifname)
{
struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
struct ifreq ifr = {};
int fd, err, ret;
fd = socket(AF_LOCAL, SOCK_DGRAM, 0);
if (fd < 0)
return -errno;
ifr.ifr_data = (void *)&channels;
memcpy(ifr.ifr_name, ifname, IFNAMSIZ - 1);
ifr.ifr_name[IFNAMSIZ - 1] = '\0';
err = ioctl(fd, SIOCETHTOOL, &ifr);
if (err && errno != EOPNOTSUPP) {
ret = -errno;
goto out;
}
if (err) {
/* If the device says it has no channels,
* try to get rx tx from sysfs, otherwise all traffic
* is sent to a single stream, so max queues = 1.
*/
__u32 rx, tx;
xsk_get_queues_from_sysfs(ifr.ifr_name, &rx, &tx);
ret = max(max(rx, tx), 1);
} else {
/* Take the max of rx, tx, combined. Drivers return
* the number of channels in different ways.
*/
ret = max(channels.max_rx, channels.max_tx);
ret = max(ret, (int)channels.max_combined);
}
out:
close(fd);
return ret;
}
static int xsk_size_map(struct xdp_program *xdp_prog, char *ifname)
{
struct bpf_object *bpf_obj = xdp_program__bpf_obj(xdp_prog);
struct bpf_map *map;
int max_queues;
int err;
max_queues = xsk_get_max_queues(ifname);
if (max_queues < 0)
return max_queues;
map = bpf_object__find_map_by_name(bpf_obj, "xsks_map");
if (!map)
return -ENOENT;
err = bpf_map__set_max_entries(map, max_queues);
if (err)
return err;
return 0;
}
static void xsk_delete_map_entry(int xsks_map_fd, __u32 queue_id)
{
bpf_map_delete_elem(xsks_map_fd, &queue_id);
close(xsks_map_fd);
}
static int xsk_lookup_map_by_filter(int prog_fd,
bool (*map_info_filter)(struct bpf_map_info *map_info))
{
__u32 i, *map_ids, num_maps, prog_len = sizeof(struct bpf_prog_info);
__u32 map_len = sizeof(struct bpf_map_info);
struct bpf_prog_info prog_info = {};
int fd, err, xsks_map_fd = -ENOENT;
struct bpf_map_info map_info;
err = bpf_obj_get_info_by_fd(prog_fd, &prog_info, &prog_len);
if (err)
return err;
num_maps = prog_info.nr_map_ids;
map_ids = calloc(prog_info.nr_map_ids, sizeof(*map_ids));
if (!map_ids)
return -ENOMEM;
memset(&prog_info, 0, prog_len);
prog_info.nr_map_ids = num_maps;
prog_info.map_ids = (__u64)(unsigned long)map_ids;
err = bpf_obj_get_info_by_fd(prog_fd, &prog_info, &prog_len);
if (err) {
free(map_ids);
return err;
}
for (i = 0; i < prog_info.nr_map_ids; i++) {
fd = bpf_map_get_fd_by_id(map_ids[i]);
if (fd < 0)
continue;
memset(&map_info, 0, map_len);
err = bpf_obj_get_info_by_fd(fd, &map_info, &map_len);
if (err) {
close(fd);
continue;
}
if (map_info_filter(&map_info)) {
xsks_map_fd = fd;
break;
}
close(fd);
}
free(map_ids);
return xsks_map_fd;
}
static bool xsk_map_is_socket_map(struct bpf_map_info *map_info)
{
return !strncmp(map_info->name, "xsks_map", sizeof(map_info->name)) &&
map_info->key_size == 4 && map_info->value_size == 4;
}
static bool xsk_map_is_refcnt_map(struct bpf_map_info *map_info)
{
/* In order to avoid confusing users with multiple identically named
* maps, libbpf names non-custom internal maps (.data, .bss, etc.)
* in an unexpected way, namely the first 8 characters of a bpf object
* name + a suffix signifying the internal map type,
* ex. "xdp_def_" + ".data".
*/
return !strncmp(map_info->name, "xsk_def_.data",
sizeof(map_info->name)) &&
map_info->value_size >= sizeof(int);
}
static int xsk_lookup_bpf_map(int prog_fd)
{
return xsk_lookup_map_by_filter(prog_fd, &xsk_map_is_socket_map);
}
static int xsk_lookup_refcnt_map(int prog_fd, const char *xdp_filename)
{
int map_fd = xsk_lookup_map_by_filter(prog_fd, &xsk_map_is_refcnt_map);
if (map_fd >= 0)
goto out;
if (map_fd != -ENOENT) {
pr_debug("Error getting refcount map: %s\n", strerror(-map_fd));
goto out;
}
if (xdp_filename)
pr_warn("Refcount was not found in %s or kernel does not support required features, so automatic program removal on unload is disabled\n",
xdp_filename);
else
pr_warn("Another XSK socket was created by a version of libxdp that doesn't support program refcnt, so automatic program removal on unload is disabled.\n");
out:
return map_fd;
}
#ifdef HAVE_LIBBPF_BPF_MAP_CREATE
/* bpf_map_create() and the new bpf_prog_create() were added at the same time -
* however there's a naming conflict with another bpf_prog_load() function in
* older versions of libbpf; to avoid hitting that we create our own wrapper
* function for this one even with new libbpf versions.
*/
static int xsk_check_create_prog(struct bpf_insn *insns, size_t insns_cnt)
{
return bpf_prog_load(BPF_PROG_TYPE_XDP, "testprog",
"GPL", insns, insns_cnt, NULL);
}
#else
static int bpf_map_create(enum bpf_map_type map_type,
__unused const char *map_name,
__u32 key_size,
__u32 value_size,
__u32 max_entries,
__unused void *opts)
{
struct bpf_create_map_attr map_attr;
memset(&map_attr, 0, sizeof(map_attr));
map_attr.map_type = map_type;
map_attr.key_size = key_size;
map_attr.value_size = value_size;
map_attr.max_entries = max_entries;
return bpf_create_map_xattr(&map_attr);
}
static int xsk_check_create_prog(struct bpf_insn *insns, size_t insns_cnt)
{
struct bpf_load_program_attr prog_attr;
memset(&prog_attr, 0, sizeof(prog_attr));
prog_attr.prog_type = BPF_PROG_TYPE_XDP;
prog_attr.insns = insns;
prog_attr.insns_cnt = insns_cnt;
prog_attr.license = "GPL";
return bpf_load_program_xattr(&prog_attr, NULL, 0);
}
#endif
static bool xsk_check_redirect_flags(void)
{
char data_in = 0, data_out;
DECLARE_LIBBPF_OPTS(bpf_test_run_opts, opts,
.data_in = &data_in,
.data_out = &data_out,
.data_size_in = 1);
struct bpf_insn insns[] = {
BPF_LD_MAP_FD(BPF_REG_1, 0),
BPF_MOV64_IMM(BPF_REG_2, 0),
BPF_MOV64_IMM(BPF_REG_3, XDP_PASS),
BPF_EMIT_CALL(BPF_FUNC_redirect_map),
BPF_EXIT_INSN(),
};
int prog_fd, map_fd, ret;
bool detected = false;
map_fd = bpf_map_create(BPF_MAP_TYPE_XSKMAP, "xskmap",
sizeof(int), sizeof(int), 1, NULL);
if (map_fd < 0)
return detected;
insns[0].imm = map_fd;
prog_fd = xsk_check_create_prog(insns, ARRAY_SIZE(insns));
if (prog_fd < 0) {
close(map_fd);
return detected;
}
ret = bpf_prog_test_run_opts(prog_fd, &opts);
if (!ret && opts.retval == XDP_PASS)
detected = true;
close(prog_fd);
close(map_fd);
return detected;
}
static struct xdp_program *xsk_lookup_program(int ifindex)
{
const char *version_name = "xsk_prog_version";
const char *prog_name = "xsk_def_prog";
struct xdp_multiprog *multi_prog;
struct xdp_program *prog = NULL;
__u32 version;
int err;
multi_prog = xdp_multiprog__get_from_ifindex(ifindex);
if (IS_ERR(multi_prog))
return NULL;
if (xdp_multiprog__is_legacy(multi_prog)) {
prog = xdp_multiprog__main_prog(multi_prog);
prog = strcmp(xdp_program__name(prog), prog_name) ? NULL : prog;
goto check;
}
while ((prog = xdp_multiprog__next_prog(prog, multi_prog)))
if (!strcmp(xdp_program__name(prog), prog_name))
break;
check:
if (!prog)
goto out;
err = check_xdp_prog_version(xdp_program__btf(prog), version_name, &version);
if (err) {
prog = ERR_PTR(err);
goto out;
}
if (version > XSK_PROG_VERSION) {
pr_warn("XSK default program version %d higher than supported %d\n", version,
XSK_PROG_VERSION);
prog = ERR_PTR(-EOPNOTSUPP);
}
out:
if (!IS_ERR_OR_NULL(prog))
prog = xdp_program__clone(prog, 0);
xdp_multiprog__close(multi_prog);
return prog;
}
static int xsk_update_prog_refcnt(int refcnt_map_fd, int delta)
{
struct bpf_map_info map_info = {};
__u32 info_len = sizeof(map_info);
int *value_data = NULL;
int lock_fd, ret;
__u32 key = 0;
ret = bpf_obj_get_info_by_fd(refcnt_map_fd, &map_info, &info_len);
if (ret)
return ret;
value_data = calloc(1, map_info.value_size);
if (!value_data)
return -ENOMEM;
lock_fd = xdp_lock_acquire();
if (lock_fd < 0) {
ret = lock_fd;
goto out;
}
/* Note, if other global variables are added before the refcnt,
* this changes map's value type, not number of elements,
* so additional offset must be applied to value_data,
* when reading refcount, but map key always stays zero
*/
ret = bpf_map_lookup_elem(refcnt_map_fd, &key, value_data);
if (ret)
goto unlock;
/* If refcount is 0, program is awaiting detach and can't be used */
if (*value_data) {
*value_data += delta;
ret = bpf_map_update_elem(refcnt_map_fd, &key, value_data, 0);
if (ret)
goto unlock;
}
ret = *value_data;
unlock:
xdp_lock_release(lock_fd);
out:
free(value_data);
return ret;
}
static int xsk_incr_prog_refcnt(int refcnt_map_fd)
{
return xsk_update_prog_refcnt(refcnt_map_fd, 1);
}
static int xsk_decr_prog_refcnt(int refcnt_map_fd)
{
return xsk_update_prog_refcnt(refcnt_map_fd, -1);
}
static int __xsk_setup_xdp_prog(struct xsk_socket *xsk, int *xsks_map_fd)
{
const char *fallback_prog = "xsk_def_xdp_prog_5.3.o";
const char *default_prog = "xsk_def_xdp_prog.o";
struct xsk_ctx *ctx = xsk->ctx;
const char *file_name = NULL;
bool attached = false;
int err;
ctx->xdp_prog = xsk_lookup_program(ctx->ifindex);
if (IS_ERR(ctx->xdp_prog))
return PTR_ERR(ctx->xdp_prog);
ctx->refcnt_map_fd = -ENOENT;
if (ctx->xdp_prog) {
int refcnt;
ctx->refcnt_map_fd = xsk_lookup_refcnt_map(xdp_program__fd(ctx->xdp_prog), NULL);
if (ctx->refcnt_map_fd == -ENOENT)
goto map_lookup;
if (ctx->refcnt_map_fd < 0) {
err = ctx->refcnt_map_fd;
goto err_prog_load;
}
refcnt = xsk_incr_prog_refcnt(ctx->refcnt_map_fd);
if (refcnt < 0) {
err = refcnt;
pr_debug("Error occurred when incrementing xsk XDP prog refcount: %s\n",
strerror(-err));
goto err_prog_load;
}
if (!refcnt) {
pr_warn("Current program is being detached, falling back on creating a new program\n");
close(ctx->refcnt_map_fd);
ctx->refcnt_map_fd = -ENOENT;
xdp_program__close(ctx->xdp_prog);
ctx->xdp_prog = NULL;
}
}
if (!ctx->xdp_prog) {
file_name = xsk_check_redirect_flags() ? default_prog : fallback_prog;
ctx->xdp_prog = xdp_program__find_file(file_name, NULL, NULL);
if (IS_ERR(ctx->xdp_prog))
return PTR_ERR(ctx->xdp_prog);
err = xsk_size_map(ctx->xdp_prog, ctx->ifname);
if (err)
goto err_prog_load;
err = xdp_program__attach(ctx->xdp_prog, ctx->ifindex,
xsk_convert_xdp_flags(xsk->config.xdp_flags), 0);
if (err)
goto err_prog_load;
attached = true;
}
if (ctx->refcnt_map_fd < 0) {
ctx->refcnt_map_fd = xsk_lookup_refcnt_map(xdp_program__fd(ctx->xdp_prog),
file_name);
if (ctx->refcnt_map_fd < 0 && ctx->refcnt_map_fd != -ENOENT) {
err = ctx->refcnt_map_fd;
goto err_prog_load;
}
}
map_lookup:
ctx->xsks_map_fd = xsk_lookup_bpf_map(xdp_program__fd(ctx->xdp_prog));
if (ctx->xsks_map_fd < 0) {
err = ctx->xsks_map_fd;
goto err_lookup;
}
if (xsk->rx) {
err = bpf_map_update_elem(ctx->xsks_map_fd, &ctx->queue_id, &xsk->fd, 0);
if (err)
goto err_lookup;
}
if (xsks_map_fd)
*xsks_map_fd = ctx->xsks_map_fd;
return 0;
err_lookup:
if (attached)
xdp_program__detach(ctx->xdp_prog, ctx->ifindex,
xsk_convert_xdp_flags(xsk->config.xdp_flags), 0);
err_prog_load:
if (ctx->refcnt_map_fd >= 0)
close(ctx->refcnt_map_fd);
ctx->refcnt_map_fd = -ENOENT;
xdp_program__close(ctx->xdp_prog);
ctx->xdp_prog = NULL;
return err;
}
static struct xsk_ctx *xsk_get_ctx(struct xsk_umem *umem, __u64 netns_cookie, int ifindex, __u32 queue_id)
{
struct xsk_ctx *ctx;
if (list_empty(&umem->ctx_list))
return NULL;
list_for_each_entry(ctx, &umem->ctx_list, list) {
if (ctx->netns_cookie == netns_cookie && ctx->ifindex == ifindex && ctx->queue_id == queue_id) {
ctx->refcount++;
return ctx;
}
}
return NULL;
}
static void xsk_put_ctx(struct xsk_ctx *ctx, bool unmap)
{
struct xsk_umem *umem = ctx->umem;
struct xdp_mmap_offsets off;
int err;
if (--ctx->refcount)
return;
if (!unmap)
goto out_free;
err = xsk_get_mmap_offsets(umem->fd, &off);
if (err)
goto out_free;
munmap(ctx->fill->ring - off.fr.desc, off.fr.desc + umem->config.fill_size *
sizeof(__u64));
munmap(ctx->comp->ring - off.cr.desc, off.cr.desc + umem->config.comp_size *
sizeof(__u64));
out_free:
list_del(&ctx->list);
free(ctx);
}
static struct xsk_ctx *xsk_create_ctx(struct xsk_socket *xsk,
struct xsk_umem *umem, __u64 netns_cookie, int ifindex,
const char *ifname, __u32 queue_id,
struct xsk_ring_prod *fill,
struct xsk_ring_cons *comp)
{
struct xsk_ctx *ctx;
int err;
ctx = calloc(1, sizeof(*ctx));
if (!ctx)
return NULL;
if (!umem->fill_save) {
err = xsk_create_umem_rings(umem, xsk->fd, fill, comp);
if (err) {
free(ctx);
return NULL;
}
} else if (umem->fill_save != fill || umem->comp_save != comp) {
/* Copy over rings to new structs. */
memcpy(fill, umem->fill_save, sizeof(*fill));