blob: 665bc6612eeb92891379c4134c46511760eb6205 [file] [log] [blame]
Daniel Borkmannd05df682013-10-28 12:35:33 +01001/*
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>
Daniel Borkmann32e93fb2015-11-13 00:39:29 +010014
15#include <linux/bpf.h>
Daniel Borkmannd05df682013-10-28 12:35:33 +010016
17#include "utils.h"
18#include "tc_util.h"
Jiri Pirko1d129d12015-01-19 16:56:29 +010019#include "tc_bpf.h"
Daniel Borkmannd05df682013-10-28 12:35:33 +010020
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020021static const enum bpf_prog_type bpf_type = BPF_PROG_TYPE_SCHED_CLS;
22
Daniel Borkmann32e93fb2015-11-13 00:39:29 +010023static 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
Daniel Borkmannd05df682013-10-28 12:35:33 +010030static void explain(void)
31{
32 fprintf(stderr, "Usage: ... bpf ...\n");
33 fprintf(stderr, "\n");
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020034 fprintf(stderr, "BPF use case:\n");
35 fprintf(stderr, " bytecode BPF_BYTECODE\n");
36 fprintf(stderr, " bytecode-file FILE\n");
Daniel Borkmannd05df682013-10-28 12:35:33 +010037 fprintf(stderr, "\n");
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020038 fprintf(stderr, "eBPF use case:\n");
Daniel Borkmannd937a742015-04-28 13:37:42 +020039 fprintf(stderr, " object-file FILE [ section CLS_NAME ] [ export UDS_FILE ]");
Jakub Kicinski87e46a52016-10-12 16:46:36 +010040 fprintf(stderr, " [ verbose ] [ direct-action ] [ skip_hw | skip_sw ]\n");
41 fprintf(stderr, " object-pinned FILE [ direct-action ] [ skip_hw | skip_sw ]\n");
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020042 fprintf(stderr, "\n");
43 fprintf(stderr, "Common remaining options:\n");
44 fprintf(stderr, " [ action ACTION_SPEC ]\n");
45 fprintf(stderr, " [ classid CLASSID ]\n");
Daniel Borkmannd05df682013-10-28 12:35:33 +010046 fprintf(stderr, "\n");
47 fprintf(stderr, "Where BPF_BYTECODE := \'s,c t f k,c t f k,c t f k,...\'\n");
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020048 fprintf(stderr, "c,t,f,k and s are decimals; s denotes number of 4-tuples\n");
49 fprintf(stderr, "\n");
Daniel Borkmann11c39b52015-03-16 19:37:41 +010050 fprintf(stderr, "Where FILE points to a file containing the BPF_BYTECODE string,\n");
Daniel Borkmann32e93fb2015-11-13 00:39:29 +010051 fprintf(stderr, "an ELF file containing eBPF map definitions and bytecode, or a\n");
52 fprintf(stderr, "pinned eBPF program.\n");
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020053 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");
Jamal Hadi Salim863ecb02014-10-06 07:41:21 -040061 fprintf(stderr, "NOTE: CLASSID is parsed as hexadecimal input.\n");
Daniel Borkmannd05df682013-10-28 12:35:33 +010062}
63
Daniel Borkmannd05df682013-10-28 12:35:33 +010064static int bpf_parse_opt(struct filter_util *qu, char *handle,
65 int argc, char **argv, struct nlmsghdr *n)
66{
Daniel Borkmann32e93fb2015-11-13 00:39:29 +010067 const char *bpf_obj = NULL, *bpf_uds_name = NULL;
Daniel Borkmannd05df682013-10-28 12:35:33 +010068 struct tcmsg *t = NLMSG_DATA(n);
Jakub Kicinski87e46a52016-10-12 16:46:36 +010069 unsigned int bpf_gen_flags = 0;
Daniel Borkmannfaa8a462015-09-25 12:32:41 +020070 unsigned int bpf_flags = 0;
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020071 bool seen_run = false;
Daniel Borkmann32e93fb2015-11-13 00:39:29 +010072 struct rtattr *tail;
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020073 int ret = 0;
Daniel Borkmannd05df682013-10-28 12:35:33 +010074
Daniel Borkmannd05df682013-10-28 12:35:33 +010075 if (handle) {
Daniel Borkmann32e93fb2015-11-13 00:39:29 +010076 if (get_u32(&t->tcm_handle, handle, 0)) {
77 fprintf(stderr, "Illegal \"handle\"\n");
Daniel Borkmannd05df682013-10-28 12:35:33 +010078 return -1;
79 }
80 }
81
Daniel Borkmann1a032072016-05-18 11:58:41 +020082 if (argc == 0)
83 return 0;
84
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020085 tail = (struct rtattr *)(((void *)n) + NLMSG_ALIGN(n->nlmsg_len));
Daniel Borkmannd05df682013-10-28 12:35:33 +010086 addattr_l(n, MAX_MSG, TCA_OPTIONS, NULL, 0);
87
88 while (argc > 0) {
89 if (matches(*argv, "run") == 0) {
Daniel Borkmannd05df682013-10-28 12:35:33 +010090 NEXT_ARG();
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020091opt_bpf:
Daniel Borkmann6256f8c2015-04-01 17:57:44 +020092 seen_run = true;
Daniel Borkmann32e93fb2015-11-13 00:39:29 +010093 if (bpf_parse_common(&argc, &argv, nla_tbl, bpf_type,
94 &bpf_obj, &bpf_uds_name, n)) {
95 fprintf(stderr, "Failed to retrieve (e)BPF data!\n");
Daniel Borkmannd05df682013-10-28 12:35:33 +010096 return -1;
97 }
Daniel Borkmannd05df682013-10-28 12:35:33 +010098 } else if (matches(*argv, "classid") == 0 ||
Daniel Borkmann32e93fb2015-11-13 00:39:29 +010099 matches(*argv, "flowid") == 0) {
Daniel Borkmann6256f8c2015-04-01 17:57:44 +0200100 unsigned int handle;
101
Daniel Borkmannd05df682013-10-28 12:35:33 +0100102 NEXT_ARG();
103 if (get_tc_classid(&handle, *argv)) {
104 fprintf(stderr, "Illegal \"classid\"\n");
105 return -1;
106 }
Daniel Borkmannfaa8a462015-09-25 12:32:41 +0200107 addattr32(n, MAX_MSG, TCA_BPF_CLASSID, handle);
108 } else if (matches(*argv, "direct-action") == 0 ||
109 matches(*argv, "da") == 0) {
110 bpf_flags |= TCA_BPF_FLAG_ACT_DIRECT;
Jakub Kicinski87e46a52016-10-12 16:46:36 +0100111 } else if (matches(*argv, "skip_hw") == 0) {
112 bpf_gen_flags |= TCA_CLS_FLAGS_SKIP_HW;
113 } else if (matches(*argv, "skip_sw") == 0) {
114 bpf_gen_flags |= TCA_CLS_FLAGS_SKIP_SW;
Daniel Borkmannd05df682013-10-28 12:35:33 +0100115 } else if (matches(*argv, "action") == 0) {
116 NEXT_ARG();
117 if (parse_action(&argc, &argv, TCA_BPF_ACT, n)) {
118 fprintf(stderr, "Illegal \"action\"\n");
119 return -1;
120 }
121 continue;
122 } else if (matches(*argv, "police") == 0) {
123 NEXT_ARG();
124 if (parse_police(&argc, &argv, TCA_BPF_POLICE, n)) {
125 fprintf(stderr, "Illegal \"police\"\n");
126 return -1;
127 }
128 continue;
Daniel Borkmann32e93fb2015-11-13 00:39:29 +0100129 } else if (matches(*argv, "help") == 0) {
Daniel Borkmannd05df682013-10-28 12:35:33 +0100130 explain();
131 return -1;
132 } else {
Daniel Borkmann6256f8c2015-04-01 17:57:44 +0200133 if (!seen_run)
134 goto opt_bpf;
135
Daniel Borkmannd05df682013-10-28 12:35:33 +0100136 fprintf(stderr, "What is \"%s\"?\n", *argv);
137 explain();
138 return -1;
139 }
Daniel Borkmannfaa8a462015-09-25 12:32:41 +0200140
141 NEXT_ARG_FWD();
Daniel Borkmannd05df682013-10-28 12:35:33 +0100142 }
143
Jakub Kicinski87e46a52016-10-12 16:46:36 +0100144 if (bpf_gen_flags)
145 addattr32(n, MAX_MSG, TCA_BPF_FLAGS_GEN, bpf_gen_flags);
Daniel Borkmannfaa8a462015-09-25 12:32:41 +0200146 if (bpf_obj && bpf_flags)
147 addattr32(n, MAX_MSG, TCA_BPF_FLAGS, bpf_flags);
148
Daniel Borkmann6256f8c2015-04-01 17:57:44 +0200149 tail->rta_len = (((void *)n) + n->nlmsg_len) - (void *)tail;
150
151 if (bpf_uds_name)
Daniel Borkmann4bd62442015-04-16 21:20:06 +0200152 ret = bpf_send_map_fds(bpf_uds_name, bpf_obj);
Daniel Borkmann6256f8c2015-04-01 17:57:44 +0200153
154 return ret;
Daniel Borkmannd05df682013-10-28 12:35:33 +0100155}
156
157static int bpf_print_opt(struct filter_util *qu, FILE *f,
158 struct rtattr *opt, __u32 handle)
159{
160 struct rtattr *tb[TCA_BPF_MAX + 1];
161
162 if (opt == NULL)
163 return 0;
164
165 parse_rtattr_nested(tb, TCA_BPF_MAX, opt);
166
167 if (handle)
168 fprintf(f, "handle 0x%x ", handle);
169
170 if (tb[TCA_BPF_CLASSID]) {
171 SPRINT_BUF(b1);
172 fprintf(f, "flowid %s ",
173 sprint_tc_classid(rta_getattr_u32(tb[TCA_BPF_CLASSID]), b1));
174 }
175
Daniel Borkmann11c39b52015-03-16 19:37:41 +0100176 if (tb[TCA_BPF_NAME])
177 fprintf(f, "%s ", rta_getattr_str(tb[TCA_BPF_NAME]));
178 else if (tb[TCA_BPF_FD])
179 fprintf(f, "pfd %u ", rta_getattr_u32(tb[TCA_BPF_FD]));
180
Daniel Borkmannfaa8a462015-09-25 12:32:41 +0200181 if (tb[TCA_BPF_FLAGS]) {
182 unsigned int flags = rta_getattr_u32(tb[TCA_BPF_FLAGS]);
183
184 if (flags & TCA_BPF_FLAG_ACT_DIRECT)
185 fprintf(f, "direct-action ");
186 }
187
Jakub Kicinski87e46a52016-10-12 16:46:36 +0100188 if (tb[TCA_BPF_FLAGS_GEN]) {
189 unsigned int flags =
190 rta_getattr_u32(tb[TCA_BPF_FLAGS_GEN]);
191
192 if (flags & TCA_CLS_FLAGS_SKIP_HW)
193 fprintf(f, "skip_hw ");
194 if (flags & TCA_CLS_FLAGS_SKIP_SW)
195 fprintf(f, "skip_sw ");
196 }
197
Daniel Borkmann6256f8c2015-04-01 17:57:44 +0200198 if (tb[TCA_BPF_OPS] && tb[TCA_BPF_OPS_LEN]) {
Daniel Borkmannd05df682013-10-28 12:35:33 +0100199 bpf_print_ops(f, tb[TCA_BPF_OPS],
200 rta_getattr_u16(tb[TCA_BPF_OPS_LEN]));
Daniel Borkmann6256f8c2015-04-01 17:57:44 +0200201 fprintf(f, "\n");
202 }
Daniel Borkmannd05df682013-10-28 12:35:33 +0100203
204 if (tb[TCA_BPF_POLICE]) {
205 fprintf(f, "\n");
206 tc_print_police(f, tb[TCA_BPF_POLICE]);
207 }
208
209 if (tb[TCA_BPF_ACT]) {
210 tc_print_action(f, tb[TCA_BPF_ACT]);
211 }
212
213 return 0;
214}
215
216struct filter_util bpf_filter_util = {
Daniel Borkmann32e93fb2015-11-13 00:39:29 +0100217 .id = "bpf",
218 .parse_fopt = bpf_parse_opt,
219 .print_fopt = bpf_print_opt,
Daniel Borkmannd05df682013-10-28 12:35:33 +0100220};