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