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>
28 #include <net/netfilter/nf_flow_table.h>
29 #include <net/netfilter/nf_conntrack.h>
30 #include <net/netfilter/nf_conntrack_core.h>
31 #include <net/netfilter/nf_conntrack_zones.h>
32 #include <net/netfilter/nf_conntrack_helper.h>
33 #include <net/netfilter/nf_conntrack_acct.h>
34 #include <net/netfilter/ipv6/nf_defrag_ipv6.h>
35 #include <net/netfilter/nf_conntrack_act_ct.h>
36 #include <uapi/linux/netfilter/nf_nat.h>
38 static struct workqueue_struct *act_ct_wq;
39 static struct rhashtable zones_ht;
40 static DEFINE_MUTEX(zones_mutex);
42 struct tcf_ct_flow_table {
43 struct rhash_head node; /* In zones tables */
45 struct rcu_work rwork;
46 struct nf_flowtable nf_ft;
53 static const struct rhashtable_params zones_params = {
54 .head_offset = offsetof(struct tcf_ct_flow_table, node),
55 .key_offset = offsetof(struct tcf_ct_flow_table, zone),
56 .key_len = sizeof_field(struct tcf_ct_flow_table, zone),
57 .automatic_shrinking = true,
60 static struct flow_action_entry *
61 tcf_ct_flow_table_flow_action_get_next(struct flow_action *flow_action)
63 int i = flow_action->num_entries++;
65 return &flow_action->entries[i];
68 static void tcf_ct_add_mangle_action(struct flow_action *action,
69 enum flow_action_mangle_base htype,
74 struct flow_action_entry *entry;
76 entry = tcf_ct_flow_table_flow_action_get_next(action);
77 entry->id = FLOW_ACTION_MANGLE;
78 entry->mangle.htype = htype;
79 entry->mangle.mask = ~mask;
80 entry->mangle.offset = offset;
81 entry->mangle.val = val;
84 /* The following nat helper functions check if the inverted reverse tuple
85 * (target) is different then the current dir tuple - meaning nat for ports
86 * and/or ip is needed, and add the relevant mangle actions.
89 tcf_ct_flow_table_add_action_nat_ipv4(const struct nf_conntrack_tuple *tuple,
90 struct nf_conntrack_tuple target,
91 struct flow_action *action)
93 if (memcmp(&target.src.u3, &tuple->src.u3, sizeof(target.src.u3)))
94 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_IP4,
95 offsetof(struct iphdr, saddr),
97 be32_to_cpu(target.src.u3.ip));
98 if (memcmp(&target.dst.u3, &tuple->dst.u3, sizeof(target.dst.u3)))
99 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_IP4,
100 offsetof(struct iphdr, daddr),
102 be32_to_cpu(target.dst.u3.ip));
106 tcf_ct_add_ipv6_addr_mangle_action(struct flow_action *action,
107 union nf_inet_addr *addr,
112 for (i = 0; i < sizeof(struct in6_addr) / sizeof(u32); i++)
113 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_IP6,
114 i * sizeof(u32) + offset,
115 0xFFFFFFFF, be32_to_cpu(addr->ip6[i]));
119 tcf_ct_flow_table_add_action_nat_ipv6(const struct nf_conntrack_tuple *tuple,
120 struct nf_conntrack_tuple target,
121 struct flow_action *action)
123 if (memcmp(&target.src.u3, &tuple->src.u3, sizeof(target.src.u3)))
124 tcf_ct_add_ipv6_addr_mangle_action(action, &target.src.u3,
125 offsetof(struct ipv6hdr,
127 if (memcmp(&target.dst.u3, &tuple->dst.u3, sizeof(target.dst.u3)))
128 tcf_ct_add_ipv6_addr_mangle_action(action, &target.dst.u3,
129 offsetof(struct ipv6hdr,
134 tcf_ct_flow_table_add_action_nat_tcp(const struct nf_conntrack_tuple *tuple,
135 struct nf_conntrack_tuple target,
136 struct flow_action *action)
138 __be16 target_src = target.src.u.tcp.port;
139 __be16 target_dst = target.dst.u.tcp.port;
141 if (target_src != tuple->src.u.tcp.port)
142 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_TCP,
143 offsetof(struct tcphdr, source),
144 0xFFFF, be16_to_cpu(target_src));
145 if (target_dst != tuple->dst.u.tcp.port)
146 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_TCP,
147 offsetof(struct tcphdr, dest),
148 0xFFFF, be16_to_cpu(target_dst));
152 tcf_ct_flow_table_add_action_nat_udp(const struct nf_conntrack_tuple *tuple,
153 struct nf_conntrack_tuple target,
154 struct flow_action *action)
156 __be16 target_src = target.src.u.udp.port;
157 __be16 target_dst = target.dst.u.udp.port;
159 if (target_src != tuple->src.u.udp.port)
160 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_UDP,
161 offsetof(struct udphdr, source),
162 0xFFFF, be16_to_cpu(target_src));
163 if (target_dst != tuple->dst.u.udp.port)
164 tcf_ct_add_mangle_action(action, FLOW_ACT_MANGLE_HDR_TYPE_UDP,
165 offsetof(struct udphdr, dest),
166 0xFFFF, be16_to_cpu(target_dst));
169 static void tcf_ct_flow_table_add_action_meta(struct nf_conn *ct,
170 enum ip_conntrack_dir dir,
171 struct flow_action *action)
173 struct nf_conn_labels *ct_labels;
174 struct flow_action_entry *entry;
175 enum ip_conntrack_info ctinfo;
178 entry = tcf_ct_flow_table_flow_action_get_next(action);
179 entry->id = FLOW_ACTION_CT_METADATA;
180 #if IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)
181 entry->ct_metadata.mark = ct->mark;
183 ctinfo = dir == IP_CT_DIR_ORIGINAL ? IP_CT_ESTABLISHED :
184 IP_CT_ESTABLISHED_REPLY;
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 const 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_dir dir;
249 case FLOW_OFFLOAD_DIR_ORIGINAL:
250 dir = IP_CT_DIR_ORIGINAL;
252 case FLOW_OFFLOAD_DIR_REPLY:
253 dir = IP_CT_DIR_REPLY;
259 err = tcf_ct_flow_table_add_action_nat(net, ct, dir, action);
263 tcf_ct_flow_table_add_action_meta(ct, dir, action);
267 /* Clear filled actions */
268 for (i = num_entries; i < action->num_entries; i++)
269 memset(&action->entries[i], 0, sizeof(action->entries[i]));
270 action->num_entries = num_entries;
275 static struct nf_flowtable_type flowtable_ct = {
276 .action = tcf_ct_flow_table_fill_actions,
277 .owner = THIS_MODULE,
280 static int tcf_ct_flow_table_get(struct net *net, struct tcf_ct_params *params)
282 struct tcf_ct_flow_table *ct_ft;
285 mutex_lock(&zones_mutex);
286 ct_ft = rhashtable_lookup_fast(&zones_ht, ¶ms->zone, zones_params);
287 if (ct_ft && refcount_inc_not_zero(&ct_ft->ref))
290 ct_ft = kzalloc(sizeof(*ct_ft), GFP_KERNEL);
293 refcount_set(&ct_ft->ref, 1);
295 ct_ft->zone = params->zone;
296 err = rhashtable_insert_fast(&zones_ht, &ct_ft->node, zones_params);
300 ct_ft->nf_ft.type = &flowtable_ct;
301 ct_ft->nf_ft.flags |= NF_FLOWTABLE_HW_OFFLOAD |
302 NF_FLOWTABLE_COUNTER;
303 err = nf_flow_table_init(&ct_ft->nf_ft);
306 write_pnet(&ct_ft->nf_ft.net, net);
308 __module_get(THIS_MODULE);
310 params->ct_ft = ct_ft;
311 params->nf_ft = &ct_ft->nf_ft;
312 mutex_unlock(&zones_mutex);
317 rhashtable_remove_fast(&zones_ht, &ct_ft->node, zones_params);
321 mutex_unlock(&zones_mutex);
325 static void tcf_ct_flow_table_cleanup_work(struct work_struct *work)
327 struct flow_block_cb *block_cb, *tmp_cb;
328 struct tcf_ct_flow_table *ct_ft;
329 struct flow_block *block;
331 ct_ft = container_of(to_rcu_work(work), struct tcf_ct_flow_table,
333 nf_flow_table_free(&ct_ft->nf_ft);
335 /* Remove any remaining callbacks before cleanup */
336 block = &ct_ft->nf_ft.flow_block;
337 down_write(&ct_ft->nf_ft.flow_block_lock);
338 list_for_each_entry_safe(block_cb, tmp_cb, &block->cb_list, list) {
339 list_del(&block_cb->list);
340 flow_block_cb_free(block_cb);
342 up_write(&ct_ft->nf_ft.flow_block_lock);
345 module_put(THIS_MODULE);
348 static void tcf_ct_flow_table_put(struct tcf_ct_params *params)
350 struct tcf_ct_flow_table *ct_ft = params->ct_ft;
352 if (refcount_dec_and_test(¶ms->ct_ft->ref)) {
353 rhashtable_remove_fast(&zones_ht, &ct_ft->node, zones_params);
354 INIT_RCU_WORK(&ct_ft->rwork, tcf_ct_flow_table_cleanup_work);
355 queue_rcu_work(act_ct_wq, &ct_ft->rwork);
359 static void tcf_ct_flow_tc_ifidx(struct flow_offload *entry,
360 struct nf_conn_act_ct_ext *act_ct_ext, u8 dir)
362 entry->tuplehash[dir].tuple.xmit_type = FLOW_OFFLOAD_XMIT_TC;
363 entry->tuplehash[dir].tuple.tc.iifidx = act_ct_ext->ifindex[dir];
366 static void tcf_ct_flow_table_add(struct tcf_ct_flow_table *ct_ft,
370 struct nf_conn_act_ct_ext *act_ct_ext;
371 struct flow_offload *entry;
374 if (test_and_set_bit(IPS_OFFLOAD_BIT, &ct->status))
377 entry = flow_offload_alloc(ct);
384 ct->proto.tcp.seen[0].flags |= IP_CT_TCP_FLAG_BE_LIBERAL;
385 ct->proto.tcp.seen[1].flags |= IP_CT_TCP_FLAG_BE_LIBERAL;
388 act_ct_ext = nf_conn_act_ct_ext_find(ct);
390 tcf_ct_flow_tc_ifidx(entry, act_ct_ext, FLOW_OFFLOAD_DIR_ORIGINAL);
391 tcf_ct_flow_tc_ifidx(entry, act_ct_ext, FLOW_OFFLOAD_DIR_REPLY);
394 err = flow_offload_add(&ct_ft->nf_ft, entry);
401 flow_offload_free(entry);
403 clear_bit(IPS_OFFLOAD_BIT, &ct->status);
406 static void tcf_ct_flow_table_process_conn(struct tcf_ct_flow_table *ct_ft,
408 enum ip_conntrack_info ctinfo)
412 if ((ctinfo != IP_CT_ESTABLISHED && ctinfo != IP_CT_ESTABLISHED_REPLY) ||
413 !test_bit(IPS_ASSURED_BIT, &ct->status))
416 switch (nf_ct_protonum(ct)) {
419 if (ct->proto.tcp.state != TCP_CONNTRACK_ESTABLISHED)
424 #ifdef CONFIG_NF_CT_PROTO_GRE
426 struct nf_conntrack_tuple *tuple;
428 if (ct->status & IPS_NAT_MASK)
430 tuple = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
431 /* No support for GRE v1 */
432 if (tuple->src.u.gre.key || tuple->dst.u.gre.key)
441 if (nf_ct_ext_exist(ct, NF_CT_EXT_HELPER) ||
442 ct->status & IPS_SEQ_ADJUST)
445 tcf_ct_flow_table_add(ct_ft, ct, tcp);
449 tcf_ct_flow_table_fill_tuple_ipv4(struct sk_buff *skb,
450 struct flow_offload_tuple *tuple,
451 struct tcphdr **tcph)
453 struct flow_ports *ports;
459 if (!pskb_network_may_pull(skb, sizeof(*iph)))
463 thoff = iph->ihl * 4;
465 if (ip_is_fragment(iph) ||
466 unlikely(thoff != sizeof(struct iphdr)))
469 ipproto = iph->protocol;
472 hdrsize = sizeof(struct tcphdr);
475 hdrsize = sizeof(*ports);
477 #ifdef CONFIG_NF_CT_PROTO_GRE
479 hdrsize = sizeof(struct gre_base_hdr);
489 if (!pskb_network_may_pull(skb, thoff + hdrsize))
494 *tcph = (void *)(skb_network_header(skb) + thoff);
497 ports = (struct flow_ports *)(skb_network_header(skb) + thoff);
498 tuple->src_port = ports->source;
499 tuple->dst_port = ports->dest;
502 struct gre_base_hdr *greh;
504 greh = (struct gre_base_hdr *)(skb_network_header(skb) + thoff);
505 if ((greh->flags & GRE_VERSION) != GRE_VERSION_0)
513 tuple->src_v4.s_addr = iph->saddr;
514 tuple->dst_v4.s_addr = iph->daddr;
515 tuple->l3proto = AF_INET;
516 tuple->l4proto = ipproto;
522 tcf_ct_flow_table_fill_tuple_ipv6(struct sk_buff *skb,
523 struct flow_offload_tuple *tuple,
524 struct tcphdr **tcph)
526 struct flow_ports *ports;
527 struct ipv6hdr *ip6h;
532 if (!pskb_network_may_pull(skb, sizeof(*ip6h)))
535 ip6h = ipv6_hdr(skb);
536 thoff = sizeof(*ip6h);
538 nexthdr = ip6h->nexthdr;
541 hdrsize = sizeof(struct tcphdr);
544 hdrsize = sizeof(*ports);
546 #ifdef CONFIG_NF_CT_PROTO_GRE
548 hdrsize = sizeof(struct gre_base_hdr);
555 if (ip6h->hop_limit <= 1)
558 if (!pskb_network_may_pull(skb, thoff + hdrsize))
563 *tcph = (void *)(skb_network_header(skb) + thoff);
566 ports = (struct flow_ports *)(skb_network_header(skb) + thoff);
567 tuple->src_port = ports->source;
568 tuple->dst_port = ports->dest;
571 struct gre_base_hdr *greh;
573 greh = (struct gre_base_hdr *)(skb_network_header(skb) + thoff);
574 if ((greh->flags & GRE_VERSION) != GRE_VERSION_0)
580 ip6h = ipv6_hdr(skb);
582 tuple->src_v6 = ip6h->saddr;
583 tuple->dst_v6 = ip6h->daddr;
584 tuple->l3proto = AF_INET6;
585 tuple->l4proto = nexthdr;
590 static bool tcf_ct_flow_table_lookup(struct tcf_ct_params *p,
594 struct nf_flowtable *nf_ft = &p->ct_ft->nf_ft;
595 struct flow_offload_tuple_rhash *tuplehash;
596 struct flow_offload_tuple tuple = {};
597 enum ip_conntrack_info ctinfo;
598 struct tcphdr *tcph = NULL;
599 struct flow_offload *flow;
605 if (!tcf_ct_flow_table_fill_tuple_ipv4(skb, &tuple, &tcph))
609 if (!tcf_ct_flow_table_fill_tuple_ipv6(skb, &tuple, &tcph))
616 tuplehash = flow_offload_lookup(nf_ft, &tuple);
620 dir = tuplehash->tuple.dir;
621 flow = container_of(tuplehash, struct flow_offload, tuplehash[dir]);
624 if (tcph && (unlikely(tcph->fin || tcph->rst))) {
625 flow_offload_teardown(flow);
629 ctinfo = dir == FLOW_OFFLOAD_DIR_ORIGINAL ? IP_CT_ESTABLISHED :
630 IP_CT_ESTABLISHED_REPLY;
632 flow_offload_refresh(nf_ft, flow);
633 nf_conntrack_get(&ct->ct_general);
634 nf_ct_set(skb, ct, ctinfo);
635 if (nf_ft->flags & NF_FLOWTABLE_COUNTER)
636 nf_ct_acct_update(ct, dir, skb->len);
641 static int tcf_ct_flow_tables_init(void)
643 return rhashtable_init(&zones_ht, &zones_params);
646 static void tcf_ct_flow_tables_uninit(void)
648 rhashtable_destroy(&zones_ht);
651 static struct tc_action_ops act_ct_ops;
653 struct tc_ct_action_net {
654 struct tc_action_net tn; /* Must be first */
658 /* Determine whether skb->_nfct is equal to the result of conntrack lookup. */
659 static bool tcf_ct_skb_nfct_cached(struct net *net, struct sk_buff *skb,
660 u16 zone_id, bool force)
662 enum ip_conntrack_info ctinfo;
665 ct = nf_ct_get(skb, &ctinfo);
668 if (!net_eq(net, read_pnet(&ct->ct_net)))
670 if (nf_ct_zone(ct)->id != zone_id)
673 /* Force conntrack entry direction. */
674 if (force && CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL) {
675 if (nf_ct_is_confirmed(ct))
685 nf_ct_set(skb, NULL, IP_CT_UNTRACKED);
690 /* Trim the skb to the length specified by the IP/IPv6 header,
691 * removing any trailing lower-layer padding. This prepares the skb
692 * for higher-layer processing that assumes skb->len excludes padding
693 * (such as nf_ip_checksum). The caller needs to pull the skb to the
694 * network header, and ensure ip_hdr/ipv6_hdr points to valid data.
696 static int tcf_ct_skb_network_trim(struct sk_buff *skb, int family)
702 len = ntohs(ip_hdr(skb)->tot_len);
705 len = sizeof(struct ipv6hdr)
706 + ntohs(ipv6_hdr(skb)->payload_len);
712 return pskb_trim_rcsum(skb, len);
715 static u8 tcf_ct_skb_nf_family(struct sk_buff *skb)
717 u8 family = NFPROTO_UNSPEC;
719 switch (skb_protocol(skb, true)) {
720 case htons(ETH_P_IP):
721 family = NFPROTO_IPV4;
723 case htons(ETH_P_IPV6):
724 family = NFPROTO_IPV6;
733 static int tcf_ct_ipv4_is_fragment(struct sk_buff *skb, bool *frag)
737 len = skb_network_offset(skb) + sizeof(struct iphdr);
738 if (unlikely(skb->len < len))
740 if (unlikely(!pskb_may_pull(skb, len)))
743 *frag = ip_is_fragment(ip_hdr(skb));
747 static int tcf_ct_ipv6_is_fragment(struct sk_buff *skb, bool *frag)
749 unsigned int flags = 0, len, payload_ofs = 0;
750 unsigned short frag_off;
753 len = skb_network_offset(skb) + sizeof(struct ipv6hdr);
754 if (unlikely(skb->len < len))
756 if (unlikely(!pskb_may_pull(skb, len)))
759 nexthdr = ipv6_find_hdr(skb, &payload_ofs, -1, &frag_off, &flags);
760 if (unlikely(nexthdr < 0))
763 *frag = flags & IP6_FH_F_FRAG;
767 static int tcf_ct_handle_fragments(struct net *net, struct sk_buff *skb,
768 u8 family, u16 zone, bool *defrag)
770 enum ip_conntrack_info ctinfo;
776 /* Previously seen (loopback)? Ignore. */
777 ct = nf_ct_get(skb, &ctinfo);
778 if ((ct && !nf_ct_is_template(ct)) || ctinfo == IP_CT_UNTRACKED)
781 if (family == NFPROTO_IPV4)
782 err = tcf_ct_ipv4_is_fragment(skb, &frag);
784 err = tcf_ct_ipv6_is_fragment(skb, &frag);
789 mru = tc_skb_cb(skb)->mru;
791 if (family == NFPROTO_IPV4) {
792 enum ip_defrag_users user = IP_DEFRAG_CONNTRACK_IN + zone;
794 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
796 err = ip_defrag(net, skb, user);
798 if (err && err != -EINPROGRESS)
803 mru = IPCB(skb)->frag_max_size;
805 } else { /* NFPROTO_IPV6 */
806 #if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
807 enum ip6_defrag_users user = IP6_DEFRAG_CONNTRACK_IN + zone;
809 memset(IP6CB(skb), 0, sizeof(struct inet6_skb_parm));
810 err = nf_ct_frag6_gather(net, skb, user);
811 if (err && err != -EINPROGRESS)
816 mru = IP6CB(skb)->frag_max_size;
824 if (err != -EINPROGRESS)
825 tc_skb_cb(skb)->mru = mru;
835 static void tcf_ct_params_free(struct rcu_head *head)
837 struct tcf_ct_params *params = container_of(head,
838 struct tcf_ct_params, rcu);
840 tcf_ct_flow_table_put(params);
843 nf_ct_put(params->tmpl);
847 #if IS_ENABLED(CONFIG_NF_NAT)
848 /* Modelled after nf_nat_ipv[46]_fn().
849 * range is only used for new, uninitialized NAT state.
850 * Returns either NF_ACCEPT or NF_DROP.
852 static int ct_nat_execute(struct sk_buff *skb, struct nf_conn *ct,
853 enum ip_conntrack_info ctinfo,
854 const struct nf_nat_range2 *range,
855 enum nf_nat_manip_type maniptype)
857 __be16 proto = skb_protocol(skb, true);
858 int hooknum, err = NF_ACCEPT;
860 /* See HOOK2MANIP(). */
861 if (maniptype == NF_NAT_MANIP_SRC)
862 hooknum = NF_INET_LOCAL_IN; /* Source NAT */
864 hooknum = NF_INET_LOCAL_OUT; /* Destination NAT */
868 case IP_CT_RELATED_REPLY:
869 if (proto == htons(ETH_P_IP) &&
870 ip_hdr(skb)->protocol == IPPROTO_ICMP) {
871 if (!nf_nat_icmp_reply_translation(skb, ct, ctinfo,
875 } else if (IS_ENABLED(CONFIG_IPV6) && proto == htons(ETH_P_IPV6)) {
877 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
878 int hdrlen = ipv6_skip_exthdr(skb,
879 sizeof(struct ipv6hdr),
880 &nexthdr, &frag_off);
882 if (hdrlen >= 0 && nexthdr == IPPROTO_ICMPV6) {
883 if (!nf_nat_icmpv6_reply_translation(skb, ct,
891 /* Non-ICMP, fall thru to initialize if needed. */
894 /* Seen it before? This can happen for loopback, retrans,
897 if (!nf_nat_initialized(ct, maniptype)) {
898 /* Initialize according to the NAT action. */
899 err = (range && range->flags & NF_NAT_RANGE_MAP_IPS)
900 /* Action is set up to establish a new
903 ? nf_nat_setup_info(ct, range, maniptype)
904 : nf_nat_alloc_null_binding(ct, hooknum);
905 if (err != NF_ACCEPT)
910 case IP_CT_ESTABLISHED:
911 case IP_CT_ESTABLISHED_REPLY:
919 err = nf_nat_packet(ct, ctinfo, hooknum, skb);
920 if (err == NF_ACCEPT) {
921 if (maniptype == NF_NAT_MANIP_SRC)
922 tc_skb_cb(skb)->post_ct_snat = 1;
923 if (maniptype == NF_NAT_MANIP_DST)
924 tc_skb_cb(skb)->post_ct_dnat = 1;
929 #endif /* CONFIG_NF_NAT */
931 static void tcf_ct_act_set_mark(struct nf_conn *ct, u32 mark, u32 mask)
933 #if IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)
939 new_mark = mark | (ct->mark & ~(mask));
940 if (ct->mark != new_mark) {
942 if (nf_ct_is_confirmed(ct))
943 nf_conntrack_event_cache(IPCT_MARK, ct);
948 static void tcf_ct_act_set_labels(struct nf_conn *ct,
952 #if IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS)
953 size_t labels_sz = sizeof_field(struct tcf_ct_params, labels);
955 if (!memchr_inv(labels_m, 0, labels_sz))
958 nf_connlabels_replace(ct, labels, labels_m, 4);
962 static int tcf_ct_act_nat(struct sk_buff *skb,
964 enum ip_conntrack_info ctinfo,
966 struct nf_nat_range2 *range,
969 #if IS_ENABLED(CONFIG_NF_NAT)
971 enum nf_nat_manip_type maniptype;
973 if (!(ct_action & TCA_CT_ACT_NAT))
976 /* Add NAT extension if not confirmed yet. */
977 if (!nf_ct_is_confirmed(ct) && !nf_ct_nat_ext_add(ct))
978 return NF_DROP; /* Can't NAT. */
980 if (ctinfo != IP_CT_NEW && (ct->status & IPS_NAT_MASK) &&
981 (ctinfo != IP_CT_RELATED || commit)) {
982 /* NAT an established or related connection like before. */
983 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_REPLY)
984 /* This is the REPLY direction for a connection
985 * for which NAT was applied in the forward
986 * direction. Do the reverse NAT.
988 maniptype = ct->status & IPS_SRC_NAT
989 ? NF_NAT_MANIP_DST : NF_NAT_MANIP_SRC;
991 maniptype = ct->status & IPS_SRC_NAT
992 ? NF_NAT_MANIP_SRC : NF_NAT_MANIP_DST;
993 } else if (ct_action & TCA_CT_ACT_NAT_SRC) {
994 maniptype = NF_NAT_MANIP_SRC;
995 } else if (ct_action & TCA_CT_ACT_NAT_DST) {
996 maniptype = NF_NAT_MANIP_DST;
1001 err = ct_nat_execute(skb, ct, ctinfo, range, maniptype);
1002 if (err == NF_ACCEPT && ct->status & IPS_DST_NAT) {
1003 if (ct->status & IPS_SRC_NAT) {
1004 if (maniptype == NF_NAT_MANIP_SRC)
1005 maniptype = NF_NAT_MANIP_DST;
1007 maniptype = NF_NAT_MANIP_SRC;
1009 err = ct_nat_execute(skb, ct, ctinfo, range,
1011 } else if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL) {
1012 err = ct_nat_execute(skb, ct, ctinfo, NULL,
1022 static int tcf_ct_act(struct sk_buff *skb, const struct tc_action *a,
1023 struct tcf_result *res)
1025 struct net *net = dev_net(skb->dev);
1026 bool cached, commit, clear, force;
1027 enum ip_conntrack_info ctinfo;
1028 struct tcf_ct *c = to_ct(a);
1029 struct nf_conn *tmpl = NULL;
1030 struct nf_hook_state state;
1031 int nh_ofs, err, retval;
1032 struct tcf_ct_params *p;
1033 bool skip_add = false;
1034 bool defrag = false;
1038 p = rcu_dereference_bh(c->params);
1040 retval = READ_ONCE(c->tcf_action);
1041 commit = p->ct_action & TCA_CT_ACT_COMMIT;
1042 clear = p->ct_action & TCA_CT_ACT_CLEAR;
1043 force = p->ct_action & TCA_CT_ACT_FORCE;
1046 tcf_lastuse_update(&c->tcf_tm);
1047 tcf_action_update_bstats(&c->common, skb);
1050 tc_skb_cb(skb)->post_ct = false;
1051 ct = nf_ct_get(skb, &ctinfo);
1054 nf_ct_set(skb, NULL, IP_CT_UNTRACKED);
1060 family = tcf_ct_skb_nf_family(skb);
1061 if (family == NFPROTO_UNSPEC)
1064 /* The conntrack module expects to be working at L3.
1065 * We also try to pull the IPv4/6 header to linear area
1067 nh_ofs = skb_network_offset(skb);
1068 skb_pull_rcsum(skb, nh_ofs);
1069 err = tcf_ct_handle_fragments(net, skb, family, p->zone, &defrag);
1070 if (err == -EINPROGRESS) {
1071 retval = TC_ACT_STOLEN;
1077 err = tcf_ct_skb_network_trim(skb, family);
1081 /* If we are recirculating packets to match on ct fields and
1082 * committing with a separate ct action, then we don't need to
1083 * actually run the packet through conntrack twice unless it's for a
1086 cached = tcf_ct_skb_nfct_cached(net, skb, p->zone, force);
1088 if (tcf_ct_flow_table_lookup(p, skb, family)) {
1093 /* Associate skb with specified zone. */
1095 nf_conntrack_put(skb_nfct(skb));
1096 nf_conntrack_get(&tmpl->ct_general);
1097 nf_ct_set(skb, tmpl, IP_CT_NEW);
1100 state.hook = NF_INET_PRE_ROUTING;
1103 err = nf_conntrack_in(skb, &state);
1104 if (err != NF_ACCEPT)
1109 ct = nf_ct_get(skb, &ctinfo);
1112 nf_ct_deliver_cached_events(ct);
1113 nf_conn_act_ct_ext_fill(skb, ct, ctinfo);
1115 err = tcf_ct_act_nat(skb, ct, ctinfo, p->ct_action, &p->range, commit);
1116 if (err != NF_ACCEPT)
1120 tcf_ct_act_set_mark(ct, p->mark, p->mark_mask);
1121 tcf_ct_act_set_labels(ct, p->labels, p->labels_mask);
1123 if (!nf_ct_is_confirmed(ct))
1124 nf_conn_act_ct_ext_add(ct);
1126 /* This will take care of sending queued events
1127 * even if the connection is already confirmed.
1129 if (nf_conntrack_confirm(skb) != NF_ACCEPT)
1134 tcf_ct_flow_table_process_conn(p->ct_ft, ct, ctinfo);
1137 skb_push_rcsum(skb, nh_ofs);
1139 tc_skb_cb(skb)->post_ct = true;
1140 tc_skb_cb(skb)->zone = p->zone;
1143 qdisc_skb_cb(skb)->pkt_len = skb->len;
1147 tcf_action_inc_drop_qstats(&c->common);
1151 static const struct nla_policy ct_policy[TCA_CT_MAX + 1] = {
1152 [TCA_CT_ACTION] = { .type = NLA_U16 },
1153 [TCA_CT_PARMS] = NLA_POLICY_EXACT_LEN(sizeof(struct tc_ct)),
1154 [TCA_CT_ZONE] = { .type = NLA_U16 },
1155 [TCA_CT_MARK] = { .type = NLA_U32 },
1156 [TCA_CT_MARK_MASK] = { .type = NLA_U32 },
1157 [TCA_CT_LABELS] = { .type = NLA_BINARY,
1158 .len = 128 / BITS_PER_BYTE },
1159 [TCA_CT_LABELS_MASK] = { .type = NLA_BINARY,
1160 .len = 128 / BITS_PER_BYTE },
1161 [TCA_CT_NAT_IPV4_MIN] = { .type = NLA_U32 },
1162 [TCA_CT_NAT_IPV4_MAX] = { .type = NLA_U32 },
1163 [TCA_CT_NAT_IPV6_MIN] = NLA_POLICY_EXACT_LEN(sizeof(struct in6_addr)),
1164 [TCA_CT_NAT_IPV6_MAX] = NLA_POLICY_EXACT_LEN(sizeof(struct in6_addr)),
1165 [TCA_CT_NAT_PORT_MIN] = { .type = NLA_U16 },
1166 [TCA_CT_NAT_PORT_MAX] = { .type = NLA_U16 },
1169 static int tcf_ct_fill_params_nat(struct tcf_ct_params *p,
1172 struct netlink_ext_ack *extack)
1174 struct nf_nat_range2 *range;
1176 if (!(p->ct_action & TCA_CT_ACT_NAT))
1179 if (!IS_ENABLED(CONFIG_NF_NAT)) {
1180 NL_SET_ERR_MSG_MOD(extack, "Netfilter nat isn't enabled in kernel");
1184 if (!(p->ct_action & (TCA_CT_ACT_NAT_SRC | TCA_CT_ACT_NAT_DST)))
1187 if ((p->ct_action & TCA_CT_ACT_NAT_SRC) &&
1188 (p->ct_action & TCA_CT_ACT_NAT_DST)) {
1189 NL_SET_ERR_MSG_MOD(extack, "dnat and snat can't be enabled at the same time");
1194 if (tb[TCA_CT_NAT_IPV4_MIN]) {
1195 struct nlattr *max_attr = tb[TCA_CT_NAT_IPV4_MAX];
1197 p->ipv4_range = true;
1198 range->flags |= NF_NAT_RANGE_MAP_IPS;
1199 range->min_addr.ip =
1200 nla_get_in_addr(tb[TCA_CT_NAT_IPV4_MIN]);
1202 range->max_addr.ip = max_attr ?
1203 nla_get_in_addr(max_attr) :
1205 } else if (tb[TCA_CT_NAT_IPV6_MIN]) {
1206 struct nlattr *max_attr = tb[TCA_CT_NAT_IPV6_MAX];
1208 p->ipv4_range = false;
1209 range->flags |= NF_NAT_RANGE_MAP_IPS;
1210 range->min_addr.in6 =
1211 nla_get_in6_addr(tb[TCA_CT_NAT_IPV6_MIN]);
1213 range->max_addr.in6 = max_attr ?
1214 nla_get_in6_addr(max_attr) :
1215 range->min_addr.in6;
1218 if (tb[TCA_CT_NAT_PORT_MIN]) {
1219 range->flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
1220 range->min_proto.all = nla_get_be16(tb[TCA_CT_NAT_PORT_MIN]);
1222 range->max_proto.all = tb[TCA_CT_NAT_PORT_MAX] ?
1223 nla_get_be16(tb[TCA_CT_NAT_PORT_MAX]) :
1224 range->min_proto.all;
1230 static void tcf_ct_set_key_val(struct nlattr **tb,
1231 void *val, int val_type,
1232 void *mask, int mask_type,
1237 nla_memcpy(val, tb[val_type], len);
1242 if (mask_type == TCA_CT_UNSPEC || !tb[mask_type])
1243 memset(mask, 0xff, len);
1245 nla_memcpy(mask, tb[mask_type], len);
1248 static int tcf_ct_fill_params(struct net *net,
1249 struct tcf_ct_params *p,
1252 struct netlink_ext_ack *extack)
1254 struct tc_ct_action_net *tn = net_generic(net, act_ct_ops.net_id);
1255 struct nf_conntrack_zone zone;
1256 struct nf_conn *tmpl;
1259 p->zone = NF_CT_DEFAULT_ZONE_ID;
1261 tcf_ct_set_key_val(tb,
1262 &p->ct_action, TCA_CT_ACTION,
1263 NULL, TCA_CT_UNSPEC,
1264 sizeof(p->ct_action));
1266 if (p->ct_action & TCA_CT_ACT_CLEAR)
1269 err = tcf_ct_fill_params_nat(p, parm, tb, extack);
1273 if (tb[TCA_CT_MARK]) {
1274 if (!IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)) {
1275 NL_SET_ERR_MSG_MOD(extack, "Conntrack mark isn't enabled.");
1278 tcf_ct_set_key_val(tb,
1279 &p->mark, TCA_CT_MARK,
1280 &p->mark_mask, TCA_CT_MARK_MASK,
1284 if (tb[TCA_CT_LABELS]) {
1285 if (!IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS)) {
1286 NL_SET_ERR_MSG_MOD(extack, "Conntrack labels isn't enabled.");
1291 NL_SET_ERR_MSG_MOD(extack, "Failed to set connlabel length");
1294 tcf_ct_set_key_val(tb,
1295 p->labels, TCA_CT_LABELS,
1296 p->labels_mask, TCA_CT_LABELS_MASK,
1300 if (tb[TCA_CT_ZONE]) {
1301 if (!IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES)) {
1302 NL_SET_ERR_MSG_MOD(extack, "Conntrack zones isn't enabled.");
1306 tcf_ct_set_key_val(tb,
1307 &p->zone, TCA_CT_ZONE,
1308 NULL, TCA_CT_UNSPEC,
1312 nf_ct_zone_init(&zone, p->zone, NF_CT_DEFAULT_ZONE_DIR, 0);
1313 tmpl = nf_ct_tmpl_alloc(net, &zone, GFP_KERNEL);
1315 NL_SET_ERR_MSG_MOD(extack, "Failed to allocate conntrack template");
1318 __set_bit(IPS_CONFIRMED_BIT, &tmpl->status);
1324 static int tcf_ct_init(struct net *net, struct nlattr *nla,
1325 struct nlattr *est, struct tc_action **a,
1326 struct tcf_proto *tp, u32 flags,
1327 struct netlink_ext_ack *extack)
1329 struct tc_action_net *tn = net_generic(net, act_ct_ops.net_id);
1330 bool bind = flags & TCA_ACT_FLAGS_BIND;
1331 struct tcf_ct_params *params = NULL;
1332 struct nlattr *tb[TCA_CT_MAX + 1];
1333 struct tcf_chain *goto_ch = NULL;
1340 NL_SET_ERR_MSG_MOD(extack, "Ct requires attributes to be passed");
1344 err = nla_parse_nested(tb, TCA_CT_MAX, nla, ct_policy, extack);
1348 if (!tb[TCA_CT_PARMS]) {
1349 NL_SET_ERR_MSG_MOD(extack, "Missing required ct parameters");
1352 parm = nla_data(tb[TCA_CT_PARMS]);
1353 index = parm->index;
1354 err = tcf_idr_check_alloc(tn, &index, a, bind);
1359 err = tcf_idr_create_from_flags(tn, index, est, a,
1360 &act_ct_ops, bind, flags);
1362 tcf_idr_cleanup(tn, index);
1365 res = ACT_P_CREATED;
1370 if (!(flags & TCA_ACT_FLAGS_REPLACE)) {
1371 tcf_idr_release(*a, bind);
1375 err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
1381 params = kzalloc(sizeof(*params), GFP_KERNEL);
1382 if (unlikely(!params)) {
1387 err = tcf_ct_fill_params(net, params, parm, tb, extack);
1391 err = tcf_ct_flow_table_get(net, params);
1393 goto cleanup_params;
1395 spin_lock_bh(&c->tcf_lock);
1396 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
1397 params = rcu_replace_pointer(c->params, params,
1398 lockdep_is_held(&c->tcf_lock));
1399 spin_unlock_bh(&c->tcf_lock);
1402 tcf_chain_put_by_act(goto_ch);
1404 call_rcu(¶ms->rcu, tcf_ct_params_free);
1410 nf_ct_put(params->tmpl);
1413 tcf_chain_put_by_act(goto_ch);
1415 tcf_idr_release(*a, bind);
1419 static void tcf_ct_cleanup(struct tc_action *a)
1421 struct tcf_ct_params *params;
1422 struct tcf_ct *c = to_ct(a);
1424 params = rcu_dereference_protected(c->params, 1);
1426 call_rcu(¶ms->rcu, tcf_ct_params_free);
1429 static int tcf_ct_dump_key_val(struct sk_buff *skb,
1430 void *val, int val_type,
1431 void *mask, int mask_type,
1436 if (mask && !memchr_inv(mask, 0, len))
1439 err = nla_put(skb, val_type, len, val);
1443 if (mask_type != TCA_CT_UNSPEC) {
1444 err = nla_put(skb, mask_type, len, mask);
1452 static int tcf_ct_dump_nat(struct sk_buff *skb, struct tcf_ct_params *p)
1454 struct nf_nat_range2 *range = &p->range;
1456 if (!(p->ct_action & TCA_CT_ACT_NAT))
1459 if (!(p->ct_action & (TCA_CT_ACT_NAT_SRC | TCA_CT_ACT_NAT_DST)))
1462 if (range->flags & NF_NAT_RANGE_MAP_IPS) {
1463 if (p->ipv4_range) {
1464 if (nla_put_in_addr(skb, TCA_CT_NAT_IPV4_MIN,
1465 range->min_addr.ip))
1467 if (nla_put_in_addr(skb, TCA_CT_NAT_IPV4_MAX,
1468 range->max_addr.ip))
1471 if (nla_put_in6_addr(skb, TCA_CT_NAT_IPV6_MIN,
1472 &range->min_addr.in6))
1474 if (nla_put_in6_addr(skb, TCA_CT_NAT_IPV6_MAX,
1475 &range->max_addr.in6))
1480 if (range->flags & NF_NAT_RANGE_PROTO_SPECIFIED) {
1481 if (nla_put_be16(skb, TCA_CT_NAT_PORT_MIN,
1482 range->min_proto.all))
1484 if (nla_put_be16(skb, TCA_CT_NAT_PORT_MAX,
1485 range->max_proto.all))
1492 static inline int tcf_ct_dump(struct sk_buff *skb, struct tc_action *a,
1495 unsigned char *b = skb_tail_pointer(skb);
1496 struct tcf_ct *c = to_ct(a);
1497 struct tcf_ct_params *p;
1499 struct tc_ct opt = {
1500 .index = c->tcf_index,
1501 .refcnt = refcount_read(&c->tcf_refcnt) - ref,
1502 .bindcnt = atomic_read(&c->tcf_bindcnt) - bind,
1506 spin_lock_bh(&c->tcf_lock);
1507 p = rcu_dereference_protected(c->params,
1508 lockdep_is_held(&c->tcf_lock));
1509 opt.action = c->tcf_action;
1511 if (tcf_ct_dump_key_val(skb,
1512 &p->ct_action, TCA_CT_ACTION,
1513 NULL, TCA_CT_UNSPEC,
1514 sizeof(p->ct_action)))
1515 goto nla_put_failure;
1517 if (p->ct_action & TCA_CT_ACT_CLEAR)
1520 if (IS_ENABLED(CONFIG_NF_CONNTRACK_MARK) &&
1521 tcf_ct_dump_key_val(skb,
1522 &p->mark, TCA_CT_MARK,
1523 &p->mark_mask, TCA_CT_MARK_MASK,
1525 goto nla_put_failure;
1527 if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS) &&
1528 tcf_ct_dump_key_val(skb,
1529 p->labels, TCA_CT_LABELS,
1530 p->labels_mask, TCA_CT_LABELS_MASK,
1532 goto nla_put_failure;
1534 if (IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES) &&
1535 tcf_ct_dump_key_val(skb,
1536 &p->zone, TCA_CT_ZONE,
1537 NULL, TCA_CT_UNSPEC,
1539 goto nla_put_failure;
1541 if (tcf_ct_dump_nat(skb, p))
1542 goto nla_put_failure;
1545 if (nla_put(skb, TCA_CT_PARMS, sizeof(opt), &opt))
1546 goto nla_put_failure;
1548 tcf_tm_dump(&t, &c->tcf_tm);
1549 if (nla_put_64bit(skb, TCA_CT_TM, sizeof(t), &t, TCA_CT_PAD))
1550 goto nla_put_failure;
1551 spin_unlock_bh(&c->tcf_lock);
1555 spin_unlock_bh(&c->tcf_lock);
1560 static void tcf_stats_update(struct tc_action *a, u64 bytes, u64 packets,
1561 u64 drops, u64 lastuse, bool hw)
1563 struct tcf_ct *c = to_ct(a);
1565 tcf_action_update_stats(a, bytes, packets, drops, hw);
1566 c->tcf_tm.lastuse = max_t(u64, c->tcf_tm.lastuse, lastuse);
1569 static int tcf_ct_offload_act_setup(struct tc_action *act, void *entry_data,
1570 u32 *index_inc, bool bind,
1571 struct netlink_ext_ack *extack)
1574 struct flow_action_entry *entry = entry_data;
1576 entry->id = FLOW_ACTION_CT;
1577 entry->ct.action = tcf_ct_action(act);
1578 entry->ct.zone = tcf_ct_zone(act);
1579 entry->ct.flow_table = tcf_ct_ft(act);
1582 struct flow_offload_action *fl_action = entry_data;
1584 fl_action->id = FLOW_ACTION_CT;
1590 static struct tc_action_ops act_ct_ops = {
1593 .owner = THIS_MODULE,
1595 .dump = tcf_ct_dump,
1596 .init = tcf_ct_init,
1597 .cleanup = tcf_ct_cleanup,
1598 .stats_update = tcf_stats_update,
1599 .offload_act_setup = tcf_ct_offload_act_setup,
1600 .size = sizeof(struct tcf_ct),
1603 static __net_init int ct_init_net(struct net *net)
1605 unsigned int n_bits = sizeof_field(struct tcf_ct_params, labels) * 8;
1606 struct tc_ct_action_net *tn = net_generic(net, act_ct_ops.net_id);
1608 if (nf_connlabels_get(net, n_bits - 1)) {
1610 pr_err("act_ct: Failed to set connlabels length");
1615 return tc_action_net_init(net, &tn->tn, &act_ct_ops);
1618 static void __net_exit ct_exit_net(struct list_head *net_list)
1623 list_for_each_entry(net, net_list, exit_list) {
1624 struct tc_ct_action_net *tn = net_generic(net, act_ct_ops.net_id);
1627 nf_connlabels_put(net);
1631 tc_action_net_exit(net_list, act_ct_ops.net_id);
1634 static struct pernet_operations ct_net_ops = {
1635 .init = ct_init_net,
1636 .exit_batch = ct_exit_net,
1637 .id = &act_ct_ops.net_id,
1638 .size = sizeof(struct tc_ct_action_net),
1641 static int __init ct_init_module(void)
1645 act_ct_wq = alloc_ordered_workqueue("act_ct_workqueue", 0);
1649 err = tcf_ct_flow_tables_init();
1653 err = tcf_register_action(&act_ct_ops, &ct_net_ops);
1657 static_branch_inc(&tcf_frag_xmit_count);
1662 tcf_ct_flow_tables_uninit();
1664 destroy_workqueue(act_ct_wq);
1668 static void __exit ct_cleanup_module(void)
1670 static_branch_dec(&tcf_frag_xmit_count);
1671 tcf_unregister_action(&act_ct_ops, &ct_net_ops);
1672 tcf_ct_flow_tables_uninit();
1673 destroy_workqueue(act_ct_wq);
1676 module_init(ct_init_module);
1677 module_exit(ct_cleanup_module);
1678 MODULE_AUTHOR("Paul Blakey <paulb@mellanox.com>");
1679 MODULE_AUTHOR("Yossi Kuperman <yossiku@mellanox.com>");
1680 MODULE_AUTHOR("Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>");
1681 MODULE_DESCRIPTION("Connection tracking action");
1682 MODULE_LICENSE("GPL v2");