netfilter: ctnetlink: helper modules load-on-demand support
[deliverable/linux.git] / net / netfilter / nf_conntrack_core.c
CommitLineData
9fb9cbb1
YK
1/* Connection state tracking for netfilter. This is separated from,
2 but required by, the NAT layer; it can also be used by an iptables
3 extension. */
4
5/* (C) 1999-2001 Paul `Rusty' Russell
dc808fe2 6 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
9fb9cbb1
YK
7 * (C) 2003,2004 USAGI/WIDE Project <http://www.linux-ipv6.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
9fb9cbb1
YK
12 */
13
9fb9cbb1
YK
14#include <linux/types.h>
15#include <linux/netfilter.h>
16#include <linux/module.h>
17#include <linux/skbuff.h>
18#include <linux/proc_fs.h>
19#include <linux/vmalloc.h>
20#include <linux/stddef.h>
21#include <linux/slab.h>
22#include <linux/random.h>
23#include <linux/jhash.h>
24#include <linux/err.h>
25#include <linux/percpu.h>
26#include <linux/moduleparam.h>
27#include <linux/notifier.h>
28#include <linux/kernel.h>
29#include <linux/netdevice.h>
30#include <linux/socket.h>
d7fe0f24 31#include <linux/mm.h>
9fb9cbb1 32
9fb9cbb1
YK
33#include <net/netfilter/nf_conntrack.h>
34#include <net/netfilter/nf_conntrack_l3proto.h>
605dcad6 35#include <net/netfilter/nf_conntrack_l4proto.h>
77ab9cff 36#include <net/netfilter/nf_conntrack_expect.h>
9fb9cbb1
YK
37#include <net/netfilter/nf_conntrack_helper.h>
38#include <net/netfilter/nf_conntrack_core.h>
ecfab2c9 39#include <net/netfilter/nf_conntrack_extend.h>
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
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 323 enum ip_conntrack_info ctinfo;
400dad39 324 struct net *net;
9fb9cbb1 325
3db05fea 326 ct = nf_ct_get(skb, &ctinfo);
400dad39 327 net = nf_ct_net(ct);
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. */
400dad39 354 hlist_for_each_entry(h, n, &net->ct.hash[hash], hnode)
df0933dc
PM
355 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
356 &h->tuple))
357 goto out;
400dad39 358 hlist_for_each_entry(h, n, &net->ct.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);
0d55af87 374 NF_CT_STAT_INC(net, insert);
f8ba1aff 375 spin_unlock_bh(&nf_conntrack_lock);
df0933dc
PM
376 help = nfct_help(ct);
377 if (help && help->helper)
a71996fc 378 nf_conntrack_event_cache(IPCT_HELPER, ct);
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))
a71996fc 382 nf_conntrack_event_cache(IPCT_NATINFO, ct);
9fb9cbb1 383#endif
df0933dc 384 nf_conntrack_event_cache(master_ct(ct) ?
a71996fc 385 IPCT_RELATED : IPCT_NEW, ct);
df0933dc 386 return NF_ACCEPT;
9fb9cbb1 387
df0933dc 388out:
0d55af87 389 NF_CT_STAT_INC(net, 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{
400dad39 401 struct net *net = nf_ct_net(ignored_conntrack);
9fb9cbb1 402 struct nf_conntrack_tuple_hash *h;
ba419aff
PM
403 struct hlist_node *n;
404 unsigned int hash = hash_conntrack(tuple);
9fb9cbb1 405
4e29e9ec
PM
406 /* Disable BHs the entire time since we need to disable them at
407 * least once for the stats anyway.
408 */
409 rcu_read_lock_bh();
400dad39 410 hlist_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnode) {
ba419aff
PM
411 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
412 nf_ct_tuple_equal(tuple, &h->tuple)) {
0d55af87 413 NF_CT_STAT_INC(net, found);
4e29e9ec 414 rcu_read_unlock_bh();
ba419aff
PM
415 return 1;
416 }
0d55af87 417 NF_CT_STAT_INC(net, searched);
ba419aff 418 }
4e29e9ec 419 rcu_read_unlock_bh();
9fb9cbb1 420
ba419aff 421 return 0;
9fb9cbb1 422}
13b18339 423EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
9fb9cbb1 424
7ae7730f
PM
425#define NF_CT_EVICTION_RANGE 8
426
9fb9cbb1
YK
427/* There's a small race here where we may free a just-assured
428 connection. Too bad: we're in trouble anyway. */
400dad39 429static noinline int early_drop(struct net *net, unsigned int hash)
9fb9cbb1 430{
f205c5e0 431 /* Use oldest entry, which is roughly LRU */
9fb9cbb1 432 struct nf_conntrack_tuple_hash *h;
df0933dc 433 struct nf_conn *ct = NULL, *tmp;
f205c5e0 434 struct hlist_node *n;
7ae7730f 435 unsigned int i, cnt = 0;
9fb9cbb1
YK
436 int dropped = 0;
437
76507f69 438 rcu_read_lock();
7ae7730f 439 for (i = 0; i < nf_conntrack_htable_size; i++) {
400dad39 440 hlist_for_each_entry_rcu(h, n, &net->ct.hash[hash],
76507f69 441 hnode) {
7ae7730f
PM
442 tmp = nf_ct_tuplehash_to_ctrack(h);
443 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
444 ct = tmp;
445 cnt++;
446 }
76507f69
PM
447
448 if (ct && unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
449 ct = NULL;
7ae7730f
PM
450 if (ct || cnt >= NF_CT_EVICTION_RANGE)
451 break;
452 hash = (hash + 1) % nf_conntrack_htable_size;
9fb9cbb1 453 }
76507f69 454 rcu_read_unlock();
9fb9cbb1
YK
455
456 if (!ct)
457 return dropped;
458
459 if (del_timer(&ct->timeout)) {
460 death_by_timeout((unsigned long)ct);
461 dropped = 1;
0d55af87 462 NF_CT_STAT_INC_ATOMIC(net, early_drop);
9fb9cbb1
YK
463 }
464 nf_ct_put(ct);
465 return dropped;
466}
467
5a1fb391
AD
468struct nf_conn *nf_conntrack_alloc(struct net *net,
469 const struct nf_conntrack_tuple *orig,
b891c5a8
PNA
470 const struct nf_conntrack_tuple *repl,
471 gfp_t gfp)
9fb9cbb1 472{
c88130bc 473 struct nf_conn *ct = NULL;
9fb9cbb1 474
dc808fe2 475 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
9fb9cbb1
YK
476 get_random_bytes(&nf_conntrack_hash_rnd, 4);
477 nf_conntrack_hash_rnd_initted = 1;
478 }
479
5251e2d2 480 /* We don't want any race condition at early drop stage */
49ac8713 481 atomic_inc(&net->ct.count);
5251e2d2 482
76eb9460 483 if (nf_conntrack_max &&
49ac8713 484 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
9fb9cbb1 485 unsigned int hash = hash_conntrack(orig);
400dad39 486 if (!early_drop(net, hash)) {
49ac8713 487 atomic_dec(&net->ct.count);
9fb9cbb1
YK
488 if (net_ratelimit())
489 printk(KERN_WARNING
490 "nf_conntrack: table full, dropping"
491 " packet.\n");
492 return ERR_PTR(-ENOMEM);
493 }
494 }
495
b891c5a8 496 ct = kmem_cache_zalloc(nf_conntrack_cachep, gfp);
c88130bc 497 if (ct == NULL) {
0d53778e 498 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
49ac8713 499 atomic_dec(&net->ct.count);
dacd2a1a 500 return ERR_PTR(-ENOMEM);
9fb9cbb1
YK
501 }
502
c88130bc
PM
503 atomic_set(&ct->ct_general.use, 1);
504 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
505 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
9fb9cbb1 506 /* Don't set timer yet: wait for confirmation */
c88130bc 507 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
5a1fb391
AD
508#ifdef CONFIG_NET_NS
509 ct->ct_net = net;
510#endif
c88130bc 511 INIT_RCU_HEAD(&ct->rcu);
9fb9cbb1 512
c88130bc 513 return ct;
9fb9cbb1 514}
13b18339 515EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
9fb9cbb1 516
76507f69 517static void nf_conntrack_free_rcu(struct rcu_head *head)
9fb9cbb1 518{
76507f69 519 struct nf_conn *ct = container_of(head, struct nf_conn, rcu);
49ac8713 520 struct net *net = nf_ct_net(ct);
76507f69
PM
521
522 nf_ct_ext_free(ct);
523 kmem_cache_free(nf_conntrack_cachep, ct);
49ac8713 524 atomic_dec(&net->ct.count);
9fb9cbb1 525}
76507f69 526
c88130bc 527void nf_conntrack_free(struct nf_conn *ct)
76507f69 528{
ceeff754 529 nf_ct_ext_destroy(ct);
c88130bc 530 call_rcu(&ct->rcu, nf_conntrack_free_rcu);
76507f69 531}
13b18339 532EXPORT_SYMBOL_GPL(nf_conntrack_free);
9fb9cbb1
YK
533
534/* Allocate a new conntrack: we return -ENOMEM if classification
535 failed due to stress. Otherwise it really is unclassifiable. */
536static struct nf_conntrack_tuple_hash *
5a1fb391
AD
537init_conntrack(struct net *net,
538 const struct nf_conntrack_tuple *tuple,
9fb9cbb1 539 struct nf_conntrack_l3proto *l3proto,
605dcad6 540 struct nf_conntrack_l4proto *l4proto,
9fb9cbb1
YK
541 struct sk_buff *skb,
542 unsigned int dataoff)
543{
c88130bc 544 struct nf_conn *ct;
3c158f7f 545 struct nf_conn_help *help;
9fb9cbb1
YK
546 struct nf_conntrack_tuple repl_tuple;
547 struct nf_conntrack_expect *exp;
548
605dcad6 549 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
0d53778e 550 pr_debug("Can't invert tuple.\n");
9fb9cbb1
YK
551 return NULL;
552 }
553
5a1fb391 554 ct = nf_conntrack_alloc(net, tuple, &repl_tuple, GFP_ATOMIC);
c88130bc 555 if (ct == NULL || IS_ERR(ct)) {
0d53778e 556 pr_debug("Can't allocate conntrack.\n");
c88130bc 557 return (struct nf_conntrack_tuple_hash *)ct;
9fb9cbb1
YK
558 }
559
c88130bc
PM
560 if (!l4proto->new(ct, skb, dataoff)) {
561 nf_conntrack_free(ct);
0d53778e 562 pr_debug("init conntrack: can't track with proto module\n");
9fb9cbb1
YK
563 return NULL;
564 }
565
58401572
KPO
566 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
567
f8ba1aff 568 spin_lock_bh(&nf_conntrack_lock);
9b03f38d 569 exp = nf_ct_find_expectation(net, tuple);
9fb9cbb1 570 if (exp) {
0d53778e 571 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
c88130bc 572 ct, exp);
9fb9cbb1 573 /* Welcome, Mr. Bond. We've been expecting you... */
c88130bc
PM
574 __set_bit(IPS_EXPECTED_BIT, &ct->status);
575 ct->master = exp->master;
ceceae1b 576 if (exp->helper) {
c88130bc 577 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
ceceae1b
YK
578 if (help)
579 rcu_assign_pointer(help->helper, exp->helper);
ceceae1b
YK
580 }
581
9fb9cbb1 582#ifdef CONFIG_NF_CONNTRACK_MARK
c88130bc 583 ct->mark = exp->master->mark;
7c9728c3
JM
584#endif
585#ifdef CONFIG_NF_CONNTRACK_SECMARK
c88130bc 586 ct->secmark = exp->master->secmark;
9fb9cbb1 587#endif
c88130bc 588 nf_conntrack_get(&ct->master->ct_general);
0d55af87 589 NF_CT_STAT_INC(net, expect_new);
22e7410b 590 } else {
226c0c0e 591 __nf_ct_try_assign_helper(ct, GFP_ATOMIC);
0d55af87 592 NF_CT_STAT_INC(net, new);
22e7410b 593 }
9fb9cbb1
YK
594
595 /* Overload tuple linked list to put us in unconfirmed list. */
63c9a262
AD
596 hlist_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
597 &net->ct.unconfirmed);
9fb9cbb1 598
f8ba1aff 599 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
600
601 if (exp) {
602 if (exp->expectfn)
c88130bc 603 exp->expectfn(ct, exp);
6823645d 604 nf_ct_expect_put(exp);
9fb9cbb1
YK
605 }
606
c88130bc 607 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
9fb9cbb1
YK
608}
609
610/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
611static inline struct nf_conn *
a702a65f
AD
612resolve_normal_ct(struct net *net,
613 struct sk_buff *skb,
9fb9cbb1
YK
614 unsigned int dataoff,
615 u_int16_t l3num,
616 u_int8_t protonum,
617 struct nf_conntrack_l3proto *l3proto,
605dcad6 618 struct nf_conntrack_l4proto *l4proto,
9fb9cbb1
YK
619 int *set_reply,
620 enum ip_conntrack_info *ctinfo)
621{
622 struct nf_conntrack_tuple tuple;
623 struct nf_conntrack_tuple_hash *h;
624 struct nf_conn *ct;
625
bbe735e4 626 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
9fb9cbb1 627 dataoff, l3num, protonum, &tuple, l3proto,
605dcad6 628 l4proto)) {
0d53778e 629 pr_debug("resolve_normal_ct: Can't get tuple\n");
9fb9cbb1
YK
630 return NULL;
631 }
632
633 /* look for tuple match */
a702a65f 634 h = nf_conntrack_find_get(net, &tuple);
9fb9cbb1 635 if (!h) {
a702a65f 636 h = init_conntrack(net, &tuple, l3proto, l4proto, skb, dataoff);
9fb9cbb1
YK
637 if (!h)
638 return NULL;
639 if (IS_ERR(h))
640 return (void *)h;
641 }
642 ct = nf_ct_tuplehash_to_ctrack(h);
643
644 /* It exists; we have (non-exclusive) reference. */
645 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
646 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
647 /* Please set reply bit if this packet OK */
648 *set_reply = 1;
649 } else {
650 /* Once we've had two way comms, always ESTABLISHED. */
651 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
0d53778e 652 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
9fb9cbb1
YK
653 *ctinfo = IP_CT_ESTABLISHED;
654 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
0d53778e
PM
655 pr_debug("nf_conntrack_in: related packet for %p\n",
656 ct);
9fb9cbb1
YK
657 *ctinfo = IP_CT_RELATED;
658 } else {
0d53778e 659 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
9fb9cbb1
YK
660 *ctinfo = IP_CT_NEW;
661 }
662 *set_reply = 0;
663 }
664 skb->nfct = &ct->ct_general;
665 skb->nfctinfo = *ctinfo;
666 return ct;
667}
668
669unsigned int
a702a65f
AD
670nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
671 struct sk_buff *skb)
9fb9cbb1
YK
672{
673 struct nf_conn *ct;
674 enum ip_conntrack_info ctinfo;
675 struct nf_conntrack_l3proto *l3proto;
605dcad6 676 struct nf_conntrack_l4proto *l4proto;
9fb9cbb1
YK
677 unsigned int dataoff;
678 u_int8_t protonum;
679 int set_reply = 0;
680 int ret;
681
682 /* Previously seen (loopback or untracked)? Ignore. */
3db05fea 683 if (skb->nfct) {
0d55af87 684 NF_CT_STAT_INC_ATOMIC(net, ignore);
9fb9cbb1
YK
685 return NF_ACCEPT;
686 }
687
923f4902 688 /* rcu_read_lock()ed by nf_hook_slow */
76108cea 689 l3proto = __nf_ct_l3proto_find(pf);
3db05fea 690 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
ffc30690
YK
691 &dataoff, &protonum);
692 if (ret <= 0) {
0d53778e 693 pr_debug("not prepared to track yet or error occured\n");
0d55af87
AD
694 NF_CT_STAT_INC_ATOMIC(net, error);
695 NF_CT_STAT_INC_ATOMIC(net, invalid);
9fb9cbb1
YK
696 return -ret;
697 }
698
76108cea 699 l4proto = __nf_ct_l4proto_find(pf, protonum);
9fb9cbb1
YK
700
701 /* It may be an special packet, error, unclean...
702 * inverse of the return code tells to the netfilter
703 * core what to do with the packet. */
74c51a14
AD
704 if (l4proto->error != NULL) {
705 ret = l4proto->error(net, skb, dataoff, &ctinfo, pf, hooknum);
706 if (ret <= 0) {
0d55af87
AD
707 NF_CT_STAT_INC_ATOMIC(net, error);
708 NF_CT_STAT_INC_ATOMIC(net, invalid);
74c51a14
AD
709 return -ret;
710 }
9fb9cbb1
YK
711 }
712
a702a65f
AD
713 ct = resolve_normal_ct(net, skb, dataoff, pf, protonum,
714 l3proto, l4proto, &set_reply, &ctinfo);
9fb9cbb1
YK
715 if (!ct) {
716 /* Not valid part of a connection */
0d55af87 717 NF_CT_STAT_INC_ATOMIC(net, invalid);
9fb9cbb1
YK
718 return NF_ACCEPT;
719 }
720
721 if (IS_ERR(ct)) {
722 /* Too stressed to deal. */
0d55af87 723 NF_CT_STAT_INC_ATOMIC(net, drop);
9fb9cbb1
YK
724 return NF_DROP;
725 }
726
3db05fea 727 NF_CT_ASSERT(skb->nfct);
9fb9cbb1 728
3db05fea 729 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
9fb9cbb1
YK
730 if (ret < 0) {
731 /* Invalid: inverse of the return code tells
732 * the netfilter core what to do */
0d53778e 733 pr_debug("nf_conntrack_in: Can't track with proto module\n");
3db05fea
HX
734 nf_conntrack_put(skb->nfct);
735 skb->nfct = NULL;
0d55af87 736 NF_CT_STAT_INC_ATOMIC(net, invalid);
9fb9cbb1
YK
737 return -ret;
738 }
739
740 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
a71996fc 741 nf_conntrack_event_cache(IPCT_STATUS, ct);
9fb9cbb1
YK
742
743 return ret;
744}
13b18339 745EXPORT_SYMBOL_GPL(nf_conntrack_in);
9fb9cbb1 746
5f2b4c90
JE
747bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
748 const struct nf_conntrack_tuple *orig)
9fb9cbb1 749{
5f2b4c90 750 bool ret;
923f4902
PM
751
752 rcu_read_lock();
753 ret = nf_ct_invert_tuple(inverse, orig,
754 __nf_ct_l3proto_find(orig->src.l3num),
755 __nf_ct_l4proto_find(orig->src.l3num,
756 orig->dst.protonum));
757 rcu_read_unlock();
758 return ret;
9fb9cbb1 759}
13b18339 760EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
9fb9cbb1 761
5b1158e9
JK
762/* Alter reply tuple (maybe alter helper). This is for NAT, and is
763 implicitly racy: see __nf_conntrack_confirm */
764void nf_conntrack_alter_reply(struct nf_conn *ct,
765 const struct nf_conntrack_tuple *newreply)
766{
767 struct nf_conn_help *help = nfct_help(ct);
768
5b1158e9
JK
769 /* Should be unconfirmed, so not in hash table yet */
770 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
771
0d53778e 772 pr_debug("Altering reply tuple of %p to ", ct);
3c9fba65 773 nf_ct_dump_tuple(newreply);
5b1158e9
JK
774
775 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
ef1a5a50 776 if (ct->master || (help && !hlist_empty(&help->expectations)))
c52fbb41 777 return;
ceceae1b 778
c52fbb41 779 rcu_read_lock();
226c0c0e 780 __nf_ct_try_assign_helper(ct, GFP_ATOMIC);
c52fbb41 781 rcu_read_unlock();
5b1158e9 782}
13b18339 783EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
5b1158e9 784
9fb9cbb1
YK
785/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
786void __nf_ct_refresh_acct(struct nf_conn *ct,
787 enum ip_conntrack_info ctinfo,
788 const struct sk_buff *skb,
789 unsigned long extra_jiffies,
790 int do_acct)
791{
792 int event = 0;
793
794 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
795 NF_CT_ASSERT(skb);
796
f8ba1aff 797 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1 798
997ae831 799 /* Only update if this is not a fixed timeout */
47d95045
PM
800 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
801 goto acct;
997ae831 802
9fb9cbb1
YK
803 /* If not in hash table, timer will not be active yet */
804 if (!nf_ct_is_confirmed(ct)) {
805 ct->timeout.expires = extra_jiffies;
806 event = IPCT_REFRESH;
807 } else {
be00c8e4
MJ
808 unsigned long newtime = jiffies + extra_jiffies;
809
810 /* Only update the timeout if the new timeout is at least
811 HZ jiffies from the old timeout. Need del_timer for race
812 avoidance (may already be dying). */
813 if (newtime - ct->timeout.expires >= HZ
814 && del_timer(&ct->timeout)) {
815 ct->timeout.expires = newtime;
9fb9cbb1
YK
816 add_timer(&ct->timeout);
817 event = IPCT_REFRESH;
818 }
819 }
820
47d95045 821acct:
9fb9cbb1 822 if (do_acct) {
58401572 823 struct nf_conn_counter *acct;
3ffd5eeb 824
58401572
KPO
825 acct = nf_conn_acct_find(ct);
826 if (acct) {
827 acct[CTINFO2DIR(ctinfo)].packets++;
828 acct[CTINFO2DIR(ctinfo)].bytes +=
829 skb->len - skb_network_offset(skb);
830 }
9fb9cbb1 831 }
9fb9cbb1 832
f8ba1aff 833 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
834
835 /* must be unlocked when calling event cache */
836 if (event)
a71996fc 837 nf_conntrack_event_cache(event, ct);
9fb9cbb1 838}
13b18339 839EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
9fb9cbb1 840
4c889498
DM
841bool __nf_ct_kill_acct(struct nf_conn *ct,
842 enum ip_conntrack_info ctinfo,
843 const struct sk_buff *skb,
844 int do_acct)
51091764 845{
718d4ad9 846 if (do_acct) {
58401572
KPO
847 struct nf_conn_counter *acct;
848
718d4ad9 849 spin_lock_bh(&nf_conntrack_lock);
58401572
KPO
850 acct = nf_conn_acct_find(ct);
851 if (acct) {
852 acct[CTINFO2DIR(ctinfo)].packets++;
853 acct[CTINFO2DIR(ctinfo)].bytes +=
854 skb->len - skb_network_offset(skb);
855 }
718d4ad9
FH
856 spin_unlock_bh(&nf_conntrack_lock);
857 }
58401572 858
4c889498 859 if (del_timer(&ct->timeout)) {
51091764 860 ct->timeout.function((unsigned long)ct);
4c889498
DM
861 return true;
862 }
863 return false;
51091764 864}
718d4ad9 865EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
51091764 866
e281db5c 867#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
c1d10adb
PNA
868
869#include <linux/netfilter/nfnetlink.h>
870#include <linux/netfilter/nfnetlink_conntrack.h>
57b47a53
IM
871#include <linux/mutex.h>
872
c1d10adb
PNA
873/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
874 * in ip_conntrack_core, since we don't want the protocols to autoload
875 * or depend on ctnetlink */
fdf70832 876int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
c1d10adb
PNA
877 const struct nf_conntrack_tuple *tuple)
878{
77236b6e
PM
879 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
880 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
c1d10adb
PNA
881 return 0;
882
df6fb868 883nla_put_failure:
c1d10adb
PNA
884 return -1;
885}
fdf70832 886EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
c1d10adb 887
f73e924c
PM
888const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
889 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
890 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
c1d10adb 891};
f73e924c 892EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
c1d10adb 893
fdf70832 894int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
c1d10adb
PNA
895 struct nf_conntrack_tuple *t)
896{
df6fb868 897 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
c1d10adb
PNA
898 return -EINVAL;
899
77236b6e
PM
900 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
901 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
c1d10adb
PNA
902
903 return 0;
904}
fdf70832 905EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
c1d10adb
PNA
906#endif
907
9fb9cbb1 908/* Used by ipt_REJECT and ip6t_REJECT. */
b334aadc 909static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
9fb9cbb1
YK
910{
911 struct nf_conn *ct;
912 enum ip_conntrack_info ctinfo;
913
914 /* This ICMP is in reverse direction to the packet which caused it */
915 ct = nf_ct_get(skb, &ctinfo);
916 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
917 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
918 else
919 ctinfo = IP_CT_RELATED;
920
921 /* Attach to new skbuff, and increment count */
922 nskb->nfct = &ct->ct_general;
923 nskb->nfctinfo = ctinfo;
924 nf_conntrack_get(nskb->nfct);
925}
926
9fb9cbb1 927/* Bring out ya dead! */
df0933dc 928static struct nf_conn *
400dad39 929get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
9fb9cbb1
YK
930 void *data, unsigned int *bucket)
931{
df0933dc
PM
932 struct nf_conntrack_tuple_hash *h;
933 struct nf_conn *ct;
f205c5e0 934 struct hlist_node *n;
9fb9cbb1 935
f8ba1aff 936 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1 937 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
400dad39 938 hlist_for_each_entry(h, n, &net->ct.hash[*bucket], hnode) {
df0933dc
PM
939 ct = nf_ct_tuplehash_to_ctrack(h);
940 if (iter(ct, data))
941 goto found;
942 }
601e68e1 943 }
63c9a262 944 hlist_for_each_entry(h, n, &net->ct.unconfirmed, hnode) {
df0933dc
PM
945 ct = nf_ct_tuplehash_to_ctrack(h);
946 if (iter(ct, data))
ec68e97d 947 set_bit(IPS_DYING_BIT, &ct->status);
df0933dc 948 }
f8ba1aff 949 spin_unlock_bh(&nf_conntrack_lock);
df0933dc
PM
950 return NULL;
951found:
c073e3fa 952 atomic_inc(&ct->ct_general.use);
f8ba1aff 953 spin_unlock_bh(&nf_conntrack_lock);
df0933dc 954 return ct;
9fb9cbb1
YK
955}
956
400dad39
AD
957void nf_ct_iterate_cleanup(struct net *net,
958 int (*iter)(struct nf_conn *i, void *data),
959 void *data)
9fb9cbb1 960{
df0933dc 961 struct nf_conn *ct;
9fb9cbb1
YK
962 unsigned int bucket = 0;
963
400dad39 964 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
9fb9cbb1
YK
965 /* Time to push up daises... */
966 if (del_timer(&ct->timeout))
967 death_by_timeout((unsigned long)ct);
968 /* ... else the timer will get him soon. */
969
970 nf_ct_put(ct);
971 }
972}
13b18339 973EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
9fb9cbb1
YK
974
975static int kill_all(struct nf_conn *i, void *data)
976{
977 return 1;
978}
979
96eb24d7 980void nf_ct_free_hashtable(struct hlist_head *hash, int vmalloced, unsigned int size)
9fb9cbb1
YK
981{
982 if (vmalloced)
983 vfree(hash);
984 else
601e68e1 985 free_pages((unsigned long)hash,
f205c5e0 986 get_order(sizeof(struct hlist_head) * size));
9fb9cbb1 987}
ac565e5f 988EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
9fb9cbb1 989
400dad39 990void nf_conntrack_flush(struct net *net)
c1d10adb 991{
400dad39 992 nf_ct_iterate_cleanup(net, kill_all, NULL);
c1d10adb 993}
13b18339 994EXPORT_SYMBOL_GPL(nf_conntrack_flush);
c1d10adb 995
08f6547d 996static void nf_conntrack_cleanup_init_net(void)
9fb9cbb1 997{
08f6547d
AD
998 nf_conntrack_helper_fini();
999 nf_conntrack_proto_fini();
1000 kmem_cache_destroy(nf_conntrack_cachep);
1001}
9fb9cbb1 1002
08f6547d
AD
1003static void nf_conntrack_cleanup_net(struct net *net)
1004{
6058fa6b
AD
1005 nf_ct_event_cache_flush(net);
1006 nf_conntrack_ecache_fini(net);
9fb9cbb1 1007 i_see_dead_people:
400dad39 1008 nf_conntrack_flush(net);
49ac8713 1009 if (atomic_read(&net->ct.count) != 0) {
9fb9cbb1
YK
1010 schedule();
1011 goto i_see_dead_people;
1012 }
6636568c
PM
1013 /* wait until all references to nf_conntrack_untracked are dropped */
1014 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
1015 schedule();
9fb9cbb1 1016
400dad39 1017 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
ac565e5f 1018 nf_conntrack_htable_size);
d716a4df 1019 nf_conntrack_acct_fini(net);
9b03f38d 1020 nf_conntrack_expect_fini(net);
0d55af87 1021 free_percpu(net->ct.stat);
08f6547d
AD
1022}
1023
1024/* Mishearing the voices in his head, our hero wonders how he's
1025 supposed to kill the mall. */
1026void nf_conntrack_cleanup(struct net *net)
1027{
1028 if (net_eq(net, &init_net))
1029 rcu_assign_pointer(ip_ct_attach, NULL);
1030
1031 /* This makes sure all current packets have passed through
1032 netfilter framework. Roll on, two-stage module
1033 delete... */
1034 synchronize_net();
1035
1036 nf_conntrack_cleanup_net(net);
1037
1038 if (net_eq(net, &init_net)) {
1039 rcu_assign_pointer(nf_ct_destroy, NULL);
1040 nf_conntrack_cleanup_init_net();
1041 }
9fb9cbb1
YK
1042}
1043
96eb24d7 1044struct hlist_head *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced)
9fb9cbb1 1045{
f205c5e0 1046 struct hlist_head *hash;
8e5105a0 1047 unsigned int size, i;
9fb9cbb1 1048
601e68e1 1049 *vmalloced = 0;
8e5105a0 1050
f205c5e0 1051 size = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_head));
29b67497 1052 hash = (void*)__get_free_pages(GFP_KERNEL|__GFP_NOWARN,
f205c5e0 1053 get_order(sizeof(struct hlist_head)
9fb9cbb1 1054 * size));
601e68e1 1055 if (!hash) {
9fb9cbb1
YK
1056 *vmalloced = 1;
1057 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
f205c5e0 1058 hash = vmalloc(sizeof(struct hlist_head) * size);
9fb9cbb1
YK
1059 }
1060
1061 if (hash)
601e68e1 1062 for (i = 0; i < size; i++)
f205c5e0 1063 INIT_HLIST_HEAD(&hash[i]);
9fb9cbb1
YK
1064
1065 return hash;
1066}
ac565e5f 1067EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
9fb9cbb1 1068
fae718dd 1069int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
9fb9cbb1 1070{
96eb24d7
SH
1071 int i, bucket, vmalloced, old_vmalloced;
1072 unsigned int hashsize, old_size;
9fb9cbb1 1073 int rnd;
f205c5e0 1074 struct hlist_head *hash, *old_hash;
9fb9cbb1
YK
1075 struct nf_conntrack_tuple_hash *h;
1076
1077 /* On boot, we can set this without any fancy locking. */
1078 if (!nf_conntrack_htable_size)
1079 return param_set_uint(val, kp);
1080
96eb24d7 1081 hashsize = simple_strtoul(val, NULL, 0);
9fb9cbb1
YK
1082 if (!hashsize)
1083 return -EINVAL;
1084
ac565e5f 1085 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced);
9fb9cbb1
YK
1086 if (!hash)
1087 return -ENOMEM;
1088
1089 /* We have to rehahs for the new table anyway, so we also can
1090 * use a newrandom seed */
1091 get_random_bytes(&rnd, 4);
1092
76507f69
PM
1093 /* Lookups in the old hash might happen in parallel, which means we
1094 * might get false negatives during connection lookup. New connections
1095 * created because of a false negative won't make it into the hash
1096 * though since that required taking the lock.
1097 */
f8ba1aff 1098 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1 1099 for (i = 0; i < nf_conntrack_htable_size; i++) {
400dad39
AD
1100 while (!hlist_empty(&init_net.ct.hash[i])) {
1101 h = hlist_entry(init_net.ct.hash[i].first,
f205c5e0 1102 struct nf_conntrack_tuple_hash, hnode);
76507f69 1103 hlist_del_rcu(&h->hnode);
9fb9cbb1 1104 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
f205c5e0 1105 hlist_add_head(&h->hnode, &hash[bucket]);
9fb9cbb1
YK
1106 }
1107 }
1108 old_size = nf_conntrack_htable_size;
400dad39
AD
1109 old_vmalloced = init_net.ct.hash_vmalloc;
1110 old_hash = init_net.ct.hash;
9fb9cbb1
YK
1111
1112 nf_conntrack_htable_size = hashsize;
400dad39
AD
1113 init_net.ct.hash_vmalloc = vmalloced;
1114 init_net.ct.hash = hash;
9fb9cbb1 1115 nf_conntrack_hash_rnd = rnd;
f8ba1aff 1116 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1 1117
ac565e5f 1118 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
9fb9cbb1
YK
1119 return 0;
1120}
fae718dd 1121EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
9fb9cbb1 1122
fae718dd 1123module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
9fb9cbb1
YK
1124 &nf_conntrack_htable_size, 0600);
1125
08f6547d 1126static int nf_conntrack_init_init_net(void)
9fb9cbb1 1127{
f205c5e0 1128 int max_factor = 8;
9fb9cbb1
YK
1129 int ret;
1130
1131 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
f205c5e0 1132 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
9fb9cbb1
YK
1133 if (!nf_conntrack_htable_size) {
1134 nf_conntrack_htable_size
1135 = (((num_physpages << PAGE_SHIFT) / 16384)
f205c5e0 1136 / sizeof(struct hlist_head));
9fb9cbb1 1137 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
f205c5e0
PM
1138 nf_conntrack_htable_size = 16384;
1139 if (nf_conntrack_htable_size < 32)
1140 nf_conntrack_htable_size = 32;
1141
1142 /* Use a max. factor of four by default to get the same max as
1143 * with the old struct list_heads. When a table size is given
1144 * we use the old value of 8 to avoid reducing the max.
1145 * entries. */
1146 max_factor = 4;
9fb9cbb1 1147 }
f205c5e0 1148 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
8e5105a0
PM
1149
1150 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1151 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1152 nf_conntrack_max);
1153
dacd2a1a
YK
1154 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1155 sizeof(struct nf_conn),
20c2df83 1156 0, 0, NULL);
dacd2a1a 1157 if (!nf_conntrack_cachep) {
9fb9cbb1 1158 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
08f6547d
AD
1159 ret = -ENOMEM;
1160 goto err_cache;
9fb9cbb1
YK
1161 }
1162
e9c1b084
PM
1163 ret = nf_conntrack_proto_init();
1164 if (ret < 0)
08f6547d 1165 goto err_proto;
933a41e7 1166
ceceae1b
YK
1167 ret = nf_conntrack_helper_init();
1168 if (ret < 0)
08f6547d
AD
1169 goto err_helper;
1170
1171 return 0;
1172
1173err_helper:
1174 nf_conntrack_proto_fini();
1175err_proto:
1176 kmem_cache_destroy(nf_conntrack_cachep);
1177err_cache:
1178 return ret;
1179}
1180
1181static int nf_conntrack_init_net(struct net *net)
1182{
1183 int ret;
ceceae1b 1184
08f6547d
AD
1185 atomic_set(&net->ct.count, 0);
1186 INIT_HLIST_HEAD(&net->ct.unconfirmed);
1187 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1188 if (!net->ct.stat) {
1189 ret = -ENOMEM;
1190 goto err_stat;
1191 }
1192 ret = nf_conntrack_ecache_init(net);
1193 if (ret < 0)
1194 goto err_ecache;
1195 net->ct.hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
1196 &net->ct.hash_vmalloc);
1197 if (!net->ct.hash) {
1198 ret = -ENOMEM;
1199 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1200 goto err_hash;
1201 }
1202 ret = nf_conntrack_expect_init(net);
1203 if (ret < 0)
1204 goto err_expect;
d716a4df 1205 ret = nf_conntrack_acct_init(net);
58401572 1206 if (ret < 0)
08f6547d 1207 goto err_acct;
7d3cdc6b 1208
9fb9cbb1
YK
1209 /* Set up fake conntrack:
1210 - to never be deleted, not in any hashes */
5a1fb391
AD
1211#ifdef CONFIG_NET_NS
1212 nf_conntrack_untracked.ct_net = &init_net;
1213#endif
9fb9cbb1
YK
1214 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1215 /* - and look it like as a confirmed connection */
1216 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1217
08f6547d 1218 return 0;
9fb9cbb1 1219
08f6547d 1220err_acct:
9b03f38d 1221 nf_conntrack_expect_fini(net);
08f6547d 1222err_expect:
400dad39 1223 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
ac565e5f 1224 nf_conntrack_htable_size);
6058fa6b
AD
1225err_hash:
1226 nf_conntrack_ecache_fini(net);
1227err_ecache:
0d55af87
AD
1228 free_percpu(net->ct.stat);
1229err_stat:
08f6547d
AD
1230 return ret;
1231}
1232
1233int nf_conntrack_init(struct net *net)
1234{
1235 int ret;
1236
1237 if (net_eq(net, &init_net)) {
1238 ret = nf_conntrack_init_init_net();
1239 if (ret < 0)
1240 goto out_init_net;
1241 }
1242 ret = nf_conntrack_init_net(net);
1243 if (ret < 0)
1244 goto out_net;
1245
1246 if (net_eq(net, &init_net)) {
1247 /* For use by REJECT target */
1248 rcu_assign_pointer(ip_ct_attach, nf_conntrack_attach);
1249 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
1250 }
1251 return 0;
1252
1253out_net:
1254 if (net_eq(net, &init_net))
1255 nf_conntrack_cleanup_init_net();
1256out_init_net:
1257 return ret;
9fb9cbb1 1258}
This page took 0.459314 seconds and 5 git commands to generate.