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