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