blob: 3cc4487ac349997850940c6cbd274c196863f6aa [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001/* Connection state tracking for netfilter. This is separated from,
2 but required by, the NAT layer; it can also be used by an iptables
3 extension. */
4
5/* (C) 1999-2001 Paul `Rusty' Russell
Harald Weltedc808fe2006-03-20 17:56:32 -08006 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08007 * (C) 2003,2004 USAGI/WIDE Project <http://www.linux-ipv6.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080012 */
13
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080014#include <linux/types.h>
15#include <linux/netfilter.h>
16#include <linux/module.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040017#include <linux/sched.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080018#include <linux/skbuff.h>
19#include <linux/proc_fs.h>
20#include <linux/vmalloc.h>
21#include <linux/stddef.h>
22#include <linux/slab.h>
23#include <linux/random.h>
24#include <linux/jhash.h>
25#include <linux/err.h>
26#include <linux/percpu.h>
27#include <linux/moduleparam.h>
28#include <linux/notifier.h>
29#include <linux/kernel.h>
30#include <linux/netdevice.h>
31#include <linux/socket.h>
Al Virod7fe0f22006-12-03 23:15:30 -050032#include <linux/mm.h>
Patrick McHardyd696c7b2010-02-08 11:18:07 -080033#include <linux/nsproxy.h>
Eric Dumazetea781f12009-03-25 21:05:46 +010034#include <linux/rculist_nulls.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080035
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080036#include <net/netfilter/nf_conntrack.h>
37#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010038#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010039#include <net/netfilter/nf_conntrack_expect.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080040#include <net/netfilter/nf_conntrack_helper.h>
41#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070042#include <net/netfilter/nf_conntrack_extend.h>
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -070043#include <net/netfilter/nf_conntrack_acct.h>
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020044#include <net/netfilter/nf_conntrack_ecache.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010045#include <net/netfilter/nf_conntrack_zones.h>
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +010046#include <net/netfilter/nf_conntrack_timestamp.h>
Pablo Neira Ayusodd705072012-02-28 23:36:48 +010047#include <net/netfilter/nf_conntrack_timeout.h>
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070048#include <net/netfilter/nf_nat.h>
Patrick McHardye17b6662008-11-18 12:24:17 +010049#include <net/netfilter/nf_nat_core.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080050
Harald Weltedc808fe2006-03-20 17:56:32 -080051#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080052
Patrick McHardye17b6662008-11-18 12:24:17 +010053int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
54 enum nf_nat_manip_type manip,
Patrick McHardy39938322009-08-25 16:07:58 +020055 const struct nlattr *attr) __read_mostly;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070056EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
57
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080058DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080059EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080060
Martin Josefssone2b76062006-11-29 02:35:04 +010061unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080062EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
63
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +010064unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010065EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080066
Eric Dumazetb3c51632010-06-09 14:43:38 +020067DEFINE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
68EXPORT_PER_CPU_SYMBOL(nf_conntrack_untracked);
Patrick McHardy13b18332006-12-02 22:11:25 -080069
Changli Gaof682cef2011-01-05 04:23:23 +000070unsigned int nf_conntrack_hash_rnd __read_mostly;
Patrick McHardy4d4e61c2011-12-23 14:00:13 +010071EXPORT_SYMBOL_GPL(nf_conntrack_hash_rnd);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080072
Changli Gao99f07e92010-09-21 17:49:20 +020073static u32 hash_conntrack_raw(const struct nf_conntrack_tuple *tuple, u16 zone)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080074{
Patrick McHardy07949352008-01-31 04:40:52 -080075 unsigned int n;
Sami Farin9b887902007-03-14 16:43:00 -070076
Patrick McHardy07949352008-01-31 04:40:52 -080077 /* The direction must be ignored, so we hash everything up to the
78 * destination ports (which is a multiple of 4) and treat the last
79 * three bytes manually.
80 */
81 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
Changli Gao99f07e92010-09-21 17:49:20 +020082 return jhash2((u32 *)tuple, n, zone ^ nf_conntrack_hash_rnd ^
83 (((__force __u16)tuple->dst.u.all << 16) |
84 tuple->dst.protonum));
85}
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080086
Changli Gao99f07e92010-09-21 17:49:20 +020087static u32 __hash_bucket(u32 hash, unsigned int size)
88{
89 return ((u64)hash * size) >> 32;
90}
91
92static u32 hash_bucket(u32 hash, const struct net *net)
93{
94 return __hash_bucket(hash, net->ct.htable_size);
95}
96
97static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
98 u16 zone, unsigned int size)
99{
100 return __hash_bucket(hash_conntrack_raw(tuple, zone), size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800101}
102
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100103static inline u_int32_t hash_conntrack(const struct net *net, u16 zone,
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800104 const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800105{
Changli Gao99f07e92010-09-21 17:49:20 +0200106 return __hash_conntrack(tuple, zone, net->ct.htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800107}
108
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200109bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800110nf_ct_get_tuple(const struct sk_buff *skb,
111 unsigned int nhoff,
112 unsigned int dataoff,
113 u_int16_t l3num,
114 u_int8_t protonum,
115 struct nf_conntrack_tuple *tuple,
116 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100117 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800118{
Philip Craig443a70d2008-04-29 03:35:10 -0700119 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800120
121 tuple->src.l3num = l3num;
122 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200123 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800124
125 tuple->dst.protonum = protonum;
126 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
127
Martin Josefsson605dcad2006-11-29 02:35:06 +0100128 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800129}
Patrick McHardy13b18332006-12-02 22:11:25 -0800130EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800131
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200132bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
133 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700134{
135 struct nf_conntrack_l3proto *l3proto;
136 struct nf_conntrack_l4proto *l4proto;
137 unsigned int protoff;
138 u_int8_t protonum;
139 int ret;
140
141 rcu_read_lock();
142
143 l3proto = __nf_ct_l3proto_find(l3num);
144 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
145 if (ret != NF_ACCEPT) {
146 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200147 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700148 }
149
150 l4proto = __nf_ct_l4proto_find(l3num, protonum);
151
152 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
153 l3proto, l4proto);
154
155 rcu_read_unlock();
156 return ret;
157}
158EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
159
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200160bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800161nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
162 const struct nf_conntrack_tuple *orig,
163 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100164 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165{
Philip Craig443a70d2008-04-29 03:35:10 -0700166 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800167
168 inverse->src.l3num = orig->src.l3num;
169 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200170 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800171
172 inverse->dst.dir = !orig->dst.dir;
173
174 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100175 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800176}
Patrick McHardy13b18332006-12-02 22:11:25 -0800177EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800178
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800179static void
180clean_from_lists(struct nf_conn *ct)
181{
Patrick McHardy0d537782007-07-07 22:39:38 -0700182 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100183 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
184 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800185
186 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800187 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800188}
189
190static void
191destroy_conntrack(struct nf_conntrack *nfct)
192{
193 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200194 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100195 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800196
Patrick McHardy0d537782007-07-07 22:39:38 -0700197 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800198 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
199 NF_CT_ASSERT(!timer_pending(&ct->timeout));
200
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800201 /* To make sure we don't get any weird locking issues here:
202 * destroy_conntrack() MUST NOT be called with a write lock
203 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800204 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200205 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100206 if (l4proto && l4proto->destroy)
207 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800208
Patrick McHardy982d9a92007-02-12 11:14:11 -0800209 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800210
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800211 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800212 /* Expectations will have been removed in clean_from_lists,
213 * except TFTP can create an expectation on the first packet,
214 * before connection is in the list, so we need to clean here,
215 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800216 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800217
218 /* We overload first tuple to link into unconfirmed list. */
219 if (!nf_ct_is_confirmed(ct)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100220 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
221 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800222 }
223
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200224 NF_CT_STAT_INC(net, delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800225 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800226
227 if (ct->master)
228 nf_ct_put(ct->master);
229
Patrick McHardy0d537782007-07-07 22:39:38 -0700230 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800231 nf_conntrack_free(ct);
232}
233
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200234void nf_ct_delete_from_lists(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800235{
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200236 struct net *net = nf_ct_net(ct);
Patrick McHardy5397e972007-05-19 14:23:52 -0700237
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200238 nf_ct_helper_destroy(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800239 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800240 /* Inside lock so preempt is disabled on module removal path.
241 * Otherwise we can get spurious warnings. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200242 NF_CT_STAT_INC(net, delete_list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800243 clean_from_lists(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800244 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200245}
246EXPORT_SYMBOL_GPL(nf_ct_delete_from_lists);
247
248static void death_by_event(unsigned long ul_conntrack)
249{
250 struct nf_conn *ct = (void *)ul_conntrack;
251 struct net *net = nf_ct_net(ct);
252
253 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
254 /* bad luck, let's retry again */
255 ct->timeout.expires = jiffies +
256 (random32() % net->ct.sysctl_events_retry_timeout);
257 add_timer(&ct->timeout);
258 return;
259 }
260 /* we've got the event delivered, now it's dying */
261 set_bit(IPS_DYING_BIT, &ct->status);
262 spin_lock(&nf_conntrack_lock);
263 hlist_nulls_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
264 spin_unlock(&nf_conntrack_lock);
265 nf_ct_put(ct);
266}
267
268void nf_ct_insert_dying_list(struct nf_conn *ct)
269{
270 struct net *net = nf_ct_net(ct);
271
272 /* add this conntrack to the dying list */
273 spin_lock_bh(&nf_conntrack_lock);
274 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
275 &net->ct.dying);
276 spin_unlock_bh(&nf_conntrack_lock);
277 /* set a new timer to retry event delivery */
278 setup_timer(&ct->timeout, death_by_event, (unsigned long)ct);
279 ct->timeout.expires = jiffies +
280 (random32() % net->ct.sysctl_events_retry_timeout);
281 add_timer(&ct->timeout);
282}
283EXPORT_SYMBOL_GPL(nf_ct_insert_dying_list);
284
285static void death_by_timeout(unsigned long ul_conntrack)
286{
287 struct nf_conn *ct = (void *)ul_conntrack;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100288 struct nf_conn_tstamp *tstamp;
289
290 tstamp = nf_conn_tstamp_find(ct);
291 if (tstamp && tstamp->stop == 0)
292 tstamp->stop = ktime_to_ns(ktime_get_real());
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200293
294 if (!test_bit(IPS_DYING_BIT, &ct->status) &&
295 unlikely(nf_conntrack_event(IPCT_DESTROY, ct) < 0)) {
296 /* destroy event was not delivered */
297 nf_ct_delete_from_lists(ct);
298 nf_ct_insert_dying_list(ct);
299 return;
300 }
301 set_bit(IPS_DYING_BIT, &ct->status);
302 nf_ct_delete_from_lists(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800303 nf_ct_put(ct);
304}
305
Eric Dumazetea781f12009-03-25 21:05:46 +0100306/*
307 * Warning :
308 * - Caller must take a reference on returned object
309 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
310 * OR
311 * - Caller must lock nf_conntrack_lock before calling this function
312 */
Changli Gao99f07e92010-09-21 17:49:20 +0200313static struct nf_conntrack_tuple_hash *
314____nf_conntrack_find(struct net *net, u16 zone,
315 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800316{
317 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100318 struct hlist_nulls_node *n;
Changli Gao99f07e92010-09-21 17:49:20 +0200319 unsigned int bucket = hash_bucket(hash, net);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800320
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800321 /* Disable BHs the entire time since we normally need to disable them
322 * at least once for the stats anyway.
323 */
324 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100325begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200326 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[bucket], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100327 if (nf_ct_tuple_equal(tuple, &h->tuple) &&
328 nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200329 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800330 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800331 return h;
332 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200333 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800334 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100335 /*
336 * if the nulls value we got at the end of this lookup is
337 * not the expected one, we must restart lookup.
338 * We probably met an item that was moved to another chain.
339 */
Changli Gao99f07e92010-09-21 17:49:20 +0200340 if (get_nulls_value(n) != bucket) {
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200341 NF_CT_STAT_INC(net, search_restart);
Eric Dumazetea781f12009-03-25 21:05:46 +0100342 goto begin;
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200343 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800344 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800345
346 return NULL;
347}
Changli Gao99f07e92010-09-21 17:49:20 +0200348
349struct nf_conntrack_tuple_hash *
350__nf_conntrack_find(struct net *net, u16 zone,
351 const struct nf_conntrack_tuple *tuple)
352{
353 return ____nf_conntrack_find(net, zone, tuple,
354 hash_conntrack_raw(tuple, zone));
355}
Patrick McHardy13b18332006-12-02 22:11:25 -0800356EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800357
358/* Find a connection corresponding to a tuple. */
Changli Gao99f07e92010-09-21 17:49:20 +0200359static struct nf_conntrack_tuple_hash *
360__nf_conntrack_find_get(struct net *net, u16 zone,
361 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800362{
363 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800364 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800365
Patrick McHardy76507f62008-01-31 04:38:38 -0800366 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100367begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200368 h = ____nf_conntrack_find(net, zone, tuple, hash);
Patrick McHardy76507f62008-01-31 04:38:38 -0800369 if (h) {
370 ct = nf_ct_tuplehash_to_ctrack(h);
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200371 if (unlikely(nf_ct_is_dying(ct) ||
372 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800373 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100374 else {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100375 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple) ||
376 nf_ct_zone(ct) != zone)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100377 nf_ct_put(ct);
378 goto begin;
379 }
380 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800381 }
382 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800383
384 return h;
385}
Changli Gao99f07e92010-09-21 17:49:20 +0200386
387struct nf_conntrack_tuple_hash *
388nf_conntrack_find_get(struct net *net, u16 zone,
389 const struct nf_conntrack_tuple *tuple)
390{
391 return __nf_conntrack_find_get(net, zone, tuple,
392 hash_conntrack_raw(tuple, zone));
393}
Patrick McHardy13b18332006-12-02 22:11:25 -0800394EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800395
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800396static void __nf_conntrack_hash_insert(struct nf_conn *ct,
397 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800398 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800399{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200400 struct net *net = nf_ct_net(ct);
401
Eric Dumazetea781f12009-03-25 21:05:46 +0100402 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200403 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100404 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200405 &net->ct.hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800406}
407
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100408int
409nf_conntrack_hash_check_insert(struct nf_conn *ct)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800410{
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800411 struct net *net = nf_ct_net(ct);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800412 unsigned int hash, repl_hash;
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100413 struct nf_conntrack_tuple_hash *h;
414 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100415 u16 zone;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800416
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100417 zone = nf_ct_zone(ct);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100418 hash = hash_conntrack(net, zone,
419 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
420 repl_hash = hash_conntrack(net, zone,
421 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800422
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100423 spin_lock_bh(&nf_conntrack_lock);
424
425 /* See if there's one in the list already, including reverse */
426 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
427 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
428 &h->tuple) &&
429 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
430 goto out;
431 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
432 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
433 &h->tuple) &&
434 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
435 goto out;
436
437 add_timer(&ct->timeout);
438 nf_conntrack_get(&ct->ct_general);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800439 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100440 NF_CT_STAT_INC(net, insert);
441 spin_unlock_bh(&nf_conntrack_lock);
442
443 return 0;
444
445out:
446 NF_CT_STAT_INC(net, insert_failed);
447 spin_unlock_bh(&nf_conntrack_lock);
448 return -EEXIST;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800449}
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100450EXPORT_SYMBOL_GPL(nf_conntrack_hash_check_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800451
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800452/* Confirm a connection given skb; places it in hash table */
453int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700454__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800455{
456 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700457 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800458 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700459 struct nf_conn_help *help;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100460 struct nf_conn_tstamp *tstamp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100461 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800462 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200463 struct net *net;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100464 u16 zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800465
Herbert Xu3db05fe2007-10-15 00:53:15 -0700466 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200467 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800468
469 /* ipt_REJECT uses nf_conntrack_attach to attach related
470 ICMP/TCP RST packets in other direction. Actual packet
471 which created connection will be IP_CT_NEW or for an
472 expected connection, IP_CT_RELATED. */
473 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
474 return NF_ACCEPT;
475
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100476 zone = nf_ct_zone(ct);
Changli Gao99f07e92010-09-21 17:49:20 +0200477 /* reuse the hash saved before */
478 hash = *(unsigned long *)&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev;
479 hash = hash_bucket(hash, net);
480 repl_hash = hash_conntrack(net, zone,
481 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800482
483 /* We're not in hash table, and we refuse to set up related
484 connections for unconfirmed conns. But packet copies and
485 REJECT will give spurious warnings here. */
486 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
487
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300488 /* No external references means no one else could have
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800489 confirmed us. */
490 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700491 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800492
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800493 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800494
Joerg Marxfc350772010-05-20 15:55:30 +0200495 /* We have to check the DYING flag inside the lock to prevent
496 a race against nf_ct_get_next_corpse() possibly called from
497 user context, else we insert an already 'dead' hash, blocking
498 further use of that particular connection -JM */
499
500 if (unlikely(nf_ct_is_dying(ct))) {
501 spin_unlock_bh(&nf_conntrack_lock);
502 return NF_ACCEPT;
503 }
504
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800505 /* See if there's one in the list already, including reverse:
506 NAT could have grabbed it without realizing, since we're
507 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100508 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700509 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100510 &h->tuple) &&
511 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700512 goto out;
Eric Dumazetea781f12009-03-25 21:05:46 +0100513 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700514 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100515 &h->tuple) &&
516 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700517 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800518
Patrick McHardydf0933d2006-09-20 11:57:53 -0700519 /* Remove from unconfirmed list */
Eric Dumazetea781f12009-03-25 21:05:46 +0100520 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700521
Patrick McHardydf0933d2006-09-20 11:57:53 -0700522 /* Timer relative to confirmation time, not original
523 setting time, otherwise we'd get timer wrap in
524 weird delay cases. */
525 ct->timeout.expires += jiffies;
526 add_timer(&ct->timeout);
527 atomic_inc(&ct->ct_general.use);
Changli Gao45eec342011-01-18 15:08:13 +0100528 ct->status |= IPS_CONFIRMED;
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200529
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100530 /* set conntrack timestamp, if enabled. */
531 tstamp = nf_conn_tstamp_find(ct);
532 if (tstamp) {
533 if (skb->tstamp.tv64 == 0)
534 __net_timestamp((struct sk_buff *)skb);
535
536 tstamp->start = ktime_to_ns(skb->tstamp);
537 }
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200538 /* Since the lookup is lockless, hash insertion must be done after
539 * starting the timer and setting the CONFIRMED bit. The RCU barriers
540 * guarantee that no other CPU can find the conntrack before the above
541 * stores are visible.
542 */
543 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200544 NF_CT_STAT_INC(net, insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800545 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200546
Patrick McHardydf0933d2006-09-20 11:57:53 -0700547 help = nfct_help(ct);
548 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200549 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200550
Patrick McHardydf0933d2006-09-20 11:57:53 -0700551 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200552 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700553 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800554
Patrick McHardydf0933d2006-09-20 11:57:53 -0700555out:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200556 NF_CT_STAT_INC(net, insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800557 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800558 return NF_DROP;
559}
Patrick McHardy13b18332006-12-02 22:11:25 -0800560EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800561
562/* Returns true if a connection correspondings to the tuple (required
563 for NAT). */
564int
565nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
566 const struct nf_conn *ignored_conntrack)
567{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200568 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800569 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100570 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100571 struct nf_conn *ct;
572 u16 zone = nf_ct_zone(ignored_conntrack);
573 unsigned int hash = hash_conntrack(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800574
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800575 /* Disable BHs the entire time since we need to disable them at
576 * least once for the stats anyway.
577 */
578 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100579 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100580 ct = nf_ct_tuplehash_to_ctrack(h);
581 if (ct != ignored_conntrack &&
582 nf_ct_tuple_equal(tuple, &h->tuple) &&
583 nf_ct_zone(ct) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200584 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800585 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800586 return 1;
587 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200588 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800589 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800590 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800591
Patrick McHardyba419af2008-01-31 04:39:23 -0800592 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800593}
Patrick McHardy13b18332006-12-02 22:11:25 -0800594EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800595
Patrick McHardy7ae77302007-07-07 22:37:38 -0700596#define NF_CT_EVICTION_RANGE 8
597
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800598/* There's a small race here where we may free a just-assured
599 connection. Too bad: we're in trouble anyway. */
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200600static noinline int early_drop(struct net *net, unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800601{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700602 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800603 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700604 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100605 struct hlist_nulls_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700606 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800607 int dropped = 0;
608
Patrick McHardy76507f62008-01-31 04:38:38 -0800609 rcu_read_lock();
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800610 for (i = 0; i < net->ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100611 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
612 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700613 tmp = nf_ct_tuplehash_to_ctrack(h);
614 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
615 ct = tmp;
616 cnt++;
617 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800618
Changli Gao5ae27aa22009-11-05 14:51:31 +0100619 if (ct != NULL) {
620 if (likely(!nf_ct_is_dying(ct) &&
621 atomic_inc_not_zero(&ct->ct_general.use)))
622 break;
623 else
624 ct = NULL;
625 }
626
627 if (cnt >= NF_CT_EVICTION_RANGE)
Patrick McHardy7ae77302007-07-07 22:37:38 -0700628 break;
Changli Gao5ae27aa22009-11-05 14:51:31 +0100629
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800630 hash = (hash + 1) % net->ct.htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800631 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800632 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800633
634 if (!ct)
635 return dropped;
636
637 if (del_timer(&ct->timeout)) {
638 death_by_timeout((unsigned long)ct);
Pablo Neira Ayuso741385112012-03-06 01:22:55 +0000639 /* Check if we indeed killed this entry. Reliable event
640 delivery may have inserted it into the dying list. */
641 if (test_bit(IPS_DYING_BIT, &ct->status)) {
642 dropped = 1;
643 NF_CT_STAT_INC_ATOMIC(net, early_drop);
644 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800645 }
646 nf_ct_put(ct);
647 return dropped;
648}
649
Changli Gaof682cef2011-01-05 04:23:23 +0000650void init_nf_conntrack_hash_rnd(void)
651{
652 unsigned int rand;
653
654 /*
655 * Why not initialize nf_conntrack_rnd in a "init()" function ?
656 * Because there isn't enough entropy when system initializing,
657 * and we initialize it as late as possible.
658 */
659 do {
660 get_random_bytes(&rand, sizeof(rand));
661 } while (!rand);
662 cmpxchg(&nf_conntrack_hash_rnd, 0, rand);
663}
664
Changli Gao99f07e92010-09-21 17:49:20 +0200665static struct nf_conn *
666__nf_conntrack_alloc(struct net *net, u16 zone,
667 const struct nf_conntrack_tuple *orig,
668 const struct nf_conntrack_tuple *repl,
669 gfp_t gfp, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800670{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000671 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800672
Changli Gaob2390962010-09-16 19:55:03 +0200673 if (unlikely(!nf_conntrack_hash_rnd)) {
Changli Gaof682cef2011-01-05 04:23:23 +0000674 init_nf_conntrack_hash_rnd();
Changli Gao99f07e92010-09-21 17:49:20 +0200675 /* recompute the hash as nf_conntrack_hash_rnd is initialized */
676 hash = hash_conntrack_raw(orig, zone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800677 }
678
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700679 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200680 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700681
Patrick McHardy76eb9462008-01-31 04:41:44 -0800682 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200683 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Changli Gao99f07e92010-09-21 17:49:20 +0200684 if (!early_drop(net, hash_bucket(hash, net))) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200685 atomic_dec(&net->ct.count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800686 if (net_ratelimit())
687 printk(KERN_WARNING
688 "nf_conntrack: table full, dropping"
689 " packet.\n");
690 return ERR_PTR(-ENOMEM);
691 }
692 }
693
Eric Dumazet941297f2009-07-16 14:03:40 +0200694 /*
695 * Do not use kmem_cache_zalloc(), as this cache uses
696 * SLAB_DESTROY_BY_RCU.
697 */
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800698 ct = kmem_cache_alloc(net->ct.nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800699 if (ct == NULL) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200700 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700701 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800702 }
Eric Dumazet941297f2009-07-16 14:03:40 +0200703 /*
704 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
705 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
706 */
707 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100708 offsetof(struct nf_conn, proto) -
709 offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
Patrick McHardy440f0d52009-06-10 14:32:47 +0200710 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800711 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
Eric Dumazet941297f2009-07-16 14:03:40 +0200712 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800713 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Changli Gao99f07e92010-09-21 17:49:20 +0200714 /* save hash for reusing when confirming */
715 *(unsigned long *)(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev) = hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800716 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800717 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000718 write_pnet(&ct->ct_net, net);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100719#ifdef CONFIG_NF_CONNTRACK_ZONES
720 if (zone) {
721 struct nf_conntrack_zone *nf_ct_zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800722
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100723 nf_ct_zone = nf_ct_ext_add(ct, NF_CT_EXT_ZONE, GFP_ATOMIC);
724 if (!nf_ct_zone)
725 goto out_free;
726 nf_ct_zone->id = zone;
727 }
728#endif
Eric Dumazet941297f2009-07-16 14:03:40 +0200729 /*
730 * changes to lookup keys must be done before setting refcnt to 1
731 */
732 smp_wmb();
733 atomic_set(&ct->ct_general.use, 1);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800734 return ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100735
736#ifdef CONFIG_NF_CONNTRACK_ZONES
737out_free:
Pablo Neira Ayusod96fc652012-04-03 16:45:54 +0200738 atomic_dec(&net->ct.count);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100739 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
740 return ERR_PTR(-ENOMEM);
741#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800742}
Changli Gao99f07e92010-09-21 17:49:20 +0200743
744struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
745 const struct nf_conntrack_tuple *orig,
746 const struct nf_conntrack_tuple *repl,
747 gfp_t gfp)
748{
749 return __nf_conntrack_alloc(net, zone, orig, repl, gfp, 0);
750}
Patrick McHardy13b18332006-12-02 22:11:25 -0800751EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800752
Patrick McHardyc88130b2008-01-31 04:42:11 -0800753void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800754{
Eric Dumazet1d452092009-03-24 14:26:50 +0100755 struct net *net = nf_ct_net(ct);
756
Patrick McHardyceeff752008-06-11 17:51:10 -0700757 nf_ct_ext_destroy(ct);
Eric Dumazet1d452092009-03-24 14:26:50 +0100758 atomic_dec(&net->ct.count);
Eric Dumazetea781f12009-03-25 21:05:46 +0100759 nf_ct_ext_free(ct);
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800760 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800761}
Patrick McHardy13b18332006-12-02 22:11:25 -0800762EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800763
764/* Allocate a new conntrack: we return -ENOMEM if classification
765 failed due to stress. Otherwise it really is unclassifiable. */
766static struct nf_conntrack_tuple_hash *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100767init_conntrack(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200768 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800769 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100770 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800771 struct sk_buff *skb,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100772 unsigned int dataoff, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800773{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800774 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700775 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800776 struct nf_conntrack_tuple repl_tuple;
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100777 struct nf_conntrack_ecache *ecache;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800778 struct nf_conntrack_expect *exp;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100779 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100780 struct nf_conn_timeout *timeout_ext;
781 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800782
Martin Josefsson605dcad2006-11-29 02:35:06 +0100783 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700784 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800785 return NULL;
786 }
787
Changli Gao99f07e92010-09-21 17:49:20 +0200788 ct = __nf_conntrack_alloc(net, zone, tuple, &repl_tuple, GFP_ATOMIC,
789 hash);
Joe Perches0a9ee812011-08-29 14:17:25 -0700790 if (IS_ERR(ct))
Patrick McHardyc88130b2008-01-31 04:42:11 -0800791 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800792
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100793 timeout_ext = tmpl ? nf_ct_timeout_find(tmpl) : NULL;
794 if (timeout_ext)
795 timeouts = NF_CT_TIMEOUT_EXT_DATA(timeout_ext);
796 else
797 timeouts = l4proto->get_timeouts(net);
798
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100799 if (!l4proto->new(ct, skb, dataoff, timeouts)) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800800 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700801 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800802 return NULL;
803 }
804
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100805 if (timeout_ext)
806 nf_ct_timeout_ext_add(ct, timeout_ext->timeout, GFP_ATOMIC);
807
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700808 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100809 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100810
811 ecache = tmpl ? nf_ct_ecache_find(tmpl) : NULL;
812 nf_ct_ecache_ext_add(ct, ecache ? ecache->ctmask : 0,
813 ecache ? ecache->expmask : 0,
814 GFP_ATOMIC);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700815
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800816 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100817 exp = nf_ct_find_expectation(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800818 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700819 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800820 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800821 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800822 __set_bit(IPS_EXPECTED_BIT, &ct->status);
823 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700824 if (exp->helper) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800825 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700826 if (help)
Eric Dumazetcf778b02012-01-12 04:41:32 +0000827 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700828 }
829
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800830#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800831 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800832#endif
James Morris7c9728c2006-06-09 00:31:46 -0700833#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800834 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700835#endif
Patrick McHardyc88130b2008-01-31 04:42:11 -0800836 nf_conntrack_get(&ct->master->ct_general);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200837 NF_CT_STAT_INC(net, expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800838 } else {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100839 __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200840 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800841 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800842
843 /* Overload tuple linked list to put us in unconfirmed list. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100844 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan63c9a262008-10-08 11:35:04 +0200845 &net->ct.unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800846
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800847 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800848
849 if (exp) {
850 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800851 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700852 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800853 }
854
Patrick McHardyc88130b2008-01-31 04:42:11 -0800855 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800856}
857
858/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
859static inline struct nf_conn *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100860resolve_normal_ct(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyana702a652008-10-08 11:35:04 +0200861 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800862 unsigned int dataoff,
863 u_int16_t l3num,
864 u_int8_t protonum,
865 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100866 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800867 int *set_reply,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100868 enum ip_conntrack_info *ctinfo)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800869{
870 struct nf_conntrack_tuple tuple;
871 struct nf_conntrack_tuple_hash *h;
872 struct nf_conn *ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100873 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Changli Gao99f07e92010-09-21 17:49:20 +0200874 u32 hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800875
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300876 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800877 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100878 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700879 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800880 return NULL;
881 }
882
883 /* look for tuple match */
Changli Gao99f07e92010-09-21 17:49:20 +0200884 hash = hash_conntrack_raw(&tuple, zone);
885 h = __nf_conntrack_find_get(net, zone, &tuple, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800886 if (!h) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100887 h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100888 skb, dataoff, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800889 if (!h)
890 return NULL;
891 if (IS_ERR(h))
892 return (void *)h;
893 }
894 ct = nf_ct_tuplehash_to_ctrack(h);
895
896 /* It exists; we have (non-exclusive) reference. */
897 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
Eric Dumazetfb048832011-05-19 15:44:27 +0200898 *ctinfo = IP_CT_ESTABLISHED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800899 /* Please set reply bit if this packet OK */
900 *set_reply = 1;
901 } else {
902 /* Once we've had two way comms, always ESTABLISHED. */
903 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700904 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800905 *ctinfo = IP_CT_ESTABLISHED;
906 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700907 pr_debug("nf_conntrack_in: related packet for %p\n",
908 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800909 *ctinfo = IP_CT_RELATED;
910 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700911 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800912 *ctinfo = IP_CT_NEW;
913 }
914 *set_reply = 0;
915 }
916 skb->nfct = &ct->ct_general;
917 skb->nfctinfo = *ctinfo;
918 return ct;
919}
920
921unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +0200922nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
923 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800924{
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100925 struct nf_conn *ct, *tmpl = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800926 enum ip_conntrack_info ctinfo;
927 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100928 struct nf_conntrack_l4proto *l4proto;
Pablo Neira Ayuso24de58f2012-02-29 02:19:19 +0100929 struct nf_conn_timeout *timeout_ext;
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100930 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800931 unsigned int dataoff;
932 u_int8_t protonum;
933 int set_reply = 0;
934 int ret;
935
Herbert Xu3db05fe2007-10-15 00:53:15 -0700936 if (skb->nfct) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100937 /* Previously seen (loopback or untracked)? Ignore. */
938 tmpl = (struct nf_conn *)skb->nfct;
939 if (!nf_ct_is_template(tmpl)) {
940 NF_CT_STAT_INC_ATOMIC(net, ignore);
941 return NF_ACCEPT;
942 }
943 skb->nfct = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800944 }
945
Patrick McHardy923f4902007-02-12 11:12:57 -0800946 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200947 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700948 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700949 &dataoff, &protonum);
950 if (ret <= 0) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300951 pr_debug("not prepared to track yet or error occurred\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200952 NF_CT_STAT_INC_ATOMIC(net, error);
953 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100954 ret = -ret;
955 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800956 }
957
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200958 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800959
960 /* It may be an special packet, error, unclean...
961 * inverse of the return code tells to the netfilter
962 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200963 if (l4proto->error != NULL) {
Patrick McHardy8fea97e2010-02-15 17:45:08 +0100964 ret = l4proto->error(net, tmpl, skb, dataoff, &ctinfo,
965 pf, hooknum);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200966 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200967 NF_CT_STAT_INC_ATOMIC(net, error);
968 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100969 ret = -ret;
970 goto out;
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200971 }
Pablo Neira Ayuso88ed01d2011-06-02 15:08:45 +0200972 /* ICMP[v6] protocol trackers may assign one conntrack. */
973 if (skb->nfct)
974 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800975 }
976
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100977 ct = resolve_normal_ct(net, tmpl, skb, dataoff, pf, protonum,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100978 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800979 if (!ct) {
980 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200981 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100982 ret = NF_ACCEPT;
983 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800984 }
985
986 if (IS_ERR(ct)) {
987 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200988 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100989 ret = NF_DROP;
990 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800991 }
992
Herbert Xu3db05fe2007-10-15 00:53:15 -0700993 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800994
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100995 /* Decide what timeout policy we want to apply to this flow. */
996 timeout_ext = nf_ct_timeout_find(ct);
997 if (timeout_ext)
998 timeouts = NF_CT_TIMEOUT_EXT_DATA(timeout_ext);
999 else
1000 timeouts = l4proto->get_timeouts(net);
1001
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +01001002 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum, timeouts);
Christoph Paaschec8d5402009-03-16 15:51:29 +01001003 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001004 /* Invalid: inverse of the return code tells
1005 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -07001006 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -07001007 nf_conntrack_put(skb->nfct);
1008 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001009 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +01001010 if (ret == -NF_DROP)
1011 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001012 ret = -ret;
1013 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001014 }
1015
1016 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Patrick McHardy858b31332010-02-03 13:48:53 +01001017 nf_conntrack_event_cache(IPCT_REPLY, ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001018out:
Pablo Neira Ayusoc3174282011-02-09 08:08:20 +01001019 if (tmpl) {
1020 /* Special case: we have to repeat this hook, assign the
1021 * template again to this packet. We assume that this packet
1022 * has no conntrack assigned. This is used by nf_ct_tcp. */
1023 if (ret == NF_REPEAT)
1024 skb->nfct = (struct nf_conntrack *)tmpl;
1025 else
1026 nf_ct_put(tmpl);
1027 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001028
1029 return ret;
1030}
Patrick McHardy13b18332006-12-02 22:11:25 -08001031EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001032
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001033bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
1034 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001035{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001036 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -08001037
1038 rcu_read_lock();
1039 ret = nf_ct_invert_tuple(inverse, orig,
1040 __nf_ct_l3proto_find(orig->src.l3num),
1041 __nf_ct_l4proto_find(orig->src.l3num,
1042 orig->dst.protonum));
1043 rcu_read_unlock();
1044 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001045}
Patrick McHardy13b18332006-12-02 22:11:25 -08001046EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001047
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001048/* Alter reply tuple (maybe alter helper). This is for NAT, and is
1049 implicitly racy: see __nf_conntrack_confirm */
1050void nf_conntrack_alter_reply(struct nf_conn *ct,
1051 const struct nf_conntrack_tuple *newreply)
1052{
1053 struct nf_conn_help *help = nfct_help(ct);
1054
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001055 /* Should be unconfirmed, so not in hash table yet */
1056 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
1057
Patrick McHardy0d537782007-07-07 22:39:38 -07001058 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +02001059 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001060
1061 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +02001062 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001063 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001064
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001065 rcu_read_lock();
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001066 __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001067 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001068}
Patrick McHardy13b18332006-12-02 22:11:25 -08001069EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001070
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001071/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
1072void __nf_ct_refresh_acct(struct nf_conn *ct,
1073 enum ip_conntrack_info ctinfo,
1074 const struct sk_buff *skb,
1075 unsigned long extra_jiffies,
1076 int do_acct)
1077{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001078 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
1079 NF_CT_ASSERT(skb);
1080
Eric Leblond997ae832006-05-29 18:24:20 -07001081 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -08001082 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
1083 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -07001084
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001085 /* If not in hash table, timer will not be active yet */
1086 if (!nf_ct_is_confirmed(ct)) {
1087 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001088 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +01001089 unsigned long newtime = jiffies + extra_jiffies;
1090
1091 /* Only update the timeout if the new timeout is at least
1092 HZ jiffies from the old timeout. Need del_timer for race
1093 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001094 if (newtime - ct->timeout.expires >= HZ)
1095 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001096 }
1097
Patrick McHardy47d95042008-01-31 04:36:31 -08001098acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001099 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001100 struct nf_conn_counter *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +01001101
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001102 acct = nf_conn_acct_find(ct);
1103 if (acct) {
Eric Dumazetb3e0bfa2011-12-14 14:45:20 +01001104 atomic64_inc(&acct[CTINFO2DIR(ctinfo)].packets);
1105 atomic64_add(skb->len, &acct[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001106 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001107 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001108}
Patrick McHardy13b18332006-12-02 22:11:25 -08001109EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001110
David S. Miller4c889492008-07-14 20:22:38 -07001111bool __nf_ct_kill_acct(struct nf_conn *ct,
1112 enum ip_conntrack_info ctinfo,
1113 const struct sk_buff *skb,
1114 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -07001115{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001116 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001117 struct nf_conn_counter *acct;
1118
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001119 acct = nf_conn_acct_find(ct);
1120 if (acct) {
Eric Dumazetb3e0bfa2011-12-14 14:45:20 +01001121 atomic64_inc(&acct[CTINFO2DIR(ctinfo)].packets);
1122 atomic64_add(skb->len - skb_network_offset(skb),
1123 &acct[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001124 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001125 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001126
David S. Miller4c889492008-07-14 20:22:38 -07001127 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -07001128 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -07001129 return true;
1130 }
1131 return false;
Patrick McHardy51091762008-06-09 15:59:06 -07001132}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001133EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -07001134
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001135#ifdef CONFIG_NF_CONNTRACK_ZONES
1136static struct nf_ct_ext_type nf_ct_zone_extend __read_mostly = {
1137 .len = sizeof(struct nf_conntrack_zone),
1138 .align = __alignof__(struct nf_conntrack_zone),
1139 .id = NF_CT_EXT_ZONE,
1140};
1141#endif
1142
Igor Maravićc0cd1152011-12-12 02:58:24 +00001143#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001144
1145#include <linux/netfilter/nfnetlink.h>
1146#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -08001147#include <linux/mutex.h>
1148
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001149/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
1150 * in ip_conntrack_core, since we don't want the protocols to autoload
1151 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -07001152int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001153 const struct nf_conntrack_tuple *tuple)
1154{
Patrick McHardy77236b62007-12-17 22:29:45 -08001155 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
1156 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001157 return 0;
1158
Patrick McHardydf6fb862007-09-28 14:37:03 -07001159nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001160 return -1;
1161}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001162EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001163
Patrick McHardyf73e9242007-09-28 14:39:55 -07001164const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
1165 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
1166 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001167};
Patrick McHardyf73e9242007-09-28 14:39:55 -07001168EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001169
Patrick McHardyfdf70832007-09-28 14:37:41 -07001170int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001171 struct nf_conntrack_tuple *t)
1172{
Patrick McHardydf6fb862007-09-28 14:37:03 -07001173 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001174 return -EINVAL;
1175
Patrick McHardy77236b62007-12-17 22:29:45 -08001176 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
1177 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001178
1179 return 0;
1180}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001181EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +01001182
1183int nf_ct_port_nlattr_tuple_size(void)
1184{
1185 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1186}
1187EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001188#endif
1189
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001190/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardyb334aad2008-01-14 23:48:57 -08001191static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001192{
1193 struct nf_conn *ct;
1194 enum ip_conntrack_info ctinfo;
1195
1196 /* This ICMP is in reverse direction to the packet which caused it */
1197 ct = nf_ct_get(skb, &ctinfo);
1198 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
Eric Dumazetfb048832011-05-19 15:44:27 +02001199 ctinfo = IP_CT_RELATED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001200 else
1201 ctinfo = IP_CT_RELATED;
1202
1203 /* Attach to new skbuff, and increment count */
1204 nskb->nfct = &ct->ct_general;
1205 nskb->nfctinfo = ctinfo;
1206 nf_conntrack_get(nskb->nfct);
1207}
1208
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001209/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001210static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001211get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001212 void *data, unsigned int *bucket)
1213{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001214 struct nf_conntrack_tuple_hash *h;
1215 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +01001216 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001217
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001218 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001219 for (; *bucket < net->ct.htable_size; (*bucket)++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001220 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001221 ct = nf_ct_tuplehash_to_ctrack(h);
1222 if (iter(ct, data))
1223 goto found;
1224 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001225 }
Eric Dumazetea781f12009-03-25 21:05:46 +01001226 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001227 ct = nf_ct_tuplehash_to_ctrack(h);
1228 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -08001229 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001230 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001231 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001232 return NULL;
1233found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001234 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001235 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001236 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001237}
1238
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001239void nf_ct_iterate_cleanup(struct net *net,
1240 int (*iter)(struct nf_conn *i, void *data),
1241 void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001242{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001243 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001244 unsigned int bucket = 0;
1245
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001246 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001247 /* Time to push up daises... */
1248 if (del_timer(&ct->timeout))
1249 death_by_timeout((unsigned long)ct);
1250 /* ... else the timer will get him soon. */
1251
1252 nf_ct_put(ct);
1253 }
1254}
Patrick McHardy13b18332006-12-02 22:11:25 -08001255EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001256
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001257struct __nf_ct_flush_report {
1258 u32 pid;
1259 int report;
1260};
1261
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001262static int kill_report(struct nf_conn *i, void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001263{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001264 struct __nf_ct_flush_report *fr = (struct __nf_ct_flush_report *)data;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001265 struct nf_conn_tstamp *tstamp;
1266
1267 tstamp = nf_conn_tstamp_find(i);
1268 if (tstamp && tstamp->stop == 0)
1269 tstamp->stop = ktime_to_ns(ktime_get_real());
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001270
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001271 /* If we fail to deliver the event, death_by_timeout() will retry */
1272 if (nf_conntrack_event_report(IPCT_DESTROY, i,
1273 fr->pid, fr->report) < 0)
1274 return 1;
1275
1276 /* Avoid the delivery of the destroy event in death_by_timeout(). */
1277 set_bit(IPS_DYING_BIT, &i->status);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001278 return 1;
1279}
1280
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001281static int kill_all(struct nf_conn *i, void *data)
1282{
1283 return 1;
1284}
1285
Patrick McHardyd862a662011-01-14 15:45:56 +01001286void nf_ct_free_hashtable(void *hash, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001287{
Patrick McHardyd862a662011-01-14 15:45:56 +01001288 if (is_vmalloc_addr(hash))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001289 vfree(hash);
1290 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001291 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001292 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001293}
Patrick McHardyac565e52007-07-07 22:30:08 -07001294EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001295
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001296void nf_conntrack_flush_report(struct net *net, u32 pid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001297{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001298 struct __nf_ct_flush_report fr = {
1299 .pid = pid,
1300 .report = report,
1301 };
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001302 nf_ct_iterate_cleanup(net, kill_report, &fr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001303}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001304EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001305
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001306static void nf_ct_release_dying_list(struct net *net)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001307{
1308 struct nf_conntrack_tuple_hash *h;
1309 struct nf_conn *ct;
1310 struct hlist_nulls_node *n;
1311
1312 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001313 hlist_nulls_for_each_entry(h, n, &net->ct.dying, hnnode) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001314 ct = nf_ct_tuplehash_to_ctrack(h);
1315 /* never fails to remove them, no listeners at this point */
1316 nf_ct_kill(ct);
1317 }
1318 spin_unlock_bh(&nf_conntrack_lock);
1319}
1320
Eric Dumazetb3c51632010-06-09 14:43:38 +02001321static int untrack_refs(void)
1322{
1323 int cnt = 0, cpu;
1324
1325 for_each_possible_cpu(cpu) {
1326 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
1327
1328 cnt += atomic_read(&ct->ct_general.use) - 1;
1329 }
1330 return cnt;
1331}
1332
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001333static void nf_conntrack_cleanup_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001334{
Eric Dumazetb3c51632010-06-09 14:43:38 +02001335 while (untrack_refs() > 0)
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001336 schedule();
1337
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001338 nf_conntrack_helper_fini();
1339 nf_conntrack_proto_fini();
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001340#ifdef CONFIG_NF_CONNTRACK_ZONES
1341 nf_ct_extend_unregister(&nf_ct_zone_extend);
1342#endif
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001343}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001344
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001345static void nf_conntrack_cleanup_net(struct net *net)
1346{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001347 i_see_dead_people:
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001348 nf_ct_iterate_cleanup(net, kill_all, NULL);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001349 nf_ct_release_dying_list(net);
Alexey Dobriyan49ac8712008-10-08 11:35:03 +02001350 if (atomic_read(&net->ct.count) != 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001351 schedule();
1352 goto i_see_dead_people;
1353 }
1354
Patrick McHardyd862a662011-01-14 15:45:56 +01001355 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
Pablo Neira Ayusodd705072012-02-28 23:36:48 +01001356 nf_conntrack_timeout_fini(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001357 nf_conntrack_ecache_fini(net);
Stephen Hemmingerfe8f6612011-03-14 19:20:44 +01001358 nf_conntrack_tstamp_fini(net);
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001359 nf_conntrack_acct_fini(net);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001360 nf_conntrack_expect_fini(net);
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001361 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1362 kfree(net->ct.slabname);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001363 free_percpu(net->ct.stat);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001364}
1365
1366/* Mishearing the voices in his head, our hero wonders how he's
1367 supposed to kill the mall. */
1368void nf_conntrack_cleanup(struct net *net)
1369{
1370 if (net_eq(net, &init_net))
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001371 RCU_INIT_POINTER(ip_ct_attach, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001372
1373 /* This makes sure all current packets have passed through
1374 netfilter framework. Roll on, two-stage module
1375 delete... */
1376 synchronize_net();
1377
1378 nf_conntrack_cleanup_net(net);
1379
1380 if (net_eq(net, &init_net)) {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001381 RCU_INIT_POINTER(nf_ct_destroy, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001382 nf_conntrack_cleanup_init_net();
1383 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001384}
1385
Patrick McHardyd862a662011-01-14 15:45:56 +01001386void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001387{
Eric Dumazetea781f12009-03-25 21:05:46 +01001388 struct hlist_nulls_head *hash;
1389 unsigned int nr_slots, i;
1390 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001391
Eric Dumazetea781f12009-03-25 21:05:46 +01001392 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1393 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1394 sz = nr_slots * sizeof(struct hlist_nulls_head);
1395 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1396 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001397 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001398 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazet966567b2011-12-19 16:01:38 -05001399 hash = vzalloc(sz);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001400 }
1401
Eric Dumazetea781f12009-03-25 21:05:46 +01001402 if (hash && nulls)
1403 for (i = 0; i < nr_slots; i++)
1404 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001405
1406 return hash;
1407}
Patrick McHardyac565e52007-07-07 22:30:08 -07001408EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001409
Patrick McHardyfae718d2007-12-24 21:09:10 -08001410int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001411{
Patrick McHardyd862a662011-01-14 15:45:56 +01001412 int i, bucket;
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001413 unsigned int hashsize, old_size;
Eric Dumazetea781f12009-03-25 21:05:46 +01001414 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001415 struct nf_conntrack_tuple_hash *h;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001416 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001417
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001418 if (current->nsproxy->net_ns != &init_net)
1419 return -EOPNOTSUPP;
1420
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001421 /* On boot, we can set this without any fancy locking. */
1422 if (!nf_conntrack_htable_size)
1423 return param_set_uint(val, kp);
1424
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001425 hashsize = simple_strtoul(val, NULL, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001426 if (!hashsize)
1427 return -EINVAL;
1428
Patrick McHardyd862a662011-01-14 15:45:56 +01001429 hash = nf_ct_alloc_hashtable(&hashsize, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001430 if (!hash)
1431 return -ENOMEM;
1432
Patrick McHardy76507f62008-01-31 04:38:38 -08001433 /* Lookups in the old hash might happen in parallel, which means we
1434 * might get false negatives during connection lookup. New connections
1435 * created because of a false negative won't make it into the hash
1436 * though since that required taking the lock.
1437 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001438 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001439 for (i = 0; i < init_net.ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001440 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1441 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1442 struct nf_conntrack_tuple_hash, hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001443 ct = nf_ct_tuplehash_to_ctrack(h);
Eric Dumazetea781f12009-03-25 21:05:46 +01001444 hlist_nulls_del_rcu(&h->hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001445 bucket = __hash_conntrack(&h->tuple, nf_ct_zone(ct),
Changli Gao99f07e92010-09-21 17:49:20 +02001446 hashsize);
Eric Dumazetea781f12009-03-25 21:05:46 +01001447 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001448 }
1449 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001450 old_size = init_net.ct.htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001451 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001452
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001453 init_net.ct.htable_size = nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001454 init_net.ct.hash = hash;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001455 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001456
Patrick McHardyd862a662011-01-14 15:45:56 +01001457 nf_ct_free_hashtable(old_hash, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001458 return 0;
1459}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001460EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001461
Patrick McHardyfae718d2007-12-24 21:09:10 -08001462module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001463 &nf_conntrack_htable_size, 0600);
1464
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001465void nf_ct_untracked_status_or(unsigned long bits)
1466{
Eric Dumazetb3c51632010-06-09 14:43:38 +02001467 int cpu;
1468
1469 for_each_possible_cpu(cpu)
1470 per_cpu(nf_conntrack_untracked, cpu).status |= bits;
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001471}
1472EXPORT_SYMBOL_GPL(nf_ct_untracked_status_or);
1473
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001474static int nf_conntrack_init_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001475{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001476 int max_factor = 8;
Eric Dumazetb3c51632010-06-09 14:43:38 +02001477 int ret, cpu;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001478
1479 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001480 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001481 if (!nf_conntrack_htable_size) {
1482 nf_conntrack_htable_size
Jan Beulich44813742009-09-21 17:03:05 -07001483 = (((totalram_pages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001484 / sizeof(struct hlist_head));
Jan Beulich44813742009-09-21 17:03:05 -07001485 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001486 nf_conntrack_htable_size = 16384;
1487 if (nf_conntrack_htable_size < 32)
1488 nf_conntrack_htable_size = 32;
1489
1490 /* Use a max. factor of four by default to get the same max as
1491 * with the old struct list_heads. When a table size is given
1492 * we use the old value of 8 to avoid reducing the max.
1493 * entries. */
1494 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001495 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001496 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001497
Stephen Hemminger654d0fb2010-05-13 15:02:08 +02001498 printk(KERN_INFO "nf_conntrack version %s (%u buckets, %d max)\n",
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001499 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1500 nf_conntrack_max);
1501
Patrick McHardyac5357e2007-03-14 16:38:25 -07001502 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001503 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001504 goto err_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001505
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001506 ret = nf_conntrack_helper_init();
1507 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001508 goto err_helper;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001509
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001510#ifdef CONFIG_NF_CONNTRACK_ZONES
1511 ret = nf_ct_extend_register(&nf_ct_zone_extend);
1512 if (ret < 0)
1513 goto err_extend;
1514#endif
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001515 /* Set up fake conntrack: to never be deleted, not in any hashes */
Eric Dumazetb3c51632010-06-09 14:43:38 +02001516 for_each_possible_cpu(cpu) {
1517 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001518 write_pnet(&ct->ct_net, &init_net);
1519 atomic_set(&ct->ct_general.use, 1);
1520 }
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001521 /* - and look it like as a confirmed connection */
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001522 nf_ct_untracked_status_or(IPS_CONFIRMED | IPS_UNTRACKED);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001523 return 0;
1524
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001525#ifdef CONFIG_NF_CONNTRACK_ZONES
1526err_extend:
1527 nf_conntrack_helper_fini();
1528#endif
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001529err_helper:
1530 nf_conntrack_proto_fini();
1531err_proto:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001532 return ret;
1533}
1534
Eric Dumazet8cc20192009-06-22 14:13:55 +02001535/*
1536 * We need to use special "null" values, not used in hash table
1537 */
1538#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1539#define DYING_NULLS_VAL ((1<<30)+1)
1540
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001541static int nf_conntrack_init_net(struct net *net)
1542{
1543 int ret;
1544
1545 atomic_set(&net->ct.count, 0);
Eric Dumazet8cc20192009-06-22 14:13:55 +02001546 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, UNCONFIRMED_NULLS_VAL);
1547 INIT_HLIST_NULLS_HEAD(&net->ct.dying, DYING_NULLS_VAL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001548 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1549 if (!net->ct.stat) {
1550 ret = -ENOMEM;
1551 goto err_stat;
1552 }
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001553
1554 net->ct.slabname = kasprintf(GFP_KERNEL, "nf_conntrack_%p", net);
1555 if (!net->ct.slabname) {
1556 ret = -ENOMEM;
1557 goto err_slabname;
1558 }
1559
1560 net->ct.nf_conntrack_cachep = kmem_cache_create(net->ct.slabname,
1561 sizeof(struct nf_conn), 0,
1562 SLAB_DESTROY_BY_RCU, NULL);
1563 if (!net->ct.nf_conntrack_cachep) {
1564 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1565 ret = -ENOMEM;
1566 goto err_cache;
1567 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001568
1569 net->ct.htable_size = nf_conntrack_htable_size;
Patrick McHardyd862a662011-01-14 15:45:56 +01001570 net->ct.hash = nf_ct_alloc_hashtable(&net->ct.htable_size, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001571 if (!net->ct.hash) {
1572 ret = -ENOMEM;
1573 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1574 goto err_hash;
1575 }
1576 ret = nf_conntrack_expect_init(net);
1577 if (ret < 0)
1578 goto err_expect;
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001579 ret = nf_conntrack_acct_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001580 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001581 goto err_acct;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001582 ret = nf_conntrack_tstamp_init(net);
1583 if (ret < 0)
1584 goto err_tstamp;
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001585 ret = nf_conntrack_ecache_init(net);
1586 if (ret < 0)
1587 goto err_ecache;
Pablo Neira Ayusodd705072012-02-28 23:36:48 +01001588 ret = nf_conntrack_timeout_init(net);
1589 if (ret < 0)
1590 goto err_timeout;
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001591
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001592 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001593
Pablo Neira Ayusodd705072012-02-28 23:36:48 +01001594err_timeout:
1595 nf_conntrack_timeout_fini(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001596err_ecache:
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001597 nf_conntrack_tstamp_fini(net);
1598err_tstamp:
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001599 nf_conntrack_acct_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001600err_acct:
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001601 nf_conntrack_expect_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001602err_expect:
Patrick McHardyd862a662011-01-14 15:45:56 +01001603 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001604err_hash:
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001605 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1606err_cache:
1607 kfree(net->ct.slabname);
1608err_slabname:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001609 free_percpu(net->ct.stat);
1610err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001611 return ret;
1612}
1613
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -08001614s16 (*nf_ct_nat_offset)(const struct nf_conn *ct,
1615 enum ip_conntrack_dir dir,
1616 u32 seq);
1617EXPORT_SYMBOL_GPL(nf_ct_nat_offset);
1618
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001619int nf_conntrack_init(struct net *net)
1620{
1621 int ret;
1622
1623 if (net_eq(net, &init_net)) {
1624 ret = nf_conntrack_init_init_net();
1625 if (ret < 0)
1626 goto out_init_net;
1627 }
1628 ret = nf_conntrack_init_net(net);
1629 if (ret < 0)
1630 goto out_net;
1631
1632 if (net_eq(net, &init_net)) {
1633 /* For use by REJECT target */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001634 RCU_INIT_POINTER(ip_ct_attach, nf_conntrack_attach);
1635 RCU_INIT_POINTER(nf_ct_destroy, destroy_conntrack);
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -08001636
1637 /* Howto get NAT offsets */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001638 RCU_INIT_POINTER(nf_ct_nat_offset, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001639 }
1640 return 0;
1641
1642out_net:
1643 if (net_eq(net, &init_net))
1644 nf_conntrack_cleanup_init_net();
1645out_init_net:
1646 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001647}