blob: a54bfec61e797f2cb42632d5bf38a0a0b36bfd63 [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>
17#include <linux/skbuff.h>
18#include <linux/proc_fs.h>
19#include <linux/vmalloc.h>
20#include <linux/stddef.h>
21#include <linux/slab.h>
22#include <linux/random.h>
23#include <linux/jhash.h>
24#include <linux/err.h>
25#include <linux/percpu.h>
26#include <linux/moduleparam.h>
27#include <linux/notifier.h>
28#include <linux/kernel.h>
29#include <linux/netdevice.h>
30#include <linux/socket.h>
Al Virod7fe0f22006-12-03 23:15:30 -050031#include <linux/mm.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080032
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080033#include <net/netfilter/nf_conntrack.h>
34#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010035#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010036#include <net/netfilter/nf_conntrack_expect.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080037#include <net/netfilter/nf_conntrack_helper.h>
38#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070039#include <net/netfilter/nf_conntrack_extend.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080040
Harald Weltedc808fe2006-03-20 17:56:32 -080041#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080042
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080043DEFINE_RWLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080044EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080045
46/* nf_conntrack_standalone needs this */
47atomic_t nf_conntrack_count = ATOMIC_INIT(0);
Patrick McHardya999e682006-11-29 02:35:20 +010048EXPORT_SYMBOL_GPL(nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080049
Martin Josefssone2b76062006-11-29 02:35:04 +010050unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080051EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
52
Brian Haley94aec082006-09-18 00:05:22 -070053int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010054EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080055
Patrick McHardyf205c5e2007-07-07 22:28:14 -070056struct hlist_head *nf_conntrack_hash __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080057EXPORT_SYMBOL_GPL(nf_conntrack_hash);
58
Martin Josefssone2b76062006-11-29 02:35:04 +010059struct nf_conn nf_conntrack_untracked __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080060EXPORT_SYMBOL_GPL(nf_conntrack_untracked);
61
Brian Haley94aec082006-09-18 00:05:22 -070062unsigned int nf_ct_log_invalid __read_mostly;
Patrick McHardyf205c5e2007-07-07 22:28:14 -070063HLIST_HEAD(unconfirmed);
Brian Haley1192e402006-09-20 12:03:46 -070064static int nf_conntrack_vmalloc __read_mostly;
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -070065static struct kmem_cache *nf_conntrack_cachep __read_mostly;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010066
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080067DEFINE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
68EXPORT_PER_CPU_SYMBOL(nf_conntrack_stat);
69
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080070static int nf_conntrack_hash_rnd_initted;
71static unsigned int nf_conntrack_hash_rnd;
72
73static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
74 unsigned int size, unsigned int rnd)
75{
76 unsigned int a, b;
Sami Farin9b887902007-03-14 16:43:00 -070077
78 a = jhash2(tuple->src.u3.all, ARRAY_SIZE(tuple->src.u3.all),
79 (tuple->src.l3num << 16) | tuple->dst.protonum);
80 b = jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
Al Viroa34c4582007-07-26 17:33:19 +010081 ((__force __u16)tuple->src.u.all << 16) |
82 (__force __u16)tuple->dst.u.all);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083
Patrick McHardy34498822007-12-17 22:45:52 -080084 return ((u64)jhash_2words(a, b, rnd) * size) >> 32;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080085}
86
87static inline u_int32_t hash_conntrack(const struct nf_conntrack_tuple *tuple)
88{
89 return __hash_conntrack(tuple, nf_conntrack_htable_size,
90 nf_conntrack_hash_rnd);
91}
92
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080093int
94nf_ct_get_tuple(const struct sk_buff *skb,
95 unsigned int nhoff,
96 unsigned int dataoff,
97 u_int16_t l3num,
98 u_int8_t protonum,
99 struct nf_conntrack_tuple *tuple,
100 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100101 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800102{
103 NF_CT_TUPLE_U_BLANK(tuple);
104
105 tuple->src.l3num = l3num;
106 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
107 return 0;
108
109 tuple->dst.protonum = protonum;
110 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
111
Martin Josefsson605dcad2006-11-29 02:35:06 +0100112 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800113}
Patrick McHardy13b18332006-12-02 22:11:25 -0800114EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800115
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700116int nf_ct_get_tuplepr(const struct sk_buff *skb,
117 unsigned int nhoff,
118 u_int16_t l3num,
119 struct nf_conntrack_tuple *tuple)
120{
121 struct nf_conntrack_l3proto *l3proto;
122 struct nf_conntrack_l4proto *l4proto;
123 unsigned int protoff;
124 u_int8_t protonum;
125 int ret;
126
127 rcu_read_lock();
128
129 l3proto = __nf_ct_l3proto_find(l3num);
130 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
131 if (ret != NF_ACCEPT) {
132 rcu_read_unlock();
133 return 0;
134 }
135
136 l4proto = __nf_ct_l4proto_find(l3num, protonum);
137
138 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
139 l3proto, l4proto);
140
141 rcu_read_unlock();
142 return ret;
143}
144EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
145
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800146int
147nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
148 const struct nf_conntrack_tuple *orig,
149 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100150 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800151{
152 NF_CT_TUPLE_U_BLANK(inverse);
153
154 inverse->src.l3num = orig->src.l3num;
155 if (l3proto->invert_tuple(inverse, orig) == 0)
156 return 0;
157
158 inverse->dst.dir = !orig->dst.dir;
159
160 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100161 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800162}
Patrick McHardy13b18332006-12-02 22:11:25 -0800163EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800164
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165static void
166clean_from_lists(struct nf_conn *ct)
167{
Patrick McHardy0d537782007-07-07 22:39:38 -0700168 pr_debug("clean_from_lists(%p)\n", ct);
Patrick McHardy76507f62008-01-31 04:38:38 -0800169 hlist_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
170 hlist_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800171
172 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800173 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800174}
175
176static void
177destroy_conntrack(struct nf_conntrack *nfct)
178{
179 struct nf_conn *ct = (struct nf_conn *)nfct;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100180 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800181
Patrick McHardy0d537782007-07-07 22:39:38 -0700182 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800183 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
184 NF_CT_ASSERT(!timer_pending(&ct->timeout));
185
186 nf_conntrack_event(IPCT_DESTROY, ct);
187 set_bit(IPS_DYING_BIT, &ct->status);
188
189 /* To make sure we don't get any weird locking issues here:
190 * destroy_conntrack() MUST NOT be called with a write lock
191 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800192 rcu_read_lock();
Patrick McHardy923f4902007-02-12 11:12:57 -0800193 l4proto = __nf_ct_l4proto_find(ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.l3num,
194 ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.protonum);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100195 if (l4proto && l4proto->destroy)
196 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800197
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700198 nf_ct_ext_destroy(ct);
199
Patrick McHardy982d9a92007-02-12 11:14:11 -0800200 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800201
202 write_lock_bh(&nf_conntrack_lock);
203 /* Expectations will have been removed in clean_from_lists,
204 * except TFTP can create an expectation on the first packet,
205 * before connection is in the list, so we need to clean here,
206 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800207 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800208
209 /* We overload first tuple to link into unconfirmed list. */
210 if (!nf_ct_is_confirmed(ct)) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700211 BUG_ON(hlist_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode));
212 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800213 }
214
215 NF_CT_STAT_INC(delete);
216 write_unlock_bh(&nf_conntrack_lock);
217
218 if (ct->master)
219 nf_ct_put(ct->master);
220
Patrick McHardy0d537782007-07-07 22:39:38 -0700221 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800222 nf_conntrack_free(ct);
223}
224
225static void death_by_timeout(unsigned long ul_conntrack)
226{
227 struct nf_conn *ct = (void *)ul_conntrack;
Patrick McHardy5397e972007-05-19 14:23:52 -0700228 struct nf_conn_help *help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700229 struct nf_conntrack_helper *helper;
Patrick McHardy5397e972007-05-19 14:23:52 -0700230
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700231 if (help) {
232 rcu_read_lock();
233 helper = rcu_dereference(help->helper);
234 if (helper && helper->destroy)
235 helper->destroy(ct);
236 rcu_read_unlock();
237 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800238
239 write_lock_bh(&nf_conntrack_lock);
240 /* Inside lock so preempt is disabled on module removal path.
241 * Otherwise we can get spurious warnings. */
242 NF_CT_STAT_INC(delete_list);
243 clean_from_lists(ct);
244 write_unlock_bh(&nf_conntrack_lock);
245 nf_ct_put(ct);
246}
247
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800248struct nf_conntrack_tuple_hash *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800249__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
250 const struct nf_conn *ignored_conntrack)
251{
252 struct nf_conntrack_tuple_hash *h;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700253 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800254 unsigned int hash = hash_conntrack(tuple);
255
Patrick McHardy76507f62008-01-31 04:38:38 -0800256 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash], hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700257 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
258 nf_ct_tuple_equal(tuple, &h->tuple)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800259 NF_CT_STAT_INC(found);
260 return h;
261 }
262 NF_CT_STAT_INC(searched);
263 }
264
265 return NULL;
266}
Patrick McHardy13b18332006-12-02 22:11:25 -0800267EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800268
269/* Find a connection corresponding to a tuple. */
270struct nf_conntrack_tuple_hash *
Patrick McHardy330f7db2007-07-07 22:28:42 -0700271nf_conntrack_find_get(const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800272{
273 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800274 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800275
Patrick McHardy76507f62008-01-31 04:38:38 -0800276 rcu_read_lock();
Patrick McHardy330f7db2007-07-07 22:28:42 -0700277 h = __nf_conntrack_find(tuple, NULL);
Patrick McHardy76507f62008-01-31 04:38:38 -0800278 if (h) {
279 ct = nf_ct_tuplehash_to_ctrack(h);
280 if (unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
281 h = NULL;
282 }
283 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800284
285 return h;
286}
Patrick McHardy13b18332006-12-02 22:11:25 -0800287EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800288
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800289static void __nf_conntrack_hash_insert(struct nf_conn *ct,
290 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800291 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800292{
Patrick McHardy76507f62008-01-31 04:38:38 -0800293 hlist_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
294 &nf_conntrack_hash[hash]);
295 hlist_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnode,
296 &nf_conntrack_hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800297}
298
299void nf_conntrack_hash_insert(struct nf_conn *ct)
300{
301 unsigned int hash, repl_hash;
302
303 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
304 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
305
306 write_lock_bh(&nf_conntrack_lock);
307 __nf_conntrack_hash_insert(ct, hash, repl_hash);
308 write_unlock_bh(&nf_conntrack_lock);
309}
Patrick McHardy13b18332006-12-02 22:11:25 -0800310EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800311
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800312/* Confirm a connection given skb; places it in hash table */
313int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700314__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800315{
316 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700317 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800318 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700319 struct nf_conn_help *help;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700320 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800321 enum ip_conntrack_info ctinfo;
322
Herbert Xu3db05fe2007-10-15 00:53:15 -0700323 ct = nf_ct_get(skb, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800324
325 /* ipt_REJECT uses nf_conntrack_attach to attach related
326 ICMP/TCP RST packets in other direction. Actual packet
327 which created connection will be IP_CT_NEW or for an
328 expected connection, IP_CT_RELATED. */
329 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
330 return NF_ACCEPT;
331
332 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
333 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
334
335 /* We're not in hash table, and we refuse to set up related
336 connections for unconfirmed conns. But packet copies and
337 REJECT will give spurious warnings here. */
338 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
339
340 /* No external references means noone else could have
341 confirmed us. */
342 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700343 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800344
345 write_lock_bh(&nf_conntrack_lock);
346
347 /* See if there's one in the list already, including reverse:
348 NAT could have grabbed it without realizing, since we're
349 not in the hash. If there is, we lost race. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700350 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700351 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
352 &h->tuple))
353 goto out;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700354 hlist_for_each_entry(h, n, &nf_conntrack_hash[repl_hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700355 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
356 &h->tuple))
357 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800358
Patrick McHardydf0933d2006-09-20 11:57:53 -0700359 /* Remove from unconfirmed list */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700360 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700361
362 __nf_conntrack_hash_insert(ct, hash, repl_hash);
363 /* Timer relative to confirmation time, not original
364 setting time, otherwise we'd get timer wrap in
365 weird delay cases. */
366 ct->timeout.expires += jiffies;
367 add_timer(&ct->timeout);
368 atomic_inc(&ct->ct_general.use);
369 set_bit(IPS_CONFIRMED_BIT, &ct->status);
370 NF_CT_STAT_INC(insert);
371 write_unlock_bh(&nf_conntrack_lock);
372 help = nfct_help(ct);
373 if (help && help->helper)
Herbert Xu3db05fe2007-10-15 00:53:15 -0700374 nf_conntrack_event_cache(IPCT_HELPER, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800375#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardydf0933d2006-09-20 11:57:53 -0700376 if (test_bit(IPS_SRC_NAT_DONE_BIT, &ct->status) ||
377 test_bit(IPS_DST_NAT_DONE_BIT, &ct->status))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700378 nf_conntrack_event_cache(IPCT_NATINFO, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800379#endif
Patrick McHardydf0933d2006-09-20 11:57:53 -0700380 nf_conntrack_event_cache(master_ct(ct) ?
Herbert Xu3db05fe2007-10-15 00:53:15 -0700381 IPCT_RELATED : IPCT_NEW, skb);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700382 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800383
Patrick McHardydf0933d2006-09-20 11:57:53 -0700384out:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800385 NF_CT_STAT_INC(insert_failed);
386 write_unlock_bh(&nf_conntrack_lock);
387 return NF_DROP;
388}
Patrick McHardy13b18332006-12-02 22:11:25 -0800389EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800390
391/* Returns true if a connection correspondings to the tuple (required
392 for NAT). */
393int
394nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
395 const struct nf_conn *ignored_conntrack)
396{
397 struct nf_conntrack_tuple_hash *h;
398
Patrick McHardy76507f62008-01-31 04:38:38 -0800399 rcu_read_lock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800400 h = __nf_conntrack_find(tuple, ignored_conntrack);
Patrick McHardy76507f62008-01-31 04:38:38 -0800401 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800402
403 return h != NULL;
404}
Patrick McHardy13b18332006-12-02 22:11:25 -0800405EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800406
Patrick McHardy7ae77302007-07-07 22:37:38 -0700407#define NF_CT_EVICTION_RANGE 8
408
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800409/* There's a small race here where we may free a just-assured
410 connection. Too bad: we're in trouble anyway. */
Patrick McHardy7ae77302007-07-07 22:37:38 -0700411static int early_drop(unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800412{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700413 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800414 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700415 struct nf_conn *ct = NULL, *tmp;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700416 struct hlist_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700417 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800418 int dropped = 0;
419
Patrick McHardy76507f62008-01-31 04:38:38 -0800420 rcu_read_lock();
Patrick McHardy7ae77302007-07-07 22:37:38 -0700421 for (i = 0; i < nf_conntrack_htable_size; i++) {
Patrick McHardy76507f62008-01-31 04:38:38 -0800422 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash],
423 hnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700424 tmp = nf_ct_tuplehash_to_ctrack(h);
425 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
426 ct = tmp;
427 cnt++;
428 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800429
430 if (ct && unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
431 ct = NULL;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700432 if (ct || cnt >= NF_CT_EVICTION_RANGE)
433 break;
434 hash = (hash + 1) % nf_conntrack_htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800435 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800436 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800437
438 if (!ct)
439 return dropped;
440
441 if (del_timer(&ct->timeout)) {
442 death_by_timeout((unsigned long)ct);
443 dropped = 1;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800444 NF_CT_STAT_INC_ATOMIC(early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800445 }
446 nf_ct_put(ct);
447 return dropped;
448}
449
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700450struct nf_conn *nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
451 const struct nf_conntrack_tuple *repl)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800452{
453 struct nf_conn *conntrack = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800454
Harald Weltedc808fe2006-03-20 17:56:32 -0800455 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800456 get_random_bytes(&nf_conntrack_hash_rnd, 4);
457 nf_conntrack_hash_rnd_initted = 1;
458 }
459
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700460 /* We don't want any race condition at early drop stage */
461 atomic_inc(&nf_conntrack_count);
462
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800463 if (nf_conntrack_max
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700464 && atomic_read(&nf_conntrack_count) > nf_conntrack_max) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800465 unsigned int hash = hash_conntrack(orig);
Patrick McHardy7ae77302007-07-07 22:37:38 -0700466 if (!early_drop(hash)) {
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700467 atomic_dec(&nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800468 if (net_ratelimit())
469 printk(KERN_WARNING
470 "nf_conntrack: table full, dropping"
471 " packet.\n");
472 return ERR_PTR(-ENOMEM);
473 }
474 }
475
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700476 conntrack = kmem_cache_zalloc(nf_conntrack_cachep, GFP_ATOMIC);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800477 if (conntrack == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700478 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700479 atomic_dec(&nf_conntrack_count);
480 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800481 }
482
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800483 atomic_set(&conntrack->ct_general.use, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800484 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
485 conntrack->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
486 /* Don't set timer yet: wait for confirmation */
Patrick McHardye6f689d2007-03-23 11:16:30 -0700487 setup_timer(&conntrack->timeout, death_by_timeout,
488 (unsigned long)conntrack);
Patrick McHardy76507f62008-01-31 04:38:38 -0800489 INIT_RCU_HEAD(&conntrack->rcu);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800490
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700491 return conntrack;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800492}
Patrick McHardy13b18332006-12-02 22:11:25 -0800493EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800494
Patrick McHardy76507f62008-01-31 04:38:38 -0800495static void nf_conntrack_free_rcu(struct rcu_head *head)
496{
497 struct nf_conn *ct = container_of(head, struct nf_conn, rcu);
498
499 nf_ct_ext_free(ct);
500 kmem_cache_free(nf_conntrack_cachep, ct);
501 atomic_dec(&nf_conntrack_count);
502}
503
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800504void nf_conntrack_free(struct nf_conn *conntrack)
505{
Patrick McHardy76507f62008-01-31 04:38:38 -0800506 call_rcu(&conntrack->rcu, nf_conntrack_free_rcu);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800507}
Patrick McHardy13b18332006-12-02 22:11:25 -0800508EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800509
510/* Allocate a new conntrack: we return -ENOMEM if classification
511 failed due to stress. Otherwise it really is unclassifiable. */
512static struct nf_conntrack_tuple_hash *
513init_conntrack(const struct nf_conntrack_tuple *tuple,
514 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100515 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800516 struct sk_buff *skb,
517 unsigned int dataoff)
518{
519 struct nf_conn *conntrack;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700520 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800521 struct nf_conntrack_tuple repl_tuple;
522 struct nf_conntrack_expect *exp;
523
Martin Josefsson605dcad2006-11-29 02:35:06 +0100524 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700525 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800526 return NULL;
527 }
528
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700529 conntrack = nf_conntrack_alloc(tuple, &repl_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800530 if (conntrack == NULL || IS_ERR(conntrack)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700531 pr_debug("Can't allocate conntrack.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800532 return (struct nf_conntrack_tuple_hash *)conntrack;
533 }
534
Martin Josefsson605dcad2006-11-29 02:35:06 +0100535 if (!l4proto->new(conntrack, skb, dataoff)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800536 nf_conntrack_free(conntrack);
Patrick McHardy0d537782007-07-07 22:39:38 -0700537 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800538 return NULL;
539 }
540
541 write_lock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -0700542 exp = nf_ct_find_expectation(tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800543 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700544 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
545 conntrack, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800546 /* Welcome, Mr. Bond. We've been expecting you... */
547 __set_bit(IPS_EXPECTED_BIT, &conntrack->status);
548 conntrack->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700549 if (exp->helper) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700550 help = nf_ct_helper_ext_add(conntrack, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700551 if (help)
552 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700553 }
554
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800555#ifdef CONFIG_NF_CONNTRACK_MARK
556 conntrack->mark = exp->master->mark;
557#endif
James Morris7c9728c2006-06-09 00:31:46 -0700558#ifdef CONFIG_NF_CONNTRACK_SECMARK
559 conntrack->secmark = exp->master->secmark;
560#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800561 nf_conntrack_get(&conntrack->master->ct_general);
562 NF_CT_STAT_INC(expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800563 } else {
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700564 struct nf_conntrack_helper *helper;
565
566 helper = __nf_ct_helper_find(&repl_tuple);
567 if (helper) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700568 help = nf_ct_helper_ext_add(conntrack, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700569 if (help)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700570 rcu_assign_pointer(help->helper, helper);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700571 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800572 NF_CT_STAT_INC(new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800573 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800574
575 /* Overload tuple linked list to put us in unconfirmed list. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700576 hlist_add_head(&conntrack->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
577 &unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800578
579 write_unlock_bh(&nf_conntrack_lock);
580
581 if (exp) {
582 if (exp->expectfn)
583 exp->expectfn(conntrack, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700584 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800585 }
586
587 return &conntrack->tuplehash[IP_CT_DIR_ORIGINAL];
588}
589
590/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
591static inline struct nf_conn *
592resolve_normal_ct(struct sk_buff *skb,
593 unsigned int dataoff,
594 u_int16_t l3num,
595 u_int8_t protonum,
596 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100597 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800598 int *set_reply,
599 enum ip_conntrack_info *ctinfo)
600{
601 struct nf_conntrack_tuple tuple;
602 struct nf_conntrack_tuple_hash *h;
603 struct nf_conn *ct;
604
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300605 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800606 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100607 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700608 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800609 return NULL;
610 }
611
612 /* look for tuple match */
Patrick McHardy330f7db2007-07-07 22:28:42 -0700613 h = nf_conntrack_find_get(&tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800614 if (!h) {
Martin Josefsson605dcad2006-11-29 02:35:06 +0100615 h = init_conntrack(&tuple, l3proto, l4proto, skb, dataoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800616 if (!h)
617 return NULL;
618 if (IS_ERR(h))
619 return (void *)h;
620 }
621 ct = nf_ct_tuplehash_to_ctrack(h);
622
623 /* It exists; we have (non-exclusive) reference. */
624 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
625 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
626 /* Please set reply bit if this packet OK */
627 *set_reply = 1;
628 } else {
629 /* Once we've had two way comms, always ESTABLISHED. */
630 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700631 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800632 *ctinfo = IP_CT_ESTABLISHED;
633 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700634 pr_debug("nf_conntrack_in: related packet for %p\n",
635 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800636 *ctinfo = IP_CT_RELATED;
637 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700638 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800639 *ctinfo = IP_CT_NEW;
640 }
641 *set_reply = 0;
642 }
643 skb->nfct = &ct->ct_general;
644 skb->nfctinfo = *ctinfo;
645 return ct;
646}
647
648unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700649nf_conntrack_in(int pf, unsigned int hooknum, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800650{
651 struct nf_conn *ct;
652 enum ip_conntrack_info ctinfo;
653 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100654 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800655 unsigned int dataoff;
656 u_int8_t protonum;
657 int set_reply = 0;
658 int ret;
659
660 /* Previously seen (loopback or untracked)? Ignore. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700661 if (skb->nfct) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800662 NF_CT_STAT_INC_ATOMIC(ignore);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800663 return NF_ACCEPT;
664 }
665
Patrick McHardy923f4902007-02-12 11:12:57 -0800666 /* rcu_read_lock()ed by nf_hook_slow */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800667 l3proto = __nf_ct_l3proto_find((u_int16_t)pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700668 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700669 &dataoff, &protonum);
670 if (ret <= 0) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700671 pr_debug("not prepared to track yet or error occured\n");
Yasuyuki Kozakaid87d8462007-07-14 20:44:23 -0700672 NF_CT_STAT_INC_ATOMIC(error);
673 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800674 return -ret;
675 }
676
Martin Josefsson605dcad2006-11-29 02:35:06 +0100677 l4proto = __nf_ct_l4proto_find((u_int16_t)pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800678
679 /* It may be an special packet, error, unclean...
680 * inverse of the return code tells to the netfilter
681 * core what to do with the packet. */
Martin Josefsson605dcad2006-11-29 02:35:06 +0100682 if (l4proto->error != NULL &&
Herbert Xu3db05fe2007-10-15 00:53:15 -0700683 (ret = l4proto->error(skb, dataoff, &ctinfo, pf, hooknum)) <= 0) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800684 NF_CT_STAT_INC_ATOMIC(error);
685 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800686 return -ret;
687 }
688
Herbert Xu3db05fe2007-10-15 00:53:15 -0700689 ct = resolve_normal_ct(skb, dataoff, pf, protonum, l3proto, l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800690 &set_reply, &ctinfo);
691 if (!ct) {
692 /* Not valid part of a connection */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800693 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800694 return NF_ACCEPT;
695 }
696
697 if (IS_ERR(ct)) {
698 /* Too stressed to deal. */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800699 NF_CT_STAT_INC_ATOMIC(drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800700 return NF_DROP;
701 }
702
Herbert Xu3db05fe2007-10-15 00:53:15 -0700703 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800704
Herbert Xu3db05fe2007-10-15 00:53:15 -0700705 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800706 if (ret < 0) {
707 /* Invalid: inverse of the return code tells
708 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -0700709 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -0700710 nf_conntrack_put(skb->nfct);
711 skb->nfct = NULL;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800712 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800713 return -ret;
714 }
715
716 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700717 nf_conntrack_event_cache(IPCT_STATUS, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800718
719 return ret;
720}
Patrick McHardy13b18332006-12-02 22:11:25 -0800721EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800722
723int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
724 const struct nf_conntrack_tuple *orig)
725{
Patrick McHardy923f4902007-02-12 11:12:57 -0800726 int ret;
727
728 rcu_read_lock();
729 ret = nf_ct_invert_tuple(inverse, orig,
730 __nf_ct_l3proto_find(orig->src.l3num),
731 __nf_ct_l4proto_find(orig->src.l3num,
732 orig->dst.protonum));
733 rcu_read_unlock();
734 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800735}
Patrick McHardy13b18332006-12-02 22:11:25 -0800736EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800737
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800738/* Alter reply tuple (maybe alter helper). This is for NAT, and is
739 implicitly racy: see __nf_conntrack_confirm */
740void nf_conntrack_alter_reply(struct nf_conn *ct,
741 const struct nf_conntrack_tuple *newreply)
742{
743 struct nf_conn_help *help = nfct_help(ct);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700744 struct nf_conntrack_helper *helper;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800745
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800746 /* Should be unconfirmed, so not in hash table yet */
747 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
748
Patrick McHardy0d537782007-07-07 22:39:38 -0700749 pr_debug("Altering reply tuple of %p to ", ct);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800750 NF_CT_DUMP_TUPLE(newreply);
751
752 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700753 if (ct->master || (help && help->expecting != 0))
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800754 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700755
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800756 rcu_read_lock();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700757 helper = __nf_ct_helper_find(newreply);
758 if (helper == NULL) {
759 if (help)
760 rcu_assign_pointer(help->helper, NULL);
761 goto out;
Yasuyuki Kozakai5d78a842007-05-10 14:16:24 -0700762 }
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700763
764 if (help == NULL) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700765 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
766 if (help == NULL)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700767 goto out;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700768 } else {
769 memset(&help->help, 0, sizeof(help->help));
770 }
771
772 rcu_assign_pointer(help->helper, helper);
773out:
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800774 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800775}
Patrick McHardy13b18332006-12-02 22:11:25 -0800776EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800777
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800778/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
779void __nf_ct_refresh_acct(struct nf_conn *ct,
780 enum ip_conntrack_info ctinfo,
781 const struct sk_buff *skb,
782 unsigned long extra_jiffies,
783 int do_acct)
784{
785 int event = 0;
786
787 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
788 NF_CT_ASSERT(skb);
789
790 write_lock_bh(&nf_conntrack_lock);
791
Eric Leblond997ae832006-05-29 18:24:20 -0700792 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -0800793 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
794 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -0700795
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800796 /* If not in hash table, timer will not be active yet */
797 if (!nf_ct_is_confirmed(ct)) {
798 ct->timeout.expires = extra_jiffies;
799 event = IPCT_REFRESH;
800 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +0100801 unsigned long newtime = jiffies + extra_jiffies;
802
803 /* Only update the timeout if the new timeout is at least
804 HZ jiffies from the old timeout. Need del_timer for race
805 avoidance (may already be dying). */
806 if (newtime - ct->timeout.expires >= HZ
807 && del_timer(&ct->timeout)) {
808 ct->timeout.expires = newtime;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800809 add_timer(&ct->timeout);
810 event = IPCT_REFRESH;
811 }
812 }
813
Patrick McHardy47d95042008-01-31 04:36:31 -0800814acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800815#ifdef CONFIG_NF_CT_ACCT
816 if (do_acct) {
817 ct->counters[CTINFO2DIR(ctinfo)].packets++;
818 ct->counters[CTINFO2DIR(ctinfo)].bytes +=
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300819 skb->len - skb_network_offset(skb);
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100820
821 if ((ct->counters[CTINFO2DIR(ctinfo)].packets & 0x80000000)
822 || (ct->counters[CTINFO2DIR(ctinfo)].bytes & 0x80000000))
823 event |= IPCT_COUNTER_FILLING;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800824 }
825#endif
826
827 write_unlock_bh(&nf_conntrack_lock);
828
829 /* must be unlocked when calling event cache */
830 if (event)
831 nf_conntrack_event_cache(event, skb);
832}
Patrick McHardy13b18332006-12-02 22:11:25 -0800833EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800834
Patrick McHardye281db5c2007-03-04 15:57:25 -0800835#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800836
837#include <linux/netfilter/nfnetlink.h>
838#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -0800839#include <linux/mutex.h>
840
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800841/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
842 * in ip_conntrack_core, since we don't want the protocols to autoload
843 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -0700844int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800845 const struct nf_conntrack_tuple *tuple)
846{
Patrick McHardy77236b62007-12-17 22:29:45 -0800847 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
848 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800849 return 0;
850
Patrick McHardydf6fb862007-09-28 14:37:03 -0700851nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800852 return -1;
853}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700854EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800855
Patrick McHardyf73e9242007-09-28 14:39:55 -0700856const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
857 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
858 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800859};
Patrick McHardyf73e9242007-09-28 14:39:55 -0700860EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800861
Patrick McHardyfdf70832007-09-28 14:37:41 -0700862int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800863 struct nf_conntrack_tuple *t)
864{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700865 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800866 return -EINVAL;
867
Patrick McHardy77236b62007-12-17 22:29:45 -0800868 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
869 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800870
871 return 0;
872}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700873EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800874#endif
875
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800876/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardyb334aad2008-01-14 23:48:57 -0800877static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800878{
879 struct nf_conn *ct;
880 enum ip_conntrack_info ctinfo;
881
882 /* This ICMP is in reverse direction to the packet which caused it */
883 ct = nf_ct_get(skb, &ctinfo);
884 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
885 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
886 else
887 ctinfo = IP_CT_RELATED;
888
889 /* Attach to new skbuff, and increment count */
890 nskb->nfct = &ct->ct_general;
891 nskb->nfctinfo = ctinfo;
892 nf_conntrack_get(nskb->nfct);
893}
894
895static inline int
896do_iter(const struct nf_conntrack_tuple_hash *i,
897 int (*iter)(struct nf_conn *i, void *data),
898 void *data)
899{
900 return iter(nf_ct_tuplehash_to_ctrack(i), data);
901}
902
903/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -0700904static struct nf_conn *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800905get_next_corpse(int (*iter)(struct nf_conn *i, void *data),
906 void *data, unsigned int *bucket)
907{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700908 struct nf_conntrack_tuple_hash *h;
909 struct nf_conn *ct;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700910 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800911
912 write_lock_bh(&nf_conntrack_lock);
913 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700914 hlist_for_each_entry(h, n, &nf_conntrack_hash[*bucket], hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700915 ct = nf_ct_tuplehash_to_ctrack(h);
916 if (iter(ct, data))
917 goto found;
918 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800919 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700920 hlist_for_each_entry(h, n, &unconfirmed, hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700921 ct = nf_ct_tuplehash_to_ctrack(h);
922 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -0800923 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700924 }
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800925 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700926 return NULL;
927found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800928 atomic_inc(&ct->ct_general.use);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800929 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700930 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800931}
932
933void
934nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data)
935{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700936 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800937 unsigned int bucket = 0;
938
Patrick McHardydf0933d2006-09-20 11:57:53 -0700939 while ((ct = get_next_corpse(iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800940 /* Time to push up daises... */
941 if (del_timer(&ct->timeout))
942 death_by_timeout((unsigned long)ct);
943 /* ... else the timer will get him soon. */
944
945 nf_ct_put(ct);
946 }
947}
Patrick McHardy13b18332006-12-02 22:11:25 -0800948EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800949
950static int kill_all(struct nf_conn *i, void *data)
951{
952 return 1;
953}
954
Stephen Hemminger96eb24d2008-01-31 04:07:29 -0800955void nf_ct_free_hashtable(struct hlist_head *hash, int vmalloced, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800956{
957 if (vmalloced)
958 vfree(hash);
959 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800960 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700961 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800962}
Patrick McHardyac565e52007-07-07 22:30:08 -0700963EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800964
Randy Dunlap272491e2006-12-07 01:17:24 -0800965void nf_conntrack_flush(void)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800966{
967 nf_ct_iterate_cleanup(kill_all, NULL);
968}
Patrick McHardy13b18332006-12-02 22:11:25 -0800969EXPORT_SYMBOL_GPL(nf_conntrack_flush);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800970
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800971/* Mishearing the voices in his head, our hero wonders how he's
972 supposed to kill the mall. */
973void nf_conntrack_cleanup(void)
974{
Patrick McHardyc3a47ab2007-02-12 11:09:19 -0800975 rcu_assign_pointer(ip_ct_attach, NULL);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -0800976
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800977 /* This makes sure all current packets have passed through
978 netfilter framework. Roll on, two-stage module
979 delete... */
980 synchronize_net();
981
982 nf_ct_event_cache_flush();
983 i_see_dead_people:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800984 nf_conntrack_flush();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800985 if (atomic_read(&nf_conntrack_count) != 0) {
986 schedule();
987 goto i_see_dead_people;
988 }
Patrick McHardy66365682005-12-05 13:36:50 -0800989 /* wait until all references to nf_conntrack_untracked are dropped */
990 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
991 schedule();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800992
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -0700993 rcu_assign_pointer(nf_ct_destroy, NULL);
994
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700995 kmem_cache_destroy(nf_conntrack_cachep);
Patrick McHardyac565e52007-07-07 22:30:08 -0700996 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
997 nf_conntrack_htable_size);
KOVACS Krisztian5a6f2942005-11-15 16:47:34 -0800998
Patrick McHardyac5357e2007-03-14 16:38:25 -0700999 nf_conntrack_proto_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001000 nf_conntrack_helper_fini();
Patrick McHardye9c1b082007-07-07 22:32:53 -07001001 nf_conntrack_expect_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001002}
1003
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001004struct hlist_head *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001005{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001006 struct hlist_head *hash;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001007 unsigned int size, i;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001008
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001009 *vmalloced = 0;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001010
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001011 size = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_head));
Andrew Morton29b67492007-10-29 21:41:19 -07001012 hash = (void*)__get_free_pages(GFP_KERNEL|__GFP_NOWARN,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001013 get_order(sizeof(struct hlist_head)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001014 * size));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001015 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001016 *vmalloced = 1;
1017 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001018 hash = vmalloc(sizeof(struct hlist_head) * size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001019 }
1020
1021 if (hash)
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001022 for (i = 0; i < size; i++)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001023 INIT_HLIST_HEAD(&hash[i]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001024
1025 return hash;
1026}
Patrick McHardyac565e52007-07-07 22:30:08 -07001027EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001028
Patrick McHardyfae718d2007-12-24 21:09:10 -08001029int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001030{
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001031 int i, bucket, vmalloced, old_vmalloced;
1032 unsigned int hashsize, old_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001033 int rnd;
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001034 struct hlist_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001035 struct nf_conntrack_tuple_hash *h;
1036
1037 /* On boot, we can set this without any fancy locking. */
1038 if (!nf_conntrack_htable_size)
1039 return param_set_uint(val, kp);
1040
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001041 hashsize = simple_strtoul(val, NULL, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001042 if (!hashsize)
1043 return -EINVAL;
1044
Patrick McHardyac565e52007-07-07 22:30:08 -07001045 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001046 if (!hash)
1047 return -ENOMEM;
1048
1049 /* We have to rehahs for the new table anyway, so we also can
1050 * use a newrandom seed */
1051 get_random_bytes(&rnd, 4);
1052
Patrick McHardy76507f62008-01-31 04:38:38 -08001053 /* Lookups in the old hash might happen in parallel, which means we
1054 * might get false negatives during connection lookup. New connections
1055 * created because of a false negative won't make it into the hash
1056 * though since that required taking the lock.
1057 */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001058 write_lock_bh(&nf_conntrack_lock);
1059 for (i = 0; i < nf_conntrack_htable_size; i++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001060 while (!hlist_empty(&nf_conntrack_hash[i])) {
1061 h = hlist_entry(nf_conntrack_hash[i].first,
1062 struct nf_conntrack_tuple_hash, hnode);
Patrick McHardy76507f62008-01-31 04:38:38 -08001063 hlist_del_rcu(&h->hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001064 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001065 hlist_add_head(&h->hnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001066 }
1067 }
1068 old_size = nf_conntrack_htable_size;
1069 old_vmalloced = nf_conntrack_vmalloc;
1070 old_hash = nf_conntrack_hash;
1071
1072 nf_conntrack_htable_size = hashsize;
1073 nf_conntrack_vmalloc = vmalloced;
1074 nf_conntrack_hash = hash;
1075 nf_conntrack_hash_rnd = rnd;
1076 write_unlock_bh(&nf_conntrack_lock);
1077
Patrick McHardyac565e52007-07-07 22:30:08 -07001078 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001079 return 0;
1080}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001081EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001082
Patrick McHardyfae718d2007-12-24 21:09:10 -08001083module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001084 &nf_conntrack_htable_size, 0600);
1085
1086int __init nf_conntrack_init(void)
1087{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001088 int max_factor = 8;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001089 int ret;
1090
1091 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001092 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001093 if (!nf_conntrack_htable_size) {
1094 nf_conntrack_htable_size
1095 = (((num_physpages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001096 / sizeof(struct hlist_head));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001097 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001098 nf_conntrack_htable_size = 16384;
1099 if (nf_conntrack_htable_size < 32)
1100 nf_conntrack_htable_size = 32;
1101
1102 /* Use a max. factor of four by default to get the same max as
1103 * with the old struct list_heads. When a table size is given
1104 * we use the old value of 8 to avoid reducing the max.
1105 * entries. */
1106 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001107 }
Patrick McHardyac565e52007-07-07 22:30:08 -07001108 nf_conntrack_hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
1109 &nf_conntrack_vmalloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001110 if (!nf_conntrack_hash) {
1111 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1112 goto err_out;
1113 }
1114
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001115 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001116
1117 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1118 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1119 nf_conntrack_max);
1120
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001121 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1122 sizeof(struct nf_conn),
Paul Mundt20c2df82007-07-20 10:11:58 +09001123 0, 0, NULL);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001124 if (!nf_conntrack_cachep) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001125 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1126 goto err_free_hash;
1127 }
1128
Patrick McHardyac5357e2007-03-14 16:38:25 -07001129 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001130 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001131 goto err_free_conntrack_slab;
1132
1133 ret = nf_conntrack_expect_init();
1134 if (ret < 0)
1135 goto out_fini_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001136
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001137 ret = nf_conntrack_helper_init();
1138 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001139 goto out_fini_expect;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001140
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001141 /* For use by REJECT target */
Patrick McHardyb334aad2008-01-14 23:48:57 -08001142 rcu_assign_pointer(ip_ct_attach, nf_conntrack_attach);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -07001143 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001144
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001145 /* Set up fake conntrack:
1146 - to never be deleted, not in any hashes */
1147 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1148 /* - and look it like as a confirmed connection */
1149 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1150
1151 return ret;
1152
Patrick McHardye9c1b082007-07-07 22:32:53 -07001153out_fini_expect:
1154 nf_conntrack_expect_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001155out_fini_proto:
1156 nf_conntrack_proto_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001157err_free_conntrack_slab:
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001158 kmem_cache_destroy(nf_conntrack_cachep);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001159err_free_hash:
Patrick McHardyac565e52007-07-07 22:30:08 -07001160 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
1161 nf_conntrack_htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001162err_out:
1163 return -ENOMEM;
1164}