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