Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[linux-2.6-block.git] / net / sched / act_ife.c
CommitLineData
ef6980b6
JHS
1/*
2 * net/sched/ife.c Inter-FE action based on ForCES WG InterFE LFB
3 *
4 * Refer to:
5 * draft-ietf-forces-interfelfb-03
6 * and
7 * netdev01 paper:
8 * "Distributing Linux Traffic Control Classifier-Action
9 * Subsystem"
10 * Authors: Jamal Hadi Salim and Damascene M. Joachimpillai
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
17 * copyright Jamal Hadi Salim (2015)
18 *
19*/
20
21#include <linux/types.h>
22#include <linux/kernel.h>
23#include <linux/string.h>
24#include <linux/errno.h>
25#include <linux/skbuff.h>
26#include <linux/rtnetlink.h>
27#include <linux/module.h>
28#include <linux/init.h>
29#include <net/net_namespace.h>
30#include <net/netlink.h>
31#include <net/pkt_sched.h>
32#include <uapi/linux/tc_act/tc_ife.h>
33#include <net/tc_act/tc_ife.h>
34#include <linux/etherdevice.h>
295a6e06 35#include <net/ife.h>
ef6980b6 36
c7d03a00 37static unsigned int ife_net_id;
ef6980b6 38static int max_metacnt = IFE_META_MAX + 1;
a85a970a 39static struct tc_action_ops act_ife_ops;
ef6980b6
JHS
40
41static const struct nla_policy ife_policy[TCA_IFE_MAX + 1] = {
42 [TCA_IFE_PARMS] = { .len = sizeof(struct tc_ife)},
43 [TCA_IFE_DMAC] = { .len = ETH_ALEN},
44 [TCA_IFE_SMAC] = { .len = ETH_ALEN},
45 [TCA_IFE_TYPE] = { .type = NLA_U16},
46};
47
6a5d58b6
JHS
48int ife_encode_meta_u16(u16 metaval, void *skbdata, struct tcf_meta_info *mi)
49{
50 u16 edata = 0;
51
52 if (mi->metaval)
53 edata = *(u16 *)mi->metaval;
54 else if (metaval)
55 edata = metaval;
56
57 if (!edata) /* will not encode */
58 return 0;
59
60 edata = htons(edata);
61 return ife_tlv_meta_encode(skbdata, mi->metaid, 2, &edata);
62}
63EXPORT_SYMBOL_GPL(ife_encode_meta_u16);
64
ef6980b6
JHS
65int ife_get_meta_u32(struct sk_buff *skb, struct tcf_meta_info *mi)
66{
67 if (mi->metaval)
68 return nla_put_u32(skb, mi->metaid, *(u32 *)mi->metaval);
69 else
70 return nla_put(skb, mi->metaid, 0, NULL);
71}
72EXPORT_SYMBOL_GPL(ife_get_meta_u32);
73
74int ife_check_meta_u32(u32 metaval, struct tcf_meta_info *mi)
75{
76 if (metaval || mi->metaval)
77 return 8; /* T+L+V == 2+2+4 */
78
79 return 0;
80}
81EXPORT_SYMBOL_GPL(ife_check_meta_u32);
82
6a5d58b6
JHS
83int ife_check_meta_u16(u16 metaval, struct tcf_meta_info *mi)
84{
85 if (metaval || mi->metaval)
86 return 8; /* T+L+(V) == 2+2+(2+2bytepad) */
87
88 return 0;
89}
90EXPORT_SYMBOL_GPL(ife_check_meta_u16);
91
ef6980b6
JHS
92int ife_encode_meta_u32(u32 metaval, void *skbdata, struct tcf_meta_info *mi)
93{
94 u32 edata = metaval;
95
96 if (mi->metaval)
97 edata = *(u32 *)mi->metaval;
98 else if (metaval)
99 edata = metaval;
100
101 if (!edata) /* will not encode */
102 return 0;
103
104 edata = htonl(edata);
105 return ife_tlv_meta_encode(skbdata, mi->metaid, 4, &edata);
106}
107EXPORT_SYMBOL_GPL(ife_encode_meta_u32);
108
109int ife_get_meta_u16(struct sk_buff *skb, struct tcf_meta_info *mi)
110{
111 if (mi->metaval)
112 return nla_put_u16(skb, mi->metaid, *(u16 *)mi->metaval);
113 else
114 return nla_put(skb, mi->metaid, 0, NULL);
115}
116EXPORT_SYMBOL_GPL(ife_get_meta_u16);
117
067a7cd0 118int ife_alloc_meta_u32(struct tcf_meta_info *mi, void *metaval, gfp_t gfp)
ef6980b6 119{
067a7cd0 120 mi->metaval = kmemdup(metaval, sizeof(u32), gfp);
ef6980b6
JHS
121 if (!mi->metaval)
122 return -ENOMEM;
123
124 return 0;
125}
126EXPORT_SYMBOL_GPL(ife_alloc_meta_u32);
127
067a7cd0 128int ife_alloc_meta_u16(struct tcf_meta_info *mi, void *metaval, gfp_t gfp)
ef6980b6 129{
067a7cd0 130 mi->metaval = kmemdup(metaval, sizeof(u16), gfp);
ef6980b6
JHS
131 if (!mi->metaval)
132 return -ENOMEM;
133
134 return 0;
135}
136EXPORT_SYMBOL_GPL(ife_alloc_meta_u16);
137
138void ife_release_meta_gen(struct tcf_meta_info *mi)
139{
140 kfree(mi->metaval);
141}
142EXPORT_SYMBOL_GPL(ife_release_meta_gen);
143
144int ife_validate_meta_u32(void *val, int len)
145{
28a10c42 146 if (len == sizeof(u32))
ef6980b6
JHS
147 return 0;
148
149 return -EINVAL;
150}
151EXPORT_SYMBOL_GPL(ife_validate_meta_u32);
152
153int ife_validate_meta_u16(void *val, int len)
154{
28a10c42
JHS
155 /* length will not include padding */
156 if (len == sizeof(u16))
ef6980b6
JHS
157 return 0;
158
159 return -EINVAL;
160}
161EXPORT_SYMBOL_GPL(ife_validate_meta_u16);
162
163static LIST_HEAD(ifeoplist);
164static DEFINE_RWLOCK(ife_mod_lock);
165
166static struct tcf_meta_ops *find_ife_oplist(u16 metaid)
167{
168 struct tcf_meta_ops *o;
169
170 read_lock(&ife_mod_lock);
171 list_for_each_entry(o, &ifeoplist, list) {
172 if (o->metaid == metaid) {
173 if (!try_module_get(o->owner))
174 o = NULL;
175 read_unlock(&ife_mod_lock);
176 return o;
177 }
178 }
179 read_unlock(&ife_mod_lock);
180
181 return NULL;
182}
183
184int register_ife_op(struct tcf_meta_ops *mops)
185{
186 struct tcf_meta_ops *m;
187
188 if (!mops->metaid || !mops->metatype || !mops->name ||
189 !mops->check_presence || !mops->encode || !mops->decode ||
190 !mops->get || !mops->alloc)
191 return -EINVAL;
192
193 write_lock(&ife_mod_lock);
194
195 list_for_each_entry(m, &ifeoplist, list) {
196 if (m->metaid == mops->metaid ||
197 (strcmp(mops->name, m->name) == 0)) {
198 write_unlock(&ife_mod_lock);
199 return -EEXIST;
200 }
201 }
202
203 if (!mops->release)
204 mops->release = ife_release_meta_gen;
205
206 list_add_tail(&mops->list, &ifeoplist);
207 write_unlock(&ife_mod_lock);
208 return 0;
209}
210EXPORT_SYMBOL_GPL(unregister_ife_op);
211
212int unregister_ife_op(struct tcf_meta_ops *mops)
213{
214 struct tcf_meta_ops *m;
215 int err = -ENOENT;
216
217 write_lock(&ife_mod_lock);
218 list_for_each_entry(m, &ifeoplist, list) {
219 if (m->metaid == mops->metaid) {
220 list_del(&mops->list);
221 err = 0;
222 break;
223 }
224 }
225 write_unlock(&ife_mod_lock);
226
227 return err;
228}
229EXPORT_SYMBOL_GPL(register_ife_op);
230
231static int ife_validate_metatype(struct tcf_meta_ops *ops, void *val, int len)
232{
233 int ret = 0;
234 /* XXX: unfortunately cant use nla_policy at this point
235 * because a length of 0 is valid in the case of
236 * "allow". "use" semantics do enforce for proper
237 * length and i couldve use nla_policy but it makes it hard
238 * to use it just for that..
239 */
240 if (ops->validate)
241 return ops->validate(val, len);
242
243 if (ops->metatype == NLA_U32)
244 ret = ife_validate_meta_u32(val, len);
245 else if (ops->metatype == NLA_U16)
246 ret = ife_validate_meta_u16(val, len);
247
248 return ret;
249}
250
65787594 251#ifdef CONFIG_MODULES
d3f24ba8
RM
252static const char *ife_meta_id2name(u32 metaid)
253{
254 switch (metaid) {
255 case IFE_META_SKBMARK:
256 return "skbmark";
257 case IFE_META_PRIO:
258 return "skbprio";
259 case IFE_META_TCINDEX:
260 return "tcindex";
261 default:
262 return "unknown";
263 }
264}
65787594 265#endif
d3f24ba8 266
ef6980b6 267/* called when adding new meta information
067a7cd0 268 * under ife->tcf_lock for existing action
ef6980b6
JHS
269*/
270static int load_metaops_and_vet(struct tcf_ife_info *ife, u32 metaid,
067a7cd0 271 void *val, int len, bool exists)
ef6980b6
JHS
272{
273 struct tcf_meta_ops *ops = find_ife_oplist(metaid);
274 int ret = 0;
275
276 if (!ops) {
277 ret = -ENOENT;
278#ifdef CONFIG_MODULES
067a7cd0
WC
279 if (exists)
280 spin_unlock_bh(&ife->tcf_lock);
ef6980b6 281 rtnl_unlock();
d3f24ba8 282 request_module("ife-meta-%s", ife_meta_id2name(metaid));
ef6980b6 283 rtnl_lock();
067a7cd0
WC
284 if (exists)
285 spin_lock_bh(&ife->tcf_lock);
ef6980b6
JHS
286 ops = find_ife_oplist(metaid);
287#endif
288 }
289
290 if (ops) {
291 ret = 0;
292 if (len)
293 ret = ife_validate_metatype(ops, val, len);
294
295 module_put(ops->owner);
296 }
297
298 return ret;
299}
300
301/* called when adding new meta information
067a7cd0 302 * under ife->tcf_lock for existing action
ef6980b6
JHS
303*/
304static int add_metainfo(struct tcf_ife_info *ife, u32 metaid, void *metaval,
817e9f2c 305 int len, bool atomic)
ef6980b6
JHS
306{
307 struct tcf_meta_info *mi = NULL;
308 struct tcf_meta_ops *ops = find_ife_oplist(metaid);
309 int ret = 0;
310
311 if (!ops)
312 return -ENOENT;
313
817e9f2c 314 mi = kzalloc(sizeof(*mi), atomic ? GFP_ATOMIC : GFP_KERNEL);
ef6980b6
JHS
315 if (!mi) {
316 /*put back what find_ife_oplist took */
317 module_put(ops->owner);
318 return -ENOMEM;
319 }
320
321 mi->metaid = metaid;
322 mi->ops = ops;
323 if (len > 0) {
817e9f2c 324 ret = ops->alloc(mi, metaval, atomic ? GFP_ATOMIC : GFP_KERNEL);
ef6980b6
JHS
325 if (ret != 0) {
326 kfree(mi);
327 module_put(ops->owner);
328 return ret;
329 }
330 }
331
332 list_add_tail(&mi->metalist, &ife->metalist);
333
334 return ret;
335}
336
337static int use_all_metadata(struct tcf_ife_info *ife)
338{
339 struct tcf_meta_ops *o;
340 int rc = 0;
341 int installed = 0;
342
817e9f2c 343 read_lock(&ife_mod_lock);
ef6980b6 344 list_for_each_entry(o, &ifeoplist, list) {
817e9f2c 345 rc = add_metainfo(ife, o->metaid, NULL, 0, true);
ef6980b6
JHS
346 if (rc == 0)
347 installed += 1;
348 }
817e9f2c 349 read_unlock(&ife_mod_lock);
ef6980b6
JHS
350
351 if (installed)
352 return 0;
353 else
354 return -EINVAL;
355}
356
357static int dump_metalist(struct sk_buff *skb, struct tcf_ife_info *ife)
358{
359 struct tcf_meta_info *e;
360 struct nlattr *nest;
361 unsigned char *b = skb_tail_pointer(skb);
362 int total_encoded = 0;
363
364 /*can only happen on decode */
365 if (list_empty(&ife->metalist))
366 return 0;
367
368 nest = nla_nest_start(skb, TCA_IFE_METALST);
369 if (!nest)
370 goto out_nlmsg_trim;
371
372 list_for_each_entry(e, &ife->metalist, metalist) {
373 if (!e->ops->get(skb, e))
374 total_encoded += 1;
375 }
376
377 if (!total_encoded)
378 goto out_nlmsg_trim;
379
380 nla_nest_end(skb, nest);
381
382 return 0;
383
384out_nlmsg_trim:
385 nlmsg_trim(skb, b);
386 return -1;
387}
388
389/* under ife->tcf_lock */
9a63b255 390static void _tcf_ife_cleanup(struct tc_action *a)
ef6980b6 391{
a85a970a 392 struct tcf_ife_info *ife = to_ife(a);
ef6980b6
JHS
393 struct tcf_meta_info *e, *n;
394
395 list_for_each_entry_safe(e, n, &ife->metalist, metalist) {
396 module_put(e->ops->owner);
397 list_del(&e->metalist);
398 if (e->metaval) {
399 if (e->ops->release)
400 e->ops->release(e);
401 else
402 kfree(e->metaval);
403 }
404 kfree(e);
405 }
406}
407
9a63b255 408static void tcf_ife_cleanup(struct tc_action *a)
ef6980b6 409{
a85a970a 410 struct tcf_ife_info *ife = to_ife(a);
aa9fd9a3 411 struct tcf_ife_params *p;
ef6980b6
JHS
412
413 spin_lock_bh(&ife->tcf_lock);
9a63b255 414 _tcf_ife_cleanup(a);
ef6980b6 415 spin_unlock_bh(&ife->tcf_lock);
aa9fd9a3
AA
416
417 p = rcu_dereference_protected(ife->params, 1);
0a889b94
DC
418 if (p)
419 kfree_rcu(p, rcu);
ef6980b6
JHS
420}
421
067a7cd0
WC
422/* under ife->tcf_lock for existing action */
423static int populate_metalist(struct tcf_ife_info *ife, struct nlattr **tb,
424 bool exists)
ef6980b6
JHS
425{
426 int len = 0;
427 int rc = 0;
428 int i = 0;
429 void *val;
430
431 for (i = 1; i < max_metacnt; i++) {
432 if (tb[i]) {
433 val = nla_data(tb[i]);
434 len = nla_len(tb[i]);
435
067a7cd0 436 rc = load_metaops_and_vet(ife, i, val, len, exists);
ef6980b6
JHS
437 if (rc != 0)
438 return rc;
439
067a7cd0 440 rc = add_metainfo(ife, i, val, len, exists);
ef6980b6
JHS
441 if (rc)
442 return rc;
443 }
444 }
445
446 return rc;
447}
448
449static int tcf_ife_init(struct net *net, struct nlattr *nla,
a85a970a 450 struct nlattr *est, struct tc_action **a,
589dad6d 451 int ovr, int bind, struct netlink_ext_ack *extack)
ef6980b6
JHS
452{
453 struct tc_action_net *tn = net_generic(net, ife_net_id);
454 struct nlattr *tb[TCA_IFE_MAX + 1];
455 struct nlattr *tb2[IFE_META_MAX + 1];
aa9fd9a3 456 struct tcf_ife_params *p, *p_old;
ef6980b6 457 struct tcf_ife_info *ife;
b522ed6e 458 u16 ife_type = ETH_P_IFE;
ef6980b6 459 struct tc_ife *parm;
ef6980b6
JHS
460 u8 *daddr = NULL;
461 u8 *saddr = NULL;
b2313077
WC
462 bool exists = false;
463 int ret = 0;
ef6980b6
JHS
464 int err;
465
fceb6435 466 err = nla_parse_nested(tb, TCA_IFE_MAX, nla, ife_policy, NULL);
ef6980b6
JHS
467 if (err < 0)
468 return err;
469
470 if (!tb[TCA_IFE_PARMS])
471 return -EINVAL;
472
473 parm = nla_data(tb[TCA_IFE_PARMS]);
474
734534e9
AA
475 /* IFE_DECODE is 0 and indicates the opposite of IFE_ENCODE because
476 * they cannot run as the same time. Check on all other values which
477 * are not supported right now.
478 */
479 if (parm->flags & ~IFE_ENCODE)
480 return -EINVAL;
481
aa9fd9a3
AA
482 p = kzalloc(sizeof(*p), GFP_KERNEL);
483 if (!p)
484 return -ENOMEM;
485
65a206c0 486 exists = tcf_idr_check(tn, parm->index, a, bind);
aa9fd9a3
AA
487 if (exists && bind) {
488 kfree(p);
4e8c8615 489 return 0;
aa9fd9a3 490 }
4e8c8615 491
4e8c8615 492 if (!exists) {
65a206c0 493 ret = tcf_idr_create(tn, parm->index, est, a, &act_ife_ops,
ced273ea 494 bind, true);
aa9fd9a3
AA
495 if (ret) {
496 kfree(p);
ef6980b6 497 return ret;
aa9fd9a3 498 }
ef6980b6
JHS
499 ret = ACT_P_CREATED;
500 } else {
65a206c0 501 tcf_idr_release(*a, bind);
aa9fd9a3
AA
502 if (!ovr) {
503 kfree(p);
ef6980b6 504 return -EEXIST;
aa9fd9a3 505 }
ef6980b6
JHS
506 }
507
a85a970a 508 ife = to_ife(*a);
aa9fd9a3 509 p->flags = parm->flags;
ef6980b6
JHS
510
511 if (parm->flags & IFE_ENCODE) {
b522ed6e
AA
512 if (tb[TCA_IFE_TYPE])
513 ife_type = nla_get_u16(tb[TCA_IFE_TYPE]);
ef6980b6
JHS
514 if (tb[TCA_IFE_DMAC])
515 daddr = nla_data(tb[TCA_IFE_DMAC]);
516 if (tb[TCA_IFE_SMAC])
517 saddr = nla_data(tb[TCA_IFE_SMAC]);
518 }
519
ef6980b6
JHS
520 if (parm->flags & IFE_ENCODE) {
521 if (daddr)
aa9fd9a3 522 ether_addr_copy(p->eth_dst, daddr);
ef6980b6 523 else
aa9fd9a3 524 eth_zero_addr(p->eth_dst);
ef6980b6
JHS
525
526 if (saddr)
aa9fd9a3 527 ether_addr_copy(p->eth_src, saddr);
ef6980b6 528 else
aa9fd9a3 529 eth_zero_addr(p->eth_src);
ef6980b6 530
aa9fd9a3 531 p->eth_type = ife_type;
ef6980b6
JHS
532 }
533
aa9fd9a3
AA
534 if (exists)
535 spin_lock_bh(&ife->tcf_lock);
536
ef6980b6
JHS
537 if (ret == ACT_P_CREATED)
538 INIT_LIST_HEAD(&ife->metalist);
539
540 if (tb[TCA_IFE_METALST]) {
541 err = nla_parse_nested(tb2, IFE_META_MAX, tb[TCA_IFE_METALST],
fceb6435 542 NULL, NULL);
ef6980b6
JHS
543 if (err) {
544metadata_parse_err:
545 if (ret == ACT_P_CREATED)
0a889b94 546 tcf_idr_release(*a, bind);
ef6980b6 547
067a7cd0
WC
548 if (exists)
549 spin_unlock_bh(&ife->tcf_lock);
aa9fd9a3 550 kfree(p);
ef6980b6
JHS
551 return err;
552 }
553
067a7cd0 554 err = populate_metalist(ife, tb2, exists);
ef6980b6
JHS
555 if (err)
556 goto metadata_parse_err;
557
558 } else {
559 /* if no passed metadata allow list or passed allow-all
560 * then here we process by adding as many supported metadatum
561 * as we can. You better have at least one else we are
562 * going to bail out
563 */
564 err = use_all_metadata(ife);
565 if (err) {
566 if (ret == ACT_P_CREATED)
0a889b94 567 tcf_idr_release(*a, bind);
ef6980b6 568
067a7cd0
WC
569 if (exists)
570 spin_unlock_bh(&ife->tcf_lock);
aa9fd9a3 571 kfree(p);
ef6980b6
JHS
572 return err;
573 }
574 }
575
cbf56c29 576 ife->tcf_action = parm->action;
067a7cd0
WC
577 if (exists)
578 spin_unlock_bh(&ife->tcf_lock);
ef6980b6 579
aa9fd9a3
AA
580 p_old = rtnl_dereference(ife->params);
581 rcu_assign_pointer(ife->params, p);
582 if (p_old)
583 kfree_rcu(p_old, rcu);
584
ef6980b6 585 if (ret == ACT_P_CREATED)
65a206c0 586 tcf_idr_insert(tn, *a);
ef6980b6
JHS
587
588 return ret;
589}
590
591static int tcf_ife_dump(struct sk_buff *skb, struct tc_action *a, int bind,
592 int ref)
593{
594 unsigned char *b = skb_tail_pointer(skb);
a85a970a 595 struct tcf_ife_info *ife = to_ife(a);
aa9fd9a3 596 struct tcf_ife_params *p = rtnl_dereference(ife->params);
ef6980b6
JHS
597 struct tc_ife opt = {
598 .index = ife->tcf_index,
599 .refcnt = ife->tcf_refcnt - ref,
600 .bindcnt = ife->tcf_bindcnt - bind,
601 .action = ife->tcf_action,
aa9fd9a3 602 .flags = p->flags,
ef6980b6
JHS
603 };
604 struct tcf_t t;
605
606 if (nla_put(skb, TCA_IFE_PARMS, sizeof(opt), &opt))
607 goto nla_put_failure;
608
48d8ee16 609 tcf_tm_dump(&t, &ife->tcf_tm);
9854518e 610 if (nla_put_64bit(skb, TCA_IFE_TM, sizeof(t), &t, TCA_IFE_PAD))
ef6980b6
JHS
611 goto nla_put_failure;
612
aa9fd9a3
AA
613 if (!is_zero_ether_addr(p->eth_dst)) {
614 if (nla_put(skb, TCA_IFE_DMAC, ETH_ALEN, p->eth_dst))
ef6980b6
JHS
615 goto nla_put_failure;
616 }
617
aa9fd9a3
AA
618 if (!is_zero_ether_addr(p->eth_src)) {
619 if (nla_put(skb, TCA_IFE_SMAC, ETH_ALEN, p->eth_src))
ef6980b6
JHS
620 goto nla_put_failure;
621 }
622
aa9fd9a3 623 if (nla_put(skb, TCA_IFE_TYPE, 2, &p->eth_type))
ef6980b6
JHS
624 goto nla_put_failure;
625
626 if (dump_metalist(skb, ife)) {
627 /*ignore failure to dump metalist */
628 pr_info("Failed to dump metalist\n");
629 }
630
631 return skb->len;
632
633nla_put_failure:
634 nlmsg_trim(skb, b);
635 return -1;
636}
637
4dba87b0
OG
638static int find_decode_metaid(struct sk_buff *skb, struct tcf_ife_info *ife,
639 u16 metaid, u16 mlen, void *mdata)
ef6980b6
JHS
640{
641 struct tcf_meta_info *e;
642
643 /* XXX: use hash to speed up */
644 list_for_each_entry(e, &ife->metalist, metalist) {
645 if (metaid == e->metaid) {
646 if (e->ops) {
647 /* We check for decode presence already */
648 return e->ops->decode(skb, mdata, mlen);
649 }
650 }
651 }
652
f6cd1453 653 return -ENOENT;
ef6980b6
JHS
654}
655
ef6980b6
JHS
656static int tcf_ife_decode(struct sk_buff *skb, const struct tc_action *a,
657 struct tcf_result *res)
658{
a85a970a 659 struct tcf_ife_info *ife = to_ife(a);
ef6980b6 660 int action = ife->tcf_action;
295a6e06
YG
661 u8 *ifehdr_end;
662 u8 *tlv_data;
663 u16 metalen;
ef6980b6 664
ced273ea 665 bstats_cpu_update(this_cpu_ptr(ife->common.cpu_bstats), skb);
9c4a4e48 666 tcf_lastuse_update(&ife->tcf_tm);
ef6980b6 667
295a6e06
YG
668 if (skb_at_tc_ingress(skb))
669 skb_push(skb, skb->dev->hard_header_len);
670
671 tlv_data = ife_decode(skb, &metalen);
672 if (unlikely(!tlv_data)) {
ced273ea 673 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
ef6980b6
JHS
674 return TC_ACT_SHOT;
675 }
676
295a6e06
YG
677 ifehdr_end = tlv_data + metalen;
678 for (; tlv_data < ifehdr_end; tlv_data = ife_tlv_meta_next(tlv_data)) {
679 u8 *curr_data;
680 u16 mtype;
681 u16 dlen;
ef6980b6 682
cc74eddd
AA
683 curr_data = ife_tlv_meta_decode(tlv_data, ifehdr_end, &mtype,
684 &dlen, NULL);
685 if (!curr_data) {
686 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
687 return TC_ACT_SHOT;
688 }
ef6980b6 689
295a6e06 690 if (find_decode_metaid(skb, ife, mtype, dlen, curr_data)) {
ef6980b6
JHS
691 /* abuse overlimits to count when we receive metadata
692 * but dont have an ops for it
693 */
295a6e06
YG
694 pr_info_ratelimited("Unknown metaid %d dlen %d\n",
695 mtype, dlen);
ced273ea 696 qstats_overlimit_inc(this_cpu_ptr(ife->common.cpu_qstats));
ef6980b6 697 }
295a6e06 698 }
ef6980b6 699
295a6e06 700 if (WARN_ON(tlv_data != ifehdr_end)) {
ced273ea 701 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
295a6e06 702 return TC_ACT_SHOT;
ef6980b6
JHS
703 }
704
295a6e06 705 skb->protocol = eth_type_trans(skb, skb->dev);
ef6980b6 706 skb_reset_network_header(skb);
295a6e06 707
ef6980b6
JHS
708 return action;
709}
710
711/*XXX: check if we can do this at install time instead of current
712 * send data path
713**/
714static int ife_get_sz(struct sk_buff *skb, struct tcf_ife_info *ife)
715{
716 struct tcf_meta_info *e, *n;
717 int tot_run_sz = 0, run_sz = 0;
718
719 list_for_each_entry_safe(e, n, &ife->metalist, metalist) {
720 if (e->ops->check_presence) {
721 run_sz = e->ops->check_presence(skb, e);
722 tot_run_sz += run_sz;
723 }
724 }
725
726 return tot_run_sz;
727}
728
729static int tcf_ife_encode(struct sk_buff *skb, const struct tc_action *a,
aa9fd9a3 730 struct tcf_result *res, struct tcf_ife_params *p)
ef6980b6 731{
a85a970a 732 struct tcf_ife_info *ife = to_ife(a);
ef6980b6
JHS
733 int action = ife->tcf_action;
734 struct ethhdr *oethh; /* outer ether header */
ef6980b6
JHS
735 struct tcf_meta_info *e;
736 /*
737 OUTERHDR:TOTMETALEN:{TLVHDR:Metadatum:TLVHDR..}:ORIGDATA
738 where ORIGDATA = original ethernet header ...
739 */
740 u16 metalen = ife_get_sz(skb, ife);
741 int hdrm = metalen + skb->dev->hard_header_len + IFE_METAHDRLEN;
295a6e06 742 unsigned int skboff = 0;
ef6980b6
JHS
743 int new_len = skb->len + hdrm;
744 bool exceed_mtu = false;
295a6e06
YG
745 void *ife_meta;
746 int err = 0;
ef6980b6 747
a5135bcf 748 if (!skb_at_tc_ingress(skb)) {
ef6980b6
JHS
749 if (new_len > skb->dev->mtu)
750 exceed_mtu = true;
751 }
752
ced273ea 753 bstats_cpu_update(this_cpu_ptr(ife->common.cpu_bstats), skb);
9c4a4e48 754 tcf_lastuse_update(&ife->tcf_tm);
ef6980b6
JHS
755
756 if (!metalen) { /* no metadata to send */
757 /* abuse overlimits to count when we allow packet
758 * with no metadata
759 */
ced273ea 760 qstats_overlimit_inc(this_cpu_ptr(ife->common.cpu_qstats));
ef6980b6
JHS
761 return action;
762 }
763 /* could be stupid policy setup or mtu config
764 * so lets be conservative.. */
765 if ((action == TC_ACT_SHOT) || exceed_mtu) {
ced273ea 766 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
ef6980b6
JHS
767 return TC_ACT_SHOT;
768 }
769
a5135bcf 770 if (skb_at_tc_ingress(skb))
ef6980b6
JHS
771 skb_push(skb, skb->dev->hard_header_len);
772
295a6e06 773 ife_meta = ife_encode(skb, metalen);
ef6980b6 774
ced273ea
AA
775 spin_lock(&ife->tcf_lock);
776
ef6980b6
JHS
777 /* XXX: we dont have a clever way of telling encode to
778 * not repeat some of the computations that are done by
779 * ops->presence_check...
780 */
781 list_for_each_entry(e, &ife->metalist, metalist) {
782 if (e->ops->encode) {
295a6e06 783 err = e->ops->encode(skb, (void *)(ife_meta + skboff),
ef6980b6
JHS
784 e);
785 }
786 if (err < 0) {
787 /* too corrupt to keep around if overwritten */
ef6980b6 788 spin_unlock(&ife->tcf_lock);
ced273ea 789 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
ef6980b6
JHS
790 return TC_ACT_SHOT;
791 }
792 skboff += err;
793 }
aa9fd9a3 794 spin_unlock(&ife->tcf_lock);
295a6e06 795 oethh = (struct ethhdr *)skb->data;
ef6980b6 796
aa9fd9a3
AA
797 if (!is_zero_ether_addr(p->eth_src))
798 ether_addr_copy(oethh->h_source, p->eth_src);
799 if (!is_zero_ether_addr(p->eth_dst))
800 ether_addr_copy(oethh->h_dest, p->eth_dst);
801 oethh->h_proto = htons(p->eth_type);
ef6980b6 802
a5135bcf 803 if (skb_at_tc_ingress(skb))
ef6980b6
JHS
804 skb_pull(skb, skb->dev->hard_header_len);
805
ef6980b6
JHS
806 return action;
807}
808
809static int tcf_ife_act(struct sk_buff *skb, const struct tc_action *a,
810 struct tcf_result *res)
811{
a85a970a 812 struct tcf_ife_info *ife = to_ife(a);
aa9fd9a3
AA
813 struct tcf_ife_params *p;
814 int ret;
815
816 rcu_read_lock();
817 p = rcu_dereference(ife->params);
818 if (p->flags & IFE_ENCODE) {
819 ret = tcf_ife_encode(skb, a, res, p);
820 rcu_read_unlock();
821 return ret;
822 }
823 rcu_read_unlock();
ef6980b6 824
734534e9 825 return tcf_ife_decode(skb, a, res);
ef6980b6
JHS
826}
827
828static int tcf_ife_walker(struct net *net, struct sk_buff *skb,
829 struct netlink_callback *cb, int type,
41780105
AA
830 const struct tc_action_ops *ops,
831 struct netlink_ext_ack *extack)
ef6980b6
JHS
832{
833 struct tc_action_net *tn = net_generic(net, ife_net_id);
834
b3620145 835 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
ef6980b6
JHS
836}
837
331a9295
AA
838static int tcf_ife_search(struct net *net, struct tc_action **a, u32 index,
839 struct netlink_ext_ack *extack)
ef6980b6
JHS
840{
841 struct tc_action_net *tn = net_generic(net, ife_net_id);
842
65a206c0 843 return tcf_idr_search(tn, a, index);
ef6980b6
JHS
844}
845
846static struct tc_action_ops act_ife_ops = {
847 .kind = "ife",
848 .type = TCA_ACT_IFE,
849 .owner = THIS_MODULE,
850 .act = tcf_ife_act,
851 .dump = tcf_ife_dump,
852 .cleanup = tcf_ife_cleanup,
853 .init = tcf_ife_init,
854 .walk = tcf_ife_walker,
855 .lookup = tcf_ife_search,
a85a970a 856 .size = sizeof(struct tcf_ife_info),
ef6980b6
JHS
857};
858
859static __net_init int ife_init_net(struct net *net)
860{
861 struct tc_action_net *tn = net_generic(net, ife_net_id);
862
c7e460ce 863 return tc_action_net_init(tn, &act_ife_ops);
ef6980b6
JHS
864}
865
039af9c6 866static void __net_exit ife_exit_net(struct list_head *net_list)
ef6980b6 867{
039af9c6 868 tc_action_net_exit(net_list, ife_net_id);
ef6980b6
JHS
869}
870
871static struct pernet_operations ife_net_ops = {
872 .init = ife_init_net,
039af9c6 873 .exit_batch = ife_exit_net,
ef6980b6
JHS
874 .id = &ife_net_id,
875 .size = sizeof(struct tc_action_net),
876};
877
878static int __init ife_init_module(void)
879{
880 return tcf_register_action(&act_ife_ops, &ife_net_ops);
881}
882
883static void __exit ife_cleanup_module(void)
884{
885 tcf_unregister_action(&act_ife_ops, &ife_net_ops);
886}
887
888module_init(ife_init_module);
889module_exit(ife_cleanup_module);
890
891MODULE_AUTHOR("Jamal Hadi Salim(2015)");
892MODULE_DESCRIPTION("Inter-FE LFB action");
893MODULE_LICENSE("GPL");