Merge branch 'drm-nouveau-next' of git://git.freedesktop.org/git/nouveau/linux-2...
[deliverable/linux.git] / net / netfilter / nf_conntrack_core.c
CommitLineData
9fb9cbb1
YK
1/* 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
dc808fe2 6 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
9fb9cbb1
YK
7 * (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.
9fb9cbb1
YK
12 */
13
9fb9cbb1
YK
14#include <linux/types.h>
15#include <linux/netfilter.h>
16#include <linux/module.h>
d43c36dc 17#include <linux/sched.h>
9fb9cbb1
YK
18#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>
d7fe0f24 32#include <linux/mm.h>
d696c7bd 33#include <linux/nsproxy.h>
ea781f19 34#include <linux/rculist_nulls.h>
9fb9cbb1 35
9fb9cbb1
YK
36#include <net/netfilter/nf_conntrack.h>
37#include <net/netfilter/nf_conntrack_l3proto.h>
605dcad6 38#include <net/netfilter/nf_conntrack_l4proto.h>
77ab9cff 39#include <net/netfilter/nf_conntrack_expect.h>
9fb9cbb1
YK
40#include <net/netfilter/nf_conntrack_helper.h>
41#include <net/netfilter/nf_conntrack_core.h>
ecfab2c9 42#include <net/netfilter/nf_conntrack_extend.h>
58401572 43#include <net/netfilter/nf_conntrack_acct.h>
a0891aa6 44#include <net/netfilter/nf_conntrack_ecache.h>
5d0aa2cc 45#include <net/netfilter/nf_conntrack_zones.h>
e6a7d3c0 46#include <net/netfilter/nf_nat.h>
e17b666a 47#include <net/netfilter/nf_nat_core.h>
9fb9cbb1 48
dc808fe2 49#define NF_CONNTRACK_VERSION "0.5.0"
9fb9cbb1 50
e17b666a
PM
51int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
52 enum nf_nat_manip_type manip,
39938324 53 const struct nlattr *attr) __read_mostly;
e6a7d3c0
PNA
54EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
55
f8ba1aff 56DEFINE_SPINLOCK(nf_conntrack_lock);
13b18339 57EXPORT_SYMBOL_GPL(nf_conntrack_lock);
9fb9cbb1 58
e2b7606c 59unsigned int nf_conntrack_htable_size __read_mostly;
13b18339
PM
60EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
61
e478075c 62unsigned int nf_conntrack_max __read_mostly;
a999e683 63EXPORT_SYMBOL_GPL(nf_conntrack_max);
13b18339 64
b3c5163f
ED
65DEFINE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
66EXPORT_PER_CPU_SYMBOL(nf_conntrack_untracked);
13b18339 67
f682cefa 68unsigned int nf_conntrack_hash_rnd __read_mostly;
9fb9cbb1 69
99f07e91 70static u32 hash_conntrack_raw(const struct nf_conntrack_tuple *tuple, u16 zone)
9fb9cbb1 71{
0794935e 72 unsigned int n;
0794935e
PM
73
74 /* The direction must be ignored, so we hash everything up to the
75 * destination ports (which is a multiple of 4) and treat the last
76 * three bytes manually.
77 */
78 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
99f07e91
CG
79 return jhash2((u32 *)tuple, n, zone ^ nf_conntrack_hash_rnd ^
80 (((__force __u16)tuple->dst.u.all << 16) |
81 tuple->dst.protonum));
82}
83
84static u32 __hash_bucket(u32 hash, unsigned int size)
85{
86 return ((u64)hash * size) >> 32;
87}
88
89static u32 hash_bucket(u32 hash, const struct net *net)
90{
91 return __hash_bucket(hash, net->ct.htable_size);
92}
0794935e 93
99f07e91
CG
94static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
95 u16 zone, unsigned int size)
96{
97 return __hash_bucket(hash_conntrack_raw(tuple, zone), size);
9fb9cbb1
YK
98}
99
5d0aa2cc 100static inline u_int32_t hash_conntrack(const struct net *net, u16 zone,
d696c7bd 101 const struct nf_conntrack_tuple *tuple)
9fb9cbb1 102{
99f07e91 103 return __hash_conntrack(tuple, zone, net->ct.htable_size);
9fb9cbb1
YK
104}
105
5f2b4c90 106bool
9fb9cbb1
YK
107nf_ct_get_tuple(const struct sk_buff *skb,
108 unsigned int nhoff,
109 unsigned int dataoff,
110 u_int16_t l3num,
111 u_int8_t protonum,
112 struct nf_conntrack_tuple *tuple,
113 const struct nf_conntrack_l3proto *l3proto,
605dcad6 114 const struct nf_conntrack_l4proto *l4proto)
9fb9cbb1 115{
443a70d5 116 memset(tuple, 0, sizeof(*tuple));
9fb9cbb1
YK
117
118 tuple->src.l3num = l3num;
119 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
5f2b4c90 120 return false;
9fb9cbb1
YK
121
122 tuple->dst.protonum = protonum;
123 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
124
605dcad6 125 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
9fb9cbb1 126}
13b18339 127EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
9fb9cbb1 128
5f2b4c90
JE
129bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
130 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
e2a3123f
YK
131{
132 struct nf_conntrack_l3proto *l3proto;
133 struct nf_conntrack_l4proto *l4proto;
134 unsigned int protoff;
135 u_int8_t protonum;
136 int ret;
137
138 rcu_read_lock();
139
140 l3proto = __nf_ct_l3proto_find(l3num);
141 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
142 if (ret != NF_ACCEPT) {
143 rcu_read_unlock();
5f2b4c90 144 return false;
e2a3123f
YK
145 }
146
147 l4proto = __nf_ct_l4proto_find(l3num, protonum);
148
149 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
150 l3proto, l4proto);
151
152 rcu_read_unlock();
153 return ret;
154}
155EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
156
5f2b4c90 157bool
9fb9cbb1
YK
158nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
159 const struct nf_conntrack_tuple *orig,
160 const struct nf_conntrack_l3proto *l3proto,
605dcad6 161 const struct nf_conntrack_l4proto *l4proto)
9fb9cbb1 162{
443a70d5 163 memset(inverse, 0, sizeof(*inverse));
9fb9cbb1
YK
164
165 inverse->src.l3num = orig->src.l3num;
166 if (l3proto->invert_tuple(inverse, orig) == 0)
5f2b4c90 167 return false;
9fb9cbb1
YK
168
169 inverse->dst.dir = !orig->dst.dir;
170
171 inverse->dst.protonum = orig->dst.protonum;
605dcad6 172 return l4proto->invert_tuple(inverse, orig);
9fb9cbb1 173}
13b18339 174EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
9fb9cbb1 175
9fb9cbb1
YK
176static void
177clean_from_lists(struct nf_conn *ct)
178{
0d53778e 179 pr_debug("clean_from_lists(%p)\n", ct);
ea781f19
ED
180 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
181 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
9fb9cbb1
YK
182
183 /* Destroy all pending expectations */
c1d10adb 184 nf_ct_remove_expectations(ct);
9fb9cbb1
YK
185}
186
187static void
188destroy_conntrack(struct nf_conntrack *nfct)
189{
190 struct nf_conn *ct = (struct nf_conn *)nfct;
0d55af87 191 struct net *net = nf_ct_net(ct);
605dcad6 192 struct nf_conntrack_l4proto *l4proto;
9fb9cbb1 193
0d53778e 194 pr_debug("destroy_conntrack(%p)\n", ct);
9fb9cbb1
YK
195 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
196 NF_CT_ASSERT(!timer_pending(&ct->timeout));
197
9fb9cbb1
YK
198 /* To make sure we don't get any weird locking issues here:
199 * destroy_conntrack() MUST NOT be called with a write lock
200 * to nf_conntrack_lock!!! -HW */
923f4902 201 rcu_read_lock();
5e8fbe2a 202 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
605dcad6
MJ
203 if (l4proto && l4proto->destroy)
204 l4proto->destroy(ct);
9fb9cbb1 205
982d9a9c 206 rcu_read_unlock();
9fb9cbb1 207
f8ba1aff 208 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
209 /* Expectations will have been removed in clean_from_lists,
210 * except TFTP can create an expectation on the first packet,
211 * before connection is in the list, so we need to clean here,
212 * too. */
c1d10adb 213 nf_ct_remove_expectations(ct);
9fb9cbb1
YK
214
215 /* We overload first tuple to link into unconfirmed list. */
216 if (!nf_ct_is_confirmed(ct)) {
ea781f19
ED
217 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
218 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
9fb9cbb1
YK
219 }
220
0d55af87 221 NF_CT_STAT_INC(net, delete);
f8ba1aff 222 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
223
224 if (ct->master)
225 nf_ct_put(ct->master);
226
0d53778e 227 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
9fb9cbb1
YK
228 nf_conntrack_free(ct);
229}
230
dd7669a9 231void nf_ct_delete_from_lists(struct nf_conn *ct)
9fb9cbb1 232{
0d55af87 233 struct net *net = nf_ct_net(ct);
9fb9cbb1 234
9858a3ae 235 nf_ct_helper_destroy(ct);
f8ba1aff 236 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
237 /* Inside lock so preempt is disabled on module removal path.
238 * Otherwise we can get spurious warnings. */
0d55af87 239 NF_CT_STAT_INC(net, delete_list);
9fb9cbb1 240 clean_from_lists(ct);
f8ba1aff 241 spin_unlock_bh(&nf_conntrack_lock);
dd7669a9
PNA
242}
243EXPORT_SYMBOL_GPL(nf_ct_delete_from_lists);
244
245static void death_by_event(unsigned long ul_conntrack)
246{
247 struct nf_conn *ct = (void *)ul_conntrack;
248 struct net *net = nf_ct_net(ct);
249
250 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
251 /* bad luck, let's retry again */
252 ct->timeout.expires = jiffies +
253 (random32() % net->ct.sysctl_events_retry_timeout);
254 add_timer(&ct->timeout);
255 return;
256 }
257 /* we've got the event delivered, now it's dying */
258 set_bit(IPS_DYING_BIT, &ct->status);
259 spin_lock(&nf_conntrack_lock);
260 hlist_nulls_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
261 spin_unlock(&nf_conntrack_lock);
262 nf_ct_put(ct);
263}
264
265void nf_ct_insert_dying_list(struct nf_conn *ct)
266{
267 struct net *net = nf_ct_net(ct);
268
269 /* add this conntrack to the dying list */
270 spin_lock_bh(&nf_conntrack_lock);
271 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
272 &net->ct.dying);
273 spin_unlock_bh(&nf_conntrack_lock);
274 /* set a new timer to retry event delivery */
275 setup_timer(&ct->timeout, death_by_event, (unsigned long)ct);
276 ct->timeout.expires = jiffies +
277 (random32() % net->ct.sysctl_events_retry_timeout);
278 add_timer(&ct->timeout);
279}
280EXPORT_SYMBOL_GPL(nf_ct_insert_dying_list);
281
282static void death_by_timeout(unsigned long ul_conntrack)
283{
284 struct nf_conn *ct = (void *)ul_conntrack;
285
286 if (!test_bit(IPS_DYING_BIT, &ct->status) &&
287 unlikely(nf_conntrack_event(IPCT_DESTROY, ct) < 0)) {
288 /* destroy event was not delivered */
289 nf_ct_delete_from_lists(ct);
290 nf_ct_insert_dying_list(ct);
291 return;
292 }
293 set_bit(IPS_DYING_BIT, &ct->status);
294 nf_ct_delete_from_lists(ct);
9fb9cbb1
YK
295 nf_ct_put(ct);
296}
297
ea781f19
ED
298/*
299 * Warning :
300 * - Caller must take a reference on returned object
301 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
302 * OR
303 * - Caller must lock nf_conntrack_lock before calling this function
304 */
99f07e91
CG
305static struct nf_conntrack_tuple_hash *
306____nf_conntrack_find(struct net *net, u16 zone,
307 const struct nf_conntrack_tuple *tuple, u32 hash)
9fb9cbb1
YK
308{
309 struct nf_conntrack_tuple_hash *h;
ea781f19 310 struct hlist_nulls_node *n;
99f07e91 311 unsigned int bucket = hash_bucket(hash, net);
9fb9cbb1 312
4e29e9ec
PM
313 /* Disable BHs the entire time since we normally need to disable them
314 * at least once for the stats anyway.
315 */
316 local_bh_disable();
ea781f19 317begin:
99f07e91 318 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[bucket], hnnode) {
5d0aa2cc
PM
319 if (nf_ct_tuple_equal(tuple, &h->tuple) &&
320 nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)) == zone) {
0d55af87 321 NF_CT_STAT_INC(net, found);
4e29e9ec 322 local_bh_enable();
9fb9cbb1
YK
323 return h;
324 }
0d55af87 325 NF_CT_STAT_INC(net, searched);
9fb9cbb1 326 }
ea781f19
ED
327 /*
328 * if the nulls value we got at the end of this lookup is
329 * not the expected one, we must restart lookup.
330 * We probably met an item that was moved to another chain.
331 */
99f07e91 332 if (get_nulls_value(n) != bucket) {
af740b2c 333 NF_CT_STAT_INC(net, search_restart);
ea781f19 334 goto begin;
af740b2c 335 }
4e29e9ec 336 local_bh_enable();
9fb9cbb1
YK
337
338 return NULL;
339}
99f07e91
CG
340
341struct nf_conntrack_tuple_hash *
342__nf_conntrack_find(struct net *net, u16 zone,
343 const struct nf_conntrack_tuple *tuple)
344{
345 return ____nf_conntrack_find(net, zone, tuple,
346 hash_conntrack_raw(tuple, zone));
347}
13b18339 348EXPORT_SYMBOL_GPL(__nf_conntrack_find);
9fb9cbb1
YK
349
350/* Find a connection corresponding to a tuple. */
99f07e91
CG
351static struct nf_conntrack_tuple_hash *
352__nf_conntrack_find_get(struct net *net, u16 zone,
353 const struct nf_conntrack_tuple *tuple, u32 hash)
9fb9cbb1
YK
354{
355 struct nf_conntrack_tuple_hash *h;
76507f69 356 struct nf_conn *ct;
9fb9cbb1 357
76507f69 358 rcu_read_lock();
ea781f19 359begin:
99f07e91 360 h = ____nf_conntrack_find(net, zone, tuple, hash);
76507f69
PM
361 if (h) {
362 ct = nf_ct_tuplehash_to_ctrack(h);
8d8890b7
PM
363 if (unlikely(nf_ct_is_dying(ct) ||
364 !atomic_inc_not_zero(&ct->ct_general.use)))
76507f69 365 h = NULL;
ea781f19 366 else {
5d0aa2cc
PM
367 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple) ||
368 nf_ct_zone(ct) != zone)) {
ea781f19
ED
369 nf_ct_put(ct);
370 goto begin;
371 }
372 }
76507f69
PM
373 }
374 rcu_read_unlock();
9fb9cbb1
YK
375
376 return h;
377}
99f07e91
CG
378
379struct nf_conntrack_tuple_hash *
380nf_conntrack_find_get(struct net *net, u16 zone,
381 const struct nf_conntrack_tuple *tuple)
382{
383 return __nf_conntrack_find_get(net, zone, tuple,
384 hash_conntrack_raw(tuple, zone));
385}
13b18339 386EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
9fb9cbb1 387
c1d10adb
PNA
388static void __nf_conntrack_hash_insert(struct nf_conn *ct,
389 unsigned int hash,
601e68e1 390 unsigned int repl_hash)
c1d10adb 391{
400dad39
AD
392 struct net *net = nf_ct_net(ct);
393
ea781f19 394 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
400dad39 395 &net->ct.hash[hash]);
ea781f19 396 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
400dad39 397 &net->ct.hash[repl_hash]);
c1d10adb
PNA
398}
399
400void nf_conntrack_hash_insert(struct nf_conn *ct)
401{
d696c7bd 402 struct net *net = nf_ct_net(ct);
c1d10adb 403 unsigned int hash, repl_hash;
5d0aa2cc 404 u16 zone;
c1d10adb 405
5d0aa2cc
PM
406 zone = nf_ct_zone(ct);
407 hash = hash_conntrack(net, zone, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
408 repl_hash = hash_conntrack(net, zone, &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
c1d10adb 409
c1d10adb 410 __nf_conntrack_hash_insert(ct, hash, repl_hash);
c1d10adb 411}
13b18339 412EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
c1d10adb 413
9fb9cbb1
YK
414/* Confirm a connection given skb; places it in hash table */
415int
3db05fea 416__nf_conntrack_confirm(struct sk_buff *skb)
9fb9cbb1
YK
417{
418 unsigned int hash, repl_hash;
df0933dc 419 struct nf_conntrack_tuple_hash *h;
9fb9cbb1 420 struct nf_conn *ct;
df0933dc 421 struct nf_conn_help *help;
ea781f19 422 struct hlist_nulls_node *n;
9fb9cbb1 423 enum ip_conntrack_info ctinfo;
400dad39 424 struct net *net;
5d0aa2cc 425 u16 zone;
9fb9cbb1 426
3db05fea 427 ct = nf_ct_get(skb, &ctinfo);
400dad39 428 net = nf_ct_net(ct);
9fb9cbb1
YK
429
430 /* ipt_REJECT uses nf_conntrack_attach to attach related
431 ICMP/TCP RST packets in other direction. Actual packet
432 which created connection will be IP_CT_NEW or for an
433 expected connection, IP_CT_RELATED. */
434 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
435 return NF_ACCEPT;
436
5d0aa2cc 437 zone = nf_ct_zone(ct);
99f07e91
CG
438 /* reuse the hash saved before */
439 hash = *(unsigned long *)&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev;
440 hash = hash_bucket(hash, net);
441 repl_hash = hash_conntrack(net, zone,
442 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
9fb9cbb1
YK
443
444 /* We're not in hash table, and we refuse to set up related
445 connections for unconfirmed conns. But packet copies and
446 REJECT will give spurious warnings here. */
447 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
448
449 /* No external references means noone else could have
450 confirmed us. */
451 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
0d53778e 452 pr_debug("Confirming conntrack %p\n", ct);
9fb9cbb1 453
f8ba1aff 454 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1 455
fc350777
JM
456 /* We have to check the DYING flag inside the lock to prevent
457 a race against nf_ct_get_next_corpse() possibly called from
458 user context, else we insert an already 'dead' hash, blocking
459 further use of that particular connection -JM */
460
461 if (unlikely(nf_ct_is_dying(ct))) {
462 spin_unlock_bh(&nf_conntrack_lock);
463 return NF_ACCEPT;
464 }
465
9fb9cbb1
YK
466 /* See if there's one in the list already, including reverse:
467 NAT could have grabbed it without realizing, since we're
468 not in the hash. If there is, we lost race. */
ea781f19 469 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
df0933dc 470 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
5d0aa2cc
PM
471 &h->tuple) &&
472 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
df0933dc 473 goto out;
ea781f19 474 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
df0933dc 475 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
5d0aa2cc
PM
476 &h->tuple) &&
477 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
df0933dc 478 goto out;
9fb9cbb1 479
df0933dc 480 /* Remove from unconfirmed list */
ea781f19 481 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
df0933dc 482
df0933dc
PM
483 /* Timer relative to confirmation time, not original
484 setting time, otherwise we'd get timer wrap in
485 weird delay cases. */
486 ct->timeout.expires += jiffies;
487 add_timer(&ct->timeout);
488 atomic_inc(&ct->ct_general.use);
489 set_bit(IPS_CONFIRMED_BIT, &ct->status);
5c8ec910
PM
490
491 /* Since the lookup is lockless, hash insertion must be done after
492 * starting the timer and setting the CONFIRMED bit. The RCU barriers
493 * guarantee that no other CPU can find the conntrack before the above
494 * stores are visible.
495 */
496 __nf_conntrack_hash_insert(ct, hash, repl_hash);
0d55af87 497 NF_CT_STAT_INC(net, insert);
f8ba1aff 498 spin_unlock_bh(&nf_conntrack_lock);
5c8ec910 499
df0933dc
PM
500 help = nfct_help(ct);
501 if (help && help->helper)
a71996fc 502 nf_conntrack_event_cache(IPCT_HELPER, ct);
17e6e4ea 503
df0933dc 504 nf_conntrack_event_cache(master_ct(ct) ?
a71996fc 505 IPCT_RELATED : IPCT_NEW, ct);
df0933dc 506 return NF_ACCEPT;
9fb9cbb1 507
df0933dc 508out:
0d55af87 509 NF_CT_STAT_INC(net, insert_failed);
f8ba1aff 510 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
511 return NF_DROP;
512}
13b18339 513EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
9fb9cbb1
YK
514
515/* Returns true if a connection correspondings to the tuple (required
516 for NAT). */
517int
518nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
519 const struct nf_conn *ignored_conntrack)
520{
400dad39 521 struct net *net = nf_ct_net(ignored_conntrack);
9fb9cbb1 522 struct nf_conntrack_tuple_hash *h;
ea781f19 523 struct hlist_nulls_node *n;
5d0aa2cc
PM
524 struct nf_conn *ct;
525 u16 zone = nf_ct_zone(ignored_conntrack);
526 unsigned int hash = hash_conntrack(net, zone, tuple);
9fb9cbb1 527
4e29e9ec
PM
528 /* Disable BHs the entire time since we need to disable them at
529 * least once for the stats anyway.
530 */
531 rcu_read_lock_bh();
ea781f19 532 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
5d0aa2cc
PM
533 ct = nf_ct_tuplehash_to_ctrack(h);
534 if (ct != ignored_conntrack &&
535 nf_ct_tuple_equal(tuple, &h->tuple) &&
536 nf_ct_zone(ct) == zone) {
0d55af87 537 NF_CT_STAT_INC(net, found);
4e29e9ec 538 rcu_read_unlock_bh();
ba419aff
PM
539 return 1;
540 }
0d55af87 541 NF_CT_STAT_INC(net, searched);
ba419aff 542 }
4e29e9ec 543 rcu_read_unlock_bh();
9fb9cbb1 544
ba419aff 545 return 0;
9fb9cbb1 546}
13b18339 547EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
9fb9cbb1 548
7ae7730f
PM
549#define NF_CT_EVICTION_RANGE 8
550
9fb9cbb1
YK
551/* There's a small race here where we may free a just-assured
552 connection. Too bad: we're in trouble anyway. */
400dad39 553static noinline int early_drop(struct net *net, unsigned int hash)
9fb9cbb1 554{
f205c5e0 555 /* Use oldest entry, which is roughly LRU */
9fb9cbb1 556 struct nf_conntrack_tuple_hash *h;
df0933dc 557 struct nf_conn *ct = NULL, *tmp;
ea781f19 558 struct hlist_nulls_node *n;
7ae7730f 559 unsigned int i, cnt = 0;
9fb9cbb1
YK
560 int dropped = 0;
561
76507f69 562 rcu_read_lock();
d696c7bd 563 for (i = 0; i < net->ct.htable_size; i++) {
ea781f19
ED
564 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
565 hnnode) {
7ae7730f
PM
566 tmp = nf_ct_tuplehash_to_ctrack(h);
567 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
568 ct = tmp;
569 cnt++;
570 }
76507f69 571
5ae27aa2
CG
572 if (ct != NULL) {
573 if (likely(!nf_ct_is_dying(ct) &&
574 atomic_inc_not_zero(&ct->ct_general.use)))
575 break;
576 else
577 ct = NULL;
578 }
579
580 if (cnt >= NF_CT_EVICTION_RANGE)
7ae7730f 581 break;
5ae27aa2 582
d696c7bd 583 hash = (hash + 1) % net->ct.htable_size;
9fb9cbb1 584 }
76507f69 585 rcu_read_unlock();
9fb9cbb1
YK
586
587 if (!ct)
588 return dropped;
589
590 if (del_timer(&ct->timeout)) {
591 death_by_timeout((unsigned long)ct);
592 dropped = 1;
0d55af87 593 NF_CT_STAT_INC_ATOMIC(net, early_drop);
9fb9cbb1
YK
594 }
595 nf_ct_put(ct);
596 return dropped;
597}
598
f682cefa
CG
599void init_nf_conntrack_hash_rnd(void)
600{
601 unsigned int rand;
602
603 /*
604 * Why not initialize nf_conntrack_rnd in a "init()" function ?
605 * Because there isn't enough entropy when system initializing,
606 * and we initialize it as late as possible.
607 */
608 do {
609 get_random_bytes(&rand, sizeof(rand));
610 } while (!rand);
611 cmpxchg(&nf_conntrack_hash_rnd, 0, rand);
612}
613
99f07e91
CG
614static struct nf_conn *
615__nf_conntrack_alloc(struct net *net, u16 zone,
616 const struct nf_conntrack_tuple *orig,
617 const struct nf_conntrack_tuple *repl,
618 gfp_t gfp, u32 hash)
9fb9cbb1 619{
cd7fcbf1 620 struct nf_conn *ct;
9fb9cbb1 621
b2390969 622 if (unlikely(!nf_conntrack_hash_rnd)) {
f682cefa 623 init_nf_conntrack_hash_rnd();
99f07e91
CG
624 /* recompute the hash as nf_conntrack_hash_rnd is initialized */
625 hash = hash_conntrack_raw(orig, zone);
9fb9cbb1
YK
626 }
627
5251e2d2 628 /* We don't want any race condition at early drop stage */
49ac8713 629 atomic_inc(&net->ct.count);
5251e2d2 630
76eb9460 631 if (nf_conntrack_max &&
49ac8713 632 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
99f07e91 633 if (!early_drop(net, hash_bucket(hash, net))) {
49ac8713 634 atomic_dec(&net->ct.count);
9fb9cbb1
YK
635 if (net_ratelimit())
636 printk(KERN_WARNING
637 "nf_conntrack: table full, dropping"
638 " packet.\n");
639 return ERR_PTR(-ENOMEM);
640 }
641 }
642
941297f4
ED
643 /*
644 * Do not use kmem_cache_zalloc(), as this cache uses
645 * SLAB_DESTROY_BY_RCU.
646 */
5b3501fa 647 ct = kmem_cache_alloc(net->ct.nf_conntrack_cachep, gfp);
c88130bc 648 if (ct == NULL) {
0d53778e 649 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
49ac8713 650 atomic_dec(&net->ct.count);
dacd2a1a 651 return ERR_PTR(-ENOMEM);
9fb9cbb1 652 }
941297f4
ED
653 /*
654 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
655 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
656 */
657 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
658 sizeof(*ct) - offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
440f0d58 659 spin_lock_init(&ct->lock);
c88130bc 660 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
941297f4 661 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
c88130bc 662 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
99f07e91
CG
663 /* save hash for reusing when confirming */
664 *(unsigned long *)(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev) = hash;
9fb9cbb1 665 /* Don't set timer yet: wait for confirmation */
c88130bc 666 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
c2d9ba9b 667 write_pnet(&ct->ct_net, net);
5d0aa2cc
PM
668#ifdef CONFIG_NF_CONNTRACK_ZONES
669 if (zone) {
670 struct nf_conntrack_zone *nf_ct_zone;
671
672 nf_ct_zone = nf_ct_ext_add(ct, NF_CT_EXT_ZONE, GFP_ATOMIC);
673 if (!nf_ct_zone)
674 goto out_free;
675 nf_ct_zone->id = zone;
676 }
677#endif
941297f4
ED
678 /*
679 * changes to lookup keys must be done before setting refcnt to 1
680 */
681 smp_wmb();
682 atomic_set(&ct->ct_general.use, 1);
c88130bc 683 return ct;
5d0aa2cc
PM
684
685#ifdef CONFIG_NF_CONNTRACK_ZONES
686out_free:
687 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
688 return ERR_PTR(-ENOMEM);
689#endif
9fb9cbb1 690}
99f07e91
CG
691
692struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
693 const struct nf_conntrack_tuple *orig,
694 const struct nf_conntrack_tuple *repl,
695 gfp_t gfp)
696{
697 return __nf_conntrack_alloc(net, zone, orig, repl, gfp, 0);
698}
13b18339 699EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
9fb9cbb1 700
c88130bc 701void nf_conntrack_free(struct nf_conn *ct)
76507f69 702{
1d45209d
ED
703 struct net *net = nf_ct_net(ct);
704
ceeff754 705 nf_ct_ext_destroy(ct);
1d45209d 706 atomic_dec(&net->ct.count);
ea781f19 707 nf_ct_ext_free(ct);
5b3501fa 708 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
76507f69 709}
13b18339 710EXPORT_SYMBOL_GPL(nf_conntrack_free);
9fb9cbb1
YK
711
712/* Allocate a new conntrack: we return -ENOMEM if classification
713 failed due to stress. Otherwise it really is unclassifiable. */
714static struct nf_conntrack_tuple_hash *
b2a15a60 715init_conntrack(struct net *net, struct nf_conn *tmpl,
5a1fb391 716 const struct nf_conntrack_tuple *tuple,
9fb9cbb1 717 struct nf_conntrack_l3proto *l3proto,
605dcad6 718 struct nf_conntrack_l4proto *l4proto,
9fb9cbb1 719 struct sk_buff *skb,
99f07e91 720 unsigned int dataoff, u32 hash)
9fb9cbb1 721{
c88130bc 722 struct nf_conn *ct;
3c158f7f 723 struct nf_conn_help *help;
9fb9cbb1 724 struct nf_conntrack_tuple repl_tuple;
b2a15a60 725 struct nf_conntrack_ecache *ecache;
9fb9cbb1 726 struct nf_conntrack_expect *exp;
5d0aa2cc 727 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
9fb9cbb1 728
605dcad6 729 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
0d53778e 730 pr_debug("Can't invert tuple.\n");
9fb9cbb1
YK
731 return NULL;
732 }
733
99f07e91
CG
734 ct = __nf_conntrack_alloc(net, zone, tuple, &repl_tuple, GFP_ATOMIC,
735 hash);
cd7fcbf1 736 if (IS_ERR(ct)) {
0d53778e 737 pr_debug("Can't allocate conntrack.\n");
c88130bc 738 return (struct nf_conntrack_tuple_hash *)ct;
9fb9cbb1
YK
739 }
740
c88130bc
PM
741 if (!l4proto->new(ct, skb, dataoff)) {
742 nf_conntrack_free(ct);
0d53778e 743 pr_debug("init conntrack: can't track with proto module\n");
9fb9cbb1
YK
744 return NULL;
745 }
746
58401572 747 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
b2a15a60
PM
748
749 ecache = tmpl ? nf_ct_ecache_find(tmpl) : NULL;
750 nf_ct_ecache_ext_add(ct, ecache ? ecache->ctmask : 0,
751 ecache ? ecache->expmask : 0,
752 GFP_ATOMIC);
58401572 753
f8ba1aff 754 spin_lock_bh(&nf_conntrack_lock);
5d0aa2cc 755 exp = nf_ct_find_expectation(net, zone, tuple);
9fb9cbb1 756 if (exp) {
0d53778e 757 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
c88130bc 758 ct, exp);
9fb9cbb1 759 /* Welcome, Mr. Bond. We've been expecting you... */
c88130bc
PM
760 __set_bit(IPS_EXPECTED_BIT, &ct->status);
761 ct->master = exp->master;
ceceae1b 762 if (exp->helper) {
c88130bc 763 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
ceceae1b
YK
764 if (help)
765 rcu_assign_pointer(help->helper, exp->helper);
ceceae1b
YK
766 }
767
9fb9cbb1 768#ifdef CONFIG_NF_CONNTRACK_MARK
c88130bc 769 ct->mark = exp->master->mark;
7c9728c3
JM
770#endif
771#ifdef CONFIG_NF_CONNTRACK_SECMARK
c88130bc 772 ct->secmark = exp->master->secmark;
9fb9cbb1 773#endif
c88130bc 774 nf_conntrack_get(&ct->master->ct_general);
0d55af87 775 NF_CT_STAT_INC(net, expect_new);
22e7410b 776 } else {
b2a15a60 777 __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC);
0d55af87 778 NF_CT_STAT_INC(net, new);
22e7410b 779 }
9fb9cbb1
YK
780
781 /* Overload tuple linked list to put us in unconfirmed list. */
ea781f19 782 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
63c9a262 783 &net->ct.unconfirmed);
9fb9cbb1 784
f8ba1aff 785 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
786
787 if (exp) {
788 if (exp->expectfn)
c88130bc 789 exp->expectfn(ct, exp);
6823645d 790 nf_ct_expect_put(exp);
9fb9cbb1
YK
791 }
792
c88130bc 793 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
9fb9cbb1
YK
794}
795
796/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
797static inline struct nf_conn *
b2a15a60 798resolve_normal_ct(struct net *net, struct nf_conn *tmpl,
a702a65f 799 struct sk_buff *skb,
9fb9cbb1
YK
800 unsigned int dataoff,
801 u_int16_t l3num,
802 u_int8_t protonum,
803 struct nf_conntrack_l3proto *l3proto,
605dcad6 804 struct nf_conntrack_l4proto *l4proto,
9fb9cbb1
YK
805 int *set_reply,
806 enum ip_conntrack_info *ctinfo)
807{
808 struct nf_conntrack_tuple tuple;
809 struct nf_conntrack_tuple_hash *h;
810 struct nf_conn *ct;
5d0aa2cc 811 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
99f07e91 812 u32 hash;
9fb9cbb1 813
bbe735e4 814 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
9fb9cbb1 815 dataoff, l3num, protonum, &tuple, l3proto,
605dcad6 816 l4proto)) {
0d53778e 817 pr_debug("resolve_normal_ct: Can't get tuple\n");
9fb9cbb1
YK
818 return NULL;
819 }
820
821 /* look for tuple match */
99f07e91
CG
822 hash = hash_conntrack_raw(&tuple, zone);
823 h = __nf_conntrack_find_get(net, zone, &tuple, hash);
9fb9cbb1 824 if (!h) {
b2a15a60 825 h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto,
99f07e91 826 skb, dataoff, hash);
9fb9cbb1
YK
827 if (!h)
828 return NULL;
829 if (IS_ERR(h))
830 return (void *)h;
831 }
832 ct = nf_ct_tuplehash_to_ctrack(h);
833
834 /* It exists; we have (non-exclusive) reference. */
835 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
836 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
837 /* Please set reply bit if this packet OK */
838 *set_reply = 1;
839 } else {
840 /* Once we've had two way comms, always ESTABLISHED. */
841 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
0d53778e 842 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
9fb9cbb1
YK
843 *ctinfo = IP_CT_ESTABLISHED;
844 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
0d53778e
PM
845 pr_debug("nf_conntrack_in: related packet for %p\n",
846 ct);
9fb9cbb1
YK
847 *ctinfo = IP_CT_RELATED;
848 } else {
0d53778e 849 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
9fb9cbb1
YK
850 *ctinfo = IP_CT_NEW;
851 }
852 *set_reply = 0;
853 }
854 skb->nfct = &ct->ct_general;
855 skb->nfctinfo = *ctinfo;
856 return ct;
857}
858
859unsigned int
a702a65f
AD
860nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
861 struct sk_buff *skb)
9fb9cbb1 862{
b2a15a60 863 struct nf_conn *ct, *tmpl = NULL;
9fb9cbb1
YK
864 enum ip_conntrack_info ctinfo;
865 struct nf_conntrack_l3proto *l3proto;
605dcad6 866 struct nf_conntrack_l4proto *l4proto;
9fb9cbb1
YK
867 unsigned int dataoff;
868 u_int8_t protonum;
869 int set_reply = 0;
870 int ret;
871
3db05fea 872 if (skb->nfct) {
b2a15a60
PM
873 /* Previously seen (loopback or untracked)? Ignore. */
874 tmpl = (struct nf_conn *)skb->nfct;
875 if (!nf_ct_is_template(tmpl)) {
876 NF_CT_STAT_INC_ATOMIC(net, ignore);
877 return NF_ACCEPT;
878 }
879 skb->nfct = NULL;
9fb9cbb1
YK
880 }
881
923f4902 882 /* rcu_read_lock()ed by nf_hook_slow */
76108cea 883 l3proto = __nf_ct_l3proto_find(pf);
3db05fea 884 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
ffc30690
YK
885 &dataoff, &protonum);
886 if (ret <= 0) {
0d53778e 887 pr_debug("not prepared to track yet or error occured\n");
0d55af87
AD
888 NF_CT_STAT_INC_ATOMIC(net, error);
889 NF_CT_STAT_INC_ATOMIC(net, invalid);
b2a15a60
PM
890 ret = -ret;
891 goto out;
9fb9cbb1
YK
892 }
893
76108cea 894 l4proto = __nf_ct_l4proto_find(pf, protonum);
9fb9cbb1
YK
895
896 /* It may be an special packet, error, unclean...
897 * inverse of the return code tells to the netfilter
898 * core what to do with the packet. */
74c51a14 899 if (l4proto->error != NULL) {
8fea97ec
PM
900 ret = l4proto->error(net, tmpl, skb, dataoff, &ctinfo,
901 pf, hooknum);
74c51a14 902 if (ret <= 0) {
0d55af87
AD
903 NF_CT_STAT_INC_ATOMIC(net, error);
904 NF_CT_STAT_INC_ATOMIC(net, invalid);
b2a15a60
PM
905 ret = -ret;
906 goto out;
74c51a14 907 }
9fb9cbb1
YK
908 }
909
b2a15a60 910 ct = resolve_normal_ct(net, tmpl, skb, dataoff, pf, protonum,
a702a65f 911 l3proto, l4proto, &set_reply, &ctinfo);
9fb9cbb1
YK
912 if (!ct) {
913 /* Not valid part of a connection */
0d55af87 914 NF_CT_STAT_INC_ATOMIC(net, invalid);
b2a15a60
PM
915 ret = NF_ACCEPT;
916 goto out;
9fb9cbb1
YK
917 }
918
919 if (IS_ERR(ct)) {
920 /* Too stressed to deal. */
0d55af87 921 NF_CT_STAT_INC_ATOMIC(net, drop);
b2a15a60
PM
922 ret = NF_DROP;
923 goto out;
9fb9cbb1
YK
924 }
925
3db05fea 926 NF_CT_ASSERT(skb->nfct);
9fb9cbb1 927
3db05fea 928 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
ec8d5409 929 if (ret <= 0) {
9fb9cbb1
YK
930 /* Invalid: inverse of the return code tells
931 * the netfilter core what to do */
0d53778e 932 pr_debug("nf_conntrack_in: Can't track with proto module\n");
3db05fea
HX
933 nf_conntrack_put(skb->nfct);
934 skb->nfct = NULL;
0d55af87 935 NF_CT_STAT_INC_ATOMIC(net, invalid);
7d1e0459
PNA
936 if (ret == -NF_DROP)
937 NF_CT_STAT_INC_ATOMIC(net, drop);
b2a15a60
PM
938 ret = -ret;
939 goto out;
9fb9cbb1
YK
940 }
941
942 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
858b3133 943 nf_conntrack_event_cache(IPCT_REPLY, ct);
b2a15a60
PM
944out:
945 if (tmpl)
946 nf_ct_put(tmpl);
9fb9cbb1
YK
947
948 return ret;
949}
13b18339 950EXPORT_SYMBOL_GPL(nf_conntrack_in);
9fb9cbb1 951
5f2b4c90
JE
952bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
953 const struct nf_conntrack_tuple *orig)
9fb9cbb1 954{
5f2b4c90 955 bool ret;
923f4902
PM
956
957 rcu_read_lock();
958 ret = nf_ct_invert_tuple(inverse, orig,
959 __nf_ct_l3proto_find(orig->src.l3num),
960 __nf_ct_l4proto_find(orig->src.l3num,
961 orig->dst.protonum));
962 rcu_read_unlock();
963 return ret;
9fb9cbb1 964}
13b18339 965EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
9fb9cbb1 966
5b1158e9
JK
967/* Alter reply tuple (maybe alter helper). This is for NAT, and is
968 implicitly racy: see __nf_conntrack_confirm */
969void nf_conntrack_alter_reply(struct nf_conn *ct,
970 const struct nf_conntrack_tuple *newreply)
971{
972 struct nf_conn_help *help = nfct_help(ct);
973
5b1158e9
JK
974 /* Should be unconfirmed, so not in hash table yet */
975 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
976
0d53778e 977 pr_debug("Altering reply tuple of %p to ", ct);
3c9fba65 978 nf_ct_dump_tuple(newreply);
5b1158e9
JK
979
980 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
ef1a5a50 981 if (ct->master || (help && !hlist_empty(&help->expectations)))
c52fbb41 982 return;
ceceae1b 983
c52fbb41 984 rcu_read_lock();
b2a15a60 985 __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
c52fbb41 986 rcu_read_unlock();
5b1158e9 987}
13b18339 988EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
5b1158e9 989
9fb9cbb1
YK
990/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
991void __nf_ct_refresh_acct(struct nf_conn *ct,
992 enum ip_conntrack_info ctinfo,
993 const struct sk_buff *skb,
994 unsigned long extra_jiffies,
995 int do_acct)
996{
9fb9cbb1
YK
997 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
998 NF_CT_ASSERT(skb);
999
997ae831 1000 /* Only update if this is not a fixed timeout */
47d95045
PM
1001 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
1002 goto acct;
997ae831 1003
9fb9cbb1
YK
1004 /* If not in hash table, timer will not be active yet */
1005 if (!nf_ct_is_confirmed(ct)) {
1006 ct->timeout.expires = extra_jiffies;
9fb9cbb1 1007 } else {
be00c8e4
MJ
1008 unsigned long newtime = jiffies + extra_jiffies;
1009
1010 /* Only update the timeout if the new timeout is at least
1011 HZ jiffies from the old timeout. Need del_timer for race
1012 avoidance (may already be dying). */
65cb9fda
PM
1013 if (newtime - ct->timeout.expires >= HZ)
1014 mod_timer_pending(&ct->timeout, newtime);
9fb9cbb1
YK
1015 }
1016
47d95045 1017acct:
9fb9cbb1 1018 if (do_acct) {
58401572 1019 struct nf_conn_counter *acct;
3ffd5eeb 1020
58401572
KPO
1021 acct = nf_conn_acct_find(ct);
1022 if (acct) {
65cb9fda 1023 spin_lock_bh(&ct->lock);
58401572 1024 acct[CTINFO2DIR(ctinfo)].packets++;
6661481d 1025 acct[CTINFO2DIR(ctinfo)].bytes += skb->len;
65cb9fda 1026 spin_unlock_bh(&ct->lock);
58401572 1027 }
9fb9cbb1 1028 }
9fb9cbb1 1029}
13b18339 1030EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
9fb9cbb1 1031
4c889498
DM
1032bool __nf_ct_kill_acct(struct nf_conn *ct,
1033 enum ip_conntrack_info ctinfo,
1034 const struct sk_buff *skb,
1035 int do_acct)
51091764 1036{
718d4ad9 1037 if (do_acct) {
58401572
KPO
1038 struct nf_conn_counter *acct;
1039
58401572
KPO
1040 acct = nf_conn_acct_find(ct);
1041 if (acct) {
65cb9fda 1042 spin_lock_bh(&ct->lock);
58401572
KPO
1043 acct[CTINFO2DIR(ctinfo)].packets++;
1044 acct[CTINFO2DIR(ctinfo)].bytes +=
1045 skb->len - skb_network_offset(skb);
65cb9fda 1046 spin_unlock_bh(&ct->lock);
58401572 1047 }
718d4ad9 1048 }
58401572 1049
4c889498 1050 if (del_timer(&ct->timeout)) {
51091764 1051 ct->timeout.function((unsigned long)ct);
4c889498
DM
1052 return true;
1053 }
1054 return false;
51091764 1055}
718d4ad9 1056EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
51091764 1057
5d0aa2cc
PM
1058#ifdef CONFIG_NF_CONNTRACK_ZONES
1059static struct nf_ct_ext_type nf_ct_zone_extend __read_mostly = {
1060 .len = sizeof(struct nf_conntrack_zone),
1061 .align = __alignof__(struct nf_conntrack_zone),
1062 .id = NF_CT_EXT_ZONE,
1063};
1064#endif
1065
e281db5c 1066#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
c1d10adb
PNA
1067
1068#include <linux/netfilter/nfnetlink.h>
1069#include <linux/netfilter/nfnetlink_conntrack.h>
57b47a53
IM
1070#include <linux/mutex.h>
1071
c1d10adb
PNA
1072/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
1073 * in ip_conntrack_core, since we don't want the protocols to autoload
1074 * or depend on ctnetlink */
fdf70832 1075int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
c1d10adb
PNA
1076 const struct nf_conntrack_tuple *tuple)
1077{
77236b6e
PM
1078 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
1079 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
c1d10adb
PNA
1080 return 0;
1081
df6fb868 1082nla_put_failure:
c1d10adb
PNA
1083 return -1;
1084}
fdf70832 1085EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
c1d10adb 1086
f73e924c
PM
1087const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
1088 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
1089 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
c1d10adb 1090};
f73e924c 1091EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
c1d10adb 1092
fdf70832 1093int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
c1d10adb
PNA
1094 struct nf_conntrack_tuple *t)
1095{
df6fb868 1096 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
c1d10adb
PNA
1097 return -EINVAL;
1098
77236b6e
PM
1099 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
1100 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
c1d10adb
PNA
1101
1102 return 0;
1103}
fdf70832 1104EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
5c0de29d
HE
1105
1106int nf_ct_port_nlattr_tuple_size(void)
1107{
1108 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1109}
1110EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
c1d10adb
PNA
1111#endif
1112
9fb9cbb1 1113/* Used by ipt_REJECT and ip6t_REJECT. */
b334aadc 1114static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
9fb9cbb1
YK
1115{
1116 struct nf_conn *ct;
1117 enum ip_conntrack_info ctinfo;
1118
1119 /* This ICMP is in reverse direction to the packet which caused it */
1120 ct = nf_ct_get(skb, &ctinfo);
1121 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
1122 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
1123 else
1124 ctinfo = IP_CT_RELATED;
1125
1126 /* Attach to new skbuff, and increment count */
1127 nskb->nfct = &ct->ct_general;
1128 nskb->nfctinfo = ctinfo;
1129 nf_conntrack_get(nskb->nfct);
1130}
1131
9fb9cbb1 1132/* Bring out ya dead! */
df0933dc 1133static struct nf_conn *
400dad39 1134get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
9fb9cbb1
YK
1135 void *data, unsigned int *bucket)
1136{
df0933dc
PM
1137 struct nf_conntrack_tuple_hash *h;
1138 struct nf_conn *ct;
ea781f19 1139 struct hlist_nulls_node *n;
9fb9cbb1 1140
f8ba1aff 1141 spin_lock_bh(&nf_conntrack_lock);
d696c7bd 1142 for (; *bucket < net->ct.htable_size; (*bucket)++) {
ea781f19 1143 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
df0933dc
PM
1144 ct = nf_ct_tuplehash_to_ctrack(h);
1145 if (iter(ct, data))
1146 goto found;
1147 }
601e68e1 1148 }
ea781f19 1149 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
df0933dc
PM
1150 ct = nf_ct_tuplehash_to_ctrack(h);
1151 if (iter(ct, data))
ec68e97d 1152 set_bit(IPS_DYING_BIT, &ct->status);
df0933dc 1153 }
f8ba1aff 1154 spin_unlock_bh(&nf_conntrack_lock);
df0933dc
PM
1155 return NULL;
1156found:
c073e3fa 1157 atomic_inc(&ct->ct_general.use);
f8ba1aff 1158 spin_unlock_bh(&nf_conntrack_lock);
df0933dc 1159 return ct;
9fb9cbb1
YK
1160}
1161
400dad39
AD
1162void nf_ct_iterate_cleanup(struct net *net,
1163 int (*iter)(struct nf_conn *i, void *data),
1164 void *data)
9fb9cbb1 1165{
df0933dc 1166 struct nf_conn *ct;
9fb9cbb1
YK
1167 unsigned int bucket = 0;
1168
400dad39 1169 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
9fb9cbb1
YK
1170 /* Time to push up daises... */
1171 if (del_timer(&ct->timeout))
1172 death_by_timeout((unsigned long)ct);
1173 /* ... else the timer will get him soon. */
1174
1175 nf_ct_put(ct);
1176 }
1177}
13b18339 1178EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
9fb9cbb1 1179
19abb7b0
PNA
1180struct __nf_ct_flush_report {
1181 u32 pid;
1182 int report;
1183};
1184
274d383b 1185static int kill_report(struct nf_conn *i, void *data)
9fb9cbb1 1186{
19abb7b0
PNA
1187 struct __nf_ct_flush_report *fr = (struct __nf_ct_flush_report *)data;
1188
dd7669a9
PNA
1189 /* If we fail to deliver the event, death_by_timeout() will retry */
1190 if (nf_conntrack_event_report(IPCT_DESTROY, i,
1191 fr->pid, fr->report) < 0)
1192 return 1;
1193
1194 /* Avoid the delivery of the destroy event in death_by_timeout(). */
1195 set_bit(IPS_DYING_BIT, &i->status);
9fb9cbb1
YK
1196 return 1;
1197}
1198
274d383b
PNA
1199static int kill_all(struct nf_conn *i, void *data)
1200{
1201 return 1;
1202}
1203
ea781f19 1204void nf_ct_free_hashtable(void *hash, int vmalloced, unsigned int size)
9fb9cbb1
YK
1205{
1206 if (vmalloced)
1207 vfree(hash);
1208 else
601e68e1 1209 free_pages((unsigned long)hash,
f205c5e0 1210 get_order(sizeof(struct hlist_head) * size));
9fb9cbb1 1211}
ac565e5f 1212EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
9fb9cbb1 1213
274d383b 1214void nf_conntrack_flush_report(struct net *net, u32 pid, int report)
c1d10adb 1215{
19abb7b0
PNA
1216 struct __nf_ct_flush_report fr = {
1217 .pid = pid,
1218 .report = report,
1219 };
274d383b 1220 nf_ct_iterate_cleanup(net, kill_report, &fr);
c1d10adb 1221}
274d383b 1222EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
c1d10adb 1223
ee254fa4 1224static void nf_ct_release_dying_list(struct net *net)
dd7669a9
PNA
1225{
1226 struct nf_conntrack_tuple_hash *h;
1227 struct nf_conn *ct;
1228 struct hlist_nulls_node *n;
1229
1230 spin_lock_bh(&nf_conntrack_lock);
ee254fa4 1231 hlist_nulls_for_each_entry(h, n, &net->ct.dying, hnnode) {
dd7669a9
PNA
1232 ct = nf_ct_tuplehash_to_ctrack(h);
1233 /* never fails to remove them, no listeners at this point */
1234 nf_ct_kill(ct);
1235 }
1236 spin_unlock_bh(&nf_conntrack_lock);
1237}
1238
b3c5163f
ED
1239static int untrack_refs(void)
1240{
1241 int cnt = 0, cpu;
1242
1243 for_each_possible_cpu(cpu) {
1244 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
1245
1246 cnt += atomic_read(&ct->ct_general.use) - 1;
1247 }
1248 return cnt;
1249}
1250
08f6547d 1251static void nf_conntrack_cleanup_init_net(void)
9fb9cbb1 1252{
b3c5163f 1253 while (untrack_refs() > 0)
9edd7ca0
PM
1254 schedule();
1255
08f6547d
AD
1256 nf_conntrack_helper_fini();
1257 nf_conntrack_proto_fini();
5d0aa2cc
PM
1258#ifdef CONFIG_NF_CONNTRACK_ZONES
1259 nf_ct_extend_unregister(&nf_ct_zone_extend);
1260#endif
08f6547d 1261}
9fb9cbb1 1262
08f6547d
AD
1263static void nf_conntrack_cleanup_net(struct net *net)
1264{
9fb9cbb1 1265 i_see_dead_people:
274d383b 1266 nf_ct_iterate_cleanup(net, kill_all, NULL);
ee254fa4 1267 nf_ct_release_dying_list(net);
49ac8713 1268 if (atomic_read(&net->ct.count) != 0) {
9fb9cbb1
YK
1269 schedule();
1270 goto i_see_dead_people;
1271 }
1272
400dad39 1273 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
d696c7bd 1274 net->ct.htable_size);
a0891aa6 1275 nf_conntrack_ecache_fini(net);
d716a4df 1276 nf_conntrack_acct_fini(net);
9b03f38d 1277 nf_conntrack_expect_fini(net);
5b3501fa
ED
1278 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1279 kfree(net->ct.slabname);
0d55af87 1280 free_percpu(net->ct.stat);
08f6547d
AD
1281}
1282
1283/* Mishearing the voices in his head, our hero wonders how he's
1284 supposed to kill the mall. */
1285void nf_conntrack_cleanup(struct net *net)
1286{
1287 if (net_eq(net, &init_net))
1288 rcu_assign_pointer(ip_ct_attach, NULL);
1289
1290 /* This makes sure all current packets have passed through
1291 netfilter framework. Roll on, two-stage module
1292 delete... */
1293 synchronize_net();
1294
1295 nf_conntrack_cleanup_net(net);
1296
1297 if (net_eq(net, &init_net)) {
1298 rcu_assign_pointer(nf_ct_destroy, NULL);
1299 nf_conntrack_cleanup_init_net();
1300 }
9fb9cbb1
YK
1301}
1302
ea781f19 1303void *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced, int nulls)
9fb9cbb1 1304{
ea781f19
ED
1305 struct hlist_nulls_head *hash;
1306 unsigned int nr_slots, i;
1307 size_t sz;
9fb9cbb1 1308
601e68e1 1309 *vmalloced = 0;
8e5105a0 1310
ea781f19
ED
1311 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1312 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1313 sz = nr_slots * sizeof(struct hlist_nulls_head);
1314 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1315 get_order(sz));
601e68e1 1316 if (!hash) {
9fb9cbb1
YK
1317 *vmalloced = 1;
1318 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
6b1686a7
ED
1319 hash = __vmalloc(sz, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
1320 PAGE_KERNEL);
9fb9cbb1
YK
1321 }
1322
ea781f19
ED
1323 if (hash && nulls)
1324 for (i = 0; i < nr_slots; i++)
1325 INIT_HLIST_NULLS_HEAD(&hash[i], i);
9fb9cbb1
YK
1326
1327 return hash;
1328}
ac565e5f 1329EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
9fb9cbb1 1330
fae718dd 1331int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
9fb9cbb1 1332{
96eb24d7
SH
1333 int i, bucket, vmalloced, old_vmalloced;
1334 unsigned int hashsize, old_size;
ea781f19 1335 struct hlist_nulls_head *hash, *old_hash;
9fb9cbb1 1336 struct nf_conntrack_tuple_hash *h;
5d0aa2cc 1337 struct nf_conn *ct;
9fb9cbb1 1338
d696c7bd
PM
1339 if (current->nsproxy->net_ns != &init_net)
1340 return -EOPNOTSUPP;
1341
9fb9cbb1
YK
1342 /* On boot, we can set this without any fancy locking. */
1343 if (!nf_conntrack_htable_size)
1344 return param_set_uint(val, kp);
1345
96eb24d7 1346 hashsize = simple_strtoul(val, NULL, 0);
9fb9cbb1
YK
1347 if (!hashsize)
1348 return -EINVAL;
1349
ea781f19 1350 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced, 1);
9fb9cbb1
YK
1351 if (!hash)
1352 return -ENOMEM;
1353
76507f69
PM
1354 /* Lookups in the old hash might happen in parallel, which means we
1355 * might get false negatives during connection lookup. New connections
1356 * created because of a false negative won't make it into the hash
1357 * though since that required taking the lock.
1358 */
f8ba1aff 1359 spin_lock_bh(&nf_conntrack_lock);
d696c7bd 1360 for (i = 0; i < init_net.ct.htable_size; i++) {
ea781f19
ED
1361 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1362 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1363 struct nf_conntrack_tuple_hash, hnnode);
5d0aa2cc 1364 ct = nf_ct_tuplehash_to_ctrack(h);
ea781f19 1365 hlist_nulls_del_rcu(&h->hnnode);
5d0aa2cc 1366 bucket = __hash_conntrack(&h->tuple, nf_ct_zone(ct),
99f07e91 1367 hashsize);
ea781f19 1368 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
9fb9cbb1
YK
1369 }
1370 }
d696c7bd 1371 old_size = init_net.ct.htable_size;
400dad39
AD
1372 old_vmalloced = init_net.ct.hash_vmalloc;
1373 old_hash = init_net.ct.hash;
9fb9cbb1 1374
d696c7bd 1375 init_net.ct.htable_size = nf_conntrack_htable_size = hashsize;
400dad39
AD
1376 init_net.ct.hash_vmalloc = vmalloced;
1377 init_net.ct.hash = hash;
f8ba1aff 1378 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1 1379
ac565e5f 1380 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
9fb9cbb1
YK
1381 return 0;
1382}
fae718dd 1383EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
9fb9cbb1 1384
fae718dd 1385module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
9fb9cbb1
YK
1386 &nf_conntrack_htable_size, 0600);
1387
5bfddbd4
ED
1388void nf_ct_untracked_status_or(unsigned long bits)
1389{
b3c5163f
ED
1390 int cpu;
1391
1392 for_each_possible_cpu(cpu)
1393 per_cpu(nf_conntrack_untracked, cpu).status |= bits;
5bfddbd4
ED
1394}
1395EXPORT_SYMBOL_GPL(nf_ct_untracked_status_or);
1396
08f6547d 1397static int nf_conntrack_init_init_net(void)
9fb9cbb1 1398{
f205c5e0 1399 int max_factor = 8;
b3c5163f 1400 int ret, cpu;
9fb9cbb1
YK
1401
1402 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
f205c5e0 1403 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
9fb9cbb1
YK
1404 if (!nf_conntrack_htable_size) {
1405 nf_conntrack_htable_size
4481374c 1406 = (((totalram_pages << PAGE_SHIFT) / 16384)
f205c5e0 1407 / sizeof(struct hlist_head));
4481374c 1408 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
f205c5e0
PM
1409 nf_conntrack_htable_size = 16384;
1410 if (nf_conntrack_htable_size < 32)
1411 nf_conntrack_htable_size = 32;
1412
1413 /* Use a max. factor of four by default to get the same max as
1414 * with the old struct list_heads. When a table size is given
1415 * we use the old value of 8 to avoid reducing the max.
1416 * entries. */
1417 max_factor = 4;
9fb9cbb1 1418 }
f205c5e0 1419 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
8e5105a0 1420
654d0fbd 1421 printk(KERN_INFO "nf_conntrack version %s (%u buckets, %d max)\n",
8e5105a0
PM
1422 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1423 nf_conntrack_max);
1424
e9c1b084
PM
1425 ret = nf_conntrack_proto_init();
1426 if (ret < 0)
08f6547d 1427 goto err_proto;
933a41e7 1428
ceceae1b
YK
1429 ret = nf_conntrack_helper_init();
1430 if (ret < 0)
08f6547d
AD
1431 goto err_helper;
1432
5d0aa2cc
PM
1433#ifdef CONFIG_NF_CONNTRACK_ZONES
1434 ret = nf_ct_extend_register(&nf_ct_zone_extend);
1435 if (ret < 0)
1436 goto err_extend;
1437#endif
9edd7ca0 1438 /* Set up fake conntrack: to never be deleted, not in any hashes */
b3c5163f
ED
1439 for_each_possible_cpu(cpu) {
1440 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
b3c5163f
ED
1441 write_pnet(&ct->ct_net, &init_net);
1442 atomic_set(&ct->ct_general.use, 1);
1443 }
9edd7ca0 1444 /* - and look it like as a confirmed connection */
5bfddbd4 1445 nf_ct_untracked_status_or(IPS_CONFIRMED | IPS_UNTRACKED);
08f6547d
AD
1446 return 0;
1447
5d0aa2cc
PM
1448#ifdef CONFIG_NF_CONNTRACK_ZONES
1449err_extend:
1450 nf_conntrack_helper_fini();
1451#endif
08f6547d
AD
1452err_helper:
1453 nf_conntrack_proto_fini();
1454err_proto:
08f6547d
AD
1455 return ret;
1456}
1457
8cc20198
ED
1458/*
1459 * We need to use special "null" values, not used in hash table
1460 */
1461#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1462#define DYING_NULLS_VAL ((1<<30)+1)
1463
08f6547d
AD
1464static int nf_conntrack_init_net(struct net *net)
1465{
1466 int ret;
ceceae1b 1467
08f6547d 1468 atomic_set(&net->ct.count, 0);
8cc20198
ED
1469 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, UNCONFIRMED_NULLS_VAL);
1470 INIT_HLIST_NULLS_HEAD(&net->ct.dying, DYING_NULLS_VAL);
08f6547d
AD
1471 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1472 if (!net->ct.stat) {
1473 ret = -ENOMEM;
1474 goto err_stat;
1475 }
5b3501fa
ED
1476
1477 net->ct.slabname = kasprintf(GFP_KERNEL, "nf_conntrack_%p", net);
1478 if (!net->ct.slabname) {
1479 ret = -ENOMEM;
1480 goto err_slabname;
1481 }
1482
1483 net->ct.nf_conntrack_cachep = kmem_cache_create(net->ct.slabname,
1484 sizeof(struct nf_conn), 0,
1485 SLAB_DESTROY_BY_RCU, NULL);
1486 if (!net->ct.nf_conntrack_cachep) {
1487 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1488 ret = -ENOMEM;
1489 goto err_cache;
1490 }
d696c7bd
PM
1491
1492 net->ct.htable_size = nf_conntrack_htable_size;
1493 net->ct.hash = nf_ct_alloc_hashtable(&net->ct.htable_size,
ea781f19 1494 &net->ct.hash_vmalloc, 1);
08f6547d
AD
1495 if (!net->ct.hash) {
1496 ret = -ENOMEM;
1497 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1498 goto err_hash;
1499 }
1500 ret = nf_conntrack_expect_init(net);
1501 if (ret < 0)
1502 goto err_expect;
d716a4df 1503 ret = nf_conntrack_acct_init(net);
58401572 1504 if (ret < 0)
08f6547d 1505 goto err_acct;
a0891aa6
PNA
1506 ret = nf_conntrack_ecache_init(net);
1507 if (ret < 0)
1508 goto err_ecache;
7d3cdc6b 1509
08f6547d 1510 return 0;
9fb9cbb1 1511
a0891aa6
PNA
1512err_ecache:
1513 nf_conntrack_acct_fini(net);
08f6547d 1514err_acct:
9b03f38d 1515 nf_conntrack_expect_fini(net);
08f6547d 1516err_expect:
400dad39 1517 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
d696c7bd 1518 net->ct.htable_size);
6058fa6b 1519err_hash:
5b3501fa
ED
1520 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1521err_cache:
1522 kfree(net->ct.slabname);
1523err_slabname:
0d55af87
AD
1524 free_percpu(net->ct.stat);
1525err_stat:
08f6547d
AD
1526 return ret;
1527}
1528
f9dd09c7
JK
1529s16 (*nf_ct_nat_offset)(const struct nf_conn *ct,
1530 enum ip_conntrack_dir dir,
1531 u32 seq);
1532EXPORT_SYMBOL_GPL(nf_ct_nat_offset);
1533
08f6547d
AD
1534int nf_conntrack_init(struct net *net)
1535{
1536 int ret;
1537
1538 if (net_eq(net, &init_net)) {
1539 ret = nf_conntrack_init_init_net();
1540 if (ret < 0)
1541 goto out_init_net;
1542 }
1543 ret = nf_conntrack_init_net(net);
1544 if (ret < 0)
1545 goto out_net;
1546
1547 if (net_eq(net, &init_net)) {
1548 /* For use by REJECT target */
1549 rcu_assign_pointer(ip_ct_attach, nf_conntrack_attach);
1550 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
f9dd09c7
JK
1551
1552 /* Howto get NAT offsets */
1553 rcu_assign_pointer(nf_ct_nat_offset, NULL);
08f6547d
AD
1554 }
1555 return 0;
1556
1557out_net:
1558 if (net_eq(net, &init_net))
1559 nf_conntrack_cleanup_init_net();
1560out_init_net:
1561 return ret;
9fb9cbb1 1562}
This page took 0.645428 seconds and 5 git commands to generate.