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