2 * net/sched/ife.c Inter-FE action based on ForCES WG InterFE LFB
5 * draft-ietf-forces-interfelfb-03
8 * "Distributing Linux Traffic Control Classifier-Action
10 * Authors: Jamal Hadi Salim and Damascene M. Joachimpillai
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.
17 * copyright Jamal Hadi Salim (2015)
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>
36 #define IFE_TAB_MASK 15
38 static int ife_net_id
;
39 static int max_metacnt
= IFE_META_MAX
+ 1;
40 static struct tc_action_ops act_ife_ops
;
42 static const struct nla_policy ife_policy
[TCA_IFE_MAX
+ 1] = {
43 [TCA_IFE_PARMS
] = { .len
= sizeof(struct tc_ife
)},
44 [TCA_IFE_DMAC
] = { .len
= ETH_ALEN
},
45 [TCA_IFE_SMAC
] = { .len
= ETH_ALEN
},
46 [TCA_IFE_TYPE
] = { .type
= NLA_U16
},
49 /* Caller takes care of presenting data in network order
51 int ife_tlv_meta_encode(void *skbdata
, u16 attrtype
, u16 dlen
, const void *dval
)
53 u32
*tlv
= (u32
*)(skbdata
);
54 u16 totlen
= nla_total_size(dlen
); /*alignment + hdr */
55 char *dptr
= (char *)tlv
+ NLA_HDRLEN
;
56 u32 htlv
= attrtype
<< 16 | dlen
;
59 memset(dptr
, 0, totlen
- NLA_HDRLEN
);
60 memcpy(dptr
, dval
, dlen
);
64 EXPORT_SYMBOL_GPL(ife_tlv_meta_encode
);
66 int ife_get_meta_u32(struct sk_buff
*skb
, struct tcf_meta_info
*mi
)
69 return nla_put_u32(skb
, mi
->metaid
, *(u32
*)mi
->metaval
);
71 return nla_put(skb
, mi
->metaid
, 0, NULL
);
73 EXPORT_SYMBOL_GPL(ife_get_meta_u32
);
75 int ife_check_meta_u32(u32 metaval
, struct tcf_meta_info
*mi
)
77 if (metaval
|| mi
->metaval
)
78 return 8; /* T+L+V == 2+2+4 */
82 EXPORT_SYMBOL_GPL(ife_check_meta_u32
);
84 int ife_encode_meta_u32(u32 metaval
, void *skbdata
, struct tcf_meta_info
*mi
)
89 edata
= *(u32
*)mi
->metaval
;
93 if (!edata
) /* will not encode */
97 return ife_tlv_meta_encode(skbdata
, mi
->metaid
, 4, &edata
);
99 EXPORT_SYMBOL_GPL(ife_encode_meta_u32
);
101 int ife_get_meta_u16(struct sk_buff
*skb
, struct tcf_meta_info
*mi
)
104 return nla_put_u16(skb
, mi
->metaid
, *(u16
*)mi
->metaval
);
106 return nla_put(skb
, mi
->metaid
, 0, NULL
);
108 EXPORT_SYMBOL_GPL(ife_get_meta_u16
);
110 int ife_alloc_meta_u32(struct tcf_meta_info
*mi
, void *metaval
, gfp_t gfp
)
112 mi
->metaval
= kmemdup(metaval
, sizeof(u32
), gfp
);
118 EXPORT_SYMBOL_GPL(ife_alloc_meta_u32
);
120 int ife_alloc_meta_u16(struct tcf_meta_info
*mi
, void *metaval
, gfp_t gfp
)
122 mi
->metaval
= kmemdup(metaval
, sizeof(u16
), gfp
);
128 EXPORT_SYMBOL_GPL(ife_alloc_meta_u16
);
130 void ife_release_meta_gen(struct tcf_meta_info
*mi
)
134 EXPORT_SYMBOL_GPL(ife_release_meta_gen
);
136 int ife_validate_meta_u32(void *val
, int len
)
138 if (len
== sizeof(u32
))
143 EXPORT_SYMBOL_GPL(ife_validate_meta_u32
);
145 int ife_validate_meta_u16(void *val
, int len
)
147 /* length will not include padding */
148 if (len
== sizeof(u16
))
153 EXPORT_SYMBOL_GPL(ife_validate_meta_u16
);
155 static LIST_HEAD(ifeoplist
);
156 static DEFINE_RWLOCK(ife_mod_lock
);
158 static struct tcf_meta_ops
*find_ife_oplist(u16 metaid
)
160 struct tcf_meta_ops
*o
;
162 read_lock(&ife_mod_lock
);
163 list_for_each_entry(o
, &ifeoplist
, list
) {
164 if (o
->metaid
== metaid
) {
165 if (!try_module_get(o
->owner
))
167 read_unlock(&ife_mod_lock
);
171 read_unlock(&ife_mod_lock
);
176 int register_ife_op(struct tcf_meta_ops
*mops
)
178 struct tcf_meta_ops
*m
;
180 if (!mops
->metaid
|| !mops
->metatype
|| !mops
->name
||
181 !mops
->check_presence
|| !mops
->encode
|| !mops
->decode
||
182 !mops
->get
|| !mops
->alloc
)
185 write_lock(&ife_mod_lock
);
187 list_for_each_entry(m
, &ifeoplist
, list
) {
188 if (m
->metaid
== mops
->metaid
||
189 (strcmp(mops
->name
, m
->name
) == 0)) {
190 write_unlock(&ife_mod_lock
);
196 mops
->release
= ife_release_meta_gen
;
198 list_add_tail(&mops
->list
, &ifeoplist
);
199 write_unlock(&ife_mod_lock
);
202 EXPORT_SYMBOL_GPL(unregister_ife_op
);
204 int unregister_ife_op(struct tcf_meta_ops
*mops
)
206 struct tcf_meta_ops
*m
;
209 write_lock(&ife_mod_lock
);
210 list_for_each_entry(m
, &ifeoplist
, list
) {
211 if (m
->metaid
== mops
->metaid
) {
212 list_del(&mops
->list
);
217 write_unlock(&ife_mod_lock
);
221 EXPORT_SYMBOL_GPL(register_ife_op
);
223 static int ife_validate_metatype(struct tcf_meta_ops
*ops
, void *val
, int len
)
226 /* XXX: unfortunately cant use nla_policy at this point
227 * because a length of 0 is valid in the case of
228 * "allow". "use" semantics do enforce for proper
229 * length and i couldve use nla_policy but it makes it hard
230 * to use it just for that..
233 return ops
->validate(val
, len
);
235 if (ops
->metatype
== NLA_U32
)
236 ret
= ife_validate_meta_u32(val
, len
);
237 else if (ops
->metatype
== NLA_U16
)
238 ret
= ife_validate_meta_u16(val
, len
);
243 /* called when adding new meta information
244 * under ife->tcf_lock for existing action
246 static int load_metaops_and_vet(struct tcf_ife_info
*ife
, u32 metaid
,
247 void *val
, int len
, bool exists
)
249 struct tcf_meta_ops
*ops
= find_ife_oplist(metaid
);
254 #ifdef CONFIG_MODULES
256 spin_unlock_bh(&ife
->tcf_lock
);
258 request_module("ifemeta%u", metaid
);
261 spin_lock_bh(&ife
->tcf_lock
);
262 ops
= find_ife_oplist(metaid
);
269 ret
= ife_validate_metatype(ops
, val
, len
);
271 module_put(ops
->owner
);
277 /* called when adding new meta information
278 * under ife->tcf_lock for existing action
280 static int add_metainfo(struct tcf_ife_info
*ife
, u32 metaid
, void *metaval
,
281 int len
, bool atomic
)
283 struct tcf_meta_info
*mi
= NULL
;
284 struct tcf_meta_ops
*ops
= find_ife_oplist(metaid
);
290 mi
= kzalloc(sizeof(*mi
), atomic
? GFP_ATOMIC
: GFP_KERNEL
);
292 /*put back what find_ife_oplist took */
293 module_put(ops
->owner
);
300 ret
= ops
->alloc(mi
, metaval
, atomic
? GFP_ATOMIC
: GFP_KERNEL
);
303 module_put(ops
->owner
);
308 list_add_tail(&mi
->metalist
, &ife
->metalist
);
313 static int use_all_metadata(struct tcf_ife_info
*ife
)
315 struct tcf_meta_ops
*o
;
319 read_lock(&ife_mod_lock
);
320 list_for_each_entry(o
, &ifeoplist
, list
) {
321 rc
= add_metainfo(ife
, o
->metaid
, NULL
, 0, true);
325 read_unlock(&ife_mod_lock
);
333 static int dump_metalist(struct sk_buff
*skb
, struct tcf_ife_info
*ife
)
335 struct tcf_meta_info
*e
;
337 unsigned char *b
= skb_tail_pointer(skb
);
338 int total_encoded
= 0;
340 /*can only happen on decode */
341 if (list_empty(&ife
->metalist
))
344 nest
= nla_nest_start(skb
, TCA_IFE_METALST
);
348 list_for_each_entry(e
, &ife
->metalist
, metalist
) {
349 if (!e
->ops
->get(skb
, e
))
356 nla_nest_end(skb
, nest
);
365 /* under ife->tcf_lock */
366 static void _tcf_ife_cleanup(struct tc_action
*a
, int bind
)
368 struct tcf_ife_info
*ife
= to_ife(a
);
369 struct tcf_meta_info
*e
, *n
;
371 list_for_each_entry_safe(e
, n
, &ife
->metalist
, metalist
) {
372 module_put(e
->ops
->owner
);
373 list_del(&e
->metalist
);
384 static void tcf_ife_cleanup(struct tc_action
*a
, int bind
)
386 struct tcf_ife_info
*ife
= to_ife(a
);
388 spin_lock_bh(&ife
->tcf_lock
);
389 _tcf_ife_cleanup(a
, bind
);
390 spin_unlock_bh(&ife
->tcf_lock
);
393 /* under ife->tcf_lock for existing action */
394 static int populate_metalist(struct tcf_ife_info
*ife
, struct nlattr
**tb
,
402 for (i
= 1; i
< max_metacnt
; i
++) {
404 val
= nla_data(tb
[i
]);
405 len
= nla_len(tb
[i
]);
407 rc
= load_metaops_and_vet(ife
, i
, val
, len
, exists
);
411 rc
= add_metainfo(ife
, i
, val
, len
, exists
);
420 static int tcf_ife_init(struct net
*net
, struct nlattr
*nla
,
421 struct nlattr
*est
, struct tc_action
**a
,
424 struct tc_action_net
*tn
= net_generic(net
, ife_net_id
);
425 struct nlattr
*tb
[TCA_IFE_MAX
+ 1];
426 struct nlattr
*tb2
[IFE_META_MAX
+ 1];
427 struct tcf_ife_info
*ife
;
436 err
= nla_parse_nested(tb
, TCA_IFE_MAX
, nla
, ife_policy
);
440 if (!tb
[TCA_IFE_PARMS
])
443 parm
= nla_data(tb
[TCA_IFE_PARMS
]);
445 exists
= tcf_hash_check(tn
, parm
->index
, a
, bind
);
449 if (parm
->flags
& IFE_ENCODE
) {
450 /* Until we get issued the ethertype, we cant have
453 if (!tb
[TCA_IFE_TYPE
]) {
455 tcf_hash_release(*a
, bind
);
456 pr_info("You MUST pass etherype for encoding\n");
462 ret
= tcf_hash_create(tn
, parm
->index
, est
, a
, &act_ife_ops
,
468 tcf_hash_release(*a
, bind
);
474 ife
->flags
= parm
->flags
;
476 if (parm
->flags
& IFE_ENCODE
) {
477 ife_type
= nla_get_u16(tb
[TCA_IFE_TYPE
]);
478 if (tb
[TCA_IFE_DMAC
])
479 daddr
= nla_data(tb
[TCA_IFE_DMAC
]);
480 if (tb
[TCA_IFE_SMAC
])
481 saddr
= nla_data(tb
[TCA_IFE_SMAC
]);
485 spin_lock_bh(&ife
->tcf_lock
);
486 ife
->tcf_action
= parm
->action
;
488 if (parm
->flags
& IFE_ENCODE
) {
490 ether_addr_copy(ife
->eth_dst
, daddr
);
492 eth_zero_addr(ife
->eth_dst
);
495 ether_addr_copy(ife
->eth_src
, saddr
);
497 eth_zero_addr(ife
->eth_src
);
499 ife
->eth_type
= ife_type
;
502 if (ret
== ACT_P_CREATED
)
503 INIT_LIST_HEAD(&ife
->metalist
);
505 if (tb
[TCA_IFE_METALST
]) {
506 err
= nla_parse_nested(tb2
, IFE_META_MAX
, tb
[TCA_IFE_METALST
],
511 tcf_hash_release(*a
, bind
);
512 if (ret
== ACT_P_CREATED
)
513 _tcf_ife_cleanup(*a
, bind
);
516 spin_unlock_bh(&ife
->tcf_lock
);
520 err
= populate_metalist(ife
, tb2
, exists
);
522 goto metadata_parse_err
;
525 /* if no passed metadata allow list or passed allow-all
526 * then here we process by adding as many supported metadatum
527 * as we can. You better have at least one else we are
530 err
= use_all_metadata(ife
);
532 if (ret
== ACT_P_CREATED
)
533 _tcf_ife_cleanup(*a
, bind
);
536 spin_unlock_bh(&ife
->tcf_lock
);
542 spin_unlock_bh(&ife
->tcf_lock
);
544 if (ret
== ACT_P_CREATED
)
545 tcf_hash_insert(tn
, *a
);
550 static int tcf_ife_dump(struct sk_buff
*skb
, struct tc_action
*a
, int bind
,
553 unsigned char *b
= skb_tail_pointer(skb
);
554 struct tcf_ife_info
*ife
= to_ife(a
);
555 struct tc_ife opt
= {
556 .index
= ife
->tcf_index
,
557 .refcnt
= ife
->tcf_refcnt
- ref
,
558 .bindcnt
= ife
->tcf_bindcnt
- bind
,
559 .action
= ife
->tcf_action
,
564 if (nla_put(skb
, TCA_IFE_PARMS
, sizeof(opt
), &opt
))
565 goto nla_put_failure
;
567 tcf_tm_dump(&t
, &ife
->tcf_tm
);
568 if (nla_put_64bit(skb
, TCA_IFE_TM
, sizeof(t
), &t
, TCA_IFE_PAD
))
569 goto nla_put_failure
;
571 if (!is_zero_ether_addr(ife
->eth_dst
)) {
572 if (nla_put(skb
, TCA_IFE_DMAC
, ETH_ALEN
, ife
->eth_dst
))
573 goto nla_put_failure
;
576 if (!is_zero_ether_addr(ife
->eth_src
)) {
577 if (nla_put(skb
, TCA_IFE_SMAC
, ETH_ALEN
, ife
->eth_src
))
578 goto nla_put_failure
;
581 if (nla_put(skb
, TCA_IFE_TYPE
, 2, &ife
->eth_type
))
582 goto nla_put_failure
;
584 if (dump_metalist(skb
, ife
)) {
585 /*ignore failure to dump metalist */
586 pr_info("Failed to dump metalist\n");
596 int find_decode_metaid(struct sk_buff
*skb
, struct tcf_ife_info
*ife
,
597 u16 metaid
, u16 mlen
, void *mdata
)
599 struct tcf_meta_info
*e
;
601 /* XXX: use hash to speed up */
602 list_for_each_entry(e
, &ife
->metalist
, metalist
) {
603 if (metaid
== e
->metaid
) {
605 /* We check for decode presence already */
606 return e
->ops
->decode(skb
, mdata
, mlen
);
624 static int tcf_ife_decode(struct sk_buff
*skb
, const struct tc_action
*a
,
625 struct tcf_result
*res
)
627 struct tcf_ife_info
*ife
= to_ife(a
);
628 int action
= ife
->tcf_action
;
629 struct ifeheadr
*ifehdr
= (struct ifeheadr
*)skb
->data
;
630 u16 ifehdrln
= ifehdr
->metalen
;
631 struct meta_tlvhdr
*tlv
= (struct meta_tlvhdr
*)(ifehdr
->tlv_data
);
633 spin_lock(&ife
->tcf_lock
);
634 bstats_update(&ife
->tcf_bstats
, skb
);
635 tcf_lastuse_update(&ife
->tcf_tm
);
636 spin_unlock(&ife
->tcf_lock
);
638 ifehdrln
= ntohs(ifehdrln
);
639 if (unlikely(!pskb_may_pull(skb
, ifehdrln
))) {
640 spin_lock(&ife
->tcf_lock
);
641 ife
->tcf_qstats
.drops
++;
642 spin_unlock(&ife
->tcf_lock
);
646 skb_set_mac_header(skb
, ifehdrln
);
647 __skb_pull(skb
, ifehdrln
);
648 skb
->protocol
= eth_type_trans(skb
, skb
->dev
);
649 ifehdrln
-= IFE_METAHDRLEN
;
651 while (ifehdrln
> 0) {
652 u8
*tlvdata
= (u8
*)tlv
;
653 u16 mtype
= tlv
->type
;
657 mtype
= ntohs(mtype
);
659 alen
= NLA_ALIGN(mlen
);
661 if (find_decode_metaid(skb
, ife
, mtype
, (mlen
- NLA_HDRLEN
),
662 (void *)(tlvdata
+ NLA_HDRLEN
))) {
663 /* abuse overlimits to count when we receive metadata
664 * but dont have an ops for it
666 pr_info_ratelimited("Unknown metaid %d alnlen %d\n",
668 ife
->tcf_qstats
.overlimits
++;
673 tlv
= (struct meta_tlvhdr
*)tlvdata
;
676 skb_reset_network_header(skb
);
680 /*XXX: check if we can do this at install time instead of current
683 static int ife_get_sz(struct sk_buff
*skb
, struct tcf_ife_info
*ife
)
685 struct tcf_meta_info
*e
, *n
;
686 int tot_run_sz
= 0, run_sz
= 0;
688 list_for_each_entry_safe(e
, n
, &ife
->metalist
, metalist
) {
689 if (e
->ops
->check_presence
) {
690 run_sz
= e
->ops
->check_presence(skb
, e
);
691 tot_run_sz
+= run_sz
;
698 static int tcf_ife_encode(struct sk_buff
*skb
, const struct tc_action
*a
,
699 struct tcf_result
*res
)
701 struct tcf_ife_info
*ife
= to_ife(a
);
702 int action
= ife
->tcf_action
;
703 struct ethhdr
*oethh
; /* outer ether header */
704 struct ethhdr
*iethh
; /* inner eth header */
705 struct tcf_meta_info
*e
;
707 OUTERHDR:TOTMETALEN:{TLVHDR:Metadatum:TLVHDR..}:ORIGDATA
708 where ORIGDATA = original ethernet header ...
710 u16 metalen
= ife_get_sz(skb
, ife
);
711 int hdrm
= metalen
+ skb
->dev
->hard_header_len
+ IFE_METAHDRLEN
;
712 unsigned int skboff
= skb
->dev
->hard_header_len
;
713 u32 at
= G_TC_AT(skb
->tc_verd
);
714 int new_len
= skb
->len
+ hdrm
;
715 bool exceed_mtu
= false;
718 if (at
& AT_EGRESS
) {
719 if (new_len
> skb
->dev
->mtu
)
723 spin_lock(&ife
->tcf_lock
);
724 bstats_update(&ife
->tcf_bstats
, skb
);
725 tcf_lastuse_update(&ife
->tcf_tm
);
727 if (!metalen
) { /* no metadata to send */
728 /* abuse overlimits to count when we allow packet
731 ife
->tcf_qstats
.overlimits
++;
732 spin_unlock(&ife
->tcf_lock
);
735 /* could be stupid policy setup or mtu config
736 * so lets be conservative.. */
737 if ((action
== TC_ACT_SHOT
) || exceed_mtu
) {
738 ife
->tcf_qstats
.drops
++;
739 spin_unlock(&ife
->tcf_lock
);
743 iethh
= eth_hdr(skb
);
745 err
= skb_cow_head(skb
, hdrm
);
747 ife
->tcf_qstats
.drops
++;
748 spin_unlock(&ife
->tcf_lock
);
752 if (!(at
& AT_EGRESS
))
753 skb_push(skb
, skb
->dev
->hard_header_len
);
755 __skb_push(skb
, hdrm
);
756 memcpy(skb
->data
, iethh
, skb
->mac_len
);
757 skb_reset_mac_header(skb
);
758 oethh
= eth_hdr(skb
);
760 /*total metadata length */
761 metalen
+= IFE_METAHDRLEN
;
762 metalen
= htons(metalen
);
763 memcpy((skb
->data
+ skboff
), &metalen
, IFE_METAHDRLEN
);
764 skboff
+= IFE_METAHDRLEN
;
766 /* XXX: we dont have a clever way of telling encode to
767 * not repeat some of the computations that are done by
768 * ops->presence_check...
770 list_for_each_entry(e
, &ife
->metalist
, metalist
) {
771 if (e
->ops
->encode
) {
772 err
= e
->ops
->encode(skb
, (void *)(skb
->data
+ skboff
),
776 /* too corrupt to keep around if overwritten */
777 ife
->tcf_qstats
.drops
++;
778 spin_unlock(&ife
->tcf_lock
);
784 if (!is_zero_ether_addr(ife
->eth_src
))
785 ether_addr_copy(oethh
->h_source
, ife
->eth_src
);
787 ether_addr_copy(oethh
->h_source
, iethh
->h_source
);
788 if (!is_zero_ether_addr(ife
->eth_dst
))
789 ether_addr_copy(oethh
->h_dest
, ife
->eth_dst
);
791 ether_addr_copy(oethh
->h_dest
, iethh
->h_dest
);
792 oethh
->h_proto
= htons(ife
->eth_type
);
794 if (!(at
& AT_EGRESS
))
795 skb_pull(skb
, skb
->dev
->hard_header_len
);
797 spin_unlock(&ife
->tcf_lock
);
802 static int tcf_ife_act(struct sk_buff
*skb
, const struct tc_action
*a
,
803 struct tcf_result
*res
)
805 struct tcf_ife_info
*ife
= to_ife(a
);
807 if (ife
->flags
& IFE_ENCODE
)
808 return tcf_ife_encode(skb
, a
, res
);
810 if (!(ife
->flags
& IFE_ENCODE
))
811 return tcf_ife_decode(skb
, a
, res
);
813 pr_info_ratelimited("unknown failure(policy neither de/encode\n");
814 spin_lock(&ife
->tcf_lock
);
815 bstats_update(&ife
->tcf_bstats
, skb
);
816 tcf_lastuse_update(&ife
->tcf_tm
);
817 ife
->tcf_qstats
.drops
++;
818 spin_unlock(&ife
->tcf_lock
);
823 static int tcf_ife_walker(struct net
*net
, struct sk_buff
*skb
,
824 struct netlink_callback
*cb
, int type
,
825 const struct tc_action_ops
*ops
)
827 struct tc_action_net
*tn
= net_generic(net
, ife_net_id
);
829 return tcf_generic_walker(tn
, skb
, cb
, type
, ops
);
832 static int tcf_ife_search(struct net
*net
, struct tc_action
**a
, u32 index
)
834 struct tc_action_net
*tn
= net_generic(net
, ife_net_id
);
836 return tcf_hash_search(tn
, a
, index
);
839 static struct tc_action_ops act_ife_ops
= {
842 .owner
= THIS_MODULE
,
844 .dump
= tcf_ife_dump
,
845 .cleanup
= tcf_ife_cleanup
,
846 .init
= tcf_ife_init
,
847 .walk
= tcf_ife_walker
,
848 .lookup
= tcf_ife_search
,
849 .size
= sizeof(struct tcf_ife_info
),
852 static __net_init
int ife_init_net(struct net
*net
)
854 struct tc_action_net
*tn
= net_generic(net
, ife_net_id
);
856 return tc_action_net_init(tn
, &act_ife_ops
, IFE_TAB_MASK
);
859 static void __net_exit
ife_exit_net(struct net
*net
)
861 struct tc_action_net
*tn
= net_generic(net
, ife_net_id
);
863 tc_action_net_exit(tn
);
866 static struct pernet_operations ife_net_ops
= {
867 .init
= ife_init_net
,
868 .exit
= ife_exit_net
,
870 .size
= sizeof(struct tc_action_net
),
873 static int __init
ife_init_module(void)
875 return tcf_register_action(&act_ife_ops
, &ife_net_ops
);
878 static void __exit
ife_cleanup_module(void)
880 tcf_unregister_action(&act_ife_ops
, &ife_net_ops
);
883 module_init(ife_init_module
);
884 module_exit(ife_cleanup_module
);
886 MODULE_AUTHOR("Jamal Hadi Salim(2015)");
887 MODULE_DESCRIPTION("Inter-FE LFB action");
888 MODULE_LICENSE("GPL");