-
Notifications
You must be signed in to change notification settings - Fork 144
/
util.c
854 lines (719 loc) · 18.7 KB
/
util.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
/* SPDX-License-Identifier: GPL-2.0 */
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <signal.h>
#include <sys/file.h>
#include <sys/types.h>
#include <sys/resource.h>
#include <sys/vfs.h>
#include <sys/stat.h>
#include <linux/if_link.h> /* Need XDP flags */
#include <linux/magic.h> /* BPF FS magic */
#include <linux/err.h> /* ERR_PTR */
#include <bpf/bpf.h>
#include <dirent.h>
#include <net/if.h>
#include "util.h"
#include "logging.h"
static struct enum_val xdp_modes[] = {
{"native", XDP_MODE_NATIVE},
{"skb", XDP_MODE_SKB},
{"hw", XDP_MODE_HW},
{"unspecified", XDP_MODE_UNSPEC},
{NULL, 0}
};
int try_snprintf(char *buf, size_t buf_len, const char *format, ...)
{
va_list args;
int len;
va_start(args, format);
len = vsnprintf(buf, buf_len, format, args);
va_end(args);
if (len < 0)
return -EINVAL;
else if ((size_t)len >= buf_len)
return -ENAMETOOLONG;
return 0;
}
static int set_rlimit(unsigned int min_limit)
{
struct rlimit limit;
int err = 0;
err = getrlimit(RLIMIT_MEMLOCK, &limit);
if (err) {
err = -errno;
pr_warn("Couldn't get current rlimit\n");
return err;
}
if (limit.rlim_cur == RLIM_INFINITY || limit.rlim_cur == 0) {
pr_debug("Current rlimit is infinity or 0. Not raising\n");
return -ENOMEM;
}
if (min_limit) {
if (limit.rlim_cur >= min_limit) {
pr_debug("Current rlimit %ju already >= minimum %u\n",
(uintmax_t)limit.rlim_cur, min_limit);
return 0;
}
pr_debug("Setting rlimit to minimum %u\n", min_limit);
limit.rlim_cur = min_limit;
} else {
pr_debug("Doubling current rlimit of %ju\n", (uintmax_t)limit.rlim_cur);
limit.rlim_cur <<= 1;
}
limit.rlim_max = max(limit.rlim_cur, limit.rlim_max);
err = setrlimit(RLIMIT_MEMLOCK, &limit);
if (err) {
err = -errno;
pr_warn("Couldn't raise rlimit: %s\n", strerror(-err));
return err;
}
return 0;
}
int double_rlimit(void)
{
pr_debug("Permission denied when loading eBPF object; "
"raising rlimit and retrying\n");
return set_rlimit(0);
}
static const char *_libbpf_compile_version = LIBBPF_VERSION;
static char _libbpf_version[10] = {};
const char *get_libbpf_version(void)
{
/* Start by copying compile-time version into buffer so we have a
* fallback value in case we are dynamically linked, or can't find a
* version in /proc/self/maps below.
*/
strncpy(_libbpf_version, _libbpf_compile_version,
sizeof(_libbpf_version)-1);
#ifdef LIBBPF_DYNAMIC
char path[PATH_MAX], buf[PATH_MAX], *s;
bool found = false;
FILE *fp;
/* When dynamically linking against libbpf, we can't be sure that the
* version we discovered at compile time is actually the one we are
* using at runtime. This can lead to hard-to-debug errors, so we try to
* discover the correct version at runtime.
*
* The simple solution to this would be if libbpf itself exported a
* version in its API. But since it doesn't, we work around this by
* parsing the mappings of the binary at runtime, looking for the full
* filename of libbpf.so and using that.
*/
fp = fopen("/proc/self/maps", "r");
if (fp == NULL)
goto out;
while ((s = fgets(buf, sizeof(buf), fp)) != NULL) {
/* We are looking for a line like:
* 7f63c2105000-7f63c2106000 rw-p 00032000 fe:02 4200947 /usr/lib/libbpf.so.0.1.0
*/
if (sscanf(s, "%*x-%*x %*4c %*x %*5c %*d %s\n", path) == 1 &&
(s = strstr(path, "libbpf.so.")) != NULL) {
strncpy(_libbpf_version, s+10, sizeof(_libbpf_version)-1);
found = true;
break;
}
}
fclose(fp);
out:
if (!found)
pr_warn("Couldn't find runtime libbpf version - falling back to compile-time value!\n");
#endif
_libbpf_version[sizeof(_libbpf_version)-1] = '\0';
return _libbpf_version;
}
int find_bpf_file(char *buf, size_t buf_size, const char *progname)
{
static char *bpf_obj_paths[] = {
#ifdef DEBUG
".",
#endif
BPF_OBJECT_PATH,
NULL
};
struct stat sb = {};
char **path;
int err;
for (path = bpf_obj_paths; *path; path++) {
err = try_snprintf(buf, buf_size, "%s/%s", *path, progname);
if (err)
return err;
pr_debug("Looking for '%s'\n", buf);
err = stat(buf, &sb);
if (err)
continue;
return 0;
}
pr_warn("Couldn't find a BPF file with name %s\n", progname);
return -ENOENT;
}
struct bpf_object *open_bpf_file(const char *progname,
struct bpf_object_open_opts *opts)
{
char buf[PATH_MAX];
int err;
err = find_bpf_file(buf, sizeof(buf), progname);
if (err)
return ERR_PTR(err);
pr_debug("Loading bpf file '%s' from '%s'\n", progname, buf);
return bpf_object__open_file(buf, opts);
}
static int get_pinned_object_fd(const char *path, void *info, __u32 *info_len)
{
char errmsg[STRERR_BUFSIZE];
int pin_fd, err;
pin_fd = bpf_obj_get(path);
if (pin_fd < 0) {
err = -errno;
libbpf_strerror(-err, errmsg, sizeof(errmsg));
pr_debug("Couldn't retrieve pinned object '%s': %s\n", path, errmsg);
return err;
}
if (info) {
err = bpf_obj_get_info_by_fd(pin_fd, info, info_len);
if (err) {
err = -errno;
libbpf_strerror(-err, errmsg, sizeof(errmsg));
pr_debug("Couldn't retrieve object info: %s\n", errmsg);
return err;
}
}
return pin_fd;
}
int make_dir_subdir(const char *parent, const char *dir)
{
char path[PATH_MAX];
int err;
err = try_snprintf(path, sizeof(path), "%s/%s", parent, dir);
if (err)
return err;
err = mkdir(parent, S_IRWXU);
if (err && errno != EEXIST) {
err = -errno;
return err;
}
err = mkdir(path, S_IRWXU);
if (err && errno != EEXIST) {
err = -errno;
return err;
}
return 0;
}
int attach_xdp_program(struct xdp_program *prog, const struct iface *iface,
enum xdp_attach_mode mode, const char *pin_root_path)
{
char pin_path[PATH_MAX];
int err = 0;
if (!prog || !pin_root_path)
return -EINVAL;
err = make_dir_subdir(pin_root_path, "programs");
if (err) {
pr_warn("Unable to create pin directory: %s\n", strerror(-err));
return err;
}
err = try_snprintf(pin_path, sizeof(pin_path), "%s/programs/%s/%s",
pin_root_path, iface->ifname,
xdp_program__name(prog));
if (err)
return err;
err = xdp_program__attach(prog, iface->ifindex, mode, 0);
if (err) {
if (pin_root_path && err != -EEXIST)
unlink(pin_path);
return err;
}
pr_debug("Program '%s' loaded on interface '%s'%s\n",
xdp_program__name(prog), iface->ifname,
mode == XDP_MODE_SKB ? " in skb mode" : "");
err = xdp_program__pin(prog, pin_path);
if (err) {
pr_warn("Unable to pin XDP program at %s: %s\n",
pin_path, strerror(-err));
goto unload;
}
pr_debug("XDP program pinned at %s\n", pin_path);
return err;
unload:
xdp_program__detach(prog, iface->ifindex, mode, 0);
return err;
}
int detach_xdp_program(struct xdp_program *prog, const struct iface *iface,
enum xdp_attach_mode mode, const char *pin_root_path)
{
char pin_path[PATH_MAX];
int err;
err = xdp_program__detach(prog, iface->ifindex, mode, 0);
if (err)
goto out;
err = try_snprintf(pin_path, sizeof(pin_path), "%s/programs/%s/%s",
pin_root_path, iface->ifname,
xdp_program__name(prog));
if (err)
return err;
err = unlink(pin_path);
if (err && errno != ENOENT)
goto out;
err = try_snprintf(pin_path, sizeof(pin_path), "%s/programs/%s",
pin_root_path, iface->ifname);
if (err)
goto out;
err = rmdir(pin_path);
if (err && errno == ENOENT)
err = 0;
else if (err)
err = -errno;
out:
return err;
}
int get_pinned_program(const struct iface *iface, const char *pin_root_path,
enum xdp_attach_mode *mode,
struct xdp_program **xdp_prog)
{
int ret = -ENOENT, err, ifindex = iface->ifindex;
char pin_path[PATH_MAX];
bool remove_all = false;
enum xdp_attach_mode m;
struct dirent *de;
DIR *dr;
err = try_snprintf(pin_path, sizeof(pin_path), "%s/programs/%s",
pin_root_path, iface->ifname);
if (err)
return err;
dr = opendir(pin_path);
if (!dr) {
err = -errno;
pr_debug("Couldn't open pin directory %s: %s\n",
pin_path, strerror(-err));
return err;
}
if (!ifindex)
ifindex = if_nametoindex(iface->ifname);
if (!ifindex) {
pr_debug("Interface %s no longer exists\n", iface->ifname);
remove_all = true;
ret = -ENODEV;
}
while ((de = readdir(dr)) != NULL) {
DECLARE_LIBXDP_OPTS(xdp_program_opts, opts, 0);
struct xdp_program *prog;
if (!strcmp(".", de->d_name) || !strcmp("..", de->d_name))
continue;
err = try_snprintf(pin_path, sizeof(pin_path),
"%s/programs/%s/%s", pin_root_path,
iface->ifname, de->d_name);
if (err)
goto out;
if (remove_all) {
err = unlink(pin_path);
if (err)
ret = err;
continue;
}
opts.pin_path = pin_path;
prog = xdp_program__create(&opts);
if (libxdp_get_error(prog) ||
!(m = xdp_program__is_attached(prog, iface->ifindex))) {
ret = libxdp_get_error(prog) ?: -ENOENT;
pr_debug("Program %s no longer loaded on %s: %s\n",
de->d_name, iface->ifname, strerror(-ret));
err = unlink(pin_path);
if (err)
ret = err;
if (prog)
xdp_program__close(prog);
} else {
if (strcmp(xdp_program__name(prog), de->d_name)) {
pr_warn("Pinned and kernel prog names differ: %s/%s\n",
xdp_program__name(prog), de->d_name);
ret = -EFAULT;
xdp_program__close(prog);
} else {
ret = 0;
*xdp_prog = prog;
if (mode)
*mode = m;
}
break;
}
}
out:
closedir(dr);
return ret;
}
int iterate_pinned_programs(const char *pin_root_path, program_callback cb,
void *arg)
{
char pin_path[PATH_MAX];
struct dirent *de;
int err = 0;
DIR *dr;
err = try_snprintf(pin_path, sizeof(pin_path), "%s/programs",
pin_root_path);
if (err)
return err;
dr = opendir(pin_path);
if (!dr)
return -ENOENT;
while ((de = readdir(dr)) != NULL) {
enum xdp_attach_mode mode = XDP_MODE_UNSPEC;
struct xdp_program *prog = NULL;
struct iface iface = {};
if (!strcmp(".", de->d_name) || !strcmp("..", de->d_name))
continue;
iface.ifname = de->d_name;
iface.ifindex = if_nametoindex(iface.ifname);
err = try_snprintf(pin_path, sizeof(pin_path), "%s/programs/%s",
pin_root_path, iface.ifname);
if (err)
goto out;
err = get_pinned_program(&iface, pin_root_path, &mode, &prog);
if (err == -ENOENT || err == -ENODEV) {
err = rmdir(pin_path);
if (err)
goto out;
continue;
} else if (err) {
goto out;
}
err = cb(&iface, prog, mode, arg);
xdp_program__close(prog);
if (err)
goto out;
}
out:
closedir(dr);
return err;
}
int iterate_iface_multiprogs(multiprog_callback cb, void *arg)
{
struct if_nameindex *idx, *indexes = NULL;
int err = 0;
indexes = if_nameindex();
if (!indexes) {
err = -errno;
pr_warn("Couldn't get list of interfaces: %s\n", strerror(-err));
return err;
}
for (idx = indexes; idx->if_index; idx++) {
struct xdp_multiprog *mp;
struct iface iface = {
.ifindex = idx->if_index,
.ifname = idx->if_name,
};
mp = xdp_multiprog__get_from_ifindex(iface.ifindex);
if (IS_ERR_OR_NULL(mp)) {
if (PTR_ERR(mp) != -ENOENT) {
err = PTR_ERR(mp);
pr_warn("Error getting XDP status for interface %s: %s\n",
idx->if_name, strerror(-err));
goto out;
}
mp = NULL;
}
err = cb(&iface, mp, arg);
xdp_multiprog__close(mp);
if (err)
goto out;
}
out:
if_freenameindex(indexes);
return err;
}
static bool bpf_is_valid_mntpt(const char *mnt, unsigned long magic)
{
struct statfs st_fs;
if (statfs(mnt, &st_fs) < 0)
return false;
if ((unsigned long)st_fs.f_type != magic)
return false;
return true;
}
static const char *bpf_find_mntpt_single(unsigned long magic, char *mnt,
int len, const char *mntpt)
{
if (bpf_is_valid_mntpt(mntpt, magic)) {
strncpy(mnt, mntpt, len - 1);
mnt[len - 1] = '\0';
return mnt;
}
return NULL;
}
static const char *bpf_find_mntpt(const char *fstype, unsigned long magic,
char *mnt, int len,
const char * const *known_mnts)
{
const char * const *ptr;
char type[100];
FILE *fp;
if (known_mnts) {
ptr = known_mnts;
while (*ptr) {
if (bpf_find_mntpt_single(magic, mnt, len, *ptr))
return mnt;
ptr++;
}
}
if (len != PATH_MAX)
return NULL;
fp = fopen("/proc/mounts", "r");
if (fp == NULL)
return NULL;
while (fscanf(fp, "%*s %" textify(PATH_MAX) "s %99s %*s %*d %*d\n", mnt,
type) == 2) {
if (strcmp(type, fstype) == 0)
break;
}
fclose(fp);
if (strcmp(type, fstype) != 0)
return NULL;
return mnt;
}
static int bpf_mnt_check_target(const char *target)
{
int ret;
ret = mkdir(target, S_IRWXU);
if (ret && errno != EEXIST) {
ret = -errno;
pr_warn("mkdir %s failed: %s\n", target, strerror(-ret));
return ret;
}
return 0;
}
/* simplified version of code from iproute2 */
static const char *bpf_get_work_dir()
{
static char bpf_tmp[PATH_MAX] = BPF_DIR_MNT;
static char bpf_wrk_dir[PATH_MAX];
static const char *mnt;
static bool bpf_mnt_cached;
static const char *const bpf_known_mnts[] = {
BPF_DIR_MNT,
"/bpf",
0,
};
int ret;
if (bpf_mnt_cached)
return mnt;
mnt = bpf_find_mntpt("bpf", BPF_FS_MAGIC, bpf_tmp, sizeof(bpf_tmp),
bpf_known_mnts);
if (!mnt) {
mnt = BPF_DIR_MNT;
ret = bpf_mnt_check_target(mnt);
if (ret || !bpf_is_valid_mntpt(mnt, BPF_FS_MAGIC)) {
mnt = NULL;
goto out;
}
}
strncpy(bpf_wrk_dir, mnt, sizeof(bpf_wrk_dir));
bpf_wrk_dir[sizeof(bpf_wrk_dir) - 1] = '\0';
mnt = bpf_wrk_dir;
out:
bpf_mnt_cached = true;
return mnt;
}
int get_bpf_root_dir(char *buf, size_t buf_len, const char *subdir, bool fatal)
{
const char *bpf_dir;
bpf_dir = bpf_get_work_dir();
if (!bpf_dir) {
logging_print(fatal ? LOG_WARN : LOG_DEBUG,
"Could not find BPF working dir - bpffs not mounted?\n");
return -ENOENT;
}
if (subdir)
return try_snprintf(buf, buf_len, "%s/%s", bpf_dir, subdir);
else
return try_snprintf(buf, buf_len, "%s", bpf_dir);
}
int get_pinned_map_fd(const char *bpf_root, const char *map_name,
struct bpf_map_info *info)
{
__u32 info_len = sizeof(*info);
char buf[PATH_MAX];
int err;
err = try_snprintf(buf, sizeof(buf), "%s/%s", bpf_root, map_name);
if (err)
return err;
pr_debug("Getting pinned object from %s\n", buf);
return get_pinned_object_fd(buf, info, &info_len);
}
int unlink_pinned_map(int dir_fd, const char *map_name)
{
struct stat statbuf = {};
int err;
err = fstatat(dir_fd, map_name, &statbuf, 0);
if (err && errno == ENOENT) {
pr_debug("Map name %s not pinned\n", map_name);
return 0;
} else if (err) {
err = -errno;
pr_warn("Couldn't stat pinned map %s: %s\n",
map_name, strerror(-err));
return err;
}
pr_debug("Unlinking pinned map %s\n", map_name);
err = unlinkat(dir_fd, map_name, 0);
if (err) {
err = -errno;
pr_warn("Couldn't unlink pinned map %s: %s\n",
map_name, strerror(-err));
return -errno;
}
return 0;
}
#define XDP_UNKNOWN (XDP_REDIRECT + 1)
#ifndef XDP_ACTION_MAX
#define XDP_ACTION_MAX (XDP_UNKNOWN + 1)
#endif
static const char *xdp_action_names[XDP_ACTION_MAX] = {
[XDP_ABORTED] = "XDP_ABORTED",
[XDP_DROP] = "XDP_DROP",
[XDP_PASS] = "XDP_PASS",
[XDP_TX] = "XDP_TX",
[XDP_REDIRECT] = "XDP_REDIRECT",
[XDP_UNKNOWN] = "XDP_UNKNOWN",
};
const char *action2str(__u32 action)
{
if (action < XDP_ACTION_MAX)
return xdp_action_names[action];
return NULL;
}
int check_bpf_environ(void)
{
init_lib_logging();
if (geteuid() != 0) {
pr_warn("This program must be run as root.\n");
return 1;
}
/* Try to avoid probing errors due to rlimit exhaustion by starting out
* with an rlimit of 1 MiB. This is not going to solve all issues, but
* it will at least make things work when there is nothing else loaded.
*
* Ignore return code because an error shouldn't abort running.
*/
set_rlimit(1024 * 1024);
return 0;
}
int prog_lock_acquire(const char *dir)
{
int lock_fd, err = 0;
retry:
lock_fd = open(dir, O_DIRECTORY);
if (lock_fd < 0) {
if (errno == ENOENT && !mkdir(dir, S_IRWXU))
goto retry;
err = -errno;
pr_warn("Couldn't open lock directory at %s: %s\n",
dir, strerror(-err));
return err;
}
err = flock(lock_fd, LOCK_EX);
if (err) {
err = -errno;
pr_warn("Couldn't flock fd %d: %s\n", lock_fd, strerror(-err));
close(lock_fd);
return err;
}
pr_debug("Acquired lock from %s with fd %d\n", dir, lock_fd);
return lock_fd;
}
int prog_lock_release(int lock_fd)
{
int err;
err = flock(lock_fd, LOCK_UN);
if (err) {
err = -errno;
pr_warn("Couldn't unlock fd %d: %s\n", lock_fd, strerror(-err));
} else {
pr_debug("Released lock fd %d\n", lock_fd);
}
close(lock_fd);
return err;
}
static char *print_bpf_tag(char buf[BPF_TAG_SIZE * 2 + 1],
const unsigned char tag[BPF_TAG_SIZE])
{
int i;
for (i = 0; i < BPF_TAG_SIZE; i++)
sprintf(&buf[i * 2], "%02x", tag[i]);
buf[BPF_TAG_SIZE * 2] = '\0';
return buf;
}
static int print_iface_status(const struct iface *iface,
const struct xdp_multiprog *mp,
__unused void *arg)
{
struct xdp_program *prog, *dispatcher, *hw_prog;
char tag[BPF_TAG_SIZE * 2 + 1];
char buf[STRERR_BUFSIZE];
int err;
if (!mp) {
printf("%-22s <No XDP program loaded!>\n", iface->ifname);
return 0;
}
hw_prog = xdp_multiprog__hw_prog(mp);
if (hw_prog) {
printf("%-16s %-5s %-17s %-8s %-4d %-17s\n",
iface->ifname,
"",
xdp_program__name(hw_prog),
get_enum_name(xdp_modes, XDP_MODE_HW),
xdp_program__id(hw_prog),
print_bpf_tag(tag, xdp_program__tag(hw_prog)));
}
dispatcher = xdp_multiprog__main_prog(mp);
if (dispatcher) {
printf("%-16s %-5s %-17s %-8s %-4d %-17s\n",
iface->ifname,
"",
xdp_program__name(dispatcher),
get_enum_name(xdp_modes, xdp_multiprog__attach_mode(mp)),
xdp_program__id(dispatcher),
print_bpf_tag(tag, xdp_program__tag(dispatcher)));
for (prog = xdp_multiprog__next_prog(NULL, mp);
prog;
prog = xdp_multiprog__next_prog(prog, mp)) {
err = xdp_program__print_chain_call_actions(prog, buf,
sizeof(buf));
if (err)
return err;
printf("%-16s %-5d %-16s %-8s %-4u %-17s %s\n",
" =>", xdp_program__run_prio(prog),
xdp_program__name(prog),
"", xdp_program__id(prog),
print_bpf_tag(tag, xdp_program__tag(prog)),
buf);
}
}
return 0;
}
int iface_print_status(const struct iface *iface)
{
int err = 0;
printf("%-16s %-5s %-17s Mode ID %-17s %s\n",
"Interface", "Prio", "Program name", "Tag", "Chain actions");
printf("--------------------------------------------------------------------------------------\n");
if (iface) {
struct xdp_multiprog *mp;
mp = xdp_multiprog__get_from_ifindex(iface->ifindex);
if (IS_ERR_OR_NULL(mp)) {
if (PTR_ERR(mp) != -ENOENT) {
err = PTR_ERR(mp);
pr_warn("Error getting XDP status for interface %s: %s\n",
iface->ifname, strerror(-err));
goto out;
}
mp = NULL;
}
print_iface_status(iface, mp, NULL);
} else {
err = iterate_iface_multiprogs(print_iface_status, NULL);
}
printf("\n");
out:
return err;
}