Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
[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 7 * (C) 2003,2004 USAGI/WIDE Project <http://www.linux-ipv6.org>
f229f6ce 8 * (C) 2005-2012 Patrick McHardy <kaber@trash.net>
9fb9cbb1
YK
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
9fb9cbb1
YK
13 */
14
9fb9cbb1
YK
15#include <linux/types.h>
16#include <linux/netfilter.h>
17#include <linux/module.h>
d43c36dc 18#include <linux/sched.h>
9fb9cbb1
YK
19#include <linux/skbuff.h>
20#include <linux/proc_fs.h>
21#include <linux/vmalloc.h>
22#include <linux/stddef.h>
23#include <linux/slab.h>
24#include <linux/random.h>
25#include <linux/jhash.h>
26#include <linux/err.h>
27#include <linux/percpu.h>
28#include <linux/moduleparam.h>
29#include <linux/notifier.h>
30#include <linux/kernel.h>
31#include <linux/netdevice.h>
32#include <linux/socket.h>
d7fe0f24 33#include <linux/mm.h>
d696c7bd 34#include <linux/nsproxy.h>
ea781f19 35#include <linux/rculist_nulls.h>
9fb9cbb1 36
9fb9cbb1
YK
37#include <net/netfilter/nf_conntrack.h>
38#include <net/netfilter/nf_conntrack_l3proto.h>
605dcad6 39#include <net/netfilter/nf_conntrack_l4proto.h>
77ab9cff 40#include <net/netfilter/nf_conntrack_expect.h>
9fb9cbb1 41#include <net/netfilter/nf_conntrack_helper.h>
41d73ec0 42#include <net/netfilter/nf_conntrack_seqadj.h>
9fb9cbb1 43#include <net/netfilter/nf_conntrack_core.h>
ecfab2c9 44#include <net/netfilter/nf_conntrack_extend.h>
58401572 45#include <net/netfilter/nf_conntrack_acct.h>
a0891aa6 46#include <net/netfilter/nf_conntrack_ecache.h>
5d0aa2cc 47#include <net/netfilter/nf_conntrack_zones.h>
a992ca2a 48#include <net/netfilter/nf_conntrack_timestamp.h>
dd705072 49#include <net/netfilter/nf_conntrack_timeout.h>
c539f017 50#include <net/netfilter/nf_conntrack_labels.h>
48b1de4c 51#include <net/netfilter/nf_conntrack_synproxy.h>
e6a7d3c0 52#include <net/netfilter/nf_nat.h>
e17b666a 53#include <net/netfilter/nf_nat_core.h>
49376368 54#include <net/netfilter/nf_nat_helper.h>
9fb9cbb1 55
dc808fe2 56#define NF_CONNTRACK_VERSION "0.5.0"
9fb9cbb1 57
e17b666a
PM
58int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
59 enum nf_nat_manip_type manip,
39938324 60 const struct nlattr *attr) __read_mostly;
e6a7d3c0
PNA
61EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
62
f8ba1aff 63DEFINE_SPINLOCK(nf_conntrack_lock);
13b18339 64EXPORT_SYMBOL_GPL(nf_conntrack_lock);
9fb9cbb1 65
e2b7606c 66unsigned int nf_conntrack_htable_size __read_mostly;
13b18339
PM
67EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
68
e478075c 69unsigned int nf_conntrack_max __read_mostly;
a999e683 70EXPORT_SYMBOL_GPL(nf_conntrack_max);
13b18339 71
b3c5163f
ED
72DEFINE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
73EXPORT_PER_CPU_SYMBOL(nf_conntrack_untracked);
13b18339 74
f682cefa 75unsigned int nf_conntrack_hash_rnd __read_mostly;
4d4e61c6 76EXPORT_SYMBOL_GPL(nf_conntrack_hash_rnd);
9fb9cbb1 77
99f07e91 78static u32 hash_conntrack_raw(const struct nf_conntrack_tuple *tuple, u16 zone)
9fb9cbb1 79{
0794935e 80 unsigned int n;
0794935e
PM
81
82 /* The direction must be ignored, so we hash everything up to the
83 * destination ports (which is a multiple of 4) and treat the last
84 * three bytes manually.
85 */
86 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
99f07e91
CG
87 return jhash2((u32 *)tuple, n, zone ^ nf_conntrack_hash_rnd ^
88 (((__force __u16)tuple->dst.u.all << 16) |
89 tuple->dst.protonum));
90}
91
92static u32 __hash_bucket(u32 hash, unsigned int size)
93{
94 return ((u64)hash * size) >> 32;
95}
96
97static u32 hash_bucket(u32 hash, const struct net *net)
98{
99 return __hash_bucket(hash, net->ct.htable_size);
100}
0794935e 101
99f07e91
CG
102static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
103 u16 zone, unsigned int size)
104{
105 return __hash_bucket(hash_conntrack_raw(tuple, zone), size);
9fb9cbb1
YK
106}
107
5d0aa2cc 108static inline u_int32_t hash_conntrack(const struct net *net, u16 zone,
d696c7bd 109 const struct nf_conntrack_tuple *tuple)
9fb9cbb1 110{
99f07e91 111 return __hash_conntrack(tuple, zone, net->ct.htable_size);
9fb9cbb1
YK
112}
113
5f2b4c90 114bool
9fb9cbb1
YK
115nf_ct_get_tuple(const struct sk_buff *skb,
116 unsigned int nhoff,
117 unsigned int dataoff,
118 u_int16_t l3num,
119 u_int8_t protonum,
120 struct nf_conntrack_tuple *tuple,
121 const struct nf_conntrack_l3proto *l3proto,
605dcad6 122 const struct nf_conntrack_l4proto *l4proto)
9fb9cbb1 123{
443a70d5 124 memset(tuple, 0, sizeof(*tuple));
9fb9cbb1
YK
125
126 tuple->src.l3num = l3num;
127 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
5f2b4c90 128 return false;
9fb9cbb1
YK
129
130 tuple->dst.protonum = protonum;
131 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
132
605dcad6 133 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
9fb9cbb1 134}
13b18339 135EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
9fb9cbb1 136
5f2b4c90
JE
137bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
138 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
e2a3123f
YK
139{
140 struct nf_conntrack_l3proto *l3proto;
141 struct nf_conntrack_l4proto *l4proto;
142 unsigned int protoff;
143 u_int8_t protonum;
144 int ret;
145
146 rcu_read_lock();
147
148 l3proto = __nf_ct_l3proto_find(l3num);
149 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
150 if (ret != NF_ACCEPT) {
151 rcu_read_unlock();
5f2b4c90 152 return false;
e2a3123f
YK
153 }
154
155 l4proto = __nf_ct_l4proto_find(l3num, protonum);
156
157 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
158 l3proto, l4proto);
159
160 rcu_read_unlock();
161 return ret;
162}
163EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
164
5f2b4c90 165bool
9fb9cbb1
YK
166nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
167 const struct nf_conntrack_tuple *orig,
168 const struct nf_conntrack_l3proto *l3proto,
605dcad6 169 const struct nf_conntrack_l4proto *l4proto)
9fb9cbb1 170{
443a70d5 171 memset(inverse, 0, sizeof(*inverse));
9fb9cbb1
YK
172
173 inverse->src.l3num = orig->src.l3num;
174 if (l3proto->invert_tuple(inverse, orig) == 0)
5f2b4c90 175 return false;
9fb9cbb1
YK
176
177 inverse->dst.dir = !orig->dst.dir;
178
179 inverse->dst.protonum = orig->dst.protonum;
605dcad6 180 return l4proto->invert_tuple(inverse, orig);
9fb9cbb1 181}
13b18339 182EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
9fb9cbb1 183
9fb9cbb1
YK
184static void
185clean_from_lists(struct nf_conn *ct)
186{
0d53778e 187 pr_debug("clean_from_lists(%p)\n", ct);
ea781f19
ED
188 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
189 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
9fb9cbb1
YK
190
191 /* Destroy all pending expectations */
c1d10adb 192 nf_ct_remove_expectations(ct);
9fb9cbb1
YK
193}
194
195static void
196destroy_conntrack(struct nf_conntrack *nfct)
197{
198 struct nf_conn *ct = (struct nf_conn *)nfct;
0d55af87 199 struct net *net = nf_ct_net(ct);
605dcad6 200 struct nf_conntrack_l4proto *l4proto;
9fb9cbb1 201
0d53778e 202 pr_debug("destroy_conntrack(%p)\n", ct);
9fb9cbb1
YK
203 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
204 NF_CT_ASSERT(!timer_pending(&ct->timeout));
205
9fb9cbb1
YK
206 /* To make sure we don't get any weird locking issues here:
207 * destroy_conntrack() MUST NOT be called with a write lock
208 * to nf_conntrack_lock!!! -HW */
923f4902 209 rcu_read_lock();
5e8fbe2a 210 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
605dcad6
MJ
211 if (l4proto && l4proto->destroy)
212 l4proto->destroy(ct);
9fb9cbb1 213
982d9a9c 214 rcu_read_unlock();
9fb9cbb1 215
f8ba1aff 216 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
217 /* Expectations will have been removed in clean_from_lists,
218 * except TFTP can create an expectation on the first packet,
219 * before connection is in the list, so we need to clean here,
220 * too. */
c1d10adb 221 nf_ct_remove_expectations(ct);
9fb9cbb1 222
04dac011
PNA
223 /* We overload first tuple to link into unconfirmed or dying list.*/
224 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
225 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
9fb9cbb1 226
0d55af87 227 NF_CT_STAT_INC(net, delete);
f8ba1aff 228 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
229
230 if (ct->master)
231 nf_ct_put(ct->master);
232
0d53778e 233 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
9fb9cbb1
YK
234 nf_conntrack_free(ct);
235}
236
02982c27 237static void nf_ct_delete_from_lists(struct nf_conn *ct)
9fb9cbb1 238{
0d55af87 239 struct net *net = nf_ct_net(ct);
9fb9cbb1 240
9858a3ae 241 nf_ct_helper_destroy(ct);
f8ba1aff 242 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
243 /* Inside lock so preempt is disabled on module removal path.
244 * Otherwise we can get spurious warnings. */
0d55af87 245 NF_CT_STAT_INC(net, delete_list);
9fb9cbb1 246 clean_from_lists(ct);
04dac011
PNA
247 /* add this conntrack to the dying list */
248 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
249 &net->ct.dying);
f8ba1aff 250 spin_unlock_bh(&nf_conntrack_lock);
dd7669a9 251}
dd7669a9
PNA
252
253static void death_by_event(unsigned long ul_conntrack)
254{
255 struct nf_conn *ct = (void *)ul_conntrack;
256 struct net *net = nf_ct_net(ct);
5b423f6a
PNA
257 struct nf_conntrack_ecache *ecache = nf_ct_ecache_find(ct);
258
259 BUG_ON(ecache == NULL);
dd7669a9
PNA
260
261 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
262 /* bad luck, let's retry again */
5b423f6a 263 ecache->timeout.expires = jiffies +
ca3d41a5 264 (prandom_u32() % net->ct.sysctl_events_retry_timeout);
5b423f6a 265 add_timer(&ecache->timeout);
dd7669a9
PNA
266 return;
267 }
268 /* we've got the event delivered, now it's dying */
269 set_bit(IPS_DYING_BIT, &ct->status);
dd7669a9
PNA
270 nf_ct_put(ct);
271}
272
02982c27 273static void nf_ct_dying_timeout(struct nf_conn *ct)
dd7669a9
PNA
274{
275 struct net *net = nf_ct_net(ct);
5b423f6a
PNA
276 struct nf_conntrack_ecache *ecache = nf_ct_ecache_find(ct);
277
278 BUG_ON(ecache == NULL);
dd7669a9 279
dd7669a9 280 /* set a new timer to retry event delivery */
5b423f6a
PNA
281 setup_timer(&ecache->timeout, death_by_event, (unsigned long)ct);
282 ecache->timeout.expires = jiffies +
ca3d41a5 283 (prandom_u32() % net->ct.sysctl_events_retry_timeout);
5b423f6a 284 add_timer(&ecache->timeout);
dd7669a9 285}
dd7669a9 286
02982c27 287bool nf_ct_delete(struct nf_conn *ct, u32 portid, int report)
dd7669a9 288{
a992ca2a
PNA
289 struct nf_conn_tstamp *tstamp;
290
291 tstamp = nf_conn_tstamp_find(ct);
292 if (tstamp && tstamp->stop == 0)
293 tstamp->stop = ktime_to_ns(ktime_get_real());
dd7669a9 294
02982c27
FW
295 if (!nf_ct_is_dying(ct) &&
296 unlikely(nf_conntrack_event_report(IPCT_DESTROY, ct,
297 portid, report) < 0)) {
dd7669a9
PNA
298 /* destroy event was not delivered */
299 nf_ct_delete_from_lists(ct);
04dac011 300 nf_ct_dying_timeout(ct);
02982c27 301 return false;
dd7669a9
PNA
302 }
303 set_bit(IPS_DYING_BIT, &ct->status);
304 nf_ct_delete_from_lists(ct);
9fb9cbb1 305 nf_ct_put(ct);
02982c27
FW
306 return true;
307}
308EXPORT_SYMBOL_GPL(nf_ct_delete);
309
310static void death_by_timeout(unsigned long ul_conntrack)
311{
312 nf_ct_delete((struct nf_conn *)ul_conntrack, 0, 0);
9fb9cbb1
YK
313}
314
ea781f19
ED
315/*
316 * Warning :
317 * - Caller must take a reference on returned object
318 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
319 * OR
320 * - Caller must lock nf_conntrack_lock before calling this function
321 */
99f07e91
CG
322static struct nf_conntrack_tuple_hash *
323____nf_conntrack_find(struct net *net, u16 zone,
324 const struct nf_conntrack_tuple *tuple, u32 hash)
9fb9cbb1
YK
325{
326 struct nf_conntrack_tuple_hash *h;
ea781f19 327 struct hlist_nulls_node *n;
99f07e91 328 unsigned int bucket = hash_bucket(hash, net);
9fb9cbb1 329
4e29e9ec
PM
330 /* Disable BHs the entire time since we normally need to disable them
331 * at least once for the stats anyway.
332 */
333 local_bh_disable();
ea781f19 334begin:
99f07e91 335 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[bucket], hnnode) {
5d0aa2cc
PM
336 if (nf_ct_tuple_equal(tuple, &h->tuple) &&
337 nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)) == zone) {
0d55af87 338 NF_CT_STAT_INC(net, found);
4e29e9ec 339 local_bh_enable();
9fb9cbb1
YK
340 return h;
341 }
0d55af87 342 NF_CT_STAT_INC(net, searched);
9fb9cbb1 343 }
ea781f19
ED
344 /*
345 * if the nulls value we got at the end of this lookup is
346 * not the expected one, we must restart lookup.
347 * We probably met an item that was moved to another chain.
348 */
99f07e91 349 if (get_nulls_value(n) != bucket) {
af740b2c 350 NF_CT_STAT_INC(net, search_restart);
ea781f19 351 goto begin;
af740b2c 352 }
4e29e9ec 353 local_bh_enable();
9fb9cbb1
YK
354
355 return NULL;
356}
99f07e91 357
9fb9cbb1 358/* Find a connection corresponding to a tuple. */
99f07e91
CG
359static struct nf_conntrack_tuple_hash *
360__nf_conntrack_find_get(struct net *net, u16 zone,
361 const struct nf_conntrack_tuple *tuple, u32 hash)
9fb9cbb1
YK
362{
363 struct nf_conntrack_tuple_hash *h;
76507f69 364 struct nf_conn *ct;
9fb9cbb1 365
76507f69 366 rcu_read_lock();
ea781f19 367begin:
99f07e91 368 h = ____nf_conntrack_find(net, zone, tuple, hash);
76507f69
PM
369 if (h) {
370 ct = nf_ct_tuplehash_to_ctrack(h);
8d8890b7
PM
371 if (unlikely(nf_ct_is_dying(ct) ||
372 !atomic_inc_not_zero(&ct->ct_general.use)))
76507f69 373 h = NULL;
ea781f19 374 else {
5d0aa2cc
PM
375 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple) ||
376 nf_ct_zone(ct) != zone)) {
ea781f19
ED
377 nf_ct_put(ct);
378 goto begin;
379 }
380 }
76507f69
PM
381 }
382 rcu_read_unlock();
9fb9cbb1
YK
383
384 return h;
385}
99f07e91
CG
386
387struct nf_conntrack_tuple_hash *
388nf_conntrack_find_get(struct net *net, u16 zone,
389 const struct nf_conntrack_tuple *tuple)
390{
391 return __nf_conntrack_find_get(net, zone, tuple,
392 hash_conntrack_raw(tuple, zone));
393}
13b18339 394EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
9fb9cbb1 395
c1d10adb
PNA
396static void __nf_conntrack_hash_insert(struct nf_conn *ct,
397 unsigned int hash,
601e68e1 398 unsigned int repl_hash)
c1d10adb 399{
400dad39
AD
400 struct net *net = nf_ct_net(ct);
401
ea781f19 402 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
400dad39 403 &net->ct.hash[hash]);
ea781f19 404 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
400dad39 405 &net->ct.hash[repl_hash]);
c1d10adb
PNA
406}
407
7d367e06
JK
408int
409nf_conntrack_hash_check_insert(struct nf_conn *ct)
c1d10adb 410{
d696c7bd 411 struct net *net = nf_ct_net(ct);
c1d10adb 412 unsigned int hash, repl_hash;
7d367e06
JK
413 struct nf_conntrack_tuple_hash *h;
414 struct hlist_nulls_node *n;
5d0aa2cc 415 u16 zone;
c1d10adb 416
5d0aa2cc 417 zone = nf_ct_zone(ct);
7d367e06
JK
418 hash = hash_conntrack(net, zone,
419 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
420 repl_hash = hash_conntrack(net, zone,
421 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
422
423 spin_lock_bh(&nf_conntrack_lock);
424
425 /* See if there's one in the list already, including reverse */
426 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
427 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
428 &h->tuple) &&
429 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
430 goto out;
431 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
432 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
433 &h->tuple) &&
434 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
435 goto out;
c1d10adb 436
7d367e06
JK
437 add_timer(&ct->timeout);
438 nf_conntrack_get(&ct->ct_general);
c1d10adb 439 __nf_conntrack_hash_insert(ct, hash, repl_hash);
7d367e06
JK
440 NF_CT_STAT_INC(net, insert);
441 spin_unlock_bh(&nf_conntrack_lock);
442
443 return 0;
444
445out:
446 NF_CT_STAT_INC(net, insert_failed);
447 spin_unlock_bh(&nf_conntrack_lock);
448 return -EEXIST;
c1d10adb 449}
7d367e06 450EXPORT_SYMBOL_GPL(nf_conntrack_hash_check_insert);
c1d10adb 451
9fb9cbb1
YK
452/* Confirm a connection given skb; places it in hash table */
453int
3db05fea 454__nf_conntrack_confirm(struct sk_buff *skb)
9fb9cbb1
YK
455{
456 unsigned int hash, repl_hash;
df0933dc 457 struct nf_conntrack_tuple_hash *h;
9fb9cbb1 458 struct nf_conn *ct;
df0933dc 459 struct nf_conn_help *help;
a992ca2a 460 struct nf_conn_tstamp *tstamp;
ea781f19 461 struct hlist_nulls_node *n;
9fb9cbb1 462 enum ip_conntrack_info ctinfo;
400dad39 463 struct net *net;
5d0aa2cc 464 u16 zone;
9fb9cbb1 465
3db05fea 466 ct = nf_ct_get(skb, &ctinfo);
400dad39 467 net = nf_ct_net(ct);
9fb9cbb1
YK
468
469 /* ipt_REJECT uses nf_conntrack_attach to attach related
470 ICMP/TCP RST packets in other direction. Actual packet
471 which created connection will be IP_CT_NEW or for an
472 expected connection, IP_CT_RELATED. */
473 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
474 return NF_ACCEPT;
475
5d0aa2cc 476 zone = nf_ct_zone(ct);
99f07e91
CG
477 /* reuse the hash saved before */
478 hash = *(unsigned long *)&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev;
479 hash = hash_bucket(hash, net);
480 repl_hash = hash_conntrack(net, zone,
481 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
9fb9cbb1
YK
482
483 /* We're not in hash table, and we refuse to set up related
484 connections for unconfirmed conns. But packet copies and
485 REJECT will give spurious warnings here. */
486 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
487
25985edc 488 /* No external references means no one else could have
9fb9cbb1
YK
489 confirmed us. */
490 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
0d53778e 491 pr_debug("Confirming conntrack %p\n", ct);
9fb9cbb1 492
f8ba1aff 493 spin_lock_bh(&nf_conntrack_lock);
9fb9cbb1 494
fc350777
JM
495 /* We have to check the DYING flag inside the lock to prevent
496 a race against nf_ct_get_next_corpse() possibly called from
497 user context, else we insert an already 'dead' hash, blocking
498 further use of that particular connection -JM */
499
500 if (unlikely(nf_ct_is_dying(ct))) {
501 spin_unlock_bh(&nf_conntrack_lock);
502 return NF_ACCEPT;
503 }
504
9fb9cbb1
YK
505 /* See if there's one in the list already, including reverse:
506 NAT could have grabbed it without realizing, since we're
507 not in the hash. If there is, we lost race. */
ea781f19 508 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
df0933dc 509 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
5d0aa2cc
PM
510 &h->tuple) &&
511 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
df0933dc 512 goto out;
ea781f19 513 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
df0933dc 514 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
5d0aa2cc
PM
515 &h->tuple) &&
516 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
df0933dc 517 goto out;
9fb9cbb1 518
df0933dc 519 /* Remove from unconfirmed list */
ea781f19 520 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
df0933dc 521
df0933dc
PM
522 /* Timer relative to confirmation time, not original
523 setting time, otherwise we'd get timer wrap in
524 weird delay cases. */
525 ct->timeout.expires += jiffies;
526 add_timer(&ct->timeout);
527 atomic_inc(&ct->ct_general.use);
45eec341 528 ct->status |= IPS_CONFIRMED;
5c8ec910 529
a992ca2a
PNA
530 /* set conntrack timestamp, if enabled. */
531 tstamp = nf_conn_tstamp_find(ct);
532 if (tstamp) {
533 if (skb->tstamp.tv64 == 0)
e3192690 534 __net_timestamp(skb);
a992ca2a
PNA
535
536 tstamp->start = ktime_to_ns(skb->tstamp);
537 }
5c8ec910
PM
538 /* Since the lookup is lockless, hash insertion must be done after
539 * starting the timer and setting the CONFIRMED bit. The RCU barriers
540 * guarantee that no other CPU can find the conntrack before the above
541 * stores are visible.
542 */
543 __nf_conntrack_hash_insert(ct, hash, repl_hash);
0d55af87 544 NF_CT_STAT_INC(net, insert);
f8ba1aff 545 spin_unlock_bh(&nf_conntrack_lock);
5c8ec910 546
df0933dc
PM
547 help = nfct_help(ct);
548 if (help && help->helper)
a71996fc 549 nf_conntrack_event_cache(IPCT_HELPER, ct);
17e6e4ea 550
df0933dc 551 nf_conntrack_event_cache(master_ct(ct) ?
a71996fc 552 IPCT_RELATED : IPCT_NEW, ct);
df0933dc 553 return NF_ACCEPT;
9fb9cbb1 554
df0933dc 555out:
0d55af87 556 NF_CT_STAT_INC(net, insert_failed);
f8ba1aff 557 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
558 return NF_DROP;
559}
13b18339 560EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
9fb9cbb1
YK
561
562/* Returns true if a connection correspondings to the tuple (required
563 for NAT). */
564int
565nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
566 const struct nf_conn *ignored_conntrack)
567{
400dad39 568 struct net *net = nf_ct_net(ignored_conntrack);
9fb9cbb1 569 struct nf_conntrack_tuple_hash *h;
ea781f19 570 struct hlist_nulls_node *n;
5d0aa2cc
PM
571 struct nf_conn *ct;
572 u16 zone = nf_ct_zone(ignored_conntrack);
573 unsigned int hash = hash_conntrack(net, zone, tuple);
9fb9cbb1 574
4e29e9ec
PM
575 /* Disable BHs the entire time since we need to disable them at
576 * least once for the stats anyway.
577 */
578 rcu_read_lock_bh();
ea781f19 579 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
5d0aa2cc
PM
580 ct = nf_ct_tuplehash_to_ctrack(h);
581 if (ct != ignored_conntrack &&
582 nf_ct_tuple_equal(tuple, &h->tuple) &&
583 nf_ct_zone(ct) == zone) {
0d55af87 584 NF_CT_STAT_INC(net, found);
4e29e9ec 585 rcu_read_unlock_bh();
ba419aff
PM
586 return 1;
587 }
0d55af87 588 NF_CT_STAT_INC(net, searched);
ba419aff 589 }
4e29e9ec 590 rcu_read_unlock_bh();
9fb9cbb1 591
ba419aff 592 return 0;
9fb9cbb1 593}
13b18339 594EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
9fb9cbb1 595
7ae7730f
PM
596#define NF_CT_EVICTION_RANGE 8
597
9fb9cbb1
YK
598/* There's a small race here where we may free a just-assured
599 connection. Too bad: we're in trouble anyway. */
400dad39 600static noinline int early_drop(struct net *net, unsigned int hash)
9fb9cbb1 601{
f205c5e0 602 /* Use oldest entry, which is roughly LRU */
9fb9cbb1 603 struct nf_conntrack_tuple_hash *h;
df0933dc 604 struct nf_conn *ct = NULL, *tmp;
ea781f19 605 struct hlist_nulls_node *n;
7ae7730f 606 unsigned int i, cnt = 0;
9fb9cbb1
YK
607 int dropped = 0;
608
76507f69 609 rcu_read_lock();
d696c7bd 610 for (i = 0; i < net->ct.htable_size; i++) {
ea781f19
ED
611 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
612 hnnode) {
7ae7730f
PM
613 tmp = nf_ct_tuplehash_to_ctrack(h);
614 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
615 ct = tmp;
616 cnt++;
617 }
76507f69 618
5ae27aa2
CG
619 if (ct != NULL) {
620 if (likely(!nf_ct_is_dying(ct) &&
621 atomic_inc_not_zero(&ct->ct_general.use)))
622 break;
623 else
624 ct = NULL;
625 }
626
627 if (cnt >= NF_CT_EVICTION_RANGE)
7ae7730f 628 break;
5ae27aa2 629
d696c7bd 630 hash = (hash + 1) % net->ct.htable_size;
9fb9cbb1 631 }
76507f69 632 rcu_read_unlock();
9fb9cbb1
YK
633
634 if (!ct)
635 return dropped;
636
637 if (del_timer(&ct->timeout)) {
02982c27 638 if (nf_ct_delete(ct, 0, 0)) {
74138511
PNA
639 dropped = 1;
640 NF_CT_STAT_INC_ATOMIC(net, early_drop);
641 }
9fb9cbb1
YK
642 }
643 nf_ct_put(ct);
644 return dropped;
645}
646
f682cefa
CG
647void init_nf_conntrack_hash_rnd(void)
648{
649 unsigned int rand;
650
651 /*
652 * Why not initialize nf_conntrack_rnd in a "init()" function ?
653 * Because there isn't enough entropy when system initializing,
654 * and we initialize it as late as possible.
655 */
656 do {
657 get_random_bytes(&rand, sizeof(rand));
658 } while (!rand);
659 cmpxchg(&nf_conntrack_hash_rnd, 0, rand);
660}
661
99f07e91
CG
662static struct nf_conn *
663__nf_conntrack_alloc(struct net *net, u16 zone,
664 const struct nf_conntrack_tuple *orig,
665 const struct nf_conntrack_tuple *repl,
666 gfp_t gfp, u32 hash)
9fb9cbb1 667{
cd7fcbf1 668 struct nf_conn *ct;
9fb9cbb1 669
b2390969 670 if (unlikely(!nf_conntrack_hash_rnd)) {
f682cefa 671 init_nf_conntrack_hash_rnd();
99f07e91
CG
672 /* recompute the hash as nf_conntrack_hash_rnd is initialized */
673 hash = hash_conntrack_raw(orig, zone);
9fb9cbb1
YK
674 }
675
5251e2d2 676 /* We don't want any race condition at early drop stage */
49ac8713 677 atomic_inc(&net->ct.count);
5251e2d2 678
76eb9460 679 if (nf_conntrack_max &&
49ac8713 680 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
99f07e91 681 if (!early_drop(net, hash_bucket(hash, net))) {
49ac8713 682 atomic_dec(&net->ct.count);
e87cc472 683 net_warn_ratelimited("nf_conntrack: table full, dropping packet\n");
9fb9cbb1
YK
684 return ERR_PTR(-ENOMEM);
685 }
686 }
687
941297f4
ED
688 /*
689 * Do not use kmem_cache_zalloc(), as this cache uses
690 * SLAB_DESTROY_BY_RCU.
691 */
5b3501fa 692 ct = kmem_cache_alloc(net->ct.nf_conntrack_cachep, gfp);
c88130bc 693 if (ct == NULL) {
49ac8713 694 atomic_dec(&net->ct.count);
dacd2a1a 695 return ERR_PTR(-ENOMEM);
9fb9cbb1 696 }
941297f4
ED
697 /*
698 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
699 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
700 */
701 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
e5fc9e7a
CG
702 offsetof(struct nf_conn, proto) -
703 offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
440f0d58 704 spin_lock_init(&ct->lock);
c88130bc 705 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
941297f4 706 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
c88130bc 707 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
99f07e91
CG
708 /* save hash for reusing when confirming */
709 *(unsigned long *)(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev) = hash;
9fb9cbb1 710 /* Don't set timer yet: wait for confirmation */
c88130bc 711 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
c2d9ba9b 712 write_pnet(&ct->ct_net, net);
5d0aa2cc
PM
713#ifdef CONFIG_NF_CONNTRACK_ZONES
714 if (zone) {
715 struct nf_conntrack_zone *nf_ct_zone;
716
717 nf_ct_zone = nf_ct_ext_add(ct, NF_CT_EXT_ZONE, GFP_ATOMIC);
718 if (!nf_ct_zone)
719 goto out_free;
720 nf_ct_zone->id = zone;
721 }
722#endif
941297f4
ED
723 /*
724 * changes to lookup keys must be done before setting refcnt to 1
725 */
726 smp_wmb();
727 atomic_set(&ct->ct_general.use, 1);
c88130bc 728 return ct;
5d0aa2cc
PM
729
730#ifdef CONFIG_NF_CONNTRACK_ZONES
731out_free:
d96fc659 732 atomic_dec(&net->ct.count);
5d0aa2cc
PM
733 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
734 return ERR_PTR(-ENOMEM);
735#endif
9fb9cbb1 736}
99f07e91
CG
737
738struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
739 const struct nf_conntrack_tuple *orig,
740 const struct nf_conntrack_tuple *repl,
741 gfp_t gfp)
742{
743 return __nf_conntrack_alloc(net, zone, orig, repl, gfp, 0);
744}
13b18339 745EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
9fb9cbb1 746
c88130bc 747void nf_conntrack_free(struct nf_conn *ct)
76507f69 748{
1d45209d
ED
749 struct net *net = nf_ct_net(ct);
750
ceeff754 751 nf_ct_ext_destroy(ct);
ea781f19 752 nf_ct_ext_free(ct);
5b3501fa 753 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
0c3c6c00
PNA
754 smp_mb__before_atomic_dec();
755 atomic_dec(&net->ct.count);
76507f69 756}
13b18339 757EXPORT_SYMBOL_GPL(nf_conntrack_free);
9fb9cbb1 758
c539f017 759
9fb9cbb1
YK
760/* Allocate a new conntrack: we return -ENOMEM if classification
761 failed due to stress. Otherwise it really is unclassifiable. */
762static struct nf_conntrack_tuple_hash *
b2a15a60 763init_conntrack(struct net *net, struct nf_conn *tmpl,
5a1fb391 764 const struct nf_conntrack_tuple *tuple,
9fb9cbb1 765 struct nf_conntrack_l3proto *l3proto,
605dcad6 766 struct nf_conntrack_l4proto *l4proto,
9fb9cbb1 767 struct sk_buff *skb,
60b5f8f7 768 unsigned int dataoff, u32 hash)
9fb9cbb1 769{
c88130bc 770 struct nf_conn *ct;
3c158f7f 771 struct nf_conn_help *help;
9fb9cbb1 772 struct nf_conntrack_tuple repl_tuple;
b2a15a60 773 struct nf_conntrack_ecache *ecache;
9fb9cbb1 774 struct nf_conntrack_expect *exp;
5d0aa2cc 775 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
60b5f8f7
PNA
776 struct nf_conn_timeout *timeout_ext;
777 unsigned int *timeouts;
9fb9cbb1 778
605dcad6 779 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
0d53778e 780 pr_debug("Can't invert tuple.\n");
9fb9cbb1
YK
781 return NULL;
782 }
783
99f07e91
CG
784 ct = __nf_conntrack_alloc(net, zone, tuple, &repl_tuple, GFP_ATOMIC,
785 hash);
0a9ee813 786 if (IS_ERR(ct))
c88130bc 787 return (struct nf_conntrack_tuple_hash *)ct;
9fb9cbb1 788
48b1de4c
PM
789 if (tmpl && nfct_synproxy(tmpl)) {
790 nfct_seqadj_ext_add(ct);
791 nfct_synproxy_ext_add(ct);
792 }
793
60b5f8f7
PNA
794 timeout_ext = tmpl ? nf_ct_timeout_find(tmpl) : NULL;
795 if (timeout_ext)
796 timeouts = NF_CT_TIMEOUT_EXT_DATA(timeout_ext);
797 else
798 timeouts = l4proto->get_timeouts(net);
799
2c8503f5 800 if (!l4proto->new(ct, skb, dataoff, timeouts)) {
c88130bc 801 nf_conntrack_free(ct);
0d53778e 802 pr_debug("init conntrack: can't track with proto module\n");
9fb9cbb1
YK
803 return NULL;
804 }
805
60b5f8f7
PNA
806 if (timeout_ext)
807 nf_ct_timeout_ext_add(ct, timeout_ext->timeout, GFP_ATOMIC);
808
58401572 809 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
a992ca2a 810 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
c539f017 811 nf_ct_labels_ext_add(ct);
b2a15a60
PM
812
813 ecache = tmpl ? nf_ct_ecache_find(tmpl) : NULL;
814 nf_ct_ecache_ext_add(ct, ecache ? ecache->ctmask : 0,
815 ecache ? ecache->expmask : 0,
816 GFP_ATOMIC);
58401572 817
f8ba1aff 818 spin_lock_bh(&nf_conntrack_lock);
5d0aa2cc 819 exp = nf_ct_find_expectation(net, zone, tuple);
9fb9cbb1 820 if (exp) {
0d53778e 821 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
c88130bc 822 ct, exp);
9fb9cbb1 823 /* Welcome, Mr. Bond. We've been expecting you... */
c88130bc
PM
824 __set_bit(IPS_EXPECTED_BIT, &ct->status);
825 ct->master = exp->master;
ceceae1b 826 if (exp->helper) {
1afc5679
PNA
827 help = nf_ct_helper_ext_add(ct, exp->helper,
828 GFP_ATOMIC);
ceceae1b 829 if (help)
cf778b00 830 rcu_assign_pointer(help->helper, exp->helper);
ceceae1b
YK
831 }
832
9fb9cbb1 833#ifdef CONFIG_NF_CONNTRACK_MARK
c88130bc 834 ct->mark = exp->master->mark;
7c9728c3
JM
835#endif
836#ifdef CONFIG_NF_CONNTRACK_SECMARK
c88130bc 837 ct->secmark = exp->master->secmark;
9fb9cbb1 838#endif
c88130bc 839 nf_conntrack_get(&ct->master->ct_general);
0d55af87 840 NF_CT_STAT_INC(net, expect_new);
22e7410b 841 } else {
b2a15a60 842 __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC);
0d55af87 843 NF_CT_STAT_INC(net, new);
22e7410b 844 }
9fb9cbb1
YK
845
846 /* Overload tuple linked list to put us in unconfirmed list. */
ea781f19 847 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
63c9a262 848 &net->ct.unconfirmed);
9fb9cbb1 849
f8ba1aff 850 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1
YK
851
852 if (exp) {
853 if (exp->expectfn)
c88130bc 854 exp->expectfn(ct, exp);
6823645d 855 nf_ct_expect_put(exp);
9fb9cbb1
YK
856 }
857
c88130bc 858 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
9fb9cbb1
YK
859}
860
861/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
862static inline struct nf_conn *
b2a15a60 863resolve_normal_ct(struct net *net, struct nf_conn *tmpl,
a702a65f 864 struct sk_buff *skb,
9fb9cbb1
YK
865 unsigned int dataoff,
866 u_int16_t l3num,
867 u_int8_t protonum,
868 struct nf_conntrack_l3proto *l3proto,
605dcad6 869 struct nf_conntrack_l4proto *l4proto,
9fb9cbb1 870 int *set_reply,
60b5f8f7 871 enum ip_conntrack_info *ctinfo)
9fb9cbb1
YK
872{
873 struct nf_conntrack_tuple tuple;
874 struct nf_conntrack_tuple_hash *h;
875 struct nf_conn *ct;
5d0aa2cc 876 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
99f07e91 877 u32 hash;
9fb9cbb1 878
bbe735e4 879 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
9fb9cbb1 880 dataoff, l3num, protonum, &tuple, l3proto,
605dcad6 881 l4proto)) {
0d53778e 882 pr_debug("resolve_normal_ct: Can't get tuple\n");
9fb9cbb1
YK
883 return NULL;
884 }
885
886 /* look for tuple match */
99f07e91
CG
887 hash = hash_conntrack_raw(&tuple, zone);
888 h = __nf_conntrack_find_get(net, zone, &tuple, hash);
9fb9cbb1 889 if (!h) {
b2a15a60 890 h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto,
60b5f8f7 891 skb, dataoff, hash);
9fb9cbb1
YK
892 if (!h)
893 return NULL;
894 if (IS_ERR(h))
895 return (void *)h;
896 }
897 ct = nf_ct_tuplehash_to_ctrack(h);
898
899 /* It exists; we have (non-exclusive) reference. */
900 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
fb048833 901 *ctinfo = IP_CT_ESTABLISHED_REPLY;
9fb9cbb1
YK
902 /* Please set reply bit if this packet OK */
903 *set_reply = 1;
904 } else {
905 /* Once we've had two way comms, always ESTABLISHED. */
906 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
0d53778e 907 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
9fb9cbb1
YK
908 *ctinfo = IP_CT_ESTABLISHED;
909 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
0d53778e
PM
910 pr_debug("nf_conntrack_in: related packet for %p\n",
911 ct);
9fb9cbb1
YK
912 *ctinfo = IP_CT_RELATED;
913 } else {
0d53778e 914 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
9fb9cbb1
YK
915 *ctinfo = IP_CT_NEW;
916 }
917 *set_reply = 0;
918 }
919 skb->nfct = &ct->ct_general;
920 skb->nfctinfo = *ctinfo;
921 return ct;
922}
923
924unsigned int
a702a65f
AD
925nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
926 struct sk_buff *skb)
9fb9cbb1 927{
b2a15a60 928 struct nf_conn *ct, *tmpl = NULL;
9fb9cbb1
YK
929 enum ip_conntrack_info ctinfo;
930 struct nf_conntrack_l3proto *l3proto;
605dcad6 931 struct nf_conntrack_l4proto *l4proto;
2c8503f5 932 unsigned int *timeouts;
9fb9cbb1
YK
933 unsigned int dataoff;
934 u_int8_t protonum;
935 int set_reply = 0;
936 int ret;
937
3db05fea 938 if (skb->nfct) {
b2a15a60
PM
939 /* Previously seen (loopback or untracked)? Ignore. */
940 tmpl = (struct nf_conn *)skb->nfct;
941 if (!nf_ct_is_template(tmpl)) {
942 NF_CT_STAT_INC_ATOMIC(net, ignore);
943 return NF_ACCEPT;
944 }
945 skb->nfct = NULL;
9fb9cbb1
YK
946 }
947
923f4902 948 /* rcu_read_lock()ed by nf_hook_slow */
76108cea 949 l3proto = __nf_ct_l3proto_find(pf);
3db05fea 950 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
ffc30690
YK
951 &dataoff, &protonum);
952 if (ret <= 0) {
25985edc 953 pr_debug("not prepared to track yet or error occurred\n");
0d55af87
AD
954 NF_CT_STAT_INC_ATOMIC(net, error);
955 NF_CT_STAT_INC_ATOMIC(net, invalid);
b2a15a60
PM
956 ret = -ret;
957 goto out;
9fb9cbb1
YK
958 }
959
76108cea 960 l4proto = __nf_ct_l4proto_find(pf, protonum);
9fb9cbb1
YK
961
962 /* It may be an special packet, error, unclean...
963 * inverse of the return code tells to the netfilter
964 * core what to do with the packet. */
74c51a14 965 if (l4proto->error != NULL) {
8fea97ec
PM
966 ret = l4proto->error(net, tmpl, skb, dataoff, &ctinfo,
967 pf, hooknum);
74c51a14 968 if (ret <= 0) {
0d55af87
AD
969 NF_CT_STAT_INC_ATOMIC(net, error);
970 NF_CT_STAT_INC_ATOMIC(net, invalid);
b2a15a60
PM
971 ret = -ret;
972 goto out;
74c51a14 973 }
88ed01d1
PNA
974 /* ICMP[v6] protocol trackers may assign one conntrack. */
975 if (skb->nfct)
976 goto out;
9fb9cbb1
YK
977 }
978
b2a15a60 979 ct = resolve_normal_ct(net, tmpl, skb, dataoff, pf, protonum,
60b5f8f7 980 l3proto, l4proto, &set_reply, &ctinfo);
9fb9cbb1
YK
981 if (!ct) {
982 /* Not valid part of a connection */
0d55af87 983 NF_CT_STAT_INC_ATOMIC(net, invalid);
b2a15a60
PM
984 ret = NF_ACCEPT;
985 goto out;
9fb9cbb1
YK
986 }
987
988 if (IS_ERR(ct)) {
989 /* Too stressed to deal. */
0d55af87 990 NF_CT_STAT_INC_ATOMIC(net, drop);
b2a15a60
PM
991 ret = NF_DROP;
992 goto out;
9fb9cbb1
YK
993 }
994
3db05fea 995 NF_CT_ASSERT(skb->nfct);
9fb9cbb1 996
60b5f8f7 997 /* Decide what timeout policy we want to apply to this flow. */
84b5ee93 998 timeouts = nf_ct_timeout_lookup(net, ct, l4proto);
60b5f8f7 999
2c8503f5 1000 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum, timeouts);
ec8d5409 1001 if (ret <= 0) {
9fb9cbb1
YK
1002 /* Invalid: inverse of the return code tells
1003 * the netfilter core what to do */
0d53778e 1004 pr_debug("nf_conntrack_in: Can't track with proto module\n");
3db05fea
HX
1005 nf_conntrack_put(skb->nfct);
1006 skb->nfct = NULL;
0d55af87 1007 NF_CT_STAT_INC_ATOMIC(net, invalid);
7d1e0459
PNA
1008 if (ret == -NF_DROP)
1009 NF_CT_STAT_INC_ATOMIC(net, drop);
b2a15a60
PM
1010 ret = -ret;
1011 goto out;
9fb9cbb1
YK
1012 }
1013
1014 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
858b3133 1015 nf_conntrack_event_cache(IPCT_REPLY, ct);
b2a15a60 1016out:
c3174286
PNA
1017 if (tmpl) {
1018 /* Special case: we have to repeat this hook, assign the
1019 * template again to this packet. We assume that this packet
1020 * has no conntrack assigned. This is used by nf_ct_tcp. */
1021 if (ret == NF_REPEAT)
1022 skb->nfct = (struct nf_conntrack *)tmpl;
1023 else
1024 nf_ct_put(tmpl);
1025 }
9fb9cbb1
YK
1026
1027 return ret;
1028}
13b18339 1029EXPORT_SYMBOL_GPL(nf_conntrack_in);
9fb9cbb1 1030
5f2b4c90
JE
1031bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
1032 const struct nf_conntrack_tuple *orig)
9fb9cbb1 1033{
5f2b4c90 1034 bool ret;
923f4902
PM
1035
1036 rcu_read_lock();
1037 ret = nf_ct_invert_tuple(inverse, orig,
1038 __nf_ct_l3proto_find(orig->src.l3num),
1039 __nf_ct_l4proto_find(orig->src.l3num,
1040 orig->dst.protonum));
1041 rcu_read_unlock();
1042 return ret;
9fb9cbb1 1043}
13b18339 1044EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
9fb9cbb1 1045
5b1158e9
JK
1046/* Alter reply tuple (maybe alter helper). This is for NAT, and is
1047 implicitly racy: see __nf_conntrack_confirm */
1048void nf_conntrack_alter_reply(struct nf_conn *ct,
1049 const struct nf_conntrack_tuple *newreply)
1050{
1051 struct nf_conn_help *help = nfct_help(ct);
1052
5b1158e9
JK
1053 /* Should be unconfirmed, so not in hash table yet */
1054 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
1055
0d53778e 1056 pr_debug("Altering reply tuple of %p to ", ct);
3c9fba65 1057 nf_ct_dump_tuple(newreply);
5b1158e9
JK
1058
1059 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
ef1a5a50 1060 if (ct->master || (help && !hlist_empty(&help->expectations)))
c52fbb41 1061 return;
ceceae1b 1062
c52fbb41 1063 rcu_read_lock();
b2a15a60 1064 __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
c52fbb41 1065 rcu_read_unlock();
5b1158e9 1066}
13b18339 1067EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
5b1158e9 1068
9fb9cbb1
YK
1069/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
1070void __nf_ct_refresh_acct(struct nf_conn *ct,
1071 enum ip_conntrack_info ctinfo,
1072 const struct sk_buff *skb,
1073 unsigned long extra_jiffies,
1074 int do_acct)
1075{
9fb9cbb1
YK
1076 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
1077 NF_CT_ASSERT(skb);
1078
997ae831 1079 /* Only update if this is not a fixed timeout */
47d95045
PM
1080 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
1081 goto acct;
997ae831 1082
9fb9cbb1
YK
1083 /* If not in hash table, timer will not be active yet */
1084 if (!nf_ct_is_confirmed(ct)) {
1085 ct->timeout.expires = extra_jiffies;
9fb9cbb1 1086 } else {
be00c8e4
MJ
1087 unsigned long newtime = jiffies + extra_jiffies;
1088
1089 /* Only update the timeout if the new timeout is at least
1090 HZ jiffies from the old timeout. Need del_timer for race
1091 avoidance (may already be dying). */
65cb9fda
PM
1092 if (newtime - ct->timeout.expires >= HZ)
1093 mod_timer_pending(&ct->timeout, newtime);
9fb9cbb1
YK
1094 }
1095
47d95045 1096acct:
9fb9cbb1 1097 if (do_acct) {
f7b13e43 1098 struct nf_conn_acct *acct;
3ffd5eeb 1099
58401572
KPO
1100 acct = nf_conn_acct_find(ct);
1101 if (acct) {
f7b13e43
HE
1102 struct nf_conn_counter *counter = acct->counter;
1103
1104 atomic64_inc(&counter[CTINFO2DIR(ctinfo)].packets);
1105 atomic64_add(skb->len, &counter[CTINFO2DIR(ctinfo)].bytes);
58401572 1106 }
9fb9cbb1 1107 }
9fb9cbb1 1108}
13b18339 1109EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
9fb9cbb1 1110
4c889498
DM
1111bool __nf_ct_kill_acct(struct nf_conn *ct,
1112 enum ip_conntrack_info ctinfo,
1113 const struct sk_buff *skb,
1114 int do_acct)
51091764 1115{
718d4ad9 1116 if (do_acct) {
f7b13e43 1117 struct nf_conn_acct *acct;
58401572 1118
58401572
KPO
1119 acct = nf_conn_acct_find(ct);
1120 if (acct) {
f7b13e43
HE
1121 struct nf_conn_counter *counter = acct->counter;
1122
1123 atomic64_inc(&counter[CTINFO2DIR(ctinfo)].packets);
b3e0bfa7 1124 atomic64_add(skb->len - skb_network_offset(skb),
f7b13e43 1125 &counter[CTINFO2DIR(ctinfo)].bytes);
58401572 1126 }
718d4ad9 1127 }
58401572 1128
4c889498 1129 if (del_timer(&ct->timeout)) {
51091764 1130 ct->timeout.function((unsigned long)ct);
4c889498
DM
1131 return true;
1132 }
1133 return false;
51091764 1134}
718d4ad9 1135EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
51091764 1136
5d0aa2cc
PM
1137#ifdef CONFIG_NF_CONNTRACK_ZONES
1138static struct nf_ct_ext_type nf_ct_zone_extend __read_mostly = {
1139 .len = sizeof(struct nf_conntrack_zone),
1140 .align = __alignof__(struct nf_conntrack_zone),
1141 .id = NF_CT_EXT_ZONE,
1142};
1143#endif
1144
c0cd1156 1145#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
c1d10adb
PNA
1146
1147#include <linux/netfilter/nfnetlink.h>
1148#include <linux/netfilter/nfnetlink_conntrack.h>
57b47a53
IM
1149#include <linux/mutex.h>
1150
c1d10adb
PNA
1151/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
1152 * in ip_conntrack_core, since we don't want the protocols to autoload
1153 * or depend on ctnetlink */
fdf70832 1154int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
c1d10adb
PNA
1155 const struct nf_conntrack_tuple *tuple)
1156{
bae65be8
DM
1157 if (nla_put_be16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port) ||
1158 nla_put_be16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port))
1159 goto nla_put_failure;
c1d10adb
PNA
1160 return 0;
1161
df6fb868 1162nla_put_failure:
c1d10adb
PNA
1163 return -1;
1164}
fdf70832 1165EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
c1d10adb 1166
f73e924c
PM
1167const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
1168 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
1169 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
c1d10adb 1170};
f73e924c 1171EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
c1d10adb 1172
fdf70832 1173int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
c1d10adb
PNA
1174 struct nf_conntrack_tuple *t)
1175{
df6fb868 1176 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
c1d10adb
PNA
1177 return -EINVAL;
1178
77236b6e
PM
1179 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
1180 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
c1d10adb
PNA
1181
1182 return 0;
1183}
fdf70832 1184EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
5c0de29d
HE
1185
1186int nf_ct_port_nlattr_tuple_size(void)
1187{
1188 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1189}
1190EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
c1d10adb
PNA
1191#endif
1192
9fb9cbb1 1193/* Used by ipt_REJECT and ip6t_REJECT. */
312a0c16 1194static void nf_conntrack_attach(struct sk_buff *nskb, const struct sk_buff *skb)
9fb9cbb1
YK
1195{
1196 struct nf_conn *ct;
1197 enum ip_conntrack_info ctinfo;
1198
1199 /* This ICMP is in reverse direction to the packet which caused it */
1200 ct = nf_ct_get(skb, &ctinfo);
1201 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
fb048833 1202 ctinfo = IP_CT_RELATED_REPLY;
9fb9cbb1
YK
1203 else
1204 ctinfo = IP_CT_RELATED;
1205
1206 /* Attach to new skbuff, and increment count */
1207 nskb->nfct = &ct->ct_general;
1208 nskb->nfctinfo = ctinfo;
1209 nf_conntrack_get(nskb->nfct);
1210}
1211
9fb9cbb1 1212/* Bring out ya dead! */
df0933dc 1213static struct nf_conn *
400dad39 1214get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
9fb9cbb1
YK
1215 void *data, unsigned int *bucket)
1216{
df0933dc
PM
1217 struct nf_conntrack_tuple_hash *h;
1218 struct nf_conn *ct;
ea781f19 1219 struct hlist_nulls_node *n;
9fb9cbb1 1220
f8ba1aff 1221 spin_lock_bh(&nf_conntrack_lock);
d696c7bd 1222 for (; *bucket < net->ct.htable_size; (*bucket)++) {
ea781f19 1223 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
b0cdb1d9
PM
1224 if (NF_CT_DIRECTION(h) != IP_CT_DIR_ORIGINAL)
1225 continue;
df0933dc
PM
1226 ct = nf_ct_tuplehash_to_ctrack(h);
1227 if (iter(ct, data))
1228 goto found;
1229 }
601e68e1 1230 }
ea781f19 1231 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
df0933dc
PM
1232 ct = nf_ct_tuplehash_to_ctrack(h);
1233 if (iter(ct, data))
ec68e97d 1234 set_bit(IPS_DYING_BIT, &ct->status);
df0933dc 1235 }
f8ba1aff 1236 spin_unlock_bh(&nf_conntrack_lock);
df0933dc
PM
1237 return NULL;
1238found:
c073e3fa 1239 atomic_inc(&ct->ct_general.use);
f8ba1aff 1240 spin_unlock_bh(&nf_conntrack_lock);
df0933dc 1241 return ct;
9fb9cbb1
YK
1242}
1243
400dad39
AD
1244void nf_ct_iterate_cleanup(struct net *net,
1245 int (*iter)(struct nf_conn *i, void *data),
c655bc68 1246 void *data, u32 portid, int report)
9fb9cbb1 1247{
df0933dc 1248 struct nf_conn *ct;
9fb9cbb1
YK
1249 unsigned int bucket = 0;
1250
400dad39 1251 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
9fb9cbb1
YK
1252 /* Time to push up daises... */
1253 if (del_timer(&ct->timeout))
c655bc68 1254 nf_ct_delete(ct, portid, report);
02982c27 1255
9fb9cbb1
YK
1256 /* ... else the timer will get him soon. */
1257
1258 nf_ct_put(ct);
1259 }
1260}
13b18339 1261EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
9fb9cbb1 1262
274d383b
PNA
1263static int kill_all(struct nf_conn *i, void *data)
1264{
1265 return 1;
1266}
1267
d862a662 1268void nf_ct_free_hashtable(void *hash, unsigned int size)
9fb9cbb1 1269{
d862a662 1270 if (is_vmalloc_addr(hash))
9fb9cbb1
YK
1271 vfree(hash);
1272 else
601e68e1 1273 free_pages((unsigned long)hash,
f205c5e0 1274 get_order(sizeof(struct hlist_head) * size));
9fb9cbb1 1275}
ac565e5f 1276EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
9fb9cbb1 1277
ec464e5d 1278void nf_conntrack_flush_report(struct net *net, u32 portid, int report)
c1d10adb 1279{
c655bc68 1280 nf_ct_iterate_cleanup(net, kill_all, NULL, portid, report);
c1d10adb 1281}
274d383b 1282EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
c1d10adb 1283
ee254fa4 1284static void nf_ct_release_dying_list(struct net *net)
dd7669a9
PNA
1285{
1286 struct nf_conntrack_tuple_hash *h;
1287 struct nf_conn *ct;
1288 struct hlist_nulls_node *n;
1289
1290 spin_lock_bh(&nf_conntrack_lock);
ee254fa4 1291 hlist_nulls_for_each_entry(h, n, &net->ct.dying, hnnode) {
dd7669a9
PNA
1292 ct = nf_ct_tuplehash_to_ctrack(h);
1293 /* never fails to remove them, no listeners at this point */
1294 nf_ct_kill(ct);
1295 }
1296 spin_unlock_bh(&nf_conntrack_lock);
1297}
1298
b3c5163f
ED
1299static int untrack_refs(void)
1300{
1301 int cnt = 0, cpu;
1302
1303 for_each_possible_cpu(cpu) {
1304 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
1305
1306 cnt += atomic_read(&ct->ct_general.use) - 1;
1307 }
1308 return cnt;
1309}
1310
f94161c1 1311void nf_conntrack_cleanup_start(void)
9fb9cbb1 1312{
f94161c1
G
1313 RCU_INIT_POINTER(ip_ct_attach, NULL);
1314}
1315
1316void nf_conntrack_cleanup_end(void)
1317{
1318 RCU_INIT_POINTER(nf_ct_destroy, NULL);
b3c5163f 1319 while (untrack_refs() > 0)
9edd7ca0
PM
1320 schedule();
1321
5d0aa2cc
PM
1322#ifdef CONFIG_NF_CONNTRACK_ZONES
1323 nf_ct_extend_unregister(&nf_ct_zone_extend);
1324#endif
04d87001 1325 nf_conntrack_proto_fini();
41d73ec0 1326 nf_conntrack_seqadj_fini();
5f69b8f5 1327 nf_conntrack_labels_fini();
5e615b22 1328 nf_conntrack_helper_fini();
8684094c 1329 nf_conntrack_timeout_fini();
3fe0f943 1330 nf_conntrack_ecache_fini();
73f4001a 1331 nf_conntrack_tstamp_fini();
b7ff3a1f 1332 nf_conntrack_acct_fini();
83b4dbe1 1333 nf_conntrack_expect_fini();
08f6547d 1334}
9fb9cbb1 1335
f94161c1
G
1336/*
1337 * Mishearing the voices in his head, our hero wonders how he's
1338 * supposed to kill the mall.
1339 */
1340void nf_conntrack_cleanup_net(struct net *net)
08f6547d 1341{
dece40e8
VD
1342 LIST_HEAD(single);
1343
1344 list_add(&net->exit_list, &single);
1345 nf_conntrack_cleanup_net_list(&single);
1346}
1347
1348void nf_conntrack_cleanup_net_list(struct list_head *net_exit_list)
1349{
1350 int busy;
1351 struct net *net;
1352
f94161c1
G
1353 /*
1354 * This makes sure all current packets have passed through
1355 * netfilter framework. Roll on, two-stage module
1356 * delete...
1357 */
1358 synchronize_net();
dece40e8
VD
1359i_see_dead_people:
1360 busy = 0;
1361 list_for_each_entry(net, net_exit_list, exit_list) {
c655bc68 1362 nf_ct_iterate_cleanup(net, kill_all, NULL, 0, 0);
dece40e8
VD
1363 nf_ct_release_dying_list(net);
1364 if (atomic_read(&net->ct.count) != 0)
1365 busy = 1;
1366 }
1367 if (busy) {
9fb9cbb1
YK
1368 schedule();
1369 goto i_see_dead_people;
1370 }
1371
dece40e8
VD
1372 list_for_each_entry(net, net_exit_list, exit_list) {
1373 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
1374 nf_conntrack_proto_pernet_fini(net);
1375 nf_conntrack_helper_pernet_fini(net);
1376 nf_conntrack_ecache_pernet_fini(net);
1377 nf_conntrack_tstamp_pernet_fini(net);
1378 nf_conntrack_acct_pernet_fini(net);
1379 nf_conntrack_expect_pernet_fini(net);
1380 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1381 kfree(net->ct.slabname);
1382 free_percpu(net->ct.stat);
1383 }
08f6547d
AD
1384}
1385
d862a662 1386void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls)
9fb9cbb1 1387{
ea781f19
ED
1388 struct hlist_nulls_head *hash;
1389 unsigned int nr_slots, i;
1390 size_t sz;
9fb9cbb1 1391
ea781f19
ED
1392 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1393 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1394 sz = nr_slots * sizeof(struct hlist_nulls_head);
1395 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1396 get_order(sz));
601e68e1 1397 if (!hash) {
9fb9cbb1 1398 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
966567b7 1399 hash = vzalloc(sz);
9fb9cbb1
YK
1400 }
1401
ea781f19
ED
1402 if (hash && nulls)
1403 for (i = 0; i < nr_slots; i++)
1404 INIT_HLIST_NULLS_HEAD(&hash[i], i);
9fb9cbb1
YK
1405
1406 return hash;
1407}
ac565e5f 1408EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
9fb9cbb1 1409
fae718dd 1410int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
9fb9cbb1 1411{
4b5511eb 1412 int i, bucket, rc;
96eb24d7 1413 unsigned int hashsize, old_size;
ea781f19 1414 struct hlist_nulls_head *hash, *old_hash;
9fb9cbb1 1415 struct nf_conntrack_tuple_hash *h;
5d0aa2cc 1416 struct nf_conn *ct;
9fb9cbb1 1417
d696c7bd
PM
1418 if (current->nsproxy->net_ns != &init_net)
1419 return -EOPNOTSUPP;
1420
9fb9cbb1
YK
1421 /* On boot, we can set this without any fancy locking. */
1422 if (!nf_conntrack_htable_size)
1423 return param_set_uint(val, kp);
1424
4b5511eb
AP
1425 rc = kstrtouint(val, 0, &hashsize);
1426 if (rc)
1427 return rc;
9fb9cbb1
YK
1428 if (!hashsize)
1429 return -EINVAL;
1430
d862a662 1431 hash = nf_ct_alloc_hashtable(&hashsize, 1);
9fb9cbb1
YK
1432 if (!hash)
1433 return -ENOMEM;
1434
76507f69
PM
1435 /* Lookups in the old hash might happen in parallel, which means we
1436 * might get false negatives during connection lookup. New connections
1437 * created because of a false negative won't make it into the hash
1438 * though since that required taking the lock.
1439 */
f8ba1aff 1440 spin_lock_bh(&nf_conntrack_lock);
d696c7bd 1441 for (i = 0; i < init_net.ct.htable_size; i++) {
ea781f19
ED
1442 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1443 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1444 struct nf_conntrack_tuple_hash, hnnode);
5d0aa2cc 1445 ct = nf_ct_tuplehash_to_ctrack(h);
ea781f19 1446 hlist_nulls_del_rcu(&h->hnnode);
5d0aa2cc 1447 bucket = __hash_conntrack(&h->tuple, nf_ct_zone(ct),
99f07e91 1448 hashsize);
ea781f19 1449 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
9fb9cbb1
YK
1450 }
1451 }
d696c7bd 1452 old_size = init_net.ct.htable_size;
400dad39 1453 old_hash = init_net.ct.hash;
9fb9cbb1 1454
d696c7bd 1455 init_net.ct.htable_size = nf_conntrack_htable_size = hashsize;
400dad39 1456 init_net.ct.hash = hash;
f8ba1aff 1457 spin_unlock_bh(&nf_conntrack_lock);
9fb9cbb1 1458
d862a662 1459 nf_ct_free_hashtable(old_hash, old_size);
9fb9cbb1
YK
1460 return 0;
1461}
fae718dd 1462EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
9fb9cbb1 1463
fae718dd 1464module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
9fb9cbb1
YK
1465 &nf_conntrack_htable_size, 0600);
1466
5bfddbd4
ED
1467void nf_ct_untracked_status_or(unsigned long bits)
1468{
b3c5163f
ED
1469 int cpu;
1470
1471 for_each_possible_cpu(cpu)
1472 per_cpu(nf_conntrack_untracked, cpu).status |= bits;
5bfddbd4
ED
1473}
1474EXPORT_SYMBOL_GPL(nf_ct_untracked_status_or);
1475
f94161c1 1476int nf_conntrack_init_start(void)
9fb9cbb1 1477{
f205c5e0 1478 int max_factor = 8;
b3c5163f 1479 int ret, cpu;
9fb9cbb1
YK
1480
1481 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
f205c5e0 1482 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
9fb9cbb1
YK
1483 if (!nf_conntrack_htable_size) {
1484 nf_conntrack_htable_size
4481374c 1485 = (((totalram_pages << PAGE_SHIFT) / 16384)
f205c5e0 1486 / sizeof(struct hlist_head));
4481374c 1487 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
f205c5e0
PM
1488 nf_conntrack_htable_size = 16384;
1489 if (nf_conntrack_htable_size < 32)
1490 nf_conntrack_htable_size = 32;
1491
1492 /* Use a max. factor of four by default to get the same max as
1493 * with the old struct list_heads. When a table size is given
1494 * we use the old value of 8 to avoid reducing the max.
1495 * entries. */
1496 max_factor = 4;
9fb9cbb1 1497 }
f205c5e0 1498 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
8e5105a0 1499
654d0fbd 1500 printk(KERN_INFO "nf_conntrack version %s (%u buckets, %d max)\n",
8e5105a0
PM
1501 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1502 nf_conntrack_max);
83b4dbe1
G
1503
1504 ret = nf_conntrack_expect_init();
1505 if (ret < 0)
1506 goto err_expect;
1507
b7ff3a1f
G
1508 ret = nf_conntrack_acct_init();
1509 if (ret < 0)
1510 goto err_acct;
1511
73f4001a
G
1512 ret = nf_conntrack_tstamp_init();
1513 if (ret < 0)
1514 goto err_tstamp;
1515
3fe0f943
G
1516 ret = nf_conntrack_ecache_init();
1517 if (ret < 0)
1518 goto err_ecache;
1519
8684094c
G
1520 ret = nf_conntrack_timeout_init();
1521 if (ret < 0)
1522 goto err_timeout;
1523
5e615b22
G
1524 ret = nf_conntrack_helper_init();
1525 if (ret < 0)
1526 goto err_helper;
1527
5f69b8f5
G
1528 ret = nf_conntrack_labels_init();
1529 if (ret < 0)
1530 goto err_labels;
1531
41d73ec0
PM
1532 ret = nf_conntrack_seqadj_init();
1533 if (ret < 0)
1534 goto err_seqadj;
1535
5d0aa2cc
PM
1536#ifdef CONFIG_NF_CONNTRACK_ZONES
1537 ret = nf_ct_extend_register(&nf_ct_zone_extend);
1538 if (ret < 0)
1539 goto err_extend;
1540#endif
04d87001
G
1541 ret = nf_conntrack_proto_init();
1542 if (ret < 0)
1543 goto err_proto;
1544
9edd7ca0 1545 /* Set up fake conntrack: to never be deleted, not in any hashes */
b3c5163f
ED
1546 for_each_possible_cpu(cpu) {
1547 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
b3c5163f
ED
1548 write_pnet(&ct->ct_net, &init_net);
1549 atomic_set(&ct->ct_general.use, 1);
1550 }
9edd7ca0 1551 /* - and look it like as a confirmed connection */
5bfddbd4 1552 nf_ct_untracked_status_or(IPS_CONFIRMED | IPS_UNTRACKED);
08f6547d
AD
1553 return 0;
1554
04d87001 1555err_proto:
5d0aa2cc 1556#ifdef CONFIG_NF_CONNTRACK_ZONES
04d87001 1557 nf_ct_extend_unregister(&nf_ct_zone_extend);
5d0aa2cc 1558err_extend:
a9006892 1559#endif
41d73ec0
PM
1560 nf_conntrack_seqadj_fini();
1561err_seqadj:
04d87001 1562 nf_conntrack_labels_fini();
5f69b8f5
G
1563err_labels:
1564 nf_conntrack_helper_fini();
5e615b22
G
1565err_helper:
1566 nf_conntrack_timeout_fini();
8684094c
G
1567err_timeout:
1568 nf_conntrack_ecache_fini();
3fe0f943
G
1569err_ecache:
1570 nf_conntrack_tstamp_fini();
73f4001a
G
1571err_tstamp:
1572 nf_conntrack_acct_fini();
b7ff3a1f
G
1573err_acct:
1574 nf_conntrack_expect_fini();
83b4dbe1 1575err_expect:
08f6547d
AD
1576 return ret;
1577}
1578
f94161c1
G
1579void nf_conntrack_init_end(void)
1580{
1581 /* For use by REJECT target */
1582 RCU_INIT_POINTER(ip_ct_attach, nf_conntrack_attach);
1583 RCU_INIT_POINTER(nf_ct_destroy, destroy_conntrack);
f94161c1
G
1584}
1585
8cc20198
ED
1586/*
1587 * We need to use special "null" values, not used in hash table
1588 */
1589#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1590#define DYING_NULLS_VAL ((1<<30)+1)
252b3e8c 1591#define TEMPLATE_NULLS_VAL ((1<<30)+2)
8cc20198 1592
f94161c1 1593int nf_conntrack_init_net(struct net *net)
08f6547d
AD
1594{
1595 int ret;
ceceae1b 1596
08f6547d 1597 atomic_set(&net->ct.count, 0);
8cc20198
ED
1598 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, UNCONFIRMED_NULLS_VAL);
1599 INIT_HLIST_NULLS_HEAD(&net->ct.dying, DYING_NULLS_VAL);
252b3e8c 1600 INIT_HLIST_NULLS_HEAD(&net->ct.tmpl, TEMPLATE_NULLS_VAL);
08f6547d
AD
1601 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1602 if (!net->ct.stat) {
1603 ret = -ENOMEM;
1604 goto err_stat;
1605 }
5b3501fa
ED
1606
1607 net->ct.slabname = kasprintf(GFP_KERNEL, "nf_conntrack_%p", net);
1608 if (!net->ct.slabname) {
1609 ret = -ENOMEM;
1610 goto err_slabname;
1611 }
1612
1613 net->ct.nf_conntrack_cachep = kmem_cache_create(net->ct.slabname,
1614 sizeof(struct nf_conn), 0,
1615 SLAB_DESTROY_BY_RCU, NULL);
1616 if (!net->ct.nf_conntrack_cachep) {
1617 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1618 ret = -ENOMEM;
1619 goto err_cache;
1620 }
d696c7bd
PM
1621
1622 net->ct.htable_size = nf_conntrack_htable_size;
d862a662 1623 net->ct.hash = nf_ct_alloc_hashtable(&net->ct.htable_size, 1);
08f6547d
AD
1624 if (!net->ct.hash) {
1625 ret = -ENOMEM;
1626 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1627 goto err_hash;
1628 }
83b4dbe1 1629 ret = nf_conntrack_expect_pernet_init(net);
08f6547d
AD
1630 if (ret < 0)
1631 goto err_expect;
b7ff3a1f 1632 ret = nf_conntrack_acct_pernet_init(net);
58401572 1633 if (ret < 0)
08f6547d 1634 goto err_acct;
73f4001a 1635 ret = nf_conntrack_tstamp_pernet_init(net);
a992ca2a
PNA
1636 if (ret < 0)
1637 goto err_tstamp;
3fe0f943 1638 ret = nf_conntrack_ecache_pernet_init(net);
a0891aa6
PNA
1639 if (ret < 0)
1640 goto err_ecache;
5e615b22 1641 ret = nf_conntrack_helper_pernet_init(net);
a9006892
EL
1642 if (ret < 0)
1643 goto err_helper;
04d87001 1644 ret = nf_conntrack_proto_pernet_init(net);
f94161c1
G
1645 if (ret < 0)
1646 goto err_proto;
08f6547d 1647 return 0;
c539f017 1648
f94161c1 1649err_proto:
5e615b22 1650 nf_conntrack_helper_pernet_fini(net);
a9006892 1651err_helper:
3fe0f943 1652 nf_conntrack_ecache_pernet_fini(net);
a0891aa6 1653err_ecache:
73f4001a 1654 nf_conntrack_tstamp_pernet_fini(net);
a992ca2a 1655err_tstamp:
b7ff3a1f 1656 nf_conntrack_acct_pernet_fini(net);
08f6547d 1657err_acct:
83b4dbe1 1658 nf_conntrack_expect_pernet_fini(net);
08f6547d 1659err_expect:
d862a662 1660 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
6058fa6b 1661err_hash:
5b3501fa
ED
1662 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1663err_cache:
1664 kfree(net->ct.slabname);
1665err_slabname:
0d55af87
AD
1666 free_percpu(net->ct.stat);
1667err_stat:
08f6547d
AD
1668 return ret;
1669}
This page took 0.858554 seconds and 5 git commands to generate.