]> git.proxmox.com Git - mirror_iproute2.git/blame - tc/f_bpf.c
bridge: vlan: remove wrong stats help
[mirror_iproute2.git] / tc / f_bpf.c
CommitLineData
d05df686
DB
1/*
2 * f_bpf.c BPF-based Classifier
3 *
4 * This program is free software; you can distribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Daniel Borkmann <dborkman@redhat.com>
10 */
11
12#include <stdio.h>
13#include <stdlib.h>
32e93fb7
DB
14
15#include <linux/bpf.h>
d05df686
DB
16
17#include "utils.h"
18#include "tc_util.h"
1d129d19 19#include "tc_bpf.h"
d05df686 20
6256f8c9
DB
21static const enum bpf_prog_type bpf_type = BPF_PROG_TYPE_SCHED_CLS;
22
32e93fb7
DB
23static const int nla_tbl[BPF_NLA_MAX] = {
24 [BPF_NLA_OPS_LEN] = TCA_BPF_OPS_LEN,
25 [BPF_NLA_OPS] = TCA_BPF_OPS,
26 [BPF_NLA_FD] = TCA_BPF_FD,
27 [BPF_NLA_NAME] = TCA_BPF_NAME,
28};
29
d05df686
DB
30static void explain(void)
31{
32 fprintf(stderr, "Usage: ... bpf ...\n");
33 fprintf(stderr, "\n");
6256f8c9
DB
34 fprintf(stderr, "BPF use case:\n");
35 fprintf(stderr, " bytecode BPF_BYTECODE\n");
36 fprintf(stderr, " bytecode-file FILE\n");
37 fprintf(stderr, "\n");
38 fprintf(stderr, "eBPF use case:\n");
d937a74b 39 fprintf(stderr, " object-file FILE [ section CLS_NAME ] [ export UDS_FILE ]");
faa8a463 40 fprintf(stderr, " [ verbose ] [ direct-action ]\n");
32e93fb7 41 fprintf(stderr, " object-pinned FILE [ direct-action ]\n");
d05df686 42 fprintf(stderr, "\n");
6256f8c9
DB
43 fprintf(stderr, "Common remaining options:\n");
44 fprintf(stderr, " [ action ACTION_SPEC ]\n");
45 fprintf(stderr, " [ classid CLASSID ]\n");
d05df686
DB
46 fprintf(stderr, "\n");
47 fprintf(stderr, "Where BPF_BYTECODE := \'s,c t f k,c t f k,c t f k,...\'\n");
6256f8c9
DB
48 fprintf(stderr, "c,t,f,k and s are decimals; s denotes number of 4-tuples\n");
49 fprintf(stderr, "\n");
11c39b5e 50 fprintf(stderr, "Where FILE points to a file containing the BPF_BYTECODE string,\n");
32e93fb7
DB
51 fprintf(stderr, "an ELF file containing eBPF map definitions and bytecode, or a\n");
52 fprintf(stderr, "pinned eBPF program.\n");
6256f8c9
DB
53 fprintf(stderr, "\n");
54 fprintf(stderr, "Where CLS_NAME refers to the section name containing the\n");
55 fprintf(stderr, "classifier (default \'%s\').\n", bpf_default_section(bpf_type));
56 fprintf(stderr, "\n");
57 fprintf(stderr, "Where UDS_FILE points to a unix domain socket file in order\n");
58 fprintf(stderr, "to hand off control of all created eBPF maps to an agent.\n");
59 fprintf(stderr, "\n");
60 fprintf(stderr, "ACTION_SPEC := ... look at individual actions\n");
863ecb04 61 fprintf(stderr, "NOTE: CLASSID is parsed as hexadecimal input.\n");
d05df686
DB
62}
63
d05df686
DB
64static int bpf_parse_opt(struct filter_util *qu, char *handle,
65 int argc, char **argv, struct nlmsghdr *n)
66{
32e93fb7 67 const char *bpf_obj = NULL, *bpf_uds_name = NULL;
d05df686 68 struct tcmsg *t = NLMSG_DATA(n);
faa8a463 69 unsigned int bpf_flags = 0;
6256f8c9 70 bool seen_run = false;
32e93fb7 71 struct rtattr *tail;
6256f8c9 72 int ret = 0;
d05df686 73
d05df686 74 if (handle) {
32e93fb7
DB
75 if (get_u32(&t->tcm_handle, handle, 0)) {
76 fprintf(stderr, "Illegal \"handle\"\n");
d05df686
DB
77 return -1;
78 }
79 }
80
1a032072
DB
81 if (argc == 0)
82 return 0;
83
6256f8c9 84 tail = (struct rtattr *)(((void *)n) + NLMSG_ALIGN(n->nlmsg_len));
d05df686
DB
85 addattr_l(n, MAX_MSG, TCA_OPTIONS, NULL, 0);
86
87 while (argc > 0) {
88 if (matches(*argv, "run") == 0) {
d05df686 89 NEXT_ARG();
6256f8c9 90opt_bpf:
6256f8c9 91 seen_run = true;
32e93fb7
DB
92 if (bpf_parse_common(&argc, &argv, nla_tbl, bpf_type,
93 &bpf_obj, &bpf_uds_name, n)) {
94 fprintf(stderr, "Failed to retrieve (e)BPF data!\n");
d05df686
DB
95 return -1;
96 }
97 } else if (matches(*argv, "classid") == 0 ||
32e93fb7 98 matches(*argv, "flowid") == 0) {
6256f8c9
DB
99 unsigned int handle;
100
d05df686
DB
101 NEXT_ARG();
102 if (get_tc_classid(&handle, *argv)) {
103 fprintf(stderr, "Illegal \"classid\"\n");
104 return -1;
105 }
faa8a463
DB
106 addattr32(n, MAX_MSG, TCA_BPF_CLASSID, handle);
107 } else if (matches(*argv, "direct-action") == 0 ||
108 matches(*argv, "da") == 0) {
109 bpf_flags |= TCA_BPF_FLAG_ACT_DIRECT;
d05df686
DB
110 } else if (matches(*argv, "action") == 0) {
111 NEXT_ARG();
112 if (parse_action(&argc, &argv, TCA_BPF_ACT, n)) {
113 fprintf(stderr, "Illegal \"action\"\n");
114 return -1;
115 }
116 continue;
117 } else if (matches(*argv, "police") == 0) {
118 NEXT_ARG();
119 if (parse_police(&argc, &argv, TCA_BPF_POLICE, n)) {
120 fprintf(stderr, "Illegal \"police\"\n");
121 return -1;
122 }
123 continue;
32e93fb7 124 } else if (matches(*argv, "help") == 0) {
d05df686
DB
125 explain();
126 return -1;
127 } else {
6256f8c9
DB
128 if (!seen_run)
129 goto opt_bpf;
130
d05df686
DB
131 fprintf(stderr, "What is \"%s\"?\n", *argv);
132 explain();
133 return -1;
134 }
faa8a463
DB
135
136 NEXT_ARG_FWD();
d05df686
DB
137 }
138
faa8a463
DB
139 if (bpf_obj && bpf_flags)
140 addattr32(n, MAX_MSG, TCA_BPF_FLAGS, bpf_flags);
141
6256f8c9
DB
142 tail->rta_len = (((void *)n) + n->nlmsg_len) - (void *)tail;
143
144 if (bpf_uds_name)
4bd62446 145 ret = bpf_send_map_fds(bpf_uds_name, bpf_obj);
6256f8c9
DB
146
147 return ret;
d05df686
DB
148}
149
150static int bpf_print_opt(struct filter_util *qu, FILE *f,
151 struct rtattr *opt, __u32 handle)
152{
153 struct rtattr *tb[TCA_BPF_MAX + 1];
154
155 if (opt == NULL)
156 return 0;
157
158 parse_rtattr_nested(tb, TCA_BPF_MAX, opt);
159
160 if (handle)
161 fprintf(f, "handle 0x%x ", handle);
162
163 if (tb[TCA_BPF_CLASSID]) {
164 SPRINT_BUF(b1);
165 fprintf(f, "flowid %s ",
166 sprint_tc_classid(rta_getattr_u32(tb[TCA_BPF_CLASSID]), b1));
167 }
168
11c39b5e
DB
169 if (tb[TCA_BPF_NAME])
170 fprintf(f, "%s ", rta_getattr_str(tb[TCA_BPF_NAME]));
171 else if (tb[TCA_BPF_FD])
172 fprintf(f, "pfd %u ", rta_getattr_u32(tb[TCA_BPF_FD]));
173
faa8a463
DB
174 if (tb[TCA_BPF_FLAGS]) {
175 unsigned int flags = rta_getattr_u32(tb[TCA_BPF_FLAGS]);
176
177 if (flags & TCA_BPF_FLAG_ACT_DIRECT)
178 fprintf(f, "direct-action ");
179 }
180
6256f8c9 181 if (tb[TCA_BPF_OPS] && tb[TCA_BPF_OPS_LEN]) {
d05df686
DB
182 bpf_print_ops(f, tb[TCA_BPF_OPS],
183 rta_getattr_u16(tb[TCA_BPF_OPS_LEN]));
6256f8c9
DB
184 fprintf(f, "\n");
185 }
d05df686
DB
186
187 if (tb[TCA_BPF_POLICE]) {
188 fprintf(f, "\n");
189 tc_print_police(f, tb[TCA_BPF_POLICE]);
190 }
191
192 if (tb[TCA_BPF_ACT]) {
193 tc_print_action(f, tb[TCA_BPF_ACT]);
194 }
195
196 return 0;
197}
198
199struct filter_util bpf_filter_util = {
32e93fb7
DB
200 .id = "bpf",
201 .parse_fopt = bpf_parse_opt,
202 .print_fopt = bpf_print_opt,
d05df686 203};