1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) 2015 Jiri Pirko <jiri@resnulli.us>
6 #include <linux/module.h>
7 #include <linux/init.h>
8 #include <linux/kernel.h>
9 #include <linux/skbuff.h>
10 #include <linux/rtnetlink.h>
11 #include <linux/filter.h>
12 #include <linux/bpf.h>
14 #include <net/netlink.h>
16 #include <net/pkt_sched.h>
17 #include <net/pkt_cls.h>
19 #include <linux/tc_act/tc_bpf.h>
20 #include <net/tc_act/tc_bpf.h>
22 #define ACT_BPF_NAME_LEN 256
25 struct bpf_prog *filter;
26 struct sock_filter *bpf_ops;
32 static struct tc_action_ops act_bpf_ops;
34 static int tcf_bpf_act(struct sk_buff *skb, const struct tc_action *act,
35 struct tcf_result *res)
37 bool at_ingress = skb_at_tc_ingress(skb);
38 struct tcf_bpf *prog = to_bpf(act);
39 struct bpf_prog *filter;
40 int action, filter_res;
42 tcf_lastuse_update(&prog->tcf_tm);
43 bstats_update(this_cpu_ptr(prog->common.cpu_bstats), skb);
45 filter = rcu_dereference(prog->filter);
47 __skb_push(skb, skb->mac_len);
48 bpf_compute_data_pointers(skb);
49 filter_res = bpf_prog_run(filter, skb);
50 __skb_pull(skb, skb->mac_len);
52 bpf_compute_data_pointers(skb);
53 filter_res = bpf_prog_run(filter, skb);
55 if (unlikely(!skb->tstamp && skb->mono_delivery_time))
56 skb->mono_delivery_time = 0;
57 if (skb_sk_is_prefetched(skb) && filter_res != TC_ACT_OK)
60 /* A BPF program may overwrite the default action opcode.
61 * Similarly as in cls_bpf, if filter_res == -1 we use the
62 * default action specified from tc.
64 * In case a different well-known TC_ACT opcode has been
65 * returned, it will overwrite the default one.
67 * For everything else that is unknown, TC_ACT_UNSPEC is
72 case TC_ACT_RECLASSIFY:
79 qstats_drop_inc(this_cpu_ptr(prog->common.cpu_qstats));
82 action = prog->tcf_action;
85 action = TC_ACT_UNSPEC;
92 static bool tcf_bpf_is_ebpf(const struct tcf_bpf *prog)
94 return !prog->bpf_ops;
97 static int tcf_bpf_dump_bpf_info(const struct tcf_bpf *prog,
102 if (nla_put_u16(skb, TCA_ACT_BPF_OPS_LEN, prog->bpf_num_ops))
105 nla = nla_reserve(skb, TCA_ACT_BPF_OPS, prog->bpf_num_ops *
106 sizeof(struct sock_filter));
110 memcpy(nla_data(nla), prog->bpf_ops, nla_len(nla));
115 static int tcf_bpf_dump_ebpf_info(const struct tcf_bpf *prog,
120 if (prog->bpf_name &&
121 nla_put_string(skb, TCA_ACT_BPF_NAME, prog->bpf_name))
124 if (nla_put_u32(skb, TCA_ACT_BPF_ID, prog->filter->aux->id))
127 nla = nla_reserve(skb, TCA_ACT_BPF_TAG, sizeof(prog->filter->tag));
131 memcpy(nla_data(nla), prog->filter->tag, nla_len(nla));
136 static int tcf_bpf_dump(struct sk_buff *skb, struct tc_action *act,
139 unsigned char *tp = skb_tail_pointer(skb);
140 struct tcf_bpf *prog = to_bpf(act);
141 struct tc_act_bpf opt = {
142 .index = prog->tcf_index,
143 .refcnt = refcount_read(&prog->tcf_refcnt) - ref,
144 .bindcnt = atomic_read(&prog->tcf_bindcnt) - bind,
149 spin_lock_bh(&prog->tcf_lock);
150 opt.action = prog->tcf_action;
151 if (nla_put(skb, TCA_ACT_BPF_PARMS, sizeof(opt), &opt))
152 goto nla_put_failure;
154 if (tcf_bpf_is_ebpf(prog))
155 ret = tcf_bpf_dump_ebpf_info(prog, skb);
157 ret = tcf_bpf_dump_bpf_info(prog, skb);
159 goto nla_put_failure;
161 tcf_tm_dump(&tm, &prog->tcf_tm);
162 if (nla_put_64bit(skb, TCA_ACT_BPF_TM, sizeof(tm), &tm,
164 goto nla_put_failure;
166 spin_unlock_bh(&prog->tcf_lock);
170 spin_unlock_bh(&prog->tcf_lock);
175 static const struct nla_policy act_bpf_policy[TCA_ACT_BPF_MAX + 1] = {
176 [TCA_ACT_BPF_PARMS] = { .len = sizeof(struct tc_act_bpf) },
177 [TCA_ACT_BPF_FD] = { .type = NLA_U32 },
178 [TCA_ACT_BPF_NAME] = { .type = NLA_NUL_STRING,
179 .len = ACT_BPF_NAME_LEN },
180 [TCA_ACT_BPF_OPS_LEN] = { .type = NLA_U16 },
181 [TCA_ACT_BPF_OPS] = { .type = NLA_BINARY,
182 .len = sizeof(struct sock_filter) * BPF_MAXINSNS },
185 static int tcf_bpf_init_from_ops(struct nlattr **tb, struct tcf_bpf_cfg *cfg)
187 struct sock_filter *bpf_ops;
188 struct sock_fprog_kern fprog_tmp;
190 u16 bpf_size, bpf_num_ops;
193 bpf_num_ops = nla_get_u16(tb[TCA_ACT_BPF_OPS_LEN]);
194 if (bpf_num_ops > BPF_MAXINSNS || bpf_num_ops == 0)
197 bpf_size = bpf_num_ops * sizeof(*bpf_ops);
198 if (bpf_size != nla_len(tb[TCA_ACT_BPF_OPS]))
201 bpf_ops = kmemdup(nla_data(tb[TCA_ACT_BPF_OPS]), bpf_size, GFP_KERNEL);
205 fprog_tmp.len = bpf_num_ops;
206 fprog_tmp.filter = bpf_ops;
208 ret = bpf_prog_create(&fp, &fprog_tmp);
214 cfg->bpf_ops = bpf_ops;
215 cfg->bpf_num_ops = bpf_num_ops;
217 cfg->is_ebpf = false;
222 static int tcf_bpf_init_from_efd(struct nlattr **tb, struct tcf_bpf_cfg *cfg)
228 bpf_fd = nla_get_u32(tb[TCA_ACT_BPF_FD]);
230 fp = bpf_prog_get_type(bpf_fd, BPF_PROG_TYPE_SCHED_ACT);
234 if (tb[TCA_ACT_BPF_NAME]) {
235 name = nla_memdup(tb[TCA_ACT_BPF_NAME], GFP_KERNEL);
242 cfg->bpf_name = name;
249 static void tcf_bpf_cfg_cleanup(const struct tcf_bpf_cfg *cfg)
251 struct bpf_prog *filter = cfg->filter;
255 bpf_prog_put(filter);
257 bpf_prog_destroy(filter);
261 kfree(cfg->bpf_name);
264 static void tcf_bpf_prog_fill_cfg(const struct tcf_bpf *prog,
265 struct tcf_bpf_cfg *cfg)
267 cfg->is_ebpf = tcf_bpf_is_ebpf(prog);
268 /* updates to prog->filter are prevented, since it's called either
269 * with tcf lock or during final cleanup in rcu callback
271 cfg->filter = rcu_dereference_protected(prog->filter, 1);
273 cfg->bpf_ops = prog->bpf_ops;
274 cfg->bpf_name = prog->bpf_name;
277 static int tcf_bpf_init(struct net *net, struct nlattr *nla,
278 struct nlattr *est, struct tc_action **act,
279 struct tcf_proto *tp, u32 flags,
280 struct netlink_ext_ack *extack)
282 struct tc_action_net *tn = net_generic(net, act_bpf_ops.net_id);
283 bool bind = flags & TCA_ACT_FLAGS_BIND;
284 struct nlattr *tb[TCA_ACT_BPF_MAX + 1];
285 struct tcf_chain *goto_ch = NULL;
286 struct tcf_bpf_cfg cfg, old;
287 struct tc_act_bpf *parm;
288 struct tcf_bpf *prog;
289 bool is_bpf, is_ebpf;
296 ret = nla_parse_nested_deprecated(tb, TCA_ACT_BPF_MAX, nla,
297 act_bpf_policy, NULL);
301 if (!tb[TCA_ACT_BPF_PARMS])
304 parm = nla_data(tb[TCA_ACT_BPF_PARMS]);
306 ret = tcf_idr_check_alloc(tn, &index, act, bind);
308 ret = tcf_idr_create(tn, index, est, act,
309 &act_bpf_ops, bind, true, flags);
311 tcf_idr_cleanup(tn, index);
316 } else if (ret > 0) {
317 /* Don't override defaults. */
321 if (!(flags & TCA_ACT_FLAGS_REPLACE)) {
322 tcf_idr_release(*act, bind);
329 ret = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
333 is_bpf = tb[TCA_ACT_BPF_OPS_LEN] && tb[TCA_ACT_BPF_OPS];
334 is_ebpf = tb[TCA_ACT_BPF_FD];
336 if (is_bpf == is_ebpf) {
341 memset(&cfg, 0, sizeof(cfg));
343 ret = is_bpf ? tcf_bpf_init_from_ops(tb, &cfg) :
344 tcf_bpf_init_from_efd(tb, &cfg);
350 spin_lock_bh(&prog->tcf_lock);
351 if (res != ACT_P_CREATED)
352 tcf_bpf_prog_fill_cfg(prog, &old);
354 prog->bpf_ops = cfg.bpf_ops;
355 prog->bpf_name = cfg.bpf_name;
358 prog->bpf_num_ops = cfg.bpf_num_ops;
360 goto_ch = tcf_action_set_ctrlact(*act, parm->action, goto_ch);
361 rcu_assign_pointer(prog->filter, cfg.filter);
362 spin_unlock_bh(&prog->tcf_lock);
365 tcf_chain_put_by_act(goto_ch);
367 if (res != ACT_P_CREATED) {
368 /* make sure the program being replaced is no longer executing */
370 tcf_bpf_cfg_cleanup(&old);
377 tcf_chain_put_by_act(goto_ch);
380 tcf_idr_release(*act, bind);
384 static void tcf_bpf_cleanup(struct tc_action *act)
386 struct tcf_bpf_cfg tmp;
388 tcf_bpf_prog_fill_cfg(to_bpf(act), &tmp);
389 tcf_bpf_cfg_cleanup(&tmp);
392 static struct tc_action_ops act_bpf_ops __read_mostly = {
395 .owner = THIS_MODULE,
397 .dump = tcf_bpf_dump,
398 .cleanup = tcf_bpf_cleanup,
399 .init = tcf_bpf_init,
400 .size = sizeof(struct tcf_bpf),
403 static __net_init int bpf_init_net(struct net *net)
405 struct tc_action_net *tn = net_generic(net, act_bpf_ops.net_id);
407 return tc_action_net_init(net, tn, &act_bpf_ops);
410 static void __net_exit bpf_exit_net(struct list_head *net_list)
412 tc_action_net_exit(net_list, act_bpf_ops.net_id);
415 static struct pernet_operations bpf_net_ops = {
416 .init = bpf_init_net,
417 .exit_batch = bpf_exit_net,
418 .id = &act_bpf_ops.net_id,
419 .size = sizeof(struct tc_action_net),
422 static int __init bpf_init_module(void)
424 return tcf_register_action(&act_bpf_ops, &bpf_net_ops);
427 static void __exit bpf_cleanup_module(void)
429 tcf_unregister_action(&act_bpf_ops, &bpf_net_ops);
432 module_init(bpf_init_module);
433 module_exit(bpf_cleanup_module);
435 MODULE_AUTHOR("Jiri Pirko <jiri@resnulli.us>");
436 MODULE_DESCRIPTION("TC BPF based action");
437 MODULE_LICENSE("GPL v2");