Merge branches 'acpi-pm', 'acpi-pci', 'acpi-sysfs' and 'acpi-tables'
[linux-2.6-microblaze.git] / net / sched / act_pedit.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * net/sched/act_pedit.c        Generic packet editor
4  *
5  * Authors:     Jamal Hadi Salim (2002-4)
6  */
7
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>
23
24 static unsigned int pedit_net_id;
25 static struct tc_action_ops act_pedit_ops;
26
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 },
30 };
31
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 },
35 };
36
37 static struct tcf_pedit_key_ex *tcf_pedit_keys_ex_parse(struct nlattr *nla,
38                                                         u8 n)
39 {
40         struct tcf_pedit_key_ex *keys_ex;
41         struct tcf_pedit_key_ex *k;
42         const struct nlattr *ka;
43         int err = -EINVAL;
44         int rem;
45
46         if (!nla)
47                 return NULL;
48
49         keys_ex = kcalloc(n, sizeof(*k), GFP_KERNEL);
50         if (!keys_ex)
51                 return ERR_PTR(-ENOMEM);
52
53         k = keys_ex;
54
55         nla_for_each_nested(ka, nla, rem) {
56                 struct nlattr *tb[TCA_PEDIT_KEY_EX_MAX + 1];
57
58                 if (!n) {
59                         err = -EINVAL;
60                         goto err_out;
61                 }
62                 n--;
63
64                 if (nla_type(ka) != TCA_PEDIT_KEY_EX) {
65                         err = -EINVAL;
66                         goto err_out;
67                 }
68
69                 err = nla_parse_nested_deprecated(tb, TCA_PEDIT_KEY_EX_MAX,
70                                                   ka, pedit_key_ex_policy,
71                                                   NULL);
72                 if (err)
73                         goto err_out;
74
75                 if (!tb[TCA_PEDIT_KEY_EX_HTYPE] ||
76                     !tb[TCA_PEDIT_KEY_EX_CMD]) {
77                         err = -EINVAL;
78                         goto err_out;
79                 }
80
81                 k->htype = nla_get_u16(tb[TCA_PEDIT_KEY_EX_HTYPE]);
82                 k->cmd = nla_get_u16(tb[TCA_PEDIT_KEY_EX_CMD]);
83
84                 if (k->htype > TCA_PEDIT_HDR_TYPE_MAX ||
85                     k->cmd > TCA_PEDIT_CMD_MAX) {
86                         err = -EINVAL;
87                         goto err_out;
88                 }
89
90                 k++;
91         }
92
93         if (n) {
94                 err = -EINVAL;
95                 goto err_out;
96         }
97
98         return keys_ex;
99
100 err_out:
101         kfree(keys_ex);
102         return ERR_PTR(err);
103 }
104
105 static int tcf_pedit_key_ex_dump(struct sk_buff *skb,
106                                  struct tcf_pedit_key_ex *keys_ex, int n)
107 {
108         struct nlattr *keys_start = nla_nest_start_noflag(skb,
109                                                           TCA_PEDIT_KEYS_EX);
110
111         if (!keys_start)
112                 goto nla_failure;
113         for (; n > 0; n--) {
114                 struct nlattr *key_start;
115
116                 key_start = nla_nest_start_noflag(skb, TCA_PEDIT_KEY_EX);
117                 if (!key_start)
118                         goto nla_failure;
119
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))
122                         goto nla_failure;
123
124                 nla_nest_end(skb, key_start);
125
126                 keys_ex++;
127         }
128
129         nla_nest_end(skb, keys_start);
130
131         return 0;
132 nla_failure:
133         nla_nest_cancel(skb, keys_start);
134         return -EINVAL;
135 }
136
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)
141 {
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;
150         struct tcf_pedit *p;
151         int ret = 0, err;
152         int i, ksize;
153         u32 index;
154
155         if (!nla) {
156                 NL_SET_ERR_MSG_MOD(extack, "Pedit requires attributes to be passed");
157                 return -EINVAL;
158         }
159
160         err = nla_parse_nested_deprecated(tb, TCA_PEDIT_MAX, nla,
161                                           pedit_policy, NULL);
162         if (err < 0)
163                 return err;
164
165         pattr = tb[TCA_PEDIT_PARMS];
166         if (!pattr)
167                 pattr = tb[TCA_PEDIT_PARMS_EX];
168         if (!pattr) {
169                 NL_SET_ERR_MSG_MOD(extack, "Missing required TCA_PEDIT_PARMS or TCA_PEDIT_PARMS_EX pedit attribute");
170                 return -EINVAL;
171         }
172
173         parm = nla_data(pattr);
174         if (!parm->nkeys) {
175                 NL_SET_ERR_MSG_MOD(extack, "Pedit requires keys to be passed");
176                 return -EINVAL;
177         }
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");
181                 return -EINVAL;
182         }
183
184         keys_ex = tcf_pedit_keys_ex_parse(tb[TCA_PEDIT_KEYS_EX], parm->nkeys);
185         if (IS_ERR(keys_ex))
186                 return PTR_ERR(keys_ex);
187
188         index = parm->index;
189         err = tcf_idr_check_alloc(tn, &index, a, bind);
190         if (!err) {
191                 ret = tcf_idr_create(tn, index, est, a,
192                                      &act_pedit_ops, bind, false, flags);
193                 if (ret) {
194                         tcf_idr_cleanup(tn, index);
195                         goto out_free;
196                 }
197                 ret = ACT_P_CREATED;
198         } else if (err > 0) {
199                 if (bind)
200                         goto out_free;
201                 if (!(flags & TCA_ACT_FLAGS_REPLACE)) {
202                         ret = -EEXIST;
203                         goto out_release;
204                 }
205         } else {
206                 ret = err;
207                 goto out_free;
208         }
209
210         err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
211         if (err < 0) {
212                 ret = err;
213                 goto out_release;
214         }
215         p = to_pedit(*a);
216         spin_lock_bh(&p->tcf_lock);
217
218         if (ret == ACT_P_CREATED ||
219             (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys)) {
220                 keys = kmalloc(ksize, GFP_ATOMIC);
221                 if (!keys) {
222                         spin_unlock_bh(&p->tcf_lock);
223                         ret = -ENOMEM;
224                         goto put_chain;
225                 }
226                 kfree(p->tcfp_keys);
227                 p->tcfp_keys = keys;
228                 p->tcfp_nkeys = parm->nkeys;
229         }
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;
234
235                 /* The AT option can read a single byte, we can bound the actual
236                  * value with uchar max.
237                  */
238                 cur += (0xff & p->tcfp_keys[i].offmask) >> p->tcfp_keys[i].shift;
239
240                 /* Each key touches 4 bytes starting from the computed offset */
241                 p->tcfp_off_max_hint = max(p->tcfp_off_max_hint, cur + 4);
242         }
243
244         p->tcfp_flags = parm->flags;
245         goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
246
247         kfree(p->tcfp_keys_ex);
248         p->tcfp_keys_ex = keys_ex;
249
250         spin_unlock_bh(&p->tcf_lock);
251         if (goto_ch)
252                 tcf_chain_put_by_act(goto_ch);
253         return ret;
254
255 put_chain:
256         if (goto_ch)
257                 tcf_chain_put_by_act(goto_ch);
258 out_release:
259         tcf_idr_release(*a, bind);
260 out_free:
261         kfree(keys_ex);
262         return ret;
263
264 }
265
266 static void tcf_pedit_cleanup(struct tc_action *a)
267 {
268         struct tcf_pedit *p = to_pedit(a);
269         struct tc_pedit_key *keys = p->tcfp_keys;
270
271         kfree(keys);
272         kfree(p->tcfp_keys_ex);
273 }
274
275 static bool offset_valid(struct sk_buff *skb, int offset)
276 {
277         if (offset > 0 && offset > skb->len)
278                 return false;
279
280         if  (offset < 0 && -offset > skb_headroom(skb))
281                 return false;
282
283         return true;
284 }
285
286 static int pedit_skb_hdr_offset(struct sk_buff *skb,
287                                 enum pedit_header_type htype, int *hoffset)
288 {
289         int ret = -EINVAL;
290
291         switch (htype) {
292         case TCA_PEDIT_KEY_EX_HDR_TYPE_ETH:
293                 if (skb_mac_header_was_set(skb)) {
294                         *hoffset = skb_mac_offset(skb);
295                         ret = 0;
296                 }
297                 break;
298         case TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK:
299         case TCA_PEDIT_KEY_EX_HDR_TYPE_IP4:
300         case TCA_PEDIT_KEY_EX_HDR_TYPE_IP6:
301                 *hoffset = skb_network_offset(skb);
302                 ret = 0;
303                 break;
304         case TCA_PEDIT_KEY_EX_HDR_TYPE_TCP:
305         case TCA_PEDIT_KEY_EX_HDR_TYPE_UDP:
306                 if (skb_transport_header_was_set(skb)) {
307                         *hoffset = skb_transport_offset(skb);
308                         ret = 0;
309                 }
310                 break;
311         default:
312                 ret = -EINVAL;
313                 break;
314         }
315
316         return ret;
317 }
318
319 static int tcf_pedit_act(struct sk_buff *skb, const struct tc_action *a,
320                          struct tcf_result *res)
321 {
322         struct tcf_pedit *p = to_pedit(a);
323         u32 max_offset;
324         int i;
325
326         spin_lock(&p->tcf_lock);
327
328         max_offset = (skb_transport_header_was_set(skb) ?
329                       skb_transport_offset(skb) :
330                       skb_network_offset(skb)) +
331                      p->tcfp_off_max_hint;
332         if (skb_ensure_writable(skb, min(skb->len, max_offset)))
333                 goto unlock;
334
335         tcf_lastuse_update(&p->tcf_tm);
336
337         if (p->tcfp_nkeys > 0) {
338                 struct tc_pedit_key *tkey = p->tcfp_keys;
339                 struct tcf_pedit_key_ex *tkey_ex = p->tcfp_keys_ex;
340                 enum pedit_header_type htype =
341                         TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK;
342                 enum pedit_cmd cmd = TCA_PEDIT_KEY_EX_CMD_SET;
343
344                 for (i = p->tcfp_nkeys; i > 0; i--, tkey++) {
345                         u32 *ptr, hdata;
346                         int offset = tkey->off;
347                         int hoffset;
348                         u32 val;
349                         int rc;
350
351                         if (tkey_ex) {
352                                 htype = tkey_ex->htype;
353                                 cmd = tkey_ex->cmd;
354
355                                 tkey_ex++;
356                         }
357
358                         rc = pedit_skb_hdr_offset(skb, htype, &hoffset);
359                         if (rc) {
360                                 pr_info("tc action pedit bad header type specified (0x%x)\n",
361                                         htype);
362                                 goto bad;
363                         }
364
365                         if (tkey->offmask) {
366                                 u8 *d, _d;
367
368                                 if (!offset_valid(skb, hoffset + tkey->at)) {
369                                         pr_info("tc action pedit 'at' offset %d out of bounds\n",
370                                                 hoffset + tkey->at);
371                                         goto bad;
372                                 }
373                                 d = skb_header_pointer(skb, hoffset + tkey->at,
374                                                        sizeof(_d), &_d);
375                                 if (!d)
376                                         goto bad;
377                                 offset += (*d & tkey->offmask) >> tkey->shift;
378                         }
379
380                         if (offset % 4) {
381                                 pr_info("tc action pedit offset must be on 32 bit boundaries\n");
382                                 goto bad;
383                         }
384
385                         if (!offset_valid(skb, hoffset + offset)) {
386                                 pr_info("tc action pedit offset %d out of bounds\n",
387                                         hoffset + offset);
388                                 goto bad;
389                         }
390
391                         ptr = skb_header_pointer(skb, hoffset + offset,
392                                                  sizeof(hdata), &hdata);
393                         if (!ptr)
394                                 goto bad;
395                         /* just do it, baby */
396                         switch (cmd) {
397                         case TCA_PEDIT_KEY_EX_CMD_SET:
398                                 val = tkey->val;
399                                 break;
400                         case TCA_PEDIT_KEY_EX_CMD_ADD:
401                                 val = (*ptr + tkey->val) & ~tkey->mask;
402                                 break;
403                         default:
404                                 pr_info("tc action pedit bad command (%d)\n",
405                                         cmd);
406                                 goto bad;
407                         }
408
409                         *ptr = ((*ptr & tkey->mask) ^ val);
410                         if (ptr == &hdata)
411                                 skb_store_bits(skb, hoffset + offset, ptr, 4);
412                 }
413
414                 goto done;
415         } else {
416                 WARN(1, "pedit BUG: index %d\n", p->tcf_index);
417         }
418
419 bad:
420         p->tcf_qstats.overlimits++;
421 done:
422         bstats_update(&p->tcf_bstats, skb);
423 unlock:
424         spin_unlock(&p->tcf_lock);
425         return p->tcf_action;
426 }
427
428 static void tcf_pedit_stats_update(struct tc_action *a, u64 bytes, u64 packets,
429                                    u64 drops, u64 lastuse, bool hw)
430 {
431         struct tcf_pedit *d = to_pedit(a);
432         struct tcf_t *tm = &d->tcf_tm;
433
434         tcf_action_update_stats(a, bytes, packets, drops, hw);
435         tm->lastuse = max_t(u64, tm->lastuse, lastuse);
436 }
437
438 static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a,
439                           int bind, int ref)
440 {
441         unsigned char *b = skb_tail_pointer(skb);
442         struct tcf_pedit *p = to_pedit(a);
443         struct tc_pedit *opt;
444         struct tcf_t t;
445         int s;
446
447         s = struct_size(opt, keys, p->tcfp_nkeys);
448
449         /* netlink spinlocks held above us - must use ATOMIC */
450         opt = kzalloc(s, GFP_ATOMIC);
451         if (unlikely(!opt))
452                 return -ENOBUFS;
453
454         spin_lock_bh(&p->tcf_lock);
455         memcpy(opt->keys, p->tcfp_keys, flex_array_size(opt, keys, p->tcfp_nkeys));
456         opt->index = p->tcf_index;
457         opt->nkeys = p->tcfp_nkeys;
458         opt->flags = p->tcfp_flags;
459         opt->action = p->tcf_action;
460         opt->refcnt = refcount_read(&p->tcf_refcnt) - ref;
461         opt->bindcnt = atomic_read(&p->tcf_bindcnt) - bind;
462
463         if (p->tcfp_keys_ex) {
464                 if (tcf_pedit_key_ex_dump(skb,
465                                           p->tcfp_keys_ex,
466                                           p->tcfp_nkeys))
467                         goto nla_put_failure;
468
469                 if (nla_put(skb, TCA_PEDIT_PARMS_EX, s, opt))
470                         goto nla_put_failure;
471         } else {
472                 if (nla_put(skb, TCA_PEDIT_PARMS, s, opt))
473                         goto nla_put_failure;
474         }
475
476         tcf_tm_dump(&t, &p->tcf_tm);
477         if (nla_put_64bit(skb, TCA_PEDIT_TM, sizeof(t), &t, TCA_PEDIT_PAD))
478                 goto nla_put_failure;
479         spin_unlock_bh(&p->tcf_lock);
480
481         kfree(opt);
482         return skb->len;
483
484 nla_put_failure:
485         spin_unlock_bh(&p->tcf_lock);
486         nlmsg_trim(skb, b);
487         kfree(opt);
488         return -1;
489 }
490
491 static int tcf_pedit_walker(struct net *net, struct sk_buff *skb,
492                             struct netlink_callback *cb, int type,
493                             const struct tc_action_ops *ops,
494                             struct netlink_ext_ack *extack)
495 {
496         struct tc_action_net *tn = net_generic(net, pedit_net_id);
497
498         return tcf_generic_walker(tn, skb, cb, type, ops, extack);
499 }
500
501 static int tcf_pedit_search(struct net *net, struct tc_action **a, u32 index)
502 {
503         struct tc_action_net *tn = net_generic(net, pedit_net_id);
504
505         return tcf_idr_search(tn, a, index);
506 }
507
508 static int tcf_pedit_offload_act_setup(struct tc_action *act, void *entry_data,
509                                        u32 *index_inc, bool bind)
510 {
511         if (bind) {
512                 struct flow_action_entry *entry = entry_data;
513                 int k;
514
515                 for (k = 0; k < tcf_pedit_nkeys(act); k++) {
516                         switch (tcf_pedit_cmd(act, k)) {
517                         case TCA_PEDIT_KEY_EX_CMD_SET:
518                                 entry->id = FLOW_ACTION_MANGLE;
519                                 break;
520                         case TCA_PEDIT_KEY_EX_CMD_ADD:
521                                 entry->id = FLOW_ACTION_ADD;
522                                 break;
523                         default:
524                                 return -EOPNOTSUPP;
525                         }
526                         entry->mangle.htype = tcf_pedit_htype(act, k);
527                         entry->mangle.mask = tcf_pedit_mask(act, k);
528                         entry->mangle.val = tcf_pedit_val(act, k);
529                         entry->mangle.offset = tcf_pedit_offset(act, k);
530                         entry->hw_stats = tc_act_hw_stats(act->hw_stats);
531                         entry++;
532                 }
533                 *index_inc = k;
534         } else {
535                 return -EOPNOTSUPP;
536         }
537
538         return 0;
539 }
540
541 static struct tc_action_ops act_pedit_ops = {
542         .kind           =       "pedit",
543         .id             =       TCA_ID_PEDIT,
544         .owner          =       THIS_MODULE,
545         .act            =       tcf_pedit_act,
546         .stats_update   =       tcf_pedit_stats_update,
547         .dump           =       tcf_pedit_dump,
548         .cleanup        =       tcf_pedit_cleanup,
549         .init           =       tcf_pedit_init,
550         .walk           =       tcf_pedit_walker,
551         .lookup         =       tcf_pedit_search,
552         .offload_act_setup =    tcf_pedit_offload_act_setup,
553         .size           =       sizeof(struct tcf_pedit),
554 };
555
556 static __net_init int pedit_init_net(struct net *net)
557 {
558         struct tc_action_net *tn = net_generic(net, pedit_net_id);
559
560         return tc_action_net_init(net, tn, &act_pedit_ops);
561 }
562
563 static void __net_exit pedit_exit_net(struct list_head *net_list)
564 {
565         tc_action_net_exit(net_list, pedit_net_id);
566 }
567
568 static struct pernet_operations pedit_net_ops = {
569         .init = pedit_init_net,
570         .exit_batch = pedit_exit_net,
571         .id   = &pedit_net_id,
572         .size = sizeof(struct tc_action_net),
573 };
574
575 MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
576 MODULE_DESCRIPTION("Generic Packet Editor actions");
577 MODULE_LICENSE("GPL");
578
579 static int __init pedit_init_module(void)
580 {
581         return tcf_register_action(&act_pedit_ops, &pedit_net_ops);
582 }
583
584 static void __exit pedit_cleanup_module(void)
585 {
586         tcf_unregister_action(&act_pedit_ops, &pedit_net_ops);
587 }
588
589 module_init(pedit_init_module);
590 module_exit(pedit_cleanup_module);