blob: 5d892febd64ca88d957d6eeffac5de12daeaff77 [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 McHardyc7232c92012-08-26 19:14:06 +020063int (*nf_nat_seq_adjust_hook)(struct sk_buff *skb,
64 struct nf_conn *ct,
65 enum ip_conntrack_info ctinfo,
66 unsigned int protoff);
67EXPORT_SYMBOL_GPL(nf_nat_seq_adjust_hook);
68
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080069DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080070EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080071
Martin Josefssone2b76062006-11-29 02:35:04 +010072unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080073EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
74
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +010075unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010076EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080077
Eric Dumazetb3c51632010-06-09 14:43:38 +020078DEFINE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
79EXPORT_PER_CPU_SYMBOL(nf_conntrack_untracked);
Patrick McHardy13b18332006-12-02 22:11:25 -080080
Changli Gaof682cef2011-01-05 04:23:23 +000081unsigned int nf_conntrack_hash_rnd __read_mostly;
Patrick McHardy4d4e61c2011-12-23 14:00:13 +010082EXPORT_SYMBOL_GPL(nf_conntrack_hash_rnd);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083
Changli Gao99f07e92010-09-21 17:49:20 +020084static u32 hash_conntrack_raw(const struct nf_conntrack_tuple *tuple, u16 zone)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080085{
Patrick McHardy07949352008-01-31 04:40:52 -080086 unsigned int n;
Sami Farin9b887902007-03-14 16:43:00 -070087
Patrick McHardy07949352008-01-31 04:40:52 -080088 /* The direction must be ignored, so we hash everything up to the
89 * destination ports (which is a multiple of 4) and treat the last
90 * three bytes manually.
91 */
92 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
Changli Gao99f07e92010-09-21 17:49:20 +020093 return jhash2((u32 *)tuple, n, zone ^ nf_conntrack_hash_rnd ^
94 (((__force __u16)tuple->dst.u.all << 16) |
95 tuple->dst.protonum));
96}
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080097
Changli Gao99f07e92010-09-21 17:49:20 +020098static u32 __hash_bucket(u32 hash, unsigned int size)
99{
100 return ((u64)hash * size) >> 32;
101}
102
103static u32 hash_bucket(u32 hash, const struct net *net)
104{
105 return __hash_bucket(hash, net->ct.htable_size);
106}
107
108static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
109 u16 zone, unsigned int size)
110{
111 return __hash_bucket(hash_conntrack_raw(tuple, zone), size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800112}
113
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100114static inline u_int32_t hash_conntrack(const struct net *net, u16 zone,
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800115 const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800116{
Changli Gao99f07e92010-09-21 17:49:20 +0200117 return __hash_conntrack(tuple, zone, net->ct.htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800118}
119
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200120bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800121nf_ct_get_tuple(const struct sk_buff *skb,
122 unsigned int nhoff,
123 unsigned int dataoff,
124 u_int16_t l3num,
125 u_int8_t protonum,
126 struct nf_conntrack_tuple *tuple,
127 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100128 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800129{
Philip Craig443a70d2008-04-29 03:35:10 -0700130 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800131
132 tuple->src.l3num = l3num;
133 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200134 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800135
136 tuple->dst.protonum = protonum;
137 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
138
Martin Josefsson605dcad2006-11-29 02:35:06 +0100139 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800140}
Patrick McHardy13b18332006-12-02 22:11:25 -0800141EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800142
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200143bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
144 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700145{
146 struct nf_conntrack_l3proto *l3proto;
147 struct nf_conntrack_l4proto *l4proto;
148 unsigned int protoff;
149 u_int8_t protonum;
150 int ret;
151
152 rcu_read_lock();
153
154 l3proto = __nf_ct_l3proto_find(l3num);
155 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
156 if (ret != NF_ACCEPT) {
157 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200158 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700159 }
160
161 l4proto = __nf_ct_l4proto_find(l3num, protonum);
162
163 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
164 l3proto, l4proto);
165
166 rcu_read_unlock();
167 return ret;
168}
169EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
170
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200171bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800172nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
173 const struct nf_conntrack_tuple *orig,
174 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100175 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800176{
Philip Craig443a70d2008-04-29 03:35:10 -0700177 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800178
179 inverse->src.l3num = orig->src.l3num;
180 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200181 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800182
183 inverse->dst.dir = !orig->dst.dir;
184
185 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100186 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800187}
Patrick McHardy13b18332006-12-02 22:11:25 -0800188EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800189
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800190static void
191clean_from_lists(struct nf_conn *ct)
192{
Patrick McHardy0d537782007-07-07 22:39:38 -0700193 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100194 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
195 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800196
197 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800198 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800199}
200
201static void
202destroy_conntrack(struct nf_conntrack *nfct)
203{
204 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200205 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100206 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800207
Patrick McHardy0d537782007-07-07 22:39:38 -0700208 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800209 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
210 NF_CT_ASSERT(!timer_pending(&ct->timeout));
211
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800212 /* To make sure we don't get any weird locking issues here:
213 * destroy_conntrack() MUST NOT be called with a write lock
214 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800215 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200216 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100217 if (l4proto && l4proto->destroy)
218 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800219
Patrick McHardy982d9a92007-02-12 11:14:11 -0800220 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800221
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800222 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800223 /* Expectations will have been removed in clean_from_lists,
224 * except TFTP can create an expectation on the first packet,
225 * before connection is in the list, so we need to clean here,
226 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800227 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800228
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100229 /* We overload first tuple to link into unconfirmed or dying list.*/
230 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
231 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800232
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200233 NF_CT_STAT_INC(net, delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800234 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800235
236 if (ct->master)
237 nf_ct_put(ct->master);
238
Patrick McHardy0d537782007-07-07 22:39:38 -0700239 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800240 nf_conntrack_free(ct);
241}
242
Florian Westphal02982c22013-07-29 15:41:54 +0200243static void nf_ct_delete_from_lists(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800244{
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200245 struct net *net = nf_ct_net(ct);
Patrick McHardy5397e972007-05-19 14:23:52 -0700246
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200247 nf_ct_helper_destroy(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800248 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800249 /* Inside lock so preempt is disabled on module removal path.
250 * Otherwise we can get spurious warnings. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200251 NF_CT_STAT_INC(net, delete_list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800252 clean_from_lists(ct);
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100253 /* add this conntrack to the dying list */
254 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
255 &net->ct.dying);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800256 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200257}
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200258
259static void death_by_event(unsigned long ul_conntrack)
260{
261 struct nf_conn *ct = (void *)ul_conntrack;
262 struct net *net = nf_ct_net(ct);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000263 struct nf_conntrack_ecache *ecache = nf_ct_ecache_find(ct);
264
265 BUG_ON(ecache == NULL);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200266
267 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
268 /* bad luck, let's retry again */
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000269 ecache->timeout.expires = jiffies +
Akinobu Mitaca3d41a2013-04-29 16:21:39 -0700270 (prandom_u32() % net->ct.sysctl_events_retry_timeout);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000271 add_timer(&ecache->timeout);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200272 return;
273 }
274 /* we've got the event delivered, now it's dying */
275 set_bit(IPS_DYING_BIT, &ct->status);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200276 nf_ct_put(ct);
277}
278
Florian Westphal02982c22013-07-29 15:41:54 +0200279static void nf_ct_dying_timeout(struct nf_conn *ct)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200280{
281 struct net *net = nf_ct_net(ct);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000282 struct nf_conntrack_ecache *ecache = nf_ct_ecache_find(ct);
283
284 BUG_ON(ecache == NULL);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200285
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200286 /* set a new timer to retry event delivery */
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000287 setup_timer(&ecache->timeout, death_by_event, (unsigned long)ct);
288 ecache->timeout.expires = jiffies +
Akinobu Mitaca3d41a2013-04-29 16:21:39 -0700289 (prandom_u32() % net->ct.sysctl_events_retry_timeout);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000290 add_timer(&ecache->timeout);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200291}
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200292
Florian Westphal02982c22013-07-29 15:41:54 +0200293bool nf_ct_delete(struct nf_conn *ct, u32 portid, int report)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200294{
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100295 struct nf_conn_tstamp *tstamp;
296
297 tstamp = nf_conn_tstamp_find(ct);
298 if (tstamp && tstamp->stop == 0)
299 tstamp->stop = ktime_to_ns(ktime_get_real());
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200300
Florian Westphal02982c22013-07-29 15:41:54 +0200301 if (!nf_ct_is_dying(ct) &&
302 unlikely(nf_conntrack_event_report(IPCT_DESTROY, ct,
303 portid, report) < 0)) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200304 /* destroy event was not delivered */
305 nf_ct_delete_from_lists(ct);
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100306 nf_ct_dying_timeout(ct);
Florian Westphal02982c22013-07-29 15:41:54 +0200307 return false;
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200308 }
309 set_bit(IPS_DYING_BIT, &ct->status);
310 nf_ct_delete_from_lists(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800311 nf_ct_put(ct);
Florian Westphal02982c22013-07-29 15:41:54 +0200312 return true;
313}
314EXPORT_SYMBOL_GPL(nf_ct_delete);
315
316static void death_by_timeout(unsigned long ul_conntrack)
317{
318 nf_ct_delete((struct nf_conn *)ul_conntrack, 0, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800319}
320
Eric Dumazetea781f12009-03-25 21:05:46 +0100321/*
322 * Warning :
323 * - Caller must take a reference on returned object
324 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
325 * OR
326 * - Caller must lock nf_conntrack_lock before calling this function
327 */
Changli Gao99f07e92010-09-21 17:49:20 +0200328static struct nf_conntrack_tuple_hash *
329____nf_conntrack_find(struct net *net, u16 zone,
330 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800331{
332 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100333 struct hlist_nulls_node *n;
Changli Gao99f07e92010-09-21 17:49:20 +0200334 unsigned int bucket = hash_bucket(hash, net);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800335
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800336 /* Disable BHs the entire time since we normally need to disable them
337 * at least once for the stats anyway.
338 */
339 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100340begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200341 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[bucket], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100342 if (nf_ct_tuple_equal(tuple, &h->tuple) &&
343 nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200344 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800345 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800346 return h;
347 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200348 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800349 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100350 /*
351 * if the nulls value we got at the end of this lookup is
352 * not the expected one, we must restart lookup.
353 * We probably met an item that was moved to another chain.
354 */
Changli Gao99f07e92010-09-21 17:49:20 +0200355 if (get_nulls_value(n) != bucket) {
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200356 NF_CT_STAT_INC(net, search_restart);
Eric Dumazetea781f12009-03-25 21:05:46 +0100357 goto begin;
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200358 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800359 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800360
361 return NULL;
362}
Changli Gao99f07e92010-09-21 17:49:20 +0200363
364struct nf_conntrack_tuple_hash *
365__nf_conntrack_find(struct net *net, u16 zone,
366 const struct nf_conntrack_tuple *tuple)
367{
368 return ____nf_conntrack_find(net, zone, tuple,
369 hash_conntrack_raw(tuple, zone));
370}
Patrick McHardy13b18332006-12-02 22:11:25 -0800371EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800372
373/* Find a connection corresponding to a tuple. */
Changli Gao99f07e92010-09-21 17:49:20 +0200374static struct nf_conntrack_tuple_hash *
375__nf_conntrack_find_get(struct net *net, u16 zone,
376 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800377{
378 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800379 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800380
Patrick McHardy76507f62008-01-31 04:38:38 -0800381 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100382begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200383 h = ____nf_conntrack_find(net, zone, tuple, hash);
Patrick McHardy76507f62008-01-31 04:38:38 -0800384 if (h) {
385 ct = nf_ct_tuplehash_to_ctrack(h);
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200386 if (unlikely(nf_ct_is_dying(ct) ||
387 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800388 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100389 else {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100390 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple) ||
391 nf_ct_zone(ct) != zone)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100392 nf_ct_put(ct);
393 goto begin;
394 }
395 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800396 }
397 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800398
399 return h;
400}
Changli Gao99f07e92010-09-21 17:49:20 +0200401
402struct nf_conntrack_tuple_hash *
403nf_conntrack_find_get(struct net *net, u16 zone,
404 const struct nf_conntrack_tuple *tuple)
405{
406 return __nf_conntrack_find_get(net, zone, tuple,
407 hash_conntrack_raw(tuple, zone));
408}
Patrick McHardy13b18332006-12-02 22:11:25 -0800409EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800410
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800411static void __nf_conntrack_hash_insert(struct nf_conn *ct,
412 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800413 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800414{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200415 struct net *net = nf_ct_net(ct);
416
Eric Dumazetea781f12009-03-25 21:05:46 +0100417 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200418 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100419 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200420 &net->ct.hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800421}
422
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100423int
424nf_conntrack_hash_check_insert(struct nf_conn *ct)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800425{
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800426 struct net *net = nf_ct_net(ct);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800427 unsigned int hash, repl_hash;
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100428 struct nf_conntrack_tuple_hash *h;
429 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100430 u16 zone;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800431
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100432 zone = nf_ct_zone(ct);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100433 hash = hash_conntrack(net, zone,
434 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
435 repl_hash = hash_conntrack(net, zone,
436 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800437
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100438 spin_lock_bh(&nf_conntrack_lock);
439
440 /* See if there's one in the list already, including reverse */
441 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
442 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
443 &h->tuple) &&
444 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
445 goto out;
446 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
447 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
448 &h->tuple) &&
449 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
450 goto out;
451
452 add_timer(&ct->timeout);
453 nf_conntrack_get(&ct->ct_general);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800454 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100455 NF_CT_STAT_INC(net, insert);
456 spin_unlock_bh(&nf_conntrack_lock);
457
458 return 0;
459
460out:
461 NF_CT_STAT_INC(net, insert_failed);
462 spin_unlock_bh(&nf_conntrack_lock);
463 return -EEXIST;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800464}
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100465EXPORT_SYMBOL_GPL(nf_conntrack_hash_check_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800466
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800467/* Confirm a connection given skb; places it in hash table */
468int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700469__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800470{
471 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700472 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800473 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700474 struct nf_conn_help *help;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100475 struct nf_conn_tstamp *tstamp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100476 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800477 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200478 struct net *net;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100479 u16 zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800480
Herbert Xu3db05fe2007-10-15 00:53:15 -0700481 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200482 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800483
484 /* ipt_REJECT uses nf_conntrack_attach to attach related
485 ICMP/TCP RST packets in other direction. Actual packet
486 which created connection will be IP_CT_NEW or for an
487 expected connection, IP_CT_RELATED. */
488 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
489 return NF_ACCEPT;
490
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100491 zone = nf_ct_zone(ct);
Changli Gao99f07e92010-09-21 17:49:20 +0200492 /* reuse the hash saved before */
493 hash = *(unsigned long *)&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev;
494 hash = hash_bucket(hash, net);
495 repl_hash = hash_conntrack(net, zone,
496 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800497
498 /* We're not in hash table, and we refuse to set up related
499 connections for unconfirmed conns. But packet copies and
500 REJECT will give spurious warnings here. */
501 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
502
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300503 /* No external references means no one else could have
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800504 confirmed us. */
505 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700506 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800507
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800508 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800509
Joerg Marxfc350772010-05-20 15:55:30 +0200510 /* We have to check the DYING flag inside the lock to prevent
511 a race against nf_ct_get_next_corpse() possibly called from
512 user context, else we insert an already 'dead' hash, blocking
513 further use of that particular connection -JM */
514
515 if (unlikely(nf_ct_is_dying(ct))) {
516 spin_unlock_bh(&nf_conntrack_lock);
517 return NF_ACCEPT;
518 }
519
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800520 /* See if there's one in the list already, including reverse:
521 NAT could have grabbed it without realizing, since we're
522 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100523 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700524 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100525 &h->tuple) &&
526 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700527 goto out;
Eric Dumazetea781f12009-03-25 21:05:46 +0100528 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700529 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100530 &h->tuple) &&
531 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700532 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800533
Patrick McHardydf0933d2006-09-20 11:57:53 -0700534 /* Remove from unconfirmed list */
Eric Dumazetea781f12009-03-25 21:05:46 +0100535 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700536
Patrick McHardydf0933d2006-09-20 11:57:53 -0700537 /* Timer relative to confirmation time, not original
538 setting time, otherwise we'd get timer wrap in
539 weird delay cases. */
540 ct->timeout.expires += jiffies;
541 add_timer(&ct->timeout);
542 atomic_inc(&ct->ct_general.use);
Changli Gao45eec342011-01-18 15:08:13 +0100543 ct->status |= IPS_CONFIRMED;
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200544
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100545 /* set conntrack timestamp, if enabled. */
546 tstamp = nf_conn_tstamp_find(ct);
547 if (tstamp) {
548 if (skb->tstamp.tv64 == 0)
Joe Perchese3192692012-06-03 17:41:40 +0000549 __net_timestamp(skb);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100550
551 tstamp->start = ktime_to_ns(skb->tstamp);
552 }
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200553 /* Since the lookup is lockless, hash insertion must be done after
554 * starting the timer and setting the CONFIRMED bit. The RCU barriers
555 * guarantee that no other CPU can find the conntrack before the above
556 * stores are visible.
557 */
558 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200559 NF_CT_STAT_INC(net, insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800560 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200561
Patrick McHardydf0933d2006-09-20 11:57:53 -0700562 help = nfct_help(ct);
563 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200564 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200565
Patrick McHardydf0933d2006-09-20 11:57:53 -0700566 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200567 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700568 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800569
Patrick McHardydf0933d2006-09-20 11:57:53 -0700570out:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200571 NF_CT_STAT_INC(net, insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800572 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800573 return NF_DROP;
574}
Patrick McHardy13b18332006-12-02 22:11:25 -0800575EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800576
577/* Returns true if a connection correspondings to the tuple (required
578 for NAT). */
579int
580nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
581 const struct nf_conn *ignored_conntrack)
582{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200583 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800584 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100585 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100586 struct nf_conn *ct;
587 u16 zone = nf_ct_zone(ignored_conntrack);
588 unsigned int hash = hash_conntrack(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800589
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800590 /* Disable BHs the entire time since we need to disable them at
591 * least once for the stats anyway.
592 */
593 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100594 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100595 ct = nf_ct_tuplehash_to_ctrack(h);
596 if (ct != ignored_conntrack &&
597 nf_ct_tuple_equal(tuple, &h->tuple) &&
598 nf_ct_zone(ct) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200599 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800600 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800601 return 1;
602 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200603 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800604 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800605 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800606
Patrick McHardyba419af2008-01-31 04:39:23 -0800607 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800608}
Patrick McHardy13b18332006-12-02 22:11:25 -0800609EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800610
Patrick McHardy7ae77302007-07-07 22:37:38 -0700611#define NF_CT_EVICTION_RANGE 8
612
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800613/* There's a small race here where we may free a just-assured
614 connection. Too bad: we're in trouble anyway. */
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200615static noinline int early_drop(struct net *net, unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800616{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700617 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800618 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700619 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100620 struct hlist_nulls_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700621 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800622 int dropped = 0;
623
Patrick McHardy76507f62008-01-31 04:38:38 -0800624 rcu_read_lock();
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800625 for (i = 0; i < net->ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100626 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
627 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700628 tmp = nf_ct_tuplehash_to_ctrack(h);
629 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
630 ct = tmp;
631 cnt++;
632 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800633
Changli Gao5ae27aa22009-11-05 14:51:31 +0100634 if (ct != NULL) {
635 if (likely(!nf_ct_is_dying(ct) &&
636 atomic_inc_not_zero(&ct->ct_general.use)))
637 break;
638 else
639 ct = NULL;
640 }
641
642 if (cnt >= NF_CT_EVICTION_RANGE)
Patrick McHardy7ae77302007-07-07 22:37:38 -0700643 break;
Changli Gao5ae27aa22009-11-05 14:51:31 +0100644
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800645 hash = (hash + 1) % net->ct.htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800646 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800647 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800648
649 if (!ct)
650 return dropped;
651
652 if (del_timer(&ct->timeout)) {
Florian Westphal02982c22013-07-29 15:41:54 +0200653 if (nf_ct_delete(ct, 0, 0)) {
Pablo Neira Ayuso741385112012-03-06 01:22:55 +0000654 dropped = 1;
655 NF_CT_STAT_INC_ATOMIC(net, early_drop);
656 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800657 }
658 nf_ct_put(ct);
659 return dropped;
660}
661
Changli Gaof682cef2011-01-05 04:23:23 +0000662void init_nf_conntrack_hash_rnd(void)
663{
664 unsigned int rand;
665
666 /*
667 * Why not initialize nf_conntrack_rnd in a "init()" function ?
668 * Because there isn't enough entropy when system initializing,
669 * and we initialize it as late as possible.
670 */
671 do {
672 get_random_bytes(&rand, sizeof(rand));
673 } while (!rand);
674 cmpxchg(&nf_conntrack_hash_rnd, 0, rand);
675}
676
Changli Gao99f07e92010-09-21 17:49:20 +0200677static struct nf_conn *
678__nf_conntrack_alloc(struct net *net, u16 zone,
679 const struct nf_conntrack_tuple *orig,
680 const struct nf_conntrack_tuple *repl,
681 gfp_t gfp, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800682{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000683 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800684
Changli Gaob2390962010-09-16 19:55:03 +0200685 if (unlikely(!nf_conntrack_hash_rnd)) {
Changli Gaof682cef2011-01-05 04:23:23 +0000686 init_nf_conntrack_hash_rnd();
Changli Gao99f07e92010-09-21 17:49:20 +0200687 /* recompute the hash as nf_conntrack_hash_rnd is initialized */
688 hash = hash_conntrack_raw(orig, zone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800689 }
690
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700691 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200692 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700693
Patrick McHardy76eb9462008-01-31 04:41:44 -0800694 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200695 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Changli Gao99f07e92010-09-21 17:49:20 +0200696 if (!early_drop(net, hash_bucket(hash, net))) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200697 atomic_dec(&net->ct.count);
Joe Perchese87cc472012-05-13 21:56:26 +0000698 net_warn_ratelimited("nf_conntrack: table full, dropping packet\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800699 return ERR_PTR(-ENOMEM);
700 }
701 }
702
Eric Dumazet941297f2009-07-16 14:03:40 +0200703 /*
704 * Do not use kmem_cache_zalloc(), as this cache uses
705 * SLAB_DESTROY_BY_RCU.
706 */
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800707 ct = kmem_cache_alloc(net->ct.nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800708 if (ct == NULL) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200709 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700710 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800711 }
Eric Dumazet941297f2009-07-16 14:03:40 +0200712 /*
713 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
714 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
715 */
716 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100717 offsetof(struct nf_conn, proto) -
718 offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
Patrick McHardy440f0d52009-06-10 14:32:47 +0200719 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800720 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
Eric Dumazet941297f2009-07-16 14:03:40 +0200721 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800722 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Changli Gao99f07e92010-09-21 17:49:20 +0200723 /* save hash for reusing when confirming */
724 *(unsigned long *)(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev) = hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800725 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800726 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000727 write_pnet(&ct->ct_net, net);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100728#ifdef CONFIG_NF_CONNTRACK_ZONES
729 if (zone) {
730 struct nf_conntrack_zone *nf_ct_zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800731
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100732 nf_ct_zone = nf_ct_ext_add(ct, NF_CT_EXT_ZONE, GFP_ATOMIC);
733 if (!nf_ct_zone)
734 goto out_free;
735 nf_ct_zone->id = zone;
736 }
737#endif
Eric Dumazet941297f2009-07-16 14:03:40 +0200738 /*
739 * changes to lookup keys must be done before setting refcnt to 1
740 */
741 smp_wmb();
742 atomic_set(&ct->ct_general.use, 1);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800743 return ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100744
745#ifdef CONFIG_NF_CONNTRACK_ZONES
746out_free:
Pablo Neira Ayusod96fc652012-04-03 16:45:54 +0200747 atomic_dec(&net->ct.count);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100748 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
749 return ERR_PTR(-ENOMEM);
750#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800751}
Changli Gao99f07e92010-09-21 17:49:20 +0200752
753struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
754 const struct nf_conntrack_tuple *orig,
755 const struct nf_conntrack_tuple *repl,
756 gfp_t gfp)
757{
758 return __nf_conntrack_alloc(net, zone, orig, repl, gfp, 0);
759}
Patrick McHardy13b18332006-12-02 22:11:25 -0800760EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800761
Patrick McHardyc88130b2008-01-31 04:42:11 -0800762void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800763{
Eric Dumazet1d452092009-03-24 14:26:50 +0100764 struct net *net = nf_ct_net(ct);
765
Patrick McHardyceeff752008-06-11 17:51:10 -0700766 nf_ct_ext_destroy(ct);
Eric Dumazet1d452092009-03-24 14:26:50 +0100767 atomic_dec(&net->ct.count);
Eric Dumazetea781f12009-03-25 21:05:46 +0100768 nf_ct_ext_free(ct);
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800769 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800770}
Patrick McHardy13b18332006-12-02 22:11:25 -0800771EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800772
Florian Westphalc539f012013-01-11 06:30:44 +0000773
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800774/* Allocate a new conntrack: we return -ENOMEM if classification
775 failed due to stress. Otherwise it really is unclassifiable. */
776static struct nf_conntrack_tuple_hash *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100777init_conntrack(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200778 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800779 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100780 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800781 struct sk_buff *skb,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100782 unsigned int dataoff, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800783{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800784 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700785 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800786 struct nf_conntrack_tuple repl_tuple;
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100787 struct nf_conntrack_ecache *ecache;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800788 struct nf_conntrack_expect *exp;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100789 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100790 struct nf_conn_timeout *timeout_ext;
791 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800792
Martin Josefsson605dcad2006-11-29 02:35:06 +0100793 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700794 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800795 return NULL;
796 }
797
Changli Gao99f07e92010-09-21 17:49:20 +0200798 ct = __nf_conntrack_alloc(net, zone, tuple, &repl_tuple, GFP_ATOMIC,
799 hash);
Joe Perches0a9ee812011-08-29 14:17:25 -0700800 if (IS_ERR(ct))
Patrick McHardyc88130b2008-01-31 04:42:11 -0800801 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800802
Patrick McHardy48b1de42013-08-27 08:50:14 +0200803 if (tmpl && nfct_synproxy(tmpl)) {
804 nfct_seqadj_ext_add(ct);
805 nfct_synproxy_ext_add(ct);
806 }
807
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100808 timeout_ext = tmpl ? nf_ct_timeout_find(tmpl) : NULL;
809 if (timeout_ext)
810 timeouts = NF_CT_TIMEOUT_EXT_DATA(timeout_ext);
811 else
812 timeouts = l4proto->get_timeouts(net);
813
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100814 if (!l4proto->new(ct, skb, dataoff, timeouts)) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800815 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700816 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800817 return NULL;
818 }
819
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100820 if (timeout_ext)
821 nf_ct_timeout_ext_add(ct, timeout_ext->timeout, GFP_ATOMIC);
822
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700823 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100824 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
Florian Westphalc539f012013-01-11 06:30:44 +0000825 nf_ct_labels_ext_add(ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100826
827 ecache = tmpl ? nf_ct_ecache_find(tmpl) : NULL;
828 nf_ct_ecache_ext_add(ct, ecache ? ecache->ctmask : 0,
829 ecache ? ecache->expmask : 0,
830 GFP_ATOMIC);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700831
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800832 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100833 exp = nf_ct_find_expectation(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800834 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700835 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800836 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800837 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800838 __set_bit(IPS_EXPECTED_BIT, &ct->status);
839 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700840 if (exp->helper) {
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +0200841 help = nf_ct_helper_ext_add(ct, exp->helper,
842 GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700843 if (help)
Eric Dumazetcf778b02012-01-12 04:41:32 +0000844 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700845 }
846
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800847#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800848 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800849#endif
James Morris7c9728c2006-06-09 00:31:46 -0700850#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800851 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700852#endif
Patrick McHardyc88130b2008-01-31 04:42:11 -0800853 nf_conntrack_get(&ct->master->ct_general);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200854 NF_CT_STAT_INC(net, expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800855 } else {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100856 __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200857 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800858 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800859
860 /* Overload tuple linked list to put us in unconfirmed list. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100861 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan63c9a262008-10-08 11:35:04 +0200862 &net->ct.unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800863
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800864 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800865
866 if (exp) {
867 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800868 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700869 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800870 }
871
Patrick McHardyc88130b2008-01-31 04:42:11 -0800872 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800873}
874
875/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
876static inline struct nf_conn *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100877resolve_normal_ct(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyana702a652008-10-08 11:35:04 +0200878 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800879 unsigned int dataoff,
880 u_int16_t l3num,
881 u_int8_t protonum,
882 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100883 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800884 int *set_reply,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100885 enum ip_conntrack_info *ctinfo)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800886{
887 struct nf_conntrack_tuple tuple;
888 struct nf_conntrack_tuple_hash *h;
889 struct nf_conn *ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100890 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Changli Gao99f07e92010-09-21 17:49:20 +0200891 u32 hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800892
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300893 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800894 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100895 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700896 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800897 return NULL;
898 }
899
900 /* look for tuple match */
Changli Gao99f07e92010-09-21 17:49:20 +0200901 hash = hash_conntrack_raw(&tuple, zone);
902 h = __nf_conntrack_find_get(net, zone, &tuple, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800903 if (!h) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100904 h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100905 skb, dataoff, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800906 if (!h)
907 return NULL;
908 if (IS_ERR(h))
909 return (void *)h;
910 }
911 ct = nf_ct_tuplehash_to_ctrack(h);
912
913 /* It exists; we have (non-exclusive) reference. */
914 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
Eric Dumazetfb048832011-05-19 15:44:27 +0200915 *ctinfo = IP_CT_ESTABLISHED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800916 /* Please set reply bit if this packet OK */
917 *set_reply = 1;
918 } else {
919 /* Once we've had two way comms, always ESTABLISHED. */
920 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700921 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800922 *ctinfo = IP_CT_ESTABLISHED;
923 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700924 pr_debug("nf_conntrack_in: related packet for %p\n",
925 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800926 *ctinfo = IP_CT_RELATED;
927 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700928 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800929 *ctinfo = IP_CT_NEW;
930 }
931 *set_reply = 0;
932 }
933 skb->nfct = &ct->ct_general;
934 skb->nfctinfo = *ctinfo;
935 return ct;
936}
937
938unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +0200939nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
940 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800941{
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100942 struct nf_conn *ct, *tmpl = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800943 enum ip_conntrack_info ctinfo;
944 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100945 struct nf_conntrack_l4proto *l4proto;
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100946 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800947 unsigned int dataoff;
948 u_int8_t protonum;
949 int set_reply = 0;
950 int ret;
951
Herbert Xu3db05fe2007-10-15 00:53:15 -0700952 if (skb->nfct) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100953 /* Previously seen (loopback or untracked)? Ignore. */
954 tmpl = (struct nf_conn *)skb->nfct;
955 if (!nf_ct_is_template(tmpl)) {
956 NF_CT_STAT_INC_ATOMIC(net, ignore);
957 return NF_ACCEPT;
958 }
959 skb->nfct = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800960 }
961
Patrick McHardy923f4902007-02-12 11:12:57 -0800962 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200963 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700964 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700965 &dataoff, &protonum);
966 if (ret <= 0) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300967 pr_debug("not prepared to track yet or error occurred\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200968 NF_CT_STAT_INC_ATOMIC(net, error);
969 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100970 ret = -ret;
971 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800972 }
973
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200974 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800975
976 /* It may be an special packet, error, unclean...
977 * inverse of the return code tells to the netfilter
978 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200979 if (l4proto->error != NULL) {
Patrick McHardy8fea97e2010-02-15 17:45:08 +0100980 ret = l4proto->error(net, tmpl, skb, dataoff, &ctinfo,
981 pf, hooknum);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200982 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200983 NF_CT_STAT_INC_ATOMIC(net, error);
984 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100985 ret = -ret;
986 goto out;
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200987 }
Pablo Neira Ayuso88ed01d2011-06-02 15:08:45 +0200988 /* ICMP[v6] protocol trackers may assign one conntrack. */
989 if (skb->nfct)
990 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800991 }
992
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100993 ct = resolve_normal_ct(net, tmpl, skb, dataoff, pf, protonum,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100994 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800995 if (!ct) {
996 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200997 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100998 ret = NF_ACCEPT;
999 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001000 }
1001
1002 if (IS_ERR(ct)) {
1003 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001004 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001005 ret = NF_DROP;
1006 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001007 }
1008
Herbert Xu3db05fe2007-10-15 00:53:15 -07001009 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001010
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001011 /* Decide what timeout policy we want to apply to this flow. */
Pablo Neira Ayuso84b5ee92012-08-28 00:53:15 +00001012 timeouts = nf_ct_timeout_lookup(net, ct, l4proto);
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001013
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +01001014 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum, timeouts);
Christoph Paaschec8d5402009-03-16 15:51:29 +01001015 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001016 /* Invalid: inverse of the return code tells
1017 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -07001018 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -07001019 nf_conntrack_put(skb->nfct);
1020 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001021 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +01001022 if (ret == -NF_DROP)
1023 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001024 ret = -ret;
1025 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001026 }
1027
1028 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Patrick McHardy858b31332010-02-03 13:48:53 +01001029 nf_conntrack_event_cache(IPCT_REPLY, ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001030out:
Pablo Neira Ayusoc3174282011-02-09 08:08:20 +01001031 if (tmpl) {
1032 /* Special case: we have to repeat this hook, assign the
1033 * template again to this packet. We assume that this packet
1034 * has no conntrack assigned. This is used by nf_ct_tcp. */
1035 if (ret == NF_REPEAT)
1036 skb->nfct = (struct nf_conntrack *)tmpl;
1037 else
1038 nf_ct_put(tmpl);
1039 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001040
1041 return ret;
1042}
Patrick McHardy13b18332006-12-02 22:11:25 -08001043EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001044
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001045bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
1046 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001047{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001048 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -08001049
1050 rcu_read_lock();
1051 ret = nf_ct_invert_tuple(inverse, orig,
1052 __nf_ct_l3proto_find(orig->src.l3num),
1053 __nf_ct_l4proto_find(orig->src.l3num,
1054 orig->dst.protonum));
1055 rcu_read_unlock();
1056 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001057}
Patrick McHardy13b18332006-12-02 22:11:25 -08001058EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001059
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001060/* Alter reply tuple (maybe alter helper). This is for NAT, and is
1061 implicitly racy: see __nf_conntrack_confirm */
1062void nf_conntrack_alter_reply(struct nf_conn *ct,
1063 const struct nf_conntrack_tuple *newreply)
1064{
1065 struct nf_conn_help *help = nfct_help(ct);
1066
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001067 /* Should be unconfirmed, so not in hash table yet */
1068 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
1069
Patrick McHardy0d537782007-07-07 22:39:38 -07001070 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +02001071 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001072
1073 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +02001074 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001075 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001076
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001077 rcu_read_lock();
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001078 __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001079 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001080}
Patrick McHardy13b18332006-12-02 22:11:25 -08001081EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001082
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001083/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
1084void __nf_ct_refresh_acct(struct nf_conn *ct,
1085 enum ip_conntrack_info ctinfo,
1086 const struct sk_buff *skb,
1087 unsigned long extra_jiffies,
1088 int do_acct)
1089{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001090 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
1091 NF_CT_ASSERT(skb);
1092
Eric Leblond997ae832006-05-29 18:24:20 -07001093 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -08001094 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
1095 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -07001096
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001097 /* If not in hash table, timer will not be active yet */
1098 if (!nf_ct_is_confirmed(ct)) {
1099 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001100 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +01001101 unsigned long newtime = jiffies + extra_jiffies;
1102
1103 /* Only update the timeout if the new timeout is at least
1104 HZ jiffies from the old timeout. Need del_timer for race
1105 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001106 if (newtime - ct->timeout.expires >= HZ)
1107 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001108 }
1109
Patrick McHardy47d95042008-01-31 04:36:31 -08001110acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001111 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001112 struct nf_conn_counter *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +01001113
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001114 acct = nf_conn_acct_find(ct);
1115 if (acct) {
Eric Dumazetb3e0bfa2011-12-14 14:45:20 +01001116 atomic64_inc(&acct[CTINFO2DIR(ctinfo)].packets);
1117 atomic64_add(skb->len, &acct[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001118 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001119 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001120}
Patrick McHardy13b18332006-12-02 22:11:25 -08001121EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001122
David S. Miller4c889492008-07-14 20:22:38 -07001123bool __nf_ct_kill_acct(struct nf_conn *ct,
1124 enum ip_conntrack_info ctinfo,
1125 const struct sk_buff *skb,
1126 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -07001127{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001128 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001129 struct nf_conn_counter *acct;
1130
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001131 acct = nf_conn_acct_find(ct);
1132 if (acct) {
Eric Dumazetb3e0bfa2011-12-14 14:45:20 +01001133 atomic64_inc(&acct[CTINFO2DIR(ctinfo)].packets);
1134 atomic64_add(skb->len - skb_network_offset(skb),
1135 &acct[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001136 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001137 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001138
David S. Miller4c889492008-07-14 20:22:38 -07001139 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -07001140 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -07001141 return true;
1142 }
1143 return false;
Patrick McHardy51091762008-06-09 15:59:06 -07001144}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001145EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -07001146
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001147#ifdef CONFIG_NF_CONNTRACK_ZONES
1148static struct nf_ct_ext_type nf_ct_zone_extend __read_mostly = {
1149 .len = sizeof(struct nf_conntrack_zone),
1150 .align = __alignof__(struct nf_conntrack_zone),
1151 .id = NF_CT_EXT_ZONE,
1152};
1153#endif
1154
Igor Maravićc0cd1152011-12-12 02:58:24 +00001155#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001156
1157#include <linux/netfilter/nfnetlink.h>
1158#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -08001159#include <linux/mutex.h>
1160
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001161/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
1162 * in ip_conntrack_core, since we don't want the protocols to autoload
1163 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -07001164int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001165 const struct nf_conntrack_tuple *tuple)
1166{
David S. Millerbae65be2012-04-01 18:58:28 -04001167 if (nla_put_be16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port) ||
1168 nla_put_be16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port))
1169 goto nla_put_failure;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001170 return 0;
1171
Patrick McHardydf6fb862007-09-28 14:37:03 -07001172nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001173 return -1;
1174}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001175EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001176
Patrick McHardyf73e9242007-09-28 14:39:55 -07001177const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
1178 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
1179 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001180};
Patrick McHardyf73e9242007-09-28 14:39:55 -07001181EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001182
Patrick McHardyfdf70832007-09-28 14:37:41 -07001183int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001184 struct nf_conntrack_tuple *t)
1185{
Patrick McHardydf6fb862007-09-28 14:37:03 -07001186 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001187 return -EINVAL;
1188
Patrick McHardy77236b62007-12-17 22:29:45 -08001189 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
1190 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001191
1192 return 0;
1193}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001194EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +01001195
1196int nf_ct_port_nlattr_tuple_size(void)
1197{
1198 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1199}
1200EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001201#endif
1202
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001203/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardy312a0c162013-07-28 22:54:08 +02001204static void nf_conntrack_attach(struct sk_buff *nskb, const struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001205{
1206 struct nf_conn *ct;
1207 enum ip_conntrack_info ctinfo;
1208
1209 /* This ICMP is in reverse direction to the packet which caused it */
1210 ct = nf_ct_get(skb, &ctinfo);
1211 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
Eric Dumazetfb048832011-05-19 15:44:27 +02001212 ctinfo = IP_CT_RELATED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001213 else
1214 ctinfo = IP_CT_RELATED;
1215
1216 /* Attach to new skbuff, and increment count */
1217 nskb->nfct = &ct->ct_general;
1218 nskb->nfctinfo = ctinfo;
1219 nf_conntrack_get(nskb->nfct);
1220}
1221
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001222/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001223static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001224get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001225 void *data, unsigned int *bucket)
1226{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001227 struct nf_conntrack_tuple_hash *h;
1228 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +01001229 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001230
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001231 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001232 for (; *bucket < net->ct.htable_size; (*bucket)++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001233 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
Patrick McHardyb0cdb1d2012-09-19 20:57:04 +00001234 if (NF_CT_DIRECTION(h) != IP_CT_DIR_ORIGINAL)
1235 continue;
Patrick McHardydf0933d2006-09-20 11:57:53 -07001236 ct = nf_ct_tuplehash_to_ctrack(h);
1237 if (iter(ct, data))
1238 goto found;
1239 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001240 }
Eric Dumazetea781f12009-03-25 21:05:46 +01001241 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001242 ct = nf_ct_tuplehash_to_ctrack(h);
1243 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -08001244 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001245 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001246 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001247 return NULL;
1248found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001249 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001250 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001251 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001252}
1253
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001254void nf_ct_iterate_cleanup(struct net *net,
1255 int (*iter)(struct nf_conn *i, void *data),
Florian Westphalc655bc62013-07-29 15:41:55 +02001256 void *data, u32 portid, int report)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001257{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001258 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001259 unsigned int bucket = 0;
1260
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001261 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001262 /* Time to push up daises... */
1263 if (del_timer(&ct->timeout))
Florian Westphalc655bc62013-07-29 15:41:55 +02001264 nf_ct_delete(ct, portid, report);
Florian Westphal02982c22013-07-29 15:41:54 +02001265
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001266 /* ... else the timer will get him soon. */
1267
1268 nf_ct_put(ct);
1269 }
1270}
Patrick McHardy13b18332006-12-02 22:11:25 -08001271EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001272
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001273static int kill_all(struct nf_conn *i, void *data)
1274{
1275 return 1;
1276}
1277
Patrick McHardyd862a662011-01-14 15:45:56 +01001278void nf_ct_free_hashtable(void *hash, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001279{
Patrick McHardyd862a662011-01-14 15:45:56 +01001280 if (is_vmalloc_addr(hash))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001281 vfree(hash);
1282 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001283 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001284 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001285}
Patrick McHardyac565e52007-07-07 22:30:08 -07001286EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001287
Patrick McHardyec464e52013-04-17 06:47:08 +00001288void nf_conntrack_flush_report(struct net *net, u32 portid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001289{
Florian Westphalc655bc62013-07-29 15:41:55 +02001290 nf_ct_iterate_cleanup(net, kill_all, NULL, portid, report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001291}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001292EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001293
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001294static void nf_ct_release_dying_list(struct net *net)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001295{
1296 struct nf_conntrack_tuple_hash *h;
1297 struct nf_conn *ct;
1298 struct hlist_nulls_node *n;
1299
1300 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001301 hlist_nulls_for_each_entry(h, n, &net->ct.dying, hnnode) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001302 ct = nf_ct_tuplehash_to_ctrack(h);
1303 /* never fails to remove them, no listeners at this point */
1304 nf_ct_kill(ct);
1305 }
1306 spin_unlock_bh(&nf_conntrack_lock);
1307}
1308
Eric Dumazetb3c51632010-06-09 14:43:38 +02001309static int untrack_refs(void)
1310{
1311 int cnt = 0, cpu;
1312
1313 for_each_possible_cpu(cpu) {
1314 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
1315
1316 cnt += atomic_read(&ct->ct_general.use) - 1;
1317 }
1318 return cnt;
1319}
1320
Gao fengf94161c2013-01-21 22:10:24 +00001321void nf_conntrack_cleanup_start(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001322{
Gao fengf94161c2013-01-21 22:10:24 +00001323 RCU_INIT_POINTER(ip_ct_attach, NULL);
1324}
1325
1326void nf_conntrack_cleanup_end(void)
1327{
1328 RCU_INIT_POINTER(nf_ct_destroy, NULL);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001329 while (untrack_refs() > 0)
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001330 schedule();
1331
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001332#ifdef CONFIG_NF_CONNTRACK_ZONES
1333 nf_ct_extend_unregister(&nf_ct_zone_extend);
1334#endif
Gao feng04d87002013-01-21 22:10:32 +00001335 nf_conntrack_proto_fini();
Patrick McHardy41d73ec2013-08-27 08:50:12 +02001336 nf_conntrack_seqadj_fini();
Gao feng5f69b8f2013-01-21 22:10:31 +00001337 nf_conntrack_labels_fini();
Gao feng5e615b22013-01-21 22:10:30 +00001338 nf_conntrack_helper_fini();
Gao feng86840942013-01-21 22:10:29 +00001339 nf_conntrack_timeout_fini();
Gao feng3fe0f942013-01-21 22:10:28 +00001340 nf_conntrack_ecache_fini();
Gao feng73f40012013-01-21 22:10:27 +00001341 nf_conntrack_tstamp_fini();
Gao fengb7ff3a12013-01-21 22:10:26 +00001342 nf_conntrack_acct_fini();
Gao feng83b4dbe2013-01-21 22:10:25 +00001343 nf_conntrack_expect_fini();
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001344}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001345
Gao fengf94161c2013-01-21 22:10:24 +00001346/*
1347 * Mishearing the voices in his head, our hero wonders how he's
1348 * supposed to kill the mall.
1349 */
1350void nf_conntrack_cleanup_net(struct net *net)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001351{
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001352 LIST_HEAD(single);
1353
1354 list_add(&net->exit_list, &single);
1355 nf_conntrack_cleanup_net_list(&single);
1356}
1357
1358void nf_conntrack_cleanup_net_list(struct list_head *net_exit_list)
1359{
1360 int busy;
1361 struct net *net;
1362
Gao fengf94161c2013-01-21 22:10:24 +00001363 /*
1364 * This makes sure all current packets have passed through
1365 * netfilter framework. Roll on, two-stage module
1366 * delete...
1367 */
1368 synchronize_net();
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001369i_see_dead_people:
1370 busy = 0;
1371 list_for_each_entry(net, net_exit_list, exit_list) {
Florian Westphalc655bc62013-07-29 15:41:55 +02001372 nf_ct_iterate_cleanup(net, kill_all, NULL, 0, 0);
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001373 nf_ct_release_dying_list(net);
1374 if (atomic_read(&net->ct.count) != 0)
1375 busy = 1;
1376 }
1377 if (busy) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001378 schedule();
1379 goto i_see_dead_people;
1380 }
1381
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001382 list_for_each_entry(net, net_exit_list, exit_list) {
1383 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
1384 nf_conntrack_proto_pernet_fini(net);
1385 nf_conntrack_helper_pernet_fini(net);
1386 nf_conntrack_ecache_pernet_fini(net);
1387 nf_conntrack_tstamp_pernet_fini(net);
1388 nf_conntrack_acct_pernet_fini(net);
1389 nf_conntrack_expect_pernet_fini(net);
1390 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1391 kfree(net->ct.slabname);
1392 free_percpu(net->ct.stat);
1393 }
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001394}
1395
Patrick McHardyd862a662011-01-14 15:45:56 +01001396void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001397{
Eric Dumazetea781f12009-03-25 21:05:46 +01001398 struct hlist_nulls_head *hash;
1399 unsigned int nr_slots, i;
1400 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001401
Eric Dumazetea781f12009-03-25 21:05:46 +01001402 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1403 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1404 sz = nr_slots * sizeof(struct hlist_nulls_head);
1405 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1406 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001407 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001408 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazet966567b2011-12-19 16:01:38 -05001409 hash = vzalloc(sz);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001410 }
1411
Eric Dumazetea781f12009-03-25 21:05:46 +01001412 if (hash && nulls)
1413 for (i = 0; i < nr_slots; i++)
1414 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001415
1416 return hash;
1417}
Patrick McHardyac565e52007-07-07 22:30:08 -07001418EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001419
Patrick McHardyfae718d2007-12-24 21:09:10 -08001420int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001421{
Abhijit Pawar4b5511e2012-12-09 23:12:28 +00001422 int i, bucket, rc;
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001423 unsigned int hashsize, old_size;
Eric Dumazetea781f12009-03-25 21:05:46 +01001424 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001425 struct nf_conntrack_tuple_hash *h;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001426 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001427
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001428 if (current->nsproxy->net_ns != &init_net)
1429 return -EOPNOTSUPP;
1430
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001431 /* On boot, we can set this without any fancy locking. */
1432 if (!nf_conntrack_htable_size)
1433 return param_set_uint(val, kp);
1434
Abhijit Pawar4b5511e2012-12-09 23:12:28 +00001435 rc = kstrtouint(val, 0, &hashsize);
1436 if (rc)
1437 return rc;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001438 if (!hashsize)
1439 return -EINVAL;
1440
Patrick McHardyd862a662011-01-14 15:45:56 +01001441 hash = nf_ct_alloc_hashtable(&hashsize, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001442 if (!hash)
1443 return -ENOMEM;
1444
Patrick McHardy76507f62008-01-31 04:38:38 -08001445 /* Lookups in the old hash might happen in parallel, which means we
1446 * might get false negatives during connection lookup. New connections
1447 * created because of a false negative won't make it into the hash
1448 * though since that required taking the lock.
1449 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001450 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001451 for (i = 0; i < init_net.ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001452 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1453 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1454 struct nf_conntrack_tuple_hash, hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001455 ct = nf_ct_tuplehash_to_ctrack(h);
Eric Dumazetea781f12009-03-25 21:05:46 +01001456 hlist_nulls_del_rcu(&h->hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001457 bucket = __hash_conntrack(&h->tuple, nf_ct_zone(ct),
Changli Gao99f07e92010-09-21 17:49:20 +02001458 hashsize);
Eric Dumazetea781f12009-03-25 21:05:46 +01001459 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001460 }
1461 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001462 old_size = init_net.ct.htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001463 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001464
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001465 init_net.ct.htable_size = nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001466 init_net.ct.hash = hash;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001467 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001468
Patrick McHardyd862a662011-01-14 15:45:56 +01001469 nf_ct_free_hashtable(old_hash, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001470 return 0;
1471}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001472EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001473
Patrick McHardyfae718d2007-12-24 21:09:10 -08001474module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001475 &nf_conntrack_htable_size, 0600);
1476
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001477void nf_ct_untracked_status_or(unsigned long bits)
1478{
Eric Dumazetb3c51632010-06-09 14:43:38 +02001479 int cpu;
1480
1481 for_each_possible_cpu(cpu)
1482 per_cpu(nf_conntrack_untracked, cpu).status |= bits;
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001483}
1484EXPORT_SYMBOL_GPL(nf_ct_untracked_status_or);
1485
Gao fengf94161c2013-01-21 22:10:24 +00001486int nf_conntrack_init_start(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001487{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001488 int max_factor = 8;
Eric Dumazetb3c51632010-06-09 14:43:38 +02001489 int ret, cpu;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001490
1491 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001492 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001493 if (!nf_conntrack_htable_size) {
1494 nf_conntrack_htable_size
Jan Beulich44813742009-09-21 17:03:05 -07001495 = (((totalram_pages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001496 / sizeof(struct hlist_head));
Jan Beulich44813742009-09-21 17:03:05 -07001497 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001498 nf_conntrack_htable_size = 16384;
1499 if (nf_conntrack_htable_size < 32)
1500 nf_conntrack_htable_size = 32;
1501
1502 /* Use a max. factor of four by default to get the same max as
1503 * with the old struct list_heads. When a table size is given
1504 * we use the old value of 8 to avoid reducing the max.
1505 * entries. */
1506 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001507 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001508 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001509
Stephen Hemminger654d0fb2010-05-13 15:02:08 +02001510 printk(KERN_INFO "nf_conntrack version %s (%u buckets, %d max)\n",
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001511 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1512 nf_conntrack_max);
Gao feng83b4dbe2013-01-21 22:10:25 +00001513
1514 ret = nf_conntrack_expect_init();
1515 if (ret < 0)
1516 goto err_expect;
1517
Gao fengb7ff3a12013-01-21 22:10:26 +00001518 ret = nf_conntrack_acct_init();
1519 if (ret < 0)
1520 goto err_acct;
1521
Gao feng73f40012013-01-21 22:10:27 +00001522 ret = nf_conntrack_tstamp_init();
1523 if (ret < 0)
1524 goto err_tstamp;
1525
Gao feng3fe0f942013-01-21 22:10:28 +00001526 ret = nf_conntrack_ecache_init();
1527 if (ret < 0)
1528 goto err_ecache;
1529
Gao feng86840942013-01-21 22:10:29 +00001530 ret = nf_conntrack_timeout_init();
1531 if (ret < 0)
1532 goto err_timeout;
1533
Gao feng5e615b22013-01-21 22:10:30 +00001534 ret = nf_conntrack_helper_init();
1535 if (ret < 0)
1536 goto err_helper;
1537
Gao feng5f69b8f2013-01-21 22:10:31 +00001538 ret = nf_conntrack_labels_init();
1539 if (ret < 0)
1540 goto err_labels;
1541
Patrick McHardy41d73ec2013-08-27 08:50:12 +02001542 ret = nf_conntrack_seqadj_init();
1543 if (ret < 0)
1544 goto err_seqadj;
1545
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001546#ifdef CONFIG_NF_CONNTRACK_ZONES
1547 ret = nf_ct_extend_register(&nf_ct_zone_extend);
1548 if (ret < 0)
1549 goto err_extend;
1550#endif
Gao feng04d87002013-01-21 22:10:32 +00001551 ret = nf_conntrack_proto_init();
1552 if (ret < 0)
1553 goto err_proto;
1554
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001555 /* Set up fake conntrack: to never be deleted, not in any hashes */
Eric Dumazetb3c51632010-06-09 14:43:38 +02001556 for_each_possible_cpu(cpu) {
1557 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001558 write_pnet(&ct->ct_net, &init_net);
1559 atomic_set(&ct->ct_general.use, 1);
1560 }
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001561 /* - and look it like as a confirmed connection */
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001562 nf_ct_untracked_status_or(IPS_CONFIRMED | IPS_UNTRACKED);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001563 return 0;
1564
Gao feng04d87002013-01-21 22:10:32 +00001565err_proto:
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001566#ifdef CONFIG_NF_CONNTRACK_ZONES
Gao feng04d87002013-01-21 22:10:32 +00001567 nf_ct_extend_unregister(&nf_ct_zone_extend);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001568err_extend:
Eric Leblonda9006892012-04-18 11:20:41 +02001569#endif
Patrick McHardy41d73ec2013-08-27 08:50:12 +02001570 nf_conntrack_seqadj_fini();
1571err_seqadj:
Gao feng04d87002013-01-21 22:10:32 +00001572 nf_conntrack_labels_fini();
Gao feng5f69b8f2013-01-21 22:10:31 +00001573err_labels:
1574 nf_conntrack_helper_fini();
Gao feng5e615b22013-01-21 22:10:30 +00001575err_helper:
1576 nf_conntrack_timeout_fini();
Gao feng86840942013-01-21 22:10:29 +00001577err_timeout:
1578 nf_conntrack_ecache_fini();
Gao feng3fe0f942013-01-21 22:10:28 +00001579err_ecache:
1580 nf_conntrack_tstamp_fini();
Gao feng73f40012013-01-21 22:10:27 +00001581err_tstamp:
1582 nf_conntrack_acct_fini();
Gao fengb7ff3a12013-01-21 22:10:26 +00001583err_acct:
1584 nf_conntrack_expect_fini();
Gao feng83b4dbe2013-01-21 22:10:25 +00001585err_expect:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001586 return ret;
1587}
1588
Gao fengf94161c2013-01-21 22:10:24 +00001589void nf_conntrack_init_end(void)
1590{
1591 /* For use by REJECT target */
1592 RCU_INIT_POINTER(ip_ct_attach, nf_conntrack_attach);
1593 RCU_INIT_POINTER(nf_ct_destroy, destroy_conntrack);
Gao fengf94161c2013-01-21 22:10:24 +00001594}
1595
Eric Dumazet8cc20192009-06-22 14:13:55 +02001596/*
1597 * We need to use special "null" values, not used in hash table
1598 */
1599#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1600#define DYING_NULLS_VAL ((1<<30)+1)
Pablo Neira Ayuso252b3e82012-12-11 04:07:42 +00001601#define TEMPLATE_NULLS_VAL ((1<<30)+2)
Eric Dumazet8cc20192009-06-22 14:13:55 +02001602
Gao fengf94161c2013-01-21 22:10:24 +00001603int nf_conntrack_init_net(struct net *net)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001604{
1605 int ret;
1606
1607 atomic_set(&net->ct.count, 0);
Eric Dumazet8cc20192009-06-22 14:13:55 +02001608 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, UNCONFIRMED_NULLS_VAL);
1609 INIT_HLIST_NULLS_HEAD(&net->ct.dying, DYING_NULLS_VAL);
Pablo Neira Ayuso252b3e82012-12-11 04:07:42 +00001610 INIT_HLIST_NULLS_HEAD(&net->ct.tmpl, TEMPLATE_NULLS_VAL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001611 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1612 if (!net->ct.stat) {
1613 ret = -ENOMEM;
1614 goto err_stat;
1615 }
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001616
1617 net->ct.slabname = kasprintf(GFP_KERNEL, "nf_conntrack_%p", net);
1618 if (!net->ct.slabname) {
1619 ret = -ENOMEM;
1620 goto err_slabname;
1621 }
1622
1623 net->ct.nf_conntrack_cachep = kmem_cache_create(net->ct.slabname,
1624 sizeof(struct nf_conn), 0,
1625 SLAB_DESTROY_BY_RCU, NULL);
1626 if (!net->ct.nf_conntrack_cachep) {
1627 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1628 ret = -ENOMEM;
1629 goto err_cache;
1630 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001631
1632 net->ct.htable_size = nf_conntrack_htable_size;
Patrick McHardyd862a662011-01-14 15:45:56 +01001633 net->ct.hash = nf_ct_alloc_hashtable(&net->ct.htable_size, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001634 if (!net->ct.hash) {
1635 ret = -ENOMEM;
1636 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1637 goto err_hash;
1638 }
Gao feng83b4dbe2013-01-21 22:10:25 +00001639 ret = nf_conntrack_expect_pernet_init(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001640 if (ret < 0)
1641 goto err_expect;
Gao fengb7ff3a12013-01-21 22:10:26 +00001642 ret = nf_conntrack_acct_pernet_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001643 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001644 goto err_acct;
Gao feng73f40012013-01-21 22:10:27 +00001645 ret = nf_conntrack_tstamp_pernet_init(net);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001646 if (ret < 0)
1647 goto err_tstamp;
Gao feng3fe0f942013-01-21 22:10:28 +00001648 ret = nf_conntrack_ecache_pernet_init(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001649 if (ret < 0)
1650 goto err_ecache;
Gao feng5e615b22013-01-21 22:10:30 +00001651 ret = nf_conntrack_helper_pernet_init(net);
Eric Leblonda9006892012-04-18 11:20:41 +02001652 if (ret < 0)
1653 goto err_helper;
Gao feng04d87002013-01-21 22:10:32 +00001654 ret = nf_conntrack_proto_pernet_init(net);
Gao fengf94161c2013-01-21 22:10:24 +00001655 if (ret < 0)
1656 goto err_proto;
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001657 return 0;
Florian Westphalc539f012013-01-11 06:30:44 +00001658
Gao fengf94161c2013-01-21 22:10:24 +00001659err_proto:
Gao feng5e615b22013-01-21 22:10:30 +00001660 nf_conntrack_helper_pernet_fini(net);
Eric Leblonda9006892012-04-18 11:20:41 +02001661err_helper:
Gao feng3fe0f942013-01-21 22:10:28 +00001662 nf_conntrack_ecache_pernet_fini(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001663err_ecache:
Gao feng73f40012013-01-21 22:10:27 +00001664 nf_conntrack_tstamp_pernet_fini(net);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001665err_tstamp:
Gao fengb7ff3a12013-01-21 22:10:26 +00001666 nf_conntrack_acct_pernet_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001667err_acct:
Gao feng83b4dbe2013-01-21 22:10:25 +00001668 nf_conntrack_expect_pernet_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001669err_expect:
Patrick McHardyd862a662011-01-14 15:45:56 +01001670 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001671err_hash:
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001672 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1673err_cache:
1674 kfree(net->ct.slabname);
1675err_slabname:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001676 free_percpu(net->ct.stat);
1677err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001678 return ret;
1679}