blob: 32279dcd03cf522d56a5aabb693f931e5191d207 [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 Ayusoe6a7d3c2008-10-14 11:58:31 -070047#include <net/netfilter/nf_nat.h>
Patrick McHardye17b6662008-11-18 12:24:17 +010048#include <net/netfilter/nf_nat_core.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080049
Harald Weltedc808fe2006-03-20 17:56:32 -080050#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080051
Patrick McHardye17b6662008-11-18 12:24:17 +010052int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
53 enum nf_nat_manip_type manip,
Patrick McHardy39938322009-08-25 16:07:58 +020054 const struct nlattr *attr) __read_mostly;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070055EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
56
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080057DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080058EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080059
Martin Josefssone2b76062006-11-29 02:35:04 +010060unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080061EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
62
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +010063unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010064EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080065
Eric Dumazetb3c51632010-06-09 14:43:38 +020066DEFINE_PER_CPU(struct nf_conn, nf_conntrack_untracked);
67EXPORT_PER_CPU_SYMBOL(nf_conntrack_untracked);
Patrick McHardy13b18332006-12-02 22:11:25 -080068
Changli Gaof682cef2011-01-05 04:23:23 +000069unsigned int nf_conntrack_hash_rnd __read_mostly;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080070
Changli Gao99f07e92010-09-21 17:49:20 +020071static u32 hash_conntrack_raw(const struct nf_conntrack_tuple *tuple, u16 zone)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080072{
Patrick McHardy07949352008-01-31 04:40:52 -080073 unsigned int n;
Sami Farin9b887902007-03-14 16:43:00 -070074
Patrick McHardy07949352008-01-31 04:40:52 -080075 /* The direction must be ignored, so we hash everything up to the
76 * destination ports (which is a multiple of 4) and treat the last
77 * three bytes manually.
78 */
79 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
Changli Gao99f07e92010-09-21 17:49:20 +020080 return jhash2((u32 *)tuple, n, zone ^ nf_conntrack_hash_rnd ^
81 (((__force __u16)tuple->dst.u.all << 16) |
82 tuple->dst.protonum));
83}
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080084
Changli Gao99f07e92010-09-21 17:49:20 +020085static u32 __hash_bucket(u32 hash, unsigned int size)
86{
87 return ((u64)hash * size) >> 32;
88}
89
90static u32 hash_bucket(u32 hash, const struct net *net)
91{
92 return __hash_bucket(hash, net->ct.htable_size);
93}
94
95static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
96 u16 zone, unsigned int size)
97{
98 return __hash_bucket(hash_conntrack_raw(tuple, zone), size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080099}
100
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100101static inline u_int32_t hash_conntrack(const struct net *net, u16 zone,
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800102 const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800103{
Changli Gao99f07e92010-09-21 17:49:20 +0200104 return __hash_conntrack(tuple, zone, net->ct.htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800105}
106
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200107bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800108nf_ct_get_tuple(const struct sk_buff *skb,
109 unsigned int nhoff,
110 unsigned int dataoff,
111 u_int16_t l3num,
112 u_int8_t protonum,
113 struct nf_conntrack_tuple *tuple,
114 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100115 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800116{
Philip Craig443a70d2008-04-29 03:35:10 -0700117 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800118
119 tuple->src.l3num = l3num;
120 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200121 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800122
123 tuple->dst.protonum = protonum;
124 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
125
Martin Josefsson605dcad2006-11-29 02:35:06 +0100126 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800127}
Patrick McHardy13b18332006-12-02 22:11:25 -0800128EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800129
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200130bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
131 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700132{
133 struct nf_conntrack_l3proto *l3proto;
134 struct nf_conntrack_l4proto *l4proto;
135 unsigned int protoff;
136 u_int8_t protonum;
137 int ret;
138
139 rcu_read_lock();
140
141 l3proto = __nf_ct_l3proto_find(l3num);
142 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
143 if (ret != NF_ACCEPT) {
144 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200145 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700146 }
147
148 l4proto = __nf_ct_l4proto_find(l3num, protonum);
149
150 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
151 l3proto, l4proto);
152
153 rcu_read_unlock();
154 return ret;
155}
156EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
157
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200158bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800159nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
160 const struct nf_conntrack_tuple *orig,
161 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100162 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800163{
Philip Craig443a70d2008-04-29 03:35:10 -0700164 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165
166 inverse->src.l3num = orig->src.l3num;
167 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200168 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800169
170 inverse->dst.dir = !orig->dst.dir;
171
172 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100173 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800174}
Patrick McHardy13b18332006-12-02 22:11:25 -0800175EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800176
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800177static void
178clean_from_lists(struct nf_conn *ct)
179{
Patrick McHardy0d537782007-07-07 22:39:38 -0700180 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100181 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
182 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800183
184 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800185 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800186}
187
188static void
189destroy_conntrack(struct nf_conntrack *nfct)
190{
191 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200192 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100193 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800194
Patrick McHardy0d537782007-07-07 22:39:38 -0700195 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800196 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
197 NF_CT_ASSERT(!timer_pending(&ct->timeout));
198
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800199 /* To make sure we don't get any weird locking issues here:
200 * destroy_conntrack() MUST NOT be called with a write lock
201 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800202 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200203 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100204 if (l4proto && l4proto->destroy)
205 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800206
Patrick McHardy982d9a92007-02-12 11:14:11 -0800207 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800208
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800209 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800210 /* Expectations will have been removed in clean_from_lists,
211 * except TFTP can create an expectation on the first packet,
212 * before connection is in the list, so we need to clean here,
213 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800214 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800215
216 /* We overload first tuple to link into unconfirmed list. */
217 if (!nf_ct_is_confirmed(ct)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100218 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
219 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800220 }
221
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200222 NF_CT_STAT_INC(net, delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800223 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800224
225 if (ct->master)
226 nf_ct_put(ct->master);
227
Patrick McHardy0d537782007-07-07 22:39:38 -0700228 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800229 nf_conntrack_free(ct);
230}
231
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200232void nf_ct_delete_from_lists(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800233{
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200234 struct net *net = nf_ct_net(ct);
Patrick McHardy5397e972007-05-19 14:23:52 -0700235
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200236 nf_ct_helper_destroy(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800237 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800238 /* Inside lock so preempt is disabled on module removal path.
239 * Otherwise we can get spurious warnings. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200240 NF_CT_STAT_INC(net, delete_list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800241 clean_from_lists(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800242 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200243}
244EXPORT_SYMBOL_GPL(nf_ct_delete_from_lists);
245
246static void death_by_event(unsigned long ul_conntrack)
247{
248 struct nf_conn *ct = (void *)ul_conntrack;
249 struct net *net = nf_ct_net(ct);
250
251 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
252 /* bad luck, let's retry again */
253 ct->timeout.expires = jiffies +
254 (random32() % net->ct.sysctl_events_retry_timeout);
255 add_timer(&ct->timeout);
256 return;
257 }
258 /* we've got the event delivered, now it's dying */
259 set_bit(IPS_DYING_BIT, &ct->status);
260 spin_lock(&nf_conntrack_lock);
261 hlist_nulls_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
262 spin_unlock(&nf_conntrack_lock);
263 nf_ct_put(ct);
264}
265
266void nf_ct_insert_dying_list(struct nf_conn *ct)
267{
268 struct net *net = nf_ct_net(ct);
269
270 /* add this conntrack to the dying list */
271 spin_lock_bh(&nf_conntrack_lock);
272 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
273 &net->ct.dying);
274 spin_unlock_bh(&nf_conntrack_lock);
275 /* set a new timer to retry event delivery */
276 setup_timer(&ct->timeout, death_by_event, (unsigned long)ct);
277 ct->timeout.expires = jiffies +
278 (random32() % net->ct.sysctl_events_retry_timeout);
279 add_timer(&ct->timeout);
280}
281EXPORT_SYMBOL_GPL(nf_ct_insert_dying_list);
282
283static void death_by_timeout(unsigned long ul_conntrack)
284{
285 struct nf_conn *ct = (void *)ul_conntrack;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100286 struct nf_conn_tstamp *tstamp;
287
288 tstamp = nf_conn_tstamp_find(ct);
289 if (tstamp && tstamp->stop == 0)
290 tstamp->stop = ktime_to_ns(ktime_get_real());
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200291
292 if (!test_bit(IPS_DYING_BIT, &ct->status) &&
293 unlikely(nf_conntrack_event(IPCT_DESTROY, ct) < 0)) {
294 /* destroy event was not delivered */
295 nf_ct_delete_from_lists(ct);
296 nf_ct_insert_dying_list(ct);
297 return;
298 }
299 set_bit(IPS_DYING_BIT, &ct->status);
300 nf_ct_delete_from_lists(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800301 nf_ct_put(ct);
302}
303
Eric Dumazetea781f12009-03-25 21:05:46 +0100304/*
305 * Warning :
306 * - Caller must take a reference on returned object
307 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
308 * OR
309 * - Caller must lock nf_conntrack_lock before calling this function
310 */
Changli Gao99f07e92010-09-21 17:49:20 +0200311static struct nf_conntrack_tuple_hash *
312____nf_conntrack_find(struct net *net, u16 zone,
313 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800314{
315 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100316 struct hlist_nulls_node *n;
Changli Gao99f07e92010-09-21 17:49:20 +0200317 unsigned int bucket = hash_bucket(hash, net);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800318
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800319 /* Disable BHs the entire time since we normally need to disable them
320 * at least once for the stats anyway.
321 */
322 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100323begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200324 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[bucket], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100325 if (nf_ct_tuple_equal(tuple, &h->tuple) &&
326 nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200327 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800328 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800329 return h;
330 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200331 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800332 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100333 /*
334 * if the nulls value we got at the end of this lookup is
335 * not the expected one, we must restart lookup.
336 * We probably met an item that was moved to another chain.
337 */
Changli Gao99f07e92010-09-21 17:49:20 +0200338 if (get_nulls_value(n) != bucket) {
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200339 NF_CT_STAT_INC(net, search_restart);
Eric Dumazetea781f12009-03-25 21:05:46 +0100340 goto begin;
Jesper Dangaard Broueraf740b22010-04-23 12:34:56 +0200341 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800342 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800343
344 return NULL;
345}
Changli Gao99f07e92010-09-21 17:49:20 +0200346
347struct nf_conntrack_tuple_hash *
348__nf_conntrack_find(struct net *net, u16 zone,
349 const struct nf_conntrack_tuple *tuple)
350{
351 return ____nf_conntrack_find(net, zone, tuple,
352 hash_conntrack_raw(tuple, zone));
353}
Patrick McHardy13b18332006-12-02 22:11:25 -0800354EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800355
356/* Find a connection corresponding to a tuple. */
Changli Gao99f07e92010-09-21 17:49:20 +0200357static struct nf_conntrack_tuple_hash *
358__nf_conntrack_find_get(struct net *net, u16 zone,
359 const struct nf_conntrack_tuple *tuple, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800360{
361 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800362 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800363
Patrick McHardy76507f62008-01-31 04:38:38 -0800364 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100365begin:
Changli Gao99f07e92010-09-21 17:49:20 +0200366 h = ____nf_conntrack_find(net, zone, tuple, hash);
Patrick McHardy76507f62008-01-31 04:38:38 -0800367 if (h) {
368 ct = nf_ct_tuplehash_to_ctrack(h);
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200369 if (unlikely(nf_ct_is_dying(ct) ||
370 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800371 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100372 else {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100373 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple) ||
374 nf_ct_zone(ct) != zone)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100375 nf_ct_put(ct);
376 goto begin;
377 }
378 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800379 }
380 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800381
382 return h;
383}
Changli Gao99f07e92010-09-21 17:49:20 +0200384
385struct nf_conntrack_tuple_hash *
386nf_conntrack_find_get(struct net *net, u16 zone,
387 const struct nf_conntrack_tuple *tuple)
388{
389 return __nf_conntrack_find_get(net, zone, tuple,
390 hash_conntrack_raw(tuple, zone));
391}
Patrick McHardy13b18332006-12-02 22:11:25 -0800392EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800393
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800394static void __nf_conntrack_hash_insert(struct nf_conn *ct,
395 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800396 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800397{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200398 struct net *net = nf_ct_net(ct);
399
Eric Dumazetea781f12009-03-25 21:05:46 +0100400 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200401 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100402 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200403 &net->ct.hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800404}
405
406void nf_conntrack_hash_insert(struct nf_conn *ct)
407{
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800408 struct net *net = nf_ct_net(ct);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800409 unsigned int hash, repl_hash;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100410 u16 zone;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800411
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100412 zone = nf_ct_zone(ct);
413 hash = hash_conntrack(net, zone, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
414 repl_hash = hash_conntrack(net, zone, &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800415
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800416 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800417}
Patrick McHardy13b18332006-12-02 22:11:25 -0800418EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800419
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800420/* Confirm a connection given skb; places it in hash table */
421int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700422__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800423{
424 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700425 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800426 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700427 struct nf_conn_help *help;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100428 struct nf_conn_tstamp *tstamp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100429 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800430 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200431 struct net *net;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100432 u16 zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800433
Herbert Xu3db05fe2007-10-15 00:53:15 -0700434 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200435 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800436
437 /* ipt_REJECT uses nf_conntrack_attach to attach related
438 ICMP/TCP RST packets in other direction. Actual packet
439 which created connection will be IP_CT_NEW or for an
440 expected connection, IP_CT_RELATED. */
441 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
442 return NF_ACCEPT;
443
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100444 zone = nf_ct_zone(ct);
Changli Gao99f07e92010-09-21 17:49:20 +0200445 /* reuse the hash saved before */
446 hash = *(unsigned long *)&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev;
447 hash = hash_bucket(hash, net);
448 repl_hash = hash_conntrack(net, zone,
449 &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800450
451 /* We're not in hash table, and we refuse to set up related
452 connections for unconfirmed conns. But packet copies and
453 REJECT will give spurious warnings here. */
454 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
455
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300456 /* No external references means no one else could have
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800457 confirmed us. */
458 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700459 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800460
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800461 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800462
Joerg Marxfc350772010-05-20 15:55:30 +0200463 /* We have to check the DYING flag inside the lock to prevent
464 a race against nf_ct_get_next_corpse() possibly called from
465 user context, else we insert an already 'dead' hash, blocking
466 further use of that particular connection -JM */
467
468 if (unlikely(nf_ct_is_dying(ct))) {
469 spin_unlock_bh(&nf_conntrack_lock);
470 return NF_ACCEPT;
471 }
472
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800473 /* See if there's one in the list already, including reverse:
474 NAT could have grabbed it without realizing, since we're
475 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100476 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700477 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100478 &h->tuple) &&
479 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700480 goto out;
Eric Dumazetea781f12009-03-25 21:05:46 +0100481 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700482 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100483 &h->tuple) &&
484 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700485 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800486
Patrick McHardydf0933d2006-09-20 11:57:53 -0700487 /* Remove from unconfirmed list */
Eric Dumazetea781f12009-03-25 21:05:46 +0100488 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700489
Patrick McHardydf0933d2006-09-20 11:57:53 -0700490 /* Timer relative to confirmation time, not original
491 setting time, otherwise we'd get timer wrap in
492 weird delay cases. */
493 ct->timeout.expires += jiffies;
494 add_timer(&ct->timeout);
495 atomic_inc(&ct->ct_general.use);
Changli Gao45eec342011-01-18 15:08:13 +0100496 ct->status |= IPS_CONFIRMED;
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200497
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100498 /* set conntrack timestamp, if enabled. */
499 tstamp = nf_conn_tstamp_find(ct);
500 if (tstamp) {
501 if (skb->tstamp.tv64 == 0)
502 __net_timestamp((struct sk_buff *)skb);
503
504 tstamp->start = ktime_to_ns(skb->tstamp);
505 }
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200506 /* Since the lookup is lockless, hash insertion must be done after
507 * starting the timer and setting the CONFIRMED bit. The RCU barriers
508 * guarantee that no other CPU can find the conntrack before the above
509 * stores are visible.
510 */
511 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200512 NF_CT_STAT_INC(net, insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800513 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200514
Patrick McHardydf0933d2006-09-20 11:57:53 -0700515 help = nfct_help(ct);
516 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200517 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200518
Patrick McHardydf0933d2006-09-20 11:57:53 -0700519 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200520 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700521 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800522
Patrick McHardydf0933d2006-09-20 11:57:53 -0700523out:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200524 NF_CT_STAT_INC(net, insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800525 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800526 return NF_DROP;
527}
Patrick McHardy13b18332006-12-02 22:11:25 -0800528EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800529
530/* Returns true if a connection correspondings to the tuple (required
531 for NAT). */
532int
533nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
534 const struct nf_conn *ignored_conntrack)
535{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200536 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800537 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100538 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100539 struct nf_conn *ct;
540 u16 zone = nf_ct_zone(ignored_conntrack);
541 unsigned int hash = hash_conntrack(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800542
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800543 /* Disable BHs the entire time since we need to disable them at
544 * least once for the stats anyway.
545 */
546 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100547 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100548 ct = nf_ct_tuplehash_to_ctrack(h);
549 if (ct != ignored_conntrack &&
550 nf_ct_tuple_equal(tuple, &h->tuple) &&
551 nf_ct_zone(ct) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200552 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800553 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800554 return 1;
555 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200556 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800557 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800558 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800559
Patrick McHardyba419af2008-01-31 04:39:23 -0800560 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800561}
Patrick McHardy13b18332006-12-02 22:11:25 -0800562EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800563
Patrick McHardy7ae77302007-07-07 22:37:38 -0700564#define NF_CT_EVICTION_RANGE 8
565
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800566/* There's a small race here where we may free a just-assured
567 connection. Too bad: we're in trouble anyway. */
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200568static noinline int early_drop(struct net *net, unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800569{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700570 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800571 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700572 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100573 struct hlist_nulls_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700574 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800575 int dropped = 0;
576
Patrick McHardy76507f62008-01-31 04:38:38 -0800577 rcu_read_lock();
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800578 for (i = 0; i < net->ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100579 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
580 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700581 tmp = nf_ct_tuplehash_to_ctrack(h);
582 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
583 ct = tmp;
584 cnt++;
585 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800586
Changli Gao5ae27aa22009-11-05 14:51:31 +0100587 if (ct != NULL) {
588 if (likely(!nf_ct_is_dying(ct) &&
589 atomic_inc_not_zero(&ct->ct_general.use)))
590 break;
591 else
592 ct = NULL;
593 }
594
595 if (cnt >= NF_CT_EVICTION_RANGE)
Patrick McHardy7ae77302007-07-07 22:37:38 -0700596 break;
Changli Gao5ae27aa22009-11-05 14:51:31 +0100597
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800598 hash = (hash + 1) % net->ct.htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800599 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800600 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800601
602 if (!ct)
603 return dropped;
604
605 if (del_timer(&ct->timeout)) {
606 death_by_timeout((unsigned long)ct);
607 dropped = 1;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200608 NF_CT_STAT_INC_ATOMIC(net, early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800609 }
610 nf_ct_put(ct);
611 return dropped;
612}
613
Changli Gaof682cef2011-01-05 04:23:23 +0000614void init_nf_conntrack_hash_rnd(void)
615{
616 unsigned int rand;
617
618 /*
619 * Why not initialize nf_conntrack_rnd in a "init()" function ?
620 * Because there isn't enough entropy when system initializing,
621 * and we initialize it as late as possible.
622 */
623 do {
624 get_random_bytes(&rand, sizeof(rand));
625 } while (!rand);
626 cmpxchg(&nf_conntrack_hash_rnd, 0, rand);
627}
628
Changli Gao99f07e92010-09-21 17:49:20 +0200629static struct nf_conn *
630__nf_conntrack_alloc(struct net *net, u16 zone,
631 const struct nf_conntrack_tuple *orig,
632 const struct nf_conntrack_tuple *repl,
633 gfp_t gfp, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800634{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000635 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800636
Changli Gaob2390962010-09-16 19:55:03 +0200637 if (unlikely(!nf_conntrack_hash_rnd)) {
Changli Gaof682cef2011-01-05 04:23:23 +0000638 init_nf_conntrack_hash_rnd();
Changli Gao99f07e92010-09-21 17:49:20 +0200639 /* recompute the hash as nf_conntrack_hash_rnd is initialized */
640 hash = hash_conntrack_raw(orig, zone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800641 }
642
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700643 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200644 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700645
Patrick McHardy76eb9462008-01-31 04:41:44 -0800646 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200647 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Changli Gao99f07e92010-09-21 17:49:20 +0200648 if (!early_drop(net, hash_bucket(hash, net))) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200649 atomic_dec(&net->ct.count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800650 if (net_ratelimit())
651 printk(KERN_WARNING
652 "nf_conntrack: table full, dropping"
653 " packet.\n");
654 return ERR_PTR(-ENOMEM);
655 }
656 }
657
Eric Dumazet941297f2009-07-16 14:03:40 +0200658 /*
659 * Do not use kmem_cache_zalloc(), as this cache uses
660 * SLAB_DESTROY_BY_RCU.
661 */
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800662 ct = kmem_cache_alloc(net->ct.nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800663 if (ct == NULL) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200664 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700665 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800666 }
Eric Dumazet941297f2009-07-16 14:03:40 +0200667 /*
668 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
669 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
670 */
671 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
Changli Gaoe5fc9e72010-11-12 17:33:17 +0100672 offsetof(struct nf_conn, proto) -
673 offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
Patrick McHardy440f0d52009-06-10 14:32:47 +0200674 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800675 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
Eric Dumazet941297f2009-07-16 14:03:40 +0200676 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800677 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Changli Gao99f07e92010-09-21 17:49:20 +0200678 /* save hash for reusing when confirming */
679 *(unsigned long *)(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev) = hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800680 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800681 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Eric Dumazetc2d9ba92010-06-01 06:51:19 +0000682 write_pnet(&ct->ct_net, net);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100683#ifdef CONFIG_NF_CONNTRACK_ZONES
684 if (zone) {
685 struct nf_conntrack_zone *nf_ct_zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800686
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100687 nf_ct_zone = nf_ct_ext_add(ct, NF_CT_EXT_ZONE, GFP_ATOMIC);
688 if (!nf_ct_zone)
689 goto out_free;
690 nf_ct_zone->id = zone;
691 }
692#endif
Eric Dumazet941297f2009-07-16 14:03:40 +0200693 /*
694 * changes to lookup keys must be done before setting refcnt to 1
695 */
696 smp_wmb();
697 atomic_set(&ct->ct_general.use, 1);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800698 return ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100699
700#ifdef CONFIG_NF_CONNTRACK_ZONES
701out_free:
702 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
703 return ERR_PTR(-ENOMEM);
704#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800705}
Changli Gao99f07e92010-09-21 17:49:20 +0200706
707struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
708 const struct nf_conntrack_tuple *orig,
709 const struct nf_conntrack_tuple *repl,
710 gfp_t gfp)
711{
712 return __nf_conntrack_alloc(net, zone, orig, repl, gfp, 0);
713}
Patrick McHardy13b18332006-12-02 22:11:25 -0800714EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800715
Patrick McHardyc88130b2008-01-31 04:42:11 -0800716void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800717{
Eric Dumazet1d452092009-03-24 14:26:50 +0100718 struct net *net = nf_ct_net(ct);
719
Patrick McHardyceeff752008-06-11 17:51:10 -0700720 nf_ct_ext_destroy(ct);
Eric Dumazet1d452092009-03-24 14:26:50 +0100721 atomic_dec(&net->ct.count);
Eric Dumazetea781f12009-03-25 21:05:46 +0100722 nf_ct_ext_free(ct);
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800723 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800724}
Patrick McHardy13b18332006-12-02 22:11:25 -0800725EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800726
727/* Allocate a new conntrack: we return -ENOMEM if classification
728 failed due to stress. Otherwise it really is unclassifiable. */
729static struct nf_conntrack_tuple_hash *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100730init_conntrack(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200731 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800732 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100733 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800734 struct sk_buff *skb,
Changli Gao99f07e92010-09-21 17:49:20 +0200735 unsigned int dataoff, u32 hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800736{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800737 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700738 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800739 struct nf_conntrack_tuple repl_tuple;
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100740 struct nf_conntrack_ecache *ecache;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800741 struct nf_conntrack_expect *exp;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100742 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800743
Martin Josefsson605dcad2006-11-29 02:35:06 +0100744 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700745 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800746 return NULL;
747 }
748
Changli Gao99f07e92010-09-21 17:49:20 +0200749 ct = __nf_conntrack_alloc(net, zone, tuple, &repl_tuple, GFP_ATOMIC,
750 hash);
Joe Perches0a9ee812011-08-29 14:17:25 -0700751 if (IS_ERR(ct))
Patrick McHardyc88130b2008-01-31 04:42:11 -0800752 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800753
Patrick McHardyc88130b2008-01-31 04:42:11 -0800754 if (!l4proto->new(ct, skb, dataoff)) {
755 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700756 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800757 return NULL;
758 }
759
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700760 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100761 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100762
763 ecache = tmpl ? nf_ct_ecache_find(tmpl) : NULL;
764 nf_ct_ecache_ext_add(ct, ecache ? ecache->ctmask : 0,
765 ecache ? ecache->expmask : 0,
766 GFP_ATOMIC);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700767
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800768 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100769 exp = nf_ct_find_expectation(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800770 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700771 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800772 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800773 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800774 __set_bit(IPS_EXPECTED_BIT, &ct->status);
775 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700776 if (exp->helper) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800777 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700778 if (help)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000779 RCU_INIT_POINTER(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700780 }
781
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800782#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800783 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800784#endif
James Morris7c9728c2006-06-09 00:31:46 -0700785#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800786 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700787#endif
Patrick McHardyc88130b2008-01-31 04:42:11 -0800788 nf_conntrack_get(&ct->master->ct_general);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200789 NF_CT_STAT_INC(net, expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800790 } else {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100791 __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200792 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800793 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800794
795 /* Overload tuple linked list to put us in unconfirmed list. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100796 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan63c9a262008-10-08 11:35:04 +0200797 &net->ct.unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800798
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800799 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800800
801 if (exp) {
802 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800803 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700804 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800805 }
806
Patrick McHardyc88130b2008-01-31 04:42:11 -0800807 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800808}
809
810/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
811static inline struct nf_conn *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100812resolve_normal_ct(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyana702a652008-10-08 11:35:04 +0200813 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800814 unsigned int dataoff,
815 u_int16_t l3num,
816 u_int8_t protonum,
817 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100818 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800819 int *set_reply,
820 enum ip_conntrack_info *ctinfo)
821{
822 struct nf_conntrack_tuple tuple;
823 struct nf_conntrack_tuple_hash *h;
824 struct nf_conn *ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100825 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Changli Gao99f07e92010-09-21 17:49:20 +0200826 u32 hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800827
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300828 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800829 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100830 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700831 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800832 return NULL;
833 }
834
835 /* look for tuple match */
Changli Gao99f07e92010-09-21 17:49:20 +0200836 hash = hash_conntrack_raw(&tuple, zone);
837 h = __nf_conntrack_find_get(net, zone, &tuple, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800838 if (!h) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100839 h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto,
Changli Gao99f07e92010-09-21 17:49:20 +0200840 skb, dataoff, hash);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800841 if (!h)
842 return NULL;
843 if (IS_ERR(h))
844 return (void *)h;
845 }
846 ct = nf_ct_tuplehash_to_ctrack(h);
847
848 /* It exists; we have (non-exclusive) reference. */
849 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
Eric Dumazetfb048832011-05-19 15:44:27 +0200850 *ctinfo = IP_CT_ESTABLISHED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800851 /* Please set reply bit if this packet OK */
852 *set_reply = 1;
853 } else {
854 /* Once we've had two way comms, always ESTABLISHED. */
855 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700856 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800857 *ctinfo = IP_CT_ESTABLISHED;
858 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700859 pr_debug("nf_conntrack_in: related packet for %p\n",
860 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800861 *ctinfo = IP_CT_RELATED;
862 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700863 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800864 *ctinfo = IP_CT_NEW;
865 }
866 *set_reply = 0;
867 }
868 skb->nfct = &ct->ct_general;
869 skb->nfctinfo = *ctinfo;
870 return ct;
871}
872
873unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +0200874nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
875 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800876{
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100877 struct nf_conn *ct, *tmpl = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800878 enum ip_conntrack_info ctinfo;
879 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100880 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800881 unsigned int dataoff;
882 u_int8_t protonum;
883 int set_reply = 0;
884 int ret;
885
Herbert Xu3db05fe2007-10-15 00:53:15 -0700886 if (skb->nfct) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100887 /* Previously seen (loopback or untracked)? Ignore. */
888 tmpl = (struct nf_conn *)skb->nfct;
889 if (!nf_ct_is_template(tmpl)) {
890 NF_CT_STAT_INC_ATOMIC(net, ignore);
891 return NF_ACCEPT;
892 }
893 skb->nfct = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800894 }
895
Patrick McHardy923f4902007-02-12 11:12:57 -0800896 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200897 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700898 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700899 &dataoff, &protonum);
900 if (ret <= 0) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300901 pr_debug("not prepared to track yet or error occurred\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200902 NF_CT_STAT_INC_ATOMIC(net, error);
903 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100904 ret = -ret;
905 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800906 }
907
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200908 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800909
910 /* It may be an special packet, error, unclean...
911 * inverse of the return code tells to the netfilter
912 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200913 if (l4proto->error != NULL) {
Patrick McHardy8fea97e2010-02-15 17:45:08 +0100914 ret = l4proto->error(net, tmpl, skb, dataoff, &ctinfo,
915 pf, hooknum);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200916 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200917 NF_CT_STAT_INC_ATOMIC(net, error);
918 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100919 ret = -ret;
920 goto out;
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200921 }
Pablo Neira Ayuso88ed01d2011-06-02 15:08:45 +0200922 /* ICMP[v6] protocol trackers may assign one conntrack. */
923 if (skb->nfct)
924 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800925 }
926
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100927 ct = resolve_normal_ct(net, tmpl, skb, dataoff, pf, protonum,
Alexey Dobriyana702a652008-10-08 11:35:04 +0200928 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800929 if (!ct) {
930 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200931 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100932 ret = NF_ACCEPT;
933 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800934 }
935
936 if (IS_ERR(ct)) {
937 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200938 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100939 ret = NF_DROP;
940 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800941 }
942
Herbert Xu3db05fe2007-10-15 00:53:15 -0700943 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800944
Herbert Xu3db05fe2007-10-15 00:53:15 -0700945 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
Christoph Paaschec8d5402009-03-16 15:51:29 +0100946 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800947 /* Invalid: inverse of the return code tells
948 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -0700949 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -0700950 nf_conntrack_put(skb->nfct);
951 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200952 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +0100953 if (ret == -NF_DROP)
954 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100955 ret = -ret;
956 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800957 }
958
959 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Patrick McHardy858b31332010-02-03 13:48:53 +0100960 nf_conntrack_event_cache(IPCT_REPLY, ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100961out:
Pablo Neira Ayusoc3174282011-02-09 08:08:20 +0100962 if (tmpl) {
963 /* Special case: we have to repeat this hook, assign the
964 * template again to this packet. We assume that this packet
965 * has no conntrack assigned. This is used by nf_ct_tcp. */
966 if (ret == NF_REPEAT)
967 skb->nfct = (struct nf_conntrack *)tmpl;
968 else
969 nf_ct_put(tmpl);
970 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800971
972 return ret;
973}
Patrick McHardy13b18332006-12-02 22:11:25 -0800974EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800975
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200976bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
977 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800978{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200979 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -0800980
981 rcu_read_lock();
982 ret = nf_ct_invert_tuple(inverse, orig,
983 __nf_ct_l3proto_find(orig->src.l3num),
984 __nf_ct_l4proto_find(orig->src.l3num,
985 orig->dst.protonum));
986 rcu_read_unlock();
987 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800988}
Patrick McHardy13b18332006-12-02 22:11:25 -0800989EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800990
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800991/* Alter reply tuple (maybe alter helper). This is for NAT, and is
992 implicitly racy: see __nf_conntrack_confirm */
993void nf_conntrack_alter_reply(struct nf_conn *ct,
994 const struct nf_conntrack_tuple *newreply)
995{
996 struct nf_conn_help *help = nfct_help(ct);
997
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800998 /* Should be unconfirmed, so not in hash table yet */
999 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
1000
Patrick McHardy0d537782007-07-07 22:39:38 -07001001 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +02001002 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001003
1004 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +02001005 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001006 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001007
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001008 rcu_read_lock();
Patrick McHardyb2a15a62010-02-03 14:13:03 +01001009 __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -08001010 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001011}
Patrick McHardy13b18332006-12-02 22:11:25 -08001012EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001013
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001014/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
1015void __nf_ct_refresh_acct(struct nf_conn *ct,
1016 enum ip_conntrack_info ctinfo,
1017 const struct sk_buff *skb,
1018 unsigned long extra_jiffies,
1019 int do_acct)
1020{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001021 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
1022 NF_CT_ASSERT(skb);
1023
Eric Leblond997ae832006-05-29 18:24:20 -07001024 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -08001025 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
1026 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -07001027
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001028 /* If not in hash table, timer will not be active yet */
1029 if (!nf_ct_is_confirmed(ct)) {
1030 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001031 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +01001032 unsigned long newtime = jiffies + extra_jiffies;
1033
1034 /* Only update the timeout if the new timeout is at least
1035 HZ jiffies from the old timeout. Need del_timer for race
1036 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001037 if (newtime - ct->timeout.expires >= HZ)
1038 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001039 }
1040
Patrick McHardy47d95042008-01-31 04:36:31 -08001041acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001042 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001043 struct nf_conn_counter *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +01001044
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001045 acct = nf_conn_acct_find(ct);
1046 if (acct) {
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001047 spin_lock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001048 acct[CTINFO2DIR(ctinfo)].packets++;
Changli Gao66614812010-08-02 17:56:28 +02001049 acct[CTINFO2DIR(ctinfo)].bytes += skb->len;
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001050 spin_unlock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001051 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001052 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001053}
Patrick McHardy13b18332006-12-02 22:11:25 -08001054EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001055
David S. Miller4c889492008-07-14 20:22:38 -07001056bool __nf_ct_kill_acct(struct nf_conn *ct,
1057 enum ip_conntrack_info ctinfo,
1058 const struct sk_buff *skb,
1059 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -07001060{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001061 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001062 struct nf_conn_counter *acct;
1063
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001064 acct = nf_conn_acct_find(ct);
1065 if (acct) {
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001066 spin_lock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001067 acct[CTINFO2DIR(ctinfo)].packets++;
1068 acct[CTINFO2DIR(ctinfo)].bytes +=
1069 skb->len - skb_network_offset(skb);
Patrick McHardy65cb9fd2009-06-13 12:21:49 +02001070 spin_unlock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001071 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001072 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001073
David S. Miller4c889492008-07-14 20:22:38 -07001074 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -07001075 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -07001076 return true;
1077 }
1078 return false;
Patrick McHardy51091762008-06-09 15:59:06 -07001079}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -07001080EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -07001081
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001082#ifdef CONFIG_NF_CONNTRACK_ZONES
1083static struct nf_ct_ext_type nf_ct_zone_extend __read_mostly = {
1084 .len = sizeof(struct nf_conntrack_zone),
1085 .align = __alignof__(struct nf_conntrack_zone),
1086 .id = NF_CT_EXT_ZONE,
1087};
1088#endif
1089
Igor Maravićc0cd1152011-12-12 02:58:24 +00001090#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001091
1092#include <linux/netfilter/nfnetlink.h>
1093#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -08001094#include <linux/mutex.h>
1095
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001096/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
1097 * in ip_conntrack_core, since we don't want the protocols to autoload
1098 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -07001099int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001100 const struct nf_conntrack_tuple *tuple)
1101{
Patrick McHardy77236b62007-12-17 22:29:45 -08001102 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
1103 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001104 return 0;
1105
Patrick McHardydf6fb862007-09-28 14:37:03 -07001106nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001107 return -1;
1108}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001109EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001110
Patrick McHardyf73e9242007-09-28 14:39:55 -07001111const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
1112 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
1113 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001114};
Patrick McHardyf73e9242007-09-28 14:39:55 -07001115EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001116
Patrick McHardyfdf70832007-09-28 14:37:41 -07001117int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001118 struct nf_conntrack_tuple *t)
1119{
Patrick McHardydf6fb862007-09-28 14:37:03 -07001120 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001121 return -EINVAL;
1122
Patrick McHardy77236b62007-12-17 22:29:45 -08001123 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
1124 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001125
1126 return 0;
1127}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001128EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +01001129
1130int nf_ct_port_nlattr_tuple_size(void)
1131{
1132 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1133}
1134EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001135#endif
1136
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001137/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardyb334aad2008-01-14 23:48:57 -08001138static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001139{
1140 struct nf_conn *ct;
1141 enum ip_conntrack_info ctinfo;
1142
1143 /* This ICMP is in reverse direction to the packet which caused it */
1144 ct = nf_ct_get(skb, &ctinfo);
1145 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
Eric Dumazetfb048832011-05-19 15:44:27 +02001146 ctinfo = IP_CT_RELATED_REPLY;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001147 else
1148 ctinfo = IP_CT_RELATED;
1149
1150 /* Attach to new skbuff, and increment count */
1151 nskb->nfct = &ct->ct_general;
1152 nskb->nfctinfo = ctinfo;
1153 nf_conntrack_get(nskb->nfct);
1154}
1155
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001156/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001157static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001158get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001159 void *data, unsigned int *bucket)
1160{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001161 struct nf_conntrack_tuple_hash *h;
1162 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +01001163 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001164
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001165 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001166 for (; *bucket < net->ct.htable_size; (*bucket)++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001167 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001168 ct = nf_ct_tuplehash_to_ctrack(h);
1169 if (iter(ct, data))
1170 goto found;
1171 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001172 }
Eric Dumazetea781f12009-03-25 21:05:46 +01001173 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001174 ct = nf_ct_tuplehash_to_ctrack(h);
1175 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -08001176 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001177 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001178 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001179 return NULL;
1180found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001181 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001182 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001183 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001184}
1185
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001186void nf_ct_iterate_cleanup(struct net *net,
1187 int (*iter)(struct nf_conn *i, void *data),
1188 void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001189{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001190 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001191 unsigned int bucket = 0;
1192
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001193 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001194 /* Time to push up daises... */
1195 if (del_timer(&ct->timeout))
1196 death_by_timeout((unsigned long)ct);
1197 /* ... else the timer will get him soon. */
1198
1199 nf_ct_put(ct);
1200 }
1201}
Patrick McHardy13b18332006-12-02 22:11:25 -08001202EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001203
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001204struct __nf_ct_flush_report {
1205 u32 pid;
1206 int report;
1207};
1208
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001209static int kill_report(struct nf_conn *i, void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001210{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001211 struct __nf_ct_flush_report *fr = (struct __nf_ct_flush_report *)data;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001212 struct nf_conn_tstamp *tstamp;
1213
1214 tstamp = nf_conn_tstamp_find(i);
1215 if (tstamp && tstamp->stop == 0)
1216 tstamp->stop = ktime_to_ns(ktime_get_real());
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001217
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001218 /* If we fail to deliver the event, death_by_timeout() will retry */
1219 if (nf_conntrack_event_report(IPCT_DESTROY, i,
1220 fr->pid, fr->report) < 0)
1221 return 1;
1222
1223 /* Avoid the delivery of the destroy event in death_by_timeout(). */
1224 set_bit(IPS_DYING_BIT, &i->status);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001225 return 1;
1226}
1227
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001228static int kill_all(struct nf_conn *i, void *data)
1229{
1230 return 1;
1231}
1232
Patrick McHardyd862a662011-01-14 15:45:56 +01001233void nf_ct_free_hashtable(void *hash, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001234{
Patrick McHardyd862a662011-01-14 15:45:56 +01001235 if (is_vmalloc_addr(hash))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001236 vfree(hash);
1237 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001238 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001239 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001240}
Patrick McHardyac565e52007-07-07 22:30:08 -07001241EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001242
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001243void nf_conntrack_flush_report(struct net *net, u32 pid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001244{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001245 struct __nf_ct_flush_report fr = {
1246 .pid = pid,
1247 .report = report,
1248 };
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001249 nf_ct_iterate_cleanup(net, kill_report, &fr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001250}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001251EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001252
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001253static void nf_ct_release_dying_list(struct net *net)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001254{
1255 struct nf_conntrack_tuple_hash *h;
1256 struct nf_conn *ct;
1257 struct hlist_nulls_node *n;
1258
1259 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001260 hlist_nulls_for_each_entry(h, n, &net->ct.dying, hnnode) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001261 ct = nf_ct_tuplehash_to_ctrack(h);
1262 /* never fails to remove them, no listeners at this point */
1263 nf_ct_kill(ct);
1264 }
1265 spin_unlock_bh(&nf_conntrack_lock);
1266}
1267
Eric Dumazetb3c51632010-06-09 14:43:38 +02001268static int untrack_refs(void)
1269{
1270 int cnt = 0, cpu;
1271
1272 for_each_possible_cpu(cpu) {
1273 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
1274
1275 cnt += atomic_read(&ct->ct_general.use) - 1;
1276 }
1277 return cnt;
1278}
1279
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001280static void nf_conntrack_cleanup_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001281{
Eric Dumazetb3c51632010-06-09 14:43:38 +02001282 while (untrack_refs() > 0)
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001283 schedule();
1284
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001285 nf_conntrack_helper_fini();
1286 nf_conntrack_proto_fini();
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001287#ifdef CONFIG_NF_CONNTRACK_ZONES
1288 nf_ct_extend_unregister(&nf_ct_zone_extend);
1289#endif
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001290}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001291
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001292static void nf_conntrack_cleanup_net(struct net *net)
1293{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001294 i_see_dead_people:
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001295 nf_ct_iterate_cleanup(net, kill_all, NULL);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001296 nf_ct_release_dying_list(net);
Alexey Dobriyan49ac8712008-10-08 11:35:03 +02001297 if (atomic_read(&net->ct.count) != 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001298 schedule();
1299 goto i_see_dead_people;
1300 }
1301
Patrick McHardyd862a662011-01-14 15:45:56 +01001302 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001303 nf_conntrack_ecache_fini(net);
Stephen Hemmingerfe8f6612011-03-14 19:20:44 +01001304 nf_conntrack_tstamp_fini(net);
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001305 nf_conntrack_acct_fini(net);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001306 nf_conntrack_expect_fini(net);
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001307 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1308 kfree(net->ct.slabname);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001309 free_percpu(net->ct.stat);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001310}
1311
1312/* Mishearing the voices in his head, our hero wonders how he's
1313 supposed to kill the mall. */
1314void nf_conntrack_cleanup(struct net *net)
1315{
1316 if (net_eq(net, &init_net))
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001317 RCU_INIT_POINTER(ip_ct_attach, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001318
1319 /* This makes sure all current packets have passed through
1320 netfilter framework. Roll on, two-stage module
1321 delete... */
1322 synchronize_net();
1323
1324 nf_conntrack_cleanup_net(net);
1325
1326 if (net_eq(net, &init_net)) {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001327 RCU_INIT_POINTER(nf_ct_destroy, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001328 nf_conntrack_cleanup_init_net();
1329 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001330}
1331
Patrick McHardyd862a662011-01-14 15:45:56 +01001332void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001333{
Eric Dumazetea781f12009-03-25 21:05:46 +01001334 struct hlist_nulls_head *hash;
1335 unsigned int nr_slots, i;
1336 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001337
Eric Dumazetea781f12009-03-25 21:05:46 +01001338 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1339 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1340 sz = nr_slots * sizeof(struct hlist_nulls_head);
1341 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1342 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001343 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001344 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazet6b1686a2010-10-28 12:34:21 +02001345 hash = __vmalloc(sz, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
1346 PAGE_KERNEL);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001347 }
1348
Eric Dumazetea781f12009-03-25 21:05:46 +01001349 if (hash && nulls)
1350 for (i = 0; i < nr_slots; i++)
1351 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001352
1353 return hash;
1354}
Patrick McHardyac565e52007-07-07 22:30:08 -07001355EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001356
Patrick McHardyfae718d2007-12-24 21:09:10 -08001357int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001358{
Patrick McHardyd862a662011-01-14 15:45:56 +01001359 int i, bucket;
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001360 unsigned int hashsize, old_size;
Eric Dumazetea781f12009-03-25 21:05:46 +01001361 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001362 struct nf_conntrack_tuple_hash *h;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001363 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001364
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001365 if (current->nsproxy->net_ns != &init_net)
1366 return -EOPNOTSUPP;
1367
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001368 /* On boot, we can set this without any fancy locking. */
1369 if (!nf_conntrack_htable_size)
1370 return param_set_uint(val, kp);
1371
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001372 hashsize = simple_strtoul(val, NULL, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001373 if (!hashsize)
1374 return -EINVAL;
1375
Patrick McHardyd862a662011-01-14 15:45:56 +01001376 hash = nf_ct_alloc_hashtable(&hashsize, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001377 if (!hash)
1378 return -ENOMEM;
1379
Patrick McHardy76507f62008-01-31 04:38:38 -08001380 /* Lookups in the old hash might happen in parallel, which means we
1381 * might get false negatives during connection lookup. New connections
1382 * created because of a false negative won't make it into the hash
1383 * though since that required taking the lock.
1384 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001385 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001386 for (i = 0; i < init_net.ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001387 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1388 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1389 struct nf_conntrack_tuple_hash, hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001390 ct = nf_ct_tuplehash_to_ctrack(h);
Eric Dumazetea781f12009-03-25 21:05:46 +01001391 hlist_nulls_del_rcu(&h->hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001392 bucket = __hash_conntrack(&h->tuple, nf_ct_zone(ct),
Changli Gao99f07e92010-09-21 17:49:20 +02001393 hashsize);
Eric Dumazetea781f12009-03-25 21:05:46 +01001394 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001395 }
1396 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001397 old_size = init_net.ct.htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001398 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001399
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001400 init_net.ct.htable_size = nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001401 init_net.ct.hash = hash;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001402 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001403
Patrick McHardyd862a662011-01-14 15:45:56 +01001404 nf_ct_free_hashtable(old_hash, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001405 return 0;
1406}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001407EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001408
Patrick McHardyfae718d2007-12-24 21:09:10 -08001409module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001410 &nf_conntrack_htable_size, 0600);
1411
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001412void nf_ct_untracked_status_or(unsigned long bits)
1413{
Eric Dumazetb3c51632010-06-09 14:43:38 +02001414 int cpu;
1415
1416 for_each_possible_cpu(cpu)
1417 per_cpu(nf_conntrack_untracked, cpu).status |= bits;
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001418}
1419EXPORT_SYMBOL_GPL(nf_ct_untracked_status_or);
1420
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001421static int nf_conntrack_init_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001422{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001423 int max_factor = 8;
Eric Dumazetb3c51632010-06-09 14:43:38 +02001424 int ret, cpu;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001425
1426 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001427 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001428 if (!nf_conntrack_htable_size) {
1429 nf_conntrack_htable_size
Jan Beulich44813742009-09-21 17:03:05 -07001430 = (((totalram_pages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001431 / sizeof(struct hlist_head));
Jan Beulich44813742009-09-21 17:03:05 -07001432 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001433 nf_conntrack_htable_size = 16384;
1434 if (nf_conntrack_htable_size < 32)
1435 nf_conntrack_htable_size = 32;
1436
1437 /* Use a max. factor of four by default to get the same max as
1438 * with the old struct list_heads. When a table size is given
1439 * we use the old value of 8 to avoid reducing the max.
1440 * entries. */
1441 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001442 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001443 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001444
Stephen Hemminger654d0fb2010-05-13 15:02:08 +02001445 printk(KERN_INFO "nf_conntrack version %s (%u buckets, %d max)\n",
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001446 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1447 nf_conntrack_max);
1448
Patrick McHardyac5357e2007-03-14 16:38:25 -07001449 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001450 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001451 goto err_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001452
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001453 ret = nf_conntrack_helper_init();
1454 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001455 goto err_helper;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001456
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001457#ifdef CONFIG_NF_CONNTRACK_ZONES
1458 ret = nf_ct_extend_register(&nf_ct_zone_extend);
1459 if (ret < 0)
1460 goto err_extend;
1461#endif
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001462 /* Set up fake conntrack: to never be deleted, not in any hashes */
Eric Dumazetb3c51632010-06-09 14:43:38 +02001463 for_each_possible_cpu(cpu) {
1464 struct nf_conn *ct = &per_cpu(nf_conntrack_untracked, cpu);
Eric Dumazetb3c51632010-06-09 14:43:38 +02001465 write_pnet(&ct->ct_net, &init_net);
1466 atomic_set(&ct->ct_general.use, 1);
1467 }
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001468 /* - and look it like as a confirmed connection */
Eric Dumazet5bfddbd2010-06-08 16:09:52 +02001469 nf_ct_untracked_status_or(IPS_CONFIRMED | IPS_UNTRACKED);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001470 return 0;
1471
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001472#ifdef CONFIG_NF_CONNTRACK_ZONES
1473err_extend:
1474 nf_conntrack_helper_fini();
1475#endif
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001476err_helper:
1477 nf_conntrack_proto_fini();
1478err_proto:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001479 return ret;
1480}
1481
Eric Dumazet8cc20192009-06-22 14:13:55 +02001482/*
1483 * We need to use special "null" values, not used in hash table
1484 */
1485#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1486#define DYING_NULLS_VAL ((1<<30)+1)
1487
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001488static int nf_conntrack_init_net(struct net *net)
1489{
1490 int ret;
1491
1492 atomic_set(&net->ct.count, 0);
Eric Dumazet8cc20192009-06-22 14:13:55 +02001493 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, UNCONFIRMED_NULLS_VAL);
1494 INIT_HLIST_NULLS_HEAD(&net->ct.dying, DYING_NULLS_VAL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001495 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1496 if (!net->ct.stat) {
1497 ret = -ENOMEM;
1498 goto err_stat;
1499 }
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001500
1501 net->ct.slabname = kasprintf(GFP_KERNEL, "nf_conntrack_%p", net);
1502 if (!net->ct.slabname) {
1503 ret = -ENOMEM;
1504 goto err_slabname;
1505 }
1506
1507 net->ct.nf_conntrack_cachep = kmem_cache_create(net->ct.slabname,
1508 sizeof(struct nf_conn), 0,
1509 SLAB_DESTROY_BY_RCU, NULL);
1510 if (!net->ct.nf_conntrack_cachep) {
1511 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1512 ret = -ENOMEM;
1513 goto err_cache;
1514 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001515
1516 net->ct.htable_size = nf_conntrack_htable_size;
Patrick McHardyd862a662011-01-14 15:45:56 +01001517 net->ct.hash = nf_ct_alloc_hashtable(&net->ct.htable_size, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001518 if (!net->ct.hash) {
1519 ret = -ENOMEM;
1520 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1521 goto err_hash;
1522 }
1523 ret = nf_conntrack_expect_init(net);
1524 if (ret < 0)
1525 goto err_expect;
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001526 ret = nf_conntrack_acct_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001527 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001528 goto err_acct;
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001529 ret = nf_conntrack_tstamp_init(net);
1530 if (ret < 0)
1531 goto err_tstamp;
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001532 ret = nf_conntrack_ecache_init(net);
1533 if (ret < 0)
1534 goto err_ecache;
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001535
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001536 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001537
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001538err_ecache:
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +01001539 nf_conntrack_tstamp_fini(net);
1540err_tstamp:
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001541 nf_conntrack_acct_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001542err_acct:
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001543 nf_conntrack_expect_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001544err_expect:
Patrick McHardyd862a662011-01-14 15:45:56 +01001545 nf_ct_free_hashtable(net->ct.hash, net->ct.htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001546err_hash:
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001547 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1548err_cache:
1549 kfree(net->ct.slabname);
1550err_slabname:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001551 free_percpu(net->ct.stat);
1552err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001553 return ret;
1554}
1555
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -08001556s16 (*nf_ct_nat_offset)(const struct nf_conn *ct,
1557 enum ip_conntrack_dir dir,
1558 u32 seq);
1559EXPORT_SYMBOL_GPL(nf_ct_nat_offset);
1560
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001561int nf_conntrack_init(struct net *net)
1562{
1563 int ret;
1564
1565 if (net_eq(net, &init_net)) {
1566 ret = nf_conntrack_init_init_net();
1567 if (ret < 0)
1568 goto out_init_net;
1569 }
1570 ret = nf_conntrack_init_net(net);
1571 if (ret < 0)
1572 goto out_net;
1573
1574 if (net_eq(net, &init_net)) {
1575 /* For use by REJECT target */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001576 RCU_INIT_POINTER(ip_ct_attach, nf_conntrack_attach);
1577 RCU_INIT_POINTER(nf_ct_destroy, destroy_conntrack);
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -08001578
1579 /* Howto get NAT offsets */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001580 RCU_INIT_POINTER(nf_ct_nat_offset, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001581 }
1582 return 0;
1583
1584out_net:
1585 if (net_eq(net, &init_net))
1586 nf_conntrack_cleanup_init_net();
1587out_init_net:
1588 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001589}