Alexey Dobriyan | dfdb8d7 | 2008-10-08 11:35:02 +0200 | [diff] [blame] | 1 | #ifndef __NETNS_CONNTRACK_H |
| 2 | #define __NETNS_CONNTRACK_H |
| 3 | |
Alexey Dobriyan | 63c9a26 | 2008-10-08 11:35:04 +0200 | [diff] [blame] | 4 | #include <linux/list.h> |
Eric Dumazet | ea781f1 | 2009-03-25 21:05:46 +0100 | [diff] [blame] | 5 | #include <linux/list_nulls.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 6 | #include <linux/atomic.h> |
Florian Westphal | 9500507 | 2014-06-10 23:12:56 +0200 | [diff] [blame] | 7 | #include <linux/workqueue.h> |
Gao feng | d2ba1fde | 2012-05-28 21:04:12 +0000 | [diff] [blame] | 8 | #include <linux/netfilter/nf_conntrack_tcp.h> |
Jesper Dangaard Brouer | 93bb0ce | 2014-03-03 14:46:13 +0100 | [diff] [blame] | 9 | #include <linux/seqlock.h> |
Alexey Dobriyan | 49ac871 | 2008-10-08 11:35:03 +0200 | [diff] [blame] | 10 | |
Alexey Dobriyan | 8025070 | 2008-10-08 11:35:08 +0200 | [diff] [blame] | 11 | struct ctl_table_header; |
Alexey Dobriyan | 6058fa6 | 2008-10-08 11:35:07 +0200 | [diff] [blame] | 12 | struct nf_conntrack_ecache; |
| 13 | |
Gao feng | 2c352f4 | 2012-05-28 21:04:09 +0000 | [diff] [blame] | 14 | struct nf_proto_net { |
| 15 | #ifdef CONFIG_SYSCTL |
| 16 | struct ctl_table_header *ctl_table_header; |
| 17 | struct ctl_table *ctl_table; |
| 18 | #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT |
| 19 | struct ctl_table_header *ctl_compat_header; |
| 20 | struct ctl_table *ctl_compat_table; |
| 21 | #endif |
| 22 | #endif |
| 23 | unsigned int users; |
| 24 | }; |
| 25 | |
Gao feng | 15f585b | 2012-05-28 21:04:11 +0000 | [diff] [blame] | 26 | struct nf_generic_net { |
| 27 | struct nf_proto_net pn; |
| 28 | unsigned int timeout; |
| 29 | }; |
| 30 | |
Gao feng | d2ba1fde | 2012-05-28 21:04:12 +0000 | [diff] [blame] | 31 | struct nf_tcp_net { |
| 32 | struct nf_proto_net pn; |
| 33 | unsigned int timeouts[TCP_CONNTRACK_TIMEOUT_MAX]; |
| 34 | unsigned int tcp_loose; |
| 35 | unsigned int tcp_be_liberal; |
| 36 | unsigned int tcp_max_retrans; |
| 37 | }; |
| 38 | |
Gao feng | 0ce490a | 2012-05-28 21:04:13 +0000 | [diff] [blame] | 39 | enum udp_conntrack { |
| 40 | UDP_CT_UNREPLIED, |
| 41 | UDP_CT_REPLIED, |
| 42 | UDP_CT_MAX |
| 43 | }; |
| 44 | |
| 45 | struct nf_udp_net { |
| 46 | struct nf_proto_net pn; |
| 47 | unsigned int timeouts[UDP_CT_MAX]; |
| 48 | }; |
| 49 | |
Gao feng | 4b626b9 | 2012-05-28 21:04:14 +0000 | [diff] [blame] | 50 | struct nf_icmp_net { |
| 51 | struct nf_proto_net pn; |
| 52 | unsigned int timeout; |
| 53 | }; |
| 54 | |
Gao feng | 524a53e | 2012-05-28 21:04:10 +0000 | [diff] [blame] | 55 | struct nf_ip_net { |
Gao feng | 15f585b | 2012-05-28 21:04:11 +0000 | [diff] [blame] | 56 | struct nf_generic_net generic; |
Gao feng | d2ba1fde | 2012-05-28 21:04:12 +0000 | [diff] [blame] | 57 | struct nf_tcp_net tcp; |
Gao feng | 0ce490a | 2012-05-28 21:04:13 +0000 | [diff] [blame] | 58 | struct nf_udp_net udp; |
Gao feng | 4b626b9 | 2012-05-28 21:04:14 +0000 | [diff] [blame] | 59 | struct nf_icmp_net icmp; |
Gao feng | 7080ba0 | 2012-05-28 21:04:15 +0000 | [diff] [blame] | 60 | struct nf_icmp_net icmpv6; |
Gao feng | 524a53e | 2012-05-28 21:04:10 +0000 | [diff] [blame] | 61 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT) |
| 62 | struct ctl_table_header *ctl_table_header; |
| 63 | struct ctl_table *ctl_table; |
| 64 | #endif |
| 65 | }; |
| 66 | |
Jesper Dangaard Brouer | b7779d0 | 2014-03-03 14:45:20 +0100 | [diff] [blame] | 67 | struct ct_pcpu { |
| 68 | spinlock_t lock; |
| 69 | struct hlist_nulls_head unconfirmed; |
| 70 | struct hlist_nulls_head dying; |
| 71 | struct hlist_nulls_head tmpl; |
| 72 | }; |
| 73 | |
Alexey Dobriyan | dfdb8d7 | 2008-10-08 11:35:02 +0200 | [diff] [blame] | 74 | struct netns_ct { |
Alexey Dobriyan | 49ac871 | 2008-10-08 11:35:03 +0200 | [diff] [blame] | 75 | atomic_t count; |
Alexey Dobriyan | 9b03f38 | 2008-10-08 11:35:03 +0200 | [diff] [blame] | 76 | unsigned int expect_count; |
Florian Westphal | 9500507 | 2014-06-10 23:12:56 +0200 | [diff] [blame] | 77 | #ifdef CONFIG_NF_CONNTRACK_EVENTS |
| 78 | struct delayed_work ecache_dwork; |
| 79 | bool ecache_dwork_pending; |
| 80 | #endif |
Jesper Dangaard Brouer | 8cf4d6a | 2013-11-15 15:57:53 +0100 | [diff] [blame] | 81 | #ifdef CONFIG_SYSCTL |
| 82 | struct ctl_table_header *sysctl_header; |
| 83 | struct ctl_table_header *acct_sysctl_header; |
| 84 | struct ctl_table_header *tstamp_sysctl_header; |
| 85 | struct ctl_table_header *event_sysctl_header; |
| 86 | struct ctl_table_header *helper_sysctl_header; |
| 87 | #endif |
| 88 | char *slabname; |
| 89 | unsigned int sysctl_log_invalid; /* Log invalid packets */ |
Jesper Dangaard Brouer | 8cf4d6a | 2013-11-15 15:57:53 +0100 | [diff] [blame] | 90 | int sysctl_events; |
| 91 | int sysctl_acct; |
| 92 | int sysctl_auto_assign_helper; |
| 93 | bool auto_assign_helper_warned; |
| 94 | int sysctl_tstamp; |
| 95 | int sysctl_checksum; |
| 96 | |
Patrick McHardy | d696c7b | 2010-02-08 11:18:07 -0800 | [diff] [blame] | 97 | unsigned int htable_size; |
Jesper Dangaard Brouer | 93bb0ce | 2014-03-03 14:46:13 +0100 | [diff] [blame] | 98 | seqcount_t generation; |
Eric Dumazet | 5b3501f | 2010-02-08 11:16:56 -0800 | [diff] [blame] | 99 | struct kmem_cache *nf_conntrack_cachep; |
Eric Dumazet | ea781f1 | 2009-03-25 21:05:46 +0100 | [diff] [blame] | 100 | struct hlist_nulls_head *hash; |
Alexey Dobriyan | 9b03f38 | 2008-10-08 11:35:03 +0200 | [diff] [blame] | 101 | struct hlist_head *expect_hash; |
Jesper Dangaard Brouer | b7779d0 | 2014-03-03 14:45:20 +0100 | [diff] [blame] | 102 | struct ct_pcpu __percpu *pcpu_lists; |
Tejun Heo | 7d720c3 | 2010-02-16 15:20:26 +0000 | [diff] [blame] | 103 | struct ip_conntrack_stat __percpu *stat; |
Pablo Neira Ayuso | 70e9942 | 2011-11-22 00:16:51 +0100 | [diff] [blame] | 104 | struct nf_ct_event_notifier __rcu *nf_conntrack_event_cb; |
| 105 | struct nf_exp_event_notifier __rcu *nf_expect_event_cb; |
Gao feng | 524a53e | 2012-05-28 21:04:10 +0000 | [diff] [blame] | 106 | struct nf_ip_net nf_ct_proto; |
Florian Westphal | c539f01 | 2013-01-11 06:30:44 +0000 | [diff] [blame] | 107 | #if defined(CONFIG_NF_CONNTRACK_LABELS) |
| 108 | unsigned int labels_used; |
| 109 | u8 label_words; |
| 110 | #endif |
Patrick McHardy | c7232c9 | 2012-08-26 19:14:06 +0200 | [diff] [blame] | 111 | #ifdef CONFIG_NF_NAT_NEEDED |
| 112 | struct hlist_head *nat_bysource; |
| 113 | unsigned int nat_htable_size; |
| 114 | #endif |
Alexey Dobriyan | dfdb8d7 | 2008-10-08 11:35:02 +0200 | [diff] [blame] | 115 | }; |
| 116 | #endif |