net: sched: make type an argument for ndo_setup_tc
[linux-2.6-block.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
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;
0d01d45f 161 bpf_offload.gen_flags = prog->gen_flags;
332ae8e2 162
2572ac53
JP
163 err = dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_CLSBPF,
164 tp->q->handle,
a5fcf8a6 165 tp->chain->index,
5cecb6cc
OG
166 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;
332ae8e2
JK
172}
173
eadb4148
JK
174static int cls_bpf_offload(struct tcf_proto *tp, struct cls_bpf_prog *prog,
175 struct cls_bpf_prog *oldprog)
332ae8e2
JK
176{
177 struct net_device *dev = tp->q->dev_queue->dev;
178 struct cls_bpf_prog *obj = prog;
179 enum tc_clsbpf_command cmd;
eadb4148
JK
180 bool skip_sw;
181 int ret;
182
183 skip_sw = tc_skip_sw(prog->gen_flags) ||
184 (oldprog && tc_skip_sw(oldprog->gen_flags));
332ae8e2
JK
185
186 if (oldprog && oldprog->offloaded) {
0d01d45f 187 if (tc_should_offload(dev, tp, prog->gen_flags)) {
332ae8e2 188 cmd = TC_CLSBPF_REPLACE;
eadb4148 189 } else if (!tc_skip_sw(prog->gen_flags)) {
332ae8e2
JK
190 obj = oldprog;
191 cmd = TC_CLSBPF_DESTROY;
eadb4148
JK
192 } else {
193 return -EINVAL;
332ae8e2
JK
194 }
195 } else {
0d01d45f 196 if (!tc_should_offload(dev, tp, prog->gen_flags))
eadb4148 197 return skip_sw ? -EINVAL : 0;
332ae8e2
JK
198 cmd = TC_CLSBPF_ADD;
199 }
200
eadb4148
JK
201 ret = cls_bpf_offload_cmd(tp, obj, cmd);
202 if (ret)
203 return skip_sw ? ret : 0;
332ae8e2
JK
204
205 obj->offloaded = true;
206 if (oldprog)
207 oldprog->offloaded = false;
eadb4148
JK
208
209 return 0;
332ae8e2
JK
210}
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
68d64063
JK
229static 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
7d1d65cb
DB
238static 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
1f947bf1
JF
246 INIT_LIST_HEAD_RCU(&head->plist);
247 rcu_assign_pointer(tp->root, head);
7d1d65cb
DB
248
249 return 0;
250}
251
8d829bdb 252static void __cls_bpf_delete_prog(struct cls_bpf_prog *prog)
7d1d65cb 253{
18d0264f 254 tcf_exts_destroy(&prog->exts);
7d1d65cb 255
e2e9b654
DB
256 if (cls_bpf_is_ebpf(prog))
257 bpf_prog_put(prog->filter);
258 else
259 bpf_prog_destroy(prog->filter);
7d1d65cb 260
e2e9b654 261 kfree(prog->bpf_name);
7d1d65cb
DB
262 kfree(prog->bpf_ops);
263 kfree(prog);
264}
265
8d829bdb 266static void cls_bpf_delete_prog_rcu(struct rcu_head *rcu)
1f947bf1 267{
8d829bdb 268 __cls_bpf_delete_prog(container_of(rcu, struct cls_bpf_prog, rcu));
1f947bf1
JF
269}
270
8d829bdb 271static void __cls_bpf_delete(struct tcf_proto *tp, struct cls_bpf_prog *prog)
7d1d65cb 272{
332ae8e2 273 cls_bpf_stop_offload(tp, prog);
472f5837
JP
274 list_del_rcu(&prog->link);
275 tcf_unbind_filter(tp, &prog->res);
8d829bdb
DB
276 call_rcu(&prog->rcu, cls_bpf_delete_prog_rcu);
277}
e2e9b654 278
763dbf63 279static int cls_bpf_delete(struct tcf_proto *tp, unsigned long arg, bool *last)
8d829bdb 280{
763dbf63
WC
281 struct cls_bpf_head *head = rtnl_dereference(tp->root);
282
8d829bdb 283 __cls_bpf_delete(tp, (struct cls_bpf_prog *) arg);
763dbf63 284 *last = list_empty(&head->plist);
472f5837 285 return 0;
7d1d65cb
DB
286}
287
763dbf63 288static void cls_bpf_destroy(struct tcf_proto *tp)
7d1d65cb 289{
1f947bf1 290 struct cls_bpf_head *head = rtnl_dereference(tp->root);
7d1d65cb
DB
291 struct cls_bpf_prog *prog, *tmp;
292
8d829bdb
DB
293 list_for_each_entry_safe(prog, tmp, &head->plist, link)
294 __cls_bpf_delete(tp, prog);
7d1d65cb 295
1f947bf1 296 kfree_rcu(head, rcu);
7d1d65cb
DB
297}
298
299static unsigned long cls_bpf_get(struct tcf_proto *tp, u32 handle)
300{
1f947bf1 301 struct cls_bpf_head *head = rtnl_dereference(tp->root);
7d1d65cb
DB
302 struct cls_bpf_prog *prog;
303 unsigned long ret = 0UL;
304
3fe6b49e 305 list_for_each_entry(prog, &head->plist, link) {
7d1d65cb
DB
306 if (prog->handle == handle) {
307 ret = (unsigned long) prog;
308 break;
309 }
310 }
311
312 return ret;
313}
314
045efa82 315static int cls_bpf_prog_from_ops(struct nlattr **tb, struct cls_bpf_prog *prog)
7d1d65cb 316{
1f947bf1 317 struct sock_filter *bpf_ops;
e2e9b654 318 struct sock_fprog_kern fprog_tmp;
1f947bf1 319 struct bpf_prog *fp;
33e9fcc6 320 u16 bpf_size, bpf_num_ops;
7d1d65cb
DB
321 int ret;
322
33e9fcc6 323 bpf_num_ops = nla_get_u16(tb[TCA_BPF_OPS_LEN]);
e2e9b654
DB
324 if (bpf_num_ops > BPF_MAXINSNS || bpf_num_ops == 0)
325 return -EINVAL;
7d1d65cb 326
33e9fcc6 327 bpf_size = bpf_num_ops * sizeof(*bpf_ops);
e2e9b654
DB
328 if (bpf_size != nla_len(tb[TCA_BPF_OPS]))
329 return -EINVAL;
7913ecf6 330
7d1d65cb 331 bpf_ops = kzalloc(bpf_size, GFP_KERNEL);
e2e9b654
DB
332 if (bpf_ops == NULL)
333 return -ENOMEM;
7d1d65cb
DB
334
335 memcpy(bpf_ops, nla_data(tb[TCA_BPF_OPS]), bpf_size);
336
e2e9b654
DB
337 fprog_tmp.len = bpf_num_ops;
338 fprog_tmp.filter = bpf_ops;
7d1d65cb 339
e2e9b654
DB
340 ret = bpf_prog_create(&fp, &fprog_tmp);
341 if (ret < 0) {
342 kfree(bpf_ops);
343 return ret;
344 }
7d1d65cb 345
7d1d65cb 346 prog->bpf_ops = bpf_ops;
e2e9b654
DB
347 prog->bpf_num_ops = bpf_num_ops;
348 prog->bpf_name = NULL;
7d1d65cb 349 prog->filter = fp;
7d1d65cb 350
e2e9b654
DB
351 return 0;
352}
353
c46646d0
DB
354static int cls_bpf_prog_from_efd(struct nlattr **tb, struct cls_bpf_prog *prog,
355 const struct tcf_proto *tp)
e2e9b654
DB
356{
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
113214be 363 fp = bpf_prog_get_type(bpf_fd, BPF_PROG_TYPE_SCHED_CLS);
e2e9b654
DB
364 if (IS_ERR(fp))
365 return PTR_ERR(fp);
366
e2e9b654 367 if (tb[TCA_BPF_NAME]) {
b15ca182 368 name = nla_memdup(tb[TCA_BPF_NAME], GFP_KERNEL);
e2e9b654
DB
369 if (!name) {
370 bpf_prog_put(fp);
371 return -ENOMEM;
372 }
373 }
374
375 prog->bpf_ops = NULL;
e2e9b654 376 prog->bpf_name = name;
e2e9b654 377 prog->filter = fp;
e2e9b654 378
1f211a1b 379 if (fp->dst_needed && !(tp->q->flags & TCQ_F_INGRESS))
c46646d0
DB
380 netif_keep_dst(qdisc_dev(tp->q));
381
e2e9b654
DB
382 return 0;
383}
384
6a725c48
JP
385static int cls_bpf_set_parms(struct net *net, struct tcf_proto *tp,
386 struct cls_bpf_prog *prog, unsigned long base,
387 struct nlattr **tb, struct nlattr *est, bool ovr)
e2e9b654 388{
045efa82 389 bool is_bpf, is_ebpf, have_exts = false;
0d01d45f 390 u32 gen_flags = 0;
e2e9b654
DB
391 int ret;
392
393 is_bpf = tb[TCA_BPF_OPS_LEN] && tb[TCA_BPF_OPS];
394 is_ebpf = tb[TCA_BPF_FD];
ef146fa4 395 if ((!is_bpf && !is_ebpf) || (is_bpf && is_ebpf))
e2e9b654
DB
396 return -EINVAL;
397
6839da32 398 ret = tcf_exts_validate(net, tp, tb, est, &prog->exts, ovr);
e2e9b654
DB
399 if (ret < 0)
400 return ret;
401
045efa82
DB
402 if (tb[TCA_BPF_FLAGS]) {
403 u32 bpf_flags = nla_get_u32(tb[TCA_BPF_FLAGS]);
404
6839da32
JP
405 if (bpf_flags & ~TCA_BPF_FLAG_ACT_DIRECT)
406 return -EINVAL;
045efa82
DB
407
408 have_exts = bpf_flags & TCA_BPF_FLAG_ACT_DIRECT;
409 }
0d01d45f
JK
410 if (tb[TCA_BPF_FLAGS_GEN]) {
411 gen_flags = nla_get_u32(tb[TCA_BPF_FLAGS_GEN]);
412 if (gen_flags & ~CLS_BPF_SUPPORTED_GEN_FLAGS ||
6839da32
JP
413 !tc_flags_valid(gen_flags))
414 return -EINVAL;
0d01d45f 415 }
045efa82 416
045efa82 417 prog->exts_integrated = have_exts;
0d01d45f 418 prog->gen_flags = gen_flags;
e2e9b654 419
045efa82 420 ret = is_bpf ? cls_bpf_prog_from_ops(tb, prog) :
c46646d0 421 cls_bpf_prog_from_efd(tb, prog, tp);
b9a24bb7 422 if (ret < 0)
6839da32 423 return ret;
e2e9b654 424
ef146fa4
DB
425 if (tb[TCA_BPF_CLASSID]) {
426 prog->res.classid = nla_get_u32(tb[TCA_BPF_CLASSID]);
427 tcf_bind_filter(tp, &prog->res, base);
428 }
7d1d65cb 429
7d1d65cb 430 return 0;
7d1d65cb
DB
431}
432
433static u32 cls_bpf_grab_new_handle(struct tcf_proto *tp,
434 struct cls_bpf_head *head)
435{
436 unsigned int i = 0x80000000;
3f2ab135 437 u32 handle;
7d1d65cb
DB
438
439 do {
440 if (++head->hgen == 0x7FFFFFFF)
441 head->hgen = 1;
442 } while (--i > 0 && cls_bpf_get(tp, head->hgen));
3f2ab135
DB
443
444 if (unlikely(i == 0)) {
7d1d65cb 445 pr_err("Insufficient number of handles\n");
3f2ab135
DB
446 handle = 0;
447 } else {
448 handle = head->hgen;
449 }
7d1d65cb 450
3f2ab135 451 return handle;
7d1d65cb
DB
452}
453
454static int cls_bpf_change(struct net *net, struct sk_buff *in_skb,
455 struct tcf_proto *tp, unsigned long base,
456 u32 handle, struct nlattr **tca,
2f7ef2f8 457 unsigned long *arg, bool ovr)
7d1d65cb 458{
1f947bf1
JF
459 struct cls_bpf_head *head = rtnl_dereference(tp->root);
460 struct cls_bpf_prog *oldprog = (struct cls_bpf_prog *) *arg;
7d1d65cb 461 struct nlattr *tb[TCA_BPF_MAX + 1];
1f947bf1 462 struct cls_bpf_prog *prog;
7d1d65cb
DB
463 int ret;
464
465 if (tca[TCA_OPTIONS] == NULL)
466 return -EINVAL;
467
fceb6435
JB
468 ret = nla_parse_nested(tb, TCA_BPF_MAX, tca[TCA_OPTIONS], bpf_policy,
469 NULL);
7d1d65cb
DB
470 if (ret < 0)
471 return ret;
472
7d1d65cb 473 prog = kzalloc(sizeof(*prog), GFP_KERNEL);
1f947bf1 474 if (!prog)
7d1d65cb
DB
475 return -ENOBUFS;
476
b9a24bb7
WC
477 ret = tcf_exts_init(&prog->exts, TCA_BPF_ACT, TCA_BPF_POLICE);
478 if (ret < 0)
479 goto errout;
1f947bf1
JF
480
481 if (oldprog) {
482 if (handle && oldprog->handle != handle) {
483 ret = -EINVAL;
484 goto errout;
485 }
486 }
487
7d1d65cb
DB
488 if (handle == 0)
489 prog->handle = cls_bpf_grab_new_handle(tp, head);
490 else
491 prog->handle = handle;
492 if (prog->handle == 0) {
493 ret = -EINVAL;
494 goto errout;
495 }
496
6a725c48 497 ret = cls_bpf_set_parms(net, tp, prog, base, tb, tca[TCA_RATE], ovr);
7d1d65cb
DB
498 if (ret < 0)
499 goto errout;
500
eadb4148
JK
501 ret = cls_bpf_offload(tp, prog, oldprog);
502 if (ret) {
8d829bdb 503 __cls_bpf_delete_prog(prog);
eadb4148
JK
504 return ret;
505 }
332ae8e2 506
5cecb6cc
OG
507 if (!tc_in_hw(prog->gen_flags))
508 prog->gen_flags |= TCA_CLS_FLAGS_NOT_IN_HW;
509
1f947bf1 510 if (oldprog) {
f6bfc46d 511 list_replace_rcu(&oldprog->link, &prog->link);
18cdb37e 512 tcf_unbind_filter(tp, &oldprog->res);
8d829bdb 513 call_rcu(&oldprog->rcu, cls_bpf_delete_prog_rcu);
1f947bf1
JF
514 } else {
515 list_add_rcu(&prog->link, &head->plist);
516 }
7d1d65cb
DB
517
518 *arg = (unsigned long) prog;
7d1d65cb 519 return 0;
b9a24bb7 520
7d1d65cb 521errout:
b9a24bb7 522 tcf_exts_destroy(&prog->exts);
1f947bf1 523 kfree(prog);
7d1d65cb
DB
524 return ret;
525}
526
e2e9b654
DB
527static int cls_bpf_dump_bpf_info(const struct cls_bpf_prog *prog,
528 struct sk_buff *skb)
529{
530 struct nlattr *nla;
531
532 if (nla_put_u16(skb, TCA_BPF_OPS_LEN, prog->bpf_num_ops))
533 return -EMSGSIZE;
534
535 nla = nla_reserve(skb, TCA_BPF_OPS, prog->bpf_num_ops *
536 sizeof(struct sock_filter));
537 if (nla == NULL)
538 return -EMSGSIZE;
539
540 memcpy(nla_data(nla), prog->bpf_ops, nla_len(nla));
541
542 return 0;
543}
544
545static int cls_bpf_dump_ebpf_info(const struct cls_bpf_prog *prog,
546 struct sk_buff *skb)
547{
7bd509e3
DB
548 struct nlattr *nla;
549
e2e9b654
DB
550 if (prog->bpf_name &&
551 nla_put_string(skb, TCA_BPF_NAME, prog->bpf_name))
552 return -EMSGSIZE;
553
e8628307
DB
554 if (nla_put_u32(skb, TCA_BPF_ID, prog->filter->aux->id))
555 return -EMSGSIZE;
556
f1f7714e 557 nla = nla_reserve(skb, TCA_BPF_TAG, sizeof(prog->filter->tag));
7bd509e3
DB
558 if (nla == NULL)
559 return -EMSGSIZE;
560
f1f7714e 561 memcpy(nla_data(nla), prog->filter->tag, nla_len(nla));
7bd509e3 562
e2e9b654
DB
563 return 0;
564}
565
832d1d5b 566static int cls_bpf_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
7d1d65cb
DB
567 struct sk_buff *skb, struct tcmsg *tm)
568{
569 struct cls_bpf_prog *prog = (struct cls_bpf_prog *) fh;
e2e9b654 570 struct nlattr *nest;
bf007d1c 571 u32 bpf_flags = 0;
e2e9b654 572 int ret;
7d1d65cb
DB
573
574 if (prog == NULL)
575 return skb->len;
576
577 tm->tcm_handle = prog->handle;
578
68d64063
JK
579 cls_bpf_offload_update_stats(tp, prog);
580
7d1d65cb
DB
581 nest = nla_nest_start(skb, TCA_OPTIONS);
582 if (nest == NULL)
583 goto nla_put_failure;
584
ef146fa4
DB
585 if (prog->res.classid &&
586 nla_put_u32(skb, TCA_BPF_CLASSID, prog->res.classid))
7d1d65cb 587 goto nla_put_failure;
7d1d65cb 588
e2e9b654
DB
589 if (cls_bpf_is_ebpf(prog))
590 ret = cls_bpf_dump_ebpf_info(prog, skb);
591 else
592 ret = cls_bpf_dump_bpf_info(prog, skb);
593 if (ret)
7d1d65cb
DB
594 goto nla_put_failure;
595
5da57f42 596 if (tcf_exts_dump(skb, &prog->exts) < 0)
7d1d65cb
DB
597 goto nla_put_failure;
598
bf007d1c
DB
599 if (prog->exts_integrated)
600 bpf_flags |= TCA_BPF_FLAG_ACT_DIRECT;
601 if (bpf_flags && nla_put_u32(skb, TCA_BPF_FLAGS, bpf_flags))
602 goto nla_put_failure;
0d01d45f
JK
603 if (prog->gen_flags &&
604 nla_put_u32(skb, TCA_BPF_FLAGS_GEN, prog->gen_flags))
605 goto nla_put_failure;
bf007d1c 606
7d1d65cb
DB
607 nla_nest_end(skb, nest);
608
5da57f42 609 if (tcf_exts_dump_stats(skb, &prog->exts) < 0)
7d1d65cb
DB
610 goto nla_put_failure;
611
612 return skb->len;
613
614nla_put_failure:
615 nla_nest_cancel(skb, nest);
616 return -1;
617}
618
619static void cls_bpf_walk(struct tcf_proto *tp, struct tcf_walker *arg)
620{
1f947bf1 621 struct cls_bpf_head *head = rtnl_dereference(tp->root);
7d1d65cb
DB
622 struct cls_bpf_prog *prog;
623
3fe6b49e 624 list_for_each_entry(prog, &head->plist, link) {
7d1d65cb
DB
625 if (arg->count < arg->skip)
626 goto skip;
627 if (arg->fn(tp, (unsigned long) prog, arg) < 0) {
628 arg->stop = 1;
629 break;
630 }
631skip:
632 arg->count++;
633 }
634}
635
636static struct tcf_proto_ops cls_bpf_ops __read_mostly = {
637 .kind = "bpf",
638 .owner = THIS_MODULE,
639 .classify = cls_bpf_classify,
640 .init = cls_bpf_init,
641 .destroy = cls_bpf_destroy,
642 .get = cls_bpf_get,
7d1d65cb
DB
643 .change = cls_bpf_change,
644 .delete = cls_bpf_delete,
645 .walk = cls_bpf_walk,
646 .dump = cls_bpf_dump,
647};
648
649static int __init cls_bpf_init_mod(void)
650{
651 return register_tcf_proto_ops(&cls_bpf_ops);
652}
653
654static void __exit cls_bpf_exit_mod(void)
655{
656 unregister_tcf_proto_ops(&cls_bpf_ops);
657}
658
659module_init(cls_bpf_init_mod);
660module_exit(cls_bpf_exit_mod);