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