blob: 196430aefe87a355a9a237ef7184fa2a4830a3a3 [file] [log] [blame]
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -05001/*
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>
Yotam Gigi295a6e02017-02-01 15:30:03 +020035#include <net/ife.h>
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050036
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030037static unsigned int ife_net_id;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050038static int max_metacnt = IFE_META_MAX + 1;
WANG Conga85a9702016-07-25 16:09:41 -070039static struct tc_action_ops act_ife_ops;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050040
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
Jamal Hadi Salim6a5d58b2016-09-18 07:31:42 -040048int 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
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050065int 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
Jamal Hadi Salim6a5d58b2016-09-18 07:31:42 -040083int 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
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -050092int 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
WANG Cong067a7cd2016-06-20 13:37:18 -0700118int ife_alloc_meta_u32(struct tcf_meta_info *mi, void *metaval, gfp_t gfp)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500119{
WANG Cong067a7cd2016-06-20 13:37:18 -0700120 mi->metaval = kmemdup(metaval, sizeof(u32), gfp);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500121 if (!mi->metaval)
122 return -ENOMEM;
123
124 return 0;
125}
126EXPORT_SYMBOL_GPL(ife_alloc_meta_u32);
127
WANG Cong067a7cd2016-06-20 13:37:18 -0700128int ife_alloc_meta_u16(struct tcf_meta_info *mi, void *metaval, gfp_t gfp)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500129{
WANG Cong067a7cd2016-06-20 13:37:18 -0700130 mi->metaval = kmemdup(metaval, sizeof(u16), gfp);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500131 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{
Jamal Hadi Salim28a10c42016-08-22 07:10:20 -0400146 if (len == sizeof(u32))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500147 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{
Jamal Hadi Salim28a10c42016-08-22 07:10:20 -0400155 /* length will not include padding */
156 if (len == sizeof(u16))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500157 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
Cong Wang8ce5be12018-08-19 12:22:11 -0700170 read_lock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500171 list_for_each_entry(o, &ifeoplist, list) {
172 if (o->metaid == metaid) {
173 if (!try_module_get(o->owner))
174 o = NULL;
Cong Wang8ce5be12018-08-19 12:22:11 -0700175 read_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500176 return o;
177 }
178 }
Cong Wang8ce5be12018-08-19 12:22:11 -0700179 read_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500180
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
Cong Wang8ce5be12018-08-19 12:22:11 -0700193 write_lock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500194
195 list_for_each_entry(m, &ifeoplist, list) {
196 if (m->metaid == mops->metaid ||
197 (strcmp(mops->name, m->name) == 0)) {
Cong Wang8ce5be12018-08-19 12:22:11 -0700198 write_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500199 return -EEXIST;
200 }
201 }
202
203 if (!mops->release)
204 mops->release = ife_release_meta_gen;
205
206 list_add_tail(&mops->list, &ifeoplist);
Cong Wang8ce5be12018-08-19 12:22:11 -0700207 write_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500208 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
Cong Wang8ce5be12018-08-19 12:22:11 -0700217 write_lock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500218 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 }
Cong Wang8ce5be12018-08-19 12:22:11 -0700225 write_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500226
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
Cong Wang65787592017-10-13 12:58:13 -0700251#ifdef CONFIG_MODULES
Roman Mashakd3f24ba2017-10-11 10:50:30 -0400252static 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}
Cong Wang65787592017-10-13 12:58:13 -0700265#endif
Roman Mashakd3f24ba2017-10-11 10:50:30 -0400266
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500267/* called when adding new meta information
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500268*/
Cong Wang4e407ff2018-08-19 12:22:12 -0700269static int load_metaops_and_vet(u32 metaid, void *val, int len, bool rtnl_held)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500270{
271 struct tcf_meta_ops *ops = find_ife_oplist(metaid);
272 int ret = 0;
273
274 if (!ops) {
275 ret = -ENOENT;
276#ifdef CONFIG_MODULES
Vlad Buslov54d0d422018-08-10 20:51:44 +0300277 if (rtnl_held)
278 rtnl_unlock();
Roman Mashakd3f24ba2017-10-11 10:50:30 -0400279 request_module("ife-meta-%s", ife_meta_id2name(metaid));
Vlad Buslov54d0d422018-08-10 20:51:44 +0300280 if (rtnl_held)
281 rtnl_lock();
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500282 ops = find_ife_oplist(metaid);
283#endif
284 }
285
286 if (ops) {
287 ret = 0;
288 if (len)
289 ret = ife_validate_metatype(ops, val, len);
290
291 module_put(ops->owner);
292 }
293
294 return ret;
295}
296
297/* called when adding new meta information
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500298*/
Cong Wang5ffe57d2018-08-19 12:22:13 -0700299static int __add_metainfo(const struct tcf_meta_ops *ops,
300 struct tcf_ife_info *ife, u32 metaid, void *metaval,
301 int len, bool atomic, bool exists)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500302{
303 struct tcf_meta_info *mi = NULL;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500304 int ret = 0;
305
WANG Cong817e9f22016-06-20 13:37:19 -0700306 mi = kzalloc(sizeof(*mi), atomic ? GFP_ATOMIC : GFP_KERNEL);
Cong Wang5ffe57d2018-08-19 12:22:13 -0700307 if (!mi)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500308 return -ENOMEM;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500309
310 mi->metaid = metaid;
311 mi->ops = ops;
312 if (len > 0) {
WANG Cong817e9f22016-06-20 13:37:19 -0700313 ret = ops->alloc(mi, metaval, atomic ? GFP_ATOMIC : GFP_KERNEL);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500314 if (ret != 0) {
315 kfree(mi);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500316 return ret;
317 }
318 }
319
Cong Wang4e407ff2018-08-19 12:22:12 -0700320 if (exists)
321 spin_lock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500322 list_add_tail(&mi->metalist, &ife->metalist);
Cong Wang4e407ff2018-08-19 12:22:12 -0700323 if (exists)
324 spin_unlock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500325
326 return ret;
327}
328
Cong Wang5ffe57d2018-08-19 12:22:13 -0700329static int add_metainfo(struct tcf_ife_info *ife, u32 metaid, void *metaval,
330 int len, bool exists)
331{
332 const struct tcf_meta_ops *ops = find_ife_oplist(metaid);
333 int ret;
334
335 if (!ops)
336 return -ENOENT;
337 ret = __add_metainfo(ops, ife, metaid, metaval, len, false, exists);
338 if (ret)
339 /*put back what find_ife_oplist took */
340 module_put(ops->owner);
341 return ret;
342}
343
Cong Wang4e407ff2018-08-19 12:22:12 -0700344static int use_all_metadata(struct tcf_ife_info *ife, bool exists)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500345{
346 struct tcf_meta_ops *o;
347 int rc = 0;
348 int installed = 0;
349
Cong Wang8ce5be12018-08-19 12:22:11 -0700350 read_lock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500351 list_for_each_entry(o, &ifeoplist, list) {
Cong Wang5ffe57d2018-08-19 12:22:13 -0700352 rc = __add_metainfo(o, ife, o->metaid, NULL, 0, true, exists);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500353 if (rc == 0)
354 installed += 1;
355 }
Cong Wang8ce5be12018-08-19 12:22:11 -0700356 read_unlock(&ife_mod_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500357
358 if (installed)
359 return 0;
360 else
361 return -EINVAL;
362}
363
364static int dump_metalist(struct sk_buff *skb, struct tcf_ife_info *ife)
365{
366 struct tcf_meta_info *e;
367 struct nlattr *nest;
368 unsigned char *b = skb_tail_pointer(skb);
369 int total_encoded = 0;
370
371 /*can only happen on decode */
372 if (list_empty(&ife->metalist))
373 return 0;
374
375 nest = nla_nest_start(skb, TCA_IFE_METALST);
376 if (!nest)
377 goto out_nlmsg_trim;
378
379 list_for_each_entry(e, &ife->metalist, metalist) {
380 if (!e->ops->get(skb, e))
381 total_encoded += 1;
382 }
383
384 if (!total_encoded)
385 goto out_nlmsg_trim;
386
387 nla_nest_end(skb, nest);
388
389 return 0;
390
391out_nlmsg_trim:
392 nlmsg_trim(skb, b);
393 return -1;
394}
395
396/* under ife->tcf_lock */
Cong Wang9a63b252017-12-05 12:53:07 -0800397static void _tcf_ife_cleanup(struct tc_action *a)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500398{
WANG Conga85a9702016-07-25 16:09:41 -0700399 struct tcf_ife_info *ife = to_ife(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500400 struct tcf_meta_info *e, *n;
401
402 list_for_each_entry_safe(e, n, &ife->metalist, metalist) {
403 module_put(e->ops->owner);
404 list_del(&e->metalist);
405 if (e->metaval) {
406 if (e->ops->release)
407 e->ops->release(e);
408 else
409 kfree(e->metaval);
410 }
411 kfree(e);
412 }
413}
414
Cong Wang9a63b252017-12-05 12:53:07 -0800415static void tcf_ife_cleanup(struct tc_action *a)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500416{
WANG Conga85a9702016-07-25 16:09:41 -0700417 struct tcf_ife_info *ife = to_ife(a);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400418 struct tcf_ife_params *p;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500419
420 spin_lock_bh(&ife->tcf_lock);
Cong Wang9a63b252017-12-05 12:53:07 -0800421 _tcf_ife_cleanup(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500422 spin_unlock_bh(&ife->tcf_lock);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400423
424 p = rcu_dereference_protected(ife->params, 1);
Davide Caratti0a889b92018-06-19 15:39:46 +0200425 if (p)
426 kfree_rcu(p, rcu);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500427}
428
WANG Cong067a7cd2016-06-20 13:37:18 -0700429static int populate_metalist(struct tcf_ife_info *ife, struct nlattr **tb,
Vlad Buslov54d0d422018-08-10 20:51:44 +0300430 bool exists, bool rtnl_held)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500431{
432 int len = 0;
433 int rc = 0;
434 int i = 0;
435 void *val;
436
437 for (i = 1; i < max_metacnt; i++) {
438 if (tb[i]) {
439 val = nla_data(tb[i]);
440 len = nla_len(tb[i]);
441
Cong Wang4e407ff2018-08-19 12:22:12 -0700442 rc = load_metaops_and_vet(i, val, len, rtnl_held);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500443 if (rc != 0)
444 return rc;
445
Cong Wang5ffe57d2018-08-19 12:22:13 -0700446 rc = add_metainfo(ife, i, val, len, exists);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500447 if (rc)
448 return rc;
449 }
450 }
451
452 return rc;
453}
454
455static int tcf_ife_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -0700456 struct nlattr *est, struct tc_action **a,
Vlad Buslov789871b2018-07-05 17:24:25 +0300457 int ovr, int bind, bool rtnl_held,
458 struct netlink_ext_ack *extack)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500459{
460 struct tc_action_net *tn = net_generic(net, ife_net_id);
461 struct nlattr *tb[TCA_IFE_MAX + 1];
462 struct nlattr *tb2[IFE_META_MAX + 1];
Vlad Buslov54d0d422018-08-10 20:51:44 +0300463 struct tcf_ife_params *p;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500464 struct tcf_ife_info *ife;
Alexander Aringb522ed62017-08-28 15:03:14 -0400465 u16 ife_type = ETH_P_IFE;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500466 struct tc_ife *parm;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500467 u8 *daddr = NULL;
468 u8 *saddr = NULL;
WANG Congb2313072016-06-13 13:46:28 -0700469 bool exists = false;
470 int ret = 0;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500471 int err;
472
Johannes Bergfceb6432017-04-12 14:34:07 +0200473 err = nla_parse_nested(tb, TCA_IFE_MAX, nla, ife_policy, NULL);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500474 if (err < 0)
475 return err;
476
477 if (!tb[TCA_IFE_PARMS])
478 return -EINVAL;
479
480 parm = nla_data(tb[TCA_IFE_PARMS]);
481
Alexander Aring734534e2017-10-11 17:16:06 -0400482 /* IFE_DECODE is 0 and indicates the opposite of IFE_ENCODE because
483 * they cannot run as the same time. Check on all other values which
484 * are not supported right now.
485 */
486 if (parm->flags & ~IFE_ENCODE)
487 return -EINVAL;
488
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400489 p = kzalloc(sizeof(*p), GFP_KERNEL);
490 if (!p)
491 return -ENOMEM;
492
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300493 err = tcf_idr_check_alloc(tn, &parm->index, a, bind);
Vlad Buslov01e866b2018-07-09 14:33:26 +0300494 if (err < 0) {
495 kfree(p);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300496 return err;
Vlad Buslov01e866b2018-07-09 14:33:26 +0300497 }
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300498 exists = err;
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400499 if (exists && bind) {
500 kfree(p);
Jamal Hadi Salim4e8c8612016-05-10 16:49:31 -0400501 return 0;
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400502 }
Jamal Hadi Salim4e8c8612016-05-10 16:49:31 -0400503
Jamal Hadi Salim4e8c8612016-05-10 16:49:31 -0400504 if (!exists) {
Chris Mi65a206c2017-08-30 02:31:59 -0400505 ret = tcf_idr_create(tn, parm->index, est, a, &act_ife_ops,
Alexander Aringced273e2017-10-11 17:16:07 -0400506 bind, true);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400507 if (ret) {
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300508 tcf_idr_cleanup(tn, parm->index);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400509 kfree(p);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500510 return ret;
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400511 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500512 ret = ACT_P_CREATED;
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300513 } else if (!ovr) {
Chris Mi65a206c2017-08-30 02:31:59 -0400514 tcf_idr_release(*a, bind);
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300515 kfree(p);
516 return -EEXIST;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500517 }
518
WANG Conga85a9702016-07-25 16:09:41 -0700519 ife = to_ife(*a);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400520 p->flags = parm->flags;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500521
522 if (parm->flags & IFE_ENCODE) {
Alexander Aringb522ed62017-08-28 15:03:14 -0400523 if (tb[TCA_IFE_TYPE])
524 ife_type = nla_get_u16(tb[TCA_IFE_TYPE]);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500525 if (tb[TCA_IFE_DMAC])
526 daddr = nla_data(tb[TCA_IFE_DMAC]);
527 if (tb[TCA_IFE_SMAC])
528 saddr = nla_data(tb[TCA_IFE_SMAC]);
529 }
530
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500531 if (parm->flags & IFE_ENCODE) {
532 if (daddr)
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400533 ether_addr_copy(p->eth_dst, daddr);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500534 else
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400535 eth_zero_addr(p->eth_dst);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500536
537 if (saddr)
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400538 ether_addr_copy(p->eth_src, saddr);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500539 else
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400540 eth_zero_addr(p->eth_src);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500541
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400542 p->eth_type = ife_type;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500543 }
544
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400545
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500546 if (ret == ACT_P_CREATED)
547 INIT_LIST_HEAD(&ife->metalist);
548
549 if (tb[TCA_IFE_METALST]) {
550 err = nla_parse_nested(tb2, IFE_META_MAX, tb[TCA_IFE_METALST],
Johannes Bergfceb6432017-04-12 14:34:07 +0200551 NULL, NULL);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500552 if (err) {
553metadata_parse_err:
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300554 tcf_idr_release(*a, bind);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400555 kfree(p);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500556 return err;
557 }
558
Vlad Buslov54d0d422018-08-10 20:51:44 +0300559 err = populate_metalist(ife, tb2, exists, rtnl_held);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500560 if (err)
561 goto metadata_parse_err;
562
563 } else {
564 /* if no passed metadata allow list or passed allow-all
565 * then here we process by adding as many supported metadatum
566 * as we can. You better have at least one else we are
567 * going to bail out
568 */
Cong Wang4e407ff2018-08-19 12:22:12 -0700569 err = use_all_metadata(ife, exists);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500570 if (err) {
Vlad Buslov32039ea2018-08-14 20:29:56 +0300571 tcf_idr_release(*a, bind);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400572 kfree(p);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500573 return err;
574 }
575 }
576
Cong Wang4e407ff2018-08-19 12:22:12 -0700577 if (exists)
578 spin_lock_bh(&ife->tcf_lock);
Davide Caratticbf56c22018-06-19 15:45:50 +0200579 ife->tcf_action = parm->action;
Vlad Buslov54d0d422018-08-10 20:51:44 +0300580 /* protected by tcf_lock when modifying existing action */
581 rcu_swap_protected(ife->params, p, 1);
582
WANG Cong067a7cd2016-06-20 13:37:18 -0700583 if (exists)
584 spin_unlock_bh(&ife->tcf_lock);
Vlad Buslov54d0d422018-08-10 20:51:44 +0300585 if (p)
586 kfree_rcu(p, rcu);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400587
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500588 if (ret == ACT_P_CREATED)
Chris Mi65a206c2017-08-30 02:31:59 -0400589 tcf_idr_insert(tn, *a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500590
591 return ret;
592}
593
594static int tcf_ife_dump(struct sk_buff *skb, struct tc_action *a, int bind,
595 int ref)
596{
597 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700598 struct tcf_ife_info *ife = to_ife(a);
Vlad Buslov54d0d422018-08-10 20:51:44 +0300599 struct tcf_ife_params *p;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500600 struct tc_ife opt = {
601 .index = ife->tcf_index,
Vlad Buslov036bb442018-07-05 17:24:24 +0300602 .refcnt = refcount_read(&ife->tcf_refcnt) - ref,
603 .bindcnt = atomic_read(&ife->tcf_bindcnt) - bind,
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500604 };
605 struct tcf_t t;
606
Vlad Buslov54d0d422018-08-10 20:51:44 +0300607 spin_lock_bh(&ife->tcf_lock);
608 opt.action = ife->tcf_action;
609 p = rcu_dereference_protected(ife->params,
610 lockdep_is_held(&ife->tcf_lock));
611 opt.flags = p->flags;
612
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500613 if (nla_put(skb, TCA_IFE_PARMS, sizeof(opt), &opt))
614 goto nla_put_failure;
615
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400616 tcf_tm_dump(&t, &ife->tcf_tm);
Nicolas Dichtel9854518e2016-04-26 10:06:18 +0200617 if (nla_put_64bit(skb, TCA_IFE_TM, sizeof(t), &t, TCA_IFE_PAD))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500618 goto nla_put_failure;
619
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400620 if (!is_zero_ether_addr(p->eth_dst)) {
621 if (nla_put(skb, TCA_IFE_DMAC, ETH_ALEN, p->eth_dst))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500622 goto nla_put_failure;
623 }
624
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400625 if (!is_zero_ether_addr(p->eth_src)) {
626 if (nla_put(skb, TCA_IFE_SMAC, ETH_ALEN, p->eth_src))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500627 goto nla_put_failure;
628 }
629
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400630 if (nla_put(skb, TCA_IFE_TYPE, 2, &p->eth_type))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500631 goto nla_put_failure;
632
633 if (dump_metalist(skb, ife)) {
634 /*ignore failure to dump metalist */
635 pr_info("Failed to dump metalist\n");
636 }
637
Vlad Buslov54d0d422018-08-10 20:51:44 +0300638 spin_unlock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500639 return skb->len;
640
641nla_put_failure:
Vlad Buslov54d0d422018-08-10 20:51:44 +0300642 spin_unlock_bh(&ife->tcf_lock);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500643 nlmsg_trim(skb, b);
644 return -1;
645}
646
Or Gerlitz4dba87b2017-03-16 12:53:41 +0200647static int find_decode_metaid(struct sk_buff *skb, struct tcf_ife_info *ife,
648 u16 metaid, u16 mlen, void *mdata)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500649{
650 struct tcf_meta_info *e;
651
652 /* XXX: use hash to speed up */
653 list_for_each_entry(e, &ife->metalist, metalist) {
654 if (metaid == e->metaid) {
655 if (e->ops) {
656 /* We check for decode presence already */
657 return e->ops->decode(skb, mdata, mlen);
658 }
659 }
660 }
661
Alexander Aringf6cd1452018-04-20 15:15:03 -0400662 return -ENOENT;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500663}
664
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500665static int tcf_ife_decode(struct sk_buff *skb, const struct tc_action *a,
666 struct tcf_result *res)
667{
WANG Conga85a9702016-07-25 16:09:41 -0700668 struct tcf_ife_info *ife = to_ife(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500669 int action = ife->tcf_action;
Yotam Gigi295a6e02017-02-01 15:30:03 +0200670 u8 *ifehdr_end;
671 u8 *tlv_data;
672 u16 metalen;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500673
Alexander Aringced273e2017-10-11 17:16:07 -0400674 bstats_cpu_update(this_cpu_ptr(ife->common.cpu_bstats), skb);
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400675 tcf_lastuse_update(&ife->tcf_tm);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500676
Yotam Gigi295a6e02017-02-01 15:30:03 +0200677 if (skb_at_tc_ingress(skb))
678 skb_push(skb, skb->dev->hard_header_len);
679
680 tlv_data = ife_decode(skb, &metalen);
681 if (unlikely(!tlv_data)) {
Alexander Aringced273e2017-10-11 17:16:07 -0400682 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500683 return TC_ACT_SHOT;
684 }
685
Yotam Gigi295a6e02017-02-01 15:30:03 +0200686 ifehdr_end = tlv_data + metalen;
687 for (; tlv_data < ifehdr_end; tlv_data = ife_tlv_meta_next(tlv_data)) {
688 u8 *curr_data;
689 u16 mtype;
690 u16 dlen;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500691
Alexander Aringcc74edd2018-04-20 15:15:04 -0400692 curr_data = ife_tlv_meta_decode(tlv_data, ifehdr_end, &mtype,
693 &dlen, NULL);
694 if (!curr_data) {
695 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
696 return TC_ACT_SHOT;
697 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500698
Yotam Gigi295a6e02017-02-01 15:30:03 +0200699 if (find_decode_metaid(skb, ife, mtype, dlen, curr_data)) {
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500700 /* abuse overlimits to count when we receive metadata
701 * but dont have an ops for it
702 */
Yotam Gigi295a6e02017-02-01 15:30:03 +0200703 pr_info_ratelimited("Unknown metaid %d dlen %d\n",
704 mtype, dlen);
Alexander Aringced273e2017-10-11 17:16:07 -0400705 qstats_overlimit_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500706 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500707 }
708
Yotam Gigi295a6e02017-02-01 15:30:03 +0200709 if (WARN_ON(tlv_data != ifehdr_end)) {
Alexander Aringced273e2017-10-11 17:16:07 -0400710 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Yotam Gigi295a6e02017-02-01 15:30:03 +0200711 return TC_ACT_SHOT;
712 }
713
714 skb->protocol = eth_type_trans(skb, skb->dev);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500715 skb_reset_network_header(skb);
Yotam Gigi295a6e02017-02-01 15:30:03 +0200716
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500717 return action;
718}
719
720/*XXX: check if we can do this at install time instead of current
721 * send data path
722**/
723static int ife_get_sz(struct sk_buff *skb, struct tcf_ife_info *ife)
724{
725 struct tcf_meta_info *e, *n;
726 int tot_run_sz = 0, run_sz = 0;
727
728 list_for_each_entry_safe(e, n, &ife->metalist, metalist) {
729 if (e->ops->check_presence) {
730 run_sz = e->ops->check_presence(skb, e);
731 tot_run_sz += run_sz;
732 }
733 }
734
735 return tot_run_sz;
736}
737
738static int tcf_ife_encode(struct sk_buff *skb, const struct tc_action *a,
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400739 struct tcf_result *res, struct tcf_ife_params *p)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500740{
WANG Conga85a9702016-07-25 16:09:41 -0700741 struct tcf_ife_info *ife = to_ife(a);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500742 int action = ife->tcf_action;
743 struct ethhdr *oethh; /* outer ether header */
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500744 struct tcf_meta_info *e;
745 /*
746 OUTERHDR:TOTMETALEN:{TLVHDR:Metadatum:TLVHDR..}:ORIGDATA
747 where ORIGDATA = original ethernet header ...
748 */
749 u16 metalen = ife_get_sz(skb, ife);
750 int hdrm = metalen + skb->dev->hard_header_len + IFE_METAHDRLEN;
Yotam Gigi295a6e02017-02-01 15:30:03 +0200751 unsigned int skboff = 0;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500752 int new_len = skb->len + hdrm;
753 bool exceed_mtu = false;
Yotam Gigi295a6e02017-02-01 15:30:03 +0200754 void *ife_meta;
755 int err = 0;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500756
Willem de Bruijna5135bc2017-01-07 17:06:36 -0500757 if (!skb_at_tc_ingress(skb)) {
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500758 if (new_len > skb->dev->mtu)
759 exceed_mtu = true;
760 }
761
Alexander Aringced273e2017-10-11 17:16:07 -0400762 bstats_cpu_update(this_cpu_ptr(ife->common.cpu_bstats), skb);
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400763 tcf_lastuse_update(&ife->tcf_tm);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500764
765 if (!metalen) { /* no metadata to send */
766 /* abuse overlimits to count when we allow packet
767 * with no metadata
768 */
Alexander Aringced273e2017-10-11 17:16:07 -0400769 qstats_overlimit_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500770 return action;
771 }
772 /* could be stupid policy setup or mtu config
773 * so lets be conservative.. */
774 if ((action == TC_ACT_SHOT) || exceed_mtu) {
Alexander Aringced273e2017-10-11 17:16:07 -0400775 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500776 return TC_ACT_SHOT;
777 }
778
Willem de Bruijna5135bc2017-01-07 17:06:36 -0500779 if (skb_at_tc_ingress(skb))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500780 skb_push(skb, skb->dev->hard_header_len);
781
Yotam Gigi295a6e02017-02-01 15:30:03 +0200782 ife_meta = ife_encode(skb, metalen);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500783
Alexander Aringced273e2017-10-11 17:16:07 -0400784 spin_lock(&ife->tcf_lock);
785
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500786 /* XXX: we dont have a clever way of telling encode to
787 * not repeat some of the computations that are done by
788 * ops->presence_check...
789 */
790 list_for_each_entry(e, &ife->metalist, metalist) {
791 if (e->ops->encode) {
Yotam Gigi295a6e02017-02-01 15:30:03 +0200792 err = e->ops->encode(skb, (void *)(ife_meta + skboff),
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500793 e);
794 }
795 if (err < 0) {
796 /* too corrupt to keep around if overwritten */
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500797 spin_unlock(&ife->tcf_lock);
Alexander Aringced273e2017-10-11 17:16:07 -0400798 qstats_drop_inc(this_cpu_ptr(ife->common.cpu_qstats));
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500799 return TC_ACT_SHOT;
800 }
801 skboff += err;
802 }
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400803 spin_unlock(&ife->tcf_lock);
Yotam Gigi295a6e02017-02-01 15:30:03 +0200804 oethh = (struct ethhdr *)skb->data;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500805
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400806 if (!is_zero_ether_addr(p->eth_src))
807 ether_addr_copy(oethh->h_source, p->eth_src);
808 if (!is_zero_ether_addr(p->eth_dst))
809 ether_addr_copy(oethh->h_dest, p->eth_dst);
810 oethh->h_proto = htons(p->eth_type);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500811
Willem de Bruijna5135bc2017-01-07 17:06:36 -0500812 if (skb_at_tc_ingress(skb))
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500813 skb_pull(skb, skb->dev->hard_header_len);
814
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500815 return action;
816}
817
818static int tcf_ife_act(struct sk_buff *skb, const struct tc_action *a,
819 struct tcf_result *res)
820{
WANG Conga85a9702016-07-25 16:09:41 -0700821 struct tcf_ife_info *ife = to_ife(a);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400822 struct tcf_ife_params *p;
823 int ret;
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500824
Paolo Abeni7fd4b282018-07-30 14:30:43 +0200825 p = rcu_dereference_bh(ife->params);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400826 if (p->flags & IFE_ENCODE) {
827 ret = tcf_ife_encode(skb, a, res, p);
Alexander Aringaa9fd9a2017-10-11 17:16:08 -0400828 return ret;
829 }
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500830
Alexander Aring734534e2017-10-11 17:16:06 -0400831 return tcf_ife_decode(skb, a, res);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500832}
833
834static int tcf_ife_walker(struct net *net, struct sk_buff *skb,
835 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500836 const struct tc_action_ops *ops,
837 struct netlink_ext_ack *extack)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500838{
839 struct tc_action_net *tn = net_generic(net, ife_net_id);
840
Alexander Aringb3620142018-02-15 10:54:59 -0500841 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500842}
843
Alexander Aring331a9292018-02-15 10:54:57 -0500844static int tcf_ife_search(struct net *net, struct tc_action **a, u32 index,
845 struct netlink_ext_ack *extack)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500846{
847 struct tc_action_net *tn = net_generic(net, ife_net_id);
848
Chris Mi65a206c2017-08-30 02:31:59 -0400849 return tcf_idr_search(tn, a, index);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500850}
851
852static struct tc_action_ops act_ife_ops = {
853 .kind = "ife",
854 .type = TCA_ACT_IFE,
855 .owner = THIS_MODULE,
856 .act = tcf_ife_act,
857 .dump = tcf_ife_dump,
858 .cleanup = tcf_ife_cleanup,
859 .init = tcf_ife_init,
860 .walk = tcf_ife_walker,
861 .lookup = tcf_ife_search,
WANG Conga85a9702016-07-25 16:09:41 -0700862 .size = sizeof(struct tcf_ife_info),
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500863};
864
865static __net_init int ife_init_net(struct net *net)
866{
867 struct tc_action_net *tn = net_generic(net, ife_net_id);
868
Cong Wangc7e460c2017-11-06 13:47:18 -0800869 return tc_action_net_init(tn, &act_ife_ops);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500870}
871
Cong Wang039af9c2017-12-11 15:35:03 -0800872static void __net_exit ife_exit_net(struct list_head *net_list)
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500873{
Cong Wang039af9c2017-12-11 15:35:03 -0800874 tc_action_net_exit(net_list, ife_net_id);
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500875}
876
877static struct pernet_operations ife_net_ops = {
878 .init = ife_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800879 .exit_batch = ife_exit_net,
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500880 .id = &ife_net_id,
881 .size = sizeof(struct tc_action_net),
Jamal Hadi Salimef6980b62016-02-27 08:08:54 -0500882};
883
884static int __init ife_init_module(void)
885{
886 return tcf_register_action(&act_ife_ops, &ife_net_ops);
887}
888
889static void __exit ife_cleanup_module(void)
890{
891 tcf_unregister_action(&act_ife_ops, &ife_net_ops);
892}
893
894module_init(ife_init_module);
895module_exit(ife_cleanup_module);
896
897MODULE_AUTHOR("Jamal Hadi Salim(2015)");
898MODULE_DESCRIPTION("Inter-FE LFB action");
899MODULE_LICENSE("GPL");