1 // SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
3 * net/sched/act_ct.c Connection Tracking action
5 * Authors: Paul Blakey <paulb@mellanox.com>
6 * Yossi Kuperman <yossiku@mellanox.com>
7 * Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/skbuff.h>
14 #include <linux/rtnetlink.h>
15 #include <linux/pkt_cls.h>
17 #include <linux/ipv6.h>
18 #include <linux/rhashtable.h>
19 #include <net/netlink.h>
20 #include <net/pkt_sched.h>
21 #include <net/pkt_cls.h>
22 #include <net/act_api.h>
24 #include <net/ipv6_frag.h>
25 #include <uapi/linux/tc_act/tc_ct.h>
26 #include <net/tc_act/tc_ct.h>
27 #include <net/tc_wrapper.h>
29 #include <net/netfilter/nf_flow_table.h>
30 #include <net/netfilter/nf_conntrack.h>
31 #include <net/netfilter/nf_conntrack_core.h>
32 #include <net/netfilter/nf_conntrack_zones.h>
33 #include <net/netfilter/nf_conntrack_helper.h>
34 #include <net/netfilter/nf_conntrack_acct.h>
35 #include <net/netfilter/ipv6/nf_defrag_ipv6.h>
36 #include <net/netfilter/nf_conntrack_act_ct.h>
37 #include <net/netfilter/nf_conntrack_seqadj.h>
38 #include <uapi/linux/netfilter/nf_nat.h>
40 static struct workqueue_struct *act_ct_wq;
41 static struct rhashtable zones_ht;
42 static DEFINE_MUTEX(zones_mutex);
44 struct tcf_ct_flow_table {
45 struct rhash_head node; /* In zones tables */
47 struct rcu_work rwork;
48 struct nf_flowtable nf_ft;
55 static const struct rhashtable_params zones_params = {
56 .head_offset = offsetof(struct tcf_ct_flow_table, node),
57 .key_offset = offsetof(struct tcf_ct_flow_table, zone),
58 .key_len = sizeof_field(struct tcf_ct_flow_table, zone),
59 .automatic_shrinking = true,
62 static struct flow_action_entry *
63 tcf_ct_flow_table_flow_action_get_next(struct flow_action *flow_action)
65 int i = flow_action->num_entries++;
67 return &flow_action->entries[i];
70 static void tcf_ct_add_mangle_action(struct flow_action *action,
71 enum flow_action_mangle_base htype,
76 struct flow_action_entry *entry;
78 entry = tcf_ct_flow_table_flow_action_get_next(action);
79 entry->id = FLOW_ACTION_MANGLE;
80 entry->mangle.htype = htype;
81 entry->mangle.mask = ~mask;
82 entry->mangle.offset = offset;
83 entry->mangle.val = val;
86 /* The following nat helper functions check if the inverted reverse tuple
87 * (target) is different then the current dir tuple - meaning nat for ports
88 * and/or ip is needed, and add the relevant mangle actions.
91 tcf_ct_flow_table_add_action_nat_ipv4(const struct nf_conntrack_tuple *tuple,
92 struct nf_conntrack_tuple target,
93 struct flow_action *action)
95 if (memcmp(&target.src.u3, &tuple->src.u3, sizeof(target.src.u3)))
96 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_IP4,
97 offsetof(struct iphdr, saddr),
99 be32_to_cpu(target.src.u3.ip));
100 if (memcmp(&target.dst.u3, &tuple->dst.u3, sizeof(target.dst.u3)))
101 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_IP4,
102 offsetof(struct iphdr, daddr),
104 be32_to_cpu(target.dst.u3.ip));
108 tcf_ct_add_ipv6_addr_mangle_action(struct flow_action *action,
109 union nf_inet_addr *addr,
114 for (i = 0; i < sizeof(struct in6_addr) / sizeof(u32); i++)
115 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_IP6,
116 i * sizeof(u32) + offset,
117 0xFFFFFFFF, be32_to_cpu(addr->ip6[i]));
121 tcf_ct_flow_table_add_action_nat_ipv6(const struct nf_conntrack_tuple *tuple,
122 struct nf_conntrack_tuple target,
123 struct flow_action *action)
125 if (memcmp(&target.src.u3, &tuple->src.u3, sizeof(target.src.u3)))
126 tcf_ct_add_ipv6_addr_mangle_action(action, &target.src.u3,
127 offsetof(struct ipv6hdr,
129 if (memcmp(&target.dst.u3, &tuple->dst.u3, sizeof(target.dst.u3)))
130 tcf_ct_add_ipv6_addr_mangle_action(action, &target.dst.u3,
131 offsetof(struct ipv6hdr,
136 tcf_ct_flow_table_add_action_nat_tcp(const struct nf_conntrack_tuple *tuple,
137 struct nf_conntrack_tuple target,
138 struct flow_action *action)
140 __be16 target_src = target.src.u.tcp.port;
141 __be16 target_dst = target.dst.u.tcp.port;
143 if (target_src != tuple->src.u.tcp.port)
144 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_TCP,
145 offsetof(struct tcphdr, source),
146 0xFFFF, be16_to_cpu(target_src));
147 if (target_dst != tuple->dst.u.tcp.port)
148 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_TCP,
149 offsetof(struct tcphdr, dest),
150 0xFFFF, be16_to_cpu(target_dst));
154 tcf_ct_flow_table_add_action_nat_udp(const struct nf_conntrack_tuple *tuple,
155 struct nf_conntrack_tuple target,
156 struct flow_action *action)
158 __be16 target_src = target.src.u.udp.port;
159 __be16 target_dst = target.dst.u.udp.port;
161 if (target_src != tuple->src.u.udp.port)
162 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_UDP,
163 offsetof(struct udphdr, source),
164 0xFFFF, be16_to_cpu(target_src));
165 if (target_dst != tuple->dst.u.udp.port)
166 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_UDP,
167 offsetof(struct udphdr, dest),
168 0xFFFF, be16_to_cpu(target_dst));
171 static void tcf_ct_flow_table_add_action_meta(struct nf_conn *ct,
172 enum ip_conntrack_dir dir,
173 enum ip_conntrack_info ctinfo,
174 struct flow_action *action)
176 struct nf_conn_labels *ct_labels;
177 struct flow_action_entry *entry;
180 entry = tcf_ct_flow_table_flow_action_get_next(action);
181 entry->id = FLOW_ACTION_CT_METADATA;
182 #if IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)
183 entry->ct_metadata.mark = READ_ONCE(ct->mark);
185 /* aligns with the CT reference on the SKB nf_ct_set */
186 entry->ct_metadata.cookie = (unsigned long)ct | ctinfo;
187 entry->ct_metadata.orig_dir = dir == IP_CT_DIR_ORIGINAL;
189 act_ct_labels = entry->ct_metadata.labels;
190 ct_labels = nf_ct_labels_find(ct);
192 memcpy(act_ct_labels, ct_labels->bits, NF_CT_LABELS_MAX_SIZE);
194 memset(act_ct_labels, 0, NF_CT_LABELS_MAX_SIZE);
197 static int tcf_ct_flow_table_add_action_nat(struct net *net,
199 enum ip_conntrack_dir dir,
200 struct flow_action *action)
202 const struct nf_conntrack_tuple *tuple = &ct->tuplehash[dir].tuple;
203 struct nf_conntrack_tuple target;
205 if (!(ct->status & IPS_NAT_MASK))
208 nf_ct_invert_tuple(&target, &ct->tuplehash[!dir].tuple);
210 switch (tuple->src.l3num) {
212 tcf_ct_flow_table_add_action_nat_ipv4(tuple, target,
216 tcf_ct_flow_table_add_action_nat_ipv6(tuple, target,
223 switch (nf_ct_protonum(ct)) {
225 tcf_ct_flow_table_add_action_nat_tcp(tuple, target, action);
228 tcf_ct_flow_table_add_action_nat_udp(tuple, target, action);
237 static int tcf_ct_flow_table_fill_actions(struct net *net,
238 struct flow_offload *flow,
239 enum flow_offload_tuple_dir tdir,
240 struct nf_flow_rule *flow_rule)
242 struct flow_action *action = &flow_rule->rule->action;
243 int num_entries = action->num_entries;
244 struct nf_conn *ct = flow->ct;
245 enum ip_conntrack_info ctinfo;
246 enum ip_conntrack_dir dir;
250 case FLOW_OFFLOAD_DIR_ORIGINAL:
251 dir = IP_CT_DIR_ORIGINAL;
252 ctinfo = test_bit(IPS_SEEN_REPLY_BIT, &ct->status) ?
253 IP_CT_ESTABLISHED : IP_CT_NEW;
254 if (ctinfo == IP_CT_ESTABLISHED)
255 set_bit(NF_FLOW_HW_ESTABLISHED, &flow->flags);
257 case FLOW_OFFLOAD_DIR_REPLY:
258 dir = IP_CT_DIR_REPLY;
259 ctinfo = IP_CT_ESTABLISHED_REPLY;
265 err = tcf_ct_flow_table_add_action_nat(net, ct, dir, action);
269 tcf_ct_flow_table_add_action_meta(ct, dir, ctinfo, action);
273 /* Clear filled actions */
274 for (i = num_entries; i < action->num_entries; i++)
275 memset(&action->entries[i], 0, sizeof(action->entries[i]));
276 action->num_entries = num_entries;
281 static bool tcf_ct_flow_is_outdated(const struct flow_offload *flow)
283 return test_bit(IPS_SEEN_REPLY_BIT, &flow->ct->status) &&
284 test_bit(IPS_HW_OFFLOAD_BIT, &flow->ct->status) &&
285 !test_bit(NF_FLOW_HW_PENDING, &flow->flags) &&
286 !test_bit(NF_FLOW_HW_ESTABLISHED, &flow->flags);
289 static struct nf_flowtable_type flowtable_ct = {
290 .gc = tcf_ct_flow_is_outdated,
291 .action = tcf_ct_flow_table_fill_actions,
292 .owner = THIS_MODULE,
295 static int tcf_ct_flow_table_get(struct net *net, struct tcf_ct_params *params)
297 struct tcf_ct_flow_table *ct_ft;
300 mutex_lock(&zones_mutex);
301 ct_ft = rhashtable_lookup_fast(&zones_ht, ¶ms->zone, zones_params);
302 if (ct_ft && refcount_inc_not_zero(&ct_ft->ref))
305 ct_ft = kzalloc(sizeof(*ct_ft), GFP_KERNEL);
308 refcount_set(&ct_ft->ref, 1);
310 ct_ft->zone = params->zone;
311 err = rhashtable_insert_fast(&zones_ht, &ct_ft->node, zones_params);
315 ct_ft->nf_ft.type = &flowtable_ct;
316 ct_ft->nf_ft.flags |= NF_FLOWTABLE_HW_OFFLOAD |
317 NF_FLOWTABLE_COUNTER;
318 err = nf_flow_table_init(&ct_ft->nf_ft);
321 write_pnet(&ct_ft->nf_ft.net, net);
323 __module_get(THIS_MODULE);
325 params->ct_ft = ct_ft;
326 params->nf_ft = &ct_ft->nf_ft;
327 mutex_unlock(&zones_mutex);
332 rhashtable_remove_fast(&zones_ht, &ct_ft->node, zones_params);
336 mutex_unlock(&zones_mutex);
340 static void tcf_ct_flow_table_cleanup_work(struct work_struct *work)
342 struct flow_block_cb *block_cb, *tmp_cb;
343 struct tcf_ct_flow_table *ct_ft;
344 struct flow_block *block;
346 ct_ft = container_of(to_rcu_work(work), struct tcf_ct_flow_table,
348 nf_flow_table_free(&ct_ft->nf_ft);
350 /* Remove any remaining callbacks before cleanup */
351 block = &ct_ft->nf_ft.flow_block;
352 down_write(&ct_ft->nf_ft.flow_block_lock);
353 list_for_each_entry_safe(block_cb, tmp_cb, &block->cb_list, list) {
354 list_del(&block_cb->list);
355 flow_block_cb_free(block_cb);
357 up_write(&ct_ft->nf_ft.flow_block_lock);
360 module_put(THIS_MODULE);
363 static void tcf_ct_flow_table_put(struct tcf_ct_flow_table *ct_ft)
365 if (refcount_dec_and_test(&ct_ft->ref)) {
366 rhashtable_remove_fast(&zones_ht, &ct_ft->node, zones_params);
367 INIT_RCU_WORK(&ct_ft->rwork, tcf_ct_flow_table_cleanup_work);
368 queue_rcu_work(act_ct_wq, &ct_ft->rwork);
372 static void tcf_ct_flow_tc_ifidx(struct flow_offload *entry,
373 struct nf_conn_act_ct_ext *act_ct_ext, u8 dir)
375 entry->tuplehash[dir].tuple.xmit_type = FLOW_OFFLOAD_XMIT_TC;
376 entry->tuplehash[dir].tuple.tc.iifidx = act_ct_ext->ifindex[dir];
379 static void tcf_ct_flow_ct_ext_ifidx_update(struct flow_offload *entry)
381 struct nf_conn_act_ct_ext *act_ct_ext;
383 act_ct_ext = nf_conn_act_ct_ext_find(entry->ct);
385 tcf_ct_flow_tc_ifidx(entry, act_ct_ext, FLOW_OFFLOAD_DIR_ORIGINAL);
386 tcf_ct_flow_tc_ifidx(entry, act_ct_ext, FLOW_OFFLOAD_DIR_REPLY);
390 static void tcf_ct_flow_table_add(struct tcf_ct_flow_table *ct_ft,
392 bool tcp, bool bidirectional)
394 struct nf_conn_act_ct_ext *act_ct_ext;
395 struct flow_offload *entry;
398 if (test_and_set_bit(IPS_OFFLOAD_BIT, &ct->status))
401 entry = flow_offload_alloc(ct);
408 ct->proto.tcp.seen[0].flags |= IP_CT_TCP_FLAG_BE_LIBERAL;
409 ct->proto.tcp.seen[1].flags |= IP_CT_TCP_FLAG_BE_LIBERAL;
412 __set_bit(NF_FLOW_HW_BIDIRECTIONAL, &entry->flags);
414 act_ct_ext = nf_conn_act_ct_ext_find(ct);
416 tcf_ct_flow_tc_ifidx(entry, act_ct_ext, FLOW_OFFLOAD_DIR_ORIGINAL);
417 tcf_ct_flow_tc_ifidx(entry, act_ct_ext, FLOW_OFFLOAD_DIR_REPLY);
420 err = flow_offload_add(&ct_ft->nf_ft, entry);
427 flow_offload_free(entry);
429 clear_bit(IPS_OFFLOAD_BIT, &ct->status);
432 static void tcf_ct_flow_table_process_conn(struct tcf_ct_flow_table *ct_ft,
434 enum ip_conntrack_info ctinfo)
436 bool tcp = false, bidirectional = true;
438 switch (nf_ct_protonum(ct)) {
440 if ((ctinfo != IP_CT_ESTABLISHED &&
441 ctinfo != IP_CT_ESTABLISHED_REPLY) ||
442 !test_bit(IPS_ASSURED_BIT, &ct->status) ||
443 ct->proto.tcp.state != TCP_CONNTRACK_ESTABLISHED)
449 if (!nf_ct_is_confirmed(ct))
451 if (!test_bit(IPS_ASSURED_BIT, &ct->status))
452 bidirectional = false;
454 #ifdef CONFIG_NF_CT_PROTO_GRE
456 struct nf_conntrack_tuple *tuple;
458 if ((ctinfo != IP_CT_ESTABLISHED &&
459 ctinfo != IP_CT_ESTABLISHED_REPLY) ||
460 !test_bit(IPS_ASSURED_BIT, &ct->status) ||
461 ct->status & IPS_NAT_MASK)
464 tuple = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
465 /* No support for GRE v1 */
466 if (tuple->src.u.gre.key || tuple->dst.u.gre.key)
475 if (nf_ct_ext_exist(ct, NF_CT_EXT_HELPER) ||
476 ct->status & IPS_SEQ_ADJUST)
479 tcf_ct_flow_table_add(ct_ft, ct, tcp, bidirectional);
483 tcf_ct_flow_table_fill_tuple_ipv4(struct sk_buff *skb,
484 struct flow_offload_tuple *tuple,
485 struct tcphdr **tcph)
487 struct flow_ports *ports;
493 if (!pskb_network_may_pull(skb, sizeof(*iph)))
497 thoff = iph->ihl * 4;
499 if (ip_is_fragment(iph) ||
500 unlikely(thoff != sizeof(struct iphdr)))
503 ipproto = iph->protocol;
506 hdrsize = sizeof(struct tcphdr);
509 hdrsize = sizeof(*ports);
511 #ifdef CONFIG_NF_CT_PROTO_GRE
513 hdrsize = sizeof(struct gre_base_hdr);
523 if (!pskb_network_may_pull(skb, thoff + hdrsize))
528 *tcph = (void *)(skb_network_header(skb) + thoff);
531 ports = (struct flow_ports *)(skb_network_header(skb) + thoff);
532 tuple->src_port = ports->source;
533 tuple->dst_port = ports->dest;
536 struct gre_base_hdr *greh;
538 greh = (struct gre_base_hdr *)(skb_network_header(skb) + thoff);
539 if ((greh->flags & GRE_VERSION) != GRE_VERSION_0)
547 tuple->src_v4.s_addr = iph->saddr;
548 tuple->dst_v4.s_addr = iph->daddr;
549 tuple->l3proto = AF_INET;
550 tuple->l4proto = ipproto;
556 tcf_ct_flow_table_fill_tuple_ipv6(struct sk_buff *skb,
557 struct flow_offload_tuple *tuple,
558 struct tcphdr **tcph)
560 struct flow_ports *ports;
561 struct ipv6hdr *ip6h;
566 if (!pskb_network_may_pull(skb, sizeof(*ip6h)))
569 ip6h = ipv6_hdr(skb);
570 thoff = sizeof(*ip6h);
572 nexthdr = ip6h->nexthdr;
575 hdrsize = sizeof(struct tcphdr);
578 hdrsize = sizeof(*ports);
580 #ifdef CONFIG_NF_CT_PROTO_GRE
582 hdrsize = sizeof(struct gre_base_hdr);
589 if (ip6h->hop_limit <= 1)
592 if (!pskb_network_may_pull(skb, thoff + hdrsize))
597 *tcph = (void *)(skb_network_header(skb) + thoff);
600 ports = (struct flow_ports *)(skb_network_header(skb) + thoff);
601 tuple->src_port = ports->source;
602 tuple->dst_port = ports->dest;
605 struct gre_base_hdr *greh;
607 greh = (struct gre_base_hdr *)(skb_network_header(skb) + thoff);
608 if ((greh->flags & GRE_VERSION) != GRE_VERSION_0)
614 ip6h = ipv6_hdr(skb);
616 tuple->src_v6 = ip6h->saddr;
617 tuple->dst_v6 = ip6h->daddr;
618 tuple->l3proto = AF_INET6;
619 tuple->l4proto = nexthdr;
624 static bool tcf_ct_flow_table_lookup(struct tcf_ct_params *p,
628 struct nf_flowtable *nf_ft = &p->ct_ft->nf_ft;
629 struct flow_offload_tuple_rhash *tuplehash;
630 struct flow_offload_tuple tuple = {};
631 enum ip_conntrack_info ctinfo;
632 struct tcphdr *tcph = NULL;
633 bool force_refresh = false;
634 struct flow_offload *flow;
640 if (!tcf_ct_flow_table_fill_tuple_ipv4(skb, &tuple, &tcph))
644 if (!tcf_ct_flow_table_fill_tuple_ipv6(skb, &tuple, &tcph))
651 tuplehash = flow_offload_lookup(nf_ft, &tuple);
655 dir = tuplehash->tuple.dir;
656 flow = container_of(tuplehash, struct flow_offload, tuplehash[dir]);
659 if (dir == FLOW_OFFLOAD_DIR_REPLY &&
660 !test_bit(NF_FLOW_HW_BIDIRECTIONAL, &flow->flags)) {
661 /* Only offload reply direction after connection became
664 if (test_bit(IPS_ASSURED_BIT, &ct->status))
665 set_bit(NF_FLOW_HW_BIDIRECTIONAL, &flow->flags);
666 else if (test_bit(NF_FLOW_HW_ESTABLISHED, &flow->flags))
667 /* If flow_table flow has already been updated to the
668 * established state, then don't refresh.
671 force_refresh = true;
674 if (tcph && (unlikely(tcph->fin || tcph->rst))) {
675 flow_offload_teardown(flow);
679 if (dir == FLOW_OFFLOAD_DIR_ORIGINAL)
680 ctinfo = test_bit(IPS_SEEN_REPLY_BIT, &ct->status) ?
681 IP_CT_ESTABLISHED : IP_CT_NEW;
683 ctinfo = IP_CT_ESTABLISHED_REPLY;
685 nf_conn_act_ct_ext_fill(skb, ct, ctinfo);
686 tcf_ct_flow_ct_ext_ifidx_update(flow);
687 flow_offload_refresh(nf_ft, flow, force_refresh);
688 if (!test_bit(IPS_ASSURED_BIT, &ct->status)) {
689 /* Process this flow in SW to allow promoting to ASSURED */
693 nf_conntrack_get(&ct->ct_general);
694 nf_ct_set(skb, ct, ctinfo);
695 if (nf_ft->flags & NF_FLOWTABLE_COUNTER)
696 nf_ct_acct_update(ct, dir, skb->len);
701 static int tcf_ct_flow_tables_init(void)
703 return rhashtable_init(&zones_ht, &zones_params);
706 static void tcf_ct_flow_tables_uninit(void)
708 rhashtable_destroy(&zones_ht);
711 static struct tc_action_ops act_ct_ops;
713 struct tc_ct_action_net {
714 struct tc_action_net tn; /* Must be first */
718 /* Determine whether skb->_nfct is equal to the result of conntrack lookup. */
719 static bool tcf_ct_skb_nfct_cached(struct net *net, struct sk_buff *skb,
720 struct tcf_ct_params *p)
722 enum ip_conntrack_info ctinfo;
725 ct = nf_ct_get(skb, &ctinfo);
728 if (!net_eq(net, read_pnet(&ct->ct_net)))
730 if (nf_ct_zone(ct)->id != p->zone)
733 struct nf_conn_help *help;
735 help = nf_ct_ext_find(ct, NF_CT_EXT_HELPER);
736 if (help && rcu_access_pointer(help->helper) != p->helper)
740 /* Force conntrack entry direction. */
741 if ((p->ct_action & TCA_CT_ACT_FORCE) &&
742 CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL) {
743 if (nf_ct_is_confirmed(ct))
753 nf_ct_set(skb, NULL, IP_CT_UNTRACKED);
758 static u8 tcf_ct_skb_nf_family(struct sk_buff *skb)
760 u8 family = NFPROTO_UNSPEC;
762 switch (skb_protocol(skb, true)) {
763 case htons(ETH_P_IP):
764 family = NFPROTO_IPV4;
766 case htons(ETH_P_IPV6):
767 family = NFPROTO_IPV6;
776 static int tcf_ct_ipv4_is_fragment(struct sk_buff *skb, bool *frag)
780 len = skb_network_offset(skb) + sizeof(struct iphdr);
781 if (unlikely(skb->len < len))
783 if (unlikely(!pskb_may_pull(skb, len)))
786 *frag = ip_is_fragment(ip_hdr(skb));
790 static int tcf_ct_ipv6_is_fragment(struct sk_buff *skb, bool *frag)
792 unsigned int flags = 0, len, payload_ofs = 0;
793 unsigned short frag_off;
796 len = skb_network_offset(skb) + sizeof(struct ipv6hdr);
797 if (unlikely(skb->len < len))
799 if (unlikely(!pskb_may_pull(skb, len)))
802 nexthdr = ipv6_find_hdr(skb, &payload_ofs, -1, &frag_off, &flags);
803 if (unlikely(nexthdr < 0))
806 *frag = flags & IP6_FH_F_FRAG;
810 static int tcf_ct_handle_fragments(struct net *net, struct sk_buff *skb,
811 u8 family, u16 zone, bool *defrag)
813 enum ip_conntrack_info ctinfo;
820 /* Previously seen (loopback)? Ignore. */
821 ct = nf_ct_get(skb, &ctinfo);
822 if ((ct && !nf_ct_is_template(ct)) || ctinfo == IP_CT_UNTRACKED)
825 if (family == NFPROTO_IPV4)
826 err = tcf_ct_ipv4_is_fragment(skb, &frag);
828 err = tcf_ct_ipv6_is_fragment(skb, &frag);
833 err = nf_ct_handle_fragments(net, skb, zone, family, &proto, &mru);
838 tc_skb_cb(skb)->mru = mru;
843 static void tcf_ct_params_free(struct tcf_ct_params *params)
845 if (params->helper) {
846 #if IS_ENABLED(CONFIG_NF_NAT)
847 if (params->ct_action & TCA_CT_ACT_NAT)
848 nf_nat_helper_put(params->helper);
850 nf_conntrack_helper_put(params->helper);
853 tcf_ct_flow_table_put(params->ct_ft);
855 nf_ct_put(params->tmpl);
859 static void tcf_ct_params_free_rcu(struct rcu_head *head)
861 struct tcf_ct_params *params;
863 params = container_of(head, struct tcf_ct_params, rcu);
864 tcf_ct_params_free(params);
867 static void tcf_ct_act_set_mark(struct nf_conn *ct, u32 mark, u32 mask)
869 #if IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)
875 new_mark = mark | (READ_ONCE(ct->mark) & ~(mask));
876 if (READ_ONCE(ct->mark) != new_mark) {
877 WRITE_ONCE(ct->mark, new_mark);
878 if (nf_ct_is_confirmed(ct))
879 nf_conntrack_event_cache(IPCT_MARK, ct);
884 static void tcf_ct_act_set_labels(struct nf_conn *ct,
888 #if IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS)
889 size_t labels_sz = sizeof_field(struct tcf_ct_params, labels);
891 if (!memchr_inv(labels_m, 0, labels_sz))
894 nf_connlabels_replace(ct, labels, labels_m, 4);
898 static int tcf_ct_act_nat(struct sk_buff *skb,
900 enum ip_conntrack_info ctinfo,
902 struct nf_nat_range2 *range,
905 #if IS_ENABLED(CONFIG_NF_NAT)
908 if (!(ct_action & TCA_CT_ACT_NAT))
910 if (ct_action & TCA_CT_ACT_NAT_SRC)
911 action |= BIT(NF_NAT_MANIP_SRC);
912 if (ct_action & TCA_CT_ACT_NAT_DST)
913 action |= BIT(NF_NAT_MANIP_DST);
915 err = nf_ct_nat(skb, ct, ctinfo, &action, range, commit);
917 if (action & BIT(NF_NAT_MANIP_SRC))
918 tc_skb_cb(skb)->post_ct_snat = 1;
919 if (action & BIT(NF_NAT_MANIP_DST))
920 tc_skb_cb(skb)->post_ct_dnat = 1;
928 TC_INDIRECT_SCOPE int tcf_ct_act(struct sk_buff *skb, const struct tc_action *a,
929 struct tcf_result *res)
931 struct net *net = dev_net(skb->dev);
932 enum ip_conntrack_info ctinfo;
933 struct tcf_ct *c = to_ct(a);
934 struct nf_conn *tmpl = NULL;
935 struct nf_hook_state state;
936 bool cached, commit, clear;
937 int nh_ofs, err, retval;
938 struct tcf_ct_params *p;
939 bool add_helper = false;
940 bool skip_add = false;
945 p = rcu_dereference_bh(c->params);
947 retval = READ_ONCE(c->tcf_action);
948 commit = p->ct_action & TCA_CT_ACT_COMMIT;
949 clear = p->ct_action & TCA_CT_ACT_CLEAR;
952 tcf_lastuse_update(&c->tcf_tm);
953 tcf_action_update_bstats(&c->common, skb);
956 tc_skb_cb(skb)->post_ct = false;
957 ct = nf_ct_get(skb, &ctinfo);
960 nf_ct_set(skb, NULL, IP_CT_UNTRACKED);
966 family = tcf_ct_skb_nf_family(skb);
967 if (family == NFPROTO_UNSPEC)
970 /* The conntrack module expects to be working at L3.
971 * We also try to pull the IPv4/6 header to linear area
973 nh_ofs = skb_network_offset(skb);
974 skb_pull_rcsum(skb, nh_ofs);
975 err = tcf_ct_handle_fragments(net, skb, family, p->zone, &defrag);
976 if (err == -EINPROGRESS) {
977 retval = TC_ACT_STOLEN;
983 err = nf_ct_skb_network_trim(skb, family);
987 /* If we are recirculating packets to match on ct fields and
988 * committing with a separate ct action, then we don't need to
989 * actually run the packet through conntrack twice unless it's for a
992 cached = tcf_ct_skb_nfct_cached(net, skb, p);
994 if (tcf_ct_flow_table_lookup(p, skb, family)) {
999 /* Associate skb with specified zone. */
1001 nf_conntrack_put(skb_nfct(skb));
1002 nf_conntrack_get(&tmpl->ct_general);
1003 nf_ct_set(skb, tmpl, IP_CT_NEW);
1006 state.hook = NF_INET_PRE_ROUTING;
1009 err = nf_conntrack_in(skb, &state);
1010 if (err != NF_ACCEPT)
1015 ct = nf_ct_get(skb, &ctinfo);
1018 nf_ct_deliver_cached_events(ct);
1019 nf_conn_act_ct_ext_fill(skb, ct, ctinfo);
1021 err = tcf_ct_act_nat(skb, ct, ctinfo, p->ct_action, &p->range, commit);
1022 if (err != NF_ACCEPT)
1025 if (!nf_ct_is_confirmed(ct) && commit && p->helper && !nfct_help(ct)) {
1026 err = __nf_ct_try_assign_helper(ct, p->tmpl, GFP_ATOMIC);
1030 if (p->ct_action & TCA_CT_ACT_NAT && !nfct_seqadj(ct)) {
1031 if (!nfct_seqadj_ext_add(ct))
1036 if (nf_ct_is_confirmed(ct) ? ((!cached && !skip_add) || add_helper) : commit) {
1037 if (nf_ct_helper(skb, ct, ctinfo, family) != NF_ACCEPT)
1042 tcf_ct_act_set_mark(ct, p->mark, p->mark_mask);
1043 tcf_ct_act_set_labels(ct, p->labels, p->labels_mask);
1045 if (!nf_ct_is_confirmed(ct))
1046 nf_conn_act_ct_ext_add(skb, ct, ctinfo);
1048 /* This will take care of sending queued events
1049 * even if the connection is already confirmed.
1051 if (nf_conntrack_confirm(skb) != NF_ACCEPT)
1056 tcf_ct_flow_table_process_conn(p->ct_ft, ct, ctinfo);
1059 skb_push_rcsum(skb, nh_ofs);
1061 tc_skb_cb(skb)->post_ct = true;
1062 tc_skb_cb(skb)->zone = p->zone;
1065 qdisc_skb_cb(skb)->pkt_len = skb->len;
1069 tcf_action_inc_drop_qstats(&c->common);
1073 static const struct nla_policy ct_policy[TCA_CT_MAX + 1] = {
1074 [TCA_CT_ACTION] = { .type = NLA_U16 },
1075 [TCA_CT_PARMS] = NLA_POLICY_EXACT_LEN(sizeof(struct tc_ct)),
1076 [TCA_CT_ZONE] = { .type = NLA_U16 },
1077 [TCA_CT_MARK] = { .type = NLA_U32 },
1078 [TCA_CT_MARK_MASK] = { .type = NLA_U32 },
1079 [TCA_CT_LABELS] = { .type = NLA_BINARY,
1080 .len = 128 / BITS_PER_BYTE },
1081 [TCA_CT_LABELS_MASK] = { .type = NLA_BINARY,
1082 .len = 128 / BITS_PER_BYTE },
1083 [TCA_CT_NAT_IPV4_MIN] = { .type = NLA_U32 },
1084 [TCA_CT_NAT_IPV4_MAX] = { .type = NLA_U32 },
1085 [TCA_CT_NAT_IPV6_MIN] = NLA_POLICY_EXACT_LEN(sizeof(struct in6_addr)),
1086 [TCA_CT_NAT_IPV6_MAX] = NLA_POLICY_EXACT_LEN(sizeof(struct in6_addr)),
1087 [TCA_CT_NAT_PORT_MIN] = { .type = NLA_U16 },
1088 [TCA_CT_NAT_PORT_MAX] = { .type = NLA_U16 },
1089 [TCA_CT_HELPER_NAME] = { .type = NLA_STRING, .len = NF_CT_HELPER_NAME_LEN },
1090 [TCA_CT_HELPER_FAMILY] = { .type = NLA_U8 },
1091 [TCA_CT_HELPER_PROTO] = { .type = NLA_U8 },
1094 static int tcf_ct_fill_params_nat(struct tcf_ct_params *p,
1097 struct netlink_ext_ack *extack)
1099 struct nf_nat_range2 *range;
1101 if (!(p->ct_action & TCA_CT_ACT_NAT))
1104 if (!IS_ENABLED(CONFIG_NF_NAT)) {
1105 NL_SET_ERR_MSG_MOD(extack, "Netfilter nat isn't enabled in kernel");
1109 if (!(p->ct_action & (TCA_CT_ACT_NAT_SRC | TCA_CT_ACT_NAT_DST)))
1112 if ((p->ct_action & TCA_CT_ACT_NAT_SRC) &&
1113 (p->ct_action & TCA_CT_ACT_NAT_DST)) {
1114 NL_SET_ERR_MSG_MOD(extack, "dnat and snat can't be enabled at the same time");
1119 if (tb[TCA_CT_NAT_IPV4_MIN]) {
1120 struct nlattr *max_attr = tb[TCA_CT_NAT_IPV4_MAX];
1122 p->ipv4_range = true;
1123 range->flags |= NF_NAT_RANGE_MAP_IPS;
1124 range->min_addr.ip =
1125 nla_get_in_addr(tb[TCA_CT_NAT_IPV4_MIN]);
1127 range->max_addr.ip = max_attr ?
1128 nla_get_in_addr(max_attr) :
1130 } else if (tb[TCA_CT_NAT_IPV6_MIN]) {
1131 struct nlattr *max_attr = tb[TCA_CT_NAT_IPV6_MAX];
1133 p->ipv4_range = false;
1134 range->flags |= NF_NAT_RANGE_MAP_IPS;
1135 range->min_addr.in6 =
1136 nla_get_in6_addr(tb[TCA_CT_NAT_IPV6_MIN]);
1138 range->max_addr.in6 = max_attr ?
1139 nla_get_in6_addr(max_attr) :
1140 range->min_addr.in6;
1143 if (tb[TCA_CT_NAT_PORT_MIN]) {
1144 range->flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
1145 range->min_proto.all = nla_get_be16(tb[TCA_CT_NAT_PORT_MIN]);
1147 range->max_proto.all = tb[TCA_CT_NAT_PORT_MAX] ?
1148 nla_get_be16(tb[TCA_CT_NAT_PORT_MAX]) :
1149 range->min_proto.all;
1155 static void tcf_ct_set_key_val(struct nlattr **tb,
1156 void *val, int val_type,
1157 void *mask, int mask_type,
1162 nla_memcpy(val, tb[val_type], len);
1167 if (mask_type == TCA_CT_UNSPEC || !tb[mask_type])
1168 memset(mask, 0xff, len);
1170 nla_memcpy(mask, tb[mask_type], len);
1173 static int tcf_ct_fill_params(struct net *net,
1174 struct tcf_ct_params *p,
1177 struct netlink_ext_ack *extack)
1179 struct tc_ct_action_net *tn = net_generic(net, act_ct_ops.net_id);
1180 struct nf_conntrack_zone zone;
1181 int err, family, proto, len;
1182 struct nf_conn *tmpl;
1185 p->zone = NF_CT_DEFAULT_ZONE_ID;
1187 tcf_ct_set_key_val(tb,
1188 &p->ct_action, TCA_CT_ACTION,
1189 NULL, TCA_CT_UNSPEC,
1190 sizeof(p->ct_action));
1192 if (p->ct_action & TCA_CT_ACT_CLEAR)
1195 err = tcf_ct_fill_params_nat(p, parm, tb, extack);
1199 if (tb[TCA_CT_MARK]) {
1200 if (!IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)) {
1201 NL_SET_ERR_MSG_MOD(extack, "Conntrack mark isn't enabled.");
1204 tcf_ct_set_key_val(tb,
1205 &p->mark, TCA_CT_MARK,
1206 &p->mark_mask, TCA_CT_MARK_MASK,
1210 if (tb[TCA_CT_LABELS]) {
1211 if (!IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS)) {
1212 NL_SET_ERR_MSG_MOD(extack, "Conntrack labels isn't enabled.");
1217 NL_SET_ERR_MSG_MOD(extack, "Failed to set connlabel length");
1220 tcf_ct_set_key_val(tb,
1221 p->labels, TCA_CT_LABELS,
1222 p->labels_mask, TCA_CT_LABELS_MASK,
1226 if (tb[TCA_CT_ZONE]) {
1227 if (!IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES)) {
1228 NL_SET_ERR_MSG_MOD(extack, "Conntrack zones isn't enabled.");
1232 tcf_ct_set_key_val(tb,
1233 &p->zone, TCA_CT_ZONE,
1234 NULL, TCA_CT_UNSPEC,
1238 nf_ct_zone_init(&zone, p->zone, NF_CT_DEFAULT_ZONE_DIR, 0);
1239 tmpl = nf_ct_tmpl_alloc(net, &zone, GFP_KERNEL);
1241 NL_SET_ERR_MSG_MOD(extack, "Failed to allocate conntrack template");
1245 if (tb[TCA_CT_HELPER_NAME]) {
1246 name = nla_data(tb[TCA_CT_HELPER_NAME]);
1247 len = nla_len(tb[TCA_CT_HELPER_NAME]);
1248 if (len > 16 || name[len - 1] != '\0') {
1249 NL_SET_ERR_MSG_MOD(extack, "Failed to parse helper name.");
1253 family = tb[TCA_CT_HELPER_FAMILY] ? nla_get_u8(tb[TCA_CT_HELPER_FAMILY]) : AF_INET;
1254 proto = tb[TCA_CT_HELPER_PROTO] ? nla_get_u8(tb[TCA_CT_HELPER_PROTO]) : IPPROTO_TCP;
1255 err = nf_ct_add_helper(tmpl, name, family, proto,
1256 p->ct_action & TCA_CT_ACT_NAT, &p->helper);
1258 NL_SET_ERR_MSG_MOD(extack, "Failed to add helper");
1263 if (p->ct_action & TCA_CT_ACT_COMMIT)
1264 __set_bit(IPS_CONFIRMED_BIT, &tmpl->status);
1272 static int tcf_ct_init(struct net *net, struct nlattr *nla,
1273 struct nlattr *est, struct tc_action **a,
1274 struct tcf_proto *tp, u32 flags,
1275 struct netlink_ext_ack *extack)
1277 struct tc_action_net *tn = net_generic(net, act_ct_ops.net_id);
1278 bool bind = flags & TCA_ACT_FLAGS_BIND;
1279 struct tcf_ct_params *params = NULL;
1280 struct nlattr *tb[TCA_CT_MAX + 1];
1281 struct tcf_chain *goto_ch = NULL;
1288 NL_SET_ERR_MSG_MOD(extack, "Ct requires attributes to be passed");
1292 err = nla_parse_nested(tb, TCA_CT_MAX, nla, ct_policy, extack);
1296 if (!tb[TCA_CT_PARMS]) {
1297 NL_SET_ERR_MSG_MOD(extack, "Missing required ct parameters");
1300 parm = nla_data(tb[TCA_CT_PARMS]);
1301 index = parm->index;
1302 err = tcf_idr_check_alloc(tn, &index, a, bind);
1307 err = tcf_idr_create_from_flags(tn, index, est, a,
1308 &act_ct_ops, bind, flags);
1310 tcf_idr_cleanup(tn, index);
1313 res = ACT_P_CREATED;
1318 if (!(flags & TCA_ACT_FLAGS_REPLACE)) {
1319 tcf_idr_release(*a, bind);
1323 err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
1329 params = kzalloc(sizeof(*params), GFP_KERNEL);
1330 if (unlikely(!params)) {
1335 err = tcf_ct_fill_params(net, params, parm, tb, extack);
1339 err = tcf_ct_flow_table_get(net, params);
1343 spin_lock_bh(&c->tcf_lock);
1344 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
1345 params = rcu_replace_pointer(c->params, params,
1346 lockdep_is_held(&c->tcf_lock));
1347 spin_unlock_bh(&c->tcf_lock);
1350 tcf_chain_put_by_act(goto_ch);
1352 call_rcu(¶ms->rcu, tcf_ct_params_free_rcu);
1358 tcf_chain_put_by_act(goto_ch);
1360 tcf_ct_params_free(params);
1361 tcf_idr_release(*a, bind);
1365 static void tcf_ct_cleanup(struct tc_action *a)
1367 struct tcf_ct_params *params;
1368 struct tcf_ct *c = to_ct(a);
1370 params = rcu_dereference_protected(c->params, 1);
1372 call_rcu(¶ms->rcu, tcf_ct_params_free_rcu);
1375 static int tcf_ct_dump_key_val(struct sk_buff *skb,
1376 void *val, int val_type,
1377 void *mask, int mask_type,
1382 if (mask && !memchr_inv(mask, 0, len))
1385 err = nla_put(skb, val_type, len, val);
1389 if (mask_type != TCA_CT_UNSPEC) {
1390 err = nla_put(skb, mask_type, len, mask);
1398 static int tcf_ct_dump_nat(struct sk_buff *skb, struct tcf_ct_params *p)
1400 struct nf_nat_range2 *range = &p->range;
1402 if (!(p->ct_action & TCA_CT_ACT_NAT))
1405 if (!(p->ct_action & (TCA_CT_ACT_NAT_SRC | TCA_CT_ACT_NAT_DST)))
1408 if (range->flags & NF_NAT_RANGE_MAP_IPS) {
1409 if (p->ipv4_range) {
1410 if (nla_put_in_addr(skb, TCA_CT_NAT_IPV4_MIN,
1411 range->min_addr.ip))
1413 if (nla_put_in_addr(skb, TCA_CT_NAT_IPV4_MAX,
1414 range->max_addr.ip))
1417 if (nla_put_in6_addr(skb, TCA_CT_NAT_IPV6_MIN,
1418 &range->min_addr.in6))
1420 if (nla_put_in6_addr(skb, TCA_CT_NAT_IPV6_MAX,
1421 &range->max_addr.in6))
1426 if (range->flags & NF_NAT_RANGE_PROTO_SPECIFIED) {
1427 if (nla_put_be16(skb, TCA_CT_NAT_PORT_MIN,
1428 range->min_proto.all))
1430 if (nla_put_be16(skb, TCA_CT_NAT_PORT_MAX,
1431 range->max_proto.all))
1438 static int tcf_ct_dump_helper(struct sk_buff *skb, struct nf_conntrack_helper *helper)
1443 if (nla_put_string(skb, TCA_CT_HELPER_NAME, helper->name) ||
1444 nla_put_u8(skb, TCA_CT_HELPER_FAMILY, helper->tuple.src.l3num) ||
1445 nla_put_u8(skb, TCA_CT_HELPER_PROTO, helper->tuple.dst.protonum))
1451 static inline int tcf_ct_dump(struct sk_buff *skb, struct tc_action *a,
1454 unsigned char *b = skb_tail_pointer(skb);
1455 struct tcf_ct *c = to_ct(a);
1456 struct tcf_ct_params *p;
1458 struct tc_ct opt = {
1459 .index = c->tcf_index,
1460 .refcnt = refcount_read(&c->tcf_refcnt) - ref,
1461 .bindcnt = atomic_read(&c->tcf_bindcnt) - bind,
1465 spin_lock_bh(&c->tcf_lock);
1466 p = rcu_dereference_protected(c->params,
1467 lockdep_is_held(&c->tcf_lock));
1468 opt.action = c->tcf_action;
1470 if (tcf_ct_dump_key_val(skb,
1471 &p->ct_action, TCA_CT_ACTION,
1472 NULL, TCA_CT_UNSPEC,
1473 sizeof(p->ct_action)))
1474 goto nla_put_failure;
1476 if (p->ct_action & TCA_CT_ACT_CLEAR)
1479 if (IS_ENABLED(CONFIG_NF_CONNTRACK_MARK) &&
1480 tcf_ct_dump_key_val(skb,
1481 &p->mark, TCA_CT_MARK,
1482 &p->mark_mask, TCA_CT_MARK_MASK,
1484 goto nla_put_failure;
1486 if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS) &&
1487 tcf_ct_dump_key_val(skb,
1488 p->labels, TCA_CT_LABELS,
1489 p->labels_mask, TCA_CT_LABELS_MASK,
1491 goto nla_put_failure;
1493 if (IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES) &&
1494 tcf_ct_dump_key_val(skb,
1495 &p->zone, TCA_CT_ZONE,
1496 NULL, TCA_CT_UNSPEC,
1498 goto nla_put_failure;
1500 if (tcf_ct_dump_nat(skb, p))
1501 goto nla_put_failure;
1503 if (tcf_ct_dump_helper(skb, p->helper))
1504 goto nla_put_failure;
1507 if (nla_put(skb, TCA_CT_PARMS, sizeof(opt), &opt))
1508 goto nla_put_failure;
1510 tcf_tm_dump(&t, &c->tcf_tm);
1511 if (nla_put_64bit(skb, TCA_CT_TM, sizeof(t), &t, TCA_CT_PAD))
1512 goto nla_put_failure;
1513 spin_unlock_bh(&c->tcf_lock);
1517 spin_unlock_bh(&c->tcf_lock);
1522 static void tcf_stats_update(struct tc_action *a, u64 bytes, u64 packets,
1523 u64 drops, u64 lastuse, bool hw)
1525 struct tcf_ct *c = to_ct(a);
1527 tcf_action_update_stats(a, bytes, packets, drops, hw);
1528 c->tcf_tm.lastuse = max_t(u64, c->tcf_tm.lastuse, lastuse);
1531 static int tcf_ct_offload_act_setup(struct tc_action *act, void *entry_data,
1532 u32 *index_inc, bool bind,
1533 struct netlink_ext_ack *extack)
1536 struct flow_action_entry *entry = entry_data;
1538 if (tcf_ct_helper(act))
1541 entry->id = FLOW_ACTION_CT;
1542 entry->ct.action = tcf_ct_action(act);
1543 entry->ct.zone = tcf_ct_zone(act);
1544 entry->ct.flow_table = tcf_ct_ft(act);
1547 struct flow_offload_action *fl_action = entry_data;
1549 fl_action->id = FLOW_ACTION_CT;
1555 static struct tc_action_ops act_ct_ops = {
1558 .owner = THIS_MODULE,
1560 .dump = tcf_ct_dump,
1561 .init = tcf_ct_init,
1562 .cleanup = tcf_ct_cleanup,
1563 .stats_update = tcf_stats_update,
1564 .offload_act_setup = tcf_ct_offload_act_setup,
1565 .size = sizeof(struct tcf_ct),
1568 static __net_init int ct_init_net(struct net *net)
1570 unsigned int n_bits = sizeof_field(struct tcf_ct_params, labels) * 8;
1571 struct tc_ct_action_net *tn = net_generic(net, act_ct_ops.net_id);
1573 if (nf_connlabels_get(net, n_bits - 1)) {
1575 pr_err("act_ct: Failed to set connlabels length");
1580 return tc_action_net_init(net, &tn->tn, &act_ct_ops);
1583 static void __net_exit ct_exit_net(struct list_head *net_list)
1588 list_for_each_entry(net, net_list, exit_list) {
1589 struct tc_ct_action_net *tn = net_generic(net, act_ct_ops.net_id);
1592 nf_connlabels_put(net);
1596 tc_action_net_exit(net_list, act_ct_ops.net_id);
1599 static struct pernet_operations ct_net_ops = {
1600 .init = ct_init_net,
1601 .exit_batch = ct_exit_net,
1602 .id = &act_ct_ops.net_id,
1603 .size = sizeof(struct tc_ct_action_net),
1606 static int __init ct_init_module(void)
1610 act_ct_wq = alloc_ordered_workqueue("act_ct_workqueue", 0);
1614 err = tcf_ct_flow_tables_init();
1618 err = tcf_register_action(&act_ct_ops, &ct_net_ops);
1622 static_branch_inc(&tcf_frag_xmit_count);
1627 tcf_ct_flow_tables_uninit();
1629 destroy_workqueue(act_ct_wq);
1633 static void __exit ct_cleanup_module(void)
1635 static_branch_dec(&tcf_frag_xmit_count);
1636 tcf_unregister_action(&act_ct_ops, &ct_net_ops);
1637 tcf_ct_flow_tables_uninit();
1638 destroy_workqueue(act_ct_wq);
1641 module_init(ct_init_module);
1642 module_exit(ct_cleanup_module);
1643 MODULE_AUTHOR("Paul Blakey <paulb@mellanox.com>");
1644 MODULE_AUTHOR("Yossi Kuperman <yossiku@mellanox.com>");
1645 MODULE_AUTHOR("Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>");
1646 MODULE_DESCRIPTION("Connection tracking action");
1647 MODULE_LICENSE("GPL v2");