blob: 5016a6929085ebdbf151a1f47582d36195885540 [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001/* 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
Harald Weltedc808fe2006-03-20 17:56:32 -08006 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08007 * (C) 2003,2004 USAGI/WIDE Project <http://www.linux-ipv6.org>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02008 * (C) 2005-2012 Patrick McHardy <kaber@trash.net>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08009 *
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.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080013 */
14
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080015#include <linux/types.h>
16#include <linux/netfilter.h>
17#include <linux/module.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040018#include <linux/sched.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080019#include <linux/skbuff.h>
20#include <linux/proc_fs.h>
21#include <linux/vmalloc.h>
22#include <linux/stddef.h>
23#include <linux/slab.h>
24#include <linux/random.h>
25#include <linux/jhash.h>
26#include <linux/err.h>
27#include <linux/percpu.h>
28#include <linux/moduleparam.h>
29#include <linux/notifier.h>
30#include <linux/kernel.h>
31#include <linux/netdevice.h>
32#include <linux/socket.h>
Al Virod7fe0f22006-12-03 23:15:30 -050033#include <linux/mm.h>
Patrick McHardyd696c7b2010-02-08 11:18:07 -080034#include <linux/nsproxy.h>
Eric Dumazetea781f12009-03-25 21:05:46 +010035#include <linux/rculist_nulls.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080036
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080037#include <net/netfilter/nf_conntrack.h>
38#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010039#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010040#include <net/netfilter/nf_conntrack_expect.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080041#include <net/netfilter/nf_conntrack_helper.h>
Patrick McHardy41d73ec2013-08-27 08:50:12 +020042#include <net/netfilter/nf_conntrack_seqadj.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080043#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070044#include <net/netfilter/nf_conntrack_extend.h>
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -070045#include <net/netfilter/nf_conntrack_acct.h>
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020046#include <net/netfilter/nf_conntrack_ecache.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010047#include <net/netfilter/nf_conntrack_zones.h>
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +010048#include <net/netfilter/nf_conntrack_timestamp.h>
Pablo Neira Ayusodd705072012-02-28 23:36:48 +010049#include <net/netfilter/nf_conntrack_timeout.h>
Florian Westphalc539f012013-01-11 06:30:44 +000050#include <net/netfilter/nf_conntrack_labels.h>
Patrick McHardy48b1de42013-08-27 08:50:14 +020051#include <net/netfilter/nf_conntrack_synproxy.h>
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070052#include <net/netfilter/nf_nat.h>
Patrick McHardye17b6662008-11-18 12:24:17 +010053#include <net/netfilter/nf_nat_core.h>
stephen hemminger49376362013-03-16 07:00:28 +000054#include <net/netfilter/nf_nat_helper.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080055
Harald Weltedc808fe2006-03-20 17:56:32 -080056#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080057
Patrick McHardye17b6662008-11-18 12:24:17 +010058int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
59 enum nf_nat_manip_type manip,
Patrick McHardy39938322009-08-25 16:07:58 +020060 const struct nlattr *attr) __read_mostly;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070061EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
62
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +010063__cacheline_aligned_in_smp spinlock_t nf_conntrack_locks[CONNTRACK_LOCKS];
64EXPORT_SYMBOL_GPL(nf_conntrack_locks);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080065
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +010066__cacheline_aligned_in_smp DEFINE_SPINLOCK(nf_conntrack_expect_lock);
67EXPORT_SYMBOL_GPL(nf_conntrack_expect_lock);
68
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +010069static void nf_conntrack_double_unlock(unsigned int h1, unsigned int h2)
70{
71 h1 %= CONNTRACK_LOCKS;
72 h2 %= CONNTRACK_LOCKS;
73 spin_unlock(&nf_conntrack_locks[h1]);
74 if (h1 != h2)
75 spin_unlock(&nf_conntrack_locks[h2]);
76}
77
78/* return true if we need to recompute hashes (in case hash table was resized) */
79static bool nf_conntrack_double_lock(struct net *net, unsigned int h1,
80 unsigned int h2, unsigned int sequence)
81{
82 h1 %= CONNTRACK_LOCKS;
83 h2 %= CONNTRACK_LOCKS;
84 if (h1 <= h2) {
85 spin_lock(&nf_conntrack_locks[h1]);
86 if (h1 != h2)
87 spin_lock_nested(&nf_conntrack_locks[h2],
88 SINGLE_DEPTH_NESTING);
89 } else {
90 spin_lock(&nf_conntrack_locks[h2]);
91 spin_lock_nested(&nf_conntrack_locks[h1],
92 SINGLE_DEPTH_NESTING);
93 }
94 if (read_seqcount_retry(&net->ct.generation, sequence)) {
95 nf_conntrack_double_unlock(h1, h2);
96 return true;
97 }
98 return false;
99}
100
101static void nf_conntrack_all_lock(void)
102{
103 int i;
104
105 for (i = 0; i < CONNTRACK_LOCKS; i++)
106 spin_lock_nested(&nf_conntrack_locks[i], i);
107}
108
109static void nf_conntrack_all_unlock(void)
110{
111 int i;
112
113 for (i = 0; i < CONNTRACK_LOCKS; i++)
114 spin_unlock(&nf_conntrack_locks[i]);
115}
116
Martin Josefssone2b76062006-11-29 02:35:04 +0100117unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -0800118EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
119
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +0100120unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +0100121EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -0800122
Eric Dumazetb3c51632010-06-09 14:43:38 +0200123DEFINE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
124EXPORT_PER_CPU_SYMBOL(nf_conntrack_untracked);
Patrick McHardy13b18332006-12-02 22:11:25 -0800125
Changli Gaof682cef2011-01-05 04:23:23 +0000126unsigned int nf_conntrack_hash_rnd __read_mostly;
Patrick McHardy4d4e61c2011-12-23 14:00:13 +0100127EXPORT_SYMBOL_GPL(nf_conntrack_hash_rnd);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800128
Changli Gao99f07e92010-09-21 17:49:20 +0200129static u32 hash_conntrack_raw(const struct nf_conntrack_tuple *tuple, u16 zone)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800130{
Patrick McHardy07949352008-01-31 04:40:52 -0800131 unsigned int n;
Sami Farin9b887902007-03-14 16:43:00 -0700132
Patrick McHardy07949352008-01-31 04:40:52 -0800133 /* The direction must be ignored, so we hash everything up to the
134 * destination ports (which is a multiple of 4) and treat the last
135 * three bytes manually.
136 */
137 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
Changli Gao99f07e92010-09-21 17:49:20 +0200138 return jhash2((u32 *)tuple, n, zone ^ nf_conntrack_hash_rnd ^
139 (((__force __u16)tuple->dst.u.all << 16) |
140 tuple->dst.protonum));
141}
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800142
Changli Gao99f07e92010-09-21 17:49:20 +0200143static u32 __hash_bucket(u32 hash, unsigned int size)
144{
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200145 return reciprocal_scale(hash, size);
Changli Gao99f07e92010-09-21 17:49:20 +0200146}
147
148static u32 hash_bucket(u32 hash, const struct net *net)
149{
150 return __hash_bucket(hash, net->ct.htable_size);
151}
152
153static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
154 u16 zone, unsigned int size)
155{
156 return __hash_bucket(hash_conntrack_raw(tuple, zone), size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800157}
158
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100159static inline u_int32_t hash_conntrack(const struct net *net, u16 zone,
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800160 const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800161{
Changli Gao99f07e92010-09-21 17:49:20 +0200162 return __hash_conntrack(tuple, zone, net->ct.htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800163}
164
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200165bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800166nf_ct_get_tuple(const struct sk_buff *skb,
167 unsigned int nhoff,
168 unsigned int dataoff,
169 u_int16_t l3num,
170 u_int8_t protonum,
171 struct nf_conntrack_tuple *tuple,
172 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100173 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800174{
Philip Craig443a70d2008-04-29 03:35:10 -0700175 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800176
177 tuple->src.l3num = l3num;
178 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200179 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800180
181 tuple->dst.protonum = protonum;
182 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
183
Martin Josefsson605dcad2006-11-29 02:35:06 +0100184 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800185}
Patrick McHardy13b18332006-12-02 22:11:25 -0800186EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800187
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200188bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
189 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700190{
191 struct nf_conntrack_l3proto *l3proto;
192 struct nf_conntrack_l4proto *l4proto;
193 unsigned int protoff;
194 u_int8_t protonum;
195 int ret;
196
197 rcu_read_lock();
198
199 l3proto = __nf_ct_l3proto_find(l3num);
200 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
201 if (ret != NF_ACCEPT) {
202 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200203 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700204 }
205
206 l4proto = __nf_ct_l4proto_find(l3num, protonum);
207
208 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
209 l3proto, l4proto);
210
211 rcu_read_unlock();
212 return ret;
213}
214EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
215
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200216bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800217nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
218 const struct nf_conntrack_tuple *orig,
219 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100220 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800221{
Philip Craig443a70d2008-04-29 03:35:10 -0700222 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800223
224 inverse->src.l3num = orig->src.l3num;
225 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200226 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800227
228 inverse->dst.dir = !orig->dst.dir;
229
230 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100231 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800232}
Patrick McHardy13b18332006-12-02 22:11:25 -0800233EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800234
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800235static void
236clean_from_lists(struct nf_conn *ct)
237{
Patrick McHardy0d537782007-07-07 22:39:38 -0700238 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100239 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
240 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800241
242 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800243 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800244}
245
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100246/* must be called with local_bh_disable */
247static void nf_ct_add_to_dying_list(struct nf_conn *ct)
248{
249 struct ct_pcpu *pcpu;
250
251 /* add this conntrack to the (per cpu) dying list */
252 ct->cpu = smp_processor_id();
253 pcpu = per_cpu_ptr(nf_ct_net(ct)->ct.pcpu_lists, ct->cpu);
254
255 spin_lock(&pcpu->lock);
256 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
257 &pcpu->dying);
258 spin_unlock(&pcpu->lock);
259}
260
261/* must be called with local_bh_disable */
262static void nf_ct_add_to_unconfirmed_list(struct nf_conn *ct)
263{
264 struct ct_pcpu *pcpu;
265
266 /* add this conntrack to the (per cpu) unconfirmed list */
267 ct->cpu = smp_processor_id();
268 pcpu = per_cpu_ptr(nf_ct_net(ct)->ct.pcpu_lists, ct->cpu);
269
270 spin_lock(&pcpu->lock);
271 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
272 &pcpu->unconfirmed);
273 spin_unlock(&pcpu->lock);
274}
275
276/* must be called with local_bh_disable */
277static void nf_ct_del_from_dying_or_unconfirmed_list(struct nf_conn *ct)
278{
279 struct ct_pcpu *pcpu;
280
281 /* We overload first tuple to link into unconfirmed or dying list.*/
282 pcpu = per_cpu_ptr(nf_ct_net(ct)->ct.pcpu_lists, ct->cpu);
283
284 spin_lock(&pcpu->lock);
285 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
286 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
287 spin_unlock(&pcpu->lock);
288}
289
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800290static void
291destroy_conntrack(struct nf_conntrack *nfct)
292{
293 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200294 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100295 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800296
Patrick McHardy0d537782007-07-07 22:39:38 -0700297 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800298 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
299 NF_CT_ASSERT(!timer_pending(&ct->timeout));
300
Patrick McHardy923f4902007-02-12 11:12:57 -0800301 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200302 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100303 if (l4proto && l4proto->destroy)
304 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800305
Patrick McHardy982d9a92007-02-12 11:14:11 -0800306 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800307
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100308 local_bh_disable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800309 /* Expectations will have been removed in clean_from_lists,
310 * except TFTP can create an expectation on the first packet,
311 * before connection is in the list, so we need to clean here,
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100312 * too.
313 */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800314 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800315
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100316 nf_ct_del_from_dying_or_unconfirmed_list(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800317
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200318 NF_CT_STAT_INC(net, delete);
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100319 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800320
321 if (ct->master)
322 nf_ct_put(ct->master);
323
Patrick McHardy0d537782007-07-07 22:39:38 -0700324 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800325 nf_conntrack_free(ct);
326}
327
Florian Westphal02982c22013-07-29 15:41:54 +0200328static void nf_ct_delete_from_lists(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800329{
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200330 struct net *net = nf_ct_net(ct);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100331 unsigned int hash, reply_hash;
332 u16 zone = nf_ct_zone(ct);
333 unsigned int sequence;
Patrick McHardy5397e972007-05-19 14:23:52 -0700334
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200335 nf_ct_helper_destroy(ct);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100336
337 local_bh_disable();
338 do {
339 sequence = read_seqcount_begin(&net->ct.generation);
340 hash = hash_conntrack(net, zone,
341 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
342 reply_hash = hash_conntrack(net, zone,
343 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
344 } while (nf_conntrack_double_lock(net, hash, reply_hash, sequence));
345
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800346 clean_from_lists(ct);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100347 nf_conntrack_double_unlock(hash, reply_hash);
348
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100349 nf_ct_add_to_dying_list(ct);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100350
351 NF_CT_STAT_INC(net, delete_list);
352 local_bh_enable();
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200353}
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200354
Florian Westphal02982c22013-07-29 15:41:54 +0200355bool nf_ct_delete(struct nf_conn *ct, u32 portid, int report)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200356{
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100357 struct nf_conn_tstamp *tstamp;
358
359 tstamp = nf_conn_tstamp_find(ct);
360 if (tstamp && tstamp->stop == 0)
Eric Dumazetd2de8752014-08-22 18:32:09 -0700361 tstamp->stop = ktime_get_real_ns();
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200362
Florian Westphal95005072014-06-10 23:12:56 +0200363 if (nf_ct_is_dying(ct))
364 goto delete;
365
366 if (nf_conntrack_event_report(IPCT_DESTROY, ct,
367 portid, report) < 0) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200368 /* destroy event was not delivered */
369 nf_ct_delete_from_lists(ct);
Florian Westphal95005072014-06-10 23:12:56 +0200370 nf_conntrack_ecache_delayed_work(nf_ct_net(ct));
Florian Westphal02982c22013-07-29 15:41:54 +0200371 return false;
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200372 }
Florian Westphal95005072014-06-10 23:12:56 +0200373
374 nf_conntrack_ecache_work(nf_ct_net(ct));
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200375 set_bit(IPS_DYING_BIT, &ct->status);
Florian Westphal95005072014-06-10 23:12:56 +0200376 delete:
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200377 nf_ct_delete_from_lists(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800378 nf_ct_put(ct);
Florian Westphal02982c22013-07-29 15:41:54 +0200379 return true;
380}
381EXPORT_SYMBOL_GPL(nf_ct_delete);
382
383static void death_by_timeout(unsigned long ul_conntrack)
384{
385 nf_ct_delete((struct nf_conn *)ul_conntrack, 0, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800386}
387
Andrey Vaginc6825c02014-01-29 19:34:14 +0100388static inline bool
389nf_ct_key_equal(struct nf_conntrack_tuple_hash *h,
390 const struct nf_conntrack_tuple *tuple,
391 u16 zone)
392{
393 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
394
395 /* A conntrack can be recreated with the equal tuple,
396 * so we need to check that the conntrack is confirmed
397 */
398 return nf_ct_tuple_equal(tuple, &h->tuple) &&
399 nf_ct_zone(ct) == zone &&
400 nf_ct_is_confirmed(ct);
401}
402
Eric Dumazetea781f12009-03-25 21:05:46 +0100403/*
404 * Warning :
405 * - Caller must take a reference on returned object
406 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
Eric Dumazetea781f12009-03-25 21:05:46 +0100407 */
Changli Gao99f07e92010-09-21 17:49:20 +0200408static struct nf_conntrack_tuple_hash *
409____nf_conntrack_find(struct net *net, u16 zone,
410 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800411{
412 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100413 struct hlist_nulls_node *n;
Changli Gao99f07e92010-09-21 17:49:20 +0200414 unsigned int bucket = hash_bucket(hash, net);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800415
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800416 /* Disable BHs the entire time since we normally need to disable them
417 * at least once for the stats anyway.
418 */
419 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100420begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200421 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[bucket], hnnode) {
Andrey Vaginc6825c02014-01-29 19:34:14 +0100422 if (nf_ct_key_equal(h, tuple, zone)) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200423 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800424 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800425 return h;
426 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200427 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800428 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100429 /*
430 * if the nulls value we got at the end of this lookup is
431 * not the expected one, we must restart lookup.
432 * We probably met an item that was moved to another chain.
433 */
Changli Gao99f07e92010-09-21 17:49:20 +0200434 if (get_nulls_value(n) != bucket) {
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200435 NF_CT_STAT_INC(net, search_restart);
Eric Dumazetea781f12009-03-25 21:05:46 +0100436 goto begin;
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200437 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800438 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800439
440 return NULL;
441}
Changli Gao99f07e92010-09-21 17:49:20 +0200442
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800443/* Find a connection corresponding to a tuple. */
Changli Gao99f07e92010-09-21 17:49:20 +0200444static struct nf_conntrack_tuple_hash *
445__nf_conntrack_find_get(struct net *net, u16 zone,
446 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800447{
448 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800449 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800450
Patrick McHardy76507f62008-01-31 04:38:38 -0800451 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100452begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200453 h = ____nf_conntrack_find(net, zone, tuple, hash);
Patrick McHardy76507f62008-01-31 04:38:38 -0800454 if (h) {
455 ct = nf_ct_tuplehash_to_ctrack(h);
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200456 if (unlikely(nf_ct_is_dying(ct) ||
457 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800458 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100459 else {
Andrey Vaginc6825c02014-01-29 19:34:14 +0100460 if (unlikely(!nf_ct_key_equal(h, tuple, zone))) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100461 nf_ct_put(ct);
462 goto begin;
463 }
464 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800465 }
466 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800467
468 return h;
469}
Changli Gao99f07e92010-09-21 17:49:20 +0200470
471struct nf_conntrack_tuple_hash *
472nf_conntrack_find_get(struct net *net, u16 zone,
473 const struct nf_conntrack_tuple *tuple)
474{
475 return __nf_conntrack_find_get(net, zone, tuple,
476 hash_conntrack_raw(tuple, zone));
477}
Patrick McHardy13b18332006-12-02 22:11:25 -0800478EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800479
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800480static void __nf_conntrack_hash_insert(struct nf_conn *ct,
481 unsigned int hash,
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100482 unsigned int reply_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800483{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200484 struct net *net = nf_ct_net(ct);
485
Eric Dumazetea781f12009-03-25 21:05:46 +0100486 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200487 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100488 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100489 &net->ct.hash[reply_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800490}
491
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100492int
493nf_conntrack_hash_check_insert(struct nf_conn *ct)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800494{
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800495 struct net *net = nf_ct_net(ct);
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100496 unsigned int hash, reply_hash;
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100497 struct nf_conntrack_tuple_hash *h;
498 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100499 u16 zone;
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100500 unsigned int sequence;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800501
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100502 zone = nf_ct_zone(ct);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800503
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100504 local_bh_disable();
505 do {
506 sequence = read_seqcount_begin(&net->ct.generation);
507 hash = hash_conntrack(net, zone,
508 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
509 reply_hash = hash_conntrack(net, zone,
510 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
511 } while (nf_conntrack_double_lock(net, hash, reply_hash, sequence));
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100512
513 /* See if there's one in the list already, including reverse */
514 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
515 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
516 &h->tuple) &&
517 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
518 goto out;
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100519 hlist_nulls_for_each_entry(h, n, &net->ct.hash[reply_hash], hnnode)
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100520 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
521 &h->tuple) &&
522 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
523 goto out;
524
525 add_timer(&ct->timeout);
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100526 smp_wmb();
527 /* The caller holds a reference to this object */
528 atomic_set(&ct->ct_general.use, 2);
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100529 __nf_conntrack_hash_insert(ct, hash, reply_hash);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100530 nf_conntrack_double_unlock(hash, reply_hash);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100531 NF_CT_STAT_INC(net, insert);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100532 local_bh_enable();
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100533 return 0;
534
535out:
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100536 nf_conntrack_double_unlock(hash, reply_hash);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100537 NF_CT_STAT_INC(net, insert_failed);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100538 local_bh_enable();
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100539 return -EEXIST;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800540}
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100541EXPORT_SYMBOL_GPL(nf_conntrack_hash_check_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800542
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100543/* deletion from this larval template list happens via nf_ct_put() */
544void nf_conntrack_tmpl_insert(struct net *net, struct nf_conn *tmpl)
545{
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100546 struct ct_pcpu *pcpu;
547
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100548 __set_bit(IPS_TEMPLATE_BIT, &tmpl->status);
549 __set_bit(IPS_CONFIRMED_BIT, &tmpl->status);
550 nf_conntrack_get(&tmpl->ct_general);
551
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100552 /* add this conntrack to the (per cpu) tmpl list */
553 local_bh_disable();
554 tmpl->cpu = smp_processor_id();
555 pcpu = per_cpu_ptr(nf_ct_net(tmpl)->ct.pcpu_lists, tmpl->cpu);
556
557 spin_lock(&pcpu->lock);
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100558 /* Overload tuple linked list to put us in template list. */
559 hlist_nulls_add_head_rcu(&tmpl->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100560 &pcpu->tmpl);
561 spin_unlock_bh(&pcpu->lock);
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100562}
563EXPORT_SYMBOL_GPL(nf_conntrack_tmpl_insert);
564
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800565/* Confirm a connection given skb; places it in hash table */
566int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700567__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800568{
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100569 unsigned int hash, reply_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700570 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800571 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700572 struct nf_conn_help *help;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100573 struct nf_conn_tstamp *tstamp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100574 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800575 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200576 struct net *net;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100577 u16 zone;
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100578 unsigned int sequence;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800579
Herbert Xu3db05fe2007-10-15 00:53:15 -0700580 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200581 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800582
583 /* ipt_REJECT uses nf_conntrack_attach to attach related
584 ICMP/TCP RST packets in other direction. Actual packet
585 which created connection will be IP_CT_NEW or for an
586 expected connection, IP_CT_RELATED. */
587 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
588 return NF_ACCEPT;
589
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100590 zone = nf_ct_zone(ct);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100591 local_bh_disable();
592
593 do {
594 sequence = read_seqcount_begin(&net->ct.generation);
595 /* reuse the hash saved before */
596 hash = *(unsigned long *)&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev;
597 hash = hash_bucket(hash, net);
598 reply_hash = hash_conntrack(net, zone,
599 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
600
601 } while (nf_conntrack_double_lock(net, hash, reply_hash, sequence));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800602
603 /* We're not in hash table, and we refuse to set up related
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100604 * connections for unconfirmed conns. But packet copies and
605 * REJECT will give spurious warnings here.
606 */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800607 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
608
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300609 /* No external references means no one else could have
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100610 * confirmed us.
611 */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800612 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700613 pr_debug("Confirming conntrack %p\n", ct);
Joerg Marxfc350772010-05-20 15:55:30 +0200614 /* We have to check the DYING flag inside the lock to prevent
615 a race against nf_ct_get_next_corpse() possibly called from
616 user context, else we insert an already 'dead' hash, blocking
617 further use of that particular connection -JM */
618
619 if (unlikely(nf_ct_is_dying(ct))) {
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100620 nf_conntrack_double_unlock(hash, reply_hash);
621 local_bh_enable();
Joerg Marxfc350772010-05-20 15:55:30 +0200622 return NF_ACCEPT;
623 }
624
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800625 /* See if there's one in the list already, including reverse:
626 NAT could have grabbed it without realizing, since we're
627 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100628 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700629 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100630 &h->tuple) &&
631 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700632 goto out;
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100633 hlist_nulls_for_each_entry(h, n, &net->ct.hash[reply_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700634 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100635 &h->tuple) &&
636 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700637 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800638
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100639 nf_ct_del_from_dying_or_unconfirmed_list(ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700640
Patrick McHardydf0933d2006-09-20 11:57:53 -0700641 /* Timer relative to confirmation time, not original
642 setting time, otherwise we'd get timer wrap in
643 weird delay cases. */
644 ct->timeout.expires += jiffies;
645 add_timer(&ct->timeout);
646 atomic_inc(&ct->ct_general.use);
Changli Gao45eec342011-01-18 15:08:13 +0100647 ct->status |= IPS_CONFIRMED;
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200648
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100649 /* set conntrack timestamp, if enabled. */
650 tstamp = nf_conn_tstamp_find(ct);
651 if (tstamp) {
652 if (skb->tstamp.tv64 == 0)
Joe Perchese3192692012-06-03 17:41:40 +0000653 __net_timestamp(skb);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100654
655 tstamp->start = ktime_to_ns(skb->tstamp);
656 }
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200657 /* Since the lookup is lockless, hash insertion must be done after
658 * starting the timer and setting the CONFIRMED bit. The RCU barriers
659 * guarantee that no other CPU can find the conntrack before the above
660 * stores are visible.
661 */
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100662 __nf_conntrack_hash_insert(ct, hash, reply_hash);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100663 nf_conntrack_double_unlock(hash, reply_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200664 NF_CT_STAT_INC(net, insert);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100665 local_bh_enable();
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200666
Patrick McHardydf0933d2006-09-20 11:57:53 -0700667 help = nfct_help(ct);
668 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200669 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200670
Patrick McHardydf0933d2006-09-20 11:57:53 -0700671 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200672 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700673 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800674
Patrick McHardydf0933d2006-09-20 11:57:53 -0700675out:
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100676 nf_conntrack_double_unlock(hash, reply_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200677 NF_CT_STAT_INC(net, insert_failed);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100678 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800679 return NF_DROP;
680}
Patrick McHardy13b18332006-12-02 22:11:25 -0800681EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800682
683/* Returns true if a connection correspondings to the tuple (required
684 for NAT). */
685int
686nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
687 const struct nf_conn *ignored_conntrack)
688{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200689 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800690 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100691 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100692 struct nf_conn *ct;
693 u16 zone = nf_ct_zone(ignored_conntrack);
694 unsigned int hash = hash_conntrack(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800695
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800696 /* Disable BHs the entire time since we need to disable them at
697 * least once for the stats anyway.
698 */
699 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100700 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100701 ct = nf_ct_tuplehash_to_ctrack(h);
702 if (ct != ignored_conntrack &&
703 nf_ct_tuple_equal(tuple, &h->tuple) &&
704 nf_ct_zone(ct) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200705 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800706 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800707 return 1;
708 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200709 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800710 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800711 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800712
Patrick McHardyba419af2008-01-31 04:39:23 -0800713 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800714}
Patrick McHardy13b18332006-12-02 22:11:25 -0800715EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800716
Patrick McHardy7ae77302007-07-07 22:37:38 -0700717#define NF_CT_EVICTION_RANGE 8
718
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800719/* There's a small race here where we may free a just-assured
720 connection. Too bad: we're in trouble anyway. */
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100721static noinline int early_drop(struct net *net, unsigned int _hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800722{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700723 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800724 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700725 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100726 struct hlist_nulls_node *n;
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100727 unsigned int i = 0, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800728 int dropped = 0;
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100729 unsigned int hash, sequence;
730 spinlock_t *lockp;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800731
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100732 local_bh_disable();
733restart:
734 sequence = read_seqcount_begin(&net->ct.generation);
735 hash = hash_bucket(_hash, net);
736 for (; i < net->ct.htable_size; i++) {
737 lockp = &nf_conntrack_locks[hash % CONNTRACK_LOCKS];
738 spin_lock(lockp);
739 if (read_seqcount_retry(&net->ct.generation, sequence)) {
740 spin_unlock(lockp);
741 goto restart;
742 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100743 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
744 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700745 tmp = nf_ct_tuplehash_to_ctrack(h);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100746 if (!test_bit(IPS_ASSURED_BIT, &tmp->status) &&
747 !nf_ct_is_dying(tmp) &&
748 atomic_inc_not_zero(&tmp->ct_general.use)) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700749 ct = tmp;
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100750 break;
751 }
Patrick McHardy7ae77302007-07-07 22:37:38 -0700752 cnt++;
753 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800754
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100755 hash = (hash + 1) % net->ct.htable_size;
756 spin_unlock(lockp);
Changli Gao5ae27aa22009-11-05 14:51:31 +0100757
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100758 if (ct || cnt >= NF_CT_EVICTION_RANGE)
Patrick McHardy7ae77302007-07-07 22:37:38 -0700759 break;
Changli Gao5ae27aa22009-11-05 14:51:31 +0100760
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800761 }
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100762 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800763
764 if (!ct)
765 return dropped;
766
767 if (del_timer(&ct->timeout)) {
Florian Westphal02982c22013-07-29 15:41:54 +0200768 if (nf_ct_delete(ct, 0, 0)) {
Pablo Neira Ayuso741385112012-03-06 01:22:55 +0000769 dropped = 1;
770 NF_CT_STAT_INC_ATOMIC(net, early_drop);
771 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800772 }
773 nf_ct_put(ct);
774 return dropped;
775}
776
Changli Gaof682cef2011-01-05 04:23:23 +0000777void init_nf_conntrack_hash_rnd(void)
778{
779 unsigned int rand;
780
781 /*
782 * Why not initialize nf_conntrack_rnd in a "init()" function ?
783 * Because there isn't enough entropy when system initializing,
784 * and we initialize it as late as possible.
785 */
786 do {
787 get_random_bytes(&rand, sizeof(rand));
788 } while (!rand);
789 cmpxchg(&nf_conntrack_hash_rnd, 0, rand);
790}
791
Changli Gao99f07e92010-09-21 17:49:20 +0200792static struct nf_conn *
793__nf_conntrack_alloc(struct net *net, u16 zone,
794 const struct nf_conntrack_tuple *orig,
795 const struct nf_conntrack_tuple *repl,
796 gfp_t gfp, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800797{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000798 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800799
Changli Gaob2390962010-09-16 19:55:03 +0200800 if (unlikely(!nf_conntrack_hash_rnd)) {
Changli Gaof682cef2011-01-05 04:23:23 +0000801 init_nf_conntrack_hash_rnd();
Changli Gao99f07e92010-09-21 17:49:20 +0200802 /* recompute the hash as nf_conntrack_hash_rnd is initialized */
803 hash = hash_conntrack_raw(orig, zone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800804 }
805
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700806 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200807 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700808
Patrick McHardy76eb9462008-01-31 04:41:44 -0800809 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200810 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +0100811 if (!early_drop(net, hash)) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200812 atomic_dec(&net->ct.count);
Joe Perchese87cc472012-05-13 21:56:26 +0000813 net_warn_ratelimited("nf_conntrack: table full, dropping packet\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800814 return ERR_PTR(-ENOMEM);
815 }
816 }
817
Eric Dumazet941297f2009-07-16 14:03:40 +0200818 /*
819 * Do not use kmem_cache_zalloc(), as this cache uses
820 * SLAB_DESTROY_BY_RCU.
821 */
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800822 ct = kmem_cache_alloc(net->ct.nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800823 if (ct == NULL) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200824 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700825 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800826 }
Eric Dumazet941297f2009-07-16 14:03:40 +0200827 /*
828 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
829 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
830 */
831 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100832 offsetof(struct nf_conn, proto) -
833 offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
Patrick McHardy440f0d52009-06-10 14:32:47 +0200834 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800835 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
Eric Dumazet941297f2009-07-16 14:03:40 +0200836 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800837 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Changli Gao99f07e92010-09-21 17:49:20 +0200838 /* save hash for reusing when confirming */
839 *(unsigned long *)(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev) = hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800840 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800841 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000842 write_pnet(&ct->ct_net, net);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100843#ifdef CONFIG_NF_CONNTRACK_ZONES
844 if (zone) {
845 struct nf_conntrack_zone *nf_ct_zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800846
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100847 nf_ct_zone = nf_ct_ext_add(ct, NF_CT_EXT_ZONE, GFP_ATOMIC);
848 if (!nf_ct_zone)
849 goto out_free;
850 nf_ct_zone->id = zone;
851 }
852#endif
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100853 /* Because we use RCU lookups, we set ct_general.use to zero before
854 * this is inserted in any list.
Eric Dumazet941297f2009-07-16 14:03:40 +0200855 */
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100856 atomic_set(&ct->ct_general.use, 0);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800857 return ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100858
859#ifdef CONFIG_NF_CONNTRACK_ZONES
860out_free:
Pablo Neira Ayusod96fc652012-04-03 16:45:54 +0200861 atomic_dec(&net->ct.count);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100862 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
863 return ERR_PTR(-ENOMEM);
864#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800865}
Changli Gao99f07e92010-09-21 17:49:20 +0200866
867struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
868 const struct nf_conntrack_tuple *orig,
869 const struct nf_conntrack_tuple *repl,
870 gfp_t gfp)
871{
872 return __nf_conntrack_alloc(net, zone, orig, repl, gfp, 0);
873}
Patrick McHardy13b18332006-12-02 22:11:25 -0800874EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800875
Patrick McHardyc88130b2008-01-31 04:42:11 -0800876void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800877{
Eric Dumazet1d452092009-03-24 14:26:50 +0100878 struct net *net = nf_ct_net(ct);
879
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100880 /* A freed object has refcnt == 0, that's
881 * the golden rule for SLAB_DESTROY_BY_RCU
882 */
883 NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 0);
884
Patrick McHardyceeff752008-06-11 17:51:10 -0700885 nf_ct_ext_destroy(ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100886 nf_ct_ext_free(ct);
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800887 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100888 smp_mb__before_atomic();
Pablo Neira Ayuso0c3c6c02013-11-18 12:53:59 +0100889 atomic_dec(&net->ct.count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800890}
Patrick McHardy13b18332006-12-02 22:11:25 -0800891EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800892
Florian Westphalc539f012013-01-11 06:30:44 +0000893
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800894/* Allocate a new conntrack: we return -ENOMEM if classification
895 failed due to stress. Otherwise it really is unclassifiable. */
896static struct nf_conntrack_tuple_hash *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100897init_conntrack(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200898 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800899 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100900 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800901 struct sk_buff *skb,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100902 unsigned int dataoff, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800903{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800904 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700905 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800906 struct nf_conntrack_tuple repl_tuple;
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100907 struct nf_conntrack_ecache *ecache;
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100908 struct nf_conntrack_expect *exp = NULL;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100909 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100910 struct nf_conn_timeout *timeout_ext;
911 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800912
Martin Josefsson605dcad2006-11-29 02:35:06 +0100913 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700914 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800915 return NULL;
916 }
917
Changli Gao99f07e92010-09-21 17:49:20 +0200918 ct = __nf_conntrack_alloc(net, zone, tuple, &repl_tuple, GFP_ATOMIC,
919 hash);
Joe Perches0a9ee812011-08-29 14:17:25 -0700920 if (IS_ERR(ct))
Patrick McHardyc88130b2008-01-31 04:42:11 -0800921 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800922
Patrick McHardy48b1de42013-08-27 08:50:14 +0200923 if (tmpl && nfct_synproxy(tmpl)) {
924 nfct_seqadj_ext_add(ct);
925 nfct_synproxy_ext_add(ct);
926 }
927
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100928 timeout_ext = tmpl ? nf_ct_timeout_find(tmpl) : NULL;
929 if (timeout_ext)
930 timeouts = NF_CT_TIMEOUT_EXT_DATA(timeout_ext);
931 else
932 timeouts = l4proto->get_timeouts(net);
933
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100934 if (!l4proto->new(ct, skb, dataoff, timeouts)) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800935 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700936 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800937 return NULL;
938 }
939
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100940 if (timeout_ext)
941 nf_ct_timeout_ext_add(ct, timeout_ext->timeout, GFP_ATOMIC);
942
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700943 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100944 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
Florian Westphalc539f012013-01-11 06:30:44 +0000945 nf_ct_labels_ext_add(ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100946
947 ecache = tmpl ? nf_ct_ecache_find(tmpl) : NULL;
948 nf_ct_ecache_ext_add(ct, ecache ? ecache->ctmask : 0,
949 ecache ? ecache->expmask : 0,
950 GFP_ATOMIC);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700951
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100952 local_bh_disable();
953 if (net->ct.expect_count) {
954 spin_lock(&nf_conntrack_expect_lock);
955 exp = nf_ct_find_expectation(net, zone, tuple);
956 if (exp) {
957 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
958 ct, exp);
959 /* Welcome, Mr. Bond. We've been expecting you... */
960 __set_bit(IPS_EXPECTED_BIT, &ct->status);
961 /* exp->master safe, refcnt bumped in nf_ct_find_expectation */
962 ct->master = exp->master;
963 if (exp->helper) {
964 help = nf_ct_helper_ext_add(ct, exp->helper,
965 GFP_ATOMIC);
966 if (help)
967 rcu_assign_pointer(help->helper, exp->helper);
968 }
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700969
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800970#ifdef CONFIG_NF_CONNTRACK_MARK
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100971 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800972#endif
James Morris7c9728c2006-06-09 00:31:46 -0700973#ifdef CONFIG_NF_CONNTRACK_SECMARK
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100974 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700975#endif
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100976 NF_CT_STAT_INC(net, expect_new);
977 }
978 spin_unlock(&nf_conntrack_expect_lock);
979 }
980 if (!exp) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100981 __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200982 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800983 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800984
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100985 /* Now it is inserted into the unconfirmed list, bump refcount */
986 nf_conntrack_get(&ct->ct_general);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100987 nf_ct_add_to_unconfirmed_list(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800988
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100989 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800990
991 if (exp) {
992 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800993 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700994 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800995 }
996
Patrick McHardyc88130b2008-01-31 04:42:11 -0800997 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800998}
999
1000/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
1001static inline struct nf_conn *
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001002resolve_normal_ct(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyana702a652008-10-08 11:35:04 +02001003 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001004 unsigned int dataoff,
1005 u_int16_t l3num,
1006 u_int8_t protonum,
1007 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +01001008 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001009 int *set_reply,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001010 enum ip_conntrack_info *ctinfo)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001011{
1012 struct nf_conntrack_tuple tuple;
1013 struct nf_conntrack_tuple_hash *h;
1014 struct nf_conn *ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001015 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Changli Gao99f07e92010-09-21 17:49:20 +02001016 u32 hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001017
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001018 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001019 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +01001020 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -07001021 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001022 return NULL;
1023 }
1024
1025 /* look for tuple match */
Changli Gao99f07e92010-09-21 17:49:20 +02001026 hash = hash_conntrack_raw(&tuple, zone);
1027 h = __nf_conntrack_find_get(net, zone, &tuple, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001028 if (!h) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001029 h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001030 skb, dataoff, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001031 if (!h)
1032 return NULL;
1033 if (IS_ERR(h))
1034 return (void *)h;
1035 }
1036 ct = nf_ct_tuplehash_to_ctrack(h);
1037
1038 /* It exists; we have (non-exclusive) reference. */
1039 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
Eric Dumazetfb048832011-05-19 15:44:27 +02001040 *ctinfo = IP_CT_ESTABLISHED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001041 /* Please set reply bit if this packet OK */
1042 *set_reply = 1;
1043 } else {
1044 /* Once we've had two way comms, always ESTABLISHED. */
1045 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -07001046 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001047 *ctinfo = IP_CT_ESTABLISHED;
1048 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -07001049 pr_debug("nf_conntrack_in: related packet for %p\n",
1050 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001051 *ctinfo = IP_CT_RELATED;
1052 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -07001053 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001054 *ctinfo = IP_CT_NEW;
1055 }
1056 *set_reply = 0;
1057 }
1058 skb->nfct = &ct->ct_general;
1059 skb->nfctinfo = *ctinfo;
1060 return ct;
1061}
1062
1063unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +02001064nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
1065 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001066{
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001067 struct nf_conn *ct, *tmpl = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001068 enum ip_conntrack_info ctinfo;
1069 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +01001070 struct nf_conntrack_l4proto *l4proto;
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +01001071 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001072 unsigned int dataoff;
1073 u_int8_t protonum;
1074 int set_reply = 0;
1075 int ret;
1076
Herbert Xu3db05fe2007-10-15 00:53:15 -07001077 if (skb->nfct) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001078 /* Previously seen (loopback or untracked)? Ignore. */
1079 tmpl = (struct nf_conn *)skb->nfct;
1080 if (!nf_ct_is_template(tmpl)) {
1081 NF_CT_STAT_INC_ATOMIC(net, ignore);
1082 return NF_ACCEPT;
1083 }
1084 skb->nfct = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001085 }
1086
Patrick McHardy923f4902007-02-12 11:12:57 -08001087 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001088 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -07001089 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -07001090 &dataoff, &protonum);
1091 if (ret <= 0) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001092 pr_debug("not prepared to track yet or error occurred\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001093 NF_CT_STAT_INC_ATOMIC(net, error);
1094 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001095 ret = -ret;
1096 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001097 }
1098
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001099 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001100
1101 /* It may be an special packet, error, unclean...
1102 * inverse of the return code tells to the netfilter
1103 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +02001104 if (l4proto->error != NULL) {
Patrick McHardy8fea97e2010-02-15 17:45:08 +01001105 ret = l4proto->error(net, tmpl, skb, dataoff, &ctinfo,
1106 pf, hooknum);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +02001107 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001108 NF_CT_STAT_INC_ATOMIC(net, error);
1109 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001110 ret = -ret;
1111 goto out;
Alexey Dobriyan74c51a12008-10-08 11:35:05 +02001112 }
Pablo Neira Ayuso88ed01d2011-06-02 15:08:45 +02001113 /* ICMP[v6] protocol trackers may assign one conntrack. */
1114 if (skb->nfct)
1115 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001116 }
1117
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001118 ct = resolve_normal_ct(net, tmpl, skb, dataoff, pf, protonum,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001119 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001120 if (!ct) {
1121 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001122 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001123 ret = NF_ACCEPT;
1124 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001125 }
1126
1127 if (IS_ERR(ct)) {
1128 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001129 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001130 ret = NF_DROP;
1131 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001132 }
1133
Herbert Xu3db05fe2007-10-15 00:53:15 -07001134 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001135
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001136 /* Decide what timeout policy we want to apply to this flow. */
Pablo Neira Ayuso84b5ee92012-08-28 00:53:15 +00001137 timeouts = nf_ct_timeout_lookup(net, ct, l4proto);
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001138
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +01001139 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum, timeouts);
Christoph Paaschec8d5402009-03-16 15:51:29 +01001140 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001141 /* Invalid: inverse of the return code tells
1142 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -07001143 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -07001144 nf_conntrack_put(skb->nfct);
1145 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001146 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +01001147 if (ret == -NF_DROP)
1148 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001149 ret = -ret;
1150 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001151 }
1152
1153 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Patrick McHardy858b31332010-02-03 13:48:53 +01001154 nf_conntrack_event_cache(IPCT_REPLY, ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001155out:
Pablo Neira Ayusoc3174282011-02-09 08:08:20 +01001156 if (tmpl) {
1157 /* Special case: we have to repeat this hook, assign the
1158 * template again to this packet. We assume that this packet
1159 * has no conntrack assigned. This is used by nf_ct_tcp. */
1160 if (ret == NF_REPEAT)
1161 skb->nfct = (struct nf_conntrack *)tmpl;
1162 else
1163 nf_ct_put(tmpl);
1164 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001165
1166 return ret;
1167}
Patrick McHardy13b18332006-12-02 22:11:25 -08001168EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001169
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001170bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
1171 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001172{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001173 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -08001174
1175 rcu_read_lock();
1176 ret = nf_ct_invert_tuple(inverse, orig,
1177 __nf_ct_l3proto_find(orig->src.l3num),
1178 __nf_ct_l4proto_find(orig->src.l3num,
1179 orig->dst.protonum));
1180 rcu_read_unlock();
1181 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001182}
Patrick McHardy13b18332006-12-02 22:11:25 -08001183EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001184
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001185/* Alter reply tuple (maybe alter helper). This is for NAT, and is
1186 implicitly racy: see __nf_conntrack_confirm */
1187void nf_conntrack_alter_reply(struct nf_conn *ct,
1188 const struct nf_conntrack_tuple *newreply)
1189{
1190 struct nf_conn_help *help = nfct_help(ct);
1191
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001192 /* Should be unconfirmed, so not in hash table yet */
1193 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
1194
Patrick McHardy0d537782007-07-07 22:39:38 -07001195 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +02001196 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001197
1198 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +02001199 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001200 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001201
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001202 rcu_read_lock();
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001203 __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001204 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001205}
Patrick McHardy13b18332006-12-02 22:11:25 -08001206EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001207
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001208/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
1209void __nf_ct_refresh_acct(struct nf_conn *ct,
1210 enum ip_conntrack_info ctinfo,
1211 const struct sk_buff *skb,
1212 unsigned long extra_jiffies,
1213 int do_acct)
1214{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001215 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
1216 NF_CT_ASSERT(skb);
1217
Eric Leblond997ae832006-05-29 18:24:20 -07001218 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -08001219 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
1220 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -07001221
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001222 /* If not in hash table, timer will not be active yet */
1223 if (!nf_ct_is_confirmed(ct)) {
1224 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001225 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +01001226 unsigned long newtime = jiffies + extra_jiffies;
1227
1228 /* Only update the timeout if the new timeout is at least
1229 HZ jiffies from the old timeout. Need del_timer for race
1230 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001231 if (newtime - ct->timeout.expires >= HZ)
1232 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001233 }
1234
Patrick McHardy47d95042008-01-31 04:36:31 -08001235acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001236 if (do_acct) {
Holger Eitzenbergerf7b13e42013-09-26 17:31:51 +02001237 struct nf_conn_acct *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +01001238
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001239 acct = nf_conn_acct_find(ct);
1240 if (acct) {
Holger Eitzenbergerf7b13e42013-09-26 17:31:51 +02001241 struct nf_conn_counter *counter = acct->counter;
1242
1243 atomic64_inc(&counter[CTINFO2DIR(ctinfo)].packets);
1244 atomic64_add(skb->len, &counter[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001245 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001246 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001247}
Patrick McHardy13b18332006-12-02 22:11:25 -08001248EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001249
David S. Miller4c889492008-07-14 20:22:38 -07001250bool __nf_ct_kill_acct(struct nf_conn *ct,
1251 enum ip_conntrack_info ctinfo,
1252 const struct sk_buff *skb,
1253 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -07001254{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001255 if (do_acct) {
Holger Eitzenbergerf7b13e42013-09-26 17:31:51 +02001256 struct nf_conn_acct *acct;
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001257
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001258 acct = nf_conn_acct_find(ct);
1259 if (acct) {
Holger Eitzenbergerf7b13e42013-09-26 17:31:51 +02001260 struct nf_conn_counter *counter = acct->counter;
1261
1262 atomic64_inc(&counter[CTINFO2DIR(ctinfo)].packets);
Eric Dumazetb3e0bfa2011-12-14 14:45:20 +01001263 atomic64_add(skb->len - skb_network_offset(skb),
Holger Eitzenbergerf7b13e42013-09-26 17:31:51 +02001264 &counter[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001265 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001266 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001267
David S. Miller4c889492008-07-14 20:22:38 -07001268 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -07001269 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -07001270 return true;
1271 }
1272 return false;
Patrick McHardy51091762008-06-09 15:59:06 -07001273}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001274EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -07001275
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001276#ifdef CONFIG_NF_CONNTRACK_ZONES
1277static struct nf_ct_ext_type nf_ct_zone_extend __read_mostly = {
1278 .len = sizeof(struct nf_conntrack_zone),
1279 .align = __alignof__(struct nf_conntrack_zone),
1280 .id = NF_CT_EXT_ZONE,
1281};
1282#endif
1283
Igor Maravićc0cd1152011-12-12 02:58:24 +00001284#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001285
1286#include <linux/netfilter/nfnetlink.h>
1287#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -08001288#include <linux/mutex.h>
1289
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001290/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
1291 * in ip_conntrack_core, since we don't want the protocols to autoload
1292 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -07001293int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001294 const struct nf_conntrack_tuple *tuple)
1295{
David S. Millerbae65be2012-04-01 18:58:28 -04001296 if (nla_put_be16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port) ||
1297 nla_put_be16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port))
1298 goto nla_put_failure;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001299 return 0;
1300
Patrick McHardydf6fb862007-09-28 14:37:03 -07001301nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001302 return -1;
1303}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001304EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001305
Patrick McHardyf73e9242007-09-28 14:39:55 -07001306const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
1307 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
1308 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001309};
Patrick McHardyf73e9242007-09-28 14:39:55 -07001310EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001311
Patrick McHardyfdf70832007-09-28 14:37:41 -07001312int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001313 struct nf_conntrack_tuple *t)
1314{
Patrick McHardydf6fb862007-09-28 14:37:03 -07001315 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001316 return -EINVAL;
1317
Patrick McHardy77236b62007-12-17 22:29:45 -08001318 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
1319 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001320
1321 return 0;
1322}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001323EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +01001324
1325int nf_ct_port_nlattr_tuple_size(void)
1326{
1327 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1328}
1329EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001330#endif
1331
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001332/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardy312a0c162013-07-28 22:54:08 +02001333static void nf_conntrack_attach(struct sk_buff *nskb, const struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001334{
1335 struct nf_conn *ct;
1336 enum ip_conntrack_info ctinfo;
1337
1338 /* This ICMP is in reverse direction to the packet which caused it */
1339 ct = nf_ct_get(skb, &ctinfo);
1340 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
Eric Dumazetfb048832011-05-19 15:44:27 +02001341 ctinfo = IP_CT_RELATED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001342 else
1343 ctinfo = IP_CT_RELATED;
1344
1345 /* Attach to new skbuff, and increment count */
1346 nskb->nfct = &ct->ct_general;
1347 nskb->nfctinfo = ctinfo;
1348 nf_conntrack_get(nskb->nfct);
1349}
1350
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001351/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001352static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001353get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001354 void *data, unsigned int *bucket)
1355{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001356 struct nf_conntrack_tuple_hash *h;
1357 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +01001358 struct hlist_nulls_node *n;
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001359 int cpu;
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +01001360 spinlock_t *lockp;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001361
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001362 for (; *bucket < net->ct.htable_size; (*bucket)++) {
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +01001363 lockp = &nf_conntrack_locks[*bucket % CONNTRACK_LOCKS];
1364 local_bh_disable();
1365 spin_lock(lockp);
1366 if (*bucket < net->ct.htable_size) {
1367 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
1368 if (NF_CT_DIRECTION(h) != IP_CT_DIR_ORIGINAL)
1369 continue;
1370 ct = nf_ct_tuplehash_to_ctrack(h);
1371 if (iter(ct, data))
1372 goto found;
1373 }
Patrick McHardydf0933d2006-09-20 11:57:53 -07001374 }
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +01001375 spin_unlock(lockp);
1376 local_bh_enable();
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001377 }
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001378
1379 for_each_possible_cpu(cpu) {
1380 struct ct_pcpu *pcpu = per_cpu_ptr(net->ct.pcpu_lists, cpu);
1381
1382 spin_lock_bh(&pcpu->lock);
1383 hlist_nulls_for_each_entry(h, n, &pcpu->unconfirmed, hnnode) {
1384 ct = nf_ct_tuplehash_to_ctrack(h);
1385 if (iter(ct, data))
1386 set_bit(IPS_DYING_BIT, &ct->status);
1387 }
1388 spin_unlock_bh(&pcpu->lock);
1389 }
Patrick McHardydf0933d2006-09-20 11:57:53 -07001390 return NULL;
1391found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001392 atomic_inc(&ct->ct_general.use);
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +01001393 spin_unlock(lockp);
1394 local_bh_enable();
Patrick McHardydf0933d2006-09-20 11:57:53 -07001395 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001396}
1397
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001398void nf_ct_iterate_cleanup(struct net *net,
1399 int (*iter)(struct nf_conn *i, void *data),
Florian Westphalc655bc62013-07-29 15:41:55 +02001400 void *data, u32 portid, int report)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001401{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001402 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001403 unsigned int bucket = 0;
1404
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001405 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001406 /* Time to push up daises... */
1407 if (del_timer(&ct->timeout))
Florian Westphalc655bc62013-07-29 15:41:55 +02001408 nf_ct_delete(ct, portid, report);
Florian Westphal02982c22013-07-29 15:41:54 +02001409
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001410 /* ... else the timer will get him soon. */
1411
1412 nf_ct_put(ct);
1413 }
1414}
Patrick McHardy13b18332006-12-02 22:11:25 -08001415EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001416
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001417static int kill_all(struct nf_conn *i, void *data)
1418{
1419 return 1;
1420}
1421
Patrick McHardyd862a662011-01-14 15:45:56 +01001422void nf_ct_free_hashtable(void *hash, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001423{
Patrick McHardyd862a662011-01-14 15:45:56 +01001424 if (is_vmalloc_addr(hash))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001425 vfree(hash);
1426 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001427 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001428 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001429}
Patrick McHardyac565e52007-07-07 22:30:08 -07001430EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001431
Patrick McHardyec464e52013-04-17 06:47:08 +00001432void nf_conntrack_flush_report(struct net *net, u32 portid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001433{
Florian Westphalc655bc62013-07-29 15:41:55 +02001434 nf_ct_iterate_cleanup(net, kill_all, NULL, portid, report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001435}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001436EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001437
Eric Dumazetb3c51632010-06-09 14:43:38 +02001438static int untrack_refs(void)
1439{
1440 int cnt = 0, cpu;
1441
1442 for_each_possible_cpu(cpu) {
1443 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
1444
1445 cnt += atomic_read(&ct->ct_general.use) - 1;
1446 }
1447 return cnt;
1448}
1449
Gao fengf94161c2013-01-21 22:10:24 +00001450void nf_conntrack_cleanup_start(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001451{
Gao fengf94161c2013-01-21 22:10:24 +00001452 RCU_INIT_POINTER(ip_ct_attach, NULL);
1453}
1454
1455void nf_conntrack_cleanup_end(void)
1456{
1457 RCU_INIT_POINTER(nf_ct_destroy, NULL);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001458 while (untrack_refs() > 0)
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001459 schedule();
1460
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001461#ifdef CONFIG_NF_CONNTRACK_ZONES
1462 nf_ct_extend_unregister(&nf_ct_zone_extend);
1463#endif
Gao feng04d87002013-01-21 22:10:32 +00001464 nf_conntrack_proto_fini();
Patrick McHardy41d73ec2013-08-27 08:50:12 +02001465 nf_conntrack_seqadj_fini();
Gao feng5f69b8f2013-01-21 22:10:31 +00001466 nf_conntrack_labels_fini();
Gao feng5e615b22013-01-21 22:10:30 +00001467 nf_conntrack_helper_fini();
Gao feng86840942013-01-21 22:10:29 +00001468 nf_conntrack_timeout_fini();
Gao feng3fe0f942013-01-21 22:10:28 +00001469 nf_conntrack_ecache_fini();
Gao feng73f40012013-01-21 22:10:27 +00001470 nf_conntrack_tstamp_fini();
Gao fengb7ff3a12013-01-21 22:10:26 +00001471 nf_conntrack_acct_fini();
Gao feng83b4dbe2013-01-21 22:10:25 +00001472 nf_conntrack_expect_fini();
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001473}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001474
Gao fengf94161c2013-01-21 22:10:24 +00001475/*
1476 * Mishearing the voices in his head, our hero wonders how he's
1477 * supposed to kill the mall.
1478 */
1479void nf_conntrack_cleanup_net(struct net *net)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001480{
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001481 LIST_HEAD(single);
1482
1483 list_add(&net->exit_list, &single);
1484 nf_conntrack_cleanup_net_list(&single);
1485}
1486
1487void nf_conntrack_cleanup_net_list(struct list_head *net_exit_list)
1488{
1489 int busy;
1490 struct net *net;
1491
Gao fengf94161c2013-01-21 22:10:24 +00001492 /*
1493 * This makes sure all current packets have passed through
1494 * netfilter framework. Roll on, two-stage module
1495 * delete...
1496 */
1497 synchronize_net();
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001498i_see_dead_people:
1499 busy = 0;
1500 list_for_each_entry(net, net_exit_list, exit_list) {
Florian Westphalc655bc62013-07-29 15:41:55 +02001501 nf_ct_iterate_cleanup(net, kill_all, NULL, 0, 0);
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001502 if (atomic_read(&net->ct.count) != 0)
1503 busy = 1;
1504 }
1505 if (busy) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001506 schedule();
1507 goto i_see_dead_people;
1508 }
1509
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001510 list_for_each_entry(net, net_exit_list, exit_list) {
1511 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
1512 nf_conntrack_proto_pernet_fini(net);
1513 nf_conntrack_helper_pernet_fini(net);
1514 nf_conntrack_ecache_pernet_fini(net);
1515 nf_conntrack_tstamp_pernet_fini(net);
1516 nf_conntrack_acct_pernet_fini(net);
1517 nf_conntrack_expect_pernet_fini(net);
1518 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1519 kfree(net->ct.slabname);
1520 free_percpu(net->ct.stat);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001521 free_percpu(net->ct.pcpu_lists);
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001522 }
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001523}
1524
Patrick McHardyd862a662011-01-14 15:45:56 +01001525void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001526{
Eric Dumazetea781f12009-03-25 21:05:46 +01001527 struct hlist_nulls_head *hash;
1528 unsigned int nr_slots, i;
1529 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001530
Eric Dumazetea781f12009-03-25 21:05:46 +01001531 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1532 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1533 sz = nr_slots * sizeof(struct hlist_nulls_head);
1534 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1535 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001536 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001537 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazet966567b2011-12-19 16:01:38 -05001538 hash = vzalloc(sz);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001539 }
1540
Eric Dumazetea781f12009-03-25 21:05:46 +01001541 if (hash && nulls)
1542 for (i = 0; i < nr_slots; i++)
1543 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001544
1545 return hash;
1546}
Patrick McHardyac565e52007-07-07 22:30:08 -07001547EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001548
Patrick McHardyfae718d2007-12-24 21:09:10 -08001549int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001550{
Abhijit Pawar4b5511e2012-12-09 23:12:28 +00001551 int i, bucket, rc;
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001552 unsigned int hashsize, old_size;
Eric Dumazetea781f12009-03-25 21:05:46 +01001553 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001554 struct nf_conntrack_tuple_hash *h;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001555 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001556
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001557 if (current->nsproxy->net_ns != &init_net)
1558 return -EOPNOTSUPP;
1559
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001560 /* On boot, we can set this without any fancy locking. */
1561 if (!nf_conntrack_htable_size)
1562 return param_set_uint(val, kp);
1563
Abhijit Pawar4b5511e2012-12-09 23:12:28 +00001564 rc = kstrtouint(val, 0, &hashsize);
1565 if (rc)
1566 return rc;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001567 if (!hashsize)
1568 return -EINVAL;
1569
Patrick McHardyd862a662011-01-14 15:45:56 +01001570 hash = nf_ct_alloc_hashtable(&hashsize, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001571 if (!hash)
1572 return -ENOMEM;
1573
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +01001574 local_bh_disable();
1575 nf_conntrack_all_lock();
1576 write_seqcount_begin(&init_net.ct.generation);
1577
Patrick McHardy76507f62008-01-31 04:38:38 -08001578 /* Lookups in the old hash might happen in parallel, which means we
1579 * might get false negatives during connection lookup. New connections
1580 * created because of a false negative won't make it into the hash
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +01001581 * though since that required taking the locks.
Patrick McHardy76507f62008-01-31 04:38:38 -08001582 */
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +01001583
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001584 for (i = 0; i < init_net.ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001585 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1586 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1587 struct nf_conntrack_tuple_hash, hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001588 ct = nf_ct_tuplehash_to_ctrack(h);
Eric Dumazetea781f12009-03-25 21:05:46 +01001589 hlist_nulls_del_rcu(&h->hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001590 bucket = __hash_conntrack(&h->tuple, nf_ct_zone(ct),
Changli Gao99f07e92010-09-21 17:49:20 +02001591 hashsize);
Eric Dumazetea781f12009-03-25 21:05:46 +01001592 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001593 }
1594 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001595 old_size = init_net.ct.htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001596 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001597
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001598 init_net.ct.htable_size = nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001599 init_net.ct.hash = hash;
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +01001600
1601 write_seqcount_end(&init_net.ct.generation);
1602 nf_conntrack_all_unlock();
1603 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001604
Patrick McHardyd862a662011-01-14 15:45:56 +01001605 nf_ct_free_hashtable(old_hash, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001606 return 0;
1607}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001608EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001609
Patrick McHardyfae718d2007-12-24 21:09:10 -08001610module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001611 &nf_conntrack_htable_size, 0600);
1612
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001613void nf_ct_untracked_status_or(unsigned long bits)
1614{
Eric Dumazetb3c51632010-06-09 14:43:38 +02001615 int cpu;
1616
1617 for_each_possible_cpu(cpu)
1618 per_cpu(nf_conntrack_untracked, cpu).status |= bits;
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001619}
1620EXPORT_SYMBOL_GPL(nf_ct_untracked_status_or);
1621
Gao fengf94161c2013-01-21 22:10:24 +00001622int nf_conntrack_init_start(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001623{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001624 int max_factor = 8;
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +01001625 int i, ret, cpu;
1626
Eric Dumazetd5d20912014-03-17 13:37:53 -07001627 for (i = 0; i < CONNTRACK_LOCKS; i++)
Jesper Dangaard Brouer93bb0ce2014-03-03 14:46:13 +01001628 spin_lock_init(&nf_conntrack_locks[i]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001629
1630 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001631 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001632 if (!nf_conntrack_htable_size) {
1633 nf_conntrack_htable_size
Jan Beulich44813742009-09-21 17:03:05 -07001634 = (((totalram_pages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001635 / sizeof(struct hlist_head));
Jan Beulich44813742009-09-21 17:03:05 -07001636 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001637 nf_conntrack_htable_size = 16384;
1638 if (nf_conntrack_htable_size < 32)
1639 nf_conntrack_htable_size = 32;
1640
1641 /* Use a max. factor of four by default to get the same max as
1642 * with the old struct list_heads. When a table size is given
1643 * we use the old value of 8 to avoid reducing the max.
1644 * entries. */
1645 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001646 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001647 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001648
Stephen Hemminger654d0fb2010-05-13 15:02:08 +02001649 printk(KERN_INFO "nf_conntrack version %s (%u buckets, %d max)\n",
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001650 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1651 nf_conntrack_max);
Gao feng83b4dbe2013-01-21 22:10:25 +00001652
1653 ret = nf_conntrack_expect_init();
1654 if (ret < 0)
1655 goto err_expect;
1656
Gao fengb7ff3a12013-01-21 22:10:26 +00001657 ret = nf_conntrack_acct_init();
1658 if (ret < 0)
1659 goto err_acct;
1660
Gao feng73f40012013-01-21 22:10:27 +00001661 ret = nf_conntrack_tstamp_init();
1662 if (ret < 0)
1663 goto err_tstamp;
1664
Gao feng3fe0f942013-01-21 22:10:28 +00001665 ret = nf_conntrack_ecache_init();
1666 if (ret < 0)
1667 goto err_ecache;
1668
Gao feng86840942013-01-21 22:10:29 +00001669 ret = nf_conntrack_timeout_init();
1670 if (ret < 0)
1671 goto err_timeout;
1672
Gao feng5e615b22013-01-21 22:10:30 +00001673 ret = nf_conntrack_helper_init();
1674 if (ret < 0)
1675 goto err_helper;
1676
Gao feng5f69b8f2013-01-21 22:10:31 +00001677 ret = nf_conntrack_labels_init();
1678 if (ret < 0)
1679 goto err_labels;
1680
Patrick McHardy41d73ec2013-08-27 08:50:12 +02001681 ret = nf_conntrack_seqadj_init();
1682 if (ret < 0)
1683 goto err_seqadj;
1684
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001685#ifdef CONFIG_NF_CONNTRACK_ZONES
1686 ret = nf_ct_extend_register(&nf_ct_zone_extend);
1687 if (ret < 0)
1688 goto err_extend;
1689#endif
Gao feng04d87002013-01-21 22:10:32 +00001690 ret = nf_conntrack_proto_init();
1691 if (ret < 0)
1692 goto err_proto;
1693
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001694 /* Set up fake conntrack: to never be deleted, not in any hashes */
Eric Dumazetb3c51632010-06-09 14:43:38 +02001695 for_each_possible_cpu(cpu) {
1696 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001697 write_pnet(&ct->ct_net, &init_net);
1698 atomic_set(&ct->ct_general.use, 1);
1699 }
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001700 /* - and look it like as a confirmed connection */
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001701 nf_ct_untracked_status_or(IPS_CONFIRMED | IPS_UNTRACKED);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001702 return 0;
1703
Gao feng04d87002013-01-21 22:10:32 +00001704err_proto:
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001705#ifdef CONFIG_NF_CONNTRACK_ZONES
Gao feng04d87002013-01-21 22:10:32 +00001706 nf_ct_extend_unregister(&nf_ct_zone_extend);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001707err_extend:
Eric Leblonda9006892012-04-18 11:20:41 +02001708#endif
Patrick McHardy41d73ec2013-08-27 08:50:12 +02001709 nf_conntrack_seqadj_fini();
1710err_seqadj:
Gao feng04d87002013-01-21 22:10:32 +00001711 nf_conntrack_labels_fini();
Gao feng5f69b8f2013-01-21 22:10:31 +00001712err_labels:
1713 nf_conntrack_helper_fini();
Gao feng5e615b22013-01-21 22:10:30 +00001714err_helper:
1715 nf_conntrack_timeout_fini();
Gao feng86840942013-01-21 22:10:29 +00001716err_timeout:
1717 nf_conntrack_ecache_fini();
Gao feng3fe0f942013-01-21 22:10:28 +00001718err_ecache:
1719 nf_conntrack_tstamp_fini();
Gao feng73f40012013-01-21 22:10:27 +00001720err_tstamp:
1721 nf_conntrack_acct_fini();
Gao fengb7ff3a12013-01-21 22:10:26 +00001722err_acct:
1723 nf_conntrack_expect_fini();
Gao feng83b4dbe2013-01-21 22:10:25 +00001724err_expect:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001725 return ret;
1726}
1727
Gao fengf94161c2013-01-21 22:10:24 +00001728void nf_conntrack_init_end(void)
1729{
1730 /* For use by REJECT target */
1731 RCU_INIT_POINTER(ip_ct_attach, nf_conntrack_attach);
1732 RCU_INIT_POINTER(nf_ct_destroy, destroy_conntrack);
Gao fengf94161c2013-01-21 22:10:24 +00001733}
1734
Eric Dumazet8cc20192009-06-22 14:13:55 +02001735/*
1736 * We need to use special "null" values, not used in hash table
1737 */
1738#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1739#define DYING_NULLS_VAL ((1<<30)+1)
Pablo Neira Ayuso252b3e82012-12-11 04:07:42 +00001740#define TEMPLATE_NULLS_VAL ((1<<30)+2)
Eric Dumazet8cc20192009-06-22 14:13:55 +02001741
Gao fengf94161c2013-01-21 22:10:24 +00001742int nf_conntrack_init_net(struct net *net)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001743{
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001744 int ret = -ENOMEM;
1745 int cpu;
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001746
1747 atomic_set(&net->ct.count, 0);
Andrey Vaginee214d52014-04-11 21:34:20 +04001748 seqcount_init(&net->ct.generation);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001749
1750 net->ct.pcpu_lists = alloc_percpu(struct ct_pcpu);
1751 if (!net->ct.pcpu_lists)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001752 goto err_stat;
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001753
1754 for_each_possible_cpu(cpu) {
1755 struct ct_pcpu *pcpu = per_cpu_ptr(net->ct.pcpu_lists, cpu);
1756
1757 spin_lock_init(&pcpu->lock);
1758 INIT_HLIST_NULLS_HEAD(&pcpu->unconfirmed, UNCONFIRMED_NULLS_VAL);
1759 INIT_HLIST_NULLS_HEAD(&pcpu->dying, DYING_NULLS_VAL);
1760 INIT_HLIST_NULLS_HEAD(&pcpu->tmpl, TEMPLATE_NULLS_VAL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001761 }
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001762
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001763 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1764 if (!net->ct.stat)
1765 goto err_pcpu_lists;
1766
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001767 net->ct.slabname = kasprintf(GFP_KERNEL, "nf_conntrack_%p", net);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001768 if (!net->ct.slabname)
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001769 goto err_slabname;
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001770
1771 net->ct.nf_conntrack_cachep = kmem_cache_create(net->ct.slabname,
1772 sizeof(struct nf_conn), 0,
1773 SLAB_DESTROY_BY_RCU, NULL);
1774 if (!net->ct.nf_conntrack_cachep) {
1775 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001776 goto err_cache;
1777 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001778
1779 net->ct.htable_size = nf_conntrack_htable_size;
Patrick McHardyd862a662011-01-14 15:45:56 +01001780 net->ct.hash = nf_ct_alloc_hashtable(&net->ct.htable_size, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001781 if (!net->ct.hash) {
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001782 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1783 goto err_hash;
1784 }
Gao feng83b4dbe2013-01-21 22:10:25 +00001785 ret = nf_conntrack_expect_pernet_init(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001786 if (ret < 0)
1787 goto err_expect;
Gao fengb7ff3a12013-01-21 22:10:26 +00001788 ret = nf_conntrack_acct_pernet_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001789 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001790 goto err_acct;
Gao feng73f40012013-01-21 22:10:27 +00001791 ret = nf_conntrack_tstamp_pernet_init(net);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001792 if (ret < 0)
1793 goto err_tstamp;
Gao feng3fe0f942013-01-21 22:10:28 +00001794 ret = nf_conntrack_ecache_pernet_init(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001795 if (ret < 0)
1796 goto err_ecache;
Gao feng5e615b22013-01-21 22:10:30 +00001797 ret = nf_conntrack_helper_pernet_init(net);
Eric Leblonda9006892012-04-18 11:20:41 +02001798 if (ret < 0)
1799 goto err_helper;
Gao feng04d87002013-01-21 22:10:32 +00001800 ret = nf_conntrack_proto_pernet_init(net);
Gao fengf94161c2013-01-21 22:10:24 +00001801 if (ret < 0)
1802 goto err_proto;
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001803 return 0;
Florian Westphalc539f012013-01-11 06:30:44 +00001804
Gao fengf94161c2013-01-21 22:10:24 +00001805err_proto:
Gao feng5e615b22013-01-21 22:10:30 +00001806 nf_conntrack_helper_pernet_fini(net);
Eric Leblonda9006892012-04-18 11:20:41 +02001807err_helper:
Gao feng3fe0f942013-01-21 22:10:28 +00001808 nf_conntrack_ecache_pernet_fini(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001809err_ecache:
Gao feng73f40012013-01-21 22:10:27 +00001810 nf_conntrack_tstamp_pernet_fini(net);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001811err_tstamp:
Gao fengb7ff3a12013-01-21 22:10:26 +00001812 nf_conntrack_acct_pernet_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001813err_acct:
Gao feng83b4dbe2013-01-21 22:10:25 +00001814 nf_conntrack_expect_pernet_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001815err_expect:
Patrick McHardyd862a662011-01-14 15:45:56 +01001816 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001817err_hash:
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001818 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1819err_cache:
1820 kfree(net->ct.slabname);
1821err_slabname:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001822 free_percpu(net->ct.stat);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001823err_pcpu_lists:
1824 free_percpu(net->ct.pcpu_lists);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001825err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001826 return ret;
1827}