blob: c8e001a9c45b15a8fe4038845f2111c6470c67b7 [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>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080012 */
13
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080014#include <linux/types.h>
15#include <linux/netfilter.h>
16#include <linux/module.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040017#include <linux/sched.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080018#include <linux/skbuff.h>
19#include <linux/proc_fs.h>
20#include <linux/vmalloc.h>
21#include <linux/stddef.h>
22#include <linux/slab.h>
23#include <linux/random.h>
24#include <linux/jhash.h>
25#include <linux/err.h>
26#include <linux/percpu.h>
27#include <linux/moduleparam.h>
28#include <linux/notifier.h>
29#include <linux/kernel.h>
30#include <linux/netdevice.h>
31#include <linux/socket.h>
Al Virod7fe0f22006-12-03 23:15:30 -050032#include <linux/mm.h>
Patrick McHardyd696c7b2010-02-08 11:18:07 -080033#include <linux/nsproxy.h>
Eric Dumazetea781f12009-03-25 21:05:46 +010034#include <linux/rculist_nulls.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080035
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080036#include <net/netfilter/nf_conntrack.h>
37#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010038#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010039#include <net/netfilter/nf_conntrack_expect.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080040#include <net/netfilter/nf_conntrack_helper.h>
41#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070042#include <net/netfilter/nf_conntrack_extend.h>
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -070043#include <net/netfilter/nf_conntrack_acct.h>
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020044#include <net/netfilter/nf_conntrack_ecache.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010045#include <net/netfilter/nf_conntrack_zones.h>
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +010046#include <net/netfilter/nf_conntrack_timestamp.h>
Pablo Neira Ayusodd705072012-02-28 23:36:48 +010047#include <net/netfilter/nf_conntrack_timeout.h>
Florian Westphalc539f012013-01-11 06:30:44 +000048#include <net/netfilter/nf_conntrack_labels.h>
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070049#include <net/netfilter/nf_nat.h>
Patrick McHardye17b6662008-11-18 12:24:17 +010050#include <net/netfilter/nf_nat_core.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080051
Harald Weltedc808fe2006-03-20 17:56:32 -080052#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080053
Patrick McHardye17b6662008-11-18 12:24:17 +010054int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
55 enum nf_nat_manip_type manip,
Patrick McHardy39938322009-08-25 16:07:58 +020056 const struct nlattr *attr) __read_mostly;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070057EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
58
Patrick McHardyc7232c92012-08-26 19:14:06 +020059int (*nf_nat_seq_adjust_hook)(struct sk_buff *skb,
60 struct nf_conn *ct,
61 enum ip_conntrack_info ctinfo,
62 unsigned int protoff);
63EXPORT_SYMBOL_GPL(nf_nat_seq_adjust_hook);
64
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080065DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080066EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080067
Martin Josefssone2b76062006-11-29 02:35:04 +010068unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080069EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
70
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +010071unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010072EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080073
Eric Dumazetb3c51632010-06-09 14:43:38 +020074DEFINE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
75EXPORT_PER_CPU_SYMBOL(nf_conntrack_untracked);
Patrick McHardy13b18332006-12-02 22:11:25 -080076
Changli Gaof682cef2011-01-05 04:23:23 +000077unsigned int nf_conntrack_hash_rnd __read_mostly;
Patrick McHardy4d4e61c2011-12-23 14:00:13 +010078EXPORT_SYMBOL_GPL(nf_conntrack_hash_rnd);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080079
Changli Gao99f07e92010-09-21 17:49:20 +020080static u32 hash_conntrack_raw(const struct nf_conntrack_tuple *tuple, u16 zone)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080081{
Patrick McHardy07949352008-01-31 04:40:52 -080082 unsigned int n;
Sami Farin9b887902007-03-14 16:43:00 -070083
Patrick McHardy07949352008-01-31 04:40:52 -080084 /* The direction must be ignored, so we hash everything up to the
85 * destination ports (which is a multiple of 4) and treat the last
86 * three bytes manually.
87 */
88 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
Changli Gao99f07e92010-09-21 17:49:20 +020089 return jhash2((u32 *)tuple, n, zone ^ nf_conntrack_hash_rnd ^
90 (((__force __u16)tuple->dst.u.all << 16) |
91 tuple->dst.protonum));
92}
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080093
Changli Gao99f07e92010-09-21 17:49:20 +020094static u32 __hash_bucket(u32 hash, unsigned int size)
95{
96 return ((u64)hash * size) >> 32;
97}
98
99static u32 hash_bucket(u32 hash, const struct net *net)
100{
101 return __hash_bucket(hash, net->ct.htable_size);
102}
103
104static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
105 u16 zone, unsigned int size)
106{
107 return __hash_bucket(hash_conntrack_raw(tuple, zone), size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800108}
109
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100110static inline u_int32_t hash_conntrack(const struct net *net, u16 zone,
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800111 const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800112{
Changli Gao99f07e92010-09-21 17:49:20 +0200113 return __hash_conntrack(tuple, zone, net->ct.htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800114}
115
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200116bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800117nf_ct_get_tuple(const struct sk_buff *skb,
118 unsigned int nhoff,
119 unsigned int dataoff,
120 u_int16_t l3num,
121 u_int8_t protonum,
122 struct nf_conntrack_tuple *tuple,
123 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100124 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800125{
Philip Craig443a70d2008-04-29 03:35:10 -0700126 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800127
128 tuple->src.l3num = l3num;
129 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200130 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800131
132 tuple->dst.protonum = protonum;
133 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
134
Martin Josefsson605dcad2006-11-29 02:35:06 +0100135 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800136}
Patrick McHardy13b18332006-12-02 22:11:25 -0800137EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800138
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200139bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
140 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700141{
142 struct nf_conntrack_l3proto *l3proto;
143 struct nf_conntrack_l4proto *l4proto;
144 unsigned int protoff;
145 u_int8_t protonum;
146 int ret;
147
148 rcu_read_lock();
149
150 l3proto = __nf_ct_l3proto_find(l3num);
151 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
152 if (ret != NF_ACCEPT) {
153 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200154 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700155 }
156
157 l4proto = __nf_ct_l4proto_find(l3num, protonum);
158
159 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
160 l3proto, l4proto);
161
162 rcu_read_unlock();
163 return ret;
164}
165EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
166
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200167bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800168nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
169 const struct nf_conntrack_tuple *orig,
170 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100171 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800172{
Philip Craig443a70d2008-04-29 03:35:10 -0700173 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800174
175 inverse->src.l3num = orig->src.l3num;
176 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200177 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800178
179 inverse->dst.dir = !orig->dst.dir;
180
181 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100182 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800183}
Patrick McHardy13b18332006-12-02 22:11:25 -0800184EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800185
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800186static void
187clean_from_lists(struct nf_conn *ct)
188{
Patrick McHardy0d537782007-07-07 22:39:38 -0700189 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100190 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
191 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800192
193 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800194 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800195}
196
197static void
198destroy_conntrack(struct nf_conntrack *nfct)
199{
200 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200201 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100202 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800203
Patrick McHardy0d537782007-07-07 22:39:38 -0700204 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800205 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
206 NF_CT_ASSERT(!timer_pending(&ct->timeout));
207
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800208 /* To make sure we don't get any weird locking issues here:
209 * destroy_conntrack() MUST NOT be called with a write lock
210 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800211 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200212 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100213 if (l4proto && l4proto->destroy)
214 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800215
Patrick McHardy982d9a92007-02-12 11:14:11 -0800216 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800217
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800218 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800219 /* Expectations will have been removed in clean_from_lists,
220 * except TFTP can create an expectation on the first packet,
221 * before connection is in the list, so we need to clean here,
222 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800223 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800224
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100225 /* We overload first tuple to link into unconfirmed or dying list.*/
226 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
227 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800228
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200229 NF_CT_STAT_INC(net, delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800230 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800231
232 if (ct->master)
233 nf_ct_put(ct->master);
234
Patrick McHardy0d537782007-07-07 22:39:38 -0700235 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800236 nf_conntrack_free(ct);
237}
238
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200239void nf_ct_delete_from_lists(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800240{
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200241 struct net *net = nf_ct_net(ct);
Patrick McHardy5397e972007-05-19 14:23:52 -0700242
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200243 nf_ct_helper_destroy(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800244 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800245 /* Inside lock so preempt is disabled on module removal path.
246 * Otherwise we can get spurious warnings. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200247 NF_CT_STAT_INC(net, delete_list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800248 clean_from_lists(ct);
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100249 /* add this conntrack to the dying list */
250 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
251 &net->ct.dying);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800252 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200253}
254EXPORT_SYMBOL_GPL(nf_ct_delete_from_lists);
255
256static void death_by_event(unsigned long ul_conntrack)
257{
258 struct nf_conn *ct = (void *)ul_conntrack;
259 struct net *net = nf_ct_net(ct);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000260 struct nf_conntrack_ecache *ecache = nf_ct_ecache_find(ct);
261
262 BUG_ON(ecache == NULL);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200263
264 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
265 /* bad luck, let's retry again */
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000266 ecache->timeout.expires = jiffies +
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200267 (random32() % net->ct.sysctl_events_retry_timeout);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000268 add_timer(&ecache->timeout);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200269 return;
270 }
271 /* we've got the event delivered, now it's dying */
272 set_bit(IPS_DYING_BIT, &ct->status);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200273 nf_ct_put(ct);
274}
275
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100276void nf_ct_dying_timeout(struct nf_conn *ct)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200277{
278 struct net *net = nf_ct_net(ct);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000279 struct nf_conntrack_ecache *ecache = nf_ct_ecache_find(ct);
280
281 BUG_ON(ecache == NULL);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200282
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200283 /* set a new timer to retry event delivery */
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000284 setup_timer(&ecache->timeout, death_by_event, (unsigned long)ct);
285 ecache->timeout.expires = jiffies +
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200286 (random32() % net->ct.sysctl_events_retry_timeout);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000287 add_timer(&ecache->timeout);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200288}
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100289EXPORT_SYMBOL_GPL(nf_ct_dying_timeout);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200290
291static void death_by_timeout(unsigned long ul_conntrack)
292{
293 struct nf_conn *ct = (void *)ul_conntrack;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100294 struct nf_conn_tstamp *tstamp;
295
296 tstamp = nf_conn_tstamp_find(ct);
297 if (tstamp && tstamp->stop == 0)
298 tstamp->stop = ktime_to_ns(ktime_get_real());
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200299
300 if (!test_bit(IPS_DYING_BIT, &ct->status) &&
301 unlikely(nf_conntrack_event(IPCT_DESTROY, ct) < 0)) {
302 /* destroy event was not delivered */
303 nf_ct_delete_from_lists(ct);
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100304 nf_ct_dying_timeout(ct);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200305 return;
306 }
307 set_bit(IPS_DYING_BIT, &ct->status);
308 nf_ct_delete_from_lists(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800309 nf_ct_put(ct);
310}
311
Eric Dumazetea781f12009-03-25 21:05:46 +0100312/*
313 * Warning :
314 * - Caller must take a reference on returned object
315 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
316 * OR
317 * - Caller must lock nf_conntrack_lock before calling this function
318 */
Changli Gao99f07e92010-09-21 17:49:20 +0200319static struct nf_conntrack_tuple_hash *
320____nf_conntrack_find(struct net *net, u16 zone,
321 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800322{
323 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100324 struct hlist_nulls_node *n;
Changli Gao99f07e92010-09-21 17:49:20 +0200325 unsigned int bucket = hash_bucket(hash, net);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800326
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800327 /* Disable BHs the entire time since we normally need to disable them
328 * at least once for the stats anyway.
329 */
330 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100331begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200332 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[bucket], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100333 if (nf_ct_tuple_equal(tuple, &h->tuple) &&
334 nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200335 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800336 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800337 return h;
338 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200339 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800340 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100341 /*
342 * if the nulls value we got at the end of this lookup is
343 * not the expected one, we must restart lookup.
344 * We probably met an item that was moved to another chain.
345 */
Changli Gao99f07e92010-09-21 17:49:20 +0200346 if (get_nulls_value(n) != bucket) {
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200347 NF_CT_STAT_INC(net, search_restart);
Eric Dumazetea781f12009-03-25 21:05:46 +0100348 goto begin;
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200349 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800350 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800351
352 return NULL;
353}
Changli Gao99f07e92010-09-21 17:49:20 +0200354
355struct nf_conntrack_tuple_hash *
356__nf_conntrack_find(struct net *net, u16 zone,
357 const struct nf_conntrack_tuple *tuple)
358{
359 return ____nf_conntrack_find(net, zone, tuple,
360 hash_conntrack_raw(tuple, zone));
361}
Patrick McHardy13b18332006-12-02 22:11:25 -0800362EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800363
364/* Find a connection corresponding to a tuple. */
Changli Gao99f07e92010-09-21 17:49:20 +0200365static struct nf_conntrack_tuple_hash *
366__nf_conntrack_find_get(struct net *net, u16 zone,
367 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800368{
369 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800370 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800371
Patrick McHardy76507f62008-01-31 04:38:38 -0800372 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100373begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200374 h = ____nf_conntrack_find(net, zone, tuple, hash);
Patrick McHardy76507f62008-01-31 04:38:38 -0800375 if (h) {
376 ct = nf_ct_tuplehash_to_ctrack(h);
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200377 if (unlikely(nf_ct_is_dying(ct) ||
378 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800379 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100380 else {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100381 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple) ||
382 nf_ct_zone(ct) != zone)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100383 nf_ct_put(ct);
384 goto begin;
385 }
386 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800387 }
388 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800389
390 return h;
391}
Changli Gao99f07e92010-09-21 17:49:20 +0200392
393struct nf_conntrack_tuple_hash *
394nf_conntrack_find_get(struct net *net, u16 zone,
395 const struct nf_conntrack_tuple *tuple)
396{
397 return __nf_conntrack_find_get(net, zone, tuple,
398 hash_conntrack_raw(tuple, zone));
399}
Patrick McHardy13b18332006-12-02 22:11:25 -0800400EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800401
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800402static void __nf_conntrack_hash_insert(struct nf_conn *ct,
403 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800404 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800405{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200406 struct net *net = nf_ct_net(ct);
407
Eric Dumazetea781f12009-03-25 21:05:46 +0100408 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200409 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100410 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200411 &net->ct.hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800412}
413
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100414int
415nf_conntrack_hash_check_insert(struct nf_conn *ct)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800416{
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800417 struct net *net = nf_ct_net(ct);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800418 unsigned int hash, repl_hash;
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100419 struct nf_conntrack_tuple_hash *h;
420 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100421 u16 zone;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800422
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100423 zone = nf_ct_zone(ct);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100424 hash = hash_conntrack(net, zone,
425 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
426 repl_hash = hash_conntrack(net, zone,
427 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800428
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100429 spin_lock_bh(&nf_conntrack_lock);
430
431 /* See if there's one in the list already, including reverse */
432 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
433 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
434 &h->tuple) &&
435 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
436 goto out;
437 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
438 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
439 &h->tuple) &&
440 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
441 goto out;
442
443 add_timer(&ct->timeout);
444 nf_conntrack_get(&ct->ct_general);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800445 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100446 NF_CT_STAT_INC(net, insert);
447 spin_unlock_bh(&nf_conntrack_lock);
448
449 return 0;
450
451out:
452 NF_CT_STAT_INC(net, insert_failed);
453 spin_unlock_bh(&nf_conntrack_lock);
454 return -EEXIST;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800455}
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100456EXPORT_SYMBOL_GPL(nf_conntrack_hash_check_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800457
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800458/* Confirm a connection given skb; places it in hash table */
459int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700460__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800461{
462 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700463 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800464 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700465 struct nf_conn_help *help;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100466 struct nf_conn_tstamp *tstamp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100467 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800468 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200469 struct net *net;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100470 u16 zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800471
Herbert Xu3db05fe2007-10-15 00:53:15 -0700472 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200473 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800474
475 /* ipt_REJECT uses nf_conntrack_attach to attach related
476 ICMP/TCP RST packets in other direction. Actual packet
477 which created connection will be IP_CT_NEW or for an
478 expected connection, IP_CT_RELATED. */
479 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
480 return NF_ACCEPT;
481
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100482 zone = nf_ct_zone(ct);
Changli Gao99f07e92010-09-21 17:49:20 +0200483 /* reuse the hash saved before */
484 hash = *(unsigned long *)&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev;
485 hash = hash_bucket(hash, net);
486 repl_hash = hash_conntrack(net, zone,
487 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800488
489 /* We're not in hash table, and we refuse to set up related
490 connections for unconfirmed conns. But packet copies and
491 REJECT will give spurious warnings here. */
492 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
493
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300494 /* No external references means no one else could have
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800495 confirmed us. */
496 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700497 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800498
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800499 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800500
Joerg Marxfc350772010-05-20 15:55:30 +0200501 /* We have to check the DYING flag inside the lock to prevent
502 a race against nf_ct_get_next_corpse() possibly called from
503 user context, else we insert an already 'dead' hash, blocking
504 further use of that particular connection -JM */
505
506 if (unlikely(nf_ct_is_dying(ct))) {
507 spin_unlock_bh(&nf_conntrack_lock);
508 return NF_ACCEPT;
509 }
510
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800511 /* See if there's one in the list already, including reverse:
512 NAT could have grabbed it without realizing, since we're
513 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100514 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700515 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100516 &h->tuple) &&
517 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700518 goto out;
Eric Dumazetea781f12009-03-25 21:05:46 +0100519 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700520 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100521 &h->tuple) &&
522 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700523 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800524
Patrick McHardydf0933d2006-09-20 11:57:53 -0700525 /* Remove from unconfirmed list */
Eric Dumazetea781f12009-03-25 21:05:46 +0100526 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700527
Patrick McHardydf0933d2006-09-20 11:57:53 -0700528 /* Timer relative to confirmation time, not original
529 setting time, otherwise we'd get timer wrap in
530 weird delay cases. */
531 ct->timeout.expires += jiffies;
532 add_timer(&ct->timeout);
533 atomic_inc(&ct->ct_general.use);
Changli Gao45eec342011-01-18 15:08:13 +0100534 ct->status |= IPS_CONFIRMED;
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200535
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100536 /* set conntrack timestamp, if enabled. */
537 tstamp = nf_conn_tstamp_find(ct);
538 if (tstamp) {
539 if (skb->tstamp.tv64 == 0)
Joe Perchese3192692012-06-03 17:41:40 +0000540 __net_timestamp(skb);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100541
542 tstamp->start = ktime_to_ns(skb->tstamp);
543 }
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200544 /* Since the lookup is lockless, hash insertion must be done after
545 * starting the timer and setting the CONFIRMED bit. The RCU barriers
546 * guarantee that no other CPU can find the conntrack before the above
547 * stores are visible.
548 */
549 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200550 NF_CT_STAT_INC(net, insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800551 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200552
Patrick McHardydf0933d2006-09-20 11:57:53 -0700553 help = nfct_help(ct);
554 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200555 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200556
Patrick McHardydf0933d2006-09-20 11:57:53 -0700557 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200558 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700559 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800560
Patrick McHardydf0933d2006-09-20 11:57:53 -0700561out:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200562 NF_CT_STAT_INC(net, insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800563 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800564 return NF_DROP;
565}
Patrick McHardy13b18332006-12-02 22:11:25 -0800566EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800567
568/* Returns true if a connection correspondings to the tuple (required
569 for NAT). */
570int
571nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
572 const struct nf_conn *ignored_conntrack)
573{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200574 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800575 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100576 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100577 struct nf_conn *ct;
578 u16 zone = nf_ct_zone(ignored_conntrack);
579 unsigned int hash = hash_conntrack(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800580
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800581 /* Disable BHs the entire time since we need to disable them at
582 * least once for the stats anyway.
583 */
584 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100585 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100586 ct = nf_ct_tuplehash_to_ctrack(h);
587 if (ct != ignored_conntrack &&
588 nf_ct_tuple_equal(tuple, &h->tuple) &&
589 nf_ct_zone(ct) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200590 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800591 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800592 return 1;
593 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200594 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800595 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800596 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800597
Patrick McHardyba419af2008-01-31 04:39:23 -0800598 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800599}
Patrick McHardy13b18332006-12-02 22:11:25 -0800600EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800601
Patrick McHardy7ae77302007-07-07 22:37:38 -0700602#define NF_CT_EVICTION_RANGE 8
603
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800604/* There's a small race here where we may free a just-assured
605 connection. Too bad: we're in trouble anyway. */
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200606static noinline int early_drop(struct net *net, unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800607{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700608 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800609 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700610 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100611 struct hlist_nulls_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700612 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800613 int dropped = 0;
614
Patrick McHardy76507f62008-01-31 04:38:38 -0800615 rcu_read_lock();
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800616 for (i = 0; i < net->ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100617 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
618 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700619 tmp = nf_ct_tuplehash_to_ctrack(h);
620 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
621 ct = tmp;
622 cnt++;
623 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800624
Changli Gao5ae27aa22009-11-05 14:51:31 +0100625 if (ct != NULL) {
626 if (likely(!nf_ct_is_dying(ct) &&
627 atomic_inc_not_zero(&ct->ct_general.use)))
628 break;
629 else
630 ct = NULL;
631 }
632
633 if (cnt >= NF_CT_EVICTION_RANGE)
Patrick McHardy7ae77302007-07-07 22:37:38 -0700634 break;
Changli Gao5ae27aa22009-11-05 14:51:31 +0100635
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800636 hash = (hash + 1) % net->ct.htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800637 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800638 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800639
640 if (!ct)
641 return dropped;
642
643 if (del_timer(&ct->timeout)) {
644 death_by_timeout((unsigned long)ct);
Pablo Neira Ayuso741385112012-03-06 01:22:55 +0000645 /* Check if we indeed killed this entry. Reliable event
646 delivery may have inserted it into the dying list. */
647 if (test_bit(IPS_DYING_BIT, &ct->status)) {
648 dropped = 1;
649 NF_CT_STAT_INC_ATOMIC(net, early_drop);
650 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800651 }
652 nf_ct_put(ct);
653 return dropped;
654}
655
Changli Gaof682cef2011-01-05 04:23:23 +0000656void init_nf_conntrack_hash_rnd(void)
657{
658 unsigned int rand;
659
660 /*
661 * Why not initialize nf_conntrack_rnd in a "init()" function ?
662 * Because there isn't enough entropy when system initializing,
663 * and we initialize it as late as possible.
664 */
665 do {
666 get_random_bytes(&rand, sizeof(rand));
667 } while (!rand);
668 cmpxchg(&nf_conntrack_hash_rnd, 0, rand);
669}
670
Changli Gao99f07e92010-09-21 17:49:20 +0200671static struct nf_conn *
672__nf_conntrack_alloc(struct net *net, u16 zone,
673 const struct nf_conntrack_tuple *orig,
674 const struct nf_conntrack_tuple *repl,
675 gfp_t gfp, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800676{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000677 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800678
Changli Gaob2390962010-09-16 19:55:03 +0200679 if (unlikely(!nf_conntrack_hash_rnd)) {
Changli Gaof682cef2011-01-05 04:23:23 +0000680 init_nf_conntrack_hash_rnd();
Changli Gao99f07e92010-09-21 17:49:20 +0200681 /* recompute the hash as nf_conntrack_hash_rnd is initialized */
682 hash = hash_conntrack_raw(orig, zone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800683 }
684
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700685 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200686 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700687
Patrick McHardy76eb9462008-01-31 04:41:44 -0800688 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200689 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Changli Gao99f07e92010-09-21 17:49:20 +0200690 if (!early_drop(net, hash_bucket(hash, net))) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200691 atomic_dec(&net->ct.count);
Joe Perchese87cc472012-05-13 21:56:26 +0000692 net_warn_ratelimited("nf_conntrack: table full, dropping packet\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800693 return ERR_PTR(-ENOMEM);
694 }
695 }
696
Eric Dumazet941297f2009-07-16 14:03:40 +0200697 /*
698 * Do not use kmem_cache_zalloc(), as this cache uses
699 * SLAB_DESTROY_BY_RCU.
700 */
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800701 ct = kmem_cache_alloc(net->ct.nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800702 if (ct == NULL) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200703 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700704 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800705 }
Eric Dumazet941297f2009-07-16 14:03:40 +0200706 /*
707 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
708 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
709 */
710 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100711 offsetof(struct nf_conn, proto) -
712 offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
Patrick McHardy440f0d52009-06-10 14:32:47 +0200713 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800714 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
Eric Dumazet941297f2009-07-16 14:03:40 +0200715 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800716 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Changli Gao99f07e92010-09-21 17:49:20 +0200717 /* save hash for reusing when confirming */
718 *(unsigned long *)(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev) = hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800719 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800720 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000721 write_pnet(&ct->ct_net, net);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100722#ifdef CONFIG_NF_CONNTRACK_ZONES
723 if (zone) {
724 struct nf_conntrack_zone *nf_ct_zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800725
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100726 nf_ct_zone = nf_ct_ext_add(ct, NF_CT_EXT_ZONE, GFP_ATOMIC);
727 if (!nf_ct_zone)
728 goto out_free;
729 nf_ct_zone->id = zone;
730 }
731#endif
Eric Dumazet941297f2009-07-16 14:03:40 +0200732 /*
733 * changes to lookup keys must be done before setting refcnt to 1
734 */
735 smp_wmb();
736 atomic_set(&ct->ct_general.use, 1);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800737 return ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100738
739#ifdef CONFIG_NF_CONNTRACK_ZONES
740out_free:
Pablo Neira Ayusod96fc652012-04-03 16:45:54 +0200741 atomic_dec(&net->ct.count);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100742 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
743 return ERR_PTR(-ENOMEM);
744#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800745}
Changli Gao99f07e92010-09-21 17:49:20 +0200746
747struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
748 const struct nf_conntrack_tuple *orig,
749 const struct nf_conntrack_tuple *repl,
750 gfp_t gfp)
751{
752 return __nf_conntrack_alloc(net, zone, orig, repl, gfp, 0);
753}
Patrick McHardy13b18332006-12-02 22:11:25 -0800754EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800755
Patrick McHardyc88130b2008-01-31 04:42:11 -0800756void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800757{
Eric Dumazet1d452092009-03-24 14:26:50 +0100758 struct net *net = nf_ct_net(ct);
759
Patrick McHardyceeff752008-06-11 17:51:10 -0700760 nf_ct_ext_destroy(ct);
Eric Dumazet1d452092009-03-24 14:26:50 +0100761 atomic_dec(&net->ct.count);
Eric Dumazetea781f12009-03-25 21:05:46 +0100762 nf_ct_ext_free(ct);
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800763 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800764}
Patrick McHardy13b18332006-12-02 22:11:25 -0800765EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800766
Florian Westphalc539f012013-01-11 06:30:44 +0000767
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800768/* Allocate a new conntrack: we return -ENOMEM if classification
769 failed due to stress. Otherwise it really is unclassifiable. */
770static struct nf_conntrack_tuple_hash *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100771init_conntrack(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200772 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800773 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100774 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800775 struct sk_buff *skb,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100776 unsigned int dataoff, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800777{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800778 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700779 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800780 struct nf_conntrack_tuple repl_tuple;
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100781 struct nf_conntrack_ecache *ecache;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800782 struct nf_conntrack_expect *exp;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100783 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100784 struct nf_conn_timeout *timeout_ext;
785 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800786
Martin Josefsson605dcad2006-11-29 02:35:06 +0100787 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700788 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800789 return NULL;
790 }
791
Changli Gao99f07e92010-09-21 17:49:20 +0200792 ct = __nf_conntrack_alloc(net, zone, tuple, &repl_tuple, GFP_ATOMIC,
793 hash);
Joe Perches0a9ee812011-08-29 14:17:25 -0700794 if (IS_ERR(ct))
Patrick McHardyc88130b2008-01-31 04:42:11 -0800795 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800796
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100797 timeout_ext = tmpl ? nf_ct_timeout_find(tmpl) : NULL;
798 if (timeout_ext)
799 timeouts = NF_CT_TIMEOUT_EXT_DATA(timeout_ext);
800 else
801 timeouts = l4proto->get_timeouts(net);
802
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100803 if (!l4proto->new(ct, skb, dataoff, timeouts)) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800804 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700805 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800806 return NULL;
807 }
808
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100809 if (timeout_ext)
810 nf_ct_timeout_ext_add(ct, timeout_ext->timeout, GFP_ATOMIC);
811
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700812 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100813 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
Florian Westphalc539f012013-01-11 06:30:44 +0000814 nf_ct_labels_ext_add(ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100815
816 ecache = tmpl ? nf_ct_ecache_find(tmpl) : NULL;
817 nf_ct_ecache_ext_add(ct, ecache ? ecache->ctmask : 0,
818 ecache ? ecache->expmask : 0,
819 GFP_ATOMIC);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700820
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800821 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100822 exp = nf_ct_find_expectation(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800823 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700824 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800825 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800826 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800827 __set_bit(IPS_EXPECTED_BIT, &ct->status);
828 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700829 if (exp->helper) {
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +0200830 help = nf_ct_helper_ext_add(ct, exp->helper,
831 GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700832 if (help)
Eric Dumazetcf778b02012-01-12 04:41:32 +0000833 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700834 }
835
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800836#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800837 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800838#endif
James Morris7c9728c2006-06-09 00:31:46 -0700839#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800840 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700841#endif
Patrick McHardyc88130b2008-01-31 04:42:11 -0800842 nf_conntrack_get(&ct->master->ct_general);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200843 NF_CT_STAT_INC(net, expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800844 } else {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100845 __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200846 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800847 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800848
849 /* Overload tuple linked list to put us in unconfirmed list. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100850 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan63c9a262008-10-08 11:35:04 +0200851 &net->ct.unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800852
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800853 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800854
855 if (exp) {
856 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800857 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700858 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800859 }
860
Patrick McHardyc88130b2008-01-31 04:42:11 -0800861 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800862}
863
864/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
865static inline struct nf_conn *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100866resolve_normal_ct(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyana702a652008-10-08 11:35:04 +0200867 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800868 unsigned int dataoff,
869 u_int16_t l3num,
870 u_int8_t protonum,
871 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100872 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800873 int *set_reply,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100874 enum ip_conntrack_info *ctinfo)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800875{
876 struct nf_conntrack_tuple tuple;
877 struct nf_conntrack_tuple_hash *h;
878 struct nf_conn *ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100879 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Changli Gao99f07e92010-09-21 17:49:20 +0200880 u32 hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800881
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300882 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800883 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100884 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700885 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800886 return NULL;
887 }
888
889 /* look for tuple match */
Changli Gao99f07e92010-09-21 17:49:20 +0200890 hash = hash_conntrack_raw(&tuple, zone);
891 h = __nf_conntrack_find_get(net, zone, &tuple, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800892 if (!h) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100893 h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100894 skb, dataoff, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800895 if (!h)
896 return NULL;
897 if (IS_ERR(h))
898 return (void *)h;
899 }
900 ct = nf_ct_tuplehash_to_ctrack(h);
901
902 /* It exists; we have (non-exclusive) reference. */
903 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
Eric Dumazetfb048832011-05-19 15:44:27 +0200904 *ctinfo = IP_CT_ESTABLISHED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800905 /* Please set reply bit if this packet OK */
906 *set_reply = 1;
907 } else {
908 /* Once we've had two way comms, always ESTABLISHED. */
909 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700910 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800911 *ctinfo = IP_CT_ESTABLISHED;
912 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700913 pr_debug("nf_conntrack_in: related packet for %p\n",
914 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800915 *ctinfo = IP_CT_RELATED;
916 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700917 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800918 *ctinfo = IP_CT_NEW;
919 }
920 *set_reply = 0;
921 }
922 skb->nfct = &ct->ct_general;
923 skb->nfctinfo = *ctinfo;
924 return ct;
925}
926
927unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +0200928nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
929 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800930{
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100931 struct nf_conn *ct, *tmpl = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800932 enum ip_conntrack_info ctinfo;
933 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100934 struct nf_conntrack_l4proto *l4proto;
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100935 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800936 unsigned int dataoff;
937 u_int8_t protonum;
938 int set_reply = 0;
939 int ret;
940
Herbert Xu3db05fe2007-10-15 00:53:15 -0700941 if (skb->nfct) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100942 /* Previously seen (loopback or untracked)? Ignore. */
943 tmpl = (struct nf_conn *)skb->nfct;
944 if (!nf_ct_is_template(tmpl)) {
945 NF_CT_STAT_INC_ATOMIC(net, ignore);
946 return NF_ACCEPT;
947 }
948 skb->nfct = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800949 }
950
Patrick McHardy923f4902007-02-12 11:12:57 -0800951 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200952 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700953 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700954 &dataoff, &protonum);
955 if (ret <= 0) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300956 pr_debug("not prepared to track yet or error occurred\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200957 NF_CT_STAT_INC_ATOMIC(net, error);
958 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100959 ret = -ret;
960 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800961 }
962
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200963 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800964
965 /* It may be an special packet, error, unclean...
966 * inverse of the return code tells to the netfilter
967 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200968 if (l4proto->error != NULL) {
Patrick McHardy8fea97e2010-02-15 17:45:08 +0100969 ret = l4proto->error(net, tmpl, skb, dataoff, &ctinfo,
970 pf, hooknum);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200971 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200972 NF_CT_STAT_INC_ATOMIC(net, error);
973 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100974 ret = -ret;
975 goto out;
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200976 }
Pablo Neira Ayuso88ed01d2011-06-02 15:08:45 +0200977 /* ICMP[v6] protocol trackers may assign one conntrack. */
978 if (skb->nfct)
979 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800980 }
981
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100982 ct = resolve_normal_ct(net, tmpl, skb, dataoff, pf, protonum,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100983 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800984 if (!ct) {
985 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200986 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100987 ret = NF_ACCEPT;
988 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800989 }
990
991 if (IS_ERR(ct)) {
992 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200993 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100994 ret = NF_DROP;
995 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800996 }
997
Herbert Xu3db05fe2007-10-15 00:53:15 -0700998 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800999
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001000 /* Decide what timeout policy we want to apply to this flow. */
Pablo Neira Ayuso84b5ee92012-08-28 00:53:15 +00001001 timeouts = nf_ct_timeout_lookup(net, ct, l4proto);
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001002
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +01001003 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum, timeouts);
Christoph Paaschec8d5402009-03-16 15:51:29 +01001004 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001005 /* Invalid: inverse of the return code tells
1006 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -07001007 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -07001008 nf_conntrack_put(skb->nfct);
1009 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001010 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +01001011 if (ret == -NF_DROP)
1012 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001013 ret = -ret;
1014 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001015 }
1016
1017 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Patrick McHardy858b31332010-02-03 13:48:53 +01001018 nf_conntrack_event_cache(IPCT_REPLY, ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001019out:
Pablo Neira Ayusoc3174282011-02-09 08:08:20 +01001020 if (tmpl) {
1021 /* Special case: we have to repeat this hook, assign the
1022 * template again to this packet. We assume that this packet
1023 * has no conntrack assigned. This is used by nf_ct_tcp. */
1024 if (ret == NF_REPEAT)
1025 skb->nfct = (struct nf_conntrack *)tmpl;
1026 else
1027 nf_ct_put(tmpl);
1028 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001029
1030 return ret;
1031}
Patrick McHardy13b18332006-12-02 22:11:25 -08001032EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001033
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001034bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
1035 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001036{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001037 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -08001038
1039 rcu_read_lock();
1040 ret = nf_ct_invert_tuple(inverse, orig,
1041 __nf_ct_l3proto_find(orig->src.l3num),
1042 __nf_ct_l4proto_find(orig->src.l3num,
1043 orig->dst.protonum));
1044 rcu_read_unlock();
1045 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001046}
Patrick McHardy13b18332006-12-02 22:11:25 -08001047EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001048
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001049/* Alter reply tuple (maybe alter helper). This is for NAT, and is
1050 implicitly racy: see __nf_conntrack_confirm */
1051void nf_conntrack_alter_reply(struct nf_conn *ct,
1052 const struct nf_conntrack_tuple *newreply)
1053{
1054 struct nf_conn_help *help = nfct_help(ct);
1055
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001056 /* Should be unconfirmed, so not in hash table yet */
1057 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
1058
Patrick McHardy0d537782007-07-07 22:39:38 -07001059 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +02001060 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001061
1062 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +02001063 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001064 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001065
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001066 rcu_read_lock();
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001067 __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001068 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001069}
Patrick McHardy13b18332006-12-02 22:11:25 -08001070EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001071
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001072/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
1073void __nf_ct_refresh_acct(struct nf_conn *ct,
1074 enum ip_conntrack_info ctinfo,
1075 const struct sk_buff *skb,
1076 unsigned long extra_jiffies,
1077 int do_acct)
1078{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001079 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
1080 NF_CT_ASSERT(skb);
1081
Eric Leblond997ae832006-05-29 18:24:20 -07001082 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -08001083 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
1084 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -07001085
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001086 /* If not in hash table, timer will not be active yet */
1087 if (!nf_ct_is_confirmed(ct)) {
1088 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001089 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +01001090 unsigned long newtime = jiffies + extra_jiffies;
1091
1092 /* Only update the timeout if the new timeout is at least
1093 HZ jiffies from the old timeout. Need del_timer for race
1094 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001095 if (newtime - ct->timeout.expires >= HZ)
1096 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001097 }
1098
Patrick McHardy47d95042008-01-31 04:36:31 -08001099acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001100 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001101 struct nf_conn_counter *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +01001102
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001103 acct = nf_conn_acct_find(ct);
1104 if (acct) {
Eric Dumazetb3e0bfa2011-12-14 14:45:20 +01001105 atomic64_inc(&acct[CTINFO2DIR(ctinfo)].packets);
1106 atomic64_add(skb->len, &acct[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001107 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001108 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001109}
Patrick McHardy13b18332006-12-02 22:11:25 -08001110EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001111
David S. Miller4c889492008-07-14 20:22:38 -07001112bool __nf_ct_kill_acct(struct nf_conn *ct,
1113 enum ip_conntrack_info ctinfo,
1114 const struct sk_buff *skb,
1115 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -07001116{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001117 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001118 struct nf_conn_counter *acct;
1119
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001120 acct = nf_conn_acct_find(ct);
1121 if (acct) {
Eric Dumazetb3e0bfa2011-12-14 14:45:20 +01001122 atomic64_inc(&acct[CTINFO2DIR(ctinfo)].packets);
1123 atomic64_add(skb->len - skb_network_offset(skb),
1124 &acct[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001125 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001126 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001127
David S. Miller4c889492008-07-14 20:22:38 -07001128 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -07001129 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -07001130 return true;
1131 }
1132 return false;
Patrick McHardy51091762008-06-09 15:59:06 -07001133}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001134EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -07001135
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001136#ifdef CONFIG_NF_CONNTRACK_ZONES
1137static struct nf_ct_ext_type nf_ct_zone_extend __read_mostly = {
1138 .len = sizeof(struct nf_conntrack_zone),
1139 .align = __alignof__(struct nf_conntrack_zone),
1140 .id = NF_CT_EXT_ZONE,
1141};
1142#endif
1143
Igor Maravićc0cd1152011-12-12 02:58:24 +00001144#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001145
1146#include <linux/netfilter/nfnetlink.h>
1147#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -08001148#include <linux/mutex.h>
1149
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001150/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
1151 * in ip_conntrack_core, since we don't want the protocols to autoload
1152 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -07001153int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001154 const struct nf_conntrack_tuple *tuple)
1155{
David S. Millerbae65be2012-04-01 18:58:28 -04001156 if (nla_put_be16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port) ||
1157 nla_put_be16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port))
1158 goto nla_put_failure;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001159 return 0;
1160
Patrick McHardydf6fb862007-09-28 14:37:03 -07001161nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001162 return -1;
1163}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001164EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001165
Patrick McHardyf73e9242007-09-28 14:39:55 -07001166const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
1167 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
1168 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001169};
Patrick McHardyf73e9242007-09-28 14:39:55 -07001170EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001171
Patrick McHardyfdf70832007-09-28 14:37:41 -07001172int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001173 struct nf_conntrack_tuple *t)
1174{
Patrick McHardydf6fb862007-09-28 14:37:03 -07001175 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001176 return -EINVAL;
1177
Patrick McHardy77236b62007-12-17 22:29:45 -08001178 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
1179 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001180
1181 return 0;
1182}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001183EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +01001184
1185int nf_ct_port_nlattr_tuple_size(void)
1186{
1187 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1188}
1189EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001190#endif
1191
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001192/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardyb334aad2008-01-14 23:48:57 -08001193static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001194{
1195 struct nf_conn *ct;
1196 enum ip_conntrack_info ctinfo;
1197
1198 /* This ICMP is in reverse direction to the packet which caused it */
1199 ct = nf_ct_get(skb, &ctinfo);
1200 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
Eric Dumazetfb048832011-05-19 15:44:27 +02001201 ctinfo = IP_CT_RELATED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001202 else
1203 ctinfo = IP_CT_RELATED;
1204
1205 /* Attach to new skbuff, and increment count */
1206 nskb->nfct = &ct->ct_general;
1207 nskb->nfctinfo = ctinfo;
1208 nf_conntrack_get(nskb->nfct);
1209}
1210
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001211/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001212static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001213get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001214 void *data, unsigned int *bucket)
1215{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001216 struct nf_conntrack_tuple_hash *h;
1217 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +01001218 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001219
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001220 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001221 for (; *bucket < net->ct.htable_size; (*bucket)++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001222 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
Patrick McHardyb0cdb1d2012-09-19 20:57:04 +00001223 if (NF_CT_DIRECTION(h) != IP_CT_DIR_ORIGINAL)
1224 continue;
Patrick McHardydf0933d2006-09-20 11:57:53 -07001225 ct = nf_ct_tuplehash_to_ctrack(h);
1226 if (iter(ct, data))
1227 goto found;
1228 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001229 }
Eric Dumazetea781f12009-03-25 21:05:46 +01001230 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001231 ct = nf_ct_tuplehash_to_ctrack(h);
1232 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -08001233 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001234 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001235 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001236 return NULL;
1237found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001238 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001239 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001240 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001241}
1242
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001243void nf_ct_iterate_cleanup(struct net *net,
1244 int (*iter)(struct nf_conn *i, void *data),
1245 void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001246{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001247 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001248 unsigned int bucket = 0;
1249
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001250 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001251 /* Time to push up daises... */
1252 if (del_timer(&ct->timeout))
1253 death_by_timeout((unsigned long)ct);
1254 /* ... else the timer will get him soon. */
1255
1256 nf_ct_put(ct);
1257 }
1258}
Patrick McHardy13b18332006-12-02 22:11:25 -08001259EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001260
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001261struct __nf_ct_flush_report {
1262 u32 pid;
1263 int report;
1264};
1265
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001266static int kill_report(struct nf_conn *i, void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001267{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001268 struct __nf_ct_flush_report *fr = (struct __nf_ct_flush_report *)data;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001269 struct nf_conn_tstamp *tstamp;
1270
1271 tstamp = nf_conn_tstamp_find(i);
1272 if (tstamp && tstamp->stop == 0)
1273 tstamp->stop = ktime_to_ns(ktime_get_real());
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001274
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001275 /* If we fail to deliver the event, death_by_timeout() will retry */
1276 if (nf_conntrack_event_report(IPCT_DESTROY, i,
1277 fr->pid, fr->report) < 0)
1278 return 1;
1279
1280 /* Avoid the delivery of the destroy event in death_by_timeout(). */
1281 set_bit(IPS_DYING_BIT, &i->status);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001282 return 1;
1283}
1284
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001285static int kill_all(struct nf_conn *i, void *data)
1286{
1287 return 1;
1288}
1289
Patrick McHardyd862a662011-01-14 15:45:56 +01001290void nf_ct_free_hashtable(void *hash, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001291{
Patrick McHardyd862a662011-01-14 15:45:56 +01001292 if (is_vmalloc_addr(hash))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001293 vfree(hash);
1294 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001295 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001296 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001297}
Patrick McHardyac565e52007-07-07 22:30:08 -07001298EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001299
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001300void nf_conntrack_flush_report(struct net *net, u32 pid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001301{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001302 struct __nf_ct_flush_report fr = {
1303 .pid = pid,
1304 .report = report,
1305 };
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001306 nf_ct_iterate_cleanup(net, kill_report, &fr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001307}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001308EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001309
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001310static void nf_ct_release_dying_list(struct net *net)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001311{
1312 struct nf_conntrack_tuple_hash *h;
1313 struct nf_conn *ct;
1314 struct hlist_nulls_node *n;
1315
1316 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001317 hlist_nulls_for_each_entry(h, n, &net->ct.dying, hnnode) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001318 ct = nf_ct_tuplehash_to_ctrack(h);
1319 /* never fails to remove them, no listeners at this point */
1320 nf_ct_kill(ct);
1321 }
1322 spin_unlock_bh(&nf_conntrack_lock);
1323}
1324
Eric Dumazetb3c51632010-06-09 14:43:38 +02001325static int untrack_refs(void)
1326{
1327 int cnt = 0, cpu;
1328
1329 for_each_possible_cpu(cpu) {
1330 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
1331
1332 cnt += atomic_read(&ct->ct_general.use) - 1;
1333 }
1334 return cnt;
1335}
1336
Gao fengf94161c2013-01-21 22:10:24 +00001337void nf_conntrack_cleanup_start(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001338{
Gao fengf94161c2013-01-21 22:10:24 +00001339 RCU_INIT_POINTER(ip_ct_attach, NULL);
1340}
1341
1342void nf_conntrack_cleanup_end(void)
1343{
1344 RCU_INIT_POINTER(nf_ct_destroy, NULL);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001345 while (untrack_refs() > 0)
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001346 schedule();
1347
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001348#ifdef CONFIG_NF_CONNTRACK_ZONES
1349 nf_ct_extend_unregister(&nf_ct_zone_extend);
1350#endif
Gao feng04d87002013-01-21 22:10:32 +00001351 nf_conntrack_proto_fini();
Gao feng5f69b8f2013-01-21 22:10:31 +00001352 nf_conntrack_labels_fini();
Gao feng5e615b22013-01-21 22:10:30 +00001353 nf_conntrack_helper_fini();
Gao feng86840942013-01-21 22:10:29 +00001354 nf_conntrack_timeout_fini();
Gao feng3fe0f942013-01-21 22:10:28 +00001355 nf_conntrack_ecache_fini();
Gao feng73f40012013-01-21 22:10:27 +00001356 nf_conntrack_tstamp_fini();
Gao fengb7ff3a12013-01-21 22:10:26 +00001357 nf_conntrack_acct_fini();
Gao feng83b4dbe2013-01-21 22:10:25 +00001358 nf_conntrack_expect_fini();
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001359}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001360
Gao fengf94161c2013-01-21 22:10:24 +00001361/*
1362 * Mishearing the voices in his head, our hero wonders how he's
1363 * supposed to kill the mall.
1364 */
1365void nf_conntrack_cleanup_net(struct net *net)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001366{
Gao fengf94161c2013-01-21 22:10:24 +00001367 /*
1368 * This makes sure all current packets have passed through
1369 * netfilter framework. Roll on, two-stage module
1370 * delete...
1371 */
1372 synchronize_net();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001373 i_see_dead_people:
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001374 nf_ct_iterate_cleanup(net, kill_all, NULL);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001375 nf_ct_release_dying_list(net);
Alexey Dobriyan49ac8712008-10-08 11:35:03 +02001376 if (atomic_read(&net->ct.count) != 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001377 schedule();
1378 goto i_see_dead_people;
1379 }
1380
Patrick McHardyd862a662011-01-14 15:45:56 +01001381 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
Gao feng04d87002013-01-21 22:10:32 +00001382 nf_conntrack_proto_pernet_fini(net);
Gao feng5e615b22013-01-21 22:10:30 +00001383 nf_conntrack_helper_pernet_fini(net);
Gao feng3fe0f942013-01-21 22:10:28 +00001384 nf_conntrack_ecache_pernet_fini(net);
Gao feng73f40012013-01-21 22:10:27 +00001385 nf_conntrack_tstamp_pernet_fini(net);
Gao fengb7ff3a12013-01-21 22:10:26 +00001386 nf_conntrack_acct_pernet_fini(net);
Gao feng83b4dbe2013-01-21 22:10:25 +00001387 nf_conntrack_expect_pernet_fini(net);
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001388 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1389 kfree(net->ct.slabname);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001390 free_percpu(net->ct.stat);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001391}
1392
Patrick McHardyd862a662011-01-14 15:45:56 +01001393void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001394{
Eric Dumazetea781f12009-03-25 21:05:46 +01001395 struct hlist_nulls_head *hash;
1396 unsigned int nr_slots, i;
1397 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001398
Eric Dumazetea781f12009-03-25 21:05:46 +01001399 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1400 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1401 sz = nr_slots * sizeof(struct hlist_nulls_head);
1402 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1403 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001404 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001405 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazet966567b2011-12-19 16:01:38 -05001406 hash = vzalloc(sz);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001407 }
1408
Eric Dumazetea781f12009-03-25 21:05:46 +01001409 if (hash && nulls)
1410 for (i = 0; i < nr_slots; i++)
1411 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001412
1413 return hash;
1414}
Patrick McHardyac565e52007-07-07 22:30:08 -07001415EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001416
Patrick McHardyfae718d2007-12-24 21:09:10 -08001417int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001418{
Abhijit Pawar4b5511e2012-12-09 23:12:28 +00001419 int i, bucket, rc;
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001420 unsigned int hashsize, old_size;
Eric Dumazetea781f12009-03-25 21:05:46 +01001421 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001422 struct nf_conntrack_tuple_hash *h;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001423 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001424
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001425 if (current->nsproxy->net_ns != &init_net)
1426 return -EOPNOTSUPP;
1427
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001428 /* On boot, we can set this without any fancy locking. */
1429 if (!nf_conntrack_htable_size)
1430 return param_set_uint(val, kp);
1431
Abhijit Pawar4b5511e2012-12-09 23:12:28 +00001432 rc = kstrtouint(val, 0, &hashsize);
1433 if (rc)
1434 return rc;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001435 if (!hashsize)
1436 return -EINVAL;
1437
Patrick McHardyd862a662011-01-14 15:45:56 +01001438 hash = nf_ct_alloc_hashtable(&hashsize, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001439 if (!hash)
1440 return -ENOMEM;
1441
Patrick McHardy76507f62008-01-31 04:38:38 -08001442 /* Lookups in the old hash might happen in parallel, which means we
1443 * might get false negatives during connection lookup. New connections
1444 * created because of a false negative won't make it into the hash
1445 * though since that required taking the lock.
1446 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001447 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001448 for (i = 0; i < init_net.ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001449 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1450 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1451 struct nf_conntrack_tuple_hash, hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001452 ct = nf_ct_tuplehash_to_ctrack(h);
Eric Dumazetea781f12009-03-25 21:05:46 +01001453 hlist_nulls_del_rcu(&h->hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001454 bucket = __hash_conntrack(&h->tuple, nf_ct_zone(ct),
Changli Gao99f07e92010-09-21 17:49:20 +02001455 hashsize);
Eric Dumazetea781f12009-03-25 21:05:46 +01001456 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001457 }
1458 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001459 old_size = init_net.ct.htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001460 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001461
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001462 init_net.ct.htable_size = nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001463 init_net.ct.hash = hash;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001464 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001465
Patrick McHardyd862a662011-01-14 15:45:56 +01001466 nf_ct_free_hashtable(old_hash, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001467 return 0;
1468}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001469EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001470
Patrick McHardyfae718d2007-12-24 21:09:10 -08001471module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001472 &nf_conntrack_htable_size, 0600);
1473
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001474void nf_ct_untracked_status_or(unsigned long bits)
1475{
Eric Dumazetb3c51632010-06-09 14:43:38 +02001476 int cpu;
1477
1478 for_each_possible_cpu(cpu)
1479 per_cpu(nf_conntrack_untracked, cpu).status |= bits;
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001480}
1481EXPORT_SYMBOL_GPL(nf_ct_untracked_status_or);
1482
Gao fengf94161c2013-01-21 22:10:24 +00001483int nf_conntrack_init_start(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001484{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001485 int max_factor = 8;
Eric Dumazetb3c51632010-06-09 14:43:38 +02001486 int ret, cpu;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001487
1488 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001489 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001490 if (!nf_conntrack_htable_size) {
1491 nf_conntrack_htable_size
Jan Beulich44813742009-09-21 17:03:05 -07001492 = (((totalram_pages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001493 / sizeof(struct hlist_head));
Jan Beulich44813742009-09-21 17:03:05 -07001494 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001495 nf_conntrack_htable_size = 16384;
1496 if (nf_conntrack_htable_size < 32)
1497 nf_conntrack_htable_size = 32;
1498
1499 /* Use a max. factor of four by default to get the same max as
1500 * with the old struct list_heads. When a table size is given
1501 * we use the old value of 8 to avoid reducing the max.
1502 * entries. */
1503 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001504 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001505 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001506
Stephen Hemminger654d0fb2010-05-13 15:02:08 +02001507 printk(KERN_INFO "nf_conntrack version %s (%u buckets, %d max)\n",
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001508 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1509 nf_conntrack_max);
Gao feng83b4dbe2013-01-21 22:10:25 +00001510
1511 ret = nf_conntrack_expect_init();
1512 if (ret < 0)
1513 goto err_expect;
1514
Gao fengb7ff3a12013-01-21 22:10:26 +00001515 ret = nf_conntrack_acct_init();
1516 if (ret < 0)
1517 goto err_acct;
1518
Gao feng73f40012013-01-21 22:10:27 +00001519 ret = nf_conntrack_tstamp_init();
1520 if (ret < 0)
1521 goto err_tstamp;
1522
Gao feng3fe0f942013-01-21 22:10:28 +00001523 ret = nf_conntrack_ecache_init();
1524 if (ret < 0)
1525 goto err_ecache;
1526
Gao feng86840942013-01-21 22:10:29 +00001527 ret = nf_conntrack_timeout_init();
1528 if (ret < 0)
1529 goto err_timeout;
1530
Gao feng5e615b22013-01-21 22:10:30 +00001531 ret = nf_conntrack_helper_init();
1532 if (ret < 0)
1533 goto err_helper;
1534
Gao feng5f69b8f2013-01-21 22:10:31 +00001535 ret = nf_conntrack_labels_init();
1536 if (ret < 0)
1537 goto err_labels;
1538
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001539#ifdef CONFIG_NF_CONNTRACK_ZONES
1540 ret = nf_ct_extend_register(&nf_ct_zone_extend);
1541 if (ret < 0)
1542 goto err_extend;
1543#endif
Gao feng04d87002013-01-21 22:10:32 +00001544 ret = nf_conntrack_proto_init();
1545 if (ret < 0)
1546 goto err_proto;
1547
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001548 /* Set up fake conntrack: to never be deleted, not in any hashes */
Eric Dumazetb3c51632010-06-09 14:43:38 +02001549 for_each_possible_cpu(cpu) {
1550 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001551 write_pnet(&ct->ct_net, &init_net);
1552 atomic_set(&ct->ct_general.use, 1);
1553 }
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001554 /* - and look it like as a confirmed connection */
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001555 nf_ct_untracked_status_or(IPS_CONFIRMED | IPS_UNTRACKED);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001556 return 0;
1557
Gao feng04d87002013-01-21 22:10:32 +00001558err_proto:
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001559#ifdef CONFIG_NF_CONNTRACK_ZONES
Gao feng04d87002013-01-21 22:10:32 +00001560 nf_ct_extend_unregister(&nf_ct_zone_extend);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001561err_extend:
Eric Leblonda9006892012-04-18 11:20:41 +02001562#endif
Gao feng04d87002013-01-21 22:10:32 +00001563 nf_conntrack_labels_fini();
Gao feng5f69b8f2013-01-21 22:10:31 +00001564err_labels:
1565 nf_conntrack_helper_fini();
Gao feng5e615b22013-01-21 22:10:30 +00001566err_helper:
1567 nf_conntrack_timeout_fini();
Gao feng86840942013-01-21 22:10:29 +00001568err_timeout:
1569 nf_conntrack_ecache_fini();
Gao feng3fe0f942013-01-21 22:10:28 +00001570err_ecache:
1571 nf_conntrack_tstamp_fini();
Gao feng73f40012013-01-21 22:10:27 +00001572err_tstamp:
1573 nf_conntrack_acct_fini();
Gao fengb7ff3a12013-01-21 22:10:26 +00001574err_acct:
1575 nf_conntrack_expect_fini();
Gao feng83b4dbe2013-01-21 22:10:25 +00001576err_expect:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001577 return ret;
1578}
1579
Gao fengf94161c2013-01-21 22:10:24 +00001580void nf_conntrack_init_end(void)
1581{
1582 /* For use by REJECT target */
1583 RCU_INIT_POINTER(ip_ct_attach, nf_conntrack_attach);
1584 RCU_INIT_POINTER(nf_ct_destroy, destroy_conntrack);
1585
1586 /* Howto get NAT offsets */
1587 RCU_INIT_POINTER(nf_ct_nat_offset, NULL);
1588}
1589
Eric Dumazet8cc20192009-06-22 14:13:55 +02001590/*
1591 * We need to use special "null" values, not used in hash table
1592 */
1593#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1594#define DYING_NULLS_VAL ((1<<30)+1)
Pablo Neira Ayuso252b3e82012-12-11 04:07:42 +00001595#define TEMPLATE_NULLS_VAL ((1<<30)+2)
Eric Dumazet8cc20192009-06-22 14:13:55 +02001596
Gao fengf94161c2013-01-21 22:10:24 +00001597int nf_conntrack_init_net(struct net *net)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001598{
1599 int ret;
1600
1601 atomic_set(&net->ct.count, 0);
Eric Dumazet8cc20192009-06-22 14:13:55 +02001602 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, UNCONFIRMED_NULLS_VAL);
1603 INIT_HLIST_NULLS_HEAD(&net->ct.dying, DYING_NULLS_VAL);
Pablo Neira Ayuso252b3e82012-12-11 04:07:42 +00001604 INIT_HLIST_NULLS_HEAD(&net->ct.tmpl, TEMPLATE_NULLS_VAL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001605 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1606 if (!net->ct.stat) {
1607 ret = -ENOMEM;
1608 goto err_stat;
1609 }
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001610
1611 net->ct.slabname = kasprintf(GFP_KERNEL, "nf_conntrack_%p", net);
1612 if (!net->ct.slabname) {
1613 ret = -ENOMEM;
1614 goto err_slabname;
1615 }
1616
1617 net->ct.nf_conntrack_cachep = kmem_cache_create(net->ct.slabname,
1618 sizeof(struct nf_conn), 0,
1619 SLAB_DESTROY_BY_RCU, NULL);
1620 if (!net->ct.nf_conntrack_cachep) {
1621 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1622 ret = -ENOMEM;
1623 goto err_cache;
1624 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001625
1626 net->ct.htable_size = nf_conntrack_htable_size;
Patrick McHardyd862a662011-01-14 15:45:56 +01001627 net->ct.hash = nf_ct_alloc_hashtable(&net->ct.htable_size, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001628 if (!net->ct.hash) {
1629 ret = -ENOMEM;
1630 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1631 goto err_hash;
1632 }
Gao feng83b4dbe2013-01-21 22:10:25 +00001633 ret = nf_conntrack_expect_pernet_init(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001634 if (ret < 0)
1635 goto err_expect;
Gao fengb7ff3a12013-01-21 22:10:26 +00001636 ret = nf_conntrack_acct_pernet_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001637 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001638 goto err_acct;
Gao feng73f40012013-01-21 22:10:27 +00001639 ret = nf_conntrack_tstamp_pernet_init(net);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001640 if (ret < 0)
1641 goto err_tstamp;
Gao feng3fe0f942013-01-21 22:10:28 +00001642 ret = nf_conntrack_ecache_pernet_init(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001643 if (ret < 0)
1644 goto err_ecache;
Gao feng5e615b22013-01-21 22:10:30 +00001645 ret = nf_conntrack_helper_pernet_init(net);
Eric Leblonda9006892012-04-18 11:20:41 +02001646 if (ret < 0)
1647 goto err_helper;
Gao feng04d87002013-01-21 22:10:32 +00001648 ret = nf_conntrack_proto_pernet_init(net);
Gao fengf94161c2013-01-21 22:10:24 +00001649 if (ret < 0)
1650 goto err_proto;
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001651 return 0;
Florian Westphalc539f012013-01-11 06:30:44 +00001652
Gao fengf94161c2013-01-21 22:10:24 +00001653err_proto:
Gao feng5e615b22013-01-21 22:10:30 +00001654 nf_conntrack_helper_pernet_fini(net);
Eric Leblonda9006892012-04-18 11:20:41 +02001655err_helper:
Gao feng3fe0f942013-01-21 22:10:28 +00001656 nf_conntrack_ecache_pernet_fini(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001657err_ecache:
Gao feng73f40012013-01-21 22:10:27 +00001658 nf_conntrack_tstamp_pernet_fini(net);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001659err_tstamp:
Gao fengb7ff3a12013-01-21 22:10:26 +00001660 nf_conntrack_acct_pernet_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001661err_acct:
Gao feng83b4dbe2013-01-21 22:10:25 +00001662 nf_conntrack_expect_pernet_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001663err_expect:
Patrick McHardyd862a662011-01-14 15:45:56 +01001664 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001665err_hash:
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001666 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1667err_cache:
1668 kfree(net->ct.slabname);
1669err_slabname:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001670 free_percpu(net->ct.stat);
1671err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001672 return ret;
1673}
1674
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -08001675s16 (*nf_ct_nat_offset)(const struct nf_conn *ct,
1676 enum ip_conntrack_dir dir,
1677 u32 seq);
1678EXPORT_SYMBOL_GPL(nf_ct_nat_offset);