blob: f57bd531ba98e0661768e347a2e0b80d04affe30 [file] [log] [blame]
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +01001/*
2 * Berkeley Packet Filter based traffic classifier
3 *
4 * Might be used to classify traffic through flexible, user-defined and
5 * possibly JIT-ed BPF filters for traffic control as an alternative to
6 * ematches.
7 *
8 * (C) 2013 Daniel Borkmann <dborkman@redhat.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/module.h>
16#include <linux/types.h>
17#include <linux/skbuff.h>
18#include <linux/filter.h>
Daniel Borkmanne2e9b652015-03-01 12:31:48 +010019#include <linux/bpf.h>
20
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010021#include <net/rtnetlink.h>
22#include <net/pkt_cls.h>
23#include <net/sock.h>
24
25MODULE_LICENSE("GPL");
26MODULE_AUTHOR("Daniel Borkmann <dborkman@redhat.com>");
27MODULE_DESCRIPTION("TC BPF based classifier");
28
Daniel Borkmanne2e9b652015-03-01 12:31:48 +010029#define CLS_BPF_NAME_LEN 256
Jakub Kicinski0d01d452016-09-21 11:43:54 +010030#define CLS_BPF_SUPPORTED_GEN_FLAGS \
Jakub Kicinskieadb4142016-09-21 11:43:55 +010031 (TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW)
Daniel Borkmanne2e9b652015-03-01 12:31:48 +010032
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010033struct cls_bpf_head {
34 struct list_head plist;
35 u32 hgen;
John Fastabend1f947bf2014-09-12 20:10:24 -070036 struct rcu_head rcu;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010037};
38
39struct cls_bpf_prog {
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -070040 struct bpf_prog *filter;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010041 struct list_head link;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +010042 struct tcf_result res;
Daniel Borkmann045efa82015-09-15 23:05:42 -070043 bool exts_integrated;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +010044 bool offloaded;
Jakub Kicinski0d01d452016-09-21 11:43:54 +010045 u32 gen_flags;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +010046 struct tcf_exts exts;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010047 u32 handle;
Daniel Borkmann55556dd2016-11-26 01:28:05 +010048 u16 bpf_num_ops;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +010049 struct sock_filter *bpf_ops;
50 const char *bpf_name;
John Fastabend1f947bf2014-09-12 20:10:24 -070051 struct tcf_proto *tp;
52 struct rcu_head rcu;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010053};
54
55static const struct nla_policy bpf_policy[TCA_BPF_MAX + 1] = {
56 [TCA_BPF_CLASSID] = { .type = NLA_U32 },
Daniel Borkmann045efa82015-09-15 23:05:42 -070057 [TCA_BPF_FLAGS] = { .type = NLA_U32 },
Jakub Kicinski0d01d452016-09-21 11:43:54 +010058 [TCA_BPF_FLAGS_GEN] = { .type = NLA_U32 },
Daniel Borkmanne2e9b652015-03-01 12:31:48 +010059 [TCA_BPF_FD] = { .type = NLA_U32 },
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -040060 [TCA_BPF_NAME] = { .type = NLA_NUL_STRING,
61 .len = CLS_BPF_NAME_LEN },
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010062 [TCA_BPF_OPS_LEN] = { .type = NLA_U16 },
63 [TCA_BPF_OPS] = { .type = NLA_BINARY,
64 .len = sizeof(struct sock_filter) * BPF_MAXINSNS },
65};
66
Daniel Borkmann045efa82015-09-15 23:05:42 -070067static int cls_bpf_exec_opcode(int code)
68{
69 switch (code) {
70 case TC_ACT_OK:
Daniel Borkmann045efa82015-09-15 23:05:42 -070071 case TC_ACT_SHOT:
Daniel Borkmann045efa82015-09-15 23:05:42 -070072 case TC_ACT_STOLEN:
Jiri Pirkoe25ea212017-06-06 14:12:02 +020073 case TC_ACT_TRAP:
Alexei Starovoitov27b29f62015-09-15 23:05:43 -070074 case TC_ACT_REDIRECT:
Daniel Borkmann045efa82015-09-15 23:05:42 -070075 case TC_ACT_UNSPEC:
76 return code;
77 default:
78 return TC_ACT_UNSPEC;
79 }
80}
81
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010082static int cls_bpf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
83 struct tcf_result *res)
84{
WANG Cong80dcbd12014-09-15 14:21:50 -070085 struct cls_bpf_head *head = rcu_dereference_bh(tp->root);
Daniel Borkmannfdc54322016-01-07 15:50:22 +010086 bool at_ingress = skb_at_tc_ingress(skb);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010087 struct cls_bpf_prog *prog;
Daniel Borkmann54720df2015-03-12 20:03:12 +010088 int ret = -1;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010089
Daniel Borkmann54720df2015-03-12 20:03:12 +010090 /* Needed here for accessing maps. */
91 rcu_read_lock();
John Fastabend1f947bf2014-09-12 20:10:24 -070092 list_for_each_entry_rcu(prog, &head->plist, link) {
Alexei Starovoitov34312052015-06-04 10:11:53 -070093 int filter_res;
94
Daniel Borkmann045efa82015-09-15 23:05:42 -070095 qdisc_skb_cb(skb)->tc_classid = prog->res.classid;
96
Jakub Kicinskieadb4142016-09-21 11:43:55 +010097 if (tc_skip_sw(prog->gen_flags)) {
98 filter_res = prog->exts_integrated ? TC_ACT_UNSPEC : 0;
99 } else if (at_ingress) {
Alexei Starovoitov34312052015-06-04 10:11:53 -0700100 /* It is safe to push/pull even if skb_shared() */
101 __skb_push(skb, skb->mac_len);
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -0700102 bpf_compute_data_end(skb);
Alexei Starovoitov34312052015-06-04 10:11:53 -0700103 filter_res = BPF_PROG_RUN(prog->filter, skb);
104 __skb_pull(skb, skb->mac_len);
105 } else {
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -0700106 bpf_compute_data_end(skb);
Alexei Starovoitov34312052015-06-04 10:11:53 -0700107 filter_res = BPF_PROG_RUN(prog->filter, skb);
108 }
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100109
Daniel Borkmann045efa82015-09-15 23:05:42 -0700110 if (prog->exts_integrated) {
Daniel Borkmann3a461da2016-03-15 22:41:22 +0100111 res->class = 0;
112 res->classid = TC_H_MAJ(prog->res.classid) |
113 qdisc_skb_cb(skb)->tc_classid;
Daniel Borkmann045efa82015-09-15 23:05:42 -0700114
115 ret = cls_bpf_exec_opcode(filter_res);
116 if (ret == TC_ACT_UNSPEC)
117 continue;
118 break;
119 }
120
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100121 if (filter_res == 0)
122 continue;
Daniel Borkmann3a461da2016-03-15 22:41:22 +0100123 if (filter_res != -1) {
124 res->class = 0;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100125 res->classid = filter_res;
Daniel Borkmann3a461da2016-03-15 22:41:22 +0100126 } else {
127 *res = prog->res;
128 }
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100129
130 ret = tcf_exts_exec(skb, &prog->exts, res);
131 if (ret < 0)
132 continue;
133
Daniel Borkmann54720df2015-03-12 20:03:12 +0100134 break;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100135 }
Daniel Borkmann54720df2015-03-12 20:03:12 +0100136 rcu_read_unlock();
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100137
Daniel Borkmann54720df2015-03-12 20:03:12 +0100138 return ret;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100139}
140
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100141static bool cls_bpf_is_ebpf(const struct cls_bpf_prog *prog)
142{
143 return !prog->bpf_ops;
144}
145
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100146static int cls_bpf_offload_cmd(struct tcf_proto *tp, struct cls_bpf_prog *prog,
147 enum tc_clsbpf_command cmd)
148{
149 struct net_device *dev = tp->q->dev_queue->dev;
150 struct tc_cls_bpf_offload bpf_offload = {};
151 struct tc_to_netdev offload;
Or Gerlitz5cecb6c2017-02-16 10:31:16 +0200152 int err;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100153
154 offload.type = TC_SETUP_CLSBPF;
155 offload.cls_bpf = &bpf_offload;
156
157 bpf_offload.command = cmd;
158 bpf_offload.exts = &prog->exts;
159 bpf_offload.prog = prog->filter;
160 bpf_offload.name = prog->bpf_name;
161 bpf_offload.exts_integrated = prog->exts_integrated;
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100162 bpf_offload.gen_flags = prog->gen_flags;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100163
Or Gerlitz5cecb6c2017-02-16 10:31:16 +0200164 err = dev->netdev_ops->ndo_setup_tc(dev, tp->q->handle,
Jiri Pirkoa5fcf8a2017-06-06 17:00:16 +0200165 tp->chain->index,
Or Gerlitz5cecb6c2017-02-16 10:31:16 +0200166 tp->protocol, &offload);
167
168 if (!err && (cmd == TC_CLSBPF_ADD || cmd == TC_CLSBPF_REPLACE))
169 prog->gen_flags |= TCA_CLS_FLAGS_IN_HW;
170
171 return err;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100172}
173
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100174static int cls_bpf_offload(struct tcf_proto *tp, struct cls_bpf_prog *prog,
175 struct cls_bpf_prog *oldprog)
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100176{
177 struct net_device *dev = tp->q->dev_queue->dev;
178 struct cls_bpf_prog *obj = prog;
179 enum tc_clsbpf_command cmd;
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100180 bool skip_sw;
181 int ret;
182
183 skip_sw = tc_skip_sw(prog->gen_flags) ||
184 (oldprog && tc_skip_sw(oldprog->gen_flags));
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100185
186 if (oldprog && oldprog->offloaded) {
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100187 if (tc_should_offload(dev, tp, prog->gen_flags)) {
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100188 cmd = TC_CLSBPF_REPLACE;
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100189 } else if (!tc_skip_sw(prog->gen_flags)) {
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100190 obj = oldprog;
191 cmd = TC_CLSBPF_DESTROY;
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100192 } else {
193 return -EINVAL;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100194 }
195 } else {
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100196 if (!tc_should_offload(dev, tp, prog->gen_flags))
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100197 return skip_sw ? -EINVAL : 0;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100198 cmd = TC_CLSBPF_ADD;
199 }
200
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100201 ret = cls_bpf_offload_cmd(tp, obj, cmd);
202 if (ret)
203 return skip_sw ? ret : 0;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100204
205 obj->offloaded = true;
206 if (oldprog)
207 oldprog->offloaded = false;
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100208
209 return 0;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100210}
211
212static void cls_bpf_stop_offload(struct tcf_proto *tp,
213 struct cls_bpf_prog *prog)
214{
215 int err;
216
217 if (!prog->offloaded)
218 return;
219
220 err = cls_bpf_offload_cmd(tp, prog, TC_CLSBPF_DESTROY);
221 if (err) {
222 pr_err("Stopping hardware offload failed: %d\n", err);
223 return;
224 }
225
226 prog->offloaded = false;
227}
228
Jakub Kicinski68d64062016-09-21 11:44:02 +0100229static void cls_bpf_offload_update_stats(struct tcf_proto *tp,
230 struct cls_bpf_prog *prog)
231{
232 if (!prog->offloaded)
233 return;
234
235 cls_bpf_offload_cmd(tp, prog, TC_CLSBPF_STATS);
236}
237
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100238static int cls_bpf_init(struct tcf_proto *tp)
239{
240 struct cls_bpf_head *head;
241
242 head = kzalloc(sizeof(*head), GFP_KERNEL);
243 if (head == NULL)
244 return -ENOBUFS;
245
John Fastabend1f947bf2014-09-12 20:10:24 -0700246 INIT_LIST_HEAD_RCU(&head->plist);
247 rcu_assign_pointer(tp->root, head);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100248
249 return 0;
250}
251
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100252static void __cls_bpf_delete_prog(struct cls_bpf_prog *prog)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100253{
WANG Cong18d02642014-09-25 10:26:37 -0700254 tcf_exts_destroy(&prog->exts);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100255
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100256 if (cls_bpf_is_ebpf(prog))
257 bpf_prog_put(prog->filter);
258 else
259 bpf_prog_destroy(prog->filter);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100260
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100261 kfree(prog->bpf_name);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100262 kfree(prog->bpf_ops);
263 kfree(prog);
264}
265
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100266static void cls_bpf_delete_prog_rcu(struct rcu_head *rcu)
John Fastabend1f947bf2014-09-12 20:10:24 -0700267{
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100268 __cls_bpf_delete_prog(container_of(rcu, struct cls_bpf_prog, rcu));
269}
John Fastabend1f947bf2014-09-12 20:10:24 -0700270
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100271static void __cls_bpf_delete(struct tcf_proto *tp, struct cls_bpf_prog *prog)
272{
273 cls_bpf_stop_offload(tp, prog);
274 list_del_rcu(&prog->link);
275 tcf_unbind_filter(tp, &prog->res);
276 call_rcu(&prog->rcu, cls_bpf_delete_prog_rcu);
John Fastabend1f947bf2014-09-12 20:10:24 -0700277}
278
WANG Cong763dbf62017-04-19 14:21:21 -0700279static int cls_bpf_delete(struct tcf_proto *tp, unsigned long arg, bool *last)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100280{
WANG Cong763dbf62017-04-19 14:21:21 -0700281 struct cls_bpf_head *head = rtnl_dereference(tp->root);
282
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100283 __cls_bpf_delete(tp, (struct cls_bpf_prog *) arg);
WANG Cong763dbf62017-04-19 14:21:21 -0700284 *last = list_empty(&head->plist);
Jiri Pirko472f5832014-12-02 18:00:32 +0100285 return 0;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100286}
287
WANG Cong763dbf62017-04-19 14:21:21 -0700288static void cls_bpf_destroy(struct tcf_proto *tp)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100289{
John Fastabend1f947bf2014-09-12 20:10:24 -0700290 struct cls_bpf_head *head = rtnl_dereference(tp->root);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100291 struct cls_bpf_prog *prog, *tmp;
292
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100293 list_for_each_entry_safe(prog, tmp, &head->plist, link)
294 __cls_bpf_delete(tp, prog);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100295
John Fastabend1f947bf2014-09-12 20:10:24 -0700296 kfree_rcu(head, rcu);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100297}
298
299static unsigned long cls_bpf_get(struct tcf_proto *tp, u32 handle)
300{
John Fastabend1f947bf2014-09-12 20:10:24 -0700301 struct cls_bpf_head *head = rtnl_dereference(tp->root);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100302 struct cls_bpf_prog *prog;
303 unsigned long ret = 0UL;
304
Jiri Pirko3fe6b492014-12-02 18:00:33 +0100305 list_for_each_entry(prog, &head->plist, link) {
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100306 if (prog->handle == handle) {
307 ret = (unsigned long) prog;
308 break;
309 }
310 }
311
312 return ret;
313}
314
Daniel Borkmann045efa82015-09-15 23:05:42 -0700315static int cls_bpf_prog_from_ops(struct nlattr **tb, struct cls_bpf_prog *prog)
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100316{
317 struct sock_filter *bpf_ops;
318 struct sock_fprog_kern fprog_tmp;
319 struct bpf_prog *fp;
320 u16 bpf_size, bpf_num_ops;
321 int ret;
322
323 bpf_num_ops = nla_get_u16(tb[TCA_BPF_OPS_LEN]);
324 if (bpf_num_ops > BPF_MAXINSNS || bpf_num_ops == 0)
325 return -EINVAL;
326
327 bpf_size = bpf_num_ops * sizeof(*bpf_ops);
328 if (bpf_size != nla_len(tb[TCA_BPF_OPS]))
329 return -EINVAL;
330
331 bpf_ops = kzalloc(bpf_size, GFP_KERNEL);
332 if (bpf_ops == NULL)
333 return -ENOMEM;
334
335 memcpy(bpf_ops, nla_data(tb[TCA_BPF_OPS]), bpf_size);
336
337 fprog_tmp.len = bpf_num_ops;
338 fprog_tmp.filter = bpf_ops;
339
340 ret = bpf_prog_create(&fp, &fprog_tmp);
341 if (ret < 0) {
342 kfree(bpf_ops);
343 return ret;
344 }
345
346 prog->bpf_ops = bpf_ops;
347 prog->bpf_num_ops = bpf_num_ops;
348 prog->bpf_name = NULL;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100349 prog->filter = fp;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100350
351 return 0;
352}
353
Daniel Borkmannc46646d2015-09-30 01:41:51 +0200354static int cls_bpf_prog_from_efd(struct nlattr **tb, struct cls_bpf_prog *prog,
355 const struct tcf_proto *tp)
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100356{
357 struct bpf_prog *fp;
358 char *name = NULL;
359 u32 bpf_fd;
360
361 bpf_fd = nla_get_u32(tb[TCA_BPF_FD]);
362
Daniel Borkmann113214b2016-06-30 17:24:44 +0200363 fp = bpf_prog_get_type(bpf_fd, BPF_PROG_TYPE_SCHED_CLS);
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100364 if (IS_ERR(fp))
365 return PTR_ERR(fp);
366
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100367 if (tb[TCA_BPF_NAME]) {
Thomas Grafb15ca182016-10-26 10:53:16 +0200368 name = nla_memdup(tb[TCA_BPF_NAME], GFP_KERNEL);
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100369 if (!name) {
370 bpf_prog_put(fp);
371 return -ENOMEM;
372 }
373 }
374
375 prog->bpf_ops = NULL;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100376 prog->bpf_name = name;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100377 prog->filter = fp;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100378
Daniel Borkmann1f211a12016-01-07 22:29:47 +0100379 if (fp->dst_needed && !(tp->q->flags & TCQ_F_INGRESS))
Daniel Borkmannc46646d2015-09-30 01:41:51 +0200380 netif_keep_dst(qdisc_dev(tp->q));
381
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100382 return 0;
383}
384
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100385static int cls_bpf_modify_existing(struct net *net, struct tcf_proto *tp,
386 struct cls_bpf_prog *prog,
387 unsigned long base, struct nlattr **tb,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700388 struct nlattr *est, bool ovr)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100389{
Daniel Borkmann045efa82015-09-15 23:05:42 -0700390 bool is_bpf, is_ebpf, have_exts = false;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100391 struct tcf_exts exts;
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100392 u32 gen_flags = 0;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100393 int ret;
394
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100395 is_bpf = tb[TCA_BPF_OPS_LEN] && tb[TCA_BPF_OPS];
396 is_ebpf = tb[TCA_BPF_FD];
Daniel Borkmannef146fa2015-09-23 21:56:47 +0200397 if ((!is_bpf && !is_ebpf) || (is_bpf && is_ebpf))
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100398 return -EINVAL;
399
WANG Congb9a24bb2016-08-19 12:36:54 -0700400 ret = tcf_exts_init(&exts, TCA_BPF_ACT, TCA_BPF_POLICE);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100401 if (ret < 0)
402 return ret;
WANG Congb9a24bb2016-08-19 12:36:54 -0700403 ret = tcf_exts_validate(net, tp, tb, est, &exts, ovr);
404 if (ret < 0)
405 goto errout;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100406
Daniel Borkmann045efa82015-09-15 23:05:42 -0700407 if (tb[TCA_BPF_FLAGS]) {
408 u32 bpf_flags = nla_get_u32(tb[TCA_BPF_FLAGS]);
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100409
Daniel Borkmann045efa82015-09-15 23:05:42 -0700410 if (bpf_flags & ~TCA_BPF_FLAG_ACT_DIRECT) {
WANG Congb9a24bb2016-08-19 12:36:54 -0700411 ret = -EINVAL;
412 goto errout;
Daniel Borkmann045efa82015-09-15 23:05:42 -0700413 }
414
415 have_exts = bpf_flags & TCA_BPF_FLAG_ACT_DIRECT;
416 }
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100417 if (tb[TCA_BPF_FLAGS_GEN]) {
418 gen_flags = nla_get_u32(tb[TCA_BPF_FLAGS_GEN]);
419 if (gen_flags & ~CLS_BPF_SUPPORTED_GEN_FLAGS ||
420 !tc_flags_valid(gen_flags)) {
421 ret = -EINVAL;
422 goto errout;
423 }
424 }
Daniel Borkmann045efa82015-09-15 23:05:42 -0700425
Daniel Borkmann045efa82015-09-15 23:05:42 -0700426 prog->exts_integrated = have_exts;
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100427 prog->gen_flags = gen_flags;
Daniel Borkmann045efa82015-09-15 23:05:42 -0700428
429 ret = is_bpf ? cls_bpf_prog_from_ops(tb, prog) :
Daniel Borkmannc46646d2015-09-30 01:41:51 +0200430 cls_bpf_prog_from_efd(tb, prog, tp);
WANG Congb9a24bb2016-08-19 12:36:54 -0700431 if (ret < 0)
432 goto errout;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100433
Daniel Borkmannef146fa2015-09-23 21:56:47 +0200434 if (tb[TCA_BPF_CLASSID]) {
435 prog->res.classid = nla_get_u32(tb[TCA_BPF_CLASSID]);
436 tcf_bind_filter(tp, &prog->res, base);
437 }
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100438
Daniel Borkmannef146fa2015-09-23 21:56:47 +0200439 tcf_exts_change(tp, &prog->exts, &exts);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100440 return 0;
WANG Congb9a24bb2016-08-19 12:36:54 -0700441
442errout:
443 tcf_exts_destroy(&exts);
444 return ret;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100445}
446
447static u32 cls_bpf_grab_new_handle(struct tcf_proto *tp,
448 struct cls_bpf_head *head)
449{
450 unsigned int i = 0x80000000;
Daniel Borkmann3f2ab132015-01-22 10:41:02 +0100451 u32 handle;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100452
453 do {
454 if (++head->hgen == 0x7FFFFFFF)
455 head->hgen = 1;
456 } while (--i > 0 && cls_bpf_get(tp, head->hgen));
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100457
Daniel Borkmann3f2ab132015-01-22 10:41:02 +0100458 if (unlikely(i == 0)) {
459 pr_err("Insufficient number of handles\n");
460 handle = 0;
461 } else {
462 handle = head->hgen;
463 }
464
465 return handle;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100466}
467
468static int cls_bpf_change(struct net *net, struct sk_buff *in_skb,
469 struct tcf_proto *tp, unsigned long base,
470 u32 handle, struct nlattr **tca,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700471 unsigned long *arg, bool ovr)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100472{
John Fastabend1f947bf2014-09-12 20:10:24 -0700473 struct cls_bpf_head *head = rtnl_dereference(tp->root);
474 struct cls_bpf_prog *oldprog = (struct cls_bpf_prog *) *arg;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100475 struct nlattr *tb[TCA_BPF_MAX + 1];
John Fastabend1f947bf2014-09-12 20:10:24 -0700476 struct cls_bpf_prog *prog;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100477 int ret;
478
479 if (tca[TCA_OPTIONS] == NULL)
480 return -EINVAL;
481
Johannes Bergfceb6432017-04-12 14:34:07 +0200482 ret = nla_parse_nested(tb, TCA_BPF_MAX, tca[TCA_OPTIONS], bpf_policy,
483 NULL);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100484 if (ret < 0)
485 return ret;
486
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100487 prog = kzalloc(sizeof(*prog), GFP_KERNEL);
John Fastabend1f947bf2014-09-12 20:10:24 -0700488 if (!prog)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100489 return -ENOBUFS;
490
WANG Congb9a24bb2016-08-19 12:36:54 -0700491 ret = tcf_exts_init(&prog->exts, TCA_BPF_ACT, TCA_BPF_POLICE);
492 if (ret < 0)
493 goto errout;
John Fastabend1f947bf2014-09-12 20:10:24 -0700494
495 if (oldprog) {
496 if (handle && oldprog->handle != handle) {
497 ret = -EINVAL;
498 goto errout;
499 }
500 }
501
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100502 if (handle == 0)
503 prog->handle = cls_bpf_grab_new_handle(tp, head);
504 else
505 prog->handle = handle;
506 if (prog->handle == 0) {
507 ret = -EINVAL;
508 goto errout;
509 }
510
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400511 ret = cls_bpf_modify_existing(net, tp, prog, base, tb, tca[TCA_RATE],
512 ovr);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100513 if (ret < 0)
514 goto errout;
515
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100516 ret = cls_bpf_offload(tp, prog, oldprog);
517 if (ret) {
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100518 __cls_bpf_delete_prog(prog);
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100519 return ret;
520 }
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100521
Or Gerlitz5cecb6c2017-02-16 10:31:16 +0200522 if (!tc_in_hw(prog->gen_flags))
523 prog->gen_flags |= TCA_CLS_FLAGS_NOT_IN_HW;
524
John Fastabend1f947bf2014-09-12 20:10:24 -0700525 if (oldprog) {
Daniel Borkmannf6bfc462015-07-17 22:38:43 +0200526 list_replace_rcu(&oldprog->link, &prog->link);
John Fastabend18cdb372014-10-05 21:28:52 -0700527 tcf_unbind_filter(tp, &oldprog->res);
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100528 call_rcu(&oldprog->rcu, cls_bpf_delete_prog_rcu);
John Fastabend1f947bf2014-09-12 20:10:24 -0700529 } else {
530 list_add_rcu(&prog->link, &head->plist);
531 }
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100532
533 *arg = (unsigned long) prog;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100534 return 0;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100535
WANG Congb9a24bb2016-08-19 12:36:54 -0700536errout:
537 tcf_exts_destroy(&prog->exts);
538 kfree(prog);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100539 return ret;
540}
541
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100542static int cls_bpf_dump_bpf_info(const struct cls_bpf_prog *prog,
543 struct sk_buff *skb)
544{
545 struct nlattr *nla;
546
547 if (nla_put_u16(skb, TCA_BPF_OPS_LEN, prog->bpf_num_ops))
548 return -EMSGSIZE;
549
550 nla = nla_reserve(skb, TCA_BPF_OPS, prog->bpf_num_ops *
551 sizeof(struct sock_filter));
552 if (nla == NULL)
553 return -EMSGSIZE;
554
555 memcpy(nla_data(nla), prog->bpf_ops, nla_len(nla));
556
557 return 0;
558}
559
560static int cls_bpf_dump_ebpf_info(const struct cls_bpf_prog *prog,
561 struct sk_buff *skb)
562{
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100563 struct nlattr *nla;
564
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100565 if (prog->bpf_name &&
566 nla_put_string(skb, TCA_BPF_NAME, prog->bpf_name))
567 return -EMSGSIZE;
568
Daniel Borkmanne8628302017-06-21 20:16:11 +0200569 if (nla_put_u32(skb, TCA_BPF_ID, prog->filter->aux->id))
570 return -EMSGSIZE;
571
Daniel Borkmannf1f77142017-01-13 23:38:15 +0100572 nla = nla_reserve(skb, TCA_BPF_TAG, sizeof(prog->filter->tag));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100573 if (nla == NULL)
574 return -EMSGSIZE;
575
Daniel Borkmannf1f77142017-01-13 23:38:15 +0100576 memcpy(nla_data(nla), prog->filter->tag, nla_len(nla));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100577
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100578 return 0;
579}
580
WANG Cong832d1d52014-01-09 16:14:01 -0800581static int cls_bpf_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100582 struct sk_buff *skb, struct tcmsg *tm)
583{
584 struct cls_bpf_prog *prog = (struct cls_bpf_prog *) fh;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100585 struct nlattr *nest;
Daniel Borkmannbf007d12015-09-23 21:56:46 +0200586 u32 bpf_flags = 0;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100587 int ret;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100588
589 if (prog == NULL)
590 return skb->len;
591
592 tm->tcm_handle = prog->handle;
593
Jakub Kicinski68d64062016-09-21 11:44:02 +0100594 cls_bpf_offload_update_stats(tp, prog);
595
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100596 nest = nla_nest_start(skb, TCA_OPTIONS);
597 if (nest == NULL)
598 goto nla_put_failure;
599
Daniel Borkmannef146fa2015-09-23 21:56:47 +0200600 if (prog->res.classid &&
601 nla_put_u32(skb, TCA_BPF_CLASSID, prog->res.classid))
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100602 goto nla_put_failure;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100603
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100604 if (cls_bpf_is_ebpf(prog))
605 ret = cls_bpf_dump_ebpf_info(prog, skb);
606 else
607 ret = cls_bpf_dump_bpf_info(prog, skb);
608 if (ret)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100609 goto nla_put_failure;
610
WANG Cong5da57f42013-12-15 20:15:07 -0800611 if (tcf_exts_dump(skb, &prog->exts) < 0)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100612 goto nla_put_failure;
613
Daniel Borkmannbf007d12015-09-23 21:56:46 +0200614 if (prog->exts_integrated)
615 bpf_flags |= TCA_BPF_FLAG_ACT_DIRECT;
616 if (bpf_flags && nla_put_u32(skb, TCA_BPF_FLAGS, bpf_flags))
617 goto nla_put_failure;
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100618 if (prog->gen_flags &&
619 nla_put_u32(skb, TCA_BPF_FLAGS_GEN, prog->gen_flags))
620 goto nla_put_failure;
Daniel Borkmannbf007d12015-09-23 21:56:46 +0200621
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100622 nla_nest_end(skb, nest);
623
WANG Cong5da57f42013-12-15 20:15:07 -0800624 if (tcf_exts_dump_stats(skb, &prog->exts) < 0)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100625 goto nla_put_failure;
626
627 return skb->len;
628
629nla_put_failure:
630 nla_nest_cancel(skb, nest);
631 return -1;
632}
633
634static void cls_bpf_walk(struct tcf_proto *tp, struct tcf_walker *arg)
635{
John Fastabend1f947bf2014-09-12 20:10:24 -0700636 struct cls_bpf_head *head = rtnl_dereference(tp->root);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100637 struct cls_bpf_prog *prog;
638
Jiri Pirko3fe6b492014-12-02 18:00:33 +0100639 list_for_each_entry(prog, &head->plist, link) {
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100640 if (arg->count < arg->skip)
641 goto skip;
642 if (arg->fn(tp, (unsigned long) prog, arg) < 0) {
643 arg->stop = 1;
644 break;
645 }
646skip:
647 arg->count++;
648 }
649}
650
651static struct tcf_proto_ops cls_bpf_ops __read_mostly = {
652 .kind = "bpf",
653 .owner = THIS_MODULE,
654 .classify = cls_bpf_classify,
655 .init = cls_bpf_init,
656 .destroy = cls_bpf_destroy,
657 .get = cls_bpf_get,
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100658 .change = cls_bpf_change,
659 .delete = cls_bpf_delete,
660 .walk = cls_bpf_walk,
661 .dump = cls_bpf_dump,
662};
663
664static int __init cls_bpf_init_mod(void)
665{
666 return register_tcf_proto_ops(&cls_bpf_ops);
667}
668
669static void __exit cls_bpf_exit_mod(void)
670{
671 unregister_tcf_proto_ops(&cls_bpf_ops);
672}
673
674module_init(cls_bpf_init_mod);
675module_exit(cls_bpf_exit_mod);