blob: d32afaff72f858808b62fed0b75db28f174e122b [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>
42#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070043#include <net/netfilter/nf_conntrack_extend.h>
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -070044#include <net/netfilter/nf_conntrack_acct.h>
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020045#include <net/netfilter/nf_conntrack_ecache.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010046#include <net/netfilter/nf_conntrack_zones.h>
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +010047#include <net/netfilter/nf_conntrack_timestamp.h>
Pablo Neira Ayusodd705072012-02-28 23:36:48 +010048#include <net/netfilter/nf_conntrack_timeout.h>
Florian Westphalc539f012013-01-11 06:30:44 +000049#include <net/netfilter/nf_conntrack_labels.h>
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070050#include <net/netfilter/nf_nat.h>
Patrick McHardye17b6662008-11-18 12:24:17 +010051#include <net/netfilter/nf_nat_core.h>
stephen hemminger49376362013-03-16 07:00:28 +000052#include <net/netfilter/nf_nat_helper.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080053
Harald Weltedc808fe2006-03-20 17:56:32 -080054#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080055
Patrick McHardye17b6662008-11-18 12:24:17 +010056int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
57 enum nf_nat_manip_type manip,
Patrick McHardy39938322009-08-25 16:07:58 +020058 const struct nlattr *attr) __read_mostly;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070059EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
60
Patrick McHardyc7232c92012-08-26 19:14:06 +020061int (*nf_nat_seq_adjust_hook)(struct sk_buff *skb,
62 struct nf_conn *ct,
63 enum ip_conntrack_info ctinfo,
64 unsigned int protoff);
65EXPORT_SYMBOL_GPL(nf_nat_seq_adjust_hook);
66
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080067DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080068EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080069
Martin Josefssone2b76062006-11-29 02:35:04 +010070unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080071EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
72
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +010073unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010074EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080075
Eric Dumazetb3c51632010-06-09 14:43:38 +020076DEFINE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
77EXPORT_PER_CPU_SYMBOL(nf_conntrack_untracked);
Patrick McHardy13b18332006-12-02 22:11:25 -080078
Changli Gaof682cef2011-01-05 04:23:23 +000079unsigned int nf_conntrack_hash_rnd __read_mostly;
Patrick McHardy4d4e61c2011-12-23 14:00:13 +010080EXPORT_SYMBOL_GPL(nf_conntrack_hash_rnd);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080081
Changli Gao99f07e92010-09-21 17:49:20 +020082static u32 hash_conntrack_raw(const struct nf_conntrack_tuple *tuple, u16 zone)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083{
Patrick McHardy07949352008-01-31 04:40:52 -080084 unsigned int n;
Sami Farin9b887902007-03-14 16:43:00 -070085
Patrick McHardy07949352008-01-31 04:40:52 -080086 /* The direction must be ignored, so we hash everything up to the
87 * destination ports (which is a multiple of 4) and treat the last
88 * three bytes manually.
89 */
90 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
Changli Gao99f07e92010-09-21 17:49:20 +020091 return jhash2((u32 *)tuple, n, zone ^ nf_conntrack_hash_rnd ^
92 (((__force __u16)tuple->dst.u.all << 16) |
93 tuple->dst.protonum));
94}
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080095
Changli Gao99f07e92010-09-21 17:49:20 +020096static u32 __hash_bucket(u32 hash, unsigned int size)
97{
98 return ((u64)hash * size) >> 32;
99}
100
101static u32 hash_bucket(u32 hash, const struct net *net)
102{
103 return __hash_bucket(hash, net->ct.htable_size);
104}
105
106static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
107 u16 zone, unsigned int size)
108{
109 return __hash_bucket(hash_conntrack_raw(tuple, zone), size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800110}
111
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100112static inline u_int32_t hash_conntrack(const struct net *net, u16 zone,
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800113 const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800114{
Changli Gao99f07e92010-09-21 17:49:20 +0200115 return __hash_conntrack(tuple, zone, net->ct.htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800116}
117
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200118bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800119nf_ct_get_tuple(const struct sk_buff *skb,
120 unsigned int nhoff,
121 unsigned int dataoff,
122 u_int16_t l3num,
123 u_int8_t protonum,
124 struct nf_conntrack_tuple *tuple,
125 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100126 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800127{
Philip Craig443a70d2008-04-29 03:35:10 -0700128 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800129
130 tuple->src.l3num = l3num;
131 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200132 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800133
134 tuple->dst.protonum = protonum;
135 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
136
Martin Josefsson605dcad2006-11-29 02:35:06 +0100137 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800138}
Patrick McHardy13b18332006-12-02 22:11:25 -0800139EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800140
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200141bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
142 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700143{
144 struct nf_conntrack_l3proto *l3proto;
145 struct nf_conntrack_l4proto *l4proto;
146 unsigned int protoff;
147 u_int8_t protonum;
148 int ret;
149
150 rcu_read_lock();
151
152 l3proto = __nf_ct_l3proto_find(l3num);
153 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
154 if (ret != NF_ACCEPT) {
155 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200156 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700157 }
158
159 l4proto = __nf_ct_l4proto_find(l3num, protonum);
160
161 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
162 l3proto, l4proto);
163
164 rcu_read_unlock();
165 return ret;
166}
167EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
168
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200169bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800170nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
171 const struct nf_conntrack_tuple *orig,
172 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100173 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800174{
Philip Craig443a70d2008-04-29 03:35:10 -0700175 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800176
177 inverse->src.l3num = orig->src.l3num;
178 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200179 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800180
181 inverse->dst.dir = !orig->dst.dir;
182
183 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100184 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800185}
Patrick McHardy13b18332006-12-02 22:11:25 -0800186EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800187
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800188static void
189clean_from_lists(struct nf_conn *ct)
190{
Patrick McHardy0d537782007-07-07 22:39:38 -0700191 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100192 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
193 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800194
195 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800196 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800197}
198
199static void
200destroy_conntrack(struct nf_conntrack *nfct)
201{
202 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200203 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100204 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800205
Patrick McHardy0d537782007-07-07 22:39:38 -0700206 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800207 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
208 NF_CT_ASSERT(!timer_pending(&ct->timeout));
209
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800210 /* To make sure we don't get any weird locking issues here:
211 * destroy_conntrack() MUST NOT be called with a write lock
212 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800213 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200214 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100215 if (l4proto && l4proto->destroy)
216 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800217
Patrick McHardy982d9a92007-02-12 11:14:11 -0800218 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800219
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800220 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800221 /* Expectations will have been removed in clean_from_lists,
222 * except TFTP can create an expectation on the first packet,
223 * before connection is in the list, so we need to clean here,
224 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800225 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800226
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100227 /* We overload first tuple to link into unconfirmed or dying list.*/
228 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
229 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800230
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200231 NF_CT_STAT_INC(net, delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800232 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800233
234 if (ct->master)
235 nf_ct_put(ct->master);
236
Patrick McHardy0d537782007-07-07 22:39:38 -0700237 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800238 nf_conntrack_free(ct);
239}
240
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200241void nf_ct_delete_from_lists(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800242{
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200243 struct net *net = nf_ct_net(ct);
Patrick McHardy5397e972007-05-19 14:23:52 -0700244
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200245 nf_ct_helper_destroy(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800246 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800247 /* Inside lock so preempt is disabled on module removal path.
248 * Otherwise we can get spurious warnings. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200249 NF_CT_STAT_INC(net, delete_list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800250 clean_from_lists(ct);
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100251 /* add this conntrack to the dying list */
252 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
253 &net->ct.dying);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800254 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200255}
256EXPORT_SYMBOL_GPL(nf_ct_delete_from_lists);
257
258static void death_by_event(unsigned long ul_conntrack)
259{
260 struct nf_conn *ct = (void *)ul_conntrack;
261 struct net *net = nf_ct_net(ct);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000262 struct nf_conntrack_ecache *ecache = nf_ct_ecache_find(ct);
263
264 BUG_ON(ecache == NULL);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200265
266 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
267 /* bad luck, let's retry again */
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000268 ecache->timeout.expires = jiffies +
Akinobu Mitaca3d41a2013-04-29 16:21:39 -0700269 (prandom_u32() % net->ct.sysctl_events_retry_timeout);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000270 add_timer(&ecache->timeout);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200271 return;
272 }
273 /* we've got the event delivered, now it's dying */
274 set_bit(IPS_DYING_BIT, &ct->status);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200275 nf_ct_put(ct);
276}
277
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100278void nf_ct_dying_timeout(struct nf_conn *ct)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200279{
280 struct net *net = nf_ct_net(ct);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000281 struct nf_conntrack_ecache *ecache = nf_ct_ecache_find(ct);
282
283 BUG_ON(ecache == NULL);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200284
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200285 /* set a new timer to retry event delivery */
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000286 setup_timer(&ecache->timeout, death_by_event, (unsigned long)ct);
287 ecache->timeout.expires = jiffies +
Akinobu Mitaca3d41a2013-04-29 16:21:39 -0700288 (prandom_u32() % net->ct.sysctl_events_retry_timeout);
Pablo Neira Ayuso5b423f62012-08-29 16:25:49 +0000289 add_timer(&ecache->timeout);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200290}
Pablo Neira Ayuso04dac012012-11-27 21:30:52 +0100291EXPORT_SYMBOL_GPL(nf_ct_dying_timeout);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200292
293static void death_by_timeout(unsigned long ul_conntrack)
294{
295 struct nf_conn *ct = (void *)ul_conntrack;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100296 struct nf_conn_tstamp *tstamp;
297
298 tstamp = nf_conn_tstamp_find(ct);
299 if (tstamp && tstamp->stop == 0)
300 tstamp->stop = ktime_to_ns(ktime_get_real());
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200301
302 if (!test_bit(IPS_DYING_BIT, &ct->status) &&
303 unlikely(nf_conntrack_event(IPCT_DESTROY, ct) < 0)) {
304 /* 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);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200307 return;
308 }
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);
312}
313
Eric Dumazetea781f12009-03-25 21:05:46 +0100314/*
315 * Warning :
316 * - Caller must take a reference on returned object
317 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
318 * OR
319 * - Caller must lock nf_conntrack_lock before calling this function
320 */
Changli Gao99f07e92010-09-21 17:49:20 +0200321static struct nf_conntrack_tuple_hash *
322____nf_conntrack_find(struct net *net, u16 zone,
323 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800324{
325 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100326 struct hlist_nulls_node *n;
Changli Gao99f07e92010-09-21 17:49:20 +0200327 unsigned int bucket = hash_bucket(hash, net);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800328
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800329 /* Disable BHs the entire time since we normally need to disable them
330 * at least once for the stats anyway.
331 */
332 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100333begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200334 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[bucket], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100335 if (nf_ct_tuple_equal(tuple, &h->tuple) &&
336 nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200337 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800338 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800339 return h;
340 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200341 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800342 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100343 /*
344 * if the nulls value we got at the end of this lookup is
345 * not the expected one, we must restart lookup.
346 * We probably met an item that was moved to another chain.
347 */
Changli Gao99f07e92010-09-21 17:49:20 +0200348 if (get_nulls_value(n) != bucket) {
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200349 NF_CT_STAT_INC(net, search_restart);
Eric Dumazetea781f12009-03-25 21:05:46 +0100350 goto begin;
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200351 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800352 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800353
354 return NULL;
355}
Changli Gao99f07e92010-09-21 17:49:20 +0200356
357struct nf_conntrack_tuple_hash *
358__nf_conntrack_find(struct net *net, u16 zone,
359 const struct nf_conntrack_tuple *tuple)
360{
361 return ____nf_conntrack_find(net, zone, tuple,
362 hash_conntrack_raw(tuple, zone));
363}
Patrick McHardy13b18332006-12-02 22:11:25 -0800364EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800365
366/* Find a connection corresponding to a tuple. */
Changli Gao99f07e92010-09-21 17:49:20 +0200367static struct nf_conntrack_tuple_hash *
368__nf_conntrack_find_get(struct net *net, u16 zone,
369 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800370{
371 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800372 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800373
Patrick McHardy76507f62008-01-31 04:38:38 -0800374 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100375begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200376 h = ____nf_conntrack_find(net, zone, tuple, hash);
Patrick McHardy76507f62008-01-31 04:38:38 -0800377 if (h) {
378 ct = nf_ct_tuplehash_to_ctrack(h);
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200379 if (unlikely(nf_ct_is_dying(ct) ||
380 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800381 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100382 else {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100383 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple) ||
384 nf_ct_zone(ct) != zone)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100385 nf_ct_put(ct);
386 goto begin;
387 }
388 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800389 }
390 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800391
392 return h;
393}
Changli Gao99f07e92010-09-21 17:49:20 +0200394
395struct nf_conntrack_tuple_hash *
396nf_conntrack_find_get(struct net *net, u16 zone,
397 const struct nf_conntrack_tuple *tuple)
398{
399 return __nf_conntrack_find_get(net, zone, tuple,
400 hash_conntrack_raw(tuple, zone));
401}
Patrick McHardy13b18332006-12-02 22:11:25 -0800402EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800403
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800404static void __nf_conntrack_hash_insert(struct nf_conn *ct,
405 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800406 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800407{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200408 struct net *net = nf_ct_net(ct);
409
Eric Dumazetea781f12009-03-25 21:05:46 +0100410 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200411 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100412 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200413 &net->ct.hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800414}
415
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100416int
417nf_conntrack_hash_check_insert(struct nf_conn *ct)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800418{
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800419 struct net *net = nf_ct_net(ct);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800420 unsigned int hash, repl_hash;
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100421 struct nf_conntrack_tuple_hash *h;
422 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100423 u16 zone;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800424
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100425 zone = nf_ct_zone(ct);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100426 hash = hash_conntrack(net, zone,
427 &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
428 repl_hash = hash_conntrack(net, zone,
429 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800430
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100431 spin_lock_bh(&nf_conntrack_lock);
432
433 /* See if there's one in the list already, including reverse */
434 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
435 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
436 &h->tuple) &&
437 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
438 goto out;
439 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
440 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
441 &h->tuple) &&
442 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
443 goto out;
444
445 add_timer(&ct->timeout);
446 nf_conntrack_get(&ct->ct_general);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800447 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100448 NF_CT_STAT_INC(net, insert);
449 spin_unlock_bh(&nf_conntrack_lock);
450
451 return 0;
452
453out:
454 NF_CT_STAT_INC(net, insert_failed);
455 spin_unlock_bh(&nf_conntrack_lock);
456 return -EEXIST;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800457}
Jozsef Kadlecsik7d367e02012-02-24 11:45:49 +0100458EXPORT_SYMBOL_GPL(nf_conntrack_hash_check_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800459
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800460/* Confirm a connection given skb; places it in hash table */
461int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700462__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800463{
464 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700465 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800466 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700467 struct nf_conn_help *help;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100468 struct nf_conn_tstamp *tstamp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100469 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800470 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200471 struct net *net;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100472 u16 zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800473
Herbert Xu3db05fe2007-10-15 00:53:15 -0700474 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200475 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800476
477 /* ipt_REJECT uses nf_conntrack_attach to attach related
478 ICMP/TCP RST packets in other direction. Actual packet
479 which created connection will be IP_CT_NEW or for an
480 expected connection, IP_CT_RELATED. */
481 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
482 return NF_ACCEPT;
483
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100484 zone = nf_ct_zone(ct);
Changli Gao99f07e92010-09-21 17:49:20 +0200485 /* reuse the hash saved before */
486 hash = *(unsigned long *)&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev;
487 hash = hash_bucket(hash, net);
488 repl_hash = hash_conntrack(net, zone,
489 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800490
491 /* We're not in hash table, and we refuse to set up related
492 connections for unconfirmed conns. But packet copies and
493 REJECT will give spurious warnings here. */
494 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
495
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300496 /* No external references means no one else could have
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800497 confirmed us. */
498 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700499 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800500
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800501 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800502
Joerg Marxfc350772010-05-20 15:55:30 +0200503 /* We have to check the DYING flag inside the lock to prevent
504 a race against nf_ct_get_next_corpse() possibly called from
505 user context, else we insert an already 'dead' hash, blocking
506 further use of that particular connection -JM */
507
508 if (unlikely(nf_ct_is_dying(ct))) {
509 spin_unlock_bh(&nf_conntrack_lock);
510 return NF_ACCEPT;
511 }
512
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800513 /* See if there's one in the list already, including reverse:
514 NAT could have grabbed it without realizing, since we're
515 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100516 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700517 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100518 &h->tuple) &&
519 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700520 goto out;
Eric Dumazetea781f12009-03-25 21:05:46 +0100521 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700522 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100523 &h->tuple) &&
524 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700525 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800526
Patrick McHardydf0933d2006-09-20 11:57:53 -0700527 /* Remove from unconfirmed list */
Eric Dumazetea781f12009-03-25 21:05:46 +0100528 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700529
Patrick McHardydf0933d2006-09-20 11:57:53 -0700530 /* Timer relative to confirmation time, not original
531 setting time, otherwise we'd get timer wrap in
532 weird delay cases. */
533 ct->timeout.expires += jiffies;
534 add_timer(&ct->timeout);
535 atomic_inc(&ct->ct_general.use);
Changli Gao45eec342011-01-18 15:08:13 +0100536 ct->status |= IPS_CONFIRMED;
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200537
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100538 /* set conntrack timestamp, if enabled. */
539 tstamp = nf_conn_tstamp_find(ct);
540 if (tstamp) {
541 if (skb->tstamp.tv64 == 0)
Joe Perchese3192692012-06-03 17:41:40 +0000542 __net_timestamp(skb);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100543
544 tstamp->start = ktime_to_ns(skb->tstamp);
545 }
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200546 /* Since the lookup is lockless, hash insertion must be done after
547 * starting the timer and setting the CONFIRMED bit. The RCU barriers
548 * guarantee that no other CPU can find the conntrack before the above
549 * stores are visible.
550 */
551 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200552 NF_CT_STAT_INC(net, insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800553 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200554
Patrick McHardydf0933d2006-09-20 11:57:53 -0700555 help = nfct_help(ct);
556 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200557 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200558
Patrick McHardydf0933d2006-09-20 11:57:53 -0700559 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200560 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700561 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800562
Patrick McHardydf0933d2006-09-20 11:57:53 -0700563out:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200564 NF_CT_STAT_INC(net, insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800565 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800566 return NF_DROP;
567}
Patrick McHardy13b18332006-12-02 22:11:25 -0800568EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800569
570/* Returns true if a connection correspondings to the tuple (required
571 for NAT). */
572int
573nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
574 const struct nf_conn *ignored_conntrack)
575{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200576 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800577 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100578 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100579 struct nf_conn *ct;
580 u16 zone = nf_ct_zone(ignored_conntrack);
581 unsigned int hash = hash_conntrack(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800582
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800583 /* Disable BHs the entire time since we need to disable them at
584 * least once for the stats anyway.
585 */
586 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100587 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100588 ct = nf_ct_tuplehash_to_ctrack(h);
589 if (ct != ignored_conntrack &&
590 nf_ct_tuple_equal(tuple, &h->tuple) &&
591 nf_ct_zone(ct) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200592 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800593 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800594 return 1;
595 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200596 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800597 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800598 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800599
Patrick McHardyba419af2008-01-31 04:39:23 -0800600 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800601}
Patrick McHardy13b18332006-12-02 22:11:25 -0800602EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800603
Patrick McHardy7ae77302007-07-07 22:37:38 -0700604#define NF_CT_EVICTION_RANGE 8
605
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800606/* There's a small race here where we may free a just-assured
607 connection. Too bad: we're in trouble anyway. */
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200608static noinline int early_drop(struct net *net, unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800609{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700610 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800611 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700612 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100613 struct hlist_nulls_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700614 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800615 int dropped = 0;
616
Patrick McHardy76507f62008-01-31 04:38:38 -0800617 rcu_read_lock();
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800618 for (i = 0; i < net->ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100619 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
620 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700621 tmp = nf_ct_tuplehash_to_ctrack(h);
622 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
623 ct = tmp;
624 cnt++;
625 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800626
Changli Gao5ae27aa22009-11-05 14:51:31 +0100627 if (ct != NULL) {
628 if (likely(!nf_ct_is_dying(ct) &&
629 atomic_inc_not_zero(&ct->ct_general.use)))
630 break;
631 else
632 ct = NULL;
633 }
634
635 if (cnt >= NF_CT_EVICTION_RANGE)
Patrick McHardy7ae77302007-07-07 22:37:38 -0700636 break;
Changli Gao5ae27aa22009-11-05 14:51:31 +0100637
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800638 hash = (hash + 1) % net->ct.htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800639 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800640 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800641
642 if (!ct)
643 return dropped;
644
645 if (del_timer(&ct->timeout)) {
646 death_by_timeout((unsigned long)ct);
Pablo Neira Ayuso741385112012-03-06 01:22:55 +0000647 /* Check if we indeed killed this entry. Reliable event
648 delivery may have inserted it into the dying list. */
649 if (test_bit(IPS_DYING_BIT, &ct->status)) {
650 dropped = 1;
651 NF_CT_STAT_INC_ATOMIC(net, early_drop);
652 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800653 }
654 nf_ct_put(ct);
655 return dropped;
656}
657
Changli Gaof682cef2011-01-05 04:23:23 +0000658void init_nf_conntrack_hash_rnd(void)
659{
660 unsigned int rand;
661
662 /*
663 * Why not initialize nf_conntrack_rnd in a "init()" function ?
664 * Because there isn't enough entropy when system initializing,
665 * and we initialize it as late as possible.
666 */
667 do {
668 get_random_bytes(&rand, sizeof(rand));
669 } while (!rand);
670 cmpxchg(&nf_conntrack_hash_rnd, 0, rand);
671}
672
Changli Gao99f07e92010-09-21 17:49:20 +0200673static struct nf_conn *
674__nf_conntrack_alloc(struct net *net, u16 zone,
675 const struct nf_conntrack_tuple *orig,
676 const struct nf_conntrack_tuple *repl,
677 gfp_t gfp, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800678{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000679 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800680
Changli Gaob2390962010-09-16 19:55:03 +0200681 if (unlikely(!nf_conntrack_hash_rnd)) {
Changli Gaof682cef2011-01-05 04:23:23 +0000682 init_nf_conntrack_hash_rnd();
Changli Gao99f07e92010-09-21 17:49:20 +0200683 /* recompute the hash as nf_conntrack_hash_rnd is initialized */
684 hash = hash_conntrack_raw(orig, zone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800685 }
686
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700687 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200688 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700689
Patrick McHardy76eb9462008-01-31 04:41:44 -0800690 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200691 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Changli Gao99f07e92010-09-21 17:49:20 +0200692 if (!early_drop(net, hash_bucket(hash, net))) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200693 atomic_dec(&net->ct.count);
Joe Perchese87cc472012-05-13 21:56:26 +0000694 net_warn_ratelimited("nf_conntrack: table full, dropping packet\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800695 return ERR_PTR(-ENOMEM);
696 }
697 }
698
Eric Dumazet941297f2009-07-16 14:03:40 +0200699 /*
700 * Do not use kmem_cache_zalloc(), as this cache uses
701 * SLAB_DESTROY_BY_RCU.
702 */
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800703 ct = kmem_cache_alloc(net->ct.nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800704 if (ct == NULL) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200705 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700706 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800707 }
Eric Dumazet941297f2009-07-16 14:03:40 +0200708 /*
709 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
710 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
711 */
712 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100713 offsetof(struct nf_conn, proto) -
714 offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
Patrick McHardy440f0d52009-06-10 14:32:47 +0200715 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800716 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
Eric Dumazet941297f2009-07-16 14:03:40 +0200717 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800718 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Changli Gao99f07e92010-09-21 17:49:20 +0200719 /* save hash for reusing when confirming */
720 *(unsigned long *)(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev) = hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800721 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800722 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000723 write_pnet(&ct->ct_net, net);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100724#ifdef CONFIG_NF_CONNTRACK_ZONES
725 if (zone) {
726 struct nf_conntrack_zone *nf_ct_zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800727
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100728 nf_ct_zone = nf_ct_ext_add(ct, NF_CT_EXT_ZONE, GFP_ATOMIC);
729 if (!nf_ct_zone)
730 goto out_free;
731 nf_ct_zone->id = zone;
732 }
733#endif
Eric Dumazet941297f2009-07-16 14:03:40 +0200734 /*
735 * changes to lookup keys must be done before setting refcnt to 1
736 */
737 smp_wmb();
738 atomic_set(&ct->ct_general.use, 1);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800739 return ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100740
741#ifdef CONFIG_NF_CONNTRACK_ZONES
742out_free:
Pablo Neira Ayusod96fc652012-04-03 16:45:54 +0200743 atomic_dec(&net->ct.count);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100744 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
745 return ERR_PTR(-ENOMEM);
746#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800747}
Changli Gao99f07e92010-09-21 17:49:20 +0200748
749struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
750 const struct nf_conntrack_tuple *orig,
751 const struct nf_conntrack_tuple *repl,
752 gfp_t gfp)
753{
754 return __nf_conntrack_alloc(net, zone, orig, repl, gfp, 0);
755}
Patrick McHardy13b18332006-12-02 22:11:25 -0800756EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800757
Patrick McHardyc88130b2008-01-31 04:42:11 -0800758void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800759{
Eric Dumazet1d452092009-03-24 14:26:50 +0100760 struct net *net = nf_ct_net(ct);
761
Patrick McHardyceeff752008-06-11 17:51:10 -0700762 nf_ct_ext_destroy(ct);
Eric Dumazet1d452092009-03-24 14:26:50 +0100763 atomic_dec(&net->ct.count);
Eric Dumazetea781f12009-03-25 21:05:46 +0100764 nf_ct_ext_free(ct);
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800765 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800766}
Patrick McHardy13b18332006-12-02 22:11:25 -0800767EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800768
Florian Westphalc539f012013-01-11 06:30:44 +0000769
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800770/* Allocate a new conntrack: we return -ENOMEM if classification
771 failed due to stress. Otherwise it really is unclassifiable. */
772static struct nf_conntrack_tuple_hash *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100773init_conntrack(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200774 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800775 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100776 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800777 struct sk_buff *skb,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100778 unsigned int dataoff, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800779{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800780 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700781 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800782 struct nf_conntrack_tuple repl_tuple;
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100783 struct nf_conntrack_ecache *ecache;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800784 struct nf_conntrack_expect *exp;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100785 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100786 struct nf_conn_timeout *timeout_ext;
787 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800788
Martin Josefsson605dcad2006-11-29 02:35:06 +0100789 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700790 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800791 return NULL;
792 }
793
Changli Gao99f07e92010-09-21 17:49:20 +0200794 ct = __nf_conntrack_alloc(net, zone, tuple, &repl_tuple, GFP_ATOMIC,
795 hash);
Joe Perches0a9ee812011-08-29 14:17:25 -0700796 if (IS_ERR(ct))
Patrick McHardyc88130b2008-01-31 04:42:11 -0800797 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800798
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100799 timeout_ext = tmpl ? nf_ct_timeout_find(tmpl) : NULL;
800 if (timeout_ext)
801 timeouts = NF_CT_TIMEOUT_EXT_DATA(timeout_ext);
802 else
803 timeouts = l4proto->get_timeouts(net);
804
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100805 if (!l4proto->new(ct, skb, dataoff, timeouts)) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800806 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700807 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800808 return NULL;
809 }
810
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100811 if (timeout_ext)
812 nf_ct_timeout_ext_add(ct, timeout_ext->timeout, GFP_ATOMIC);
813
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700814 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100815 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
Florian Westphalc539f012013-01-11 06:30:44 +0000816 nf_ct_labels_ext_add(ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100817
818 ecache = tmpl ? nf_ct_ecache_find(tmpl) : NULL;
819 nf_ct_ecache_ext_add(ct, ecache ? ecache->ctmask : 0,
820 ecache ? ecache->expmask : 0,
821 GFP_ATOMIC);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700822
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800823 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100824 exp = nf_ct_find_expectation(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800825 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700826 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800827 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800828 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800829 __set_bit(IPS_EXPECTED_BIT, &ct->status);
830 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700831 if (exp->helper) {
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +0200832 help = nf_ct_helper_ext_add(ct, exp->helper,
833 GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700834 if (help)
Eric Dumazetcf778b02012-01-12 04:41:32 +0000835 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700836 }
837
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800838#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800839 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800840#endif
James Morris7c9728c2006-06-09 00:31:46 -0700841#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800842 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700843#endif
Patrick McHardyc88130b2008-01-31 04:42:11 -0800844 nf_conntrack_get(&ct->master->ct_general);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200845 NF_CT_STAT_INC(net, expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800846 } else {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100847 __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200848 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800849 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800850
851 /* Overload tuple linked list to put us in unconfirmed list. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100852 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan63c9a262008-10-08 11:35:04 +0200853 &net->ct.unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800854
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800855 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800856
857 if (exp) {
858 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800859 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700860 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800861 }
862
Patrick McHardyc88130b2008-01-31 04:42:11 -0800863 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800864}
865
866/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
867static inline struct nf_conn *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100868resolve_normal_ct(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyana702a652008-10-08 11:35:04 +0200869 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800870 unsigned int dataoff,
871 u_int16_t l3num,
872 u_int8_t protonum,
873 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100874 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800875 int *set_reply,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100876 enum ip_conntrack_info *ctinfo)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800877{
878 struct nf_conntrack_tuple tuple;
879 struct nf_conntrack_tuple_hash *h;
880 struct nf_conn *ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100881 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Changli Gao99f07e92010-09-21 17:49:20 +0200882 u32 hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800883
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300884 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800885 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100886 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700887 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800888 return NULL;
889 }
890
891 /* look for tuple match */
Changli Gao99f07e92010-09-21 17:49:20 +0200892 hash = hash_conntrack_raw(&tuple, zone);
893 h = __nf_conntrack_find_get(net, zone, &tuple, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800894 if (!h) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100895 h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100896 skb, dataoff, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800897 if (!h)
898 return NULL;
899 if (IS_ERR(h))
900 return (void *)h;
901 }
902 ct = nf_ct_tuplehash_to_ctrack(h);
903
904 /* It exists; we have (non-exclusive) reference. */
905 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
Eric Dumazetfb048832011-05-19 15:44:27 +0200906 *ctinfo = IP_CT_ESTABLISHED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800907 /* Please set reply bit if this packet OK */
908 *set_reply = 1;
909 } else {
910 /* Once we've had two way comms, always ESTABLISHED. */
911 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700912 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800913 *ctinfo = IP_CT_ESTABLISHED;
914 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700915 pr_debug("nf_conntrack_in: related packet for %p\n",
916 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800917 *ctinfo = IP_CT_RELATED;
918 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700919 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800920 *ctinfo = IP_CT_NEW;
921 }
922 *set_reply = 0;
923 }
924 skb->nfct = &ct->ct_general;
925 skb->nfctinfo = *ctinfo;
926 return ct;
927}
928
929unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +0200930nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
931 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800932{
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100933 struct nf_conn *ct, *tmpl = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800934 enum ip_conntrack_info ctinfo;
935 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100936 struct nf_conntrack_l4proto *l4proto;
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100937 unsigned int *timeouts;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800938 unsigned int dataoff;
939 u_int8_t protonum;
940 int set_reply = 0;
941 int ret;
942
Herbert Xu3db05fe2007-10-15 00:53:15 -0700943 if (skb->nfct) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100944 /* Previously seen (loopback or untracked)? Ignore. */
945 tmpl = (struct nf_conn *)skb->nfct;
946 if (!nf_ct_is_template(tmpl)) {
947 NF_CT_STAT_INC_ATOMIC(net, ignore);
948 return NF_ACCEPT;
949 }
950 skb->nfct = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800951 }
952
Patrick McHardy923f4902007-02-12 11:12:57 -0800953 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200954 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700955 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700956 &dataoff, &protonum);
957 if (ret <= 0) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300958 pr_debug("not prepared to track yet or error occurred\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200959 NF_CT_STAT_INC_ATOMIC(net, error);
960 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100961 ret = -ret;
962 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800963 }
964
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200965 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800966
967 /* It may be an special packet, error, unclean...
968 * inverse of the return code tells to the netfilter
969 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200970 if (l4proto->error != NULL) {
Patrick McHardy8fea97e2010-02-15 17:45:08 +0100971 ret = l4proto->error(net, tmpl, skb, dataoff, &ctinfo,
972 pf, hooknum);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200973 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200974 NF_CT_STAT_INC_ATOMIC(net, error);
975 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100976 ret = -ret;
977 goto out;
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200978 }
Pablo Neira Ayuso88ed01d2011-06-02 15:08:45 +0200979 /* ICMP[v6] protocol trackers may assign one conntrack. */
980 if (skb->nfct)
981 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800982 }
983
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100984 ct = resolve_normal_ct(net, tmpl, skb, dataoff, pf, protonum,
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +0100985 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800986 if (!ct) {
987 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200988 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100989 ret = NF_ACCEPT;
990 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800991 }
992
993 if (IS_ERR(ct)) {
994 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200995 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100996 ret = NF_DROP;
997 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800998 }
999
Herbert Xu3db05fe2007-10-15 00:53:15 -07001000 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001001
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001002 /* Decide what timeout policy we want to apply to this flow. */
Pablo Neira Ayuso84b5ee92012-08-28 00:53:15 +00001003 timeouts = nf_ct_timeout_lookup(net, ct, l4proto);
Pablo Neira Ayuso60b5f8f2012-03-23 00:04:53 +01001004
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +01001005 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum, timeouts);
Christoph Paaschec8d5402009-03-16 15:51:29 +01001006 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001007 /* Invalid: inverse of the return code tells
1008 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -07001009 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -07001010 nf_conntrack_put(skb->nfct);
1011 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001012 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +01001013 if (ret == -NF_DROP)
1014 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001015 ret = -ret;
1016 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001017 }
1018
1019 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Patrick McHardy858b31332010-02-03 13:48:53 +01001020 nf_conntrack_event_cache(IPCT_REPLY, ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001021out:
Pablo Neira Ayusoc3174282011-02-09 08:08:20 +01001022 if (tmpl) {
1023 /* Special case: we have to repeat this hook, assign the
1024 * template again to this packet. We assume that this packet
1025 * has no conntrack assigned. This is used by nf_ct_tcp. */
1026 if (ret == NF_REPEAT)
1027 skb->nfct = (struct nf_conntrack *)tmpl;
1028 else
1029 nf_ct_put(tmpl);
1030 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001031
1032 return ret;
1033}
Patrick McHardy13b18332006-12-02 22:11:25 -08001034EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001035
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001036bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
1037 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001038{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +02001039 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -08001040
1041 rcu_read_lock();
1042 ret = nf_ct_invert_tuple(inverse, orig,
1043 __nf_ct_l3proto_find(orig->src.l3num),
1044 __nf_ct_l4proto_find(orig->src.l3num,
1045 orig->dst.protonum));
1046 rcu_read_unlock();
1047 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001048}
Patrick McHardy13b18332006-12-02 22:11:25 -08001049EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001050
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001051/* Alter reply tuple (maybe alter helper). This is for NAT, and is
1052 implicitly racy: see __nf_conntrack_confirm */
1053void nf_conntrack_alter_reply(struct nf_conn *ct,
1054 const struct nf_conntrack_tuple *newreply)
1055{
1056 struct nf_conn_help *help = nfct_help(ct);
1057
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001058 /* Should be unconfirmed, so not in hash table yet */
1059 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
1060
Patrick McHardy0d537782007-07-07 22:39:38 -07001061 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +02001062 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001063
1064 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +02001065 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001066 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001067
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001068 rcu_read_lock();
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001069 __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001070 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001071}
Patrick McHardy13b18332006-12-02 22:11:25 -08001072EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001073
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001074/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
1075void __nf_ct_refresh_acct(struct nf_conn *ct,
1076 enum ip_conntrack_info ctinfo,
1077 const struct sk_buff *skb,
1078 unsigned long extra_jiffies,
1079 int do_acct)
1080{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001081 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
1082 NF_CT_ASSERT(skb);
1083
Eric Leblond997ae832006-05-29 18:24:20 -07001084 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -08001085 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
1086 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -07001087
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001088 /* If not in hash table, timer will not be active yet */
1089 if (!nf_ct_is_confirmed(ct)) {
1090 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001091 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +01001092 unsigned long newtime = jiffies + extra_jiffies;
1093
1094 /* Only update the timeout if the new timeout is at least
1095 HZ jiffies from the old timeout. Need del_timer for race
1096 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001097 if (newtime - ct->timeout.expires >= HZ)
1098 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001099 }
1100
Patrick McHardy47d95042008-01-31 04:36:31 -08001101acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001102 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001103 struct nf_conn_counter *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +01001104
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001105 acct = nf_conn_acct_find(ct);
1106 if (acct) {
Eric Dumazetb3e0bfa2011-12-14 14:45:20 +01001107 atomic64_inc(&acct[CTINFO2DIR(ctinfo)].packets);
1108 atomic64_add(skb->len, &acct[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001109 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001110 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001111}
Patrick McHardy13b18332006-12-02 22:11:25 -08001112EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001113
David S. Miller4c889492008-07-14 20:22:38 -07001114bool __nf_ct_kill_acct(struct nf_conn *ct,
1115 enum ip_conntrack_info ctinfo,
1116 const struct sk_buff *skb,
1117 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -07001118{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001119 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001120 struct nf_conn_counter *acct;
1121
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001122 acct = nf_conn_acct_find(ct);
1123 if (acct) {
Eric Dumazetb3e0bfa2011-12-14 14:45:20 +01001124 atomic64_inc(&acct[CTINFO2DIR(ctinfo)].packets);
1125 atomic64_add(skb->len - skb_network_offset(skb),
1126 &acct[CTINFO2DIR(ctinfo)].bytes);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001127 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001128 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001129
David S. Miller4c889492008-07-14 20:22:38 -07001130 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -07001131 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -07001132 return true;
1133 }
1134 return false;
Patrick McHardy51091762008-06-09 15:59:06 -07001135}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001136EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -07001137
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001138#ifdef CONFIG_NF_CONNTRACK_ZONES
1139static struct nf_ct_ext_type nf_ct_zone_extend __read_mostly = {
1140 .len = sizeof(struct nf_conntrack_zone),
1141 .align = __alignof__(struct nf_conntrack_zone),
1142 .id = NF_CT_EXT_ZONE,
1143};
1144#endif
1145
Igor Maravićc0cd1152011-12-12 02:58:24 +00001146#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001147
1148#include <linux/netfilter/nfnetlink.h>
1149#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -08001150#include <linux/mutex.h>
1151
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001152/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
1153 * in ip_conntrack_core, since we don't want the protocols to autoload
1154 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -07001155int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001156 const struct nf_conntrack_tuple *tuple)
1157{
David S. Millerbae65be2012-04-01 18:58:28 -04001158 if (nla_put_be16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port) ||
1159 nla_put_be16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port))
1160 goto nla_put_failure;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001161 return 0;
1162
Patrick McHardydf6fb862007-09-28 14:37:03 -07001163nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001164 return -1;
1165}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001166EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001167
Patrick McHardyf73e9242007-09-28 14:39:55 -07001168const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
1169 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
1170 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001171};
Patrick McHardyf73e9242007-09-28 14:39:55 -07001172EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001173
Patrick McHardyfdf70832007-09-28 14:37:41 -07001174int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001175 struct nf_conntrack_tuple *t)
1176{
Patrick McHardydf6fb862007-09-28 14:37:03 -07001177 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001178 return -EINVAL;
1179
Patrick McHardy77236b62007-12-17 22:29:45 -08001180 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
1181 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001182
1183 return 0;
1184}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001185EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +01001186
1187int nf_ct_port_nlattr_tuple_size(void)
1188{
1189 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1190}
1191EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001192#endif
1193
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001194/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardy312a0c162013-07-28 22:54:08 +02001195static void nf_conntrack_attach(struct sk_buff *nskb, const struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001196{
1197 struct nf_conn *ct;
1198 enum ip_conntrack_info ctinfo;
1199
1200 /* This ICMP is in reverse direction to the packet which caused it */
1201 ct = nf_ct_get(skb, &ctinfo);
1202 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
Eric Dumazetfb048832011-05-19 15:44:27 +02001203 ctinfo = IP_CT_RELATED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001204 else
1205 ctinfo = IP_CT_RELATED;
1206
1207 /* Attach to new skbuff, and increment count */
1208 nskb->nfct = &ct->ct_general;
1209 nskb->nfctinfo = ctinfo;
1210 nf_conntrack_get(nskb->nfct);
1211}
1212
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001213/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001214static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001215get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001216 void *data, unsigned int *bucket)
1217{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001218 struct nf_conntrack_tuple_hash *h;
1219 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +01001220 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001221
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001222 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001223 for (; *bucket < net->ct.htable_size; (*bucket)++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001224 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
Patrick McHardyb0cdb1d2012-09-19 20:57:04 +00001225 if (NF_CT_DIRECTION(h) != IP_CT_DIR_ORIGINAL)
1226 continue;
Patrick McHardydf0933d2006-09-20 11:57:53 -07001227 ct = nf_ct_tuplehash_to_ctrack(h);
1228 if (iter(ct, data))
1229 goto found;
1230 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001231 }
Eric Dumazetea781f12009-03-25 21:05:46 +01001232 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001233 ct = nf_ct_tuplehash_to_ctrack(h);
1234 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -08001235 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001236 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001237 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001238 return NULL;
1239found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001240 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001241 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001242 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001243}
1244
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001245void nf_ct_iterate_cleanup(struct net *net,
1246 int (*iter)(struct nf_conn *i, void *data),
1247 void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001248{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001249 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001250 unsigned int bucket = 0;
1251
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001252 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001253 /* Time to push up daises... */
1254 if (del_timer(&ct->timeout))
1255 death_by_timeout((unsigned long)ct);
1256 /* ... else the timer will get him soon. */
1257
1258 nf_ct_put(ct);
1259 }
1260}
Patrick McHardy13b18332006-12-02 22:11:25 -08001261EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001262
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001263struct __nf_ct_flush_report {
Patrick McHardyec464e52013-04-17 06:47:08 +00001264 u32 portid;
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001265 int report;
1266};
1267
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001268static int kill_report(struct nf_conn *i, void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001269{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001270 struct __nf_ct_flush_report *fr = (struct __nf_ct_flush_report *)data;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001271 struct nf_conn_tstamp *tstamp;
1272
1273 tstamp = nf_conn_tstamp_find(i);
1274 if (tstamp && tstamp->stop == 0)
1275 tstamp->stop = ktime_to_ns(ktime_get_real());
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001276
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001277 /* If we fail to deliver the event, death_by_timeout() will retry */
1278 if (nf_conntrack_event_report(IPCT_DESTROY, i,
Patrick McHardyec464e52013-04-17 06:47:08 +00001279 fr->portid, fr->report) < 0)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001280 return 1;
1281
1282 /* Avoid the delivery of the destroy event in death_by_timeout(). */
1283 set_bit(IPS_DYING_BIT, &i->status);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001284 return 1;
1285}
1286
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001287static int kill_all(struct nf_conn *i, void *data)
1288{
1289 return 1;
1290}
1291
Patrick McHardyd862a662011-01-14 15:45:56 +01001292void nf_ct_free_hashtable(void *hash, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001293{
Patrick McHardyd862a662011-01-14 15:45:56 +01001294 if (is_vmalloc_addr(hash))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001295 vfree(hash);
1296 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001297 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001298 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001299}
Patrick McHardyac565e52007-07-07 22:30:08 -07001300EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001301
Patrick McHardyec464e52013-04-17 06:47:08 +00001302void nf_conntrack_flush_report(struct net *net, u32 portid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001303{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001304 struct __nf_ct_flush_report fr = {
Patrick McHardyec464e52013-04-17 06:47:08 +00001305 .portid = portid,
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001306 .report = report,
1307 };
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001308 nf_ct_iterate_cleanup(net, kill_report, &fr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001309}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001310EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001311
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001312static void nf_ct_release_dying_list(struct net *net)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001313{
1314 struct nf_conntrack_tuple_hash *h;
1315 struct nf_conn *ct;
1316 struct hlist_nulls_node *n;
1317
1318 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001319 hlist_nulls_for_each_entry(h, n, &net->ct.dying, hnnode) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001320 ct = nf_ct_tuplehash_to_ctrack(h);
1321 /* never fails to remove them, no listeners at this point */
1322 nf_ct_kill(ct);
1323 }
1324 spin_unlock_bh(&nf_conntrack_lock);
1325}
1326
Eric Dumazetb3c51632010-06-09 14:43:38 +02001327static int untrack_refs(void)
1328{
1329 int cnt = 0, cpu;
1330
1331 for_each_possible_cpu(cpu) {
1332 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
1333
1334 cnt += atomic_read(&ct->ct_general.use) - 1;
1335 }
1336 return cnt;
1337}
1338
Gao fengf94161c2013-01-21 22:10:24 +00001339void nf_conntrack_cleanup_start(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001340{
Gao fengf94161c2013-01-21 22:10:24 +00001341 RCU_INIT_POINTER(ip_ct_attach, NULL);
1342}
1343
1344void nf_conntrack_cleanup_end(void)
1345{
1346 RCU_INIT_POINTER(nf_ct_destroy, NULL);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001347 while (untrack_refs() > 0)
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001348 schedule();
1349
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001350#ifdef CONFIG_NF_CONNTRACK_ZONES
1351 nf_ct_extend_unregister(&nf_ct_zone_extend);
1352#endif
Gao feng04d87002013-01-21 22:10:32 +00001353 nf_conntrack_proto_fini();
Gao feng5f69b8f2013-01-21 22:10:31 +00001354 nf_conntrack_labels_fini();
Gao feng5e615b22013-01-21 22:10:30 +00001355 nf_conntrack_helper_fini();
Gao feng86840942013-01-21 22:10:29 +00001356 nf_conntrack_timeout_fini();
Gao feng3fe0f942013-01-21 22:10:28 +00001357 nf_conntrack_ecache_fini();
Gao feng73f40012013-01-21 22:10:27 +00001358 nf_conntrack_tstamp_fini();
Gao fengb7ff3a12013-01-21 22:10:26 +00001359 nf_conntrack_acct_fini();
Gao feng83b4dbe2013-01-21 22:10:25 +00001360 nf_conntrack_expect_fini();
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001361}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001362
Gao fengf94161c2013-01-21 22:10:24 +00001363/*
1364 * Mishearing the voices in his head, our hero wonders how he's
1365 * supposed to kill the mall.
1366 */
1367void nf_conntrack_cleanup_net(struct net *net)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001368{
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001369 LIST_HEAD(single);
1370
1371 list_add(&net->exit_list, &single);
1372 nf_conntrack_cleanup_net_list(&single);
1373}
1374
1375void nf_conntrack_cleanup_net_list(struct list_head *net_exit_list)
1376{
1377 int busy;
1378 struct net *net;
1379
Gao fengf94161c2013-01-21 22:10:24 +00001380 /*
1381 * This makes sure all current packets have passed through
1382 * netfilter framework. Roll on, two-stage module
1383 * delete...
1384 */
1385 synchronize_net();
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001386i_see_dead_people:
1387 busy = 0;
1388 list_for_each_entry(net, net_exit_list, exit_list) {
1389 nf_ct_iterate_cleanup(net, kill_all, NULL);
1390 nf_ct_release_dying_list(net);
1391 if (atomic_read(&net->ct.count) != 0)
1392 busy = 1;
1393 }
1394 if (busy) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001395 schedule();
1396 goto i_see_dead_people;
1397 }
1398
Vladimir Davydovdece40e2013-03-13 23:40:14 +00001399 list_for_each_entry(net, net_exit_list, exit_list) {
1400 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
1401 nf_conntrack_proto_pernet_fini(net);
1402 nf_conntrack_helper_pernet_fini(net);
1403 nf_conntrack_ecache_pernet_fini(net);
1404 nf_conntrack_tstamp_pernet_fini(net);
1405 nf_conntrack_acct_pernet_fini(net);
1406 nf_conntrack_expect_pernet_fini(net);
1407 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1408 kfree(net->ct.slabname);
1409 free_percpu(net->ct.stat);
1410 }
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001411}
1412
Patrick McHardyd862a662011-01-14 15:45:56 +01001413void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001414{
Eric Dumazetea781f12009-03-25 21:05:46 +01001415 struct hlist_nulls_head *hash;
1416 unsigned int nr_slots, i;
1417 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001418
Eric Dumazetea781f12009-03-25 21:05:46 +01001419 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1420 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1421 sz = nr_slots * sizeof(struct hlist_nulls_head);
1422 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1423 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001424 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001425 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazet966567b2011-12-19 16:01:38 -05001426 hash = vzalloc(sz);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001427 }
1428
Eric Dumazetea781f12009-03-25 21:05:46 +01001429 if (hash && nulls)
1430 for (i = 0; i < nr_slots; i++)
1431 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001432
1433 return hash;
1434}
Patrick McHardyac565e52007-07-07 22:30:08 -07001435EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001436
Patrick McHardyfae718d2007-12-24 21:09:10 -08001437int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001438{
Abhijit Pawar4b5511e2012-12-09 23:12:28 +00001439 int i, bucket, rc;
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001440 unsigned int hashsize, old_size;
Eric Dumazetea781f12009-03-25 21:05:46 +01001441 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001442 struct nf_conntrack_tuple_hash *h;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001443 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001444
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001445 if (current->nsproxy->net_ns != &init_net)
1446 return -EOPNOTSUPP;
1447
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001448 /* On boot, we can set this without any fancy locking. */
1449 if (!nf_conntrack_htable_size)
1450 return param_set_uint(val, kp);
1451
Abhijit Pawar4b5511e2012-12-09 23:12:28 +00001452 rc = kstrtouint(val, 0, &hashsize);
1453 if (rc)
1454 return rc;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001455 if (!hashsize)
1456 return -EINVAL;
1457
Patrick McHardyd862a662011-01-14 15:45:56 +01001458 hash = nf_ct_alloc_hashtable(&hashsize, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001459 if (!hash)
1460 return -ENOMEM;
1461
Patrick McHardy76507f62008-01-31 04:38:38 -08001462 /* Lookups in the old hash might happen in parallel, which means we
1463 * might get false negatives during connection lookup. New connections
1464 * created because of a false negative won't make it into the hash
1465 * though since that required taking the lock.
1466 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001467 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001468 for (i = 0; i < init_net.ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001469 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1470 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1471 struct nf_conntrack_tuple_hash, hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001472 ct = nf_ct_tuplehash_to_ctrack(h);
Eric Dumazetea781f12009-03-25 21:05:46 +01001473 hlist_nulls_del_rcu(&h->hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001474 bucket = __hash_conntrack(&h->tuple, nf_ct_zone(ct),
Changli Gao99f07e92010-09-21 17:49:20 +02001475 hashsize);
Eric Dumazetea781f12009-03-25 21:05:46 +01001476 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001477 }
1478 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001479 old_size = init_net.ct.htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001480 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001481
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001482 init_net.ct.htable_size = nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001483 init_net.ct.hash = hash;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001484 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001485
Patrick McHardyd862a662011-01-14 15:45:56 +01001486 nf_ct_free_hashtable(old_hash, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001487 return 0;
1488}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001489EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001490
Patrick McHardyfae718d2007-12-24 21:09:10 -08001491module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001492 &nf_conntrack_htable_size, 0600);
1493
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001494void nf_ct_untracked_status_or(unsigned long bits)
1495{
Eric Dumazetb3c51632010-06-09 14:43:38 +02001496 int cpu;
1497
1498 for_each_possible_cpu(cpu)
1499 per_cpu(nf_conntrack_untracked, cpu).status |= bits;
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001500}
1501EXPORT_SYMBOL_GPL(nf_ct_untracked_status_or);
1502
Gao fengf94161c2013-01-21 22:10:24 +00001503int nf_conntrack_init_start(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001504{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001505 int max_factor = 8;
Eric Dumazetb3c51632010-06-09 14:43:38 +02001506 int ret, cpu;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001507
1508 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001509 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001510 if (!nf_conntrack_htable_size) {
1511 nf_conntrack_htable_size
Jan Beulich44813742009-09-21 17:03:05 -07001512 = (((totalram_pages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001513 / sizeof(struct hlist_head));
Jan Beulich44813742009-09-21 17:03:05 -07001514 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001515 nf_conntrack_htable_size = 16384;
1516 if (nf_conntrack_htable_size < 32)
1517 nf_conntrack_htable_size = 32;
1518
1519 /* Use a max. factor of four by default to get the same max as
1520 * with the old struct list_heads. When a table size is given
1521 * we use the old value of 8 to avoid reducing the max.
1522 * entries. */
1523 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001524 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001525 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001526
Stephen Hemminger654d0fb2010-05-13 15:02:08 +02001527 printk(KERN_INFO "nf_conntrack version %s (%u buckets, %d max)\n",
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001528 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1529 nf_conntrack_max);
Gao feng83b4dbe2013-01-21 22:10:25 +00001530
1531 ret = nf_conntrack_expect_init();
1532 if (ret < 0)
1533 goto err_expect;
1534
Gao fengb7ff3a12013-01-21 22:10:26 +00001535 ret = nf_conntrack_acct_init();
1536 if (ret < 0)
1537 goto err_acct;
1538
Gao feng73f40012013-01-21 22:10:27 +00001539 ret = nf_conntrack_tstamp_init();
1540 if (ret < 0)
1541 goto err_tstamp;
1542
Gao feng3fe0f942013-01-21 22:10:28 +00001543 ret = nf_conntrack_ecache_init();
1544 if (ret < 0)
1545 goto err_ecache;
1546
Gao feng86840942013-01-21 22:10:29 +00001547 ret = nf_conntrack_timeout_init();
1548 if (ret < 0)
1549 goto err_timeout;
1550
Gao feng5e615b22013-01-21 22:10:30 +00001551 ret = nf_conntrack_helper_init();
1552 if (ret < 0)
1553 goto err_helper;
1554
Gao feng5f69b8f2013-01-21 22:10:31 +00001555 ret = nf_conntrack_labels_init();
1556 if (ret < 0)
1557 goto err_labels;
1558
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001559#ifdef CONFIG_NF_CONNTRACK_ZONES
1560 ret = nf_ct_extend_register(&nf_ct_zone_extend);
1561 if (ret < 0)
1562 goto err_extend;
1563#endif
Gao feng04d87002013-01-21 22:10:32 +00001564 ret = nf_conntrack_proto_init();
1565 if (ret < 0)
1566 goto err_proto;
1567
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001568 /* Set up fake conntrack: to never be deleted, not in any hashes */
Eric Dumazetb3c51632010-06-09 14:43:38 +02001569 for_each_possible_cpu(cpu) {
1570 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001571 write_pnet(&ct->ct_net, &init_net);
1572 atomic_set(&ct->ct_general.use, 1);
1573 }
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001574 /* - and look it like as a confirmed connection */
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001575 nf_ct_untracked_status_or(IPS_CONFIRMED | IPS_UNTRACKED);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001576 return 0;
1577
Gao feng04d87002013-01-21 22:10:32 +00001578err_proto:
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001579#ifdef CONFIG_NF_CONNTRACK_ZONES
Gao feng04d87002013-01-21 22:10:32 +00001580 nf_ct_extend_unregister(&nf_ct_zone_extend);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001581err_extend:
Eric Leblonda9006892012-04-18 11:20:41 +02001582#endif
Gao feng04d87002013-01-21 22:10:32 +00001583 nf_conntrack_labels_fini();
Gao feng5f69b8f2013-01-21 22:10:31 +00001584err_labels:
1585 nf_conntrack_helper_fini();
Gao feng5e615b22013-01-21 22:10:30 +00001586err_helper:
1587 nf_conntrack_timeout_fini();
Gao feng86840942013-01-21 22:10:29 +00001588err_timeout:
1589 nf_conntrack_ecache_fini();
Gao feng3fe0f942013-01-21 22:10:28 +00001590err_ecache:
1591 nf_conntrack_tstamp_fini();
Gao feng73f40012013-01-21 22:10:27 +00001592err_tstamp:
1593 nf_conntrack_acct_fini();
Gao fengb7ff3a12013-01-21 22:10:26 +00001594err_acct:
1595 nf_conntrack_expect_fini();
Gao feng83b4dbe2013-01-21 22:10:25 +00001596err_expect:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001597 return ret;
1598}
1599
Gao fengf94161c2013-01-21 22:10:24 +00001600void nf_conntrack_init_end(void)
1601{
1602 /* For use by REJECT target */
1603 RCU_INIT_POINTER(ip_ct_attach, nf_conntrack_attach);
1604 RCU_INIT_POINTER(nf_ct_destroy, destroy_conntrack);
1605
1606 /* Howto get NAT offsets */
1607 RCU_INIT_POINTER(nf_ct_nat_offset, NULL);
1608}
1609
Eric Dumazet8cc20192009-06-22 14:13:55 +02001610/*
1611 * We need to use special "null" values, not used in hash table
1612 */
1613#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1614#define DYING_NULLS_VAL ((1<<30)+1)
Pablo Neira Ayuso252b3e82012-12-11 04:07:42 +00001615#define TEMPLATE_NULLS_VAL ((1<<30)+2)
Eric Dumazet8cc20192009-06-22 14:13:55 +02001616
Gao fengf94161c2013-01-21 22:10:24 +00001617int nf_conntrack_init_net(struct net *net)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001618{
1619 int ret;
1620
1621 atomic_set(&net->ct.count, 0);
Eric Dumazet8cc20192009-06-22 14:13:55 +02001622 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, UNCONFIRMED_NULLS_VAL);
1623 INIT_HLIST_NULLS_HEAD(&net->ct.dying, DYING_NULLS_VAL);
Pablo Neira Ayuso252b3e82012-12-11 04:07:42 +00001624 INIT_HLIST_NULLS_HEAD(&net->ct.tmpl, TEMPLATE_NULLS_VAL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001625 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1626 if (!net->ct.stat) {
1627 ret = -ENOMEM;
1628 goto err_stat;
1629 }
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001630
1631 net->ct.slabname = kasprintf(GFP_KERNEL, "nf_conntrack_%p", net);
1632 if (!net->ct.slabname) {
1633 ret = -ENOMEM;
1634 goto err_slabname;
1635 }
1636
1637 net->ct.nf_conntrack_cachep = kmem_cache_create(net->ct.slabname,
1638 sizeof(struct nf_conn), 0,
1639 SLAB_DESTROY_BY_RCU, NULL);
1640 if (!net->ct.nf_conntrack_cachep) {
1641 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1642 ret = -ENOMEM;
1643 goto err_cache;
1644 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001645
1646 net->ct.htable_size = nf_conntrack_htable_size;
Patrick McHardyd862a662011-01-14 15:45:56 +01001647 net->ct.hash = nf_ct_alloc_hashtable(&net->ct.htable_size, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001648 if (!net->ct.hash) {
1649 ret = -ENOMEM;
1650 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1651 goto err_hash;
1652 }
Gao feng83b4dbe2013-01-21 22:10:25 +00001653 ret = nf_conntrack_expect_pernet_init(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001654 if (ret < 0)
1655 goto err_expect;
Gao fengb7ff3a12013-01-21 22:10:26 +00001656 ret = nf_conntrack_acct_pernet_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001657 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001658 goto err_acct;
Gao feng73f40012013-01-21 22:10:27 +00001659 ret = nf_conntrack_tstamp_pernet_init(net);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001660 if (ret < 0)
1661 goto err_tstamp;
Gao feng3fe0f942013-01-21 22:10:28 +00001662 ret = nf_conntrack_ecache_pernet_init(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001663 if (ret < 0)
1664 goto err_ecache;
Gao feng5e615b22013-01-21 22:10:30 +00001665 ret = nf_conntrack_helper_pernet_init(net);
Eric Leblonda9006892012-04-18 11:20:41 +02001666 if (ret < 0)
1667 goto err_helper;
Gao feng04d87002013-01-21 22:10:32 +00001668 ret = nf_conntrack_proto_pernet_init(net);
Gao fengf94161c2013-01-21 22:10:24 +00001669 if (ret < 0)
1670 goto err_proto;
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001671 return 0;
Florian Westphalc539f012013-01-11 06:30:44 +00001672
Gao fengf94161c2013-01-21 22:10:24 +00001673err_proto:
Gao feng5e615b22013-01-21 22:10:30 +00001674 nf_conntrack_helper_pernet_fini(net);
Eric Leblonda9006892012-04-18 11:20:41 +02001675err_helper:
Gao feng3fe0f942013-01-21 22:10:28 +00001676 nf_conntrack_ecache_pernet_fini(net);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001677err_ecache:
Gao feng73f40012013-01-21 22:10:27 +00001678 nf_conntrack_tstamp_pernet_fini(net);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001679err_tstamp:
Gao fengb7ff3a12013-01-21 22:10:26 +00001680 nf_conntrack_acct_pernet_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001681err_acct:
Gao feng83b4dbe2013-01-21 22:10:25 +00001682 nf_conntrack_expect_pernet_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001683err_expect:
Patrick McHardyd862a662011-01-14 15:45:56 +01001684 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001685err_hash:
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001686 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1687err_cache:
1688 kfree(net->ct.slabname);
1689err_slabname:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001690 free_percpu(net->ct.stat);
1691err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001692 return ret;
1693}
1694
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -08001695s16 (*nf_ct_nat_offset)(const struct nf_conn *ct,
1696 enum ip_conntrack_dir dir,
1697 u32 seq);
1698EXPORT_SYMBOL_GPL(nf_ct_nat_offset);