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 | d2ba1fd | 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; |
Gao feng | 2c352f4 | 2012-05-28 21:04:09 +0000 | [diff] [blame] | 18 | #endif |
| 19 | unsigned int users; |
| 20 | }; |
| 21 | |
Gao feng | 15f585b | 2012-05-28 21:04:11 +0000 | [diff] [blame] | 22 | struct nf_generic_net { |
| 23 | struct nf_proto_net pn; |
| 24 | unsigned int timeout; |
| 25 | }; |
| 26 | |
Gao feng | d2ba1fd | 2012-05-28 21:04:12 +0000 | [diff] [blame] | 27 | struct nf_tcp_net { |
| 28 | struct nf_proto_net pn; |
| 29 | unsigned int timeouts[TCP_CONNTRACK_TIMEOUT_MAX]; |
| 30 | unsigned int tcp_loose; |
| 31 | unsigned int tcp_be_liberal; |
| 32 | unsigned int tcp_max_retrans; |
| 33 | }; |
| 34 | |
Gao feng | 0ce490a | 2012-05-28 21:04:13 +0000 | [diff] [blame] | 35 | enum udp_conntrack { |
| 36 | UDP_CT_UNREPLIED, |
| 37 | UDP_CT_REPLIED, |
| 38 | UDP_CT_MAX |
| 39 | }; |
| 40 | |
| 41 | struct nf_udp_net { |
| 42 | struct nf_proto_net pn; |
| 43 | unsigned int timeouts[UDP_CT_MAX]; |
| 44 | }; |
| 45 | |
Gao feng | 4b626b9 | 2012-05-28 21:04:14 +0000 | [diff] [blame] | 46 | struct nf_icmp_net { |
| 47 | struct nf_proto_net pn; |
| 48 | unsigned int timeout; |
| 49 | }; |
| 50 | |
Gao feng | 524a53e | 2012-05-28 21:04:10 +0000 | [diff] [blame] | 51 | struct nf_ip_net { |
Gao feng | 15f585b | 2012-05-28 21:04:11 +0000 | [diff] [blame] | 52 | struct nf_generic_net generic; |
Gao feng | d2ba1fd | 2012-05-28 21:04:12 +0000 | [diff] [blame] | 53 | struct nf_tcp_net tcp; |
Gao feng | 0ce490a | 2012-05-28 21:04:13 +0000 | [diff] [blame] | 54 | struct nf_udp_net udp; |
Gao feng | 4b626b9 | 2012-05-28 21:04:14 +0000 | [diff] [blame] | 55 | struct nf_icmp_net icmp; |
Gao feng | 7080ba0 | 2012-05-28 21:04:15 +0000 | [diff] [blame] | 56 | struct nf_icmp_net icmpv6; |
Gao feng | 524a53e | 2012-05-28 21:04:10 +0000 | [diff] [blame] | 57 | }; |
| 58 | |
Jesper Dangaard Brouer | b7779d0 | 2014-03-03 14:45:20 +0100 | [diff] [blame] | 59 | struct ct_pcpu { |
| 60 | spinlock_t lock; |
| 61 | struct hlist_nulls_head unconfirmed; |
| 62 | struct hlist_nulls_head dying; |
Jesper Dangaard Brouer | b7779d0 | 2014-03-03 14:45:20 +0100 | [diff] [blame] | 63 | }; |
| 64 | |
Alexey Dobriyan | dfdb8d7 | 2008-10-08 11:35:02 +0200 | [diff] [blame] | 65 | struct netns_ct { |
Alexey Dobriyan | 49ac871 | 2008-10-08 11:35:03 +0200 | [diff] [blame] | 66 | atomic_t count; |
Alexey Dobriyan | 9b03f38 | 2008-10-08 11:35:03 +0200 | [diff] [blame] | 67 | unsigned int expect_count; |
Florian Westphal | 9500507 | 2014-06-10 23:12:56 +0200 | [diff] [blame] | 68 | #ifdef CONFIG_NF_CONNTRACK_EVENTS |
| 69 | struct delayed_work ecache_dwork; |
| 70 | bool ecache_dwork_pending; |
| 71 | #endif |
Jesper Dangaard Brouer | 8cf4d6a | 2013-11-15 15:57:53 +0100 | [diff] [blame] | 72 | #ifdef CONFIG_SYSCTL |
| 73 | struct ctl_table_header *sysctl_header; |
| 74 | struct ctl_table_header *acct_sysctl_header; |
| 75 | struct ctl_table_header *tstamp_sysctl_header; |
| 76 | struct ctl_table_header *event_sysctl_header; |
| 77 | struct ctl_table_header *helper_sysctl_header; |
| 78 | #endif |
Jesper Dangaard Brouer | 8cf4d6a | 2013-11-15 15:57:53 +0100 | [diff] [blame] | 79 | unsigned int sysctl_log_invalid; /* Log invalid packets */ |
Jesper Dangaard Brouer | 8cf4d6a | 2013-11-15 15:57:53 +0100 | [diff] [blame] | 80 | int sysctl_events; |
| 81 | int sysctl_acct; |
| 82 | int sysctl_auto_assign_helper; |
| 83 | bool auto_assign_helper_warned; |
| 84 | int sysctl_tstamp; |
| 85 | int sysctl_checksum; |
| 86 | |
Jesper Dangaard Brouer | b7779d0 | 2014-03-03 14:45:20 +0100 | [diff] [blame] | 87 | struct ct_pcpu __percpu *pcpu_lists; |
Tejun Heo | 7d720c3 | 2010-02-16 15:20:26 +0000 | [diff] [blame] | 88 | struct ip_conntrack_stat __percpu *stat; |
Pablo Neira Ayuso | 70e9942 | 2011-11-22 00:16:51 +0100 | [diff] [blame] | 89 | struct nf_ct_event_notifier __rcu *nf_conntrack_event_cb; |
| 90 | struct nf_exp_event_notifier __rcu *nf_expect_event_cb; |
Gao feng | 524a53e | 2012-05-28 21:04:10 +0000 | [diff] [blame] | 91 | struct nf_ip_net nf_ct_proto; |
Florian Westphal | c539f01 | 2013-01-11 06:30:44 +0000 | [diff] [blame] | 92 | #if defined(CONFIG_NF_CONNTRACK_LABELS) |
| 93 | unsigned int labels_used; |
| 94 | u8 label_words; |
| 95 | #endif |
Alexey Dobriyan | dfdb8d7 | 2008-10-08 11:35:02 +0200 | [diff] [blame] | 96 | }; |
| 97 | #endif |