blob: 92d597788d6a52039adb268f1c6c54df192881de [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
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080063DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080064EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080065
Martin Josefssone2b76062006-11-29 02:35:04 +010066unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080067EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
68
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +010069unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010070EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080071
Eric Dumazetb3c51632010-06-09 14:43:38 +020072DEFINE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
73EXPORT_PER_CPU_SYMBOL(nf_conntrack_untracked);
Patrick McHardy13b18332006-12-02 22:11:25 -080074
Changli Gaof682cef2011-01-05 04:23:23 +000075unsigned int nf_conntrack_hash_rnd __read_mostly;
Patrick McHardy4d4e61c2011-12-23 14:00:13 +010076EXPORT_SYMBOL_GPL(nf_conntrack_hash_rnd);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080077
Changli Gao99f07e92010-09-21 17:49:20 +020078static u32 hash_conntrack_raw(const struct nf_conntrack_tuple *tuple, u16 zone)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080079{
Patrick McHardy07949352008-01-31 04:40:52 -080080 unsigned int n;
Sami Farin9b887902007-03-14 16:43:00 -070081
Patrick McHardy07949352008-01-31 04:40:52 -080082 /* The direction must be ignored, so we hash everything up to the
83 * destination ports (which is a multiple of 4) and treat the last
84 * three bytes manually.
85 */
86 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
Changli Gao99f07e92010-09-21 17:49:20 +020087 return jhash2((u32 *)tuple, n, zone ^ nf_conntrack_hash_rnd ^
88 (((__force __u16)tuple->dst.u.all << 16) |
89 tuple->dst.protonum));
90}
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080091
Changli Gao99f07e92010-09-21 17:49:20 +020092static u32 __hash_bucket(u32 hash, unsigned int size)
93{
94 return ((u64)hash * size) >> 32;
95}
96
97static u32 hash_bucket(u32 hash, const struct net *net)
98{
99 return __hash_bucket(hash, net->ct.htable_size);
100}
101
102static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
103 u16 zone, unsigned int size)
104{
105 return __hash_bucket(hash_conntrack_raw(tuple, zone), size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800106}
107
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100108static inline u_int32_t hash_conntrack(const struct net *net, u16 zone,
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800109 const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800110{
Changli Gao99f07e92010-09-21 17:49:20 +0200111 return __hash_conntrack(tuple, zone, net->ct.htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800112}
113
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200114bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800115nf_ct_get_tuple(const struct sk_buff *skb,
116 unsigned int nhoff,
117 unsigned int dataoff,
118 u_int16_t l3num,
119 u_int8_t protonum,
120 struct nf_conntrack_tuple *tuple,
121 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100122 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800123{
Philip Craig443a70d2008-04-29 03:35:10 -0700124 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800125
126 tuple->src.l3num = l3num;
127 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200128 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800129
130 tuple->dst.protonum = protonum;
131 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
132
Martin Josefsson605dcad2006-11-29 02:35:06 +0100133 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800134}
Patrick McHardy13b18332006-12-02 22:11:25 -0800135EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800136
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200137bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
138 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700139{
140 struct nf_conntrack_l3proto *l3proto;
141 struct nf_conntrack_l4proto *l4proto;
142 unsigned int protoff;
143 u_int8_t protonum;
144 int ret;
145
146 rcu_read_lock();
147
148 l3proto = __nf_ct_l3proto_find(l3num);
149 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
150 if (ret != NF_ACCEPT) {
151 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200152 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700153 }
154
155 l4proto = __nf_ct_l4proto_find(l3num, protonum);
156
157 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
158 l3proto, l4proto);
159
160 rcu_read_unlock();
161 return ret;
162}
163EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
164
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200165bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800166nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
167 const struct nf_conntrack_tuple *orig,
168 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100169 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800170{
Philip Craig443a70d2008-04-29 03:35:10 -0700171 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800172
173 inverse->src.l3num = orig->src.l3num;
174 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200175 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800176
177 inverse->dst.dir = !orig->dst.dir;
178
179 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100180 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800181}
Patrick McHardy13b18332006-12-02 22:11:25 -0800182EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800183
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800184static void
185clean_from_lists(struct nf_conn *ct)
186{
Patrick McHardy0d537782007-07-07 22:39:38 -0700187 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100188 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
189 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800190
191 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800192 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800193}
194
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100195/* must be called with local_bh_disable */
196static void nf_ct_add_to_dying_list(struct nf_conn *ct)
197{
198 struct ct_pcpu *pcpu;
199
200 /* add this conntrack to the (per cpu) dying list */
201 ct->cpu = smp_processor_id();
202 pcpu = per_cpu_ptr(nf_ct_net(ct)->ct.pcpu_lists, ct->cpu);
203
204 spin_lock(&pcpu->lock);
205 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
206 &pcpu->dying);
207 spin_unlock(&pcpu->lock);
208}
209
210/* must be called with local_bh_disable */
211static void nf_ct_add_to_unconfirmed_list(struct nf_conn *ct)
212{
213 struct ct_pcpu *pcpu;
214
215 /* add this conntrack to the (per cpu) unconfirmed list */
216 ct->cpu = smp_processor_id();
217 pcpu = per_cpu_ptr(nf_ct_net(ct)->ct.pcpu_lists, ct->cpu);
218
219 spin_lock(&pcpu->lock);
220 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
221 &pcpu->unconfirmed);
222 spin_unlock(&pcpu->lock);
223}
224
225/* must be called with local_bh_disable */
226static void nf_ct_del_from_dying_or_unconfirmed_list(struct nf_conn *ct)
227{
228 struct ct_pcpu *pcpu;
229
230 /* We overload first tuple to link into unconfirmed or dying list.*/
231 pcpu = per_cpu_ptr(nf_ct_net(ct)->ct.pcpu_lists, ct->cpu);
232
233 spin_lock(&pcpu->lock);
234 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
235 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
236 spin_unlock(&pcpu->lock);
237}
238
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800239static void
240destroy_conntrack(struct nf_conntrack *nfct)
241{
242 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200243 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100244 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800245
Patrick McHardy0d537782007-07-07 22:39:38 -0700246 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800247 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
248 NF_CT_ASSERT(!timer_pending(&ct->timeout));
249
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800250 /* To make sure we don't get any weird locking issues here:
251 * destroy_conntrack() MUST NOT be called with a write lock
252 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800253 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200254 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100255 if (l4proto && l4proto->destroy)
256 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800257
Patrick McHardy982d9a92007-02-12 11:14:11 -0800258 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800259
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800260 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800261 /* Expectations will have been removed in clean_from_lists,
262 * except TFTP can create an expectation on the first packet,
263 * before connection is in the list, so we need to clean here,
264 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800265 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800266
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100267 nf_ct_del_from_dying_or_unconfirmed_list(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800268
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200269 NF_CT_STAT_INC(net, delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800270 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800271
272 if (ct->master)
273 nf_ct_put(ct->master);
274
Patrick McHardy0d537782007-07-07 22:39:38 -0700275 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800276 nf_conntrack_free(ct);
277}
278
Florian Westphal02982c22013-07-29 15:41:54 +0200279static void nf_ct_delete_from_lists(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800280{
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200281 struct net *net = nf_ct_net(ct);
Patrick McHardy5397e972007-05-19 14:23:52 -0700282
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200283 nf_ct_helper_destroy(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800284 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800285 /* Inside lock so preempt is disabled on module removal path.
286 * Otherwise we can get spurious warnings. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200287 NF_CT_STAT_INC(net, delete_list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800288 clean_from_lists(ct);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100289 nf_ct_add_to_dying_list(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800290 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200291}
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200292
293static void death_by_event(unsigned long ul_conntrack)
294{
295 struct nf_conn *ct = (void *)ul_conntrack;
296 struct net *net = nf_ct_net(ct);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000297 struct nf_conntrack_ecache *ecache = nf_ct_ecache_find(ct);
298
299 BUG_ON(ecache == NULL);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200300
301 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
302 /* bad luck, let's retry again */
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000303 ecache->timeout.expires = jiffies +
Akinobu Mitaca3d41a2013-04-29 16:21:39 -0700304 (prandom_u32() % net->ct.sysctl_events_retry_timeout);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000305 add_timer(&ecache->timeout);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200306 return;
307 }
308 /* we've got the event delivered, now it's dying */
309 set_bit(IPS_DYING_BIT, &ct->status);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200310 nf_ct_put(ct);
311}
312
Florian Westphal02982c22013-07-29 15:41:54 +0200313static void nf_ct_dying_timeout(struct nf_conn *ct)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200314{
315 struct net *net = nf_ct_net(ct);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000316 struct nf_conntrack_ecache *ecache = nf_ct_ecache_find(ct);
317
318 BUG_ON(ecache == NULL);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200319
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200320 /* set a new timer to retry event delivery */
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000321 setup_timer(&ecache->timeout, death_by_event, (unsigned long)ct);
322 ecache->timeout.expires = jiffies +
Akinobu Mitaca3d41a2013-04-29 16:21:39 -0700323 (prandom_u32() % net->ct.sysctl_events_retry_timeout);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000324 add_timer(&ecache->timeout);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200325}
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200326
Florian Westphal02982c22013-07-29 15:41:54 +0200327bool nf_ct_delete(struct nf_conn *ct, u32 portid, int report)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200328{
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100329 struct nf_conn_tstamp *tstamp;
330
331 tstamp = nf_conn_tstamp_find(ct);
332 if (tstamp && tstamp->stop == 0)
333 tstamp->stop = ktime_to_ns(ktime_get_real());
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200334
Florian Westphal02982c22013-07-29 15:41:54 +0200335 if (!nf_ct_is_dying(ct) &&
336 unlikely(nf_conntrack_event_report(IPCT_DESTROY, ct,
337 portid, report) < 0)) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200338 /* destroy event was not delivered */
339 nf_ct_delete_from_lists(ct);
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100340 nf_ct_dying_timeout(ct);
Florian Westphal02982c22013-07-29 15:41:54 +0200341 return false;
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200342 }
343 set_bit(IPS_DYING_BIT, &ct->status);
344 nf_ct_delete_from_lists(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800345 nf_ct_put(ct);
Florian Westphal02982c22013-07-29 15:41:54 +0200346 return true;
347}
348EXPORT_SYMBOL_GPL(nf_ct_delete);
349
350static void death_by_timeout(unsigned long ul_conntrack)
351{
352 nf_ct_delete((struct nf_conn *)ul_conntrack, 0, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800353}
354
Andrey Vaginc6825c02014-01-29 19:34:14 +0100355static inline bool
356nf_ct_key_equal(struct nf_conntrack_tuple_hash *h,
357 const struct nf_conntrack_tuple *tuple,
358 u16 zone)
359{
360 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
361
362 /* A conntrack can be recreated with the equal tuple,
363 * so we need to check that the conntrack is confirmed
364 */
365 return nf_ct_tuple_equal(tuple, &h->tuple) &&
366 nf_ct_zone(ct) == zone &&
367 nf_ct_is_confirmed(ct);
368}
369
Eric Dumazetea781f12009-03-25 21:05:46 +0100370/*
371 * Warning :
372 * - Caller must take a reference on returned object
373 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
374 * OR
375 * - Caller must lock nf_conntrack_lock before calling this function
376 */
Changli Gao99f07e92010-09-21 17:49:20 +0200377static struct nf_conntrack_tuple_hash *
378____nf_conntrack_find(struct net *net, u16 zone,
379 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800380{
381 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100382 struct hlist_nulls_node *n;
Changli Gao99f07e92010-09-21 17:49:20 +0200383 unsigned int bucket = hash_bucket(hash, net);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800384
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800385 /* Disable BHs the entire time since we normally need to disable them
386 * at least once for the stats anyway.
387 */
388 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100389begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200390 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[bucket], hnnode) {
Andrey Vaginc6825c02014-01-29 19:34:14 +0100391 if (nf_ct_key_equal(h, tuple, zone)) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200392 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800393 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800394 return h;
395 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200396 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800397 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100398 /*
399 * if the nulls value we got at the end of this lookup is
400 * not the expected one, we must restart lookup.
401 * We probably met an item that was moved to another chain.
402 */
Changli Gao99f07e92010-09-21 17:49:20 +0200403 if (get_nulls_value(n) != bucket) {
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200404 NF_CT_STAT_INC(net, search_restart);
Eric Dumazetea781f12009-03-25 21:05:46 +0100405 goto begin;
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200406 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800407 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800408
409 return NULL;
410}
Changli Gao99f07e92010-09-21 17:49:20 +0200411
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800412/* Find a connection corresponding to a tuple. */
Changli Gao99f07e92010-09-21 17:49:20 +0200413static struct nf_conntrack_tuple_hash *
414__nf_conntrack_find_get(struct net *net, u16 zone,
415 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800416{
417 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800418 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800419
Patrick McHardy76507f62008-01-31 04:38:38 -0800420 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100421begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200422 h = ____nf_conntrack_find(net, zone, tuple, hash);
Patrick McHardy76507f62008-01-31 04:38:38 -0800423 if (h) {
424 ct = nf_ct_tuplehash_to_ctrack(h);
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200425 if (unlikely(nf_ct_is_dying(ct) ||
426 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800427 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100428 else {
Andrey Vaginc6825c02014-01-29 19:34:14 +0100429 if (unlikely(!nf_ct_key_equal(h, tuple, zone))) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100430 nf_ct_put(ct);
431 goto begin;
432 }
433 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800434 }
435 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800436
437 return h;
438}
Changli Gao99f07e92010-09-21 17:49:20 +0200439
440struct nf_conntrack_tuple_hash *
441nf_conntrack_find_get(struct net *net, u16 zone,
442 const struct nf_conntrack_tuple *tuple)
443{
444 return __nf_conntrack_find_get(net, zone, tuple,
445 hash_conntrack_raw(tuple, zone));
446}
Patrick McHardy13b18332006-12-02 22:11:25 -0800447EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800448
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800449static void __nf_conntrack_hash_insert(struct nf_conn *ct,
450 unsigned int hash,
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100451 unsigned int reply_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800452{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200453 struct net *net = nf_ct_net(ct);
454
Eric Dumazetea781f12009-03-25 21:05:46 +0100455 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200456 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100457 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100458 &net->ct.hash[reply_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800459}
460
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100461int
462nf_conntrack_hash_check_insert(struct nf_conn *ct)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800463{
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800464 struct net *net = nf_ct_net(ct);
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100465 unsigned int hash, reply_hash;
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100466 struct nf_conntrack_tuple_hash *h;
467 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100468 u16 zone;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800469
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100470 zone = nf_ct_zone(ct);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100471 hash = hash_conntrack(net, zone,
472 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100473 reply_hash = hash_conntrack(net, zone,
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100474 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800475
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100476 spin_lock_bh(&nf_conntrack_lock);
477
478 /* See if there's one in the list already, including reverse */
479 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
480 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
481 &h->tuple) &&
482 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
483 goto out;
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100484 hlist_nulls_for_each_entry(h, n, &net->ct.hash[reply_hash], hnnode)
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100485 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
486 &h->tuple) &&
487 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
488 goto out;
489
490 add_timer(&ct->timeout);
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100491 smp_wmb();
492 /* The caller holds a reference to this object */
493 atomic_set(&ct->ct_general.use, 2);
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100494 __nf_conntrack_hash_insert(ct, hash, reply_hash);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100495 NF_CT_STAT_INC(net, insert);
496 spin_unlock_bh(&nf_conntrack_lock);
497
498 return 0;
499
500out:
501 NF_CT_STAT_INC(net, insert_failed);
502 spin_unlock_bh(&nf_conntrack_lock);
503 return -EEXIST;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800504}
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100505EXPORT_SYMBOL_GPL(nf_conntrack_hash_check_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800506
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100507/* deletion from this larval template list happens via nf_ct_put() */
508void nf_conntrack_tmpl_insert(struct net *net, struct nf_conn *tmpl)
509{
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100510 struct ct_pcpu *pcpu;
511
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100512 __set_bit(IPS_TEMPLATE_BIT, &tmpl->status);
513 __set_bit(IPS_CONFIRMED_BIT, &tmpl->status);
514 nf_conntrack_get(&tmpl->ct_general);
515
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100516 /* add this conntrack to the (per cpu) tmpl list */
517 local_bh_disable();
518 tmpl->cpu = smp_processor_id();
519 pcpu = per_cpu_ptr(nf_ct_net(tmpl)->ct.pcpu_lists, tmpl->cpu);
520
521 spin_lock(&pcpu->lock);
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100522 /* Overload tuple linked list to put us in template list. */
523 hlist_nulls_add_head_rcu(&tmpl->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100524 &pcpu->tmpl);
525 spin_unlock_bh(&pcpu->lock);
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100526}
527EXPORT_SYMBOL_GPL(nf_conntrack_tmpl_insert);
528
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800529/* Confirm a connection given skb; places it in hash table */
530int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700531__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800532{
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100533 unsigned int hash, reply_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700534 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800535 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700536 struct nf_conn_help *help;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100537 struct nf_conn_tstamp *tstamp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100538 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800539 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200540 struct net *net;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100541 u16 zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800542
Herbert Xu3db05fe2007-10-15 00:53:15 -0700543 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200544 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800545
546 /* ipt_REJECT uses nf_conntrack_attach to attach related
547 ICMP/TCP RST packets in other direction. Actual packet
548 which created connection will be IP_CT_NEW or for an
549 expected connection, IP_CT_RELATED. */
550 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
551 return NF_ACCEPT;
552
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100553 zone = nf_ct_zone(ct);
Changli Gao99f07e92010-09-21 17:49:20 +0200554 /* reuse the hash saved before */
555 hash = *(unsigned long *)&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev;
556 hash = hash_bucket(hash, net);
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100557 reply_hash = hash_conntrack(net, zone,
Changli Gao99f07e92010-09-21 17:49:20 +0200558 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800559
560 /* We're not in hash table, and we refuse to set up related
561 connections for unconfirmed conns. But packet copies and
562 REJECT will give spurious warnings here. */
563 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
564
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300565 /* No external references means no one else could have
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800566 confirmed us. */
567 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700568 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800569
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800570 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800571
Joerg Marxfc350772010-05-20 15:55:30 +0200572 /* We have to check the DYING flag inside the lock to prevent
573 a race against nf_ct_get_next_corpse() possibly called from
574 user context, else we insert an already 'dead' hash, blocking
575 further use of that particular connection -JM */
576
577 if (unlikely(nf_ct_is_dying(ct))) {
578 spin_unlock_bh(&nf_conntrack_lock);
579 return NF_ACCEPT;
580 }
581
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800582 /* See if there's one in the list already, including reverse:
583 NAT could have grabbed it without realizing, since we're
584 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100585 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700586 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100587 &h->tuple) &&
588 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700589 goto out;
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100590 hlist_nulls_for_each_entry(h, n, &net->ct.hash[reply_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700591 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100592 &h->tuple) &&
593 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700594 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800595
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100596 nf_ct_del_from_dying_or_unconfirmed_list(ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700597
Patrick McHardydf0933d2006-09-20 11:57:53 -0700598 /* Timer relative to confirmation time, not original
599 setting time, otherwise we'd get timer wrap in
600 weird delay cases. */
601 ct->timeout.expires += jiffies;
602 add_timer(&ct->timeout);
603 atomic_inc(&ct->ct_general.use);
Changli Gao45eec342011-01-18 15:08:13 +0100604 ct->status |= IPS_CONFIRMED;
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200605
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100606 /* set conntrack timestamp, if enabled. */
607 tstamp = nf_conn_tstamp_find(ct);
608 if (tstamp) {
609 if (skb->tstamp.tv64 == 0)
Joe Perchese3192692012-06-03 17:41:40 +0000610 __net_timestamp(skb);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100611
612 tstamp->start = ktime_to_ns(skb->tstamp);
613 }
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200614 /* Since the lookup is lockless, hash insertion must be done after
615 * starting the timer and setting the CONFIRMED bit. The RCU barriers
616 * guarantee that no other CPU can find the conntrack before the above
617 * stores are visible.
618 */
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100619 __nf_conntrack_hash_insert(ct, hash, reply_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200620 NF_CT_STAT_INC(net, insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800621 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200622
Patrick McHardydf0933d2006-09-20 11:57:53 -0700623 help = nfct_help(ct);
624 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200625 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200626
Patrick McHardydf0933d2006-09-20 11:57:53 -0700627 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200628 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700629 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800630
Patrick McHardydf0933d2006-09-20 11:57:53 -0700631out:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200632 NF_CT_STAT_INC(net, insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800633 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800634 return NF_DROP;
635}
Patrick McHardy13b18332006-12-02 22:11:25 -0800636EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800637
638/* Returns true if a connection correspondings to the tuple (required
639 for NAT). */
640int
641nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
642 const struct nf_conn *ignored_conntrack)
643{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200644 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800645 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100646 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100647 struct nf_conn *ct;
648 u16 zone = nf_ct_zone(ignored_conntrack);
649 unsigned int hash = hash_conntrack(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800650
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800651 /* Disable BHs the entire time since we need to disable them at
652 * least once for the stats anyway.
653 */
654 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100655 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100656 ct = nf_ct_tuplehash_to_ctrack(h);
657 if (ct != ignored_conntrack &&
658 nf_ct_tuple_equal(tuple, &h->tuple) &&
659 nf_ct_zone(ct) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200660 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800661 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800662 return 1;
663 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200664 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800665 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800666 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800667
Patrick McHardyba419af2008-01-31 04:39:23 -0800668 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800669}
Patrick McHardy13b18332006-12-02 22:11:25 -0800670EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800671
Patrick McHardy7ae77302007-07-07 22:37:38 -0700672#define NF_CT_EVICTION_RANGE 8
673
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800674/* There's a small race here where we may free a just-assured
675 connection. Too bad: we're in trouble anyway. */
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200676static noinline int early_drop(struct net *net, unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800677{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700678 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800679 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700680 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100681 struct hlist_nulls_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700682 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800683 int dropped = 0;
684
Patrick McHardy76507f62008-01-31 04:38:38 -0800685 rcu_read_lock();
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800686 for (i = 0; i < net->ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100687 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
688 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700689 tmp = nf_ct_tuplehash_to_ctrack(h);
690 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
691 ct = tmp;
692 cnt++;
693 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800694
Changli Gao5ae27aa22009-11-05 14:51:31 +0100695 if (ct != NULL) {
696 if (likely(!nf_ct_is_dying(ct) &&
697 atomic_inc_not_zero(&ct->ct_general.use)))
698 break;
699 else
700 ct = NULL;
701 }
702
703 if (cnt >= NF_CT_EVICTION_RANGE)
Patrick McHardy7ae77302007-07-07 22:37:38 -0700704 break;
Changli Gao5ae27aa22009-11-05 14:51:31 +0100705
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800706 hash = (hash + 1) % net->ct.htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800707 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800708 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800709
710 if (!ct)
711 return dropped;
712
713 if (del_timer(&ct->timeout)) {
Florian Westphal02982c22013-07-29 15:41:54 +0200714 if (nf_ct_delete(ct, 0, 0)) {
Pablo Neira Ayuso741385112012-03-06 01:22:55 +0000715 dropped = 1;
716 NF_CT_STAT_INC_ATOMIC(net, early_drop);
717 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800718 }
719 nf_ct_put(ct);
720 return dropped;
721}
722
Changli Gaof682cef2011-01-05 04:23:23 +0000723void init_nf_conntrack_hash_rnd(void)
724{
725 unsigned int rand;
726
727 /*
728 * Why not initialize nf_conntrack_rnd in a "init()" function ?
729 * Because there isn't enough entropy when system initializing,
730 * and we initialize it as late as possible.
731 */
732 do {
733 get_random_bytes(&rand, sizeof(rand));
734 } while (!rand);
735 cmpxchg(&nf_conntrack_hash_rnd, 0, rand);
736}
737
Changli Gao99f07e92010-09-21 17:49:20 +0200738static struct nf_conn *
739__nf_conntrack_alloc(struct net *net, u16 zone,
740 const struct nf_conntrack_tuple *orig,
741 const struct nf_conntrack_tuple *repl,
742 gfp_t gfp, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800743{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000744 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800745
Changli Gaob2390962010-09-16 19:55:03 +0200746 if (unlikely(!nf_conntrack_hash_rnd)) {
Changli Gaof682cef2011-01-05 04:23:23 +0000747 init_nf_conntrack_hash_rnd();
Changli Gao99f07e92010-09-21 17:49:20 +0200748 /* recompute the hash as nf_conntrack_hash_rnd is initialized */
749 hash = hash_conntrack_raw(orig, zone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800750 }
751
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700752 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200753 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700754
Patrick McHardy76eb9462008-01-31 04:41:44 -0800755 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200756 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Changli Gao99f07e92010-09-21 17:49:20 +0200757 if (!early_drop(net, hash_bucket(hash, net))) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200758 atomic_dec(&net->ct.count);
Joe Perchese87cc472012-05-13 21:56:26 +0000759 net_warn_ratelimited("nf_conntrack: table full, dropping packet\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800760 return ERR_PTR(-ENOMEM);
761 }
762 }
763
Eric Dumazet941297f2009-07-16 14:03:40 +0200764 /*
765 * Do not use kmem_cache_zalloc(), as this cache uses
766 * SLAB_DESTROY_BY_RCU.
767 */
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800768 ct = kmem_cache_alloc(net->ct.nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800769 if (ct == NULL) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200770 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700771 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800772 }
Eric Dumazet941297f2009-07-16 14:03:40 +0200773 /*
774 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
775 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
776 */
777 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100778 offsetof(struct nf_conn, proto) -
779 offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
Patrick McHardy440f0d52009-06-10 14:32:47 +0200780 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800781 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
Eric Dumazet941297f2009-07-16 14:03:40 +0200782 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800783 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Changli Gao99f07e92010-09-21 17:49:20 +0200784 /* save hash for reusing when confirming */
785 *(unsigned long *)(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev) = hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800786 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800787 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000788 write_pnet(&ct->ct_net, net);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100789#ifdef CONFIG_NF_CONNTRACK_ZONES
790 if (zone) {
791 struct nf_conntrack_zone *nf_ct_zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800792
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100793 nf_ct_zone = nf_ct_ext_add(ct, NF_CT_EXT_ZONE, GFP_ATOMIC);
794 if (!nf_ct_zone)
795 goto out_free;
796 nf_ct_zone->id = zone;
797 }
798#endif
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100799 /* Because we use RCU lookups, we set ct_general.use to zero before
800 * this is inserted in any list.
Eric Dumazet941297f2009-07-16 14:03:40 +0200801 */
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100802 atomic_set(&ct->ct_general.use, 0);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800803 return ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100804
805#ifdef CONFIG_NF_CONNTRACK_ZONES
806out_free:
Pablo Neira Ayusod96fc652012-04-03 16:45:54 +0200807 atomic_dec(&net->ct.count);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100808 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
809 return ERR_PTR(-ENOMEM);
810#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800811}
Changli Gao99f07e92010-09-21 17:49:20 +0200812
813struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
814 const struct nf_conntrack_tuple *orig,
815 const struct nf_conntrack_tuple *repl,
816 gfp_t gfp)
817{
818 return __nf_conntrack_alloc(net, zone, orig, repl, gfp, 0);
819}
Patrick McHardy13b18332006-12-02 22:11:25 -0800820EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800821
Patrick McHardyc88130b2008-01-31 04:42:11 -0800822void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800823{
Eric Dumazet1d452092009-03-24 14:26:50 +0100824 struct net *net = nf_ct_net(ct);
825
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100826 /* A freed object has refcnt == 0, that's
827 * the golden rule for SLAB_DESTROY_BY_RCU
828 */
829 NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 0);
830
Patrick McHardyceeff752008-06-11 17:51:10 -0700831 nf_ct_ext_destroy(ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100832 nf_ct_ext_free(ct);
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800833 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
Pablo Neira Ayuso0c3c6c02013-11-18 12:53:59 +0100834 smp_mb__before_atomic_dec();
835 atomic_dec(&net->ct.count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800836}
Patrick McHardy13b18332006-12-02 22:11:25 -0800837EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800838
Florian Westphalc539f012013-01-11 06:30:44 +0000839
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800840/* Allocate a new conntrack: we return -ENOMEM if classification
841 failed due to stress. Otherwise it really is unclassifiable. */
842static struct nf_conntrack_tuple_hash *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100843init_conntrack(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200844 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800845 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100846 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800847 struct sk_buff *skb,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100848 unsigned int dataoff, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800849{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800850 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700851 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800852 struct nf_conntrack_tuple repl_tuple;
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100853 struct nf_conntrack_ecache *ecache;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800854 struct nf_conntrack_expect *exp;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100855 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100856 struct nf_conn_timeout *timeout_ext;
857 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800858
Martin Josefsson605dcad2006-11-29 02:35:06 +0100859 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700860 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800861 return NULL;
862 }
863
Changli Gao99f07e92010-09-21 17:49:20 +0200864 ct = __nf_conntrack_alloc(net, zone, tuple, &repl_tuple, GFP_ATOMIC,
865 hash);
Joe Perches0a9ee812011-08-29 14:17:25 -0700866 if (IS_ERR(ct))
Patrick McHardyc88130b2008-01-31 04:42:11 -0800867 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800868
Patrick McHardy48b1de42013-08-27 08:50:14 +0200869 if (tmpl && nfct_synproxy(tmpl)) {
870 nfct_seqadj_ext_add(ct);
871 nfct_synproxy_ext_add(ct);
872 }
873
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100874 timeout_ext = tmpl ? nf_ct_timeout_find(tmpl) : NULL;
875 if (timeout_ext)
876 timeouts = NF_CT_TIMEOUT_EXT_DATA(timeout_ext);
877 else
878 timeouts = l4proto->get_timeouts(net);
879
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100880 if (!l4proto->new(ct, skb, dataoff, timeouts)) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800881 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700882 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800883 return NULL;
884 }
885
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100886 if (timeout_ext)
887 nf_ct_timeout_ext_add(ct, timeout_ext->timeout, GFP_ATOMIC);
888
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700889 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100890 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
Florian Westphalc539f012013-01-11 06:30:44 +0000891 nf_ct_labels_ext_add(ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100892
893 ecache = tmpl ? nf_ct_ecache_find(tmpl) : NULL;
894 nf_ct_ecache_ext_add(ct, ecache ? ecache->ctmask : 0,
895 ecache ? ecache->expmask : 0,
896 GFP_ATOMIC);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700897
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800898 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100899 exp = nf_ct_find_expectation(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800900 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700901 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800902 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800903 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800904 __set_bit(IPS_EXPECTED_BIT, &ct->status);
Jesper Dangaard Brouere1b207d2014-03-03 14:45:39 +0100905 /* exp->master safe, refcnt bumped in nf_ct_find_expectation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800906 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700907 if (exp->helper) {
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +0200908 help = nf_ct_helper_ext_add(ct, exp->helper,
909 GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700910 if (help)
Eric Dumazetcf778b02012-01-12 04:41:32 +0000911 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700912 }
913
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800914#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800915 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800916#endif
James Morris7c9728c2006-06-09 00:31:46 -0700917#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800918 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700919#endif
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200920 NF_CT_STAT_INC(net, expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800921 } else {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100922 __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200923 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800924 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800925
Pablo Neira Ayusoe53376b2014-02-03 20:01:53 +0100926 /* Now it is inserted into the unconfirmed list, bump refcount */
927 nf_conntrack_get(&ct->ct_general);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +0100928 nf_ct_add_to_unconfirmed_list(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800929
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800930 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800931
932 if (exp) {
933 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800934 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700935 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800936 }
937
Patrick McHardyc88130b2008-01-31 04:42:11 -0800938 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800939}
940
941/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
942static inline struct nf_conn *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100943resolve_normal_ct(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyana702a652008-10-08 11:35:04 +0200944 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800945 unsigned int dataoff,
946 u_int16_t l3num,
947 u_int8_t protonum,
948 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100949 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800950 int *set_reply,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100951 enum ip_conntrack_info *ctinfo)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800952{
953 struct nf_conntrack_tuple tuple;
954 struct nf_conntrack_tuple_hash *h;
955 struct nf_conn *ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100956 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Changli Gao99f07e92010-09-21 17:49:20 +0200957 u32 hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800958
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300959 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800960 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100961 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700962 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800963 return NULL;
964 }
965
966 /* look for tuple match */
Changli Gao99f07e92010-09-21 17:49:20 +0200967 hash = hash_conntrack_raw(&tuple, zone);
968 h = __nf_conntrack_find_get(net, zone, &tuple, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800969 if (!h) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100970 h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100971 skb, dataoff, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800972 if (!h)
973 return NULL;
974 if (IS_ERR(h))
975 return (void *)h;
976 }
977 ct = nf_ct_tuplehash_to_ctrack(h);
978
979 /* It exists; we have (non-exclusive) reference. */
980 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
Eric Dumazetfb048832011-05-19 15:44:27 +0200981 *ctinfo = IP_CT_ESTABLISHED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800982 /* Please set reply bit if this packet OK */
983 *set_reply = 1;
984 } else {
985 /* Once we've had two way comms, always ESTABLISHED. */
986 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700987 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800988 *ctinfo = IP_CT_ESTABLISHED;
989 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700990 pr_debug("nf_conntrack_in: related packet for %p\n",
991 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800992 *ctinfo = IP_CT_RELATED;
993 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700994 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800995 *ctinfo = IP_CT_NEW;
996 }
997 *set_reply = 0;
998 }
999 skb->nfct = &ct->ct_general;
1000 skb->nfctinfo = *ctinfo;
1001 return ct;
1002}
1003
1004unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +02001005nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
1006 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001007{
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001008 struct nf_conn *ct, *tmpl = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001009 enum ip_conntrack_info ctinfo;
1010 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +01001011 struct nf_conntrack_l4proto *l4proto;
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +01001012 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001013 unsigned int dataoff;
1014 u_int8_t protonum;
1015 int set_reply = 0;
1016 int ret;
1017
Herbert Xu3db05fe2007-10-15 00:53:15 -07001018 if (skb->nfct) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001019 /* Previously seen (loopback or untracked)? Ignore. */
1020 tmpl = (struct nf_conn *)skb->nfct;
1021 if (!nf_ct_is_template(tmpl)) {
1022 NF_CT_STAT_INC_ATOMIC(net, ignore);
1023 return NF_ACCEPT;
1024 }
1025 skb->nfct = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001026 }
1027
Patrick McHardy923f4902007-02-12 11:12:57 -08001028 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001029 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -07001030 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -07001031 &dataoff, &protonum);
1032 if (ret <= 0) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001033 pr_debug("not prepared to track yet or error occurred\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001034 NF_CT_STAT_INC_ATOMIC(net, error);
1035 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001036 ret = -ret;
1037 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001038 }
1039
Jan Engelhardt76108ce2008-10-08 11:35:00 +02001040 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001041
1042 /* It may be an special packet, error, unclean...
1043 * inverse of the return code tells to the netfilter
1044 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +02001045 if (l4proto->error != NULL) {
Patrick McHardy8fea97e2010-02-15 17:45:08 +01001046 ret = l4proto->error(net, tmpl, skb, dataoff, &ctinfo,
1047 pf, hooknum);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +02001048 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001049 NF_CT_STAT_INC_ATOMIC(net, error);
1050 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001051 ret = -ret;
1052 goto out;
Alexey Dobriyan74c51a12008-10-08 11:35:05 +02001053 }
Pablo Neira Ayuso88ed01d2011-06-02 15:08:45 +02001054 /* ICMP[v6] protocol trackers may assign one conntrack. */
1055 if (skb->nfct)
1056 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001057 }
1058
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001059 ct = resolve_normal_ct(net, tmpl, skb, dataoff, pf, protonum,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001060 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001061 if (!ct) {
1062 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001063 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001064 ret = NF_ACCEPT;
1065 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001066 }
1067
1068 if (IS_ERR(ct)) {
1069 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001070 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001071 ret = NF_DROP;
1072 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001073 }
1074
Herbert Xu3db05fe2007-10-15 00:53:15 -07001075 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001076
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001077 /* Decide what timeout policy we want to apply to this flow. */
Pablo Neira Ayuso84b5ee92012-08-28 00:53:15 +00001078 timeouts = nf_ct_timeout_lookup(net, ct, l4proto);
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001079
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +01001080 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum, timeouts);
Christoph Paaschec8d5402009-03-16 15:51:29 +01001081 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001082 /* Invalid: inverse of the return code tells
1083 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -07001084 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -07001085 nf_conntrack_put(skb->nfct);
1086 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001087 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +01001088 if (ret == -NF_DROP)
1089 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001090 ret = -ret;
1091 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001092 }
1093
1094 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Patrick McHardy858b31332010-02-03 13:48:53 +01001095 nf_conntrack_event_cache(IPCT_REPLY, ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001096out:
Pablo Neira Ayusoc3174282011-02-09 08:08:20 +01001097 if (tmpl) {
1098 /* Special case: we have to repeat this hook, assign the
1099 * template again to this packet. We assume that this packet
1100 * has no conntrack assigned. This is used by nf_ct_tcp. */
1101 if (ret == NF_REPEAT)
1102 skb->nfct = (struct nf_conntrack *)tmpl;
1103 else
1104 nf_ct_put(tmpl);
1105 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001106
1107 return ret;
1108}
Patrick McHardy13b18332006-12-02 22:11:25 -08001109EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001110
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001111bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
1112 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001113{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001114 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -08001115
1116 rcu_read_lock();
1117 ret = nf_ct_invert_tuple(inverse, orig,
1118 __nf_ct_l3proto_find(orig->src.l3num),
1119 __nf_ct_l4proto_find(orig->src.l3num,
1120 orig->dst.protonum));
1121 rcu_read_unlock();
1122 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001123}
Patrick McHardy13b18332006-12-02 22:11:25 -08001124EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001125
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001126/* Alter reply tuple (maybe alter helper). This is for NAT, and is
1127 implicitly racy: see __nf_conntrack_confirm */
1128void nf_conntrack_alter_reply(struct nf_conn *ct,
1129 const struct nf_conntrack_tuple *newreply)
1130{
1131 struct nf_conn_help *help = nfct_help(ct);
1132
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001133 /* Should be unconfirmed, so not in hash table yet */
1134 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
1135
Patrick McHardy0d537782007-07-07 22:39:38 -07001136 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +02001137 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001138
1139 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +02001140 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001141 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001142
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001143 rcu_read_lock();
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001144 __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001145 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001146}
Patrick McHardy13b18332006-12-02 22:11:25 -08001147EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001148
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001149/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
1150void __nf_ct_refresh_acct(struct nf_conn *ct,
1151 enum ip_conntrack_info ctinfo,
1152 const struct sk_buff *skb,
1153 unsigned long extra_jiffies,
1154 int do_acct)
1155{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001156 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
1157 NF_CT_ASSERT(skb);
1158
Eric Leblond997ae832006-05-29 18:24:20 -07001159 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -08001160 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
1161 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -07001162
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001163 /* If not in hash table, timer will not be active yet */
1164 if (!nf_ct_is_confirmed(ct)) {
1165 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001166 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +01001167 unsigned long newtime = jiffies + extra_jiffies;
1168
1169 /* Only update the timeout if the new timeout is at least
1170 HZ jiffies from the old timeout. Need del_timer for race
1171 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001172 if (newtime - ct->timeout.expires >= HZ)
1173 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001174 }
1175
Patrick McHardy47d95042008-01-31 04:36:31 -08001176acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001177 if (do_acct) {
Holger Eitzenbergerf7b13e42013-09-26 17:31:51 +02001178 struct nf_conn_acct *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +01001179
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001180 acct = nf_conn_acct_find(ct);
1181 if (acct) {
Holger Eitzenbergerf7b13e42013-09-26 17:31:51 +02001182 struct nf_conn_counter *counter = acct->counter;
1183
1184 atomic64_inc(&counter[CTINFO2DIR(ctinfo)].packets);
1185 atomic64_add(skb->len, &counter[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001186 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001187 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001188}
Patrick McHardy13b18332006-12-02 22:11:25 -08001189EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001190
David S. Miller4c889492008-07-14 20:22:38 -07001191bool __nf_ct_kill_acct(struct nf_conn *ct,
1192 enum ip_conntrack_info ctinfo,
1193 const struct sk_buff *skb,
1194 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -07001195{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001196 if (do_acct) {
Holger Eitzenbergerf7b13e42013-09-26 17:31:51 +02001197 struct nf_conn_acct *acct;
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001198
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001199 acct = nf_conn_acct_find(ct);
1200 if (acct) {
Holger Eitzenbergerf7b13e42013-09-26 17:31:51 +02001201 struct nf_conn_counter *counter = acct->counter;
1202
1203 atomic64_inc(&counter[CTINFO2DIR(ctinfo)].packets);
Eric Dumazetb3e0bfa2011-12-14 14:45:20 +01001204 atomic64_add(skb->len - skb_network_offset(skb),
Holger Eitzenbergerf7b13e42013-09-26 17:31:51 +02001205 &counter[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001206 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001207 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001208
David S. Miller4c889492008-07-14 20:22:38 -07001209 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -07001210 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -07001211 return true;
1212 }
1213 return false;
Patrick McHardy51091762008-06-09 15:59:06 -07001214}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001215EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -07001216
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001217#ifdef CONFIG_NF_CONNTRACK_ZONES
1218static struct nf_ct_ext_type nf_ct_zone_extend __read_mostly = {
1219 .len = sizeof(struct nf_conntrack_zone),
1220 .align = __alignof__(struct nf_conntrack_zone),
1221 .id = NF_CT_EXT_ZONE,
1222};
1223#endif
1224
Igor Maravićc0cd1152011-12-12 02:58:24 +00001225#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001226
1227#include <linux/netfilter/nfnetlink.h>
1228#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -08001229#include <linux/mutex.h>
1230
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001231/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
1232 * in ip_conntrack_core, since we don't want the protocols to autoload
1233 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -07001234int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001235 const struct nf_conntrack_tuple *tuple)
1236{
David S. Millerbae65be2012-04-01 18:58:28 -04001237 if (nla_put_be16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port) ||
1238 nla_put_be16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port))
1239 goto nla_put_failure;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001240 return 0;
1241
Patrick McHardydf6fb862007-09-28 14:37:03 -07001242nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001243 return -1;
1244}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001245EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001246
Patrick McHardyf73e9242007-09-28 14:39:55 -07001247const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
1248 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
1249 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001250};
Patrick McHardyf73e9242007-09-28 14:39:55 -07001251EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001252
Patrick McHardyfdf70832007-09-28 14:37:41 -07001253int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001254 struct nf_conntrack_tuple *t)
1255{
Patrick McHardydf6fb862007-09-28 14:37:03 -07001256 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001257 return -EINVAL;
1258
Patrick McHardy77236b62007-12-17 22:29:45 -08001259 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
1260 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001261
1262 return 0;
1263}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001264EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +01001265
1266int nf_ct_port_nlattr_tuple_size(void)
1267{
1268 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1269}
1270EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001271#endif
1272
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001273/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardy312a0c162013-07-28 22:54:08 +02001274static void nf_conntrack_attach(struct sk_buff *nskb, const struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001275{
1276 struct nf_conn *ct;
1277 enum ip_conntrack_info ctinfo;
1278
1279 /* This ICMP is in reverse direction to the packet which caused it */
1280 ct = nf_ct_get(skb, &ctinfo);
1281 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
Eric Dumazetfb048832011-05-19 15:44:27 +02001282 ctinfo = IP_CT_RELATED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001283 else
1284 ctinfo = IP_CT_RELATED;
1285
1286 /* Attach to new skbuff, and increment count */
1287 nskb->nfct = &ct->ct_general;
1288 nskb->nfctinfo = ctinfo;
1289 nf_conntrack_get(nskb->nfct);
1290}
1291
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001292/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001293static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001294get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001295 void *data, unsigned int *bucket)
1296{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001297 struct nf_conntrack_tuple_hash *h;
1298 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +01001299 struct hlist_nulls_node *n;
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001300 int cpu;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001301
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001302 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001303 for (; *bucket < net->ct.htable_size; (*bucket)++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001304 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
Patrick McHardyb0cdb1d2012-09-19 20:57:04 +00001305 if (NF_CT_DIRECTION(h) != IP_CT_DIR_ORIGINAL)
1306 continue;
Patrick McHardydf0933d2006-09-20 11:57:53 -07001307 ct = nf_ct_tuplehash_to_ctrack(h);
1308 if (iter(ct, data))
1309 goto found;
1310 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001311 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001312 spin_unlock_bh(&nf_conntrack_lock);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001313
1314 for_each_possible_cpu(cpu) {
1315 struct ct_pcpu *pcpu = per_cpu_ptr(net->ct.pcpu_lists, cpu);
1316
1317 spin_lock_bh(&pcpu->lock);
1318 hlist_nulls_for_each_entry(h, n, &pcpu->unconfirmed, hnnode) {
1319 ct = nf_ct_tuplehash_to_ctrack(h);
1320 if (iter(ct, data))
1321 set_bit(IPS_DYING_BIT, &ct->status);
1322 }
1323 spin_unlock_bh(&pcpu->lock);
1324 }
Patrick McHardydf0933d2006-09-20 11:57:53 -07001325 return NULL;
1326found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001327 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001328 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001329 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001330}
1331
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001332void nf_ct_iterate_cleanup(struct net *net,
1333 int (*iter)(struct nf_conn *i, void *data),
Florian Westphalc655bc62013-07-29 15:41:55 +02001334 void *data, u32 portid, int report)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001335{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001336 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001337 unsigned int bucket = 0;
1338
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001339 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001340 /* Time to push up daises... */
1341 if (del_timer(&ct->timeout))
Florian Westphalc655bc62013-07-29 15:41:55 +02001342 nf_ct_delete(ct, portid, report);
Florian Westphal02982c22013-07-29 15:41:54 +02001343
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001344 /* ... else the timer will get him soon. */
1345
1346 nf_ct_put(ct);
1347 }
1348}
Patrick McHardy13b18332006-12-02 22:11:25 -08001349EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001350
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001351static int kill_all(struct nf_conn *i, void *data)
1352{
1353 return 1;
1354}
1355
Patrick McHardyd862a662011-01-14 15:45:56 +01001356void nf_ct_free_hashtable(void *hash, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001357{
Patrick McHardyd862a662011-01-14 15:45:56 +01001358 if (is_vmalloc_addr(hash))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001359 vfree(hash);
1360 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001361 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001362 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001363}
Patrick McHardyac565e52007-07-07 22:30:08 -07001364EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001365
Patrick McHardyec464e52013-04-17 06:47:08 +00001366void nf_conntrack_flush_report(struct net *net, u32 portid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001367{
Florian Westphalc655bc62013-07-29 15:41:55 +02001368 nf_ct_iterate_cleanup(net, kill_all, NULL, portid, report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001369}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001370EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001371
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001372static void nf_ct_release_dying_list(struct net *net)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001373{
1374 struct nf_conntrack_tuple_hash *h;
1375 struct nf_conn *ct;
1376 struct hlist_nulls_node *n;
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001377 int cpu;
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001378
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001379 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->dying, hnnode) {
1384 ct = nf_ct_tuplehash_to_ctrack(h);
1385 /* never fails to remove them, no listeners at this point */
1386 nf_ct_kill(ct);
1387 }
1388 spin_unlock_bh(&pcpu->lock);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001389 }
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001390}
1391
Eric Dumazetb3c51632010-06-09 14:43:38 +02001392static int untrack_refs(void)
1393{
1394 int cnt = 0, cpu;
1395
1396 for_each_possible_cpu(cpu) {
1397 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
1398
1399 cnt += atomic_read(&ct->ct_general.use) - 1;
1400 }
1401 return cnt;
1402}
1403
Gao fengf94161c2013-01-21 22:10:24 +00001404void nf_conntrack_cleanup_start(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001405{
Gao fengf94161c2013-01-21 22:10:24 +00001406 RCU_INIT_POINTER(ip_ct_attach, NULL);
1407}
1408
1409void nf_conntrack_cleanup_end(void)
1410{
1411 RCU_INIT_POINTER(nf_ct_destroy, NULL);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001412 while (untrack_refs() > 0)
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001413 schedule();
1414
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001415#ifdef CONFIG_NF_CONNTRACK_ZONES
1416 nf_ct_extend_unregister(&nf_ct_zone_extend);
1417#endif
Gao feng04d87002013-01-21 22:10:32 +00001418 nf_conntrack_proto_fini();
Patrick McHardy41d73ec2013-08-27 08:50:12 +02001419 nf_conntrack_seqadj_fini();
Gao feng5f69b8f2013-01-21 22:10:31 +00001420 nf_conntrack_labels_fini();
Gao feng5e615b22013-01-21 22:10:30 +00001421 nf_conntrack_helper_fini();
Gao feng86840942013-01-21 22:10:29 +00001422 nf_conntrack_timeout_fini();
Gao feng3fe0f942013-01-21 22:10:28 +00001423 nf_conntrack_ecache_fini();
Gao feng73f40012013-01-21 22:10:27 +00001424 nf_conntrack_tstamp_fini();
Gao fengb7ff3a12013-01-21 22:10:26 +00001425 nf_conntrack_acct_fini();
Gao feng83b4dbe2013-01-21 22:10:25 +00001426 nf_conntrack_expect_fini();
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001427}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001428
Gao fengf94161c2013-01-21 22:10:24 +00001429/*
1430 * Mishearing the voices in his head, our hero wonders how he's
1431 * supposed to kill the mall.
1432 */
1433void nf_conntrack_cleanup_net(struct net *net)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001434{
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001435 LIST_HEAD(single);
1436
1437 list_add(&net->exit_list, &single);
1438 nf_conntrack_cleanup_net_list(&single);
1439}
1440
1441void nf_conntrack_cleanup_net_list(struct list_head *net_exit_list)
1442{
1443 int busy;
1444 struct net *net;
1445
Gao fengf94161c2013-01-21 22:10:24 +00001446 /*
1447 * This makes sure all current packets have passed through
1448 * netfilter framework. Roll on, two-stage module
1449 * delete...
1450 */
1451 synchronize_net();
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001452i_see_dead_people:
1453 busy = 0;
1454 list_for_each_entry(net, net_exit_list, exit_list) {
Florian Westphalc655bc62013-07-29 15:41:55 +02001455 nf_ct_iterate_cleanup(net, kill_all, NULL, 0, 0);
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001456 nf_ct_release_dying_list(net);
1457 if (atomic_read(&net->ct.count) != 0)
1458 busy = 1;
1459 }
1460 if (busy) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001461 schedule();
1462 goto i_see_dead_people;
1463 }
1464
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001465 list_for_each_entry(net, net_exit_list, exit_list) {
1466 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
1467 nf_conntrack_proto_pernet_fini(net);
1468 nf_conntrack_helper_pernet_fini(net);
1469 nf_conntrack_ecache_pernet_fini(net);
1470 nf_conntrack_tstamp_pernet_fini(net);
1471 nf_conntrack_acct_pernet_fini(net);
1472 nf_conntrack_expect_pernet_fini(net);
1473 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1474 kfree(net->ct.slabname);
1475 free_percpu(net->ct.stat);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001476 free_percpu(net->ct.pcpu_lists);
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001477 }
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001478}
1479
Patrick McHardyd862a662011-01-14 15:45:56 +01001480void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001481{
Eric Dumazetea781f12009-03-25 21:05:46 +01001482 struct hlist_nulls_head *hash;
1483 unsigned int nr_slots, i;
1484 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001485
Eric Dumazetea781f12009-03-25 21:05:46 +01001486 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1487 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1488 sz = nr_slots * sizeof(struct hlist_nulls_head);
1489 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1490 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001491 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001492 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazet966567b2011-12-19 16:01:38 -05001493 hash = vzalloc(sz);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001494 }
1495
Eric Dumazetea781f12009-03-25 21:05:46 +01001496 if (hash && nulls)
1497 for (i = 0; i < nr_slots; i++)
1498 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001499
1500 return hash;
1501}
Patrick McHardyac565e52007-07-07 22:30:08 -07001502EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001503
Patrick McHardyfae718d2007-12-24 21:09:10 -08001504int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001505{
Abhijit Pawar4b5511e2012-12-09 23:12:28 +00001506 int i, bucket, rc;
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001507 unsigned int hashsize, old_size;
Eric Dumazetea781f12009-03-25 21:05:46 +01001508 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001509 struct nf_conntrack_tuple_hash *h;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001510 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001511
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001512 if (current->nsproxy->net_ns != &init_net)
1513 return -EOPNOTSUPP;
1514
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001515 /* On boot, we can set this without any fancy locking. */
1516 if (!nf_conntrack_htable_size)
1517 return param_set_uint(val, kp);
1518
Abhijit Pawar4b5511e2012-12-09 23:12:28 +00001519 rc = kstrtouint(val, 0, &hashsize);
1520 if (rc)
1521 return rc;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001522 if (!hashsize)
1523 return -EINVAL;
1524
Patrick McHardyd862a662011-01-14 15:45:56 +01001525 hash = nf_ct_alloc_hashtable(&hashsize, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001526 if (!hash)
1527 return -ENOMEM;
1528
Patrick McHardy76507f62008-01-31 04:38:38 -08001529 /* Lookups in the old hash might happen in parallel, which means we
1530 * might get false negatives during connection lookup. New connections
1531 * created because of a false negative won't make it into the hash
1532 * though since that required taking the lock.
1533 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001534 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001535 for (i = 0; i < init_net.ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001536 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1537 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1538 struct nf_conntrack_tuple_hash, hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001539 ct = nf_ct_tuplehash_to_ctrack(h);
Eric Dumazetea781f12009-03-25 21:05:46 +01001540 hlist_nulls_del_rcu(&h->hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001541 bucket = __hash_conntrack(&h->tuple, nf_ct_zone(ct),
Changli Gao99f07e92010-09-21 17:49:20 +02001542 hashsize);
Eric Dumazetea781f12009-03-25 21:05:46 +01001543 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001544 }
1545 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001546 old_size = init_net.ct.htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001547 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001548
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001549 init_net.ct.htable_size = nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001550 init_net.ct.hash = hash;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001551 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001552
Patrick McHardyd862a662011-01-14 15:45:56 +01001553 nf_ct_free_hashtable(old_hash, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001554 return 0;
1555}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001556EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001557
Patrick McHardyfae718d2007-12-24 21:09:10 -08001558module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001559 &nf_conntrack_htable_size, 0600);
1560
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001561void nf_ct_untracked_status_or(unsigned long bits)
1562{
Eric Dumazetb3c51632010-06-09 14:43:38 +02001563 int cpu;
1564
1565 for_each_possible_cpu(cpu)
1566 per_cpu(nf_conntrack_untracked, cpu).status |= bits;
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001567}
1568EXPORT_SYMBOL_GPL(nf_ct_untracked_status_or);
1569
Gao fengf94161c2013-01-21 22:10:24 +00001570int nf_conntrack_init_start(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001571{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001572 int max_factor = 8;
Eric Dumazetb3c51632010-06-09 14:43:38 +02001573 int ret, cpu;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001574
1575 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001576 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001577 if (!nf_conntrack_htable_size) {
1578 nf_conntrack_htable_size
Jan Beulich44813742009-09-21 17:03:05 -07001579 = (((totalram_pages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001580 / sizeof(struct hlist_head));
Jan Beulich44813742009-09-21 17:03:05 -07001581 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001582 nf_conntrack_htable_size = 16384;
1583 if (nf_conntrack_htable_size < 32)
1584 nf_conntrack_htable_size = 32;
1585
1586 /* Use a max. factor of four by default to get the same max as
1587 * with the old struct list_heads. When a table size is given
1588 * we use the old value of 8 to avoid reducing the max.
1589 * entries. */
1590 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001591 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001592 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001593
Stephen Hemminger654d0fb2010-05-13 15:02:08 +02001594 printk(KERN_INFO "nf_conntrack version %s (%u buckets, %d max)\n",
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001595 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1596 nf_conntrack_max);
Gao feng83b4dbe2013-01-21 22:10:25 +00001597
1598 ret = nf_conntrack_expect_init();
1599 if (ret < 0)
1600 goto err_expect;
1601
Gao fengb7ff3a12013-01-21 22:10:26 +00001602 ret = nf_conntrack_acct_init();
1603 if (ret < 0)
1604 goto err_acct;
1605
Gao feng73f40012013-01-21 22:10:27 +00001606 ret = nf_conntrack_tstamp_init();
1607 if (ret < 0)
1608 goto err_tstamp;
1609
Gao feng3fe0f942013-01-21 22:10:28 +00001610 ret = nf_conntrack_ecache_init();
1611 if (ret < 0)
1612 goto err_ecache;
1613
Gao feng86840942013-01-21 22:10:29 +00001614 ret = nf_conntrack_timeout_init();
1615 if (ret < 0)
1616 goto err_timeout;
1617
Gao feng5e615b22013-01-21 22:10:30 +00001618 ret = nf_conntrack_helper_init();
1619 if (ret < 0)
1620 goto err_helper;
1621
Gao feng5f69b8f2013-01-21 22:10:31 +00001622 ret = nf_conntrack_labels_init();
1623 if (ret < 0)
1624 goto err_labels;
1625
Patrick McHardy41d73ec2013-08-27 08:50:12 +02001626 ret = nf_conntrack_seqadj_init();
1627 if (ret < 0)
1628 goto err_seqadj;
1629
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001630#ifdef CONFIG_NF_CONNTRACK_ZONES
1631 ret = nf_ct_extend_register(&nf_ct_zone_extend);
1632 if (ret < 0)
1633 goto err_extend;
1634#endif
Gao feng04d87002013-01-21 22:10:32 +00001635 ret = nf_conntrack_proto_init();
1636 if (ret < 0)
1637 goto err_proto;
1638
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001639 /* Set up fake conntrack: to never be deleted, not in any hashes */
Eric Dumazetb3c51632010-06-09 14:43:38 +02001640 for_each_possible_cpu(cpu) {
1641 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001642 write_pnet(&ct->ct_net, &init_net);
1643 atomic_set(&ct->ct_general.use, 1);
1644 }
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001645 /* - and look it like as a confirmed connection */
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001646 nf_ct_untracked_status_or(IPS_CONFIRMED | IPS_UNTRACKED);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001647 return 0;
1648
Gao feng04d87002013-01-21 22:10:32 +00001649err_proto:
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001650#ifdef CONFIG_NF_CONNTRACK_ZONES
Gao feng04d87002013-01-21 22:10:32 +00001651 nf_ct_extend_unregister(&nf_ct_zone_extend);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001652err_extend:
Eric Leblonda9006892012-04-18 11:20:41 +02001653#endif
Patrick McHardy41d73ec2013-08-27 08:50:12 +02001654 nf_conntrack_seqadj_fini();
1655err_seqadj:
Gao feng04d87002013-01-21 22:10:32 +00001656 nf_conntrack_labels_fini();
Gao feng5f69b8f2013-01-21 22:10:31 +00001657err_labels:
1658 nf_conntrack_helper_fini();
Gao feng5e615b22013-01-21 22:10:30 +00001659err_helper:
1660 nf_conntrack_timeout_fini();
Gao feng86840942013-01-21 22:10:29 +00001661err_timeout:
1662 nf_conntrack_ecache_fini();
Gao feng3fe0f942013-01-21 22:10:28 +00001663err_ecache:
1664 nf_conntrack_tstamp_fini();
Gao feng73f40012013-01-21 22:10:27 +00001665err_tstamp:
1666 nf_conntrack_acct_fini();
Gao fengb7ff3a12013-01-21 22:10:26 +00001667err_acct:
1668 nf_conntrack_expect_fini();
Gao feng83b4dbe2013-01-21 22:10:25 +00001669err_expect:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001670 return ret;
1671}
1672
Gao fengf94161c2013-01-21 22:10:24 +00001673void nf_conntrack_init_end(void)
1674{
1675 /* For use by REJECT target */
1676 RCU_INIT_POINTER(ip_ct_attach, nf_conntrack_attach);
1677 RCU_INIT_POINTER(nf_ct_destroy, destroy_conntrack);
Gao fengf94161c2013-01-21 22:10:24 +00001678}
1679
Eric Dumazet8cc20192009-06-22 14:13:55 +02001680/*
1681 * We need to use special "null" values, not used in hash table
1682 */
1683#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1684#define DYING_NULLS_VAL ((1<<30)+1)
Pablo Neira Ayuso252b3e82012-12-11 04:07:42 +00001685#define TEMPLATE_NULLS_VAL ((1<<30)+2)
Eric Dumazet8cc20192009-06-22 14:13:55 +02001686
Gao fengf94161c2013-01-21 22:10:24 +00001687int nf_conntrack_init_net(struct net *net)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001688{
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001689 int ret = -ENOMEM;
1690 int cpu;
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001691
1692 atomic_set(&net->ct.count, 0);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001693
1694 net->ct.pcpu_lists = alloc_percpu(struct ct_pcpu);
1695 if (!net->ct.pcpu_lists)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001696 goto err_stat;
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001697
1698 for_each_possible_cpu(cpu) {
1699 struct ct_pcpu *pcpu = per_cpu_ptr(net->ct.pcpu_lists, cpu);
1700
1701 spin_lock_init(&pcpu->lock);
1702 INIT_HLIST_NULLS_HEAD(&pcpu->unconfirmed, UNCONFIRMED_NULLS_VAL);
1703 INIT_HLIST_NULLS_HEAD(&pcpu->dying, DYING_NULLS_VAL);
1704 INIT_HLIST_NULLS_HEAD(&pcpu->tmpl, TEMPLATE_NULLS_VAL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001705 }
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001706
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001707 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1708 if (!net->ct.stat)
1709 goto err_pcpu_lists;
1710
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001711 net->ct.slabname = kasprintf(GFP_KERNEL, "nf_conntrack_%p", net);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001712 if (!net->ct.slabname)
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001713 goto err_slabname;
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001714
1715 net->ct.nf_conntrack_cachep = kmem_cache_create(net->ct.slabname,
1716 sizeof(struct nf_conn), 0,
1717 SLAB_DESTROY_BY_RCU, NULL);
1718 if (!net->ct.nf_conntrack_cachep) {
1719 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001720 goto err_cache;
1721 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001722
1723 net->ct.htable_size = nf_conntrack_htable_size;
Patrick McHardyd862a662011-01-14 15:45:56 +01001724 net->ct.hash = nf_ct_alloc_hashtable(&net->ct.htable_size, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001725 if (!net->ct.hash) {
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001726 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1727 goto err_hash;
1728 }
Gao feng83b4dbe2013-01-21 22:10:25 +00001729 ret = nf_conntrack_expect_pernet_init(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001730 if (ret < 0)
1731 goto err_expect;
Gao fengb7ff3a12013-01-21 22:10:26 +00001732 ret = nf_conntrack_acct_pernet_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001733 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001734 goto err_acct;
Gao feng73f40012013-01-21 22:10:27 +00001735 ret = nf_conntrack_tstamp_pernet_init(net);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001736 if (ret < 0)
1737 goto err_tstamp;
Gao feng3fe0f942013-01-21 22:10:28 +00001738 ret = nf_conntrack_ecache_pernet_init(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001739 if (ret < 0)
1740 goto err_ecache;
Gao feng5e615b22013-01-21 22:10:30 +00001741 ret = nf_conntrack_helper_pernet_init(net);
Eric Leblonda9006892012-04-18 11:20:41 +02001742 if (ret < 0)
1743 goto err_helper;
Gao feng04d87002013-01-21 22:10:32 +00001744 ret = nf_conntrack_proto_pernet_init(net);
Gao fengf94161c2013-01-21 22:10:24 +00001745 if (ret < 0)
1746 goto err_proto;
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001747 return 0;
Florian Westphalc539f012013-01-11 06:30:44 +00001748
Gao fengf94161c2013-01-21 22:10:24 +00001749err_proto:
Gao feng5e615b22013-01-21 22:10:30 +00001750 nf_conntrack_helper_pernet_fini(net);
Eric Leblonda9006892012-04-18 11:20:41 +02001751err_helper:
Gao feng3fe0f942013-01-21 22:10:28 +00001752 nf_conntrack_ecache_pernet_fini(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001753err_ecache:
Gao feng73f40012013-01-21 22:10:27 +00001754 nf_conntrack_tstamp_pernet_fini(net);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001755err_tstamp:
Gao fengb7ff3a12013-01-21 22:10:26 +00001756 nf_conntrack_acct_pernet_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001757err_acct:
Gao feng83b4dbe2013-01-21 22:10:25 +00001758 nf_conntrack_expect_pernet_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001759err_expect:
Patrick McHardyd862a662011-01-14 15:45:56 +01001760 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001761err_hash:
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001762 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1763err_cache:
1764 kfree(net->ct.slabname);
1765err_slabname:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001766 free_percpu(net->ct.stat);
Jesper Dangaard Brouerb7779d02014-03-03 14:45:20 +01001767err_pcpu_lists:
1768 free_percpu(net->ct.pcpu_lists);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001769err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001770 return ret;
1771}