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