1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * net/sched/act_pedit.c Generic packet editor
5 * Authors: Jamal Hadi Salim (2002-4)
8 #include <linux/types.h>
9 #include <linux/kernel.h>
10 #include <linux/string.h>
11 #include <linux/errno.h>
12 #include <linux/skbuff.h>
13 #include <linux/rtnetlink.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/slab.h>
17 #include <net/netlink.h>
18 #include <net/pkt_sched.h>
19 #include <linux/tc_act/tc_pedit.h>
20 #include <net/tc_act/tc_pedit.h>
21 #include <uapi/linux/tc_act/tc_pedit.h>
22 #include <net/pkt_cls.h>
24 static unsigned int pedit_net_id;
25 static struct tc_action_ops act_pedit_ops;
27 static const struct nla_policy pedit_policy[TCA_PEDIT_MAX + 1] = {
28 [TCA_PEDIT_PARMS] = { .len = sizeof(struct tc_pedit) },
29 [TCA_PEDIT_KEYS_EX] = { .type = NLA_NESTED },
32 static const struct nla_policy pedit_key_ex_policy[TCA_PEDIT_KEY_EX_MAX + 1] = {
33 [TCA_PEDIT_KEY_EX_HTYPE] = { .type = NLA_U16 },
34 [TCA_PEDIT_KEY_EX_CMD] = { .type = NLA_U16 },
37 static struct tcf_pedit_key_ex *tcf_pedit_keys_ex_parse(struct nlattr *nla,
40 struct tcf_pedit_key_ex *keys_ex;
41 struct tcf_pedit_key_ex *k;
42 const struct nlattr *ka;
49 keys_ex = kcalloc(n, sizeof(*k), GFP_KERNEL);
51 return ERR_PTR(-ENOMEM);
55 nla_for_each_nested(ka, nla, rem) {
56 struct nlattr *tb[TCA_PEDIT_KEY_EX_MAX + 1];
64 if (nla_type(ka) != TCA_PEDIT_KEY_EX) {
69 err = nla_parse_nested_deprecated(tb, TCA_PEDIT_KEY_EX_MAX,
70 ka, pedit_key_ex_policy,
75 if (!tb[TCA_PEDIT_KEY_EX_HTYPE] ||
76 !tb[TCA_PEDIT_KEY_EX_CMD]) {
81 k->htype = nla_get_u16(tb[TCA_PEDIT_KEY_EX_HTYPE]);
82 k->cmd = nla_get_u16(tb[TCA_PEDIT_KEY_EX_CMD]);
84 if (k->htype > TCA_PEDIT_HDR_TYPE_MAX ||
85 k->cmd > TCA_PEDIT_CMD_MAX) {
105 static int tcf_pedit_key_ex_dump(struct sk_buff *skb,
106 struct tcf_pedit_key_ex *keys_ex, int n)
108 struct nlattr *keys_start = nla_nest_start_noflag(skb,
114 struct nlattr *key_start;
116 key_start = nla_nest_start_noflag(skb, TCA_PEDIT_KEY_EX);
120 if (nla_put_u16(skb, TCA_PEDIT_KEY_EX_HTYPE, keys_ex->htype) ||
121 nla_put_u16(skb, TCA_PEDIT_KEY_EX_CMD, keys_ex->cmd))
124 nla_nest_end(skb, key_start);
129 nla_nest_end(skb, keys_start);
133 nla_nest_cancel(skb, keys_start);
137 static int tcf_pedit_init(struct net *net, struct nlattr *nla,
138 struct nlattr *est, struct tc_action **a,
139 struct tcf_proto *tp, u32 flags,
140 struct netlink_ext_ack *extack)
142 struct tc_action_net *tn = net_generic(net, pedit_net_id);
143 bool bind = flags & TCA_ACT_FLAGS_BIND;
144 struct nlattr *tb[TCA_PEDIT_MAX + 1];
145 struct tcf_chain *goto_ch = NULL;
146 struct tc_pedit_key *keys = NULL;
147 struct tcf_pedit_key_ex *keys_ex;
148 struct tc_pedit *parm;
149 struct nlattr *pattr;
156 NL_SET_ERR_MSG_MOD(extack, "Pedit requires attributes to be passed");
160 err = nla_parse_nested_deprecated(tb, TCA_PEDIT_MAX, nla,
165 pattr = tb[TCA_PEDIT_PARMS];
167 pattr = tb[TCA_PEDIT_PARMS_EX];
169 NL_SET_ERR_MSG_MOD(extack, "Missing required TCA_PEDIT_PARMS or TCA_PEDIT_PARMS_EX pedit attribute");
173 parm = nla_data(pattr);
175 NL_SET_ERR_MSG_MOD(extack, "Pedit requires keys to be passed");
178 ksize = parm->nkeys * sizeof(struct tc_pedit_key);
179 if (nla_len(pattr) < sizeof(*parm) + ksize) {
180 NL_SET_ERR_MSG_ATTR(extack, pattr, "Length of TCA_PEDIT_PARMS or TCA_PEDIT_PARMS_EX pedit attribute is invalid");
184 keys_ex = tcf_pedit_keys_ex_parse(tb[TCA_PEDIT_KEYS_EX], parm->nkeys);
186 return PTR_ERR(keys_ex);
189 err = tcf_idr_check_alloc(tn, &index, a, bind);
191 ret = tcf_idr_create(tn, index, est, a,
192 &act_pedit_ops, bind, false, 0);
194 tcf_idr_cleanup(tn, index);
198 } else if (err > 0) {
201 if (!(flags & TCA_ACT_FLAGS_REPLACE)) {
210 err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
216 spin_lock_bh(&p->tcf_lock);
218 if (ret == ACT_P_CREATED ||
219 (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys)) {
220 keys = kmalloc(ksize, GFP_ATOMIC);
222 spin_unlock_bh(&p->tcf_lock);
228 p->tcfp_nkeys = parm->nkeys;
230 memcpy(p->tcfp_keys, parm->keys, ksize);
231 p->tcfp_off_max_hint = 0;
232 for (i = 0; i < p->tcfp_nkeys; ++i) {
233 u32 cur = p->tcfp_keys[i].off;
235 /* sanitize the shift value for any later use */
236 p->tcfp_keys[i].shift = min_t(size_t, BITS_PER_TYPE(int) - 1,
237 p->tcfp_keys[i].shift);
239 /* The AT option can read a single byte, we can bound the actual
240 * value with uchar max.
242 cur += (0xff & p->tcfp_keys[i].offmask) >> p->tcfp_keys[i].shift;
244 /* Each key touches 4 bytes starting from the computed offset */
245 p->tcfp_off_max_hint = max(p->tcfp_off_max_hint, cur + 4);
248 p->tcfp_flags = parm->flags;
249 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
251 kfree(p->tcfp_keys_ex);
252 p->tcfp_keys_ex = keys_ex;
254 spin_unlock_bh(&p->tcf_lock);
256 tcf_chain_put_by_act(goto_ch);
261 tcf_chain_put_by_act(goto_ch);
263 tcf_idr_release(*a, bind);
270 static void tcf_pedit_cleanup(struct tc_action *a)
272 struct tcf_pedit *p = to_pedit(a);
273 struct tc_pedit_key *keys = p->tcfp_keys;
276 kfree(p->tcfp_keys_ex);
279 static bool offset_valid(struct sk_buff *skb, int offset)
281 if (offset > 0 && offset > skb->len)
284 if (offset < 0 && -offset > skb_headroom(skb))
290 static int pedit_skb_hdr_offset(struct sk_buff *skb,
291 enum pedit_header_type htype, int *hoffset)
296 case TCA_PEDIT_KEY_EX_HDR_TYPE_ETH:
297 if (skb_mac_header_was_set(skb)) {
298 *hoffset = skb_mac_offset(skb);
302 case TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK:
303 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP4:
304 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP6:
305 *hoffset = skb_network_offset(skb);
308 case TCA_PEDIT_KEY_EX_HDR_TYPE_TCP:
309 case TCA_PEDIT_KEY_EX_HDR_TYPE_UDP:
310 if (skb_transport_header_was_set(skb)) {
311 *hoffset = skb_transport_offset(skb);
323 static int tcf_pedit_act(struct sk_buff *skb, const struct tc_action *a,
324 struct tcf_result *res)
326 struct tcf_pedit *p = to_pedit(a);
330 spin_lock(&p->tcf_lock);
332 max_offset = (skb_transport_header_was_set(skb) ?
333 skb_transport_offset(skb) :
334 skb_network_offset(skb)) +
335 p->tcfp_off_max_hint;
336 if (skb_ensure_writable(skb, min(skb->len, max_offset)))
339 tcf_lastuse_update(&p->tcf_tm);
341 if (p->tcfp_nkeys > 0) {
342 struct tc_pedit_key *tkey = p->tcfp_keys;
343 struct tcf_pedit_key_ex *tkey_ex = p->tcfp_keys_ex;
344 enum pedit_header_type htype =
345 TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK;
346 enum pedit_cmd cmd = TCA_PEDIT_KEY_EX_CMD_SET;
348 for (i = p->tcfp_nkeys; i > 0; i--, tkey++) {
350 int offset = tkey->off;
356 htype = tkey_ex->htype;
362 rc = pedit_skb_hdr_offset(skb, htype, &hoffset);
364 pr_info("tc action pedit bad header type specified (0x%x)\n",
372 if (!offset_valid(skb, hoffset + tkey->at)) {
373 pr_info("tc action pedit 'at' offset %d out of bounds\n",
377 d = skb_header_pointer(skb, hoffset + tkey->at,
381 offset += (*d & tkey->offmask) >> tkey->shift;
385 pr_info("tc action pedit offset must be on 32 bit boundaries\n");
389 if (!offset_valid(skb, hoffset + offset)) {
390 pr_info("tc action pedit offset %d out of bounds\n",
395 ptr = skb_header_pointer(skb, hoffset + offset,
396 sizeof(hdata), &hdata);
399 /* just do it, baby */
401 case TCA_PEDIT_KEY_EX_CMD_SET:
404 case TCA_PEDIT_KEY_EX_CMD_ADD:
405 val = (*ptr + tkey->val) & ~tkey->mask;
408 pr_info("tc action pedit bad command (%d)\n",
413 *ptr = ((*ptr & tkey->mask) ^ val);
415 skb_store_bits(skb, hoffset + offset, ptr, 4);
420 WARN(1, "pedit BUG: index %d\n", p->tcf_index);
424 p->tcf_qstats.overlimits++;
426 bstats_update(&p->tcf_bstats, skb);
428 spin_unlock(&p->tcf_lock);
429 return p->tcf_action;
432 static void tcf_pedit_stats_update(struct tc_action *a, u64 bytes, u64 packets,
433 u64 drops, u64 lastuse, bool hw)
435 struct tcf_pedit *d = to_pedit(a);
436 struct tcf_t *tm = &d->tcf_tm;
438 tcf_action_update_stats(a, bytes, packets, drops, hw);
439 tm->lastuse = max_t(u64, tm->lastuse, lastuse);
442 static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a,
445 unsigned char *b = skb_tail_pointer(skb);
446 struct tcf_pedit *p = to_pedit(a);
447 struct tc_pedit *opt;
451 s = struct_size(opt, keys, p->tcfp_nkeys);
453 /* netlink spinlocks held above us - must use ATOMIC */
454 opt = kzalloc(s, GFP_ATOMIC);
458 spin_lock_bh(&p->tcf_lock);
459 memcpy(opt->keys, p->tcfp_keys, flex_array_size(opt, keys, p->tcfp_nkeys));
460 opt->index = p->tcf_index;
461 opt->nkeys = p->tcfp_nkeys;
462 opt->flags = p->tcfp_flags;
463 opt->action = p->tcf_action;
464 opt->refcnt = refcount_read(&p->tcf_refcnt) - ref;
465 opt->bindcnt = atomic_read(&p->tcf_bindcnt) - bind;
467 if (p->tcfp_keys_ex) {
468 if (tcf_pedit_key_ex_dump(skb,
471 goto nla_put_failure;
473 if (nla_put(skb, TCA_PEDIT_PARMS_EX, s, opt))
474 goto nla_put_failure;
476 if (nla_put(skb, TCA_PEDIT_PARMS, s, opt))
477 goto nla_put_failure;
480 tcf_tm_dump(&t, &p->tcf_tm);
481 if (nla_put_64bit(skb, TCA_PEDIT_TM, sizeof(t), &t, TCA_PEDIT_PAD))
482 goto nla_put_failure;
483 spin_unlock_bh(&p->tcf_lock);
489 spin_unlock_bh(&p->tcf_lock);
495 static int tcf_pedit_walker(struct net *net, struct sk_buff *skb,
496 struct netlink_callback *cb, int type,
497 const struct tc_action_ops *ops,
498 struct netlink_ext_ack *extack)
500 struct tc_action_net *tn = net_generic(net, pedit_net_id);
502 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
505 static int tcf_pedit_search(struct net *net, struct tc_action **a, u32 index)
507 struct tc_action_net *tn = net_generic(net, pedit_net_id);
509 return tcf_idr_search(tn, a, index);
512 static struct tc_action_ops act_pedit_ops = {
515 .owner = THIS_MODULE,
516 .act = tcf_pedit_act,
517 .stats_update = tcf_pedit_stats_update,
518 .dump = tcf_pedit_dump,
519 .cleanup = tcf_pedit_cleanup,
520 .init = tcf_pedit_init,
521 .walk = tcf_pedit_walker,
522 .lookup = tcf_pedit_search,
523 .size = sizeof(struct tcf_pedit),
526 static __net_init int pedit_init_net(struct net *net)
528 struct tc_action_net *tn = net_generic(net, pedit_net_id);
530 return tc_action_net_init(net, tn, &act_pedit_ops);
533 static void __net_exit pedit_exit_net(struct list_head *net_list)
535 tc_action_net_exit(net_list, pedit_net_id);
538 static struct pernet_operations pedit_net_ops = {
539 .init = pedit_init_net,
540 .exit_batch = pedit_exit_net,
542 .size = sizeof(struct tc_action_net),
545 MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
546 MODULE_DESCRIPTION("Generic Packet Editor actions");
547 MODULE_LICENSE("GPL");
549 static int __init pedit_init_module(void)
551 return tcf_register_action(&act_pedit_ops, &pedit_net_ops);
554 static void __exit pedit_cleanup_module(void)
556 tcf_unregister_action(&act_pedit_ops, &pedit_net_ops);
559 module_init(pedit_init_module);
560 module_exit(pedit_cleanup_module);