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