]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/netfilter/nf_conntrack_core.c
netfilter: netns nf_conntrack: per-netns conntrack count
[mirror_ubuntu-artful-kernel.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>
17#include <linux/skbuff.h>
18#include <linux/proc_fs.h>
19#include <linux/vmalloc.h>
20#include <linux/stddef.h>
21#include <linux/slab.h>
22#include <linux/random.h>
23#include <linux/jhash.h>
24#include <linux/err.h>
25#include <linux/percpu.h>
26#include <linux/moduleparam.h>
27#include <linux/notifier.h>
28#include <linux/kernel.h>
29#include <linux/netdevice.h>
30#include <linux/socket.h>
d7fe0f24 31#include <linux/mm.h>
9fb9cbb1 32
9fb9cbb1
YK
33#include <net/netfilter/nf_conntrack.h>
34#include <net/netfilter/nf_conntrack_l3proto.h>
605dcad6 35#include <net/netfilter/nf_conntrack_l4proto.h>
77ab9cff 36#include <net/netfilter/nf_conntrack_expect.h>
9fb9cbb1
YK
37#include <net/netfilter/nf_conntrack_helper.h>
38#include <net/netfilter/nf_conntrack_core.h>
ecfab2c9 39#include <net/netfilter/nf_conntrack_extend.h>
58401572 40#include <net/netfilter/nf_conntrack_acct.h>
9fb9cbb1 41
dc808fe2 42#define NF_CONNTRACK_VERSION "0.5.0"
9fb9cbb1 43
f8ba1aff 44DEFINE_SPINLOCK(nf_conntrack_lock);
13b18339 45EXPORT_SYMBOL_GPL(nf_conntrack_lock);
9fb9cbb1 46
e2b7606c 47unsigned int nf_conntrack_htable_size __read_mostly;
13b18339
PM
48EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
49
94aec08e 50int nf_conntrack_max __read_mostly;
a999e683 51EXPORT_SYMBOL_GPL(nf_conntrack_max);
13b18339 52
f205c5e0 53struct hlist_head *nf_conntrack_hash __read_mostly;
13b18339
PM
54EXPORT_SYMBOL_GPL(nf_conntrack_hash);
55
e2b7606c 56struct nf_conn nf_conntrack_untracked __read_mostly;
13b18339
PM
57EXPORT_SYMBOL_GPL(nf_conntrack_untracked);
58
94aec08e 59unsigned int nf_ct_log_invalid __read_mostly;
f205c5e0 60HLIST_HEAD(unconfirmed);
1192e403 61static int nf_conntrack_vmalloc __read_mostly;
dacd2a1a 62static struct kmem_cache *nf_conntrack_cachep __read_mostly;
77ab9cff 63
9fb9cbb1
YK
64DEFINE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
65EXPORT_PER_CPU_SYMBOL(nf_conntrack_stat);
66
9fb9cbb1
YK
67static int nf_conntrack_hash_rnd_initted;
68static unsigned int nf_conntrack_hash_rnd;
69
70static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
71 unsigned int size, unsigned int rnd)
72{
0794935e
PM
73 unsigned int n;
74 u_int32_t h;
75
76 /* The direction must be ignored, so we hash everything up to the
77 * destination ports (which is a multiple of 4) and treat the last
78 * three bytes manually.
79 */
80 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
81 h = jhash2((u32 *)tuple, n,
82 rnd ^ (((__force __u16)tuple->dst.u.all << 16) |
83 tuple->dst.protonum));
84
85 return ((u64)h * size) >> 32;
9fb9cbb1
YK
86}
87
88static inline u_int32_t hash_conntrack(const struct nf_conntrack_tuple *tuple)
89{
90 return __hash_conntrack(tuple, nf_conntrack_htable_size,
91 nf_conntrack_hash_rnd);
92}
93
5f2b4c90 94bool
9fb9cbb1
YK
95nf_ct_get_tuple(const struct sk_buff *skb,
96 unsigned int nhoff,
97 unsigned int dataoff,
98 u_int16_t l3num,
99 u_int8_t protonum,
100 struct nf_conntrack_tuple *tuple,
101 const struct nf_conntrack_l3proto *l3proto,
605dcad6 102 const struct nf_conntrack_l4proto *l4proto)
9fb9cbb1 103{
443a70d5 104 memset(tuple, 0, sizeof(*tuple));
9fb9cbb1
YK
105
106 tuple->src.l3num = l3num;
107 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
5f2b4c90 108 return false;
9fb9cbb1
YK
109
110 tuple->dst.protonum = protonum;
111 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
112
605dcad6 113 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
9fb9cbb1 114}
13b18339 115EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
9fb9cbb1 116
5f2b4c90
JE
117bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
118 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
e2a3123f
YK
119{
120 struct nf_conntrack_l3proto *l3proto;
121 struct nf_conntrack_l4proto *l4proto;
122 unsigned int protoff;
123 u_int8_t protonum;
124 int ret;
125
126 rcu_read_lock();
127
128 l3proto = __nf_ct_l3proto_find(l3num);
129 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
130 if (ret != NF_ACCEPT) {
131 rcu_read_unlock();
5f2b4c90 132 return false;
e2a3123f
YK
133 }
134
135 l4proto = __nf_ct_l4proto_find(l3num, protonum);
136
137 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
138 l3proto, l4proto);
139
140 rcu_read_unlock();
141 return ret;
142}
143EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
144
5f2b4c90 145bool
9fb9cbb1
YK
146nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
147 const struct nf_conntrack_tuple *orig,
148 const struct nf_conntrack_l3proto *l3proto,
605dcad6 149 const struct nf_conntrack_l4proto *l4proto)
9fb9cbb1 150{
443a70d5 151 memset(inverse, 0, sizeof(*inverse));
9fb9cbb1
YK
152
153 inverse->src.l3num = orig->src.l3num;
154 if (l3proto->invert_tuple(inverse, orig) == 0)
5f2b4c90 155 return false;
9fb9cbb1
YK
156
157 inverse->dst.dir = !orig->dst.dir;
158
159 inverse->dst.protonum = orig->dst.protonum;
605dcad6 160 return l4proto->invert_tuple(inverse, orig);
9fb9cbb1 161}
13b18339 162EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
9fb9cbb1 163
9fb9cbb1
YK
164static void
165clean_from_lists(struct nf_conn *ct)
166{
0d53778e 167 pr_debug("clean_from_lists(%p)\n", ct);
76507f69
PM
168 hlist_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
169 hlist_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnode);
9fb9cbb1
YK
170
171 /* Destroy all pending expectations */
c1d10adb 172 nf_ct_remove_expectations(ct);
9fb9cbb1
YK
173}
174
175static void
176destroy_conntrack(struct nf_conntrack *nfct)
177{
178 struct nf_conn *ct = (struct nf_conn *)nfct;
605dcad6 179 struct nf_conntrack_l4proto *l4proto;
9fb9cbb1 180
0d53778e 181 pr_debug("destroy_conntrack(%p)\n", ct);
9fb9cbb1
YK
182 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
183 NF_CT_ASSERT(!timer_pending(&ct->timeout));
184
185 nf_conntrack_event(IPCT_DESTROY, ct);
186 set_bit(IPS_DYING_BIT, &ct->status);
187
188 /* To make sure we don't get any weird locking issues here:
189 * destroy_conntrack() MUST NOT be called with a write lock
190 * to nf_conntrack_lock!!! -HW */
923f4902 191 rcu_read_lock();
5e8fbe2a 192 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
605dcad6
MJ
193 if (l4proto && l4proto->destroy)
194 l4proto->destroy(ct);
9fb9cbb1 195
982d9a9c 196 rcu_read_unlock();
9fb9cbb1 197
f8ba1aff 198 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
199 /* Expectations will have been removed in clean_from_lists,
200 * except TFTP can create an expectation on the first packet,
201 * before connection is in the list, so we need to clean here,
202 * too. */
c1d10adb 203 nf_ct_remove_expectations(ct);
9fb9cbb1
YK
204
205 /* We overload first tuple to link into unconfirmed list. */
206 if (!nf_ct_is_confirmed(ct)) {
f205c5e0
PM
207 BUG_ON(hlist_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode));
208 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
9fb9cbb1
YK
209 }
210
211 NF_CT_STAT_INC(delete);
f8ba1aff 212 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
213
214 if (ct->master)
215 nf_ct_put(ct->master);
216
0d53778e 217 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
9fb9cbb1
YK
218 nf_conntrack_free(ct);
219}
220
221static void death_by_timeout(unsigned long ul_conntrack)
222{
223 struct nf_conn *ct = (void *)ul_conntrack;
5397e97d 224 struct nf_conn_help *help = nfct_help(ct);
3c158f7f 225 struct nf_conntrack_helper *helper;
5397e97d 226
3c158f7f
PM
227 if (help) {
228 rcu_read_lock();
229 helper = rcu_dereference(help->helper);
230 if (helper && helper->destroy)
231 helper->destroy(ct);
232 rcu_read_unlock();
233 }
9fb9cbb1 234
f8ba1aff 235 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
236 /* Inside lock so preempt is disabled on module removal path.
237 * Otherwise we can get spurious warnings. */
238 NF_CT_STAT_INC(delete_list);
239 clean_from_lists(ct);
f8ba1aff 240 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
241 nf_ct_put(ct);
242}
243
c1d10adb 244struct nf_conntrack_tuple_hash *
ba419aff 245__nf_conntrack_find(const struct nf_conntrack_tuple *tuple)
9fb9cbb1
YK
246{
247 struct nf_conntrack_tuple_hash *h;
f205c5e0 248 struct hlist_node *n;
9fb9cbb1
YK
249 unsigned int hash = hash_conntrack(tuple);
250
4e29e9ec
PM
251 /* Disable BHs the entire time since we normally need to disable them
252 * at least once for the stats anyway.
253 */
254 local_bh_disable();
76507f69 255 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash], hnode) {
ba419aff 256 if (nf_ct_tuple_equal(tuple, &h->tuple)) {
9fb9cbb1 257 NF_CT_STAT_INC(found);
4e29e9ec 258 local_bh_enable();
9fb9cbb1
YK
259 return h;
260 }
261 NF_CT_STAT_INC(searched);
262 }
4e29e9ec 263 local_bh_enable();
9fb9cbb1
YK
264
265 return NULL;
266}
13b18339 267EXPORT_SYMBOL_GPL(__nf_conntrack_find);
9fb9cbb1
YK
268
269/* Find a connection corresponding to a tuple. */
270struct nf_conntrack_tuple_hash *
330f7db5 271nf_conntrack_find_get(const struct nf_conntrack_tuple *tuple)
9fb9cbb1
YK
272{
273 struct nf_conntrack_tuple_hash *h;
76507f69 274 struct nf_conn *ct;
9fb9cbb1 275
76507f69 276 rcu_read_lock();
ba419aff 277 h = __nf_conntrack_find(tuple);
76507f69
PM
278 if (h) {
279 ct = nf_ct_tuplehash_to_ctrack(h);
280 if (unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
281 h = NULL;
282 }
283 rcu_read_unlock();
9fb9cbb1
YK
284
285 return h;
286}
13b18339 287EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
9fb9cbb1 288
c1d10adb
PNA
289static void __nf_conntrack_hash_insert(struct nf_conn *ct,
290 unsigned int hash,
601e68e1 291 unsigned int repl_hash)
c1d10adb 292{
76507f69
PM
293 hlist_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
294 &nf_conntrack_hash[hash]);
295 hlist_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnode,
296 &nf_conntrack_hash[repl_hash]);
c1d10adb
PNA
297}
298
299void nf_conntrack_hash_insert(struct nf_conn *ct)
300{
301 unsigned int hash, repl_hash;
302
303 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
304 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
305
f8ba1aff 306 spin_lock_bh(&nf_conntrack_lock);
c1d10adb 307 __nf_conntrack_hash_insert(ct, hash, repl_hash);
f8ba1aff 308 spin_unlock_bh(&nf_conntrack_lock);
c1d10adb 309}
13b18339 310EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
c1d10adb 311
9fb9cbb1
YK
312/* Confirm a connection given skb; places it in hash table */
313int
3db05fea 314__nf_conntrack_confirm(struct sk_buff *skb)
9fb9cbb1
YK
315{
316 unsigned int hash, repl_hash;
df0933dc 317 struct nf_conntrack_tuple_hash *h;
9fb9cbb1 318 struct nf_conn *ct;
df0933dc 319 struct nf_conn_help *help;
f205c5e0 320 struct hlist_node *n;
9fb9cbb1
YK
321 enum ip_conntrack_info ctinfo;
322
3db05fea 323 ct = nf_ct_get(skb, &ctinfo);
9fb9cbb1
YK
324
325 /* ipt_REJECT uses nf_conntrack_attach to attach related
326 ICMP/TCP RST packets in other direction. Actual packet
327 which created connection will be IP_CT_NEW or for an
328 expected connection, IP_CT_RELATED. */
329 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
330 return NF_ACCEPT;
331
332 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
333 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
334
335 /* We're not in hash table, and we refuse to set up related
336 connections for unconfirmed conns. But packet copies and
337 REJECT will give spurious warnings here. */
338 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
339
340 /* No external references means noone else could have
341 confirmed us. */
342 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
0d53778e 343 pr_debug("Confirming conntrack %p\n", ct);
9fb9cbb1 344
f8ba1aff 345 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
346
347 /* See if there's one in the list already, including reverse:
348 NAT could have grabbed it without realizing, since we're
349 not in the hash. If there is, we lost race. */
f205c5e0 350 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode)
df0933dc
PM
351 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
352 &h->tuple))
353 goto out;
f205c5e0 354 hlist_for_each_entry(h, n, &nf_conntrack_hash[repl_hash], hnode)
df0933dc
PM
355 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
356 &h->tuple))
357 goto out;
9fb9cbb1 358
df0933dc 359 /* Remove from unconfirmed list */
f205c5e0 360 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
df0933dc
PM
361
362 __nf_conntrack_hash_insert(ct, hash, repl_hash);
363 /* Timer relative to confirmation time, not original
364 setting time, otherwise we'd get timer wrap in
365 weird delay cases. */
366 ct->timeout.expires += jiffies;
367 add_timer(&ct->timeout);
368 atomic_inc(&ct->ct_general.use);
369 set_bit(IPS_CONFIRMED_BIT, &ct->status);
370 NF_CT_STAT_INC(insert);
f8ba1aff 371 spin_unlock_bh(&nf_conntrack_lock);
df0933dc
PM
372 help = nfct_help(ct);
373 if (help && help->helper)
3db05fea 374 nf_conntrack_event_cache(IPCT_HELPER, skb);
9fb9cbb1 375#ifdef CONFIG_NF_NAT_NEEDED
df0933dc
PM
376 if (test_bit(IPS_SRC_NAT_DONE_BIT, &ct->status) ||
377 test_bit(IPS_DST_NAT_DONE_BIT, &ct->status))
3db05fea 378 nf_conntrack_event_cache(IPCT_NATINFO, skb);
9fb9cbb1 379#endif
df0933dc 380 nf_conntrack_event_cache(master_ct(ct) ?
3db05fea 381 IPCT_RELATED : IPCT_NEW, skb);
df0933dc 382 return NF_ACCEPT;
9fb9cbb1 383
df0933dc 384out:
9fb9cbb1 385 NF_CT_STAT_INC(insert_failed);
f8ba1aff 386 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
387 return NF_DROP;
388}
13b18339 389EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
9fb9cbb1
YK
390
391/* Returns true if a connection correspondings to the tuple (required
392 for NAT). */
393int
394nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
395 const struct nf_conn *ignored_conntrack)
396{
397 struct nf_conntrack_tuple_hash *h;
ba419aff
PM
398 struct hlist_node *n;
399 unsigned int hash = hash_conntrack(tuple);
9fb9cbb1 400
4e29e9ec
PM
401 /* Disable BHs the entire time since we need to disable them at
402 * least once for the stats anyway.
403 */
404 rcu_read_lock_bh();
ba419aff
PM
405 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash], hnode) {
406 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
407 nf_ct_tuple_equal(tuple, &h->tuple)) {
408 NF_CT_STAT_INC(found);
4e29e9ec 409 rcu_read_unlock_bh();
ba419aff
PM
410 return 1;
411 }
412 NF_CT_STAT_INC(searched);
413 }
4e29e9ec 414 rcu_read_unlock_bh();
9fb9cbb1 415
ba419aff 416 return 0;
9fb9cbb1 417}
13b18339 418EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
9fb9cbb1 419
7ae7730f
PM
420#define NF_CT_EVICTION_RANGE 8
421
9fb9cbb1
YK
422/* There's a small race here where we may free a just-assured
423 connection. Too bad: we're in trouble anyway. */
76eb9460 424static noinline int early_drop(unsigned int hash)
9fb9cbb1 425{
f205c5e0 426 /* Use oldest entry, which is roughly LRU */
9fb9cbb1 427 struct nf_conntrack_tuple_hash *h;
df0933dc 428 struct nf_conn *ct = NULL, *tmp;
f205c5e0 429 struct hlist_node *n;
7ae7730f 430 unsigned int i, cnt = 0;
9fb9cbb1
YK
431 int dropped = 0;
432
76507f69 433 rcu_read_lock();
7ae7730f 434 for (i = 0; i < nf_conntrack_htable_size; i++) {
76507f69
PM
435 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash],
436 hnode) {
7ae7730f
PM
437 tmp = nf_ct_tuplehash_to_ctrack(h);
438 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
439 ct = tmp;
440 cnt++;
441 }
76507f69
PM
442
443 if (ct && unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
444 ct = NULL;
7ae7730f
PM
445 if (ct || cnt >= NF_CT_EVICTION_RANGE)
446 break;
447 hash = (hash + 1) % nf_conntrack_htable_size;
9fb9cbb1 448 }
76507f69 449 rcu_read_unlock();
9fb9cbb1
YK
450
451 if (!ct)
452 return dropped;
453
454 if (del_timer(&ct->timeout)) {
455 death_by_timeout((unsigned long)ct);
456 dropped = 1;
c0e912d7 457 NF_CT_STAT_INC_ATOMIC(early_drop);
9fb9cbb1
YK
458 }
459 nf_ct_put(ct);
460 return dropped;
461}
462
5a1fb391
AD
463struct nf_conn *nf_conntrack_alloc(struct net *net,
464 const struct nf_conntrack_tuple *orig,
b891c5a8
PNA
465 const struct nf_conntrack_tuple *repl,
466 gfp_t gfp)
9fb9cbb1 467{
c88130bc 468 struct nf_conn *ct = NULL;
9fb9cbb1 469
dc808fe2 470 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
9fb9cbb1
YK
471 get_random_bytes(&nf_conntrack_hash_rnd, 4);
472 nf_conntrack_hash_rnd_initted = 1;
473 }
474
5251e2d2 475 /* We don't want any race condition at early drop stage */
49ac8713 476 atomic_inc(&net->ct.count);
5251e2d2 477
76eb9460 478 if (nf_conntrack_max &&
49ac8713 479 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
9fb9cbb1 480 unsigned int hash = hash_conntrack(orig);
7ae7730f 481 if (!early_drop(hash)) {
49ac8713 482 atomic_dec(&net->ct.count);
9fb9cbb1
YK
483 if (net_ratelimit())
484 printk(KERN_WARNING
485 "nf_conntrack: table full, dropping"
486 " packet.\n");
487 return ERR_PTR(-ENOMEM);
488 }
489 }
490
b891c5a8 491 ct = kmem_cache_zalloc(nf_conntrack_cachep, gfp);
c88130bc 492 if (ct == NULL) {
0d53778e 493 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
49ac8713 494 atomic_dec(&net->ct.count);
dacd2a1a 495 return ERR_PTR(-ENOMEM);
9fb9cbb1
YK
496 }
497
c88130bc
PM
498 atomic_set(&ct->ct_general.use, 1);
499 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
500 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
9fb9cbb1 501 /* Don't set timer yet: wait for confirmation */
c88130bc 502 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
5a1fb391
AD
503#ifdef CONFIG_NET_NS
504 ct->ct_net = net;
505#endif
c88130bc 506 INIT_RCU_HEAD(&ct->rcu);
9fb9cbb1 507
c88130bc 508 return ct;
9fb9cbb1 509}
13b18339 510EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
9fb9cbb1 511
76507f69 512static void nf_conntrack_free_rcu(struct rcu_head *head)
9fb9cbb1 513{
76507f69 514 struct nf_conn *ct = container_of(head, struct nf_conn, rcu);
49ac8713 515 struct net *net = nf_ct_net(ct);
76507f69
PM
516
517 nf_ct_ext_free(ct);
518 kmem_cache_free(nf_conntrack_cachep, ct);
49ac8713 519 atomic_dec(&net->ct.count);
9fb9cbb1 520}
76507f69 521
c88130bc 522void nf_conntrack_free(struct nf_conn *ct)
76507f69 523{
ceeff754 524 nf_ct_ext_destroy(ct);
c88130bc 525 call_rcu(&ct->rcu, nf_conntrack_free_rcu);
76507f69 526}
13b18339 527EXPORT_SYMBOL_GPL(nf_conntrack_free);
9fb9cbb1
YK
528
529/* Allocate a new conntrack: we return -ENOMEM if classification
530 failed due to stress. Otherwise it really is unclassifiable. */
531static struct nf_conntrack_tuple_hash *
5a1fb391
AD
532init_conntrack(struct net *net,
533 const struct nf_conntrack_tuple *tuple,
9fb9cbb1 534 struct nf_conntrack_l3proto *l3proto,
605dcad6 535 struct nf_conntrack_l4proto *l4proto,
9fb9cbb1
YK
536 struct sk_buff *skb,
537 unsigned int dataoff)
538{
c88130bc 539 struct nf_conn *ct;
3c158f7f 540 struct nf_conn_help *help;
9fb9cbb1
YK
541 struct nf_conntrack_tuple repl_tuple;
542 struct nf_conntrack_expect *exp;
543
605dcad6 544 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
0d53778e 545 pr_debug("Can't invert tuple.\n");
9fb9cbb1
YK
546 return NULL;
547 }
548
5a1fb391 549 ct = nf_conntrack_alloc(net, tuple, &repl_tuple, GFP_ATOMIC);
c88130bc 550 if (ct == NULL || IS_ERR(ct)) {
0d53778e 551 pr_debug("Can't allocate conntrack.\n");
c88130bc 552 return (struct nf_conntrack_tuple_hash *)ct;
9fb9cbb1
YK
553 }
554
c88130bc
PM
555 if (!l4proto->new(ct, skb, dataoff)) {
556 nf_conntrack_free(ct);
0d53778e 557 pr_debug("init conntrack: can't track with proto module\n");
9fb9cbb1
YK
558 return NULL;
559 }
560
58401572
KPO
561 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
562
f8ba1aff 563 spin_lock_bh(&nf_conntrack_lock);
6823645d 564 exp = nf_ct_find_expectation(tuple);
9fb9cbb1 565 if (exp) {
0d53778e 566 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
c88130bc 567 ct, exp);
9fb9cbb1 568 /* Welcome, Mr. Bond. We've been expecting you... */
c88130bc
PM
569 __set_bit(IPS_EXPECTED_BIT, &ct->status);
570 ct->master = exp->master;
ceceae1b 571 if (exp->helper) {
c88130bc 572 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
ceceae1b
YK
573 if (help)
574 rcu_assign_pointer(help->helper, exp->helper);
ceceae1b
YK
575 }
576
9fb9cbb1 577#ifdef CONFIG_NF_CONNTRACK_MARK
c88130bc 578 ct->mark = exp->master->mark;
7c9728c3
JM
579#endif
580#ifdef CONFIG_NF_CONNTRACK_SECMARK
c88130bc 581 ct->secmark = exp->master->secmark;
9fb9cbb1 582#endif
c88130bc 583 nf_conntrack_get(&ct->master->ct_general);
9fb9cbb1 584 NF_CT_STAT_INC(expect_new);
22e7410b 585 } else {
ceceae1b
YK
586 struct nf_conntrack_helper *helper;
587
588 helper = __nf_ct_helper_find(&repl_tuple);
589 if (helper) {
c88130bc 590 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
ceceae1b 591 if (help)
ceceae1b 592 rcu_assign_pointer(help->helper, helper);
3c158f7f 593 }
9fb9cbb1 594 NF_CT_STAT_INC(new);
22e7410b 595 }
9fb9cbb1
YK
596
597 /* Overload tuple linked list to put us in unconfirmed list. */
c88130bc 598 hlist_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode, &unconfirmed);
9fb9cbb1 599
f8ba1aff 600 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
601
602 if (exp) {
603 if (exp->expectfn)
c88130bc 604 exp->expectfn(ct, exp);
6823645d 605 nf_ct_expect_put(exp);
9fb9cbb1
YK
606 }
607
c88130bc 608 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
9fb9cbb1
YK
609}
610
611/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
612static inline struct nf_conn *
613resolve_normal_ct(struct sk_buff *skb,
614 unsigned int dataoff,
615 u_int16_t l3num,
616 u_int8_t protonum,
617 struct nf_conntrack_l3proto *l3proto,
605dcad6 618 struct nf_conntrack_l4proto *l4proto,
9fb9cbb1
YK
619 int *set_reply,
620 enum ip_conntrack_info *ctinfo)
621{
622 struct nf_conntrack_tuple tuple;
623 struct nf_conntrack_tuple_hash *h;
624 struct nf_conn *ct;
625
bbe735e4 626 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
9fb9cbb1 627 dataoff, l3num, protonum, &tuple, l3proto,
605dcad6 628 l4proto)) {
0d53778e 629 pr_debug("resolve_normal_ct: Can't get tuple\n");
9fb9cbb1
YK
630 return NULL;
631 }
632
633 /* look for tuple match */
330f7db5 634 h = nf_conntrack_find_get(&tuple);
9fb9cbb1 635 if (!h) {
5a1fb391
AD
636 h = init_conntrack(&init_net, &tuple, l3proto, l4proto, skb,
637 dataoff);
9fb9cbb1
YK
638 if (!h)
639 return NULL;
640 if (IS_ERR(h))
641 return (void *)h;
642 }
643 ct = nf_ct_tuplehash_to_ctrack(h);
644
645 /* It exists; we have (non-exclusive) reference. */
646 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
647 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
648 /* Please set reply bit if this packet OK */
649 *set_reply = 1;
650 } else {
651 /* Once we've had two way comms, always ESTABLISHED. */
652 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
0d53778e 653 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
9fb9cbb1
YK
654 *ctinfo = IP_CT_ESTABLISHED;
655 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
0d53778e
PM
656 pr_debug("nf_conntrack_in: related packet for %p\n",
657 ct);
9fb9cbb1
YK
658 *ctinfo = IP_CT_RELATED;
659 } else {
0d53778e 660 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
9fb9cbb1
YK
661 *ctinfo = IP_CT_NEW;
662 }
663 *set_reply = 0;
664 }
665 skb->nfct = &ct->ct_general;
666 skb->nfctinfo = *ctinfo;
667 return ct;
668}
669
670unsigned int
76108cea 671nf_conntrack_in(u_int8_t pf, unsigned int hooknum, struct sk_buff *skb)
9fb9cbb1
YK
672{
673 struct nf_conn *ct;
674 enum ip_conntrack_info ctinfo;
675 struct nf_conntrack_l3proto *l3proto;
605dcad6 676 struct nf_conntrack_l4proto *l4proto;
9fb9cbb1
YK
677 unsigned int dataoff;
678 u_int8_t protonum;
679 int set_reply = 0;
680 int ret;
681
682 /* Previously seen (loopback or untracked)? Ignore. */
3db05fea 683 if (skb->nfct) {
c0e912d7 684 NF_CT_STAT_INC_ATOMIC(ignore);
9fb9cbb1
YK
685 return NF_ACCEPT;
686 }
687
923f4902 688 /* rcu_read_lock()ed by nf_hook_slow */
76108cea 689 l3proto = __nf_ct_l3proto_find(pf);
3db05fea 690 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
ffc30690
YK
691 &dataoff, &protonum);
692 if (ret <= 0) {
0d53778e 693 pr_debug("not prepared to track yet or error occured\n");
d87d8469
YK
694 NF_CT_STAT_INC_ATOMIC(error);
695 NF_CT_STAT_INC_ATOMIC(invalid);
9fb9cbb1
YK
696 return -ret;
697 }
698
76108cea 699 l4proto = __nf_ct_l4proto_find(pf, protonum);
9fb9cbb1
YK
700
701 /* It may be an special packet, error, unclean...
702 * inverse of the return code tells to the netfilter
703 * core what to do with the packet. */
605dcad6 704 if (l4proto->error != NULL &&
3db05fea 705 (ret = l4proto->error(skb, dataoff, &ctinfo, pf, hooknum)) <= 0) {
c0e912d7
PM
706 NF_CT_STAT_INC_ATOMIC(error);
707 NF_CT_STAT_INC_ATOMIC(invalid);
9fb9cbb1
YK
708 return -ret;
709 }
710
3db05fea 711 ct = resolve_normal_ct(skb, dataoff, pf, protonum, l3proto, l4proto,
9fb9cbb1
YK
712 &set_reply, &ctinfo);
713 if (!ct) {
714 /* Not valid part of a connection */
c0e912d7 715 NF_CT_STAT_INC_ATOMIC(invalid);
9fb9cbb1
YK
716 return NF_ACCEPT;
717 }
718
719 if (IS_ERR(ct)) {
720 /* Too stressed to deal. */
c0e912d7 721 NF_CT_STAT_INC_ATOMIC(drop);
9fb9cbb1
YK
722 return NF_DROP;
723 }
724
3db05fea 725 NF_CT_ASSERT(skb->nfct);
9fb9cbb1 726
3db05fea 727 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
9fb9cbb1
YK
728 if (ret < 0) {
729 /* Invalid: inverse of the return code tells
730 * the netfilter core what to do */
0d53778e 731 pr_debug("nf_conntrack_in: Can't track with proto module\n");
3db05fea
HX
732 nf_conntrack_put(skb->nfct);
733 skb->nfct = NULL;
c0e912d7 734 NF_CT_STAT_INC_ATOMIC(invalid);
9fb9cbb1
YK
735 return -ret;
736 }
737
738 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
3db05fea 739 nf_conntrack_event_cache(IPCT_STATUS, skb);
9fb9cbb1
YK
740
741 return ret;
742}
13b18339 743EXPORT_SYMBOL_GPL(nf_conntrack_in);
9fb9cbb1 744
5f2b4c90
JE
745bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
746 const struct nf_conntrack_tuple *orig)
9fb9cbb1 747{
5f2b4c90 748 bool ret;
923f4902
PM
749
750 rcu_read_lock();
751 ret = nf_ct_invert_tuple(inverse, orig,
752 __nf_ct_l3proto_find(orig->src.l3num),
753 __nf_ct_l4proto_find(orig->src.l3num,
754 orig->dst.protonum));
755 rcu_read_unlock();
756 return ret;
9fb9cbb1 757}
13b18339 758EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
9fb9cbb1 759
5b1158e9
JK
760/* Alter reply tuple (maybe alter helper). This is for NAT, and is
761 implicitly racy: see __nf_conntrack_confirm */
762void nf_conntrack_alter_reply(struct nf_conn *ct,
763 const struct nf_conntrack_tuple *newreply)
764{
765 struct nf_conn_help *help = nfct_help(ct);
ceceae1b 766 struct nf_conntrack_helper *helper;
5b1158e9 767
5b1158e9
JK
768 /* Should be unconfirmed, so not in hash table yet */
769 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
770
0d53778e 771 pr_debug("Altering reply tuple of %p to ", ct);
3c9fba65 772 nf_ct_dump_tuple(newreply);
5b1158e9
JK
773
774 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
ef1a5a50 775 if (ct->master || (help && !hlist_empty(&help->expectations)))
c52fbb41 776 return;
ceceae1b 777
c52fbb41 778 rcu_read_lock();
ceceae1b
YK
779 helper = __nf_ct_helper_find(newreply);
780 if (helper == NULL) {
781 if (help)
782 rcu_assign_pointer(help->helper, NULL);
783 goto out;
5d78a849 784 }
ceceae1b
YK
785
786 if (help == NULL) {
b560580a
PM
787 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
788 if (help == NULL)
ceceae1b 789 goto out;
ceceae1b
YK
790 } else {
791 memset(&help->help, 0, sizeof(help->help));
792 }
793
794 rcu_assign_pointer(help->helper, helper);
795out:
c52fbb41 796 rcu_read_unlock();
5b1158e9 797}
13b18339 798EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
5b1158e9 799
9fb9cbb1
YK
800/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
801void __nf_ct_refresh_acct(struct nf_conn *ct,
802 enum ip_conntrack_info ctinfo,
803 const struct sk_buff *skb,
804 unsigned long extra_jiffies,
805 int do_acct)
806{
807 int event = 0;
808
809 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
810 NF_CT_ASSERT(skb);
811
f8ba1aff 812 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1 813
997ae831 814 /* Only update if this is not a fixed timeout */
47d95045
PM
815 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
816 goto acct;
997ae831 817
9fb9cbb1
YK
818 /* If not in hash table, timer will not be active yet */
819 if (!nf_ct_is_confirmed(ct)) {
820 ct->timeout.expires = extra_jiffies;
821 event = IPCT_REFRESH;
822 } else {
be00c8e4
MJ
823 unsigned long newtime = jiffies + extra_jiffies;
824
825 /* Only update the timeout if the new timeout is at least
826 HZ jiffies from the old timeout. Need del_timer for race
827 avoidance (may already be dying). */
828 if (newtime - ct->timeout.expires >= HZ
829 && del_timer(&ct->timeout)) {
830 ct->timeout.expires = newtime;
9fb9cbb1
YK
831 add_timer(&ct->timeout);
832 event = IPCT_REFRESH;
833 }
834 }
835
47d95045 836acct:
9fb9cbb1 837 if (do_acct) {
58401572 838 struct nf_conn_counter *acct;
3ffd5eeb 839
58401572
KPO
840 acct = nf_conn_acct_find(ct);
841 if (acct) {
842 acct[CTINFO2DIR(ctinfo)].packets++;
843 acct[CTINFO2DIR(ctinfo)].bytes +=
844 skb->len - skb_network_offset(skb);
845 }
9fb9cbb1 846 }
9fb9cbb1 847
f8ba1aff 848 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
849
850 /* must be unlocked when calling event cache */
851 if (event)
852 nf_conntrack_event_cache(event, skb);
853}
13b18339 854EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
9fb9cbb1 855
4c889498
DM
856bool __nf_ct_kill_acct(struct nf_conn *ct,
857 enum ip_conntrack_info ctinfo,
858 const struct sk_buff *skb,
859 int do_acct)
51091764 860{
718d4ad9 861 if (do_acct) {
58401572
KPO
862 struct nf_conn_counter *acct;
863
718d4ad9 864 spin_lock_bh(&nf_conntrack_lock);
58401572
KPO
865 acct = nf_conn_acct_find(ct);
866 if (acct) {
867 acct[CTINFO2DIR(ctinfo)].packets++;
868 acct[CTINFO2DIR(ctinfo)].bytes +=
869 skb->len - skb_network_offset(skb);
870 }
718d4ad9
FH
871 spin_unlock_bh(&nf_conntrack_lock);
872 }
58401572 873
4c889498 874 if (del_timer(&ct->timeout)) {
51091764 875 ct->timeout.function((unsigned long)ct);
4c889498
DM
876 return true;
877 }
878 return false;
51091764 879}
718d4ad9 880EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
51091764 881
e281db5c 882#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
c1d10adb
PNA
883
884#include <linux/netfilter/nfnetlink.h>
885#include <linux/netfilter/nfnetlink_conntrack.h>
57b47a53
IM
886#include <linux/mutex.h>
887
c1d10adb
PNA
888/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
889 * in ip_conntrack_core, since we don't want the protocols to autoload
890 * or depend on ctnetlink */
fdf70832 891int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
c1d10adb
PNA
892 const struct nf_conntrack_tuple *tuple)
893{
77236b6e
PM
894 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
895 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
c1d10adb
PNA
896 return 0;
897
df6fb868 898nla_put_failure:
c1d10adb
PNA
899 return -1;
900}
fdf70832 901EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
c1d10adb 902
f73e924c
PM
903const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
904 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
905 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
c1d10adb 906};
f73e924c 907EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
c1d10adb 908
fdf70832 909int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
c1d10adb
PNA
910 struct nf_conntrack_tuple *t)
911{
df6fb868 912 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
c1d10adb
PNA
913 return -EINVAL;
914
77236b6e
PM
915 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
916 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
c1d10adb
PNA
917
918 return 0;
919}
fdf70832 920EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
c1d10adb
PNA
921#endif
922
9fb9cbb1 923/* Used by ipt_REJECT and ip6t_REJECT. */
b334aadc 924static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
9fb9cbb1
YK
925{
926 struct nf_conn *ct;
927 enum ip_conntrack_info ctinfo;
928
929 /* This ICMP is in reverse direction to the packet which caused it */
930 ct = nf_ct_get(skb, &ctinfo);
931 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
932 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
933 else
934 ctinfo = IP_CT_RELATED;
935
936 /* Attach to new skbuff, and increment count */
937 nskb->nfct = &ct->ct_general;
938 nskb->nfctinfo = ctinfo;
939 nf_conntrack_get(nskb->nfct);
940}
941
9fb9cbb1 942/* Bring out ya dead! */
df0933dc 943static struct nf_conn *
9fb9cbb1
YK
944get_next_corpse(int (*iter)(struct nf_conn *i, void *data),
945 void *data, unsigned int *bucket)
946{
df0933dc
PM
947 struct nf_conntrack_tuple_hash *h;
948 struct nf_conn *ct;
f205c5e0 949 struct hlist_node *n;
9fb9cbb1 950
f8ba1aff 951 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1 952 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
f205c5e0 953 hlist_for_each_entry(h, n, &nf_conntrack_hash[*bucket], hnode) {
df0933dc
PM
954 ct = nf_ct_tuplehash_to_ctrack(h);
955 if (iter(ct, data))
956 goto found;
957 }
601e68e1 958 }
f205c5e0 959 hlist_for_each_entry(h, n, &unconfirmed, hnode) {
df0933dc
PM
960 ct = nf_ct_tuplehash_to_ctrack(h);
961 if (iter(ct, data))
ec68e97d 962 set_bit(IPS_DYING_BIT, &ct->status);
df0933dc 963 }
f8ba1aff 964 spin_unlock_bh(&nf_conntrack_lock);
df0933dc
PM
965 return NULL;
966found:
c073e3fa 967 atomic_inc(&ct->ct_general.use);
f8ba1aff 968 spin_unlock_bh(&nf_conntrack_lock);
df0933dc 969 return ct;
9fb9cbb1
YK
970}
971
972void
973nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data)
974{
df0933dc 975 struct nf_conn *ct;
9fb9cbb1
YK
976 unsigned int bucket = 0;
977
df0933dc 978 while ((ct = get_next_corpse(iter, data, &bucket)) != NULL) {
9fb9cbb1
YK
979 /* Time to push up daises... */
980 if (del_timer(&ct->timeout))
981 death_by_timeout((unsigned long)ct);
982 /* ... else the timer will get him soon. */
983
984 nf_ct_put(ct);
985 }
986}
13b18339 987EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
9fb9cbb1
YK
988
989static int kill_all(struct nf_conn *i, void *data)
990{
991 return 1;
992}
993
96eb24d7 994void nf_ct_free_hashtable(struct hlist_head *hash, int vmalloced, unsigned int size)
9fb9cbb1
YK
995{
996 if (vmalloced)
997 vfree(hash);
998 else
601e68e1 999 free_pages((unsigned long)hash,
f205c5e0 1000 get_order(sizeof(struct hlist_head) * size));
9fb9cbb1 1001}
ac565e5f 1002EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
9fb9cbb1 1003
272491ef 1004void nf_conntrack_flush(void)
c1d10adb
PNA
1005{
1006 nf_ct_iterate_cleanup(kill_all, NULL);
1007}
13b18339 1008EXPORT_SYMBOL_GPL(nf_conntrack_flush);
c1d10adb 1009
9fb9cbb1
YK
1010/* Mishearing the voices in his head, our hero wonders how he's
1011 supposed to kill the mall. */
dfdb8d79 1012void nf_conntrack_cleanup(struct net *net)
9fb9cbb1 1013{
c3a47ab3 1014 rcu_assign_pointer(ip_ct_attach, NULL);
7d3cdc6b 1015
9fb9cbb1
YK
1016 /* This makes sure all current packets have passed through
1017 netfilter framework. Roll on, two-stage module
1018 delete... */
1019 synchronize_net();
1020
1021 nf_ct_event_cache_flush();
1022 i_see_dead_people:
c1d10adb 1023 nf_conntrack_flush();
49ac8713 1024 if (atomic_read(&net->ct.count) != 0) {
9fb9cbb1
YK
1025 schedule();
1026 goto i_see_dead_people;
1027 }
6636568c
PM
1028 /* wait until all references to nf_conntrack_untracked are dropped */
1029 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
1030 schedule();
9fb9cbb1 1031
de6e05c4
YK
1032 rcu_assign_pointer(nf_ct_destroy, NULL);
1033
dacd2a1a 1034 kmem_cache_destroy(nf_conntrack_cachep);
ac565e5f
PM
1035 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
1036 nf_conntrack_htable_size);
5a6f294e 1037
58401572 1038 nf_conntrack_acct_fini();
9714be7d
KPO
1039 nf_conntrack_expect_fini();
1040 nf_conntrack_helper_fini();
1041 nf_conntrack_proto_fini();
9fb9cbb1
YK
1042}
1043
96eb24d7 1044struct hlist_head *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced)
9fb9cbb1 1045{
f205c5e0 1046 struct hlist_head *hash;
8e5105a0 1047 unsigned int size, i;
9fb9cbb1 1048
601e68e1 1049 *vmalloced = 0;
8e5105a0 1050
f205c5e0 1051 size = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_head));
29b67497 1052 hash = (void*)__get_free_pages(GFP_KERNEL|__GFP_NOWARN,
f205c5e0 1053 get_order(sizeof(struct hlist_head)
9fb9cbb1 1054 * size));
601e68e1 1055 if (!hash) {
9fb9cbb1
YK
1056 *vmalloced = 1;
1057 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
f205c5e0 1058 hash = vmalloc(sizeof(struct hlist_head) * size);
9fb9cbb1
YK
1059 }
1060
1061 if (hash)
601e68e1 1062 for (i = 0; i < size; i++)
f205c5e0 1063 INIT_HLIST_HEAD(&hash[i]);
9fb9cbb1
YK
1064
1065 return hash;
1066}
ac565e5f 1067EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
9fb9cbb1 1068
fae718dd 1069int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
9fb9cbb1 1070{
96eb24d7
SH
1071 int i, bucket, vmalloced, old_vmalloced;
1072 unsigned int hashsize, old_size;
9fb9cbb1 1073 int rnd;
f205c5e0 1074 struct hlist_head *hash, *old_hash;
9fb9cbb1
YK
1075 struct nf_conntrack_tuple_hash *h;
1076
1077 /* On boot, we can set this without any fancy locking. */
1078 if (!nf_conntrack_htable_size)
1079 return param_set_uint(val, kp);
1080
96eb24d7 1081 hashsize = simple_strtoul(val, NULL, 0);
9fb9cbb1
YK
1082 if (!hashsize)
1083 return -EINVAL;
1084
ac565e5f 1085 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced);
9fb9cbb1
YK
1086 if (!hash)
1087 return -ENOMEM;
1088
1089 /* We have to rehahs for the new table anyway, so we also can
1090 * use a newrandom seed */
1091 get_random_bytes(&rnd, 4);
1092
76507f69
PM
1093 /* Lookups in the old hash might happen in parallel, which means we
1094 * might get false negatives during connection lookup. New connections
1095 * created because of a false negative won't make it into the hash
1096 * though since that required taking the lock.
1097 */
f8ba1aff 1098 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1 1099 for (i = 0; i < nf_conntrack_htable_size; i++) {
f205c5e0
PM
1100 while (!hlist_empty(&nf_conntrack_hash[i])) {
1101 h = hlist_entry(nf_conntrack_hash[i].first,
1102 struct nf_conntrack_tuple_hash, hnode);
76507f69 1103 hlist_del_rcu(&h->hnode);
9fb9cbb1 1104 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
f205c5e0 1105 hlist_add_head(&h->hnode, &hash[bucket]);
9fb9cbb1
YK
1106 }
1107 }
1108 old_size = nf_conntrack_htable_size;
1109 old_vmalloced = nf_conntrack_vmalloc;
1110 old_hash = nf_conntrack_hash;
1111
1112 nf_conntrack_htable_size = hashsize;
1113 nf_conntrack_vmalloc = vmalloced;
1114 nf_conntrack_hash = hash;
1115 nf_conntrack_hash_rnd = rnd;
f8ba1aff 1116 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1 1117
ac565e5f 1118 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
9fb9cbb1
YK
1119 return 0;
1120}
fae718dd 1121EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
9fb9cbb1 1122
fae718dd 1123module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
9fb9cbb1
YK
1124 &nf_conntrack_htable_size, 0600);
1125
dfdb8d79 1126int nf_conntrack_init(struct net *net)
9fb9cbb1 1127{
f205c5e0 1128 int max_factor = 8;
9fb9cbb1
YK
1129 int ret;
1130
1131 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
f205c5e0 1132 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
9fb9cbb1
YK
1133 if (!nf_conntrack_htable_size) {
1134 nf_conntrack_htable_size
1135 = (((num_physpages << PAGE_SHIFT) / 16384)
f205c5e0 1136 / sizeof(struct hlist_head));
9fb9cbb1 1137 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
f205c5e0
PM
1138 nf_conntrack_htable_size = 16384;
1139 if (nf_conntrack_htable_size < 32)
1140 nf_conntrack_htable_size = 32;
1141
1142 /* Use a max. factor of four by default to get the same max as
1143 * with the old struct list_heads. When a table size is given
1144 * we use the old value of 8 to avoid reducing the max.
1145 * entries. */
1146 max_factor = 4;
9fb9cbb1 1147 }
49ac8713 1148 atomic_set(&net->ct.count, 0);
ac565e5f
PM
1149 nf_conntrack_hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
1150 &nf_conntrack_vmalloc);
9fb9cbb1
YK
1151 if (!nf_conntrack_hash) {
1152 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1153 goto err_out;
1154 }
1155
f205c5e0 1156 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
8e5105a0
PM
1157
1158 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1159 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1160 nf_conntrack_max);
1161
dacd2a1a
YK
1162 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1163 sizeof(struct nf_conn),
20c2df83 1164 0, 0, NULL);
dacd2a1a 1165 if (!nf_conntrack_cachep) {
9fb9cbb1
YK
1166 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1167 goto err_free_hash;
1168 }
1169
e9c1b084
PM
1170 ret = nf_conntrack_proto_init();
1171 if (ret < 0)
9fb9cbb1 1172 goto err_free_conntrack_slab;
9fb9cbb1 1173
e9c1b084 1174 ret = nf_conntrack_expect_init();
933a41e7 1175 if (ret < 0)
e9c1b084 1176 goto out_fini_proto;
933a41e7 1177
ceceae1b
YK
1178 ret = nf_conntrack_helper_init();
1179 if (ret < 0)
e9c1b084 1180 goto out_fini_expect;
ceceae1b 1181
58401572
KPO
1182 ret = nf_conntrack_acct_init();
1183 if (ret < 0)
1184 goto out_fini_helper;
1185
7d3cdc6b 1186 /* For use by REJECT target */
b334aadc 1187 rcu_assign_pointer(ip_ct_attach, nf_conntrack_attach);
de6e05c4 1188 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
7d3cdc6b 1189
9fb9cbb1
YK
1190 /* Set up fake conntrack:
1191 - to never be deleted, not in any hashes */
5a1fb391
AD
1192#ifdef CONFIG_NET_NS
1193 nf_conntrack_untracked.ct_net = &init_net;
1194#endif
9fb9cbb1
YK
1195 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1196 /* - and look it like as a confirmed connection */
1197 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1198
1199 return ret;
1200
58401572
KPO
1201out_fini_helper:
1202 nf_conntrack_helper_fini();
e9c1b084
PM
1203out_fini_expect:
1204 nf_conntrack_expect_fini();
ceceae1b
YK
1205out_fini_proto:
1206 nf_conntrack_proto_fini();
9fb9cbb1 1207err_free_conntrack_slab:
dacd2a1a 1208 kmem_cache_destroy(nf_conntrack_cachep);
9fb9cbb1 1209err_free_hash:
ac565e5f
PM
1210 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
1211 nf_conntrack_htable_size);
9fb9cbb1
YK
1212err_out:
1213 return -ENOMEM;
1214}