1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2017-18 David Ahern <dsahern@gmail.com>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of version 2 of the GNU General Public
6 * License as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
14 #include <linux/bpf.h>
15 #include <linux/if_link.h>
16 #include <linux/limits.h>
27 #include <bpf/libbpf.h>
30 static __u32 xdp_flags
= XDP_FLAGS_UPDATE_IF_NOEXIST
;
32 static int do_attach(int idx
, int prog_fd
, int map_fd
, const char *name
)
36 err
= bpf_set_link_xdp_fd(idx
, prog_fd
, xdp_flags
);
38 printf("ERROR: failed to attach program to %s\n", name
);
42 /* Adding ifindex as a possible egress TX port */
43 err
= bpf_map_update_elem(map_fd
, &idx
, &idx
, 0);
45 printf("ERROR: failed using device %s as TX-port\n", name
);
50 static int do_detach(int idx
, const char *name
)
54 err
= bpf_set_link_xdp_fd(idx
, -1, xdp_flags
);
56 printf("ERROR: failed to detach program from %s\n", name
);
58 /* TODO: Remember to cleanup map, when adding use of shared map
59 * bpf_map_delete_elem((map_fd, &idx);
64 static void usage(const char *prog
)
67 "usage: %s [OPTS] interface-list\n"
69 " -d detach program\n"
70 " -D direct table lookups (skip fib rules)\n",
74 int main(int argc
, char **argv
)
76 struct bpf_prog_load_attr prog_load_attr
= {
77 .prog_type
= BPF_PROG_TYPE_XDP
,
79 const char *prog_name
= "xdp_fwd";
80 struct bpf_program
*prog
;
81 int prog_fd
, map_fd
= -1;
82 char filename
[PATH_MAX
];
83 struct bpf_object
*obj
;
88 while ((opt
= getopt(argc
, argv
, ":dDSF")) != -1) {
94 xdp_flags
|= XDP_FLAGS_SKB_MODE
;
97 xdp_flags
&= ~XDP_FLAGS_UPDATE_IF_NOEXIST
;
100 prog_name
= "xdp_fwd_direct";
103 usage(basename(argv
[0]));
108 if (!(xdp_flags
& XDP_FLAGS_SKB_MODE
))
109 xdp_flags
|= XDP_FLAGS_DRV_MODE
;
111 if (optind
== argc
) {
112 usage(basename(argv
[0]));
117 snprintf(filename
, sizeof(filename
), "%s_kern.o", argv
[0]);
118 prog_load_attr
.file
= filename
;
120 if (access(filename
, O_RDONLY
) < 0) {
121 printf("error accessing file %s: %s\n",
122 filename
, strerror(errno
));
126 err
= bpf_prog_load_xattr(&prog_load_attr
, &obj
, &prog_fd
);
128 printf("Does kernel support devmap lookup?\n");
129 /* If not, the error message will be:
130 * "cannot pass map_type 14 into func bpf_map_lookup_elem#1"
135 prog
= bpf_object__find_program_by_title(obj
, prog_name
);
136 prog_fd
= bpf_program__fd(prog
);
138 printf("program not found: %s\n", strerror(prog_fd
));
141 map_fd
= bpf_map__fd(bpf_object__find_map_by_name(obj
,
144 printf("map not found: %s\n", strerror(map_fd
));
149 for (i
= optind
; i
< argc
; ++i
) {
150 idx
= if_nametoindex(argv
[i
]);
152 idx
= strtoul(argv
[i
], NULL
, 0);
155 fprintf(stderr
, "Invalid arg\n");
159 err
= do_detach(idx
, argv
[i
]);
163 err
= do_attach(idx
, prog_fd
, map_fd
, argv
[i
]);