blob: 7ddd08efaa0f8dfdb40690e9e73d0cc2543dbd22 [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:
Alexei Starovoitov27b29f62015-09-15 23:05:43 -070073 case TC_ACT_REDIRECT:
Daniel Borkmann045efa82015-09-15 23:05:42 -070074 case TC_ACT_UNSPEC:
75 return code;
76 default:
77 return TC_ACT_UNSPEC;
78 }
79}
80
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010081static int cls_bpf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
82 struct tcf_result *res)
83{
WANG Cong80dcbd12014-09-15 14:21:50 -070084 struct cls_bpf_head *head = rcu_dereference_bh(tp->root);
Daniel Borkmannfdc54322016-01-07 15:50:22 +010085 bool at_ingress = skb_at_tc_ingress(skb);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010086 struct cls_bpf_prog *prog;
Daniel Borkmann54720df2015-03-12 20:03:12 +010087 int ret = -1;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +010088
Daniel Borkmann54720df2015-03-12 20:03:12 +010089 /* Needed here for accessing maps. */
90 rcu_read_lock();
John Fastabend1f947bf2014-09-12 20:10:24 -070091 list_for_each_entry_rcu(prog, &head->plist, link) {
Alexei Starovoitov34312052015-06-04 10:11:53 -070092 int filter_res;
93
Daniel Borkmann045efa82015-09-15 23:05:42 -070094 qdisc_skb_cb(skb)->tc_classid = prog->res.classid;
95
Jakub Kicinskieadb4142016-09-21 11:43:55 +010096 if (tc_skip_sw(prog->gen_flags)) {
97 filter_res = prog->exts_integrated ? TC_ACT_UNSPEC : 0;
98 } else if (at_ingress) {
Alexei Starovoitov34312052015-06-04 10:11:53 -070099 /* It is safe to push/pull even if skb_shared() */
100 __skb_push(skb, skb->mac_len);
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -0700101 bpf_compute_data_end(skb);
Alexei Starovoitov34312052015-06-04 10:11:53 -0700102 filter_res = BPF_PROG_RUN(prog->filter, skb);
103 __skb_pull(skb, skb->mac_len);
104 } else {
Alexei Starovoitovdb58ba42016-05-05 19:49:12 -0700105 bpf_compute_data_end(skb);
Alexei Starovoitov34312052015-06-04 10:11:53 -0700106 filter_res = BPF_PROG_RUN(prog->filter, skb);
107 }
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100108
Daniel Borkmann045efa82015-09-15 23:05:42 -0700109 if (prog->exts_integrated) {
Daniel Borkmann3a461da2016-03-15 22:41:22 +0100110 res->class = 0;
111 res->classid = TC_H_MAJ(prog->res.classid) |
112 qdisc_skb_cb(skb)->tc_classid;
Daniel Borkmann045efa82015-09-15 23:05:42 -0700113
114 ret = cls_bpf_exec_opcode(filter_res);
115 if (ret == TC_ACT_UNSPEC)
116 continue;
117 break;
118 }
119
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100120 if (filter_res == 0)
121 continue;
Daniel Borkmann3a461da2016-03-15 22:41:22 +0100122 if (filter_res != -1) {
123 res->class = 0;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100124 res->classid = filter_res;
Daniel Borkmann3a461da2016-03-15 22:41:22 +0100125 } else {
126 *res = prog->res;
127 }
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100128
129 ret = tcf_exts_exec(skb, &prog->exts, res);
130 if (ret < 0)
131 continue;
132
Daniel Borkmann54720df2015-03-12 20:03:12 +0100133 break;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100134 }
Daniel Borkmann54720df2015-03-12 20:03:12 +0100135 rcu_read_unlock();
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100136
Daniel Borkmann54720df2015-03-12 20:03:12 +0100137 return ret;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100138}
139
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100140static bool cls_bpf_is_ebpf(const struct cls_bpf_prog *prog)
141{
142 return !prog->bpf_ops;
143}
144
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100145static int cls_bpf_offload_cmd(struct tcf_proto *tp, struct cls_bpf_prog *prog,
146 enum tc_clsbpf_command cmd)
147{
148 struct net_device *dev = tp->q->dev_queue->dev;
149 struct tc_cls_bpf_offload bpf_offload = {};
150 struct tc_to_netdev offload;
Or Gerlitz5cecb6c2017-02-16 10:31:16 +0200151 int err;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100152
153 offload.type = TC_SETUP_CLSBPF;
154 offload.cls_bpf = &bpf_offload;
155
156 bpf_offload.command = cmd;
157 bpf_offload.exts = &prog->exts;
158 bpf_offload.prog = prog->filter;
159 bpf_offload.name = prog->bpf_name;
160 bpf_offload.exts_integrated = prog->exts_integrated;
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100161 bpf_offload.gen_flags = prog->gen_flags;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100162
Or Gerlitz5cecb6c2017-02-16 10:31:16 +0200163 err = dev->netdev_ops->ndo_setup_tc(dev, tp->q->handle,
164 tp->protocol, &offload);
165
166 if (!err && (cmd == TC_CLSBPF_ADD || cmd == TC_CLSBPF_REPLACE))
167 prog->gen_flags |= TCA_CLS_FLAGS_IN_HW;
168
169 return err;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100170}
171
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100172static int cls_bpf_offload(struct tcf_proto *tp, struct cls_bpf_prog *prog,
173 struct cls_bpf_prog *oldprog)
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100174{
175 struct net_device *dev = tp->q->dev_queue->dev;
176 struct cls_bpf_prog *obj = prog;
177 enum tc_clsbpf_command cmd;
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100178 bool skip_sw;
179 int ret;
180
181 skip_sw = tc_skip_sw(prog->gen_flags) ||
182 (oldprog && tc_skip_sw(oldprog->gen_flags));
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100183
184 if (oldprog && oldprog->offloaded) {
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100185 if (tc_should_offload(dev, tp, prog->gen_flags)) {
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100186 cmd = TC_CLSBPF_REPLACE;
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100187 } else if (!tc_skip_sw(prog->gen_flags)) {
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100188 obj = oldprog;
189 cmd = TC_CLSBPF_DESTROY;
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100190 } else {
191 return -EINVAL;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100192 }
193 } else {
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100194 if (!tc_should_offload(dev, tp, prog->gen_flags))
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100195 return skip_sw ? -EINVAL : 0;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100196 cmd = TC_CLSBPF_ADD;
197 }
198
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100199 ret = cls_bpf_offload_cmd(tp, obj, cmd);
200 if (ret)
201 return skip_sw ? ret : 0;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100202
203 obj->offloaded = true;
204 if (oldprog)
205 oldprog->offloaded = false;
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100206
207 return 0;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100208}
209
210static void cls_bpf_stop_offload(struct tcf_proto *tp,
211 struct cls_bpf_prog *prog)
212{
213 int err;
214
215 if (!prog->offloaded)
216 return;
217
218 err = cls_bpf_offload_cmd(tp, prog, TC_CLSBPF_DESTROY);
219 if (err) {
220 pr_err("Stopping hardware offload failed: %d\n", err);
221 return;
222 }
223
224 prog->offloaded = false;
225}
226
Jakub Kicinski68d64062016-09-21 11:44:02 +0100227static void cls_bpf_offload_update_stats(struct tcf_proto *tp,
228 struct cls_bpf_prog *prog)
229{
230 if (!prog->offloaded)
231 return;
232
233 cls_bpf_offload_cmd(tp, prog, TC_CLSBPF_STATS);
234}
235
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100236static int cls_bpf_init(struct tcf_proto *tp)
237{
238 struct cls_bpf_head *head;
239
240 head = kzalloc(sizeof(*head), GFP_KERNEL);
241 if (head == NULL)
242 return -ENOBUFS;
243
John Fastabend1f947bf2014-09-12 20:10:24 -0700244 INIT_LIST_HEAD_RCU(&head->plist);
245 rcu_assign_pointer(tp->root, head);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100246
247 return 0;
248}
249
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100250static void __cls_bpf_delete_prog(struct cls_bpf_prog *prog)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100251{
WANG Cong18d02642014-09-25 10:26:37 -0700252 tcf_exts_destroy(&prog->exts);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100253
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100254 if (cls_bpf_is_ebpf(prog))
255 bpf_prog_put(prog->filter);
256 else
257 bpf_prog_destroy(prog->filter);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100258
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100259 kfree(prog->bpf_name);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100260 kfree(prog->bpf_ops);
261 kfree(prog);
262}
263
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100264static void cls_bpf_delete_prog_rcu(struct rcu_head *rcu)
John Fastabend1f947bf2014-09-12 20:10:24 -0700265{
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100266 __cls_bpf_delete_prog(container_of(rcu, struct cls_bpf_prog, rcu));
267}
John Fastabend1f947bf2014-09-12 20:10:24 -0700268
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100269static void __cls_bpf_delete(struct tcf_proto *tp, struct cls_bpf_prog *prog)
270{
271 cls_bpf_stop_offload(tp, prog);
272 list_del_rcu(&prog->link);
273 tcf_unbind_filter(tp, &prog->res);
274 call_rcu(&prog->rcu, cls_bpf_delete_prog_rcu);
John Fastabend1f947bf2014-09-12 20:10:24 -0700275}
276
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100277static int cls_bpf_delete(struct tcf_proto *tp, unsigned long arg)
278{
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100279 __cls_bpf_delete(tp, (struct cls_bpf_prog *) arg);
Jiri Pirko472f5832014-12-02 18:00:32 +0100280 return 0;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100281}
282
Cong Wang1e052be2015-03-06 11:47:59 -0800283static bool cls_bpf_destroy(struct tcf_proto *tp, bool force)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100284{
John Fastabend1f947bf2014-09-12 20:10:24 -0700285 struct cls_bpf_head *head = rtnl_dereference(tp->root);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100286 struct cls_bpf_prog *prog, *tmp;
287
Cong Wang1e052be2015-03-06 11:47:59 -0800288 if (!force && !list_empty(&head->plist))
289 return false;
290
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100291 list_for_each_entry_safe(prog, tmp, &head->plist, link)
292 __cls_bpf_delete(tp, prog);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100293
John Fastabend1f947bf2014-09-12 20:10:24 -0700294 kfree_rcu(head, rcu);
Cong Wang1e052be2015-03-06 11:47:59 -0800295 return true;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100296}
297
298static unsigned long cls_bpf_get(struct tcf_proto *tp, u32 handle)
299{
John Fastabend1f947bf2014-09-12 20:10:24 -0700300 struct cls_bpf_head *head = rtnl_dereference(tp->root);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100301 struct cls_bpf_prog *prog;
302 unsigned long ret = 0UL;
303
Jiri Pirko3fe6b492014-12-02 18:00:33 +0100304 list_for_each_entry(prog, &head->plist, link) {
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100305 if (prog->handle == handle) {
306 ret = (unsigned long) prog;
307 break;
308 }
309 }
310
311 return ret;
312}
313
Daniel Borkmann045efa82015-09-15 23:05:42 -0700314static int cls_bpf_prog_from_ops(struct nlattr **tb, struct cls_bpf_prog *prog)
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100315{
316 struct sock_filter *bpf_ops;
317 struct sock_fprog_kern fprog_tmp;
318 struct bpf_prog *fp;
319 u16 bpf_size, bpf_num_ops;
320 int ret;
321
322 bpf_num_ops = nla_get_u16(tb[TCA_BPF_OPS_LEN]);
323 if (bpf_num_ops > BPF_MAXINSNS || bpf_num_ops == 0)
324 return -EINVAL;
325
326 bpf_size = bpf_num_ops * sizeof(*bpf_ops);
327 if (bpf_size != nla_len(tb[TCA_BPF_OPS]))
328 return -EINVAL;
329
330 bpf_ops = kzalloc(bpf_size, GFP_KERNEL);
331 if (bpf_ops == NULL)
332 return -ENOMEM;
333
334 memcpy(bpf_ops, nla_data(tb[TCA_BPF_OPS]), bpf_size);
335
336 fprog_tmp.len = bpf_num_ops;
337 fprog_tmp.filter = bpf_ops;
338
339 ret = bpf_prog_create(&fp, &fprog_tmp);
340 if (ret < 0) {
341 kfree(bpf_ops);
342 return ret;
343 }
344
345 prog->bpf_ops = bpf_ops;
346 prog->bpf_num_ops = bpf_num_ops;
347 prog->bpf_name = NULL;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100348 prog->filter = fp;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100349
350 return 0;
351}
352
Daniel Borkmannc46646d2015-09-30 01:41:51 +0200353static int cls_bpf_prog_from_efd(struct nlattr **tb, struct cls_bpf_prog *prog,
354 const struct tcf_proto *tp)
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100355{
356 struct bpf_prog *fp;
357 char *name = NULL;
358 u32 bpf_fd;
359
360 bpf_fd = nla_get_u32(tb[TCA_BPF_FD]);
361
Daniel Borkmann113214b2016-06-30 17:24:44 +0200362 fp = bpf_prog_get_type(bpf_fd, BPF_PROG_TYPE_SCHED_CLS);
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100363 if (IS_ERR(fp))
364 return PTR_ERR(fp);
365
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100366 if (tb[TCA_BPF_NAME]) {
Thomas Grafb15ca182016-10-26 10:53:16 +0200367 name = nla_memdup(tb[TCA_BPF_NAME], GFP_KERNEL);
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100368 if (!name) {
369 bpf_prog_put(fp);
370 return -ENOMEM;
371 }
372 }
373
374 prog->bpf_ops = NULL;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100375 prog->bpf_name = name;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100376 prog->filter = fp;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100377
Daniel Borkmann1f211a12016-01-07 22:29:47 +0100378 if (fp->dst_needed && !(tp->q->flags & TCQ_F_INGRESS))
Daniel Borkmannc46646d2015-09-30 01:41:51 +0200379 netif_keep_dst(qdisc_dev(tp->q));
380
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100381 return 0;
382}
383
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100384static int cls_bpf_modify_existing(struct net *net, struct tcf_proto *tp,
385 struct cls_bpf_prog *prog,
386 unsigned long base, struct nlattr **tb,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700387 struct nlattr *est, bool ovr)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100388{
Daniel Borkmann045efa82015-09-15 23:05:42 -0700389 bool is_bpf, is_ebpf, have_exts = false;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100390 struct tcf_exts exts;
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100391 u32 gen_flags = 0;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100392 int ret;
393
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100394 is_bpf = tb[TCA_BPF_OPS_LEN] && tb[TCA_BPF_OPS];
395 is_ebpf = tb[TCA_BPF_FD];
Daniel Borkmannef146fa2015-09-23 21:56:47 +0200396 if ((!is_bpf && !is_ebpf) || (is_bpf && is_ebpf))
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100397 return -EINVAL;
398
WANG Congb9a24bb2016-08-19 12:36:54 -0700399 ret = tcf_exts_init(&exts, TCA_BPF_ACT, TCA_BPF_POLICE);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100400 if (ret < 0)
401 return ret;
WANG Congb9a24bb2016-08-19 12:36:54 -0700402 ret = tcf_exts_validate(net, tp, tb, est, &exts, ovr);
403 if (ret < 0)
404 goto errout;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100405
Daniel Borkmann045efa82015-09-15 23:05:42 -0700406 if (tb[TCA_BPF_FLAGS]) {
407 u32 bpf_flags = nla_get_u32(tb[TCA_BPF_FLAGS]);
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100408
Daniel Borkmann045efa82015-09-15 23:05:42 -0700409 if (bpf_flags & ~TCA_BPF_FLAG_ACT_DIRECT) {
WANG Congb9a24bb2016-08-19 12:36:54 -0700410 ret = -EINVAL;
411 goto errout;
Daniel Borkmann045efa82015-09-15 23:05:42 -0700412 }
413
414 have_exts = bpf_flags & TCA_BPF_FLAG_ACT_DIRECT;
415 }
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100416 if (tb[TCA_BPF_FLAGS_GEN]) {
417 gen_flags = nla_get_u32(tb[TCA_BPF_FLAGS_GEN]);
418 if (gen_flags & ~CLS_BPF_SUPPORTED_GEN_FLAGS ||
419 !tc_flags_valid(gen_flags)) {
420 ret = -EINVAL;
421 goto errout;
422 }
423 }
Daniel Borkmann045efa82015-09-15 23:05:42 -0700424
Daniel Borkmann045efa82015-09-15 23:05:42 -0700425 prog->exts_integrated = have_exts;
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100426 prog->gen_flags = gen_flags;
Daniel Borkmann045efa82015-09-15 23:05:42 -0700427
428 ret = is_bpf ? cls_bpf_prog_from_ops(tb, prog) :
Daniel Borkmannc46646d2015-09-30 01:41:51 +0200429 cls_bpf_prog_from_efd(tb, prog, tp);
WANG Congb9a24bb2016-08-19 12:36:54 -0700430 if (ret < 0)
431 goto errout;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100432
Daniel Borkmannef146fa2015-09-23 21:56:47 +0200433 if (tb[TCA_BPF_CLASSID]) {
434 prog->res.classid = nla_get_u32(tb[TCA_BPF_CLASSID]);
435 tcf_bind_filter(tp, &prog->res, base);
436 }
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100437
Daniel Borkmannef146fa2015-09-23 21:56:47 +0200438 tcf_exts_change(tp, &prog->exts, &exts);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100439 return 0;
WANG Congb9a24bb2016-08-19 12:36:54 -0700440
441errout:
442 tcf_exts_destroy(&exts);
443 return ret;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100444}
445
446static u32 cls_bpf_grab_new_handle(struct tcf_proto *tp,
447 struct cls_bpf_head *head)
448{
449 unsigned int i = 0x80000000;
Daniel Borkmann3f2ab132015-01-22 10:41:02 +0100450 u32 handle;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100451
452 do {
453 if (++head->hgen == 0x7FFFFFFF)
454 head->hgen = 1;
455 } while (--i > 0 && cls_bpf_get(tp, head->hgen));
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100456
Daniel Borkmann3f2ab132015-01-22 10:41:02 +0100457 if (unlikely(i == 0)) {
458 pr_err("Insufficient number of handles\n");
459 handle = 0;
460 } else {
461 handle = head->hgen;
462 }
463
464 return handle;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100465}
466
467static int cls_bpf_change(struct net *net, struct sk_buff *in_skb,
468 struct tcf_proto *tp, unsigned long base,
469 u32 handle, struct nlattr **tca,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700470 unsigned long *arg, bool ovr)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100471{
John Fastabend1f947bf2014-09-12 20:10:24 -0700472 struct cls_bpf_head *head = rtnl_dereference(tp->root);
473 struct cls_bpf_prog *oldprog = (struct cls_bpf_prog *) *arg;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100474 struct nlattr *tb[TCA_BPF_MAX + 1];
John Fastabend1f947bf2014-09-12 20:10:24 -0700475 struct cls_bpf_prog *prog;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100476 int ret;
477
478 if (tca[TCA_OPTIONS] == NULL)
479 return -EINVAL;
480
Johannes Bergfceb6432017-04-12 14:34:07 +0200481 ret = nla_parse_nested(tb, TCA_BPF_MAX, tca[TCA_OPTIONS], bpf_policy,
482 NULL);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100483 if (ret < 0)
484 return ret;
485
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100486 prog = kzalloc(sizeof(*prog), GFP_KERNEL);
John Fastabend1f947bf2014-09-12 20:10:24 -0700487 if (!prog)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100488 return -ENOBUFS;
489
WANG Congb9a24bb2016-08-19 12:36:54 -0700490 ret = tcf_exts_init(&prog->exts, TCA_BPF_ACT, TCA_BPF_POLICE);
491 if (ret < 0)
492 goto errout;
John Fastabend1f947bf2014-09-12 20:10:24 -0700493
494 if (oldprog) {
495 if (handle && oldprog->handle != handle) {
496 ret = -EINVAL;
497 goto errout;
498 }
499 }
500
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100501 if (handle == 0)
502 prog->handle = cls_bpf_grab_new_handle(tp, head);
503 else
504 prog->handle = handle;
505 if (prog->handle == 0) {
506 ret = -EINVAL;
507 goto errout;
508 }
509
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400510 ret = cls_bpf_modify_existing(net, tp, prog, base, tb, tca[TCA_RATE],
511 ovr);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100512 if (ret < 0)
513 goto errout;
514
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100515 ret = cls_bpf_offload(tp, prog, oldprog);
516 if (ret) {
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100517 __cls_bpf_delete_prog(prog);
Jakub Kicinskieadb4142016-09-21 11:43:55 +0100518 return ret;
519 }
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100520
Or Gerlitz5cecb6c2017-02-16 10:31:16 +0200521 if (!tc_in_hw(prog->gen_flags))
522 prog->gen_flags |= TCA_CLS_FLAGS_NOT_IN_HW;
523
John Fastabend1f947bf2014-09-12 20:10:24 -0700524 if (oldprog) {
Daniel Borkmannf6bfc462015-07-17 22:38:43 +0200525 list_replace_rcu(&oldprog->link, &prog->link);
John Fastabend18cdb372014-10-05 21:28:52 -0700526 tcf_unbind_filter(tp, &oldprog->res);
Daniel Borkmann8d829bd2016-12-04 23:19:40 +0100527 call_rcu(&oldprog->rcu, cls_bpf_delete_prog_rcu);
John Fastabend1f947bf2014-09-12 20:10:24 -0700528 } else {
529 list_add_rcu(&prog->link, &head->plist);
530 }
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100531
532 *arg = (unsigned long) prog;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100533 return 0;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100534
WANG Congb9a24bb2016-08-19 12:36:54 -0700535errout:
536 tcf_exts_destroy(&prog->exts);
537 kfree(prog);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100538 return ret;
539}
540
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100541static int cls_bpf_dump_bpf_info(const struct cls_bpf_prog *prog,
542 struct sk_buff *skb)
543{
544 struct nlattr *nla;
545
546 if (nla_put_u16(skb, TCA_BPF_OPS_LEN, prog->bpf_num_ops))
547 return -EMSGSIZE;
548
549 nla = nla_reserve(skb, TCA_BPF_OPS, prog->bpf_num_ops *
550 sizeof(struct sock_filter));
551 if (nla == NULL)
552 return -EMSGSIZE;
553
554 memcpy(nla_data(nla), prog->bpf_ops, nla_len(nla));
555
556 return 0;
557}
558
559static int cls_bpf_dump_ebpf_info(const struct cls_bpf_prog *prog,
560 struct sk_buff *skb)
561{
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100562 struct nlattr *nla;
563
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100564 if (prog->bpf_name &&
565 nla_put_string(skb, TCA_BPF_NAME, prog->bpf_name))
566 return -EMSGSIZE;
567
Daniel Borkmannf1f77142017-01-13 23:38:15 +0100568 nla = nla_reserve(skb, TCA_BPF_TAG, sizeof(prog->filter->tag));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100569 if (nla == NULL)
570 return -EMSGSIZE;
571
Daniel Borkmannf1f77142017-01-13 23:38:15 +0100572 memcpy(nla_data(nla), prog->filter->tag, nla_len(nla));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100573
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100574 return 0;
575}
576
WANG Cong832d1d52014-01-09 16:14:01 -0800577static int cls_bpf_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100578 struct sk_buff *skb, struct tcmsg *tm)
579{
580 struct cls_bpf_prog *prog = (struct cls_bpf_prog *) fh;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100581 struct nlattr *nest;
Daniel Borkmannbf007d12015-09-23 21:56:46 +0200582 u32 bpf_flags = 0;
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100583 int ret;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100584
585 if (prog == NULL)
586 return skb->len;
587
588 tm->tcm_handle = prog->handle;
589
Jakub Kicinski68d64062016-09-21 11:44:02 +0100590 cls_bpf_offload_update_stats(tp, prog);
591
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100592 nest = nla_nest_start(skb, TCA_OPTIONS);
593 if (nest == NULL)
594 goto nla_put_failure;
595
Daniel Borkmannef146fa2015-09-23 21:56:47 +0200596 if (prog->res.classid &&
597 nla_put_u32(skb, TCA_BPF_CLASSID, prog->res.classid))
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100598 goto nla_put_failure;
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100599
Daniel Borkmanne2e9b652015-03-01 12:31:48 +0100600 if (cls_bpf_is_ebpf(prog))
601 ret = cls_bpf_dump_ebpf_info(prog, skb);
602 else
603 ret = cls_bpf_dump_bpf_info(prog, skb);
604 if (ret)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100605 goto nla_put_failure;
606
WANG Cong5da57f42013-12-15 20:15:07 -0800607 if (tcf_exts_dump(skb, &prog->exts) < 0)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100608 goto nla_put_failure;
609
Daniel Borkmannbf007d12015-09-23 21:56:46 +0200610 if (prog->exts_integrated)
611 bpf_flags |= TCA_BPF_FLAG_ACT_DIRECT;
612 if (bpf_flags && nla_put_u32(skb, TCA_BPF_FLAGS, bpf_flags))
613 goto nla_put_failure;
Jakub Kicinski0d01d452016-09-21 11:43:54 +0100614 if (prog->gen_flags &&
615 nla_put_u32(skb, TCA_BPF_FLAGS_GEN, prog->gen_flags))
616 goto nla_put_failure;
Daniel Borkmannbf007d12015-09-23 21:56:46 +0200617
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100618 nla_nest_end(skb, nest);
619
WANG Cong5da57f42013-12-15 20:15:07 -0800620 if (tcf_exts_dump_stats(skb, &prog->exts) < 0)
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100621 goto nla_put_failure;
622
623 return skb->len;
624
625nla_put_failure:
626 nla_nest_cancel(skb, nest);
627 return -1;
628}
629
630static void cls_bpf_walk(struct tcf_proto *tp, struct tcf_walker *arg)
631{
John Fastabend1f947bf2014-09-12 20:10:24 -0700632 struct cls_bpf_head *head = rtnl_dereference(tp->root);
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100633 struct cls_bpf_prog *prog;
634
Jiri Pirko3fe6b492014-12-02 18:00:33 +0100635 list_for_each_entry(prog, &head->plist, link) {
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100636 if (arg->count < arg->skip)
637 goto skip;
638 if (arg->fn(tp, (unsigned long) prog, arg) < 0) {
639 arg->stop = 1;
640 break;
641 }
642skip:
643 arg->count++;
644 }
645}
646
647static struct tcf_proto_ops cls_bpf_ops __read_mostly = {
648 .kind = "bpf",
649 .owner = THIS_MODULE,
650 .classify = cls_bpf_classify,
651 .init = cls_bpf_init,
652 .destroy = cls_bpf_destroy,
653 .get = cls_bpf_get,
Daniel Borkmann7d1d65c2013-10-28 16:43:02 +0100654 .change = cls_bpf_change,
655 .delete = cls_bpf_delete,
656 .walk = cls_bpf_walk,
657 .dump = cls_bpf_dump,
658};
659
660static int __init cls_bpf_init_mod(void)
661{
662 return register_tcf_proto_ops(&cls_bpf_ops);
663}
664
665static void __exit cls_bpf_exit_mod(void)
666{
667 unregister_tcf_proto_ops(&cls_bpf_ops);
668}
669
670module_init(cls_bpf_init_mod);
671module_exit(cls_bpf_exit_mod);