blob: 0c9bbe93cc169c86ab2dbb241ae5a2654285e25f [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 Ayusoe6a7d3c2008-10-14 11:58:31 -070046#include <net/netfilter/nf_nat.h>
Patrick McHardye17b6662008-11-18 12:24:17 +010047#include <net/netfilter/nf_nat_core.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080048
Harald Weltedc808fe2006-03-20 17:56:32 -080049#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080050
Patrick McHardye17b6662008-11-18 12:24:17 +010051int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
52 enum nf_nat_manip_type manip,
Patrick McHardy39938322009-08-25 16:07:58 +020053 const struct nlattr *attr) __read_mostly;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070054EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
55
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080056DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080057EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080058
Martin Josefssone2b76062006-11-29 02:35:04 +010059unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080060EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
61
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +010062unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010063EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080064
Martin Josefssone2b76062006-11-29 02:35:04 +010065struct nf_conn nf_conntrack_untracked __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080066EXPORT_SYMBOL_GPL(nf_conntrack_untracked);
67
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080068static int nf_conntrack_hash_rnd_initted;
69static unsigned int nf_conntrack_hash_rnd;
70
71static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010072 u16 zone, unsigned int size, unsigned int rnd)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080073{
Patrick McHardy07949352008-01-31 04:40:52 -080074 unsigned int n;
75 u_int32_t h;
Sami Farin9b887902007-03-14 16:43:00 -070076
Patrick McHardy07949352008-01-31 04:40:52 -080077 /* The direction must be ignored, so we hash everything up to the
78 * destination ports (which is a multiple of 4) and treat the last
79 * three bytes manually.
80 */
81 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
82 h = jhash2((u32 *)tuple, n,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010083 zone ^ rnd ^ (((__force __u16)tuple->dst.u.all << 16) |
84 tuple->dst.protonum));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080085
Patrick McHardy07949352008-01-31 04:40:52 -080086 return ((u64)h * size) >> 32;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080087}
88
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010089static inline u_int32_t hash_conntrack(const struct net *net, u16 zone,
Patrick McHardyd696c7b2010-02-08 11:18:07 -080090 const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080091{
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010092 return __hash_conntrack(tuple, zone, net->ct.htable_size,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080093 nf_conntrack_hash_rnd);
94}
95
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +020096bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080097nf_ct_get_tuple(const struct sk_buff *skb,
98 unsigned int nhoff,
99 unsigned int dataoff,
100 u_int16_t l3num,
101 u_int8_t protonum,
102 struct nf_conntrack_tuple *tuple,
103 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100104 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800105{
Philip Craig443a70d2008-04-29 03:35:10 -0700106 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800107
108 tuple->src.l3num = l3num;
109 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200110 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800111
112 tuple->dst.protonum = protonum;
113 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
114
Martin Josefsson605dcad2006-11-29 02:35:06 +0100115 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800116}
Patrick McHardy13b18332006-12-02 22:11:25 -0800117EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800118
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200119bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
120 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700121{
122 struct nf_conntrack_l3proto *l3proto;
123 struct nf_conntrack_l4proto *l4proto;
124 unsigned int protoff;
125 u_int8_t protonum;
126 int ret;
127
128 rcu_read_lock();
129
130 l3proto = __nf_ct_l3proto_find(l3num);
131 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
132 if (ret != NF_ACCEPT) {
133 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200134 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700135 }
136
137 l4proto = __nf_ct_l4proto_find(l3num, protonum);
138
139 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
140 l3proto, l4proto);
141
142 rcu_read_unlock();
143 return ret;
144}
145EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
146
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200147bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800148nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
149 const struct nf_conntrack_tuple *orig,
150 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100151 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800152{
Philip Craig443a70d2008-04-29 03:35:10 -0700153 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800154
155 inverse->src.l3num = orig->src.l3num;
156 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200157 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800158
159 inverse->dst.dir = !orig->dst.dir;
160
161 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100162 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800163}
Patrick McHardy13b18332006-12-02 22:11:25 -0800164EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800166static void
167clean_from_lists(struct nf_conn *ct)
168{
Patrick McHardy0d537782007-07-07 22:39:38 -0700169 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100170 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
171 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800172
173 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800174 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800175}
176
177static void
178destroy_conntrack(struct nf_conntrack *nfct)
179{
180 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200181 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100182 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800183
Patrick McHardy0d537782007-07-07 22:39:38 -0700184 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800185 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
186 NF_CT_ASSERT(!timer_pending(&ct->timeout));
187
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800188 /* To make sure we don't get any weird locking issues here:
189 * destroy_conntrack() MUST NOT be called with a write lock
190 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800191 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200192 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100193 if (l4proto && l4proto->destroy)
194 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800195
Patrick McHardy982d9a92007-02-12 11:14:11 -0800196 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800197
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800198 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800199 /* Expectations will have been removed in clean_from_lists,
200 * except TFTP can create an expectation on the first packet,
201 * before connection is in the list, so we need to clean here,
202 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800203 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800204
205 /* We overload first tuple to link into unconfirmed list. */
206 if (!nf_ct_is_confirmed(ct)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100207 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
208 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800209 }
210
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200211 NF_CT_STAT_INC(net, delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800212 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800213
214 if (ct->master)
215 nf_ct_put(ct->master);
216
Patrick McHardy0d537782007-07-07 22:39:38 -0700217 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800218 nf_conntrack_free(ct);
219}
220
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200221void nf_ct_delete_from_lists(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800222{
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200223 struct net *net = nf_ct_net(ct);
Patrick McHardy5397e972007-05-19 14:23:52 -0700224
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200225 nf_ct_helper_destroy(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800226 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800227 /* Inside lock so preempt is disabled on module removal path.
228 * Otherwise we can get spurious warnings. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200229 NF_CT_STAT_INC(net, delete_list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800230 clean_from_lists(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800231 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200232}
233EXPORT_SYMBOL_GPL(nf_ct_delete_from_lists);
234
235static void death_by_event(unsigned long ul_conntrack)
236{
237 struct nf_conn *ct = (void *)ul_conntrack;
238 struct net *net = nf_ct_net(ct);
239
240 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
241 /* bad luck, let's retry again */
242 ct->timeout.expires = jiffies +
243 (random32() % net->ct.sysctl_events_retry_timeout);
244 add_timer(&ct->timeout);
245 return;
246 }
247 /* we've got the event delivered, now it's dying */
248 set_bit(IPS_DYING_BIT, &ct->status);
249 spin_lock(&nf_conntrack_lock);
250 hlist_nulls_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
251 spin_unlock(&nf_conntrack_lock);
252 nf_ct_put(ct);
253}
254
255void nf_ct_insert_dying_list(struct nf_conn *ct)
256{
257 struct net *net = nf_ct_net(ct);
258
259 /* add this conntrack to the dying list */
260 spin_lock_bh(&nf_conntrack_lock);
261 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
262 &net->ct.dying);
263 spin_unlock_bh(&nf_conntrack_lock);
264 /* set a new timer to retry event delivery */
265 setup_timer(&ct->timeout, death_by_event, (unsigned long)ct);
266 ct->timeout.expires = jiffies +
267 (random32() % net->ct.sysctl_events_retry_timeout);
268 add_timer(&ct->timeout);
269}
270EXPORT_SYMBOL_GPL(nf_ct_insert_dying_list);
271
272static void death_by_timeout(unsigned long ul_conntrack)
273{
274 struct nf_conn *ct = (void *)ul_conntrack;
275
276 if (!test_bit(IPS_DYING_BIT, &ct->status) &&
277 unlikely(nf_conntrack_event(IPCT_DESTROY, ct) < 0)) {
278 /* destroy event was not delivered */
279 nf_ct_delete_from_lists(ct);
280 nf_ct_insert_dying_list(ct);
281 return;
282 }
283 set_bit(IPS_DYING_BIT, &ct->status);
284 nf_ct_delete_from_lists(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800285 nf_ct_put(ct);
286}
287
Eric Dumazetea781f12009-03-25 21:05:46 +0100288/*
289 * Warning :
290 * - Caller must take a reference on returned object
291 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
292 * OR
293 * - Caller must lock nf_conntrack_lock before calling this function
294 */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800295struct nf_conntrack_tuple_hash *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100296__nf_conntrack_find(struct net *net, u16 zone,
297 const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800298{
299 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100300 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100301 unsigned int hash = hash_conntrack(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800302
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800303 /* Disable BHs the entire time since we normally need to disable them
304 * at least once for the stats anyway.
305 */
306 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100307begin:
308 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100309 if (nf_ct_tuple_equal(tuple, &h->tuple) &&
310 nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200311 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800312 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800313 return h;
314 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200315 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800316 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100317 /*
318 * if the nulls value we got at the end of this lookup is
319 * not the expected one, we must restart lookup.
320 * We probably met an item that was moved to another chain.
321 */
322 if (get_nulls_value(n) != hash)
323 goto begin;
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800324 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800325
326 return NULL;
327}
Patrick McHardy13b18332006-12-02 22:11:25 -0800328EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800329
330/* Find a connection corresponding to a tuple. */
331struct nf_conntrack_tuple_hash *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100332nf_conntrack_find_get(struct net *net, u16 zone,
333 const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800334{
335 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800336 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800337
Patrick McHardy76507f62008-01-31 04:38:38 -0800338 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100339begin:
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100340 h = __nf_conntrack_find(net, zone, tuple);
Patrick McHardy76507f62008-01-31 04:38:38 -0800341 if (h) {
342 ct = nf_ct_tuplehash_to_ctrack(h);
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200343 if (unlikely(nf_ct_is_dying(ct) ||
344 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800345 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100346 else {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100347 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple) ||
348 nf_ct_zone(ct) != zone)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100349 nf_ct_put(ct);
350 goto begin;
351 }
352 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800353 }
354 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800355
356 return h;
357}
Patrick McHardy13b18332006-12-02 22:11:25 -0800358EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800359
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800360static void __nf_conntrack_hash_insert(struct nf_conn *ct,
361 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800362 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800363{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200364 struct net *net = nf_ct_net(ct);
365
Eric Dumazetea781f12009-03-25 21:05:46 +0100366 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200367 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100368 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200369 &net->ct.hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800370}
371
372void nf_conntrack_hash_insert(struct nf_conn *ct)
373{
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800374 struct net *net = nf_ct_net(ct);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800375 unsigned int hash, repl_hash;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100376 u16 zone;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800377
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100378 zone = nf_ct_zone(ct);
379 hash = hash_conntrack(net, zone, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
380 repl_hash = hash_conntrack(net, zone, &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800381
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800382 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800383}
Patrick McHardy13b18332006-12-02 22:11:25 -0800384EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800385
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800386/* Confirm a connection given skb; places it in hash table */
387int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700388__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800389{
390 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700391 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800392 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700393 struct nf_conn_help *help;
Eric Dumazetea781f12009-03-25 21:05:46 +0100394 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800395 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200396 struct net *net;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100397 u16 zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800398
Herbert Xu3db05fe2007-10-15 00:53:15 -0700399 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200400 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800401
402 /* ipt_REJECT uses nf_conntrack_attach to attach related
403 ICMP/TCP RST packets in other direction. Actual packet
404 which created connection will be IP_CT_NEW or for an
405 expected connection, IP_CT_RELATED. */
406 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
407 return NF_ACCEPT;
408
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100409 zone = nf_ct_zone(ct);
410 hash = hash_conntrack(net, zone, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
411 repl_hash = hash_conntrack(net, zone, &ct->tuplehash[IP_CT_DIR_REPLY].tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800412
413 /* We're not in hash table, and we refuse to set up related
414 connections for unconfirmed conns. But packet copies and
415 REJECT will give spurious warnings here. */
416 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
417
418 /* No external references means noone else could have
419 confirmed us. */
420 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700421 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800422
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800423 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800424
425 /* See if there's one in the list already, including reverse:
426 NAT could have grabbed it without realizing, since we're
427 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100428 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700429 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100430 &h->tuple) &&
431 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700432 goto out;
Eric Dumazetea781f12009-03-25 21:05:46 +0100433 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700434 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100435 &h->tuple) &&
436 zone == nf_ct_zone(nf_ct_tuplehash_to_ctrack(h)))
Patrick McHardydf0933d2006-09-20 11:57:53 -0700437 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800438
Patrick McHardydf0933d2006-09-20 11:57:53 -0700439 /* Remove from unconfirmed list */
Eric Dumazetea781f12009-03-25 21:05:46 +0100440 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700441
Patrick McHardydf0933d2006-09-20 11:57:53 -0700442 /* Timer relative to confirmation time, not original
443 setting time, otherwise we'd get timer wrap in
444 weird delay cases. */
445 ct->timeout.expires += jiffies;
446 add_timer(&ct->timeout);
447 atomic_inc(&ct->ct_general.use);
448 set_bit(IPS_CONFIRMED_BIT, &ct->status);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200449
450 /* Since the lookup is lockless, hash insertion must be done after
451 * starting the timer and setting the CONFIRMED bit. The RCU barriers
452 * guarantee that no other CPU can find the conntrack before the above
453 * stores are visible.
454 */
455 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200456 NF_CT_STAT_INC(net, insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800457 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200458
Patrick McHardydf0933d2006-09-20 11:57:53 -0700459 help = nfct_help(ct);
460 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200461 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200462
Patrick McHardydf0933d2006-09-20 11:57:53 -0700463 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200464 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700465 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800466
Patrick McHardydf0933d2006-09-20 11:57:53 -0700467out:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200468 NF_CT_STAT_INC(net, insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800469 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800470 return NF_DROP;
471}
Patrick McHardy13b18332006-12-02 22:11:25 -0800472EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800473
474/* Returns true if a connection correspondings to the tuple (required
475 for NAT). */
476int
477nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
478 const struct nf_conn *ignored_conntrack)
479{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200480 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800481 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100482 struct hlist_nulls_node *n;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100483 struct nf_conn *ct;
484 u16 zone = nf_ct_zone(ignored_conntrack);
485 unsigned int hash = hash_conntrack(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800486
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800487 /* Disable BHs the entire time since we need to disable them at
488 * least once for the stats anyway.
489 */
490 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100491 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100492 ct = nf_ct_tuplehash_to_ctrack(h);
493 if (ct != ignored_conntrack &&
494 nf_ct_tuple_equal(tuple, &h->tuple) &&
495 nf_ct_zone(ct) == zone) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200496 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800497 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800498 return 1;
499 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200500 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800501 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800502 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800503
Patrick McHardyba419af2008-01-31 04:39:23 -0800504 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800505}
Patrick McHardy13b18332006-12-02 22:11:25 -0800506EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800507
Patrick McHardy7ae77302007-07-07 22:37:38 -0700508#define NF_CT_EVICTION_RANGE 8
509
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800510/* There's a small race here where we may free a just-assured
511 connection. Too bad: we're in trouble anyway. */
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200512static noinline int early_drop(struct net *net, unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800513{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700514 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800515 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700516 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100517 struct hlist_nulls_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700518 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800519 int dropped = 0;
520
Patrick McHardy76507f62008-01-31 04:38:38 -0800521 rcu_read_lock();
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800522 for (i = 0; i < net->ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100523 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
524 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700525 tmp = nf_ct_tuplehash_to_ctrack(h);
526 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
527 ct = tmp;
528 cnt++;
529 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800530
Changli Gao5ae27aa22009-11-05 14:51:31 +0100531 if (ct != NULL) {
532 if (likely(!nf_ct_is_dying(ct) &&
533 atomic_inc_not_zero(&ct->ct_general.use)))
534 break;
535 else
536 ct = NULL;
537 }
538
539 if (cnt >= NF_CT_EVICTION_RANGE)
Patrick McHardy7ae77302007-07-07 22:37:38 -0700540 break;
Changli Gao5ae27aa22009-11-05 14:51:31 +0100541
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800542 hash = (hash + 1) % net->ct.htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800543 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800544 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800545
546 if (!ct)
547 return dropped;
548
549 if (del_timer(&ct->timeout)) {
550 death_by_timeout((unsigned long)ct);
551 dropped = 1;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200552 NF_CT_STAT_INC_ATOMIC(net, early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800553 }
554 nf_ct_put(ct);
555 return dropped;
556}
557
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100558struct nf_conn *nf_conntrack_alloc(struct net *net, u16 zone,
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200559 const struct nf_conntrack_tuple *orig,
Pablo Neira Ayusob891c5a2008-07-08 02:35:55 -0700560 const struct nf_conntrack_tuple *repl,
561 gfp_t gfp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800562{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000563 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800564
Harald Weltedc808fe2006-03-20 17:56:32 -0800565 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Hagen Paul Pfeiferaf07d242009-02-20 10:48:06 +0100566 get_random_bytes(&nf_conntrack_hash_rnd,
567 sizeof(nf_conntrack_hash_rnd));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800568 nf_conntrack_hash_rnd_initted = 1;
569 }
570
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700571 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200572 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700573
Patrick McHardy76eb9462008-01-31 04:41:44 -0800574 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200575 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100576 unsigned int hash = hash_conntrack(net, zone, orig);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200577 if (!early_drop(net, hash)) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200578 atomic_dec(&net->ct.count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800579 if (net_ratelimit())
580 printk(KERN_WARNING
581 "nf_conntrack: table full, dropping"
582 " packet.\n");
583 return ERR_PTR(-ENOMEM);
584 }
585 }
586
Eric Dumazet941297f2009-07-16 14:03:40 +0200587 /*
588 * Do not use kmem_cache_zalloc(), as this cache uses
589 * SLAB_DESTROY_BY_RCU.
590 */
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800591 ct = kmem_cache_alloc(net->ct.nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800592 if (ct == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700593 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200594 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700595 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800596 }
Eric Dumazet941297f2009-07-16 14:03:40 +0200597 /*
598 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
599 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
600 */
601 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
602 sizeof(*ct) - offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
Patrick McHardy440f0d52009-06-10 14:32:47 +0200603 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800604 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
Eric Dumazet941297f2009-07-16 14:03:40 +0200605 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800606 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Eric Dumazet941297f2009-07-16 14:03:40 +0200607 ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800608 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800609 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200610#ifdef CONFIG_NET_NS
611 ct->ct_net = net;
612#endif
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100613#ifdef CONFIG_NF_CONNTRACK_ZONES
614 if (zone) {
615 struct nf_conntrack_zone *nf_ct_zone;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800616
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100617 nf_ct_zone = nf_ct_ext_add(ct, NF_CT_EXT_ZONE, GFP_ATOMIC);
618 if (!nf_ct_zone)
619 goto out_free;
620 nf_ct_zone->id = zone;
621 }
622#endif
Eric Dumazet941297f2009-07-16 14:03:40 +0200623 /*
624 * changes to lookup keys must be done before setting refcnt to 1
625 */
626 smp_wmb();
627 atomic_set(&ct->ct_general.use, 1);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800628 return ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100629
630#ifdef CONFIG_NF_CONNTRACK_ZONES
631out_free:
632 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
633 return ERR_PTR(-ENOMEM);
634#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800635}
Patrick McHardy13b18332006-12-02 22:11:25 -0800636EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800637
Patrick McHardyc88130b2008-01-31 04:42:11 -0800638void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800639{
Eric Dumazet1d452092009-03-24 14:26:50 +0100640 struct net *net = nf_ct_net(ct);
641
Patrick McHardyceeff752008-06-11 17:51:10 -0700642 nf_ct_ext_destroy(ct);
Eric Dumazet1d452092009-03-24 14:26:50 +0100643 atomic_dec(&net->ct.count);
Eric Dumazetea781f12009-03-25 21:05:46 +0100644 nf_ct_ext_free(ct);
Eric Dumazet5b3501f2010-02-08 11:16:56 -0800645 kmem_cache_free(net->ct.nf_conntrack_cachep, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800646}
Patrick McHardy13b18332006-12-02 22:11:25 -0800647EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800648
649/* Allocate a new conntrack: we return -ENOMEM if classification
650 failed due to stress. Otherwise it really is unclassifiable. */
651static struct nf_conntrack_tuple_hash *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100652init_conntrack(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200653 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800654 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100655 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800656 struct sk_buff *skb,
657 unsigned int dataoff)
658{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800659 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700660 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800661 struct nf_conntrack_tuple repl_tuple;
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100662 struct nf_conntrack_ecache *ecache;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800663 struct nf_conntrack_expect *exp;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100664 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800665
Martin Josefsson605dcad2006-11-29 02:35:06 +0100666 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700667 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800668 return NULL;
669 }
670
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100671 ct = nf_conntrack_alloc(net, zone, tuple, &repl_tuple, GFP_ATOMIC);
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000672 if (IS_ERR(ct)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700673 pr_debug("Can't allocate conntrack.\n");
Patrick McHardyc88130b2008-01-31 04:42:11 -0800674 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800675 }
676
Patrick McHardyc88130b2008-01-31 04:42:11 -0800677 if (!l4proto->new(ct, skb, dataoff)) {
678 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700679 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800680 return NULL;
681 }
682
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700683 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100684
685 ecache = tmpl ? nf_ct_ecache_find(tmpl) : NULL;
686 nf_ct_ecache_ext_add(ct, ecache ? ecache->ctmask : 0,
687 ecache ? ecache->expmask : 0,
688 GFP_ATOMIC);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700689
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800690 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100691 exp = nf_ct_find_expectation(net, zone, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800692 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700693 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800694 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800695 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800696 __set_bit(IPS_EXPECTED_BIT, &ct->status);
697 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700698 if (exp->helper) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800699 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700700 if (help)
701 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700702 }
703
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800704#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800705 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800706#endif
James Morris7c9728c2006-06-09 00:31:46 -0700707#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800708 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700709#endif
Patrick McHardyc88130b2008-01-31 04:42:11 -0800710 nf_conntrack_get(&ct->master->ct_general);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200711 NF_CT_STAT_INC(net, expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800712 } else {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100713 __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200714 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800715 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800716
717 /* Overload tuple linked list to put us in unconfirmed list. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100718 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan63c9a262008-10-08 11:35:04 +0200719 &net->ct.unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800720
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800721 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800722
723 if (exp) {
724 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800725 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700726 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800727 }
728
Patrick McHardyc88130b2008-01-31 04:42:11 -0800729 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800730}
731
732/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
733static inline struct nf_conn *
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100734resolve_normal_ct(struct net *net, struct nf_conn *tmpl,
Alexey Dobriyana702a652008-10-08 11:35:04 +0200735 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800736 unsigned int dataoff,
737 u_int16_t l3num,
738 u_int8_t protonum,
739 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100740 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800741 int *set_reply,
742 enum ip_conntrack_info *ctinfo)
743{
744 struct nf_conntrack_tuple tuple;
745 struct nf_conntrack_tuple_hash *h;
746 struct nf_conn *ct;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100747 u16 zone = tmpl ? nf_ct_zone(tmpl) : NF_CT_DEFAULT_ZONE;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800748
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300749 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800750 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100751 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700752 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800753 return NULL;
754 }
755
756 /* look for tuple match */
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100757 h = nf_conntrack_find_get(net, zone, &tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800758 if (!h) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100759 h = init_conntrack(net, tmpl, &tuple, l3proto, l4proto,
760 skb, dataoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800761 if (!h)
762 return NULL;
763 if (IS_ERR(h))
764 return (void *)h;
765 }
766 ct = nf_ct_tuplehash_to_ctrack(h);
767
768 /* It exists; we have (non-exclusive) reference. */
769 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
770 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
771 /* Please set reply bit if this packet OK */
772 *set_reply = 1;
773 } else {
774 /* Once we've had two way comms, always ESTABLISHED. */
775 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700776 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800777 *ctinfo = IP_CT_ESTABLISHED;
778 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700779 pr_debug("nf_conntrack_in: related packet for %p\n",
780 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800781 *ctinfo = IP_CT_RELATED;
782 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700783 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800784 *ctinfo = IP_CT_NEW;
785 }
786 *set_reply = 0;
787 }
788 skb->nfct = &ct->ct_general;
789 skb->nfctinfo = *ctinfo;
790 return ct;
791}
792
793unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +0200794nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
795 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800796{
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100797 struct nf_conn *ct, *tmpl = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800798 enum ip_conntrack_info ctinfo;
799 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100800 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800801 unsigned int dataoff;
802 u_int8_t protonum;
803 int set_reply = 0;
804 int ret;
805
Herbert Xu3db05fe2007-10-15 00:53:15 -0700806 if (skb->nfct) {
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100807 /* Previously seen (loopback or untracked)? Ignore. */
808 tmpl = (struct nf_conn *)skb->nfct;
809 if (!nf_ct_is_template(tmpl)) {
810 NF_CT_STAT_INC_ATOMIC(net, ignore);
811 return NF_ACCEPT;
812 }
813 skb->nfct = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800814 }
815
Patrick McHardy923f4902007-02-12 11:12:57 -0800816 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200817 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700818 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700819 &dataoff, &protonum);
820 if (ret <= 0) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700821 pr_debug("not prepared to track yet or error occured\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200822 NF_CT_STAT_INC_ATOMIC(net, error);
823 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100824 ret = -ret;
825 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800826 }
827
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200828 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800829
830 /* It may be an special packet, error, unclean...
831 * inverse of the return code tells to the netfilter
832 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200833 if (l4proto->error != NULL) {
Patrick McHardy8fea97e2010-02-15 17:45:08 +0100834 ret = l4proto->error(net, tmpl, skb, dataoff, &ctinfo,
835 pf, hooknum);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200836 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200837 NF_CT_STAT_INC_ATOMIC(net, error);
838 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100839 ret = -ret;
840 goto out;
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200841 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800842 }
843
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100844 ct = resolve_normal_ct(net, tmpl, skb, dataoff, pf, protonum,
Alexey Dobriyana702a652008-10-08 11:35:04 +0200845 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800846 if (!ct) {
847 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200848 NF_CT_STAT_INC_ATOMIC(net, invalid);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100849 ret = NF_ACCEPT;
850 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800851 }
852
853 if (IS_ERR(ct)) {
854 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200855 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100856 ret = NF_DROP;
857 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800858 }
859
Herbert Xu3db05fe2007-10-15 00:53:15 -0700860 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800861
Herbert Xu3db05fe2007-10-15 00:53:15 -0700862 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
Christoph Paaschec8d5402009-03-16 15:51:29 +0100863 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800864 /* Invalid: inverse of the return code tells
865 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -0700866 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -0700867 nf_conntrack_put(skb->nfct);
868 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200869 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +0100870 if (ret == -NF_DROP)
871 NF_CT_STAT_INC_ATOMIC(net, drop);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100872 ret = -ret;
873 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800874 }
875
876 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Patrick McHardy858b31332010-02-03 13:48:53 +0100877 nf_conntrack_event_cache(IPCT_REPLY, ct);
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100878out:
879 if (tmpl)
880 nf_ct_put(tmpl);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800881
882 return ret;
883}
Patrick McHardy13b18332006-12-02 22:11:25 -0800884EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800885
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200886bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
887 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800888{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200889 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -0800890
891 rcu_read_lock();
892 ret = nf_ct_invert_tuple(inverse, orig,
893 __nf_ct_l3proto_find(orig->src.l3num),
894 __nf_ct_l4proto_find(orig->src.l3num,
895 orig->dst.protonum));
896 rcu_read_unlock();
897 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800898}
Patrick McHardy13b18332006-12-02 22:11:25 -0800899EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800900
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800901/* Alter reply tuple (maybe alter helper). This is for NAT, and is
902 implicitly racy: see __nf_conntrack_confirm */
903void nf_conntrack_alter_reply(struct nf_conn *ct,
904 const struct nf_conntrack_tuple *newreply)
905{
906 struct nf_conn_help *help = nfct_help(ct);
907
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800908 /* Should be unconfirmed, so not in hash table yet */
909 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
910
Patrick McHardy0d537782007-07-07 22:39:38 -0700911 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200912 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800913
914 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +0200915 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800916 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700917
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800918 rcu_read_lock();
Patrick McHardyb2a15a62010-02-03 14:13:03 +0100919 __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800920 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800921}
Patrick McHardy13b18332006-12-02 22:11:25 -0800922EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800923
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800924/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
925void __nf_ct_refresh_acct(struct nf_conn *ct,
926 enum ip_conntrack_info ctinfo,
927 const struct sk_buff *skb,
928 unsigned long extra_jiffies,
929 int do_acct)
930{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800931 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
932 NF_CT_ASSERT(skb);
933
Eric Leblond997ae832006-05-29 18:24:20 -0700934 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -0800935 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
936 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -0700937
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800938 /* If not in hash table, timer will not be active yet */
939 if (!nf_ct_is_confirmed(ct)) {
940 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800941 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +0100942 unsigned long newtime = jiffies + extra_jiffies;
943
944 /* Only update the timeout if the new timeout is at least
945 HZ jiffies from the old timeout. Need del_timer for race
946 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200947 if (newtime - ct->timeout.expires >= HZ)
948 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800949 }
950
Patrick McHardy47d95042008-01-31 04:36:31 -0800951acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800952 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700953 struct nf_conn_counter *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100954
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700955 acct = nf_conn_acct_find(ct);
956 if (acct) {
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200957 spin_lock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700958 acct[CTINFO2DIR(ctinfo)].packets++;
959 acct[CTINFO2DIR(ctinfo)].bytes +=
960 skb->len - skb_network_offset(skb);
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200961 spin_unlock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700962 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800963 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800964}
Patrick McHardy13b18332006-12-02 22:11:25 -0800965EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800966
David S. Miller4c889492008-07-14 20:22:38 -0700967bool __nf_ct_kill_acct(struct nf_conn *ct,
968 enum ip_conntrack_info ctinfo,
969 const struct sk_buff *skb,
970 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -0700971{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700972 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700973 struct nf_conn_counter *acct;
974
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700975 acct = nf_conn_acct_find(ct);
976 if (acct) {
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200977 spin_lock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700978 acct[CTINFO2DIR(ctinfo)].packets++;
979 acct[CTINFO2DIR(ctinfo)].bytes +=
980 skb->len - skb_network_offset(skb);
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200981 spin_unlock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700982 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700983 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700984
David S. Miller4c889492008-07-14 20:22:38 -0700985 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -0700986 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -0700987 return true;
988 }
989 return false;
Patrick McHardy51091762008-06-09 15:59:06 -0700990}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700991EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -0700992
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100993#ifdef CONFIG_NF_CONNTRACK_ZONES
994static struct nf_ct_ext_type nf_ct_zone_extend __read_mostly = {
995 .len = sizeof(struct nf_conntrack_zone),
996 .align = __alignof__(struct nf_conntrack_zone),
997 .id = NF_CT_EXT_ZONE,
998};
999#endif
1000
Patrick McHardye281db5c2007-03-04 15:57:25 -08001001#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001002
1003#include <linux/netfilter/nfnetlink.h>
1004#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -08001005#include <linux/mutex.h>
1006
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001007/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
1008 * in ip_conntrack_core, since we don't want the protocols to autoload
1009 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -07001010int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001011 const struct nf_conntrack_tuple *tuple)
1012{
Patrick McHardy77236b62007-12-17 22:29:45 -08001013 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
1014 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001015 return 0;
1016
Patrick McHardydf6fb862007-09-28 14:37:03 -07001017nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001018 return -1;
1019}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001020EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001021
Patrick McHardyf73e9242007-09-28 14:39:55 -07001022const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
1023 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
1024 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001025};
Patrick McHardyf73e9242007-09-28 14:39:55 -07001026EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001027
Patrick McHardyfdf70832007-09-28 14:37:41 -07001028int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001029 struct nf_conntrack_tuple *t)
1030{
Patrick McHardydf6fb862007-09-28 14:37:03 -07001031 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001032 return -EINVAL;
1033
Patrick McHardy77236b62007-12-17 22:29:45 -08001034 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
1035 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001036
1037 return 0;
1038}
Patrick McHardyfdf70832007-09-28 14:37:41 -07001039EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +01001040
1041int nf_ct_port_nlattr_tuple_size(void)
1042{
1043 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1044}
1045EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001046#endif
1047
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001048/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardyb334aad2008-01-14 23:48:57 -08001049static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001050{
1051 struct nf_conn *ct;
1052 enum ip_conntrack_info ctinfo;
1053
1054 /* This ICMP is in reverse direction to the packet which caused it */
1055 ct = nf_ct_get(skb, &ctinfo);
1056 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
1057 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
1058 else
1059 ctinfo = IP_CT_RELATED;
1060
1061 /* Attach to new skbuff, and increment count */
1062 nskb->nfct = &ct->ct_general;
1063 nskb->nfctinfo = ctinfo;
1064 nf_conntrack_get(nskb->nfct);
1065}
1066
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001067/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001068static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001069get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001070 void *data, unsigned int *bucket)
1071{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001072 struct nf_conntrack_tuple_hash *h;
1073 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +01001074 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001075
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001076 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001077 for (; *bucket < net->ct.htable_size; (*bucket)++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001078 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001079 ct = nf_ct_tuplehash_to_ctrack(h);
1080 if (iter(ct, data))
1081 goto found;
1082 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001083 }
Eric Dumazetea781f12009-03-25 21:05:46 +01001084 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001085 ct = nf_ct_tuplehash_to_ctrack(h);
1086 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -08001087 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001088 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001089 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001090 return NULL;
1091found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001092 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001093 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001094 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001095}
1096
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001097void nf_ct_iterate_cleanup(struct net *net,
1098 int (*iter)(struct nf_conn *i, void *data),
1099 void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001100{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001101 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001102 unsigned int bucket = 0;
1103
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001104 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001105 /* Time to push up daises... */
1106 if (del_timer(&ct->timeout))
1107 death_by_timeout((unsigned long)ct);
1108 /* ... else the timer will get him soon. */
1109
1110 nf_ct_put(ct);
1111 }
1112}
Patrick McHardy13b18332006-12-02 22:11:25 -08001113EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001114
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001115struct __nf_ct_flush_report {
1116 u32 pid;
1117 int report;
1118};
1119
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001120static int kill_report(struct nf_conn *i, void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001121{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001122 struct __nf_ct_flush_report *fr = (struct __nf_ct_flush_report *)data;
1123
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001124 /* If we fail to deliver the event, death_by_timeout() will retry */
1125 if (nf_conntrack_event_report(IPCT_DESTROY, i,
1126 fr->pid, fr->report) < 0)
1127 return 1;
1128
1129 /* Avoid the delivery of the destroy event in death_by_timeout(). */
1130 set_bit(IPS_DYING_BIT, &i->status);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001131 return 1;
1132}
1133
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001134static int kill_all(struct nf_conn *i, void *data)
1135{
1136 return 1;
1137}
1138
Eric Dumazetea781f12009-03-25 21:05:46 +01001139void nf_ct_free_hashtable(void *hash, int vmalloced, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001140{
1141 if (vmalloced)
1142 vfree(hash);
1143 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001144 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001145 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001146}
Patrick McHardyac565e52007-07-07 22:30:08 -07001147EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001148
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001149void nf_conntrack_flush_report(struct net *net, u32 pid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001150{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001151 struct __nf_ct_flush_report fr = {
1152 .pid = pid,
1153 .report = report,
1154 };
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001155 nf_ct_iterate_cleanup(net, kill_report, &fr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001156}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001157EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001158
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001159static void nf_ct_release_dying_list(struct net *net)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001160{
1161 struct nf_conntrack_tuple_hash *h;
1162 struct nf_conn *ct;
1163 struct hlist_nulls_node *n;
1164
1165 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001166 hlist_nulls_for_each_entry(h, n, &net->ct.dying, hnnode) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001167 ct = nf_ct_tuplehash_to_ctrack(h);
1168 /* never fails to remove them, no listeners at this point */
1169 nf_ct_kill(ct);
1170 }
1171 spin_unlock_bh(&nf_conntrack_lock);
1172}
1173
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001174static void nf_conntrack_cleanup_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001175{
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001176 /* wait until all references to nf_conntrack_untracked are dropped */
1177 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
1178 schedule();
1179
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001180 nf_conntrack_helper_fini();
1181 nf_conntrack_proto_fini();
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001182#ifdef CONFIG_NF_CONNTRACK_ZONES
1183 nf_ct_extend_unregister(&nf_ct_zone_extend);
1184#endif
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001185}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001186
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001187static void nf_conntrack_cleanup_net(struct net *net)
1188{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001189 i_see_dead_people:
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001190 nf_ct_iterate_cleanup(net, kill_all, NULL);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001191 nf_ct_release_dying_list(net);
Alexey Dobriyan49ac8712008-10-08 11:35:03 +02001192 if (atomic_read(&net->ct.count) != 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001193 schedule();
1194 goto i_see_dead_people;
1195 }
1196
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001197 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001198 net->ct.htable_size);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001199 nf_conntrack_ecache_fini(net);
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001200 nf_conntrack_acct_fini(net);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001201 nf_conntrack_expect_fini(net);
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001202 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1203 kfree(net->ct.slabname);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001204 free_percpu(net->ct.stat);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001205}
1206
1207/* Mishearing the voices in his head, our hero wonders how he's
1208 supposed to kill the mall. */
1209void nf_conntrack_cleanup(struct net *net)
1210{
1211 if (net_eq(net, &init_net))
1212 rcu_assign_pointer(ip_ct_attach, NULL);
1213
1214 /* This makes sure all current packets have passed through
1215 netfilter framework. Roll on, two-stage module
1216 delete... */
1217 synchronize_net();
1218
1219 nf_conntrack_cleanup_net(net);
1220
1221 if (net_eq(net, &init_net)) {
1222 rcu_assign_pointer(nf_ct_destroy, NULL);
1223 nf_conntrack_cleanup_init_net();
1224 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001225}
1226
Eric Dumazetea781f12009-03-25 21:05:46 +01001227void *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001228{
Eric Dumazetea781f12009-03-25 21:05:46 +01001229 struct hlist_nulls_head *hash;
1230 unsigned int nr_slots, i;
1231 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001232
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001233 *vmalloced = 0;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001234
Eric Dumazetea781f12009-03-25 21:05:46 +01001235 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1236 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1237 sz = nr_slots * sizeof(struct hlist_nulls_head);
1238 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1239 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001240 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001241 *vmalloced = 1;
1242 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazetea781f12009-03-25 21:05:46 +01001243 hash = __vmalloc(sz, GFP_KERNEL | __GFP_ZERO, PAGE_KERNEL);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001244 }
1245
Eric Dumazetea781f12009-03-25 21:05:46 +01001246 if (hash && nulls)
1247 for (i = 0; i < nr_slots; i++)
1248 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001249
1250 return hash;
1251}
Patrick McHardyac565e52007-07-07 22:30:08 -07001252EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001253
Patrick McHardyfae718d2007-12-24 21:09:10 -08001254int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001255{
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001256 int i, bucket, vmalloced, old_vmalloced;
1257 unsigned int hashsize, old_size;
Eric Dumazetea781f12009-03-25 21:05:46 +01001258 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001259 struct nf_conntrack_tuple_hash *h;
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001260 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001261
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001262 if (current->nsproxy->net_ns != &init_net)
1263 return -EOPNOTSUPP;
1264
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001265 /* On boot, we can set this without any fancy locking. */
1266 if (!nf_conntrack_htable_size)
1267 return param_set_uint(val, kp);
1268
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001269 hashsize = simple_strtoul(val, NULL, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001270 if (!hashsize)
1271 return -EINVAL;
1272
Eric Dumazetea781f12009-03-25 21:05:46 +01001273 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001274 if (!hash)
1275 return -ENOMEM;
1276
Patrick McHardy76507f62008-01-31 04:38:38 -08001277 /* Lookups in the old hash might happen in parallel, which means we
1278 * might get false negatives during connection lookup. New connections
1279 * created because of a false negative won't make it into the hash
1280 * though since that required taking the lock.
1281 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001282 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001283 for (i = 0; i < init_net.ct.htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001284 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1285 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1286 struct nf_conntrack_tuple_hash, hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001287 ct = nf_ct_tuplehash_to_ctrack(h);
Eric Dumazetea781f12009-03-25 21:05:46 +01001288 hlist_nulls_del_rcu(&h->hnnode);
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001289 bucket = __hash_conntrack(&h->tuple, nf_ct_zone(ct),
1290 hashsize,
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001291 nf_conntrack_hash_rnd);
Eric Dumazetea781f12009-03-25 21:05:46 +01001292 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001293 }
1294 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001295 old_size = init_net.ct.htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001296 old_vmalloced = init_net.ct.hash_vmalloc;
1297 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001298
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001299 init_net.ct.htable_size = nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001300 init_net.ct.hash_vmalloc = vmalloced;
1301 init_net.ct.hash = hash;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001302 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001303
Patrick McHardyac565e52007-07-07 22:30:08 -07001304 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001305 return 0;
1306}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001307EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001308
Patrick McHardyfae718d2007-12-24 21:09:10 -08001309module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001310 &nf_conntrack_htable_size, 0600);
1311
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001312static int nf_conntrack_init_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001313{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001314 int max_factor = 8;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001315 int ret;
1316
1317 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001318 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001319 if (!nf_conntrack_htable_size) {
1320 nf_conntrack_htable_size
Jan Beulich44813742009-09-21 17:03:05 -07001321 = (((totalram_pages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001322 / sizeof(struct hlist_head));
Jan Beulich44813742009-09-21 17:03:05 -07001323 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001324 nf_conntrack_htable_size = 16384;
1325 if (nf_conntrack_htable_size < 32)
1326 nf_conntrack_htable_size = 32;
1327
1328 /* Use a max. factor of four by default to get the same max as
1329 * with the old struct list_heads. When a table size is given
1330 * we use the old value of 8 to avoid reducing the max.
1331 * entries. */
1332 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001333 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001334 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001335
1336 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1337 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1338 nf_conntrack_max);
1339
Patrick McHardyac5357e2007-03-14 16:38:25 -07001340 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001341 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001342 goto err_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001343
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001344 ret = nf_conntrack_helper_init();
1345 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001346 goto err_helper;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001347
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001348#ifdef CONFIG_NF_CONNTRACK_ZONES
1349 ret = nf_ct_extend_register(&nf_ct_zone_extend);
1350 if (ret < 0)
1351 goto err_extend;
1352#endif
Patrick McHardy9edd7ca2010-02-08 11:16:26 -08001353 /* Set up fake conntrack: to never be deleted, not in any hashes */
1354#ifdef CONFIG_NET_NS
1355 nf_conntrack_untracked.ct_net = &init_net;
1356#endif
1357 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1358 /* - and look it like as a confirmed connection */
1359 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1360
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001361 return 0;
1362
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +01001363#ifdef CONFIG_NF_CONNTRACK_ZONES
1364err_extend:
1365 nf_conntrack_helper_fini();
1366#endif
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001367err_helper:
1368 nf_conntrack_proto_fini();
1369err_proto:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001370 return ret;
1371}
1372
Eric Dumazet8cc20192009-06-22 14:13:55 +02001373/*
1374 * We need to use special "null" values, not used in hash table
1375 */
1376#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1377#define DYING_NULLS_VAL ((1<<30)+1)
1378
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001379static int nf_conntrack_init_net(struct net *net)
1380{
1381 int ret;
1382
1383 atomic_set(&net->ct.count, 0);
Eric Dumazet8cc20192009-06-22 14:13:55 +02001384 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, UNCONFIRMED_NULLS_VAL);
1385 INIT_HLIST_NULLS_HEAD(&net->ct.dying, DYING_NULLS_VAL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001386 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1387 if (!net->ct.stat) {
1388 ret = -ENOMEM;
1389 goto err_stat;
1390 }
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001391
1392 net->ct.slabname = kasprintf(GFP_KERNEL, "nf_conntrack_%p", net);
1393 if (!net->ct.slabname) {
1394 ret = -ENOMEM;
1395 goto err_slabname;
1396 }
1397
1398 net->ct.nf_conntrack_cachep = kmem_cache_create(net->ct.slabname,
1399 sizeof(struct nf_conn), 0,
1400 SLAB_DESTROY_BY_RCU, NULL);
1401 if (!net->ct.nf_conntrack_cachep) {
1402 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1403 ret = -ENOMEM;
1404 goto err_cache;
1405 }
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001406
1407 net->ct.htable_size = nf_conntrack_htable_size;
1408 net->ct.hash = nf_ct_alloc_hashtable(&net->ct.htable_size,
Eric Dumazetea781f12009-03-25 21:05:46 +01001409 &net->ct.hash_vmalloc, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001410 if (!net->ct.hash) {
1411 ret = -ENOMEM;
1412 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1413 goto err_hash;
1414 }
1415 ret = nf_conntrack_expect_init(net);
1416 if (ret < 0)
1417 goto err_expect;
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001418 ret = nf_conntrack_acct_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001419 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001420 goto err_acct;
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001421 ret = nf_conntrack_ecache_init(net);
1422 if (ret < 0)
1423 goto err_ecache;
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001424
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001425 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001426
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001427err_ecache:
1428 nf_conntrack_acct_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001429err_acct:
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001430 nf_conntrack_expect_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001431err_expect:
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001432 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
Patrick McHardyd696c7b2010-02-08 11:18:07 -08001433 net->ct.htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001434err_hash:
Eric Dumazet5b3501f2010-02-08 11:16:56 -08001435 kmem_cache_destroy(net->ct.nf_conntrack_cachep);
1436err_cache:
1437 kfree(net->ct.slabname);
1438err_slabname:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001439 free_percpu(net->ct.stat);
1440err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001441 return ret;
1442}
1443
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -08001444s16 (*nf_ct_nat_offset)(const struct nf_conn *ct,
1445 enum ip_conntrack_dir dir,
1446 u32 seq);
1447EXPORT_SYMBOL_GPL(nf_ct_nat_offset);
1448
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001449int nf_conntrack_init(struct net *net)
1450{
1451 int ret;
1452
1453 if (net_eq(net, &init_net)) {
1454 ret = nf_conntrack_init_init_net();
1455 if (ret < 0)
1456 goto out_init_net;
1457 }
1458 ret = nf_conntrack_init_net(net);
1459 if (ret < 0)
1460 goto out_net;
1461
1462 if (net_eq(net, &init_net)) {
1463 /* For use by REJECT target */
1464 rcu_assign_pointer(ip_ct_attach, nf_conntrack_attach);
1465 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -08001466
1467 /* Howto get NAT offsets */
1468 rcu_assign_pointer(nf_ct_nat_offset, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001469 }
1470 return 0;
1471
1472out_net:
1473 if (net_eq(net, &init_net))
1474 nf_conntrack_cleanup_init_net();
1475out_init_net:
1476 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001477}