samples: bpf: Refactor BPF map performance test with libbpf
[linux-2.6-block.git] / samples / bpf / xdp_fwd_user.c
CommitLineData
fe616055
DA
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (c) 2017-18 David Ahern <dsahern@gmail.com>
3 *
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.
7 *
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.
12 */
13
14#include <linux/bpf.h>
15#include <linux/if_link.h>
16#include <linux/limits.h>
17#include <net/if.h>
18#include <errno.h>
19#include <stdio.h>
20#include <stdlib.h>
21#include <stdbool.h>
22#include <string.h>
23#include <unistd.h>
24#include <fcntl.h>
25#include <libgen.h>
26
7cf245a3 27#include <bpf/libbpf.h>
2bf3e2ef 28#include <bpf/bpf.h>
fe616055 29
d50ecc46
THJ
30static __u32 xdp_flags = XDP_FLAGS_UPDATE_IF_NOEXIST;
31
a32a32cb 32static int do_attach(int idx, int prog_fd, int map_fd, const char *name)
fe616055
DA
33{
34 int err;
35
d50ecc46 36 err = bpf_set_link_xdp_fd(idx, prog_fd, xdp_flags);
a32a32cb 37 if (err < 0) {
fe616055 38 printf("ERROR: failed to attach program to %s\n", name);
a32a32cb
JDB
39 return err;
40 }
41
42 /* Adding ifindex as a possible egress TX port */
43 err = bpf_map_update_elem(map_fd, &idx, &idx, 0);
44 if (err)
45 printf("ERROR: failed using device %s as TX-port\n", name);
fe616055
DA
46
47 return err;
48}
49
50static int do_detach(int idx, const char *name)
51{
52 int err;
53
d50ecc46 54 err = bpf_set_link_xdp_fd(idx, -1, xdp_flags);
fe616055
DA
55 if (err < 0)
56 printf("ERROR: failed to detach program from %s\n", name);
57
a32a32cb
JDB
58 /* TODO: Remember to cleanup map, when adding use of shared map
59 * bpf_map_delete_elem((map_fd, &idx);
60 */
fe616055
DA
61 return err;
62}
63
64static void usage(const char *prog)
65{
66 fprintf(stderr,
67 "usage: %s [OPTS] interface-list\n"
68 "\nOPTS:\n"
69 " -d detach program\n"
70 " -D direct table lookups (skip fib rules)\n",
71 prog);
72}
73
74int main(int argc, char **argv)
75{
e1a40ef4
JK
76 struct bpf_prog_load_attr prog_load_attr = {
77 .prog_type = BPF_PROG_TYPE_XDP,
78 };
79 const char *prog_name = "xdp_fwd";
80 struct bpf_program *prog;
a32a32cb 81 int prog_fd, map_fd = -1;
fe616055 82 char filename[PATH_MAX];
e1a40ef4 83 struct bpf_object *obj;
fe616055 84 int opt, i, idx, err;
fe616055
DA
85 int attach = 1;
86 int ret = 0;
87
d50ecc46 88 while ((opt = getopt(argc, argv, ":dDSF")) != -1) {
fe616055
DA
89 switch (opt) {
90 case 'd':
91 attach = 0;
92 break;
d50ecc46
THJ
93 case 'S':
94 xdp_flags |= XDP_FLAGS_SKB_MODE;
95 break;
96 case 'F':
97 xdp_flags &= ~XDP_FLAGS_UPDATE_IF_NOEXIST;
98 break;
fe616055 99 case 'D':
e1a40ef4 100 prog_name = "xdp_fwd_direct";
fe616055
DA
101 break;
102 default:
103 usage(basename(argv[0]));
104 return 1;
105 }
106 }
107
d50ecc46
THJ
108 if (!(xdp_flags & XDP_FLAGS_SKB_MODE))
109 xdp_flags |= XDP_FLAGS_DRV_MODE;
110
fe616055
DA
111 if (optind == argc) {
112 usage(basename(argv[0]));
113 return 1;
114 }
115
116 if (attach) {
117 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]);
e1a40ef4 118 prog_load_attr.file = filename;
fe616055
DA
119
120 if (access(filename, O_RDONLY) < 0) {
121 printf("error accessing file %s: %s\n",
122 filename, strerror(errno));
123 return 1;
124 }
125
a32a32cb
JDB
126 err = bpf_prog_load_xattr(&prog_load_attr, &obj, &prog_fd);
127 if (err) {
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"
131 */
fe616055 132 return 1;
a32a32cb 133 }
fe616055 134
e1a40ef4
JK
135 prog = bpf_object__find_program_by_title(obj, prog_name);
136 prog_fd = bpf_program__fd(prog);
137 if (prog_fd < 0) {
138 printf("program not found: %s\n", strerror(prog_fd));
139 return 1;
140 }
141 map_fd = bpf_map__fd(bpf_object__find_map_by_name(obj,
3783d437 142 "xdp_tx_ports"));
e1a40ef4
JK
143 if (map_fd < 0) {
144 printf("map not found: %s\n", strerror(map_fd));
fe616055
DA
145 return 1;
146 }
147 }
fe616055
DA
148
149 for (i = optind; i < argc; ++i) {
150 idx = if_nametoindex(argv[i]);
151 if (!idx)
152 idx = strtoul(argv[i], NULL, 0);
153
154 if (!idx) {
155 fprintf(stderr, "Invalid arg\n");
156 return 1;
157 }
158 if (!attach) {
159 err = do_detach(idx, argv[i]);
160 if (err)
161 ret = err;
162 } else {
a32a32cb 163 err = do_attach(idx, prog_fd, map_fd, argv[i]);
fe616055
DA
164 if (err)
165 ret = err;
166 }
167 }
168
169 return ret;
170}