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"
71 " -F force loading prog\n"
72 " -D direct table lookups (skip fib rules)\n",
76 int main(int argc, char **argv)
78 struct bpf_prog_load_attr prog_load_attr = {
79 .prog_type = BPF_PROG_TYPE_XDP,
81 const char *prog_name = "xdp_fwd";
82 struct bpf_program *prog;
83 int prog_fd, map_fd = -1;
84 char filename[PATH_MAX];
85 struct bpf_object *obj;
90 while ((opt = getopt(argc, argv, ":dDSF")) != -1) {
96 xdp_flags |= XDP_FLAGS_SKB_MODE;
99 xdp_flags &= ~XDP_FLAGS_UPDATE_IF_NOEXIST;
102 prog_name = "xdp_fwd_direct";
105 usage(basename(argv[0]));
110 if (!(xdp_flags & XDP_FLAGS_SKB_MODE))
111 xdp_flags |= XDP_FLAGS_DRV_MODE;
113 if (optind == argc) {
114 usage(basename(argv[0]));
119 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]);
120 prog_load_attr.file = filename;
122 if (access(filename, O_RDONLY) < 0) {
123 printf("error accessing file %s: %s\n",
124 filename, strerror(errno));
128 err = bpf_prog_load_xattr(&prog_load_attr, &obj, &prog_fd);
130 printf("Does kernel support devmap lookup?\n");
131 /* If not, the error message will be:
132 * "cannot pass map_type 14 into func bpf_map_lookup_elem#1"
137 prog = bpf_object__find_program_by_title(obj, prog_name);
138 prog_fd = bpf_program__fd(prog);
140 printf("program not found: %s\n", strerror(prog_fd));
143 map_fd = bpf_map__fd(bpf_object__find_map_by_name(obj,
146 printf("map not found: %s\n", strerror(map_fd));
151 for (i = optind; i < argc; ++i) {
152 idx = if_nametoindex(argv[i]);
154 idx = strtoul(argv[i], NULL, 0);
157 fprintf(stderr, "Invalid arg\n");
161 err = do_detach(idx, argv[i]);
165 err = do_attach(idx, prog_fd, map_fd, argv[i]);