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 struct tc_action_ops act_pedit_ops;
26 static const struct nla_policy pedit_policy[TCA_PEDIT_MAX + 1] = {
27 [TCA_PEDIT_PARMS] = { .len = sizeof(struct tc_pedit) },
28 [TCA_PEDIT_KEYS_EX] = { .type = NLA_NESTED },
31 static const struct nla_policy pedit_key_ex_policy[TCA_PEDIT_KEY_EX_MAX + 1] = {
32 [TCA_PEDIT_KEY_EX_HTYPE] = { .type = NLA_U16 },
33 [TCA_PEDIT_KEY_EX_CMD] = { .type = NLA_U16 },
36 static struct tcf_pedit_key_ex *tcf_pedit_keys_ex_parse(struct nlattr *nla,
39 struct tcf_pedit_key_ex *keys_ex;
40 struct tcf_pedit_key_ex *k;
41 const struct nlattr *ka;
48 keys_ex = kcalloc(n, sizeof(*k), GFP_KERNEL);
50 return ERR_PTR(-ENOMEM);
54 nla_for_each_nested(ka, nla, rem) {
55 struct nlattr *tb[TCA_PEDIT_KEY_EX_MAX + 1];
63 if (nla_type(ka) != TCA_PEDIT_KEY_EX) {
68 err = nla_parse_nested_deprecated(tb, TCA_PEDIT_KEY_EX_MAX,
69 ka, pedit_key_ex_policy,
74 if (!tb[TCA_PEDIT_KEY_EX_HTYPE] ||
75 !tb[TCA_PEDIT_KEY_EX_CMD]) {
80 k->htype = nla_get_u16(tb[TCA_PEDIT_KEY_EX_HTYPE]);
81 k->cmd = nla_get_u16(tb[TCA_PEDIT_KEY_EX_CMD]);
83 if (k->htype > TCA_PEDIT_HDR_TYPE_MAX ||
84 k->cmd > TCA_PEDIT_CMD_MAX) {
104 static int tcf_pedit_key_ex_dump(struct sk_buff *skb,
105 struct tcf_pedit_key_ex *keys_ex, int n)
107 struct nlattr *keys_start = nla_nest_start_noflag(skb,
113 struct nlattr *key_start;
115 key_start = nla_nest_start_noflag(skb, TCA_PEDIT_KEY_EX);
119 if (nla_put_u16(skb, TCA_PEDIT_KEY_EX_HTYPE, keys_ex->htype) ||
120 nla_put_u16(skb, TCA_PEDIT_KEY_EX_CMD, keys_ex->cmd))
123 nla_nest_end(skb, key_start);
128 nla_nest_end(skb, keys_start);
132 nla_nest_cancel(skb, keys_start);
136 static int tcf_pedit_init(struct net *net, struct nlattr *nla,
137 struct nlattr *est, struct tc_action **a,
138 struct tcf_proto *tp, u32 flags,
139 struct netlink_ext_ack *extack)
141 struct tc_action_net *tn = net_generic(net, act_pedit_ops.net_id);
142 bool bind = flags & TCA_ACT_FLAGS_BIND;
143 struct nlattr *tb[TCA_PEDIT_MAX + 1];
144 struct tcf_chain *goto_ch = NULL;
145 struct tc_pedit_key *keys = NULL;
146 struct tcf_pedit_key_ex *keys_ex;
147 struct tc_pedit *parm;
148 struct nlattr *pattr;
155 NL_SET_ERR_MSG_MOD(extack, "Pedit requires attributes to be passed");
159 err = nla_parse_nested_deprecated(tb, TCA_PEDIT_MAX, nla,
164 pattr = tb[TCA_PEDIT_PARMS];
166 pattr = tb[TCA_PEDIT_PARMS_EX];
168 NL_SET_ERR_MSG_MOD(extack, "Missing required TCA_PEDIT_PARMS or TCA_PEDIT_PARMS_EX pedit attribute");
172 parm = nla_data(pattr);
174 NL_SET_ERR_MSG_MOD(extack, "Pedit requires keys to be passed");
177 ksize = parm->nkeys * sizeof(struct tc_pedit_key);
178 if (nla_len(pattr) < sizeof(*parm) + ksize) {
179 NL_SET_ERR_MSG_ATTR(extack, pattr, "Length of TCA_PEDIT_PARMS or TCA_PEDIT_PARMS_EX pedit attribute is invalid");
183 keys_ex = tcf_pedit_keys_ex_parse(tb[TCA_PEDIT_KEYS_EX], parm->nkeys);
185 return PTR_ERR(keys_ex);
188 err = tcf_idr_check_alloc(tn, &index, a, bind);
190 ret = tcf_idr_create(tn, index, est, a,
191 &act_pedit_ops, bind, false, flags);
193 tcf_idr_cleanup(tn, index);
197 } else if (err > 0) {
200 if (!(flags & TCA_ACT_FLAGS_REPLACE)) {
209 err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
215 spin_lock_bh(&p->tcf_lock);
217 if (ret == ACT_P_CREATED ||
218 (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys)) {
219 keys = kmalloc(ksize, GFP_ATOMIC);
221 spin_unlock_bh(&p->tcf_lock);
227 p->tcfp_nkeys = parm->nkeys;
229 memcpy(p->tcfp_keys, parm->keys, ksize);
230 p->tcfp_off_max_hint = 0;
231 for (i = 0; i < p->tcfp_nkeys; ++i) {
232 u32 cur = p->tcfp_keys[i].off;
234 /* sanitize the shift value for any later use */
235 p->tcfp_keys[i].shift = min_t(size_t, BITS_PER_TYPE(int) - 1,
236 p->tcfp_keys[i].shift);
238 /* The AT option can read a single byte, we can bound the actual
239 * value with uchar max.
241 cur += (0xff & p->tcfp_keys[i].offmask) >> p->tcfp_keys[i].shift;
243 /* Each key touches 4 bytes starting from the computed offset */
244 p->tcfp_off_max_hint = max(p->tcfp_off_max_hint, cur + 4);
247 p->tcfp_flags = parm->flags;
248 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
250 kfree(p->tcfp_keys_ex);
251 p->tcfp_keys_ex = keys_ex;
253 spin_unlock_bh(&p->tcf_lock);
255 tcf_chain_put_by_act(goto_ch);
260 tcf_chain_put_by_act(goto_ch);
262 tcf_idr_release(*a, bind);
269 static void tcf_pedit_cleanup(struct tc_action *a)
271 struct tcf_pedit *p = to_pedit(a);
272 struct tc_pedit_key *keys = p->tcfp_keys;
275 kfree(p->tcfp_keys_ex);
278 static bool offset_valid(struct sk_buff *skb, int offset)
280 if (offset > 0 && offset > skb->len)
283 if (offset < 0 && -offset > skb_headroom(skb))
289 static int pedit_skb_hdr_offset(struct sk_buff *skb,
290 enum pedit_header_type htype, int *hoffset)
295 case TCA_PEDIT_KEY_EX_HDR_TYPE_ETH:
296 if (skb_mac_header_was_set(skb)) {
297 *hoffset = skb_mac_offset(skb);
301 case TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK:
302 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP4:
303 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP6:
304 *hoffset = skb_network_offset(skb);
307 case TCA_PEDIT_KEY_EX_HDR_TYPE_TCP:
308 case TCA_PEDIT_KEY_EX_HDR_TYPE_UDP:
309 if (skb_transport_header_was_set(skb)) {
310 *hoffset = skb_transport_offset(skb);
322 static int tcf_pedit_act(struct sk_buff *skb, const struct tc_action *a,
323 struct tcf_result *res)
325 struct tcf_pedit *p = to_pedit(a);
329 spin_lock(&p->tcf_lock);
331 max_offset = (skb_transport_header_was_set(skb) ?
332 skb_transport_offset(skb) :
333 skb_network_offset(skb)) +
334 p->tcfp_off_max_hint;
335 if (skb_ensure_writable(skb, min(skb->len, max_offset)))
338 tcf_lastuse_update(&p->tcf_tm);
340 if (p->tcfp_nkeys > 0) {
341 struct tc_pedit_key *tkey = p->tcfp_keys;
342 struct tcf_pedit_key_ex *tkey_ex = p->tcfp_keys_ex;
343 enum pedit_header_type htype =
344 TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK;
345 enum pedit_cmd cmd = TCA_PEDIT_KEY_EX_CMD_SET;
347 for (i = p->tcfp_nkeys; i > 0; i--, tkey++) {
349 int offset = tkey->off;
355 htype = tkey_ex->htype;
361 rc = pedit_skb_hdr_offset(skb, htype, &hoffset);
363 pr_info("tc action pedit bad header type specified (0x%x)\n",
371 if (!offset_valid(skb, hoffset + tkey->at)) {
372 pr_info("tc action pedit 'at' offset %d out of bounds\n",
376 d = skb_header_pointer(skb, hoffset + tkey->at,
380 offset += (*d & tkey->offmask) >> tkey->shift;
384 pr_info("tc action pedit offset must be on 32 bit boundaries\n");
388 if (!offset_valid(skb, hoffset + offset)) {
389 pr_info("tc action pedit offset %d out of bounds\n",
394 ptr = skb_header_pointer(skb, hoffset + offset,
395 sizeof(hdata), &hdata);
398 /* just do it, baby */
400 case TCA_PEDIT_KEY_EX_CMD_SET:
403 case TCA_PEDIT_KEY_EX_CMD_ADD:
404 val = (*ptr + tkey->val) & ~tkey->mask;
407 pr_info("tc action pedit bad command (%d)\n",
412 *ptr = ((*ptr & tkey->mask) ^ val);
414 skb_store_bits(skb, hoffset + offset, ptr, 4);
419 WARN(1, "pedit BUG: index %d\n", p->tcf_index);
423 p->tcf_qstats.overlimits++;
425 bstats_update(&p->tcf_bstats, skb);
427 spin_unlock(&p->tcf_lock);
428 return p->tcf_action;
431 static void tcf_pedit_stats_update(struct tc_action *a, u64 bytes, u64 packets,
432 u64 drops, u64 lastuse, bool hw)
434 struct tcf_pedit *d = to_pedit(a);
435 struct tcf_t *tm = &d->tcf_tm;
437 tcf_action_update_stats(a, bytes, packets, drops, hw);
438 tm->lastuse = max_t(u64, tm->lastuse, lastuse);
441 static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a,
444 unsigned char *b = skb_tail_pointer(skb);
445 struct tcf_pedit *p = to_pedit(a);
446 struct tc_pedit *opt;
450 s = struct_size(opt, keys, p->tcfp_nkeys);
452 /* netlink spinlocks held above us - must use ATOMIC */
453 opt = kzalloc(s, GFP_ATOMIC);
457 spin_lock_bh(&p->tcf_lock);
458 memcpy(opt->keys, p->tcfp_keys, flex_array_size(opt, keys, p->tcfp_nkeys));
459 opt->index = p->tcf_index;
460 opt->nkeys = p->tcfp_nkeys;
461 opt->flags = p->tcfp_flags;
462 opt->action = p->tcf_action;
463 opt->refcnt = refcount_read(&p->tcf_refcnt) - ref;
464 opt->bindcnt = atomic_read(&p->tcf_bindcnt) - bind;
466 if (p->tcfp_keys_ex) {
467 if (tcf_pedit_key_ex_dump(skb,
470 goto nla_put_failure;
472 if (nla_put(skb, TCA_PEDIT_PARMS_EX, s, opt))
473 goto nla_put_failure;
475 if (nla_put(skb, TCA_PEDIT_PARMS, s, opt))
476 goto nla_put_failure;
479 tcf_tm_dump(&t, &p->tcf_tm);
480 if (nla_put_64bit(skb, TCA_PEDIT_TM, sizeof(t), &t, TCA_PEDIT_PAD))
481 goto nla_put_failure;
482 spin_unlock_bh(&p->tcf_lock);
488 spin_unlock_bh(&p->tcf_lock);
494 static int tcf_pedit_offload_act_setup(struct tc_action *act, void *entry_data,
495 u32 *index_inc, bool bind,
496 struct netlink_ext_ack *extack)
499 struct flow_action_entry *entry = entry_data;
502 for (k = 0; k < tcf_pedit_nkeys(act); k++) {
503 switch (tcf_pedit_cmd(act, k)) {
504 case TCA_PEDIT_KEY_EX_CMD_SET:
505 entry->id = FLOW_ACTION_MANGLE;
507 case TCA_PEDIT_KEY_EX_CMD_ADD:
508 entry->id = FLOW_ACTION_ADD;
511 NL_SET_ERR_MSG_MOD(extack, "Unsupported pedit command offload");
514 entry->mangle.htype = tcf_pedit_htype(act, k);
515 entry->mangle.mask = tcf_pedit_mask(act, k);
516 entry->mangle.val = tcf_pedit_val(act, k);
517 entry->mangle.offset = tcf_pedit_offset(act, k);
518 entry->hw_stats = tc_act_hw_stats(act->hw_stats);
529 static struct tc_action_ops act_pedit_ops = {
532 .owner = THIS_MODULE,
533 .act = tcf_pedit_act,
534 .stats_update = tcf_pedit_stats_update,
535 .dump = tcf_pedit_dump,
536 .cleanup = tcf_pedit_cleanup,
537 .init = tcf_pedit_init,
538 .offload_act_setup = tcf_pedit_offload_act_setup,
539 .size = sizeof(struct tcf_pedit),
542 static __net_init int pedit_init_net(struct net *net)
544 struct tc_action_net *tn = net_generic(net, act_pedit_ops.net_id);
546 return tc_action_net_init(net, tn, &act_pedit_ops);
549 static void __net_exit pedit_exit_net(struct list_head *net_list)
551 tc_action_net_exit(net_list, act_pedit_ops.net_id);
554 static struct pernet_operations pedit_net_ops = {
555 .init = pedit_init_net,
556 .exit_batch = pedit_exit_net,
557 .id = &act_pedit_ops.net_id,
558 .size = sizeof(struct tc_action_net),
561 MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
562 MODULE_DESCRIPTION("Generic Packet Editor actions");
563 MODULE_LICENSE("GPL");
565 static int __init pedit_init_module(void)
567 return tcf_register_action(&act_pedit_ops, &pedit_net_ops);
570 static void __exit pedit_cleanup_module(void)
572 tcf_unregister_action(&act_pedit_ops, &pedit_net_ops);
575 module_init(pedit_init_module);
576 module_exit(pedit_cleanup_module);