[NETFILTER]: nf_conntrack: fix helper module unload races
[linux-2.6-block.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>
9fb9cbb1 39
dc808fe2 40#define NF_CONNTRACK_VERSION "0.5.0"
9fb9cbb1
YK
41
42#if 0
43#define DEBUGP printk
44#else
45#define DEBUGP(format, args...)
46#endif
47
48DEFINE_RWLOCK(nf_conntrack_lock);
13b18339 49EXPORT_SYMBOL_GPL(nf_conntrack_lock);
9fb9cbb1
YK
50
51/* nf_conntrack_standalone needs this */
52atomic_t nf_conntrack_count = ATOMIC_INIT(0);
a999e683 53EXPORT_SYMBOL_GPL(nf_conntrack_count);
9fb9cbb1 54
13b18339
PM
55void (*nf_conntrack_destroyed)(struct nf_conn *conntrack);
56EXPORT_SYMBOL_GPL(nf_conntrack_destroyed);
57
e2b7606c 58unsigned int nf_conntrack_htable_size __read_mostly;
13b18339
PM
59EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
60
94aec08e 61int nf_conntrack_max __read_mostly;
a999e683 62EXPORT_SYMBOL_GPL(nf_conntrack_max);
13b18339 63
1192e403 64struct list_head *nf_conntrack_hash __read_mostly;
13b18339
PM
65EXPORT_SYMBOL_GPL(nf_conntrack_hash);
66
e2b7606c 67struct nf_conn nf_conntrack_untracked __read_mostly;
13b18339
PM
68EXPORT_SYMBOL_GPL(nf_conntrack_untracked);
69
94aec08e 70unsigned int nf_ct_log_invalid __read_mostly;
7e5d03bb 71LIST_HEAD(unconfirmed);
1192e403 72static int nf_conntrack_vmalloc __read_mostly;
9fb9cbb1 73
4e3882f7 74static unsigned int nf_conntrack_next_id;
77ab9cff 75
9fb9cbb1
YK
76DEFINE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
77EXPORT_PER_CPU_SYMBOL(nf_conntrack_stat);
78
79/*
80 * This scheme offers various size of "struct nf_conn" dependent on
81 * features(helper, nat, ...)
82 */
83
84#define NF_CT_FEATURES_NAMELEN 256
85static struct {
86 /* name of slab cache. printed in /proc/slabinfo */
87 char *name;
88
89 /* size of slab cache */
90 size_t size;
91
92 /* slab cache pointer */
e18b890b 93 struct kmem_cache *cachep;
9fb9cbb1
YK
94
95 /* allocated slab cache + modules which uses this slab cache */
96 int use;
97
9fb9cbb1
YK
98} nf_ct_cache[NF_CT_F_NUM];
99
100/* protect members of nf_ct_cache except of "use" */
101DEFINE_RWLOCK(nf_ct_cache_lock);
102
103/* This avoids calling kmem_cache_create() with same name simultaneously */
57b47a53 104static DEFINE_MUTEX(nf_ct_cache_mutex);
9fb9cbb1 105
9fb9cbb1
YK
106static int nf_conntrack_hash_rnd_initted;
107static unsigned int nf_conntrack_hash_rnd;
108
109static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
110 unsigned int size, unsigned int rnd)
111{
112 unsigned int a, b;
9b887909
SF
113
114 a = jhash2(tuple->src.u3.all, ARRAY_SIZE(tuple->src.u3.all),
115 (tuple->src.l3num << 16) | tuple->dst.protonum);
116 b = jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
117 (tuple->src.u.all << 16) | tuple->dst.u.all);
9fb9cbb1
YK
118
119 return jhash_2words(a, b, rnd) % size;
120}
121
122static inline u_int32_t hash_conntrack(const struct nf_conntrack_tuple *tuple)
123{
124 return __hash_conntrack(tuple, nf_conntrack_htable_size,
125 nf_conntrack_hash_rnd);
126}
127
9fb9cbb1 128int nf_conntrack_register_cache(u_int32_t features, const char *name,
dc808fe2 129 size_t size)
9fb9cbb1
YK
130{
131 int ret = 0;
132 char *cache_name;
e18b890b 133 struct kmem_cache *cachep;
9fb9cbb1
YK
134
135 DEBUGP("nf_conntrack_register_cache: features=0x%x, name=%s, size=%d\n",
136 features, name, size);
137
138 if (features < NF_CT_F_BASIC || features >= NF_CT_F_NUM) {
139 DEBUGP("nf_conntrack_register_cache: invalid features.: 0x%x\n",
140 features);
141 return -EINVAL;
142 }
143
57b47a53 144 mutex_lock(&nf_ct_cache_mutex);
9fb9cbb1
YK
145
146 write_lock_bh(&nf_ct_cache_lock);
147 /* e.g: multiple helpers are loaded */
148 if (nf_ct_cache[features].use > 0) {
149 DEBUGP("nf_conntrack_register_cache: already resisterd.\n");
150 if ((!strncmp(nf_ct_cache[features].name, name,
151 NF_CT_FEATURES_NAMELEN))
dc808fe2 152 && nf_ct_cache[features].size == size) {
9fb9cbb1
YK
153 DEBUGP("nf_conntrack_register_cache: reusing.\n");
154 nf_ct_cache[features].use++;
155 ret = 0;
156 } else
157 ret = -EBUSY;
158
159 write_unlock_bh(&nf_ct_cache_lock);
57b47a53 160 mutex_unlock(&nf_ct_cache_mutex);
9fb9cbb1
YK
161 return ret;
162 }
163 write_unlock_bh(&nf_ct_cache_lock);
164
165 /*
166 * The memory space for name of slab cache must be alive until
167 * cache is destroyed.
168 */
169 cache_name = kmalloc(sizeof(char)*NF_CT_FEATURES_NAMELEN, GFP_ATOMIC);
170 if (cache_name == NULL) {
171 DEBUGP("nf_conntrack_register_cache: can't alloc cache_name\n");
172 ret = -ENOMEM;
173 goto out_up_mutex;
174 }
175
176 if (strlcpy(cache_name, name, NF_CT_FEATURES_NAMELEN)
177 >= NF_CT_FEATURES_NAMELEN) {
178 printk("nf_conntrack_register_cache: name too long\n");
179 ret = -EINVAL;
180 goto out_free_name;
181 }
182
183 cachep = kmem_cache_create(cache_name, size, 0, 0,
184 NULL, NULL);
185 if (!cachep) {
186 printk("nf_conntrack_register_cache: Can't create slab cache "
187 "for the features = 0x%x\n", features);
188 ret = -ENOMEM;
189 goto out_free_name;
190 }
191
192 write_lock_bh(&nf_ct_cache_lock);
193 nf_ct_cache[features].use = 1;
194 nf_ct_cache[features].size = size;
9fb9cbb1
YK
195 nf_ct_cache[features].cachep = cachep;
196 nf_ct_cache[features].name = cache_name;
197 write_unlock_bh(&nf_ct_cache_lock);
198
199 goto out_up_mutex;
200
201out_free_name:
202 kfree(cache_name);
203out_up_mutex:
57b47a53 204 mutex_unlock(&nf_ct_cache_mutex);
9fb9cbb1
YK
205 return ret;
206}
13b18339 207EXPORT_SYMBOL_GPL(nf_conntrack_register_cache);
9fb9cbb1
YK
208
209/* FIXME: In the current, only nf_conntrack_cleanup() can call this function. */
210void nf_conntrack_unregister_cache(u_int32_t features)
211{
e18b890b 212 struct kmem_cache *cachep;
9fb9cbb1
YK
213 char *name;
214
215 /*
216 * This assures that kmem_cache_create() isn't called before destroying
217 * slab cache.
218 */
219 DEBUGP("nf_conntrack_unregister_cache: 0x%04x\n", features);
57b47a53 220 mutex_lock(&nf_ct_cache_mutex);
9fb9cbb1
YK
221
222 write_lock_bh(&nf_ct_cache_lock);
223 if (--nf_ct_cache[features].use > 0) {
224 write_unlock_bh(&nf_ct_cache_lock);
57b47a53 225 mutex_unlock(&nf_ct_cache_mutex);
9fb9cbb1
YK
226 return;
227 }
228 cachep = nf_ct_cache[features].cachep;
229 name = nf_ct_cache[features].name;
230 nf_ct_cache[features].cachep = NULL;
231 nf_ct_cache[features].name = NULL;
9fb9cbb1
YK
232 nf_ct_cache[features].size = 0;
233 write_unlock_bh(&nf_ct_cache_lock);
234
235 synchronize_net();
236
237 kmem_cache_destroy(cachep);
238 kfree(name);
239
57b47a53 240 mutex_unlock(&nf_ct_cache_mutex);
9fb9cbb1 241}
13b18339 242EXPORT_SYMBOL_GPL(nf_conntrack_unregister_cache);
9fb9cbb1
YK
243
244int
245nf_ct_get_tuple(const struct sk_buff *skb,
246 unsigned int nhoff,
247 unsigned int dataoff,
248 u_int16_t l3num,
249 u_int8_t protonum,
250 struct nf_conntrack_tuple *tuple,
251 const struct nf_conntrack_l3proto *l3proto,
605dcad6 252 const struct nf_conntrack_l4proto *l4proto)
9fb9cbb1
YK
253{
254 NF_CT_TUPLE_U_BLANK(tuple);
255
256 tuple->src.l3num = l3num;
257 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
258 return 0;
259
260 tuple->dst.protonum = protonum;
261 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
262
605dcad6 263 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
9fb9cbb1 264}
13b18339 265EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
9fb9cbb1
YK
266
267int
268nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
269 const struct nf_conntrack_tuple *orig,
270 const struct nf_conntrack_l3proto *l3proto,
605dcad6 271 const struct nf_conntrack_l4proto *l4proto)
9fb9cbb1
YK
272{
273 NF_CT_TUPLE_U_BLANK(inverse);
274
275 inverse->src.l3num = orig->src.l3num;
276 if (l3proto->invert_tuple(inverse, orig) == 0)
277 return 0;
278
279 inverse->dst.dir = !orig->dst.dir;
280
281 inverse->dst.protonum = orig->dst.protonum;
605dcad6 282 return l4proto->invert_tuple(inverse, orig);
9fb9cbb1 283}
13b18339 284EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
9fb9cbb1 285
9fb9cbb1
YK
286static void
287clean_from_lists(struct nf_conn *ct)
288{
9fb9cbb1 289 DEBUGP("clean_from_lists(%p)\n", ct);
df0933dc
PM
290 list_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].list);
291 list_del(&ct->tuplehash[IP_CT_DIR_REPLY].list);
9fb9cbb1
YK
292
293 /* Destroy all pending expectations */
c1d10adb 294 nf_ct_remove_expectations(ct);
9fb9cbb1
YK
295}
296
297static void
298destroy_conntrack(struct nf_conntrack *nfct)
299{
300 struct nf_conn *ct = (struct nf_conn *)nfct;
605dcad6 301 struct nf_conntrack_l4proto *l4proto;
982d9a9c 302 typeof(nf_conntrack_destroyed) destroyed;
9fb9cbb1
YK
303
304 DEBUGP("destroy_conntrack(%p)\n", ct);
305 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
306 NF_CT_ASSERT(!timer_pending(&ct->timeout));
307
308 nf_conntrack_event(IPCT_DESTROY, ct);
309 set_bit(IPS_DYING_BIT, &ct->status);
310
311 /* To make sure we don't get any weird locking issues here:
312 * destroy_conntrack() MUST NOT be called with a write lock
313 * to nf_conntrack_lock!!! -HW */
923f4902 314 rcu_read_lock();
923f4902
PM
315 l4proto = __nf_ct_l4proto_find(ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.l3num,
316 ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.protonum);
605dcad6
MJ
317 if (l4proto && l4proto->destroy)
318 l4proto->destroy(ct);
9fb9cbb1 319
982d9a9c
PM
320 destroyed = rcu_dereference(nf_conntrack_destroyed);
321 if (destroyed)
322 destroyed(ct);
323
324 rcu_read_unlock();
9fb9cbb1
YK
325
326 write_lock_bh(&nf_conntrack_lock);
327 /* Expectations will have been removed in clean_from_lists,
328 * except TFTP can create an expectation on the first packet,
329 * before connection is in the list, so we need to clean here,
330 * too. */
c1d10adb 331 nf_ct_remove_expectations(ct);
9fb9cbb1
YK
332
333 /* We overload first tuple to link into unconfirmed list. */
334 if (!nf_ct_is_confirmed(ct)) {
335 BUG_ON(list_empty(&ct->tuplehash[IP_CT_DIR_ORIGINAL].list));
336 list_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].list);
337 }
338
339 NF_CT_STAT_INC(delete);
340 write_unlock_bh(&nf_conntrack_lock);
341
342 if (ct->master)
343 nf_ct_put(ct->master);
344
345 DEBUGP("destroy_conntrack: returning ct=%p to slab\n", ct);
346 nf_conntrack_free(ct);
347}
348
349static void death_by_timeout(unsigned long ul_conntrack)
350{
351 struct nf_conn *ct = (void *)ul_conntrack;
5397e97d 352 struct nf_conn_help *help = nfct_help(ct);
3c158f7f 353 struct nf_conntrack_helper *helper;
5397e97d 354
3c158f7f
PM
355 if (help) {
356 rcu_read_lock();
357 helper = rcu_dereference(help->helper);
358 if (helper && helper->destroy)
359 helper->destroy(ct);
360 rcu_read_unlock();
361 }
9fb9cbb1
YK
362
363 write_lock_bh(&nf_conntrack_lock);
364 /* Inside lock so preempt is disabled on module removal path.
365 * Otherwise we can get spurious warnings. */
366 NF_CT_STAT_INC(delete_list);
367 clean_from_lists(ct);
368 write_unlock_bh(&nf_conntrack_lock);
369 nf_ct_put(ct);
370}
371
c1d10adb 372struct nf_conntrack_tuple_hash *
9fb9cbb1
YK
373__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
374 const struct nf_conn *ignored_conntrack)
375{
376 struct nf_conntrack_tuple_hash *h;
377 unsigned int hash = hash_conntrack(tuple);
378
9fb9cbb1 379 list_for_each_entry(h, &nf_conntrack_hash[hash], list) {
df0933dc
PM
380 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
381 nf_ct_tuple_equal(tuple, &h->tuple)) {
9fb9cbb1
YK
382 NF_CT_STAT_INC(found);
383 return h;
384 }
385 NF_CT_STAT_INC(searched);
386 }
387
388 return NULL;
389}
13b18339 390EXPORT_SYMBOL_GPL(__nf_conntrack_find);
9fb9cbb1
YK
391
392/* Find a connection corresponding to a tuple. */
393struct nf_conntrack_tuple_hash *
394nf_conntrack_find_get(const struct nf_conntrack_tuple *tuple,
395 const struct nf_conn *ignored_conntrack)
396{
397 struct nf_conntrack_tuple_hash *h;
398
399 read_lock_bh(&nf_conntrack_lock);
400 h = __nf_conntrack_find(tuple, ignored_conntrack);
401 if (h)
402 atomic_inc(&nf_ct_tuplehash_to_ctrack(h)->ct_general.use);
403 read_unlock_bh(&nf_conntrack_lock);
404
405 return h;
406}
13b18339 407EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
9fb9cbb1 408
c1d10adb
PNA
409static void __nf_conntrack_hash_insert(struct nf_conn *ct,
410 unsigned int hash,
601e68e1 411 unsigned int repl_hash)
c1d10adb
PNA
412{
413 ct->id = ++nf_conntrack_next_id;
df0933dc
PM
414 list_add(&ct->tuplehash[IP_CT_DIR_ORIGINAL].list,
415 &nf_conntrack_hash[hash]);
416 list_add(&ct->tuplehash[IP_CT_DIR_REPLY].list,
417 &nf_conntrack_hash[repl_hash]);
c1d10adb
PNA
418}
419
420void nf_conntrack_hash_insert(struct nf_conn *ct)
421{
422 unsigned int hash, repl_hash;
423
424 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
425 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
426
427 write_lock_bh(&nf_conntrack_lock);
428 __nf_conntrack_hash_insert(ct, hash, repl_hash);
429 write_unlock_bh(&nf_conntrack_lock);
430}
13b18339 431EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
c1d10adb 432
9fb9cbb1
YK
433/* Confirm a connection given skb; places it in hash table */
434int
435__nf_conntrack_confirm(struct sk_buff **pskb)
436{
437 unsigned int hash, repl_hash;
df0933dc 438 struct nf_conntrack_tuple_hash *h;
9fb9cbb1 439 struct nf_conn *ct;
df0933dc 440 struct nf_conn_help *help;
9fb9cbb1
YK
441 enum ip_conntrack_info ctinfo;
442
443 ct = nf_ct_get(*pskb, &ctinfo);
444
445 /* ipt_REJECT uses nf_conntrack_attach to attach related
446 ICMP/TCP RST packets in other direction. Actual packet
447 which created connection will be IP_CT_NEW or for an
448 expected connection, IP_CT_RELATED. */
449 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
450 return NF_ACCEPT;
451
452 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
453 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
454
455 /* We're not in hash table, and we refuse to set up related
456 connections for unconfirmed conns. But packet copies and
457 REJECT will give spurious warnings here. */
458 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
459
460 /* No external references means noone else could have
461 confirmed us. */
462 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
463 DEBUGP("Confirming conntrack %p\n", ct);
464
465 write_lock_bh(&nf_conntrack_lock);
466
467 /* See if there's one in the list already, including reverse:
468 NAT could have grabbed it without realizing, since we're
469 not in the hash. If there is, we lost race. */
df0933dc
PM
470 list_for_each_entry(h, &nf_conntrack_hash[hash], list)
471 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
472 &h->tuple))
473 goto out;
474 list_for_each_entry(h, &nf_conntrack_hash[repl_hash], list)
475 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
476 &h->tuple))
477 goto out;
9fb9cbb1 478
df0933dc
PM
479 /* Remove from unconfirmed list */
480 list_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].list);
481
482 __nf_conntrack_hash_insert(ct, hash, repl_hash);
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);
490 NF_CT_STAT_INC(insert);
491 write_unlock_bh(&nf_conntrack_lock);
492 help = nfct_help(ct);
493 if (help && help->helper)
494 nf_conntrack_event_cache(IPCT_HELPER, *pskb);
9fb9cbb1 495#ifdef CONFIG_NF_NAT_NEEDED
df0933dc
PM
496 if (test_bit(IPS_SRC_NAT_DONE_BIT, &ct->status) ||
497 test_bit(IPS_DST_NAT_DONE_BIT, &ct->status))
498 nf_conntrack_event_cache(IPCT_NATINFO, *pskb);
9fb9cbb1 499#endif
df0933dc
PM
500 nf_conntrack_event_cache(master_ct(ct) ?
501 IPCT_RELATED : IPCT_NEW, *pskb);
502 return NF_ACCEPT;
9fb9cbb1 503
df0933dc 504out:
9fb9cbb1
YK
505 NF_CT_STAT_INC(insert_failed);
506 write_unlock_bh(&nf_conntrack_lock);
507 return NF_DROP;
508}
13b18339 509EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
9fb9cbb1
YK
510
511/* Returns true if a connection correspondings to the tuple (required
512 for NAT). */
513int
514nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
515 const struct nf_conn *ignored_conntrack)
516{
517 struct nf_conntrack_tuple_hash *h;
518
519 read_lock_bh(&nf_conntrack_lock);
520 h = __nf_conntrack_find(tuple, ignored_conntrack);
521 read_unlock_bh(&nf_conntrack_lock);
522
523 return h != NULL;
524}
13b18339 525EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
9fb9cbb1
YK
526
527/* There's a small race here where we may free a just-assured
528 connection. Too bad: we're in trouble anyway. */
9fb9cbb1
YK
529static int early_drop(struct list_head *chain)
530{
531 /* Traverse backwards: gives us oldest, which is roughly LRU */
532 struct nf_conntrack_tuple_hash *h;
df0933dc 533 struct nf_conn *ct = NULL, *tmp;
9fb9cbb1
YK
534 int dropped = 0;
535
536 read_lock_bh(&nf_conntrack_lock);
df0933dc
PM
537 list_for_each_entry_reverse(h, chain, list) {
538 tmp = nf_ct_tuplehash_to_ctrack(h);
539 if (!test_bit(IPS_ASSURED_BIT, &tmp->status)) {
540 ct = tmp;
541 atomic_inc(&ct->ct_general.use);
542 break;
543 }
9fb9cbb1
YK
544 }
545 read_unlock_bh(&nf_conntrack_lock);
546
547 if (!ct)
548 return dropped;
549
550 if (del_timer(&ct->timeout)) {
551 death_by_timeout((unsigned long)ct);
552 dropped = 1;
c0e912d7 553 NF_CT_STAT_INC_ATOMIC(early_drop);
9fb9cbb1
YK
554 }
555 nf_ct_put(ct);
556 return dropped;
557}
558
9fb9cbb1
YK
559static struct nf_conn *
560__nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
561 const struct nf_conntrack_tuple *repl,
9457d851
PM
562 const struct nf_conntrack_l3proto *l3proto,
563 u_int32_t features)
9fb9cbb1
YK
564{
565 struct nf_conn *conntrack = NULL;
dc808fe2 566 struct nf_conntrack_helper *helper;
9fb9cbb1 567
dc808fe2 568 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
9fb9cbb1
YK
569 get_random_bytes(&nf_conntrack_hash_rnd, 4);
570 nf_conntrack_hash_rnd_initted = 1;
571 }
572
5251e2d2
PNA
573 /* We don't want any race condition at early drop stage */
574 atomic_inc(&nf_conntrack_count);
575
9fb9cbb1 576 if (nf_conntrack_max
5251e2d2 577 && atomic_read(&nf_conntrack_count) > nf_conntrack_max) {
9fb9cbb1
YK
578 unsigned int hash = hash_conntrack(orig);
579 /* Try dropping from this hash chain. */
580 if (!early_drop(&nf_conntrack_hash[hash])) {
5251e2d2 581 atomic_dec(&nf_conntrack_count);
9fb9cbb1
YK
582 if (net_ratelimit())
583 printk(KERN_WARNING
584 "nf_conntrack: table full, dropping"
585 " packet.\n");
586 return ERR_PTR(-ENOMEM);
587 }
588 }
589
590 /* find features needed by this conntrack. */
9457d851 591 features |= l3proto->get_features(orig);
dc808fe2
HW
592
593 /* FIXME: protect helper list per RCU */
9fb9cbb1 594 read_lock_bh(&nf_conntrack_lock);
dc808fe2 595 helper = __nf_ct_helper_find(repl);
5b1158e9
JK
596 /* NAT might want to assign a helper later */
597 if (helper || features & NF_CT_F_NAT)
9fb9cbb1
YK
598 features |= NF_CT_F_HELP;
599 read_unlock_bh(&nf_conntrack_lock);
600
601 DEBUGP("nf_conntrack_alloc: features=0x%x\n", features);
602
603 read_lock_bh(&nf_ct_cache_lock);
604
dc808fe2 605 if (unlikely(!nf_ct_cache[features].use)) {
9fb9cbb1
YK
606 DEBUGP("nf_conntrack_alloc: not supported features = 0x%x\n",
607 features);
608 goto out;
609 }
610
611 conntrack = kmem_cache_alloc(nf_ct_cache[features].cachep, GFP_ATOMIC);
612 if (conntrack == NULL) {
613 DEBUGP("nf_conntrack_alloc: Can't alloc conntrack from cache\n");
614 goto out;
615 }
616
617 memset(conntrack, 0, nf_ct_cache[features].size);
618 conntrack->features = features;
9fb9cbb1 619 atomic_set(&conntrack->ct_general.use, 1);
9fb9cbb1
YK
620 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
621 conntrack->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
622 /* Don't set timer yet: wait for confirmation */
e6f689db
PM
623 setup_timer(&conntrack->timeout, death_by_timeout,
624 (unsigned long)conntrack);
5251e2d2 625 read_unlock_bh(&nf_ct_cache_lock);
9fb9cbb1 626
5251e2d2 627 return conntrack;
9fb9cbb1
YK
628out:
629 read_unlock_bh(&nf_ct_cache_lock);
5251e2d2 630 atomic_dec(&nf_conntrack_count);
9fb9cbb1
YK
631 return conntrack;
632}
633
634struct nf_conn *nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
635 const struct nf_conntrack_tuple *repl)
636{
637 struct nf_conntrack_l3proto *l3proto;
923f4902 638 struct nf_conn *ct;
9fb9cbb1 639
923f4902 640 rcu_read_lock();
c1d10adb 641 l3proto = __nf_ct_l3proto_find(orig->src.l3num);
923f4902
PM
642 ct = __nf_conntrack_alloc(orig, repl, l3proto, 0);
643 rcu_read_unlock();
644
645 return ct;
9fb9cbb1 646}
13b18339 647EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
9fb9cbb1
YK
648
649void nf_conntrack_free(struct nf_conn *conntrack)
650{
651 u_int32_t features = conntrack->features;
652 NF_CT_ASSERT(features >= NF_CT_F_BASIC && features < NF_CT_F_NUM);
653 DEBUGP("nf_conntrack_free: features = 0x%x, conntrack=%p\n", features,
654 conntrack);
655 kmem_cache_free(nf_ct_cache[features].cachep, conntrack);
656 atomic_dec(&nf_conntrack_count);
657}
13b18339 658EXPORT_SYMBOL_GPL(nf_conntrack_free);
9fb9cbb1
YK
659
660/* Allocate a new conntrack: we return -ENOMEM if classification
661 failed due to stress. Otherwise it really is unclassifiable. */
662static struct nf_conntrack_tuple_hash *
663init_conntrack(const struct nf_conntrack_tuple *tuple,
664 struct nf_conntrack_l3proto *l3proto,
605dcad6 665 struct nf_conntrack_l4proto *l4proto,
9fb9cbb1
YK
666 struct sk_buff *skb,
667 unsigned int dataoff)
668{
669 struct nf_conn *conntrack;
3c158f7f 670 struct nf_conn_help *help;
9fb9cbb1
YK
671 struct nf_conntrack_tuple repl_tuple;
672 struct nf_conntrack_expect *exp;
9457d851 673 u_int32_t features = 0;
9fb9cbb1 674
605dcad6 675 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
9fb9cbb1
YK
676 DEBUGP("Can't invert tuple.\n");
677 return NULL;
678 }
679
9457d851
PM
680 read_lock_bh(&nf_conntrack_lock);
681 exp = __nf_conntrack_expect_find(tuple);
682 if (exp && exp->helper)
683 features = NF_CT_F_HELP;
684 read_unlock_bh(&nf_conntrack_lock);
685
686 conntrack = __nf_conntrack_alloc(tuple, &repl_tuple, l3proto, features);
9fb9cbb1
YK
687 if (conntrack == NULL || IS_ERR(conntrack)) {
688 DEBUGP("Can't allocate conntrack.\n");
689 return (struct nf_conntrack_tuple_hash *)conntrack;
690 }
691
605dcad6 692 if (!l4proto->new(conntrack, skb, dataoff)) {
9fb9cbb1
YK
693 nf_conntrack_free(conntrack);
694 DEBUGP("init conntrack: can't track with proto module\n");
695 return NULL;
696 }
697
698 write_lock_bh(&nf_conntrack_lock);
699 exp = find_expectation(tuple);
700
3c158f7f 701 help = nfct_help(conntrack);
9fb9cbb1
YK
702 if (exp) {
703 DEBUGP("conntrack: expectation arrives ct=%p exp=%p\n",
704 conntrack, exp);
705 /* Welcome, Mr. Bond. We've been expecting you... */
706 __set_bit(IPS_EXPECTED_BIT, &conntrack->status);
707 conntrack->master = exp->master;
9457d851 708 if (exp->helper)
3c158f7f 709 rcu_assign_pointer(help->helper, exp->helper);
9fb9cbb1
YK
710#ifdef CONFIG_NF_CONNTRACK_MARK
711 conntrack->mark = exp->master->mark;
7c9728c3
JM
712#endif
713#ifdef CONFIG_NF_CONNTRACK_SECMARK
714 conntrack->secmark = exp->master->secmark;
9fb9cbb1
YK
715#endif
716 nf_conntrack_get(&conntrack->master->ct_general);
717 NF_CT_STAT_INC(expect_new);
22e7410b 718 } else {
3c158f7f
PM
719 if (help) {
720 /* not in hash table yet, so not strictly necessary */
721 rcu_assign_pointer(help->helper,
722 __nf_ct_helper_find(&repl_tuple));
723 }
9fb9cbb1 724 NF_CT_STAT_INC(new);
22e7410b 725 }
9fb9cbb1
YK
726
727 /* Overload tuple linked list to put us in unconfirmed list. */
728 list_add(&conntrack->tuplehash[IP_CT_DIR_ORIGINAL].list, &unconfirmed);
729
730 write_unlock_bh(&nf_conntrack_lock);
731
732 if (exp) {
733 if (exp->expectfn)
734 exp->expectfn(conntrack, exp);
735 nf_conntrack_expect_put(exp);
736 }
737
738 return &conntrack->tuplehash[IP_CT_DIR_ORIGINAL];
739}
740
741/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
742static inline struct nf_conn *
743resolve_normal_ct(struct sk_buff *skb,
744 unsigned int dataoff,
745 u_int16_t l3num,
746 u_int8_t protonum,
747 struct nf_conntrack_l3proto *l3proto,
605dcad6 748 struct nf_conntrack_l4proto *l4proto,
9fb9cbb1
YK
749 int *set_reply,
750 enum ip_conntrack_info *ctinfo)
751{
752 struct nf_conntrack_tuple tuple;
753 struct nf_conntrack_tuple_hash *h;
754 struct nf_conn *ct;
755
bbe735e4 756 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
9fb9cbb1 757 dataoff, l3num, protonum, &tuple, l3proto,
605dcad6 758 l4proto)) {
9fb9cbb1
YK
759 DEBUGP("resolve_normal_ct: Can't get tuple\n");
760 return NULL;
761 }
762
763 /* look for tuple match */
764 h = nf_conntrack_find_get(&tuple, NULL);
765 if (!h) {
605dcad6 766 h = init_conntrack(&tuple, l3proto, l4proto, skb, dataoff);
9fb9cbb1
YK
767 if (!h)
768 return NULL;
769 if (IS_ERR(h))
770 return (void *)h;
771 }
772 ct = nf_ct_tuplehash_to_ctrack(h);
773
774 /* It exists; we have (non-exclusive) reference. */
775 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
776 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
777 /* Please set reply bit if this packet OK */
778 *set_reply = 1;
779 } else {
780 /* Once we've had two way comms, always ESTABLISHED. */
781 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
782 DEBUGP("nf_conntrack_in: normal packet for %p\n", ct);
783 *ctinfo = IP_CT_ESTABLISHED;
784 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
785 DEBUGP("nf_conntrack_in: related packet for %p\n", ct);
786 *ctinfo = IP_CT_RELATED;
787 } else {
788 DEBUGP("nf_conntrack_in: new packet for %p\n", ct);
789 *ctinfo = IP_CT_NEW;
790 }
791 *set_reply = 0;
792 }
793 skb->nfct = &ct->ct_general;
794 skb->nfctinfo = *ctinfo;
795 return ct;
796}
797
798unsigned int
799nf_conntrack_in(int pf, unsigned int hooknum, struct sk_buff **pskb)
800{
801 struct nf_conn *ct;
802 enum ip_conntrack_info ctinfo;
803 struct nf_conntrack_l3proto *l3proto;
605dcad6 804 struct nf_conntrack_l4proto *l4proto;
9fb9cbb1
YK
805 unsigned int dataoff;
806 u_int8_t protonum;
807 int set_reply = 0;
808 int ret;
809
810 /* Previously seen (loopback or untracked)? Ignore. */
811 if ((*pskb)->nfct) {
c0e912d7 812 NF_CT_STAT_INC_ATOMIC(ignore);
9fb9cbb1
YK
813 return NF_ACCEPT;
814 }
815
923f4902 816 /* rcu_read_lock()ed by nf_hook_slow */
c1d10adb 817 l3proto = __nf_ct_l3proto_find((u_int16_t)pf);
923f4902 818
9fb9cbb1
YK
819 if ((ret = l3proto->prepare(pskb, hooknum, &dataoff, &protonum)) <= 0) {
820 DEBUGP("not prepared to track yet or error occured\n");
821 return -ret;
822 }
823
605dcad6 824 l4proto = __nf_ct_l4proto_find((u_int16_t)pf, protonum);
9fb9cbb1
YK
825
826 /* It may be an special packet, error, unclean...
827 * inverse of the return code tells to the netfilter
828 * core what to do with the packet. */
605dcad6
MJ
829 if (l4proto->error != NULL &&
830 (ret = l4proto->error(*pskb, dataoff, &ctinfo, pf, hooknum)) <= 0) {
c0e912d7
PM
831 NF_CT_STAT_INC_ATOMIC(error);
832 NF_CT_STAT_INC_ATOMIC(invalid);
9fb9cbb1
YK
833 return -ret;
834 }
835
605dcad6 836 ct = resolve_normal_ct(*pskb, dataoff, pf, protonum, l3proto, l4proto,
9fb9cbb1
YK
837 &set_reply, &ctinfo);
838 if (!ct) {
839 /* Not valid part of a connection */
c0e912d7 840 NF_CT_STAT_INC_ATOMIC(invalid);
9fb9cbb1
YK
841 return NF_ACCEPT;
842 }
843
844 if (IS_ERR(ct)) {
845 /* Too stressed to deal. */
c0e912d7 846 NF_CT_STAT_INC_ATOMIC(drop);
9fb9cbb1
YK
847 return NF_DROP;
848 }
849
850 NF_CT_ASSERT((*pskb)->nfct);
851
605dcad6 852 ret = l4proto->packet(ct, *pskb, dataoff, ctinfo, pf, hooknum);
9fb9cbb1
YK
853 if (ret < 0) {
854 /* Invalid: inverse of the return code tells
855 * the netfilter core what to do */
856 DEBUGP("nf_conntrack_in: Can't track with proto module\n");
857 nf_conntrack_put((*pskb)->nfct);
858 (*pskb)->nfct = NULL;
c0e912d7 859 NF_CT_STAT_INC_ATOMIC(invalid);
9fb9cbb1
YK
860 return -ret;
861 }
862
863 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
864 nf_conntrack_event_cache(IPCT_STATUS, *pskb);
865
866 return ret;
867}
13b18339 868EXPORT_SYMBOL_GPL(nf_conntrack_in);
9fb9cbb1
YK
869
870int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
871 const struct nf_conntrack_tuple *orig)
872{
923f4902
PM
873 int ret;
874
875 rcu_read_lock();
876 ret = nf_ct_invert_tuple(inverse, orig,
877 __nf_ct_l3proto_find(orig->src.l3num),
878 __nf_ct_l4proto_find(orig->src.l3num,
879 orig->dst.protonum));
880 rcu_read_unlock();
881 return ret;
9fb9cbb1 882}
13b18339 883EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
9fb9cbb1 884
5b1158e9
JK
885/* Alter reply tuple (maybe alter helper). This is for NAT, and is
886 implicitly racy: see __nf_conntrack_confirm */
887void nf_conntrack_alter_reply(struct nf_conn *ct,
888 const struct nf_conntrack_tuple *newreply)
889{
890 struct nf_conn_help *help = nfct_help(ct);
891
892 write_lock_bh(&nf_conntrack_lock);
893 /* Should be unconfirmed, so not in hash table yet */
894 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
895
896 DEBUGP("Altering reply tuple of %p to ", ct);
897 NF_CT_DUMP_TUPLE(newreply);
898
899 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
5d78a849
YK
900 if (!ct->master && help && help->expecting == 0) {
901 struct nf_conntrack_helper *helper;
902 helper = __nf_ct_helper_find(newreply);
903 if (helper)
904 memset(&help->help, 0, sizeof(help->help));
3c158f7f
PM
905 /* not in hash table yet, so not strictly necessary */
906 rcu_assign_pointer(help->helper, helper);
5d78a849 907 }
5b1158e9
JK
908 write_unlock_bh(&nf_conntrack_lock);
909}
13b18339 910EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
5b1158e9 911
9fb9cbb1
YK
912/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
913void __nf_ct_refresh_acct(struct nf_conn *ct,
914 enum ip_conntrack_info ctinfo,
915 const struct sk_buff *skb,
916 unsigned long extra_jiffies,
917 int do_acct)
918{
919 int event = 0;
920
921 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
922 NF_CT_ASSERT(skb);
923
924 write_lock_bh(&nf_conntrack_lock);
925
997ae831
EL
926 /* Only update if this is not a fixed timeout */
927 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status)) {
928 write_unlock_bh(&nf_conntrack_lock);
929 return;
930 }
931
9fb9cbb1
YK
932 /* If not in hash table, timer will not be active yet */
933 if (!nf_ct_is_confirmed(ct)) {
934 ct->timeout.expires = extra_jiffies;
935 event = IPCT_REFRESH;
936 } else {
be00c8e4
MJ
937 unsigned long newtime = jiffies + extra_jiffies;
938
939 /* Only update the timeout if the new timeout is at least
940 HZ jiffies from the old timeout. Need del_timer for race
941 avoidance (may already be dying). */
942 if (newtime - ct->timeout.expires >= HZ
943 && del_timer(&ct->timeout)) {
944 ct->timeout.expires = newtime;
9fb9cbb1
YK
945 add_timer(&ct->timeout);
946 event = IPCT_REFRESH;
947 }
948 }
949
950#ifdef CONFIG_NF_CT_ACCT
951 if (do_acct) {
952 ct->counters[CTINFO2DIR(ctinfo)].packets++;
953 ct->counters[CTINFO2DIR(ctinfo)].bytes +=
bbe735e4 954 skb->len - skb_network_offset(skb);
3ffd5eeb
MJ
955
956 if ((ct->counters[CTINFO2DIR(ctinfo)].packets & 0x80000000)
957 || (ct->counters[CTINFO2DIR(ctinfo)].bytes & 0x80000000))
958 event |= IPCT_COUNTER_FILLING;
9fb9cbb1
YK
959 }
960#endif
961
962 write_unlock_bh(&nf_conntrack_lock);
963
964 /* must be unlocked when calling event cache */
965 if (event)
966 nf_conntrack_event_cache(event, skb);
967}
13b18339 968EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
9fb9cbb1 969
e281db5c 970#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
c1d10adb
PNA
971
972#include <linux/netfilter/nfnetlink.h>
973#include <linux/netfilter/nfnetlink_conntrack.h>
57b47a53
IM
974#include <linux/mutex.h>
975
c1d10adb
PNA
976
977/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
978 * in ip_conntrack_core, since we don't want the protocols to autoload
979 * or depend on ctnetlink */
980int nf_ct_port_tuple_to_nfattr(struct sk_buff *skb,
981 const struct nf_conntrack_tuple *tuple)
982{
983 NFA_PUT(skb, CTA_PROTO_SRC_PORT, sizeof(u_int16_t),
984 &tuple->src.u.tcp.port);
985 NFA_PUT(skb, CTA_PROTO_DST_PORT, sizeof(u_int16_t),
986 &tuple->dst.u.tcp.port);
987 return 0;
988
989nfattr_failure:
990 return -1;
991}
13b18339 992EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nfattr);
c1d10adb
PNA
993
994static const size_t cta_min_proto[CTA_PROTO_MAX] = {
995 [CTA_PROTO_SRC_PORT-1] = sizeof(u_int16_t),
996 [CTA_PROTO_DST_PORT-1] = sizeof(u_int16_t)
997};
998
999int nf_ct_port_nfattr_to_tuple(struct nfattr *tb[],
1000 struct nf_conntrack_tuple *t)
1001{
1002 if (!tb[CTA_PROTO_SRC_PORT-1] || !tb[CTA_PROTO_DST_PORT-1])
1003 return -EINVAL;
1004
1005 if (nfattr_bad_size(tb, CTA_PROTO_MAX, cta_min_proto))
1006 return -EINVAL;
1007
bff9a89b
PM
1008 t->src.u.tcp.port = *(__be16 *)NFA_DATA(tb[CTA_PROTO_SRC_PORT-1]);
1009 t->dst.u.tcp.port = *(__be16 *)NFA_DATA(tb[CTA_PROTO_DST_PORT-1]);
c1d10adb
PNA
1010
1011 return 0;
1012}
13b18339 1013EXPORT_SYMBOL_GPL(nf_ct_port_nfattr_to_tuple);
c1d10adb
PNA
1014#endif
1015
9fb9cbb1
YK
1016/* Used by ipt_REJECT and ip6t_REJECT. */
1017void __nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
1018{
1019 struct nf_conn *ct;
1020 enum ip_conntrack_info ctinfo;
1021
1022 /* This ICMP is in reverse direction to the packet which caused it */
1023 ct = nf_ct_get(skb, &ctinfo);
1024 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
1025 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
1026 else
1027 ctinfo = IP_CT_RELATED;
1028
1029 /* Attach to new skbuff, and increment count */
1030 nskb->nfct = &ct->ct_general;
1031 nskb->nfctinfo = ctinfo;
1032 nf_conntrack_get(nskb->nfct);
1033}
13b18339 1034EXPORT_SYMBOL_GPL(__nf_conntrack_attach);
9fb9cbb1
YK
1035
1036static inline int
1037do_iter(const struct nf_conntrack_tuple_hash *i,
1038 int (*iter)(struct nf_conn *i, void *data),
1039 void *data)
1040{
1041 return iter(nf_ct_tuplehash_to_ctrack(i), data);
1042}
1043
1044/* Bring out ya dead! */
df0933dc 1045static struct nf_conn *
9fb9cbb1
YK
1046get_next_corpse(int (*iter)(struct nf_conn *i, void *data),
1047 void *data, unsigned int *bucket)
1048{
df0933dc
PM
1049 struct nf_conntrack_tuple_hash *h;
1050 struct nf_conn *ct;
9fb9cbb1
YK
1051
1052 write_lock_bh(&nf_conntrack_lock);
1053 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
df0933dc
PM
1054 list_for_each_entry(h, &nf_conntrack_hash[*bucket], list) {
1055 ct = nf_ct_tuplehash_to_ctrack(h);
1056 if (iter(ct, data))
1057 goto found;
1058 }
601e68e1 1059 }
df0933dc
PM
1060 list_for_each_entry(h, &unconfirmed, list) {
1061 ct = nf_ct_tuplehash_to_ctrack(h);
1062 if (iter(ct, data))
ec68e97d 1063 set_bit(IPS_DYING_BIT, &ct->status);
df0933dc 1064 }
c073e3fa 1065 write_unlock_bh(&nf_conntrack_lock);
df0933dc
PM
1066 return NULL;
1067found:
c073e3fa 1068 atomic_inc(&ct->ct_general.use);
9fb9cbb1 1069 write_unlock_bh(&nf_conntrack_lock);
df0933dc 1070 return ct;
9fb9cbb1
YK
1071}
1072
1073void
1074nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data)
1075{
df0933dc 1076 struct nf_conn *ct;
9fb9cbb1
YK
1077 unsigned int bucket = 0;
1078
df0933dc 1079 while ((ct = get_next_corpse(iter, data, &bucket)) != NULL) {
9fb9cbb1
YK
1080 /* Time to push up daises... */
1081 if (del_timer(&ct->timeout))
1082 death_by_timeout((unsigned long)ct);
1083 /* ... else the timer will get him soon. */
1084
1085 nf_ct_put(ct);
1086 }
1087}
13b18339 1088EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
9fb9cbb1
YK
1089
1090static int kill_all(struct nf_conn *i, void *data)
1091{
1092 return 1;
1093}
1094
1095static void free_conntrack_hash(struct list_head *hash, int vmalloced, int size)
1096{
1097 if (vmalloced)
1098 vfree(hash);
1099 else
601e68e1 1100 free_pages((unsigned long)hash,
9fb9cbb1
YK
1101 get_order(sizeof(struct list_head) * size));
1102}
1103
272491ef 1104void nf_conntrack_flush(void)
c1d10adb
PNA
1105{
1106 nf_ct_iterate_cleanup(kill_all, NULL);
1107}
13b18339 1108EXPORT_SYMBOL_GPL(nf_conntrack_flush);
c1d10adb 1109
9fb9cbb1
YK
1110/* Mishearing the voices in his head, our hero wonders how he's
1111 supposed to kill the mall. */
1112void nf_conntrack_cleanup(void)
1113{
1114 int i;
1115
c3a47ab3 1116 rcu_assign_pointer(ip_ct_attach, NULL);
7d3cdc6b 1117
9fb9cbb1
YK
1118 /* This makes sure all current packets have passed through
1119 netfilter framework. Roll on, two-stage module
1120 delete... */
1121 synchronize_net();
1122
1123 nf_ct_event_cache_flush();
1124 i_see_dead_people:
c1d10adb 1125 nf_conntrack_flush();
9fb9cbb1
YK
1126 if (atomic_read(&nf_conntrack_count) != 0) {
1127 schedule();
1128 goto i_see_dead_people;
1129 }
6636568c
PM
1130 /* wait until all references to nf_conntrack_untracked are dropped */
1131 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
1132 schedule();
9fb9cbb1 1133
de6e05c4
YK
1134 rcu_assign_pointer(nf_ct_destroy, NULL);
1135
9fb9cbb1
YK
1136 for (i = 0; i < NF_CT_F_NUM; i++) {
1137 if (nf_ct_cache[i].use == 0)
1138 continue;
1139
1140 NF_CT_ASSERT(nf_ct_cache[i].use == 1);
1141 nf_ct_cache[i].use = 1;
1142 nf_conntrack_unregister_cache(i);
1143 }
1144 kmem_cache_destroy(nf_conntrack_expect_cachep);
1145 free_conntrack_hash(nf_conntrack_hash, nf_conntrack_vmalloc,
1146 nf_conntrack_htable_size);
5a6f294e 1147
ac5357eb 1148 nf_conntrack_proto_fini();
9fb9cbb1
YK
1149}
1150
1151static struct list_head *alloc_hashtable(int size, int *vmalloced)
1152{
1153 struct list_head *hash;
1154 unsigned int i;
1155
601e68e1
YH
1156 *vmalloced = 0;
1157 hash = (void*)__get_free_pages(GFP_KERNEL,
9fb9cbb1
YK
1158 get_order(sizeof(struct list_head)
1159 * size));
601e68e1 1160 if (!hash) {
9fb9cbb1
YK
1161 *vmalloced = 1;
1162 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
1163 hash = vmalloc(sizeof(struct list_head) * size);
1164 }
1165
1166 if (hash)
601e68e1 1167 for (i = 0; i < size; i++)
9fb9cbb1
YK
1168 INIT_LIST_HEAD(&hash[i]);
1169
1170 return hash;
1171}
1172
1173int set_hashsize(const char *val, struct kernel_param *kp)
1174{
1175 int i, bucket, hashsize, vmalloced;
1176 int old_vmalloced, old_size;
1177 int rnd;
1178 struct list_head *hash, *old_hash;
1179 struct nf_conntrack_tuple_hash *h;
1180
1181 /* On boot, we can set this without any fancy locking. */
1182 if (!nf_conntrack_htable_size)
1183 return param_set_uint(val, kp);
1184
1185 hashsize = simple_strtol(val, NULL, 0);
1186 if (!hashsize)
1187 return -EINVAL;
1188
1189 hash = alloc_hashtable(hashsize, &vmalloced);
1190 if (!hash)
1191 return -ENOMEM;
1192
1193 /* We have to rehahs for the new table anyway, so we also can
1194 * use a newrandom seed */
1195 get_random_bytes(&rnd, 4);
1196
1197 write_lock_bh(&nf_conntrack_lock);
1198 for (i = 0; i < nf_conntrack_htable_size; i++) {
1199 while (!list_empty(&nf_conntrack_hash[i])) {
1200 h = list_entry(nf_conntrack_hash[i].next,
1201 struct nf_conntrack_tuple_hash, list);
1202 list_del(&h->list);
1203 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
1204 list_add_tail(&h->list, &hash[bucket]);
1205 }
1206 }
1207 old_size = nf_conntrack_htable_size;
1208 old_vmalloced = nf_conntrack_vmalloc;
1209 old_hash = nf_conntrack_hash;
1210
1211 nf_conntrack_htable_size = hashsize;
1212 nf_conntrack_vmalloc = vmalloced;
1213 nf_conntrack_hash = hash;
1214 nf_conntrack_hash_rnd = rnd;
1215 write_unlock_bh(&nf_conntrack_lock);
1216
1217 free_conntrack_hash(old_hash, old_vmalloced, old_size);
1218 return 0;
1219}
1220
1221module_param_call(hashsize, set_hashsize, param_get_uint,
1222 &nf_conntrack_htable_size, 0600);
1223
1224int __init nf_conntrack_init(void)
1225{
9fb9cbb1
YK
1226 int ret;
1227
1228 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
1229 * machine has 256 buckets. >= 1GB machines have 8192 buckets. */
1230 if (!nf_conntrack_htable_size) {
1231 nf_conntrack_htable_size
1232 = (((num_physpages << PAGE_SHIFT) / 16384)
1233 / sizeof(struct list_head));
1234 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
1235 nf_conntrack_htable_size = 8192;
1236 if (nf_conntrack_htable_size < 16)
1237 nf_conntrack_htable_size = 16;
1238 }
1239 nf_conntrack_max = 8 * nf_conntrack_htable_size;
1240
1241 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1242 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1243 nf_conntrack_max);
1244
1245 nf_conntrack_hash = alloc_hashtable(nf_conntrack_htable_size,
1246 &nf_conntrack_vmalloc);
1247 if (!nf_conntrack_hash) {
1248 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1249 goto err_out;
1250 }
1251
1252 ret = nf_conntrack_register_cache(NF_CT_F_BASIC, "nf_conntrack:basic",
dc808fe2 1253 sizeof(struct nf_conn));
9fb9cbb1
YK
1254 if (ret < 0) {
1255 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1256 goto err_free_hash;
1257 }
1258
1259 nf_conntrack_expect_cachep = kmem_cache_create("nf_conntrack_expect",
1260 sizeof(struct nf_conntrack_expect),
1261 0, 0, NULL, NULL);
1262 if (!nf_conntrack_expect_cachep) {
1263 printk(KERN_ERR "Unable to create nf_expect slab cache\n");
1264 goto err_free_conntrack_slab;
1265 }
1266
ac5357eb 1267 ret = nf_conntrack_proto_init();
933a41e7
PM
1268 if (ret < 0)
1269 goto out_free_expect_slab;
1270
7d3cdc6b 1271 /* For use by REJECT target */
c3a47ab3 1272 rcu_assign_pointer(ip_ct_attach, __nf_conntrack_attach);
de6e05c4 1273 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
7d3cdc6b 1274
9fb9cbb1
YK
1275 /* Set up fake conntrack:
1276 - to never be deleted, not in any hashes */
1277 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1278 /* - and look it like as a confirmed connection */
1279 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1280
1281 return ret;
1282
933a41e7
PM
1283out_free_expect_slab:
1284 kmem_cache_destroy(nf_conntrack_expect_cachep);
9fb9cbb1
YK
1285err_free_conntrack_slab:
1286 nf_conntrack_unregister_cache(NF_CT_F_BASIC);
1287err_free_hash:
1288 free_conntrack_hash(nf_conntrack_hash, nf_conntrack_vmalloc,
1289 nf_conntrack_htable_size);
1290err_out:
1291 return -ENOMEM;
1292}