]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - net/sched/cls_bpf.c
net: sched: change return value of ndo_setup_tc for driver supporting mqprio only
[thirdparty/kernel/stable.git] / net / sched / cls_bpf.c
CommitLineData
7d1d65cb
DB
1/*
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>
e2e9b654
DB
19#include <linux/bpf.h>
20
7d1d65cb
DB
21#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
e2e9b654 29#define CLS_BPF_NAME_LEN 256
0d01d45f 30#define CLS_BPF_SUPPORTED_GEN_FLAGS \
eadb4148 31 (TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW)
e2e9b654 32
7d1d65cb
DB
33struct cls_bpf_head {
34 struct list_head plist;
35 u32 hgen;
1f947bf1 36 struct rcu_head rcu;
7d1d65cb
DB
37};
38
39struct cls_bpf_prog {
7ae457c1 40 struct bpf_prog *filter;
7d1d65cb 41 struct list_head link;
e2e9b654 42 struct tcf_result res;
045efa82 43 bool exts_integrated;
332ae8e2 44 bool offloaded;
0d01d45f 45 u32 gen_flags;
e2e9b654 46 struct tcf_exts exts;
7d1d65cb 47 u32 handle;
55556dd5 48 u16 bpf_num_ops;
e2e9b654
DB
49 struct sock_filter *bpf_ops;
50 const char *bpf_name;
1f947bf1
JF
51 struct tcf_proto *tp;
52 struct rcu_head rcu;
7d1d65cb
DB
53};
54
55static const struct nla_policy bpf_policy[TCA_BPF_MAX + 1] = {
56 [TCA_BPF_CLASSID] = { .type = NLA_U32 },
045efa82 57 [TCA_BPF_FLAGS] = { .type = NLA_U32 },
0d01d45f 58 [TCA_BPF_FLAGS_GEN] = { .type = NLA_U32 },
e2e9b654 59 [TCA_BPF_FD] = { .type = NLA_U32 },
5a7a5555
JHS
60 [TCA_BPF_NAME] = { .type = NLA_NUL_STRING,
61 .len = CLS_BPF_NAME_LEN },
7d1d65cb
DB
62 [TCA_BPF_OPS_LEN] = { .type = NLA_U16 },
63 [TCA_BPF_OPS] = { .type = NLA_BINARY,
64 .len = sizeof(struct sock_filter) * BPF_MAXINSNS },
65};
66
045efa82
DB
67static int cls_bpf_exec_opcode(int code)
68{
69 switch (code) {
70 case TC_ACT_OK:
045efa82 71 case TC_ACT_SHOT:
045efa82 72 case TC_ACT_STOLEN:
e25ea21f 73 case TC_ACT_TRAP:
27b29f63 74 case TC_ACT_REDIRECT:
045efa82
DB
75 case TC_ACT_UNSPEC:
76 return code;
77 default:
78 return TC_ACT_UNSPEC;
79 }
80}
81
7d1d65cb
DB
82static int cls_bpf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
83 struct tcf_result *res)
84{
80dcbd12 85 struct cls_bpf_head *head = rcu_dereference_bh(tp->root);
fdc5432a 86 bool at_ingress = skb_at_tc_ingress(skb);
7d1d65cb 87 struct cls_bpf_prog *prog;
54720df1 88 int ret = -1;
7d1d65cb 89
54720df1
DB
90 /* Needed here for accessing maps. */
91 rcu_read_lock();
1f947bf1 92 list_for_each_entry_rcu(prog, &head->plist, link) {
3431205e
AS
93 int filter_res;
94
045efa82
DB
95 qdisc_skb_cb(skb)->tc_classid = prog->res.classid;
96
eadb4148
JK
97 if (tc_skip_sw(prog->gen_flags)) {
98 filter_res = prog->exts_integrated ? TC_ACT_UNSPEC : 0;
99 } else if (at_ingress) {
3431205e
AS
100 /* It is safe to push/pull even if skb_shared() */
101 __skb_push(skb, skb->mac_len);
db58ba45 102 bpf_compute_data_end(skb);
3431205e
AS
103 filter_res = BPF_PROG_RUN(prog->filter, skb);
104 __skb_pull(skb, skb->mac_len);
105 } else {
db58ba45 106 bpf_compute_data_end(skb);
3431205e
AS
107 filter_res = BPF_PROG_RUN(prog->filter, skb);
108 }
7d1d65cb 109
045efa82 110 if (prog->exts_integrated) {
3a461da1
DB
111 res->class = 0;
112 res->classid = TC_H_MAJ(prog->res.classid) |
113 qdisc_skb_cb(skb)->tc_classid;
045efa82
DB
114
115 ret = cls_bpf_exec_opcode(filter_res);
116 if (ret == TC_ACT_UNSPEC)
117 continue;
118 break;
119 }
120
7d1d65cb
DB
121 if (filter_res == 0)
122 continue;
3a461da1
DB
123 if (filter_res != -1) {
124 res->class = 0;
7d1d65cb 125 res->classid = filter_res;
3a461da1
DB
126 } else {
127 *res = prog->res;
128 }
7d1d65cb
DB
129
130 ret = tcf_exts_exec(skb, &prog->exts, res);
131 if (ret < 0)
132 continue;
133
54720df1 134 break;
7d1d65cb 135 }
54720df1 136 rcu_read_unlock();
7d1d65cb 137
54720df1 138 return ret;
7d1d65cb
DB
139}
140
e2e9b654
DB
141static bool cls_bpf_is_ebpf(const struct cls_bpf_prog *prog)
142{
143 return !prog->bpf_ops;
144}
145
332ae8e2
JK
146static 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;
5cecb6cc 152 int err;
332ae8e2 153
332ae8e2
JK
154 offload.cls_bpf = &bpf_offload;
155
5fd9fc4e 156 tc_cls_common_offload_init(&bpf_offload.common, tp);
332ae8e2
JK
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;
0d01d45f 162 bpf_offload.gen_flags = prog->gen_flags;
332ae8e2 163
5fd9fc4e 164 err = dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_CLSBPF, &offload);
5cecb6cc
OG
165 if (!err && (cmd == TC_CLSBPF_ADD || cmd == TC_CLSBPF_REPLACE))
166 prog->gen_flags |= TCA_CLS_FLAGS_IN_HW;
167
168 return err;
332ae8e2
JK
169}
170
eadb4148
JK
171static int cls_bpf_offload(struct tcf_proto *tp, struct cls_bpf_prog *prog,
172 struct cls_bpf_prog *oldprog)
332ae8e2
JK
173{
174 struct net_device *dev = tp->q->dev_queue->dev;
175 struct cls_bpf_prog *obj = prog;
176 enum tc_clsbpf_command cmd;
eadb4148
JK
177 bool skip_sw;
178 int ret;
179
180 skip_sw = tc_skip_sw(prog->gen_flags) ||
181 (oldprog && tc_skip_sw(oldprog->gen_flags));
332ae8e2
JK
182
183 if (oldprog && oldprog->offloaded) {
0d01d45f 184 if (tc_should_offload(dev, tp, prog->gen_flags)) {
332ae8e2 185 cmd = TC_CLSBPF_REPLACE;
eadb4148 186 } else if (!tc_skip_sw(prog->gen_flags)) {
332ae8e2
JK
187 obj = oldprog;
188 cmd = TC_CLSBPF_DESTROY;
eadb4148
JK
189 } else {
190 return -EINVAL;
332ae8e2
JK
191 }
192 } else {
0d01d45f 193 if (!tc_should_offload(dev, tp, prog->gen_flags))
eadb4148 194 return skip_sw ? -EINVAL : 0;
332ae8e2
JK
195 cmd = TC_CLSBPF_ADD;
196 }
197
eadb4148
JK
198 ret = cls_bpf_offload_cmd(tp, obj, cmd);
199 if (ret)
200 return skip_sw ? ret : 0;
332ae8e2
JK
201
202 obj->offloaded = true;
203 if (oldprog)
204 oldprog->offloaded = false;
eadb4148
JK
205
206 return 0;
332ae8e2
JK
207}
208
209static void cls_bpf_stop_offload(struct tcf_proto *tp,
210 struct cls_bpf_prog *prog)
211{
212 int err;
213
214 if (!prog->offloaded)
215 return;
216
217 err = cls_bpf_offload_cmd(tp, prog, TC_CLSBPF_DESTROY);
218 if (err) {
219 pr_err("Stopping hardware offload failed: %d\n", err);
220 return;
221 }
222
223 prog->offloaded = false;
224}
225
68d64063
JK
226static void cls_bpf_offload_update_stats(struct tcf_proto *tp,
227 struct cls_bpf_prog *prog)
228{
229 if (!prog->offloaded)
230 return;
231
232 cls_bpf_offload_cmd(tp, prog, TC_CLSBPF_STATS);
233}
234
7d1d65cb
DB
235static int cls_bpf_init(struct tcf_proto *tp)
236{
237 struct cls_bpf_head *head;
238
239 head = kzalloc(sizeof(*head), GFP_KERNEL);
240 if (head == NULL)
241 return -ENOBUFS;
242
1f947bf1
JF
243 INIT_LIST_HEAD_RCU(&head->plist);
244 rcu_assign_pointer(tp->root, head);
7d1d65cb
DB
245
246 return 0;
247}
248
8d829bdb 249static void __cls_bpf_delete_prog(struct cls_bpf_prog *prog)
7d1d65cb 250{
18d0264f 251 tcf_exts_destroy(&prog->exts);
7d1d65cb 252
e2e9b654
DB
253 if (cls_bpf_is_ebpf(prog))
254 bpf_prog_put(prog->filter);
255 else
256 bpf_prog_destroy(prog->filter);
7d1d65cb 257
e2e9b654 258 kfree(prog->bpf_name);
7d1d65cb
DB
259 kfree(prog->bpf_ops);
260 kfree(prog);
261}
262
8d829bdb 263static void cls_bpf_delete_prog_rcu(struct rcu_head *rcu)
1f947bf1 264{
8d829bdb 265 __cls_bpf_delete_prog(container_of(rcu, struct cls_bpf_prog, rcu));
1f947bf1
JF
266}
267
8d829bdb 268static void __cls_bpf_delete(struct tcf_proto *tp, struct cls_bpf_prog *prog)
7d1d65cb 269{
332ae8e2 270 cls_bpf_stop_offload(tp, prog);
472f5837
JP
271 list_del_rcu(&prog->link);
272 tcf_unbind_filter(tp, &prog->res);
8d829bdb
DB
273 call_rcu(&prog->rcu, cls_bpf_delete_prog_rcu);
274}
e2e9b654 275
763dbf63 276static int cls_bpf_delete(struct tcf_proto *tp, unsigned long arg, bool *last)
8d829bdb 277{
763dbf63
WC
278 struct cls_bpf_head *head = rtnl_dereference(tp->root);
279
8d829bdb 280 __cls_bpf_delete(tp, (struct cls_bpf_prog *) arg);
763dbf63 281 *last = list_empty(&head->plist);
472f5837 282 return 0;
7d1d65cb
DB
283}
284
763dbf63 285static void cls_bpf_destroy(struct tcf_proto *tp)
7d1d65cb 286{
1f947bf1 287 struct cls_bpf_head *head = rtnl_dereference(tp->root);
7d1d65cb
DB
288 struct cls_bpf_prog *prog, *tmp;
289
8d829bdb
DB
290 list_for_each_entry_safe(prog, tmp, &head->plist, link)
291 __cls_bpf_delete(tp, prog);
7d1d65cb 292
1f947bf1 293 kfree_rcu(head, rcu);
7d1d65cb
DB
294}
295
296static unsigned long cls_bpf_get(struct tcf_proto *tp, u32 handle)
297{
1f947bf1 298 struct cls_bpf_head *head = rtnl_dereference(tp->root);
7d1d65cb
DB
299 struct cls_bpf_prog *prog;
300 unsigned long ret = 0UL;
301
3fe6b49e 302 list_for_each_entry(prog, &head->plist, link) {
7d1d65cb
DB
303 if (prog->handle == handle) {
304 ret = (unsigned long) prog;
305 break;
306 }
307 }
308
309 return ret;
310}
311
045efa82 312static int cls_bpf_prog_from_ops(struct nlattr **tb, struct cls_bpf_prog *prog)
7d1d65cb 313{
1f947bf1 314 struct sock_filter *bpf_ops;
e2e9b654 315 struct sock_fprog_kern fprog_tmp;
1f947bf1 316 struct bpf_prog *fp;
33e9fcc6 317 u16 bpf_size, bpf_num_ops;
7d1d65cb
DB
318 int ret;
319
33e9fcc6 320 bpf_num_ops = nla_get_u16(tb[TCA_BPF_OPS_LEN]);
e2e9b654
DB
321 if (bpf_num_ops > BPF_MAXINSNS || bpf_num_ops == 0)
322 return -EINVAL;
7d1d65cb 323
33e9fcc6 324 bpf_size = bpf_num_ops * sizeof(*bpf_ops);
e2e9b654
DB
325 if (bpf_size != nla_len(tb[TCA_BPF_OPS]))
326 return -EINVAL;
7913ecf6 327
7d1d65cb 328 bpf_ops = kzalloc(bpf_size, GFP_KERNEL);
e2e9b654
DB
329 if (bpf_ops == NULL)
330 return -ENOMEM;
7d1d65cb
DB
331
332 memcpy(bpf_ops, nla_data(tb[TCA_BPF_OPS]), bpf_size);
333
e2e9b654
DB
334 fprog_tmp.len = bpf_num_ops;
335 fprog_tmp.filter = bpf_ops;
7d1d65cb 336
e2e9b654
DB
337 ret = bpf_prog_create(&fp, &fprog_tmp);
338 if (ret < 0) {
339 kfree(bpf_ops);
340 return ret;
341 }
7d1d65cb 342
7d1d65cb 343 prog->bpf_ops = bpf_ops;
e2e9b654
DB
344 prog->bpf_num_ops = bpf_num_ops;
345 prog->bpf_name = NULL;
7d1d65cb 346 prog->filter = fp;
7d1d65cb 347
e2e9b654
DB
348 return 0;
349}
350
c46646d0
DB
351static int cls_bpf_prog_from_efd(struct nlattr **tb, struct cls_bpf_prog *prog,
352 const struct tcf_proto *tp)
e2e9b654
DB
353{
354 struct bpf_prog *fp;
355 char *name = NULL;
356 u32 bpf_fd;
357
358 bpf_fd = nla_get_u32(tb[TCA_BPF_FD]);
359
113214be 360 fp = bpf_prog_get_type(bpf_fd, BPF_PROG_TYPE_SCHED_CLS);
e2e9b654
DB
361 if (IS_ERR(fp))
362 return PTR_ERR(fp);
363
e2e9b654 364 if (tb[TCA_BPF_NAME]) {
b15ca182 365 name = nla_memdup(tb[TCA_BPF_NAME], GFP_KERNEL);
e2e9b654
DB
366 if (!name) {
367 bpf_prog_put(fp);
368 return -ENOMEM;
369 }
370 }
371
372 prog->bpf_ops = NULL;
e2e9b654 373 prog->bpf_name = name;
e2e9b654 374 prog->filter = fp;
e2e9b654 375
1f211a1b 376 if (fp->dst_needed && !(tp->q->flags & TCQ_F_INGRESS))
c46646d0
DB
377 netif_keep_dst(qdisc_dev(tp->q));
378
e2e9b654
DB
379 return 0;
380}
381
6a725c48
JP
382static int cls_bpf_set_parms(struct net *net, struct tcf_proto *tp,
383 struct cls_bpf_prog *prog, unsigned long base,
384 struct nlattr **tb, struct nlattr *est, bool ovr)
e2e9b654 385{
045efa82 386 bool is_bpf, is_ebpf, have_exts = false;
0d01d45f 387 u32 gen_flags = 0;
e2e9b654
DB
388 int ret;
389
390 is_bpf = tb[TCA_BPF_OPS_LEN] && tb[TCA_BPF_OPS];
391 is_ebpf = tb[TCA_BPF_FD];
ef146fa4 392 if ((!is_bpf && !is_ebpf) || (is_bpf && is_ebpf))
e2e9b654
DB
393 return -EINVAL;
394
6839da32 395 ret = tcf_exts_validate(net, tp, tb, est, &prog->exts, ovr);
e2e9b654
DB
396 if (ret < 0)
397 return ret;
398
045efa82
DB
399 if (tb[TCA_BPF_FLAGS]) {
400 u32 bpf_flags = nla_get_u32(tb[TCA_BPF_FLAGS]);
401
6839da32
JP
402 if (bpf_flags & ~TCA_BPF_FLAG_ACT_DIRECT)
403 return -EINVAL;
045efa82
DB
404
405 have_exts = bpf_flags & TCA_BPF_FLAG_ACT_DIRECT;
406 }
0d01d45f
JK
407 if (tb[TCA_BPF_FLAGS_GEN]) {
408 gen_flags = nla_get_u32(tb[TCA_BPF_FLAGS_GEN]);
409 if (gen_flags & ~CLS_BPF_SUPPORTED_GEN_FLAGS ||
6839da32
JP
410 !tc_flags_valid(gen_flags))
411 return -EINVAL;
0d01d45f 412 }
045efa82 413
045efa82 414 prog->exts_integrated = have_exts;
0d01d45f 415 prog->gen_flags = gen_flags;
e2e9b654 416
045efa82 417 ret = is_bpf ? cls_bpf_prog_from_ops(tb, prog) :
c46646d0 418 cls_bpf_prog_from_efd(tb, prog, tp);
b9a24bb7 419 if (ret < 0)
6839da32 420 return ret;
e2e9b654 421
ef146fa4
DB
422 if (tb[TCA_BPF_CLASSID]) {
423 prog->res.classid = nla_get_u32(tb[TCA_BPF_CLASSID]);
424 tcf_bind_filter(tp, &prog->res, base);
425 }
7d1d65cb 426
7d1d65cb 427 return 0;
7d1d65cb
DB
428}
429
430static u32 cls_bpf_grab_new_handle(struct tcf_proto *tp,
431 struct cls_bpf_head *head)
432{
433 unsigned int i = 0x80000000;
3f2ab135 434 u32 handle;
7d1d65cb
DB
435
436 do {
437 if (++head->hgen == 0x7FFFFFFF)
438 head->hgen = 1;
439 } while (--i > 0 && cls_bpf_get(tp, head->hgen));
3f2ab135
DB
440
441 if (unlikely(i == 0)) {
7d1d65cb 442 pr_err("Insufficient number of handles\n");
3f2ab135
DB
443 handle = 0;
444 } else {
445 handle = head->hgen;
446 }
7d1d65cb 447
3f2ab135 448 return handle;
7d1d65cb
DB
449}
450
451static int cls_bpf_change(struct net *net, struct sk_buff *in_skb,
452 struct tcf_proto *tp, unsigned long base,
453 u32 handle, struct nlattr **tca,
2f7ef2f8 454 unsigned long *arg, bool ovr)
7d1d65cb 455{
1f947bf1
JF
456 struct cls_bpf_head *head = rtnl_dereference(tp->root);
457 struct cls_bpf_prog *oldprog = (struct cls_bpf_prog *) *arg;
7d1d65cb 458 struct nlattr *tb[TCA_BPF_MAX + 1];
1f947bf1 459 struct cls_bpf_prog *prog;
7d1d65cb
DB
460 int ret;
461
462 if (tca[TCA_OPTIONS] == NULL)
463 return -EINVAL;
464
fceb6435
JB
465 ret = nla_parse_nested(tb, TCA_BPF_MAX, tca[TCA_OPTIONS], bpf_policy,
466 NULL);
7d1d65cb
DB
467 if (ret < 0)
468 return ret;
469
7d1d65cb 470 prog = kzalloc(sizeof(*prog), GFP_KERNEL);
1f947bf1 471 if (!prog)
7d1d65cb
DB
472 return -ENOBUFS;
473
b9a24bb7
WC
474 ret = tcf_exts_init(&prog->exts, TCA_BPF_ACT, TCA_BPF_POLICE);
475 if (ret < 0)
476 goto errout;
1f947bf1
JF
477
478 if (oldprog) {
479 if (handle && oldprog->handle != handle) {
480 ret = -EINVAL;
481 goto errout;
482 }
483 }
484
7d1d65cb
DB
485 if (handle == 0)
486 prog->handle = cls_bpf_grab_new_handle(tp, head);
487 else
488 prog->handle = handle;
489 if (prog->handle == 0) {
490 ret = -EINVAL;
491 goto errout;
492 }
493
6a725c48 494 ret = cls_bpf_set_parms(net, tp, prog, base, tb, tca[TCA_RATE], ovr);
7d1d65cb
DB
495 if (ret < 0)
496 goto errout;
497
eadb4148
JK
498 ret = cls_bpf_offload(tp, prog, oldprog);
499 if (ret) {
8d829bdb 500 __cls_bpf_delete_prog(prog);
eadb4148
JK
501 return ret;
502 }
332ae8e2 503
5cecb6cc
OG
504 if (!tc_in_hw(prog->gen_flags))
505 prog->gen_flags |= TCA_CLS_FLAGS_NOT_IN_HW;
506
1f947bf1 507 if (oldprog) {
f6bfc46d 508 list_replace_rcu(&oldprog->link, &prog->link);
18cdb37e 509 tcf_unbind_filter(tp, &oldprog->res);
8d829bdb 510 call_rcu(&oldprog->rcu, cls_bpf_delete_prog_rcu);
1f947bf1
JF
511 } else {
512 list_add_rcu(&prog->link, &head->plist);
513 }
7d1d65cb
DB
514
515 *arg = (unsigned long) prog;
7d1d65cb 516 return 0;
b9a24bb7 517
7d1d65cb 518errout:
b9a24bb7 519 tcf_exts_destroy(&prog->exts);
1f947bf1 520 kfree(prog);
7d1d65cb
DB
521 return ret;
522}
523
e2e9b654
DB
524static int cls_bpf_dump_bpf_info(const struct cls_bpf_prog *prog,
525 struct sk_buff *skb)
526{
527 struct nlattr *nla;
528
529 if (nla_put_u16(skb, TCA_BPF_OPS_LEN, prog->bpf_num_ops))
530 return -EMSGSIZE;
531
532 nla = nla_reserve(skb, TCA_BPF_OPS, prog->bpf_num_ops *
533 sizeof(struct sock_filter));
534 if (nla == NULL)
535 return -EMSGSIZE;
536
537 memcpy(nla_data(nla), prog->bpf_ops, nla_len(nla));
538
539 return 0;
540}
541
542static int cls_bpf_dump_ebpf_info(const struct cls_bpf_prog *prog,
543 struct sk_buff *skb)
544{
7bd509e3
DB
545 struct nlattr *nla;
546
e2e9b654
DB
547 if (prog->bpf_name &&
548 nla_put_string(skb, TCA_BPF_NAME, prog->bpf_name))
549 return -EMSGSIZE;
550
e8628307
DB
551 if (nla_put_u32(skb, TCA_BPF_ID, prog->filter->aux->id))
552 return -EMSGSIZE;
553
f1f7714e 554 nla = nla_reserve(skb, TCA_BPF_TAG, sizeof(prog->filter->tag));
7bd509e3
DB
555 if (nla == NULL)
556 return -EMSGSIZE;
557
f1f7714e 558 memcpy(nla_data(nla), prog->filter->tag, nla_len(nla));
7bd509e3 559
e2e9b654
DB
560 return 0;
561}
562
832d1d5b 563static int cls_bpf_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
7d1d65cb
DB
564 struct sk_buff *skb, struct tcmsg *tm)
565{
566 struct cls_bpf_prog *prog = (struct cls_bpf_prog *) fh;
e2e9b654 567 struct nlattr *nest;
bf007d1c 568 u32 bpf_flags = 0;
e2e9b654 569 int ret;
7d1d65cb
DB
570
571 if (prog == NULL)
572 return skb->len;
573
574 tm->tcm_handle = prog->handle;
575
68d64063
JK
576 cls_bpf_offload_update_stats(tp, prog);
577
7d1d65cb
DB
578 nest = nla_nest_start(skb, TCA_OPTIONS);
579 if (nest == NULL)
580 goto nla_put_failure;
581
ef146fa4
DB
582 if (prog->res.classid &&
583 nla_put_u32(skb, TCA_BPF_CLASSID, prog->res.classid))
7d1d65cb 584 goto nla_put_failure;
7d1d65cb 585
e2e9b654
DB
586 if (cls_bpf_is_ebpf(prog))
587 ret = cls_bpf_dump_ebpf_info(prog, skb);
588 else
589 ret = cls_bpf_dump_bpf_info(prog, skb);
590 if (ret)
7d1d65cb
DB
591 goto nla_put_failure;
592
5da57f42 593 if (tcf_exts_dump(skb, &prog->exts) < 0)
7d1d65cb
DB
594 goto nla_put_failure;
595
bf007d1c
DB
596 if (prog->exts_integrated)
597 bpf_flags |= TCA_BPF_FLAG_ACT_DIRECT;
598 if (bpf_flags && nla_put_u32(skb, TCA_BPF_FLAGS, bpf_flags))
599 goto nla_put_failure;
0d01d45f
JK
600 if (prog->gen_flags &&
601 nla_put_u32(skb, TCA_BPF_FLAGS_GEN, prog->gen_flags))
602 goto nla_put_failure;
bf007d1c 603
7d1d65cb
DB
604 nla_nest_end(skb, nest);
605
5da57f42 606 if (tcf_exts_dump_stats(skb, &prog->exts) < 0)
7d1d65cb
DB
607 goto nla_put_failure;
608
609 return skb->len;
610
611nla_put_failure:
612 nla_nest_cancel(skb, nest);
613 return -1;
614}
615
616static void cls_bpf_walk(struct tcf_proto *tp, struct tcf_walker *arg)
617{
1f947bf1 618 struct cls_bpf_head *head = rtnl_dereference(tp->root);
7d1d65cb
DB
619 struct cls_bpf_prog *prog;
620
3fe6b49e 621 list_for_each_entry(prog, &head->plist, link) {
7d1d65cb
DB
622 if (arg->count < arg->skip)
623 goto skip;
624 if (arg->fn(tp, (unsigned long) prog, arg) < 0) {
625 arg->stop = 1;
626 break;
627 }
628skip:
629 arg->count++;
630 }
631}
632
633static struct tcf_proto_ops cls_bpf_ops __read_mostly = {
634 .kind = "bpf",
635 .owner = THIS_MODULE,
636 .classify = cls_bpf_classify,
637 .init = cls_bpf_init,
638 .destroy = cls_bpf_destroy,
639 .get = cls_bpf_get,
7d1d65cb
DB
640 .change = cls_bpf_change,
641 .delete = cls_bpf_delete,
642 .walk = cls_bpf_walk,
643 .dump = cls_bpf_dump,
644};
645
646static int __init cls_bpf_init_mod(void)
647{
648 return register_tcf_proto_ops(&cls_bpf_ops);
649}
650
651static void __exit cls_bpf_exit_mod(void)
652{
653 unregister_tcf_proto_ops(&cls_bpf_ops);
654}
655
656module_init(cls_bpf_init_mod);
657module_exit(cls_bpf_exit_mod);