blob: 7a15e30356f2284613c708dc081ceebfeff94e23 [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 Kozakai9fb9cbb2005-11-09 16:38:16 -080039
Harald Weltedc808fe2006-03-20 17:56:32 -080040#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080041
42#if 0
43#define DEBUGP printk
44#else
45#define DEBUGP(format, args...)
46#endif
47
48DEFINE_RWLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080049EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080050
51/* nf_conntrack_standalone needs this */
52atomic_t nf_conntrack_count = ATOMIC_INIT(0);
Patrick McHardya999e682006-11-29 02:35:20 +010053EXPORT_SYMBOL_GPL(nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080054
Patrick McHardy13b18332006-12-02 22:11:25 -080055void (*nf_conntrack_destroyed)(struct nf_conn *conntrack);
56EXPORT_SYMBOL_GPL(nf_conntrack_destroyed);
57
Martin Josefssone2b76062006-11-29 02:35:04 +010058unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080059EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
60
Brian Haley94aec082006-09-18 00:05:22 -070061int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010062EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080063
Brian Haley1192e402006-09-20 12:03:46 -070064struct list_head *nf_conntrack_hash __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080065EXPORT_SYMBOL_GPL(nf_conntrack_hash);
66
Martin Josefssone2b76062006-11-29 02:35:04 +010067struct nf_conn nf_conntrack_untracked __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080068EXPORT_SYMBOL_GPL(nf_conntrack_untracked);
69
Brian Haley94aec082006-09-18 00:05:22 -070070unsigned int nf_ct_log_invalid __read_mostly;
Martin Josefsson7e5d03b2006-11-29 02:34:59 +010071LIST_HEAD(unconfirmed);
Brian Haley1192e402006-09-20 12:03:46 -070072static int nf_conntrack_vmalloc __read_mostly;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080073
Pablo Neira Ayuso4e3882f2006-03-22 13:55:11 -080074static unsigned int nf_conntrack_next_id;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010075
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080076DEFINE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
77EXPORT_PER_CPU_SYMBOL(nf_conntrack_stat);
78
79/*
80 * This scheme offers various size of "struct nf_conn" dependent on
81 * features(helper, nat, ...)
82 */
83
84#define NF_CT_FEATURES_NAMELEN 256
85static struct {
86 /* name of slab cache. printed in /proc/slabinfo */
87 char *name;
88
89 /* size of slab cache */
90 size_t size;
91
92 /* slab cache pointer */
Christoph Lametere18b8902006-12-06 20:33:20 -080093 struct kmem_cache *cachep;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080094
95 /* allocated slab cache + modules which uses this slab cache */
96 int use;
97
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080098} nf_ct_cache[NF_CT_F_NUM];
99
100/* protect members of nf_ct_cache except of "use" */
101DEFINE_RWLOCK(nf_ct_cache_lock);
102
103/* This avoids calling kmem_cache_create() with same name simultaneously */
Ingo Molnar57b47a52006-03-20 22:35:41 -0800104static DEFINE_MUTEX(nf_ct_cache_mutex);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800105
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800106static int nf_conntrack_hash_rnd_initted;
107static unsigned int nf_conntrack_hash_rnd;
108
109static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
110 unsigned int size, unsigned int rnd)
111{
112 unsigned int a, b;
Sami Farin9b887902007-03-14 16:43:00 -0700113
114 a = jhash2(tuple->src.u3.all, ARRAY_SIZE(tuple->src.u3.all),
115 (tuple->src.l3num << 16) | tuple->dst.protonum);
116 b = jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
117 (tuple->src.u.all << 16) | tuple->dst.u.all);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800118
119 return jhash_2words(a, b, rnd) % size;
120}
121
122static inline u_int32_t hash_conntrack(const struct nf_conntrack_tuple *tuple)
123{
124 return __hash_conntrack(tuple, nf_conntrack_htable_size,
125 nf_conntrack_hash_rnd);
126}
127
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800128int nf_conntrack_register_cache(u_int32_t features, const char *name,
Harald Weltedc808fe2006-03-20 17:56:32 -0800129 size_t size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800130{
131 int ret = 0;
132 char *cache_name;
Christoph Lametere18b8902006-12-06 20:33:20 -0800133 struct kmem_cache *cachep;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800134
135 DEBUGP("nf_conntrack_register_cache: features=0x%x, name=%s, size=%d\n",
136 features, name, size);
137
138 if (features < NF_CT_F_BASIC || features >= NF_CT_F_NUM) {
139 DEBUGP("nf_conntrack_register_cache: invalid features.: 0x%x\n",
140 features);
141 return -EINVAL;
142 }
143
Ingo Molnar57b47a52006-03-20 22:35:41 -0800144 mutex_lock(&nf_ct_cache_mutex);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800145
146 write_lock_bh(&nf_ct_cache_lock);
147 /* e.g: multiple helpers are loaded */
148 if (nf_ct_cache[features].use > 0) {
149 DEBUGP("nf_conntrack_register_cache: already resisterd.\n");
150 if ((!strncmp(nf_ct_cache[features].name, name,
151 NF_CT_FEATURES_NAMELEN))
Harald Weltedc808fe2006-03-20 17:56:32 -0800152 && nf_ct_cache[features].size == size) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800153 DEBUGP("nf_conntrack_register_cache: reusing.\n");
154 nf_ct_cache[features].use++;
155 ret = 0;
156 } else
157 ret = -EBUSY;
158
159 write_unlock_bh(&nf_ct_cache_lock);
Ingo Molnar57b47a52006-03-20 22:35:41 -0800160 mutex_unlock(&nf_ct_cache_mutex);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800161 return ret;
162 }
163 write_unlock_bh(&nf_ct_cache_lock);
164
165 /*
166 * The memory space for name of slab cache must be alive until
167 * cache is destroyed.
168 */
169 cache_name = kmalloc(sizeof(char)*NF_CT_FEATURES_NAMELEN, GFP_ATOMIC);
170 if (cache_name == NULL) {
171 DEBUGP("nf_conntrack_register_cache: can't alloc cache_name\n");
172 ret = -ENOMEM;
173 goto out_up_mutex;
174 }
175
176 if (strlcpy(cache_name, name, NF_CT_FEATURES_NAMELEN)
177 >= NF_CT_FEATURES_NAMELEN) {
178 printk("nf_conntrack_register_cache: name too long\n");
179 ret = -EINVAL;
180 goto out_free_name;
181 }
182
183 cachep = kmem_cache_create(cache_name, size, 0, 0,
184 NULL, NULL);
185 if (!cachep) {
186 printk("nf_conntrack_register_cache: Can't create slab cache "
187 "for the features = 0x%x\n", features);
188 ret = -ENOMEM;
189 goto out_free_name;
190 }
191
192 write_lock_bh(&nf_ct_cache_lock);
193 nf_ct_cache[features].use = 1;
194 nf_ct_cache[features].size = size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800195 nf_ct_cache[features].cachep = cachep;
196 nf_ct_cache[features].name = cache_name;
197 write_unlock_bh(&nf_ct_cache_lock);
198
199 goto out_up_mutex;
200
201out_free_name:
202 kfree(cache_name);
203out_up_mutex:
Ingo Molnar57b47a52006-03-20 22:35:41 -0800204 mutex_unlock(&nf_ct_cache_mutex);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800205 return ret;
206}
Patrick McHardy13b18332006-12-02 22:11:25 -0800207EXPORT_SYMBOL_GPL(nf_conntrack_register_cache);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800208
209/* FIXME: In the current, only nf_conntrack_cleanup() can call this function. */
210void nf_conntrack_unregister_cache(u_int32_t features)
211{
Christoph Lametere18b8902006-12-06 20:33:20 -0800212 struct kmem_cache *cachep;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800213 char *name;
214
215 /*
216 * This assures that kmem_cache_create() isn't called before destroying
217 * slab cache.
218 */
219 DEBUGP("nf_conntrack_unregister_cache: 0x%04x\n", features);
Ingo Molnar57b47a52006-03-20 22:35:41 -0800220 mutex_lock(&nf_ct_cache_mutex);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800221
222 write_lock_bh(&nf_ct_cache_lock);
223 if (--nf_ct_cache[features].use > 0) {
224 write_unlock_bh(&nf_ct_cache_lock);
Ingo Molnar57b47a52006-03-20 22:35:41 -0800225 mutex_unlock(&nf_ct_cache_mutex);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800226 return;
227 }
228 cachep = nf_ct_cache[features].cachep;
229 name = nf_ct_cache[features].name;
230 nf_ct_cache[features].cachep = NULL;
231 nf_ct_cache[features].name = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800232 nf_ct_cache[features].size = 0;
233 write_unlock_bh(&nf_ct_cache_lock);
234
235 synchronize_net();
236
237 kmem_cache_destroy(cachep);
238 kfree(name);
239
Ingo Molnar57b47a52006-03-20 22:35:41 -0800240 mutex_unlock(&nf_ct_cache_mutex);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800241}
Patrick McHardy13b18332006-12-02 22:11:25 -0800242EXPORT_SYMBOL_GPL(nf_conntrack_unregister_cache);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800243
244int
245nf_ct_get_tuple(const struct sk_buff *skb,
246 unsigned int nhoff,
247 unsigned int dataoff,
248 u_int16_t l3num,
249 u_int8_t protonum,
250 struct nf_conntrack_tuple *tuple,
251 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100252 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800253{
254 NF_CT_TUPLE_U_BLANK(tuple);
255
256 tuple->src.l3num = l3num;
257 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
258 return 0;
259
260 tuple->dst.protonum = protonum;
261 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
262
Martin Josefsson605dcad2006-11-29 02:35:06 +0100263 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800264}
Patrick McHardy13b18332006-12-02 22:11:25 -0800265EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800266
267int
268nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
269 const struct nf_conntrack_tuple *orig,
270 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100271 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800272{
273 NF_CT_TUPLE_U_BLANK(inverse);
274
275 inverse->src.l3num = orig->src.l3num;
276 if (l3proto->invert_tuple(inverse, orig) == 0)
277 return 0;
278
279 inverse->dst.dir = !orig->dst.dir;
280
281 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100282 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800283}
Patrick McHardy13b18332006-12-02 22:11:25 -0800284EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800285
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800286static void
287clean_from_lists(struct nf_conn *ct)
288{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800289 DEBUGP("clean_from_lists(%p)\n", ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700290 list_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].list);
291 list_del(&ct->tuplehash[IP_CT_DIR_REPLY].list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800292
293 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800294 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800295}
296
297static void
298destroy_conntrack(struct nf_conntrack *nfct)
299{
300 struct nf_conn *ct = (struct nf_conn *)nfct;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100301 struct nf_conntrack_l4proto *l4proto;
Patrick McHardy982d9a92007-02-12 11:14:11 -0800302 typeof(nf_conntrack_destroyed) destroyed;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800303
304 DEBUGP("destroy_conntrack(%p)\n", ct);
305 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
306 NF_CT_ASSERT(!timer_pending(&ct->timeout));
307
308 nf_conntrack_event(IPCT_DESTROY, ct);
309 set_bit(IPS_DYING_BIT, &ct->status);
310
311 /* To make sure we don't get any weird locking issues here:
312 * destroy_conntrack() MUST NOT be called with a write lock
313 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800314 rcu_read_lock();
Patrick McHardy923f4902007-02-12 11:12:57 -0800315 l4proto = __nf_ct_l4proto_find(ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.l3num,
316 ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.protonum);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100317 if (l4proto && l4proto->destroy)
318 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800319
Patrick McHardy982d9a92007-02-12 11:14:11 -0800320 destroyed = rcu_dereference(nf_conntrack_destroyed);
321 if (destroyed)
322 destroyed(ct);
323
324 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800325
326 write_lock_bh(&nf_conntrack_lock);
327 /* Expectations will have been removed in clean_from_lists,
328 * except TFTP can create an expectation on the first packet,
329 * before connection is in the list, so we need to clean here,
330 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800331 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800332
333 /* We overload first tuple to link into unconfirmed list. */
334 if (!nf_ct_is_confirmed(ct)) {
335 BUG_ON(list_empty(&ct->tuplehash[IP_CT_DIR_ORIGINAL].list));
336 list_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].list);
337 }
338
339 NF_CT_STAT_INC(delete);
340 write_unlock_bh(&nf_conntrack_lock);
341
342 if (ct->master)
343 nf_ct_put(ct->master);
344
345 DEBUGP("destroy_conntrack: returning ct=%p to slab\n", ct);
346 nf_conntrack_free(ct);
347}
348
349static void death_by_timeout(unsigned long ul_conntrack)
350{
351 struct nf_conn *ct = (void *)ul_conntrack;
Patrick McHardy5397e972007-05-19 14:23:52 -0700352 struct nf_conn_help *help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700353 struct nf_conntrack_helper *helper;
Patrick McHardy5397e972007-05-19 14:23:52 -0700354
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700355 if (help) {
356 rcu_read_lock();
357 helper = rcu_dereference(help->helper);
358 if (helper && helper->destroy)
359 helper->destroy(ct);
360 rcu_read_unlock();
361 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800362
363 write_lock_bh(&nf_conntrack_lock);
364 /* Inside lock so preempt is disabled on module removal path.
365 * Otherwise we can get spurious warnings. */
366 NF_CT_STAT_INC(delete_list);
367 clean_from_lists(ct);
368 write_unlock_bh(&nf_conntrack_lock);
369 nf_ct_put(ct);
370}
371
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800372struct nf_conntrack_tuple_hash *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800373__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
374 const struct nf_conn *ignored_conntrack)
375{
376 struct nf_conntrack_tuple_hash *h;
377 unsigned int hash = hash_conntrack(tuple);
378
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800379 list_for_each_entry(h, &nf_conntrack_hash[hash], list) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700380 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
381 nf_ct_tuple_equal(tuple, &h->tuple)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800382 NF_CT_STAT_INC(found);
383 return h;
384 }
385 NF_CT_STAT_INC(searched);
386 }
387
388 return NULL;
389}
Patrick McHardy13b18332006-12-02 22:11:25 -0800390EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800391
392/* Find a connection corresponding to a tuple. */
393struct nf_conntrack_tuple_hash *
394nf_conntrack_find_get(const struct nf_conntrack_tuple *tuple,
395 const struct nf_conn *ignored_conntrack)
396{
397 struct nf_conntrack_tuple_hash *h;
398
399 read_lock_bh(&nf_conntrack_lock);
400 h = __nf_conntrack_find(tuple, ignored_conntrack);
401 if (h)
402 atomic_inc(&nf_ct_tuplehash_to_ctrack(h)->ct_general.use);
403 read_unlock_bh(&nf_conntrack_lock);
404
405 return h;
406}
Patrick McHardy13b18332006-12-02 22:11:25 -0800407EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800408
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800409static void __nf_conntrack_hash_insert(struct nf_conn *ct,
410 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800411 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800412{
413 ct->id = ++nf_conntrack_next_id;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700414 list_add(&ct->tuplehash[IP_CT_DIR_ORIGINAL].list,
415 &nf_conntrack_hash[hash]);
416 list_add(&ct->tuplehash[IP_CT_DIR_REPLY].list,
417 &nf_conntrack_hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800418}
419
420void nf_conntrack_hash_insert(struct nf_conn *ct)
421{
422 unsigned int hash, repl_hash;
423
424 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
425 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
426
427 write_lock_bh(&nf_conntrack_lock);
428 __nf_conntrack_hash_insert(ct, hash, repl_hash);
429 write_unlock_bh(&nf_conntrack_lock);
430}
Patrick McHardy13b18332006-12-02 22:11:25 -0800431EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800432
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800433/* Confirm a connection given skb; places it in hash table */
434int
435__nf_conntrack_confirm(struct sk_buff **pskb)
436{
437 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700438 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800439 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700440 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800441 enum ip_conntrack_info ctinfo;
442
443 ct = nf_ct_get(*pskb, &ctinfo);
444
445 /* ipt_REJECT uses nf_conntrack_attach to attach related
446 ICMP/TCP RST packets in other direction. Actual packet
447 which created connection will be IP_CT_NEW or for an
448 expected connection, IP_CT_RELATED. */
449 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
450 return NF_ACCEPT;
451
452 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
453 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
454
455 /* We're not in hash table, and we refuse to set up related
456 connections for unconfirmed conns. But packet copies and
457 REJECT will give spurious warnings here. */
458 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
459
460 /* No external references means noone else could have
461 confirmed us. */
462 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
463 DEBUGP("Confirming conntrack %p\n", ct);
464
465 write_lock_bh(&nf_conntrack_lock);
466
467 /* See if there's one in the list already, including reverse:
468 NAT could have grabbed it without realizing, since we're
469 not in the hash. If there is, we lost race. */
Patrick McHardydf0933d2006-09-20 11:57:53 -0700470 list_for_each_entry(h, &nf_conntrack_hash[hash], list)
471 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
472 &h->tuple))
473 goto out;
474 list_for_each_entry(h, &nf_conntrack_hash[repl_hash], list)
475 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
476 &h->tuple))
477 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800478
Patrick McHardydf0933d2006-09-20 11:57:53 -0700479 /* Remove from unconfirmed list */
480 list_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].list);
481
482 __nf_conntrack_hash_insert(ct, hash, repl_hash);
483 /* Timer relative to confirmation time, not original
484 setting time, otherwise we'd get timer wrap in
485 weird delay cases. */
486 ct->timeout.expires += jiffies;
487 add_timer(&ct->timeout);
488 atomic_inc(&ct->ct_general.use);
489 set_bit(IPS_CONFIRMED_BIT, &ct->status);
490 NF_CT_STAT_INC(insert);
491 write_unlock_bh(&nf_conntrack_lock);
492 help = nfct_help(ct);
493 if (help && help->helper)
494 nf_conntrack_event_cache(IPCT_HELPER, *pskb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800495#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardydf0933d2006-09-20 11:57:53 -0700496 if (test_bit(IPS_SRC_NAT_DONE_BIT, &ct->status) ||
497 test_bit(IPS_DST_NAT_DONE_BIT, &ct->status))
498 nf_conntrack_event_cache(IPCT_NATINFO, *pskb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800499#endif
Patrick McHardydf0933d2006-09-20 11:57:53 -0700500 nf_conntrack_event_cache(master_ct(ct) ?
501 IPCT_RELATED : IPCT_NEW, *pskb);
502 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800503
Patrick McHardydf0933d2006-09-20 11:57:53 -0700504out:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800505 NF_CT_STAT_INC(insert_failed);
506 write_unlock_bh(&nf_conntrack_lock);
507 return NF_DROP;
508}
Patrick McHardy13b18332006-12-02 22:11:25 -0800509EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800510
511/* Returns true if a connection correspondings to the tuple (required
512 for NAT). */
513int
514nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
515 const struct nf_conn *ignored_conntrack)
516{
517 struct nf_conntrack_tuple_hash *h;
518
519 read_lock_bh(&nf_conntrack_lock);
520 h = __nf_conntrack_find(tuple, ignored_conntrack);
521 read_unlock_bh(&nf_conntrack_lock);
522
523 return h != NULL;
524}
Patrick McHardy13b18332006-12-02 22:11:25 -0800525EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800526
527/* There's a small race here where we may free a just-assured
528 connection. Too bad: we're in trouble anyway. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800529static int early_drop(struct list_head *chain)
530{
531 /* Traverse backwards: gives us oldest, which is roughly LRU */
532 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700533 struct nf_conn *ct = NULL, *tmp;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800534 int dropped = 0;
535
536 read_lock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700537 list_for_each_entry_reverse(h, chain, list) {
538 tmp = nf_ct_tuplehash_to_ctrack(h);
539 if (!test_bit(IPS_ASSURED_BIT, &tmp->status)) {
540 ct = tmp;
541 atomic_inc(&ct->ct_general.use);
542 break;
543 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800544 }
545 read_unlock_bh(&nf_conntrack_lock);
546
547 if (!ct)
548 return dropped;
549
550 if (del_timer(&ct->timeout)) {
551 death_by_timeout((unsigned long)ct);
552 dropped = 1;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800553 NF_CT_STAT_INC_ATOMIC(early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800554 }
555 nf_ct_put(ct);
556 return dropped;
557}
558
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800559static struct nf_conn *
560__nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
561 const struct nf_conntrack_tuple *repl,
Patrick McHardy9457d852006-12-02 22:05:25 -0800562 const struct nf_conntrack_l3proto *l3proto,
563 u_int32_t features)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800564{
565 struct nf_conn *conntrack = NULL;
Harald Weltedc808fe2006-03-20 17:56:32 -0800566 struct nf_conntrack_helper *helper;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800567
Harald Weltedc808fe2006-03-20 17:56:32 -0800568 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800569 get_random_bytes(&nf_conntrack_hash_rnd, 4);
570 nf_conntrack_hash_rnd_initted = 1;
571 }
572
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700573 /* We don't want any race condition at early drop stage */
574 atomic_inc(&nf_conntrack_count);
575
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800576 if (nf_conntrack_max
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700577 && atomic_read(&nf_conntrack_count) > nf_conntrack_max) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800578 unsigned int hash = hash_conntrack(orig);
579 /* Try dropping from this hash chain. */
580 if (!early_drop(&nf_conntrack_hash[hash])) {
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700581 atomic_dec(&nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800582 if (net_ratelimit())
583 printk(KERN_WARNING
584 "nf_conntrack: table full, dropping"
585 " packet.\n");
586 return ERR_PTR(-ENOMEM);
587 }
588 }
589
590 /* find features needed by this conntrack. */
Patrick McHardy9457d852006-12-02 22:05:25 -0800591 features |= l3proto->get_features(orig);
Harald Weltedc808fe2006-03-20 17:56:32 -0800592
593 /* FIXME: protect helper list per RCU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800594 read_lock_bh(&nf_conntrack_lock);
Harald Weltedc808fe2006-03-20 17:56:32 -0800595 helper = __nf_ct_helper_find(repl);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800596 /* NAT might want to assign a helper later */
597 if (helper || features & NF_CT_F_NAT)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800598 features |= NF_CT_F_HELP;
599 read_unlock_bh(&nf_conntrack_lock);
600
601 DEBUGP("nf_conntrack_alloc: features=0x%x\n", features);
602
603 read_lock_bh(&nf_ct_cache_lock);
604
Harald Weltedc808fe2006-03-20 17:56:32 -0800605 if (unlikely(!nf_ct_cache[features].use)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800606 DEBUGP("nf_conntrack_alloc: not supported features = 0x%x\n",
607 features);
608 goto out;
609 }
610
611 conntrack = kmem_cache_alloc(nf_ct_cache[features].cachep, GFP_ATOMIC);
612 if (conntrack == NULL) {
613 DEBUGP("nf_conntrack_alloc: Can't alloc conntrack from cache\n");
614 goto out;
615 }
616
617 memset(conntrack, 0, nf_ct_cache[features].size);
618 conntrack->features = features;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800619 atomic_set(&conntrack->ct_general.use, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800620 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
621 conntrack->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
622 /* Don't set timer yet: wait for confirmation */
Patrick McHardye6f689d2007-03-23 11:16:30 -0700623 setup_timer(&conntrack->timeout, death_by_timeout,
624 (unsigned long)conntrack);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700625 read_unlock_bh(&nf_ct_cache_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800626
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700627 return conntrack;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800628out:
629 read_unlock_bh(&nf_ct_cache_lock);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700630 atomic_dec(&nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800631 return conntrack;
632}
633
634struct nf_conn *nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
635 const struct nf_conntrack_tuple *repl)
636{
637 struct nf_conntrack_l3proto *l3proto;
Patrick McHardy923f4902007-02-12 11:12:57 -0800638 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800639
Patrick McHardy923f4902007-02-12 11:12:57 -0800640 rcu_read_lock();
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800641 l3proto = __nf_ct_l3proto_find(orig->src.l3num);
Patrick McHardy923f4902007-02-12 11:12:57 -0800642 ct = __nf_conntrack_alloc(orig, repl, l3proto, 0);
643 rcu_read_unlock();
644
645 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800646}
Patrick McHardy13b18332006-12-02 22:11:25 -0800647EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800648
649void nf_conntrack_free(struct nf_conn *conntrack)
650{
651 u_int32_t features = conntrack->features;
652 NF_CT_ASSERT(features >= NF_CT_F_BASIC && features < NF_CT_F_NUM);
653 DEBUGP("nf_conntrack_free: features = 0x%x, conntrack=%p\n", features,
654 conntrack);
655 kmem_cache_free(nf_ct_cache[features].cachep, conntrack);
656 atomic_dec(&nf_conntrack_count);
657}
Patrick McHardy13b18332006-12-02 22:11:25 -0800658EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800659
660/* Allocate a new conntrack: we return -ENOMEM if classification
661 failed due to stress. Otherwise it really is unclassifiable. */
662static struct nf_conntrack_tuple_hash *
663init_conntrack(const struct nf_conntrack_tuple *tuple,
664 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100665 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800666 struct sk_buff *skb,
667 unsigned int dataoff)
668{
669 struct nf_conn *conntrack;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700670 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800671 struct nf_conntrack_tuple repl_tuple;
672 struct nf_conntrack_expect *exp;
Patrick McHardy9457d852006-12-02 22:05:25 -0800673 u_int32_t features = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800674
Martin Josefsson605dcad2006-11-29 02:35:06 +0100675 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800676 DEBUGP("Can't invert tuple.\n");
677 return NULL;
678 }
679
Patrick McHardy9457d852006-12-02 22:05:25 -0800680 read_lock_bh(&nf_conntrack_lock);
681 exp = __nf_conntrack_expect_find(tuple);
682 if (exp && exp->helper)
683 features = NF_CT_F_HELP;
684 read_unlock_bh(&nf_conntrack_lock);
685
686 conntrack = __nf_conntrack_alloc(tuple, &repl_tuple, l3proto, features);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800687 if (conntrack == NULL || IS_ERR(conntrack)) {
688 DEBUGP("Can't allocate conntrack.\n");
689 return (struct nf_conntrack_tuple_hash *)conntrack;
690 }
691
Martin Josefsson605dcad2006-11-29 02:35:06 +0100692 if (!l4proto->new(conntrack, skb, dataoff)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800693 nf_conntrack_free(conntrack);
694 DEBUGP("init conntrack: can't track with proto module\n");
695 return NULL;
696 }
697
698 write_lock_bh(&nf_conntrack_lock);
699 exp = find_expectation(tuple);
700
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700701 help = nfct_help(conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800702 if (exp) {
703 DEBUGP("conntrack: expectation arrives ct=%p exp=%p\n",
704 conntrack, exp);
705 /* Welcome, Mr. Bond. We've been expecting you... */
706 __set_bit(IPS_EXPECTED_BIT, &conntrack->status);
707 conntrack->master = exp->master;
Patrick McHardy9457d852006-12-02 22:05:25 -0800708 if (exp->helper)
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700709 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800710#ifdef CONFIG_NF_CONNTRACK_MARK
711 conntrack->mark = exp->master->mark;
712#endif
James Morris7c9728c2006-06-09 00:31:46 -0700713#ifdef CONFIG_NF_CONNTRACK_SECMARK
714 conntrack->secmark = exp->master->secmark;
715#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800716 nf_conntrack_get(&conntrack->master->ct_general);
717 NF_CT_STAT_INC(expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800718 } else {
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700719 if (help) {
720 /* not in hash table yet, so not strictly necessary */
721 rcu_assign_pointer(help->helper,
722 __nf_ct_helper_find(&repl_tuple));
723 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800724 NF_CT_STAT_INC(new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800725 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800726
727 /* Overload tuple linked list to put us in unconfirmed list. */
728 list_add(&conntrack->tuplehash[IP_CT_DIR_ORIGINAL].list, &unconfirmed);
729
730 write_unlock_bh(&nf_conntrack_lock);
731
732 if (exp) {
733 if (exp->expectfn)
734 exp->expectfn(conntrack, exp);
735 nf_conntrack_expect_put(exp);
736 }
737
738 return &conntrack->tuplehash[IP_CT_DIR_ORIGINAL];
739}
740
741/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
742static inline struct nf_conn *
743resolve_normal_ct(struct sk_buff *skb,
744 unsigned int dataoff,
745 u_int16_t l3num,
746 u_int8_t protonum,
747 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100748 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800749 int *set_reply,
750 enum ip_conntrack_info *ctinfo)
751{
752 struct nf_conntrack_tuple tuple;
753 struct nf_conntrack_tuple_hash *h;
754 struct nf_conn *ct;
755
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300756 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800757 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100758 l4proto)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800759 DEBUGP("resolve_normal_ct: Can't get tuple\n");
760 return NULL;
761 }
762
763 /* look for tuple match */
764 h = nf_conntrack_find_get(&tuple, NULL);
765 if (!h) {
Martin Josefsson605dcad2006-11-29 02:35:06 +0100766 h = init_conntrack(&tuple, l3proto, l4proto, skb, dataoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800767 if (!h)
768 return NULL;
769 if (IS_ERR(h))
770 return (void *)h;
771 }
772 ct = nf_ct_tuplehash_to_ctrack(h);
773
774 /* It exists; we have (non-exclusive) reference. */
775 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
776 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
777 /* Please set reply bit if this packet OK */
778 *set_reply = 1;
779 } else {
780 /* Once we've had two way comms, always ESTABLISHED. */
781 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
782 DEBUGP("nf_conntrack_in: normal packet for %p\n", ct);
783 *ctinfo = IP_CT_ESTABLISHED;
784 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
785 DEBUGP("nf_conntrack_in: related packet for %p\n", ct);
786 *ctinfo = IP_CT_RELATED;
787 } else {
788 DEBUGP("nf_conntrack_in: new packet for %p\n", ct);
789 *ctinfo = IP_CT_NEW;
790 }
791 *set_reply = 0;
792 }
793 skb->nfct = &ct->ct_general;
794 skb->nfctinfo = *ctinfo;
795 return ct;
796}
797
798unsigned int
799nf_conntrack_in(int pf, unsigned int hooknum, struct sk_buff **pskb)
800{
801 struct nf_conn *ct;
802 enum ip_conntrack_info ctinfo;
803 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100804 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800805 unsigned int dataoff;
806 u_int8_t protonum;
807 int set_reply = 0;
808 int ret;
809
810 /* Previously seen (loopback or untracked)? Ignore. */
811 if ((*pskb)->nfct) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800812 NF_CT_STAT_INC_ATOMIC(ignore);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800813 return NF_ACCEPT;
814 }
815
Patrick McHardy923f4902007-02-12 11:12:57 -0800816 /* rcu_read_lock()ed by nf_hook_slow */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800817 l3proto = __nf_ct_l3proto_find((u_int16_t)pf);
Patrick McHardy923f4902007-02-12 11:12:57 -0800818
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800819 if ((ret = l3proto->prepare(pskb, hooknum, &dataoff, &protonum)) <= 0) {
820 DEBUGP("not prepared to track yet or error occured\n");
821 return -ret;
822 }
823
Martin Josefsson605dcad2006-11-29 02:35:06 +0100824 l4proto = __nf_ct_l4proto_find((u_int16_t)pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800825
826 /* It may be an special packet, error, unclean...
827 * inverse of the return code tells to the netfilter
828 * core what to do with the packet. */
Martin Josefsson605dcad2006-11-29 02:35:06 +0100829 if (l4proto->error != NULL &&
830 (ret = l4proto->error(*pskb, dataoff, &ctinfo, pf, hooknum)) <= 0) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800831 NF_CT_STAT_INC_ATOMIC(error);
832 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800833 return -ret;
834 }
835
Martin Josefsson605dcad2006-11-29 02:35:06 +0100836 ct = resolve_normal_ct(*pskb, dataoff, pf, protonum, l3proto, l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800837 &set_reply, &ctinfo);
838 if (!ct) {
839 /* Not valid part of a connection */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800840 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800841 return NF_ACCEPT;
842 }
843
844 if (IS_ERR(ct)) {
845 /* Too stressed to deal. */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800846 NF_CT_STAT_INC_ATOMIC(drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800847 return NF_DROP;
848 }
849
850 NF_CT_ASSERT((*pskb)->nfct);
851
Martin Josefsson605dcad2006-11-29 02:35:06 +0100852 ret = l4proto->packet(ct, *pskb, dataoff, ctinfo, pf, hooknum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800853 if (ret < 0) {
854 /* Invalid: inverse of the return code tells
855 * the netfilter core what to do */
856 DEBUGP("nf_conntrack_in: Can't track with proto module\n");
857 nf_conntrack_put((*pskb)->nfct);
858 (*pskb)->nfct = NULL;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800859 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800860 return -ret;
861 }
862
863 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
864 nf_conntrack_event_cache(IPCT_STATUS, *pskb);
865
866 return ret;
867}
Patrick McHardy13b18332006-12-02 22:11:25 -0800868EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800869
870int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
871 const struct nf_conntrack_tuple *orig)
872{
Patrick McHardy923f4902007-02-12 11:12:57 -0800873 int ret;
874
875 rcu_read_lock();
876 ret = nf_ct_invert_tuple(inverse, orig,
877 __nf_ct_l3proto_find(orig->src.l3num),
878 __nf_ct_l4proto_find(orig->src.l3num,
879 orig->dst.protonum));
880 rcu_read_unlock();
881 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800882}
Patrick McHardy13b18332006-12-02 22:11:25 -0800883EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800884
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800885/* Alter reply tuple (maybe alter helper). This is for NAT, and is
886 implicitly racy: see __nf_conntrack_confirm */
887void nf_conntrack_alter_reply(struct nf_conn *ct,
888 const struct nf_conntrack_tuple *newreply)
889{
890 struct nf_conn_help *help = nfct_help(ct);
891
892 write_lock_bh(&nf_conntrack_lock);
893 /* Should be unconfirmed, so not in hash table yet */
894 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
895
896 DEBUGP("Altering reply tuple of %p to ", ct);
897 NF_CT_DUMP_TUPLE(newreply);
898
899 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Yasuyuki Kozakai5d78a842007-05-10 14:16:24 -0700900 if (!ct->master && help && help->expecting == 0) {
901 struct nf_conntrack_helper *helper;
902 helper = __nf_ct_helper_find(newreply);
903 if (helper)
904 memset(&help->help, 0, sizeof(help->help));
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700905 /* not in hash table yet, so not strictly necessary */
906 rcu_assign_pointer(help->helper, helper);
Yasuyuki Kozakai5d78a842007-05-10 14:16:24 -0700907 }
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800908 write_unlock_bh(&nf_conntrack_lock);
909}
Patrick McHardy13b18332006-12-02 22:11:25 -0800910EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800911
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800912/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
913void __nf_ct_refresh_acct(struct nf_conn *ct,
914 enum ip_conntrack_info ctinfo,
915 const struct sk_buff *skb,
916 unsigned long extra_jiffies,
917 int do_acct)
918{
919 int event = 0;
920
921 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
922 NF_CT_ASSERT(skb);
923
924 write_lock_bh(&nf_conntrack_lock);
925
Eric Leblond997ae832006-05-29 18:24:20 -0700926 /* Only update if this is not a fixed timeout */
927 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status)) {
928 write_unlock_bh(&nf_conntrack_lock);
929 return;
930 }
931
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800932 /* If not in hash table, timer will not be active yet */
933 if (!nf_ct_is_confirmed(ct)) {
934 ct->timeout.expires = extra_jiffies;
935 event = IPCT_REFRESH;
936 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +0100937 unsigned long newtime = jiffies + extra_jiffies;
938
939 /* Only update the timeout if the new timeout is at least
940 HZ jiffies from the old timeout. Need del_timer for race
941 avoidance (may already be dying). */
942 if (newtime - ct->timeout.expires >= HZ
943 && del_timer(&ct->timeout)) {
944 ct->timeout.expires = newtime;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800945 add_timer(&ct->timeout);
946 event = IPCT_REFRESH;
947 }
948 }
949
950#ifdef CONFIG_NF_CT_ACCT
951 if (do_acct) {
952 ct->counters[CTINFO2DIR(ctinfo)].packets++;
953 ct->counters[CTINFO2DIR(ctinfo)].bytes +=
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300954 skb->len - skb_network_offset(skb);
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100955
956 if ((ct->counters[CTINFO2DIR(ctinfo)].packets & 0x80000000)
957 || (ct->counters[CTINFO2DIR(ctinfo)].bytes & 0x80000000))
958 event |= IPCT_COUNTER_FILLING;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800959 }
960#endif
961
962 write_unlock_bh(&nf_conntrack_lock);
963
964 /* must be unlocked when calling event cache */
965 if (event)
966 nf_conntrack_event_cache(event, skb);
967}
Patrick McHardy13b18332006-12-02 22:11:25 -0800968EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800969
Patrick McHardye281db5c2007-03-04 15:57:25 -0800970#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800971
972#include <linux/netfilter/nfnetlink.h>
973#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -0800974#include <linux/mutex.h>
975
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800976
977/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
978 * in ip_conntrack_core, since we don't want the protocols to autoload
979 * or depend on ctnetlink */
980int nf_ct_port_tuple_to_nfattr(struct sk_buff *skb,
981 const struct nf_conntrack_tuple *tuple)
982{
983 NFA_PUT(skb, CTA_PROTO_SRC_PORT, sizeof(u_int16_t),
984 &tuple->src.u.tcp.port);
985 NFA_PUT(skb, CTA_PROTO_DST_PORT, sizeof(u_int16_t),
986 &tuple->dst.u.tcp.port);
987 return 0;
988
989nfattr_failure:
990 return -1;
991}
Patrick McHardy13b18332006-12-02 22:11:25 -0800992EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nfattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800993
994static const size_t cta_min_proto[CTA_PROTO_MAX] = {
995 [CTA_PROTO_SRC_PORT-1] = sizeof(u_int16_t),
996 [CTA_PROTO_DST_PORT-1] = sizeof(u_int16_t)
997};
998
999int nf_ct_port_nfattr_to_tuple(struct nfattr *tb[],
1000 struct nf_conntrack_tuple *t)
1001{
1002 if (!tb[CTA_PROTO_SRC_PORT-1] || !tb[CTA_PROTO_DST_PORT-1])
1003 return -EINVAL;
1004
1005 if (nfattr_bad_size(tb, CTA_PROTO_MAX, cta_min_proto))
1006 return -EINVAL;
1007
Patrick McHardybff9a892006-12-02 22:05:08 -08001008 t->src.u.tcp.port = *(__be16 *)NFA_DATA(tb[CTA_PROTO_SRC_PORT-1]);
1009 t->dst.u.tcp.port = *(__be16 *)NFA_DATA(tb[CTA_PROTO_DST_PORT-1]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001010
1011 return 0;
1012}
Patrick McHardy13b18332006-12-02 22:11:25 -08001013EXPORT_SYMBOL_GPL(nf_ct_port_nfattr_to_tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001014#endif
1015
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001016/* Used by ipt_REJECT and ip6t_REJECT. */
1017void __nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
1018{
1019 struct nf_conn *ct;
1020 enum ip_conntrack_info ctinfo;
1021
1022 /* This ICMP is in reverse direction to the packet which caused it */
1023 ct = nf_ct_get(skb, &ctinfo);
1024 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
1025 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
1026 else
1027 ctinfo = IP_CT_RELATED;
1028
1029 /* Attach to new skbuff, and increment count */
1030 nskb->nfct = &ct->ct_general;
1031 nskb->nfctinfo = ctinfo;
1032 nf_conntrack_get(nskb->nfct);
1033}
Patrick McHardy13b18332006-12-02 22:11:25 -08001034EXPORT_SYMBOL_GPL(__nf_conntrack_attach);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001035
1036static inline int
1037do_iter(const struct nf_conntrack_tuple_hash *i,
1038 int (*iter)(struct nf_conn *i, void *data),
1039 void *data)
1040{
1041 return iter(nf_ct_tuplehash_to_ctrack(i), data);
1042}
1043
1044/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001045static struct nf_conn *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001046get_next_corpse(int (*iter)(struct nf_conn *i, void *data),
1047 void *data, unsigned int *bucket)
1048{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001049 struct nf_conntrack_tuple_hash *h;
1050 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001051
1052 write_lock_bh(&nf_conntrack_lock);
1053 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001054 list_for_each_entry(h, &nf_conntrack_hash[*bucket], list) {
1055 ct = nf_ct_tuplehash_to_ctrack(h);
1056 if (iter(ct, data))
1057 goto found;
1058 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001059 }
Patrick McHardydf0933d2006-09-20 11:57:53 -07001060 list_for_each_entry(h, &unconfirmed, list) {
1061 ct = nf_ct_tuplehash_to_ctrack(h);
1062 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -08001063 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001064 }
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001065 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001066 return NULL;
1067found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001068 atomic_inc(&ct->ct_general.use);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001069 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001070 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001071}
1072
1073void
1074nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data)
1075{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001076 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001077 unsigned int bucket = 0;
1078
Patrick McHardydf0933d2006-09-20 11:57:53 -07001079 while ((ct = get_next_corpse(iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001080 /* Time to push up daises... */
1081 if (del_timer(&ct->timeout))
1082 death_by_timeout((unsigned long)ct);
1083 /* ... else the timer will get him soon. */
1084
1085 nf_ct_put(ct);
1086 }
1087}
Patrick McHardy13b18332006-12-02 22:11:25 -08001088EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001089
1090static int kill_all(struct nf_conn *i, void *data)
1091{
1092 return 1;
1093}
1094
1095static void free_conntrack_hash(struct list_head *hash, int vmalloced, int size)
1096{
1097 if (vmalloced)
1098 vfree(hash);
1099 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001100 free_pages((unsigned long)hash,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001101 get_order(sizeof(struct list_head) * size));
1102}
1103
Randy Dunlap272491e2006-12-07 01:17:24 -08001104void nf_conntrack_flush(void)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001105{
1106 nf_ct_iterate_cleanup(kill_all, NULL);
1107}
Patrick McHardy13b18332006-12-02 22:11:25 -08001108EXPORT_SYMBOL_GPL(nf_conntrack_flush);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001109
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001110/* Mishearing the voices in his head, our hero wonders how he's
1111 supposed to kill the mall. */
1112void nf_conntrack_cleanup(void)
1113{
1114 int i;
1115
Patrick McHardyc3a47ab2007-02-12 11:09:19 -08001116 rcu_assign_pointer(ip_ct_attach, NULL);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001117
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001118 /* This makes sure all current packets have passed through
1119 netfilter framework. Roll on, two-stage module
1120 delete... */
1121 synchronize_net();
1122
1123 nf_ct_event_cache_flush();
1124 i_see_dead_people:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001125 nf_conntrack_flush();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001126 if (atomic_read(&nf_conntrack_count) != 0) {
1127 schedule();
1128 goto i_see_dead_people;
1129 }
Patrick McHardy66365682005-12-05 13:36:50 -08001130 /* wait until all references to nf_conntrack_untracked are dropped */
1131 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
1132 schedule();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001133
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -07001134 rcu_assign_pointer(nf_ct_destroy, NULL);
1135
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001136 for (i = 0; i < NF_CT_F_NUM; i++) {
1137 if (nf_ct_cache[i].use == 0)
1138 continue;
1139
1140 NF_CT_ASSERT(nf_ct_cache[i].use == 1);
1141 nf_ct_cache[i].use = 1;
1142 nf_conntrack_unregister_cache(i);
1143 }
1144 kmem_cache_destroy(nf_conntrack_expect_cachep);
1145 free_conntrack_hash(nf_conntrack_hash, nf_conntrack_vmalloc,
1146 nf_conntrack_htable_size);
KOVACS Krisztian5a6f2942005-11-15 16:47:34 -08001147
Patrick McHardyac5357e2007-03-14 16:38:25 -07001148 nf_conntrack_proto_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001149}
1150
1151static struct list_head *alloc_hashtable(int size, int *vmalloced)
1152{
1153 struct list_head *hash;
1154 unsigned int i;
1155
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001156 *vmalloced = 0;
1157 hash = (void*)__get_free_pages(GFP_KERNEL,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001158 get_order(sizeof(struct list_head)
1159 * size));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001160 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001161 *vmalloced = 1;
1162 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
1163 hash = vmalloc(sizeof(struct list_head) * size);
1164 }
1165
1166 if (hash)
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001167 for (i = 0; i < size; i++)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001168 INIT_LIST_HEAD(&hash[i]);
1169
1170 return hash;
1171}
1172
1173int set_hashsize(const char *val, struct kernel_param *kp)
1174{
1175 int i, bucket, hashsize, vmalloced;
1176 int old_vmalloced, old_size;
1177 int rnd;
1178 struct list_head *hash, *old_hash;
1179 struct nf_conntrack_tuple_hash *h;
1180
1181 /* On boot, we can set this without any fancy locking. */
1182 if (!nf_conntrack_htable_size)
1183 return param_set_uint(val, kp);
1184
1185 hashsize = simple_strtol(val, NULL, 0);
1186 if (!hashsize)
1187 return -EINVAL;
1188
1189 hash = alloc_hashtable(hashsize, &vmalloced);
1190 if (!hash)
1191 return -ENOMEM;
1192
1193 /* We have to rehahs for the new table anyway, so we also can
1194 * use a newrandom seed */
1195 get_random_bytes(&rnd, 4);
1196
1197 write_lock_bh(&nf_conntrack_lock);
1198 for (i = 0; i < nf_conntrack_htable_size; i++) {
1199 while (!list_empty(&nf_conntrack_hash[i])) {
1200 h = list_entry(nf_conntrack_hash[i].next,
1201 struct nf_conntrack_tuple_hash, list);
1202 list_del(&h->list);
1203 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
1204 list_add_tail(&h->list, &hash[bucket]);
1205 }
1206 }
1207 old_size = nf_conntrack_htable_size;
1208 old_vmalloced = nf_conntrack_vmalloc;
1209 old_hash = nf_conntrack_hash;
1210
1211 nf_conntrack_htable_size = hashsize;
1212 nf_conntrack_vmalloc = vmalloced;
1213 nf_conntrack_hash = hash;
1214 nf_conntrack_hash_rnd = rnd;
1215 write_unlock_bh(&nf_conntrack_lock);
1216
1217 free_conntrack_hash(old_hash, old_vmalloced, old_size);
1218 return 0;
1219}
1220
1221module_param_call(hashsize, set_hashsize, param_get_uint,
1222 &nf_conntrack_htable_size, 0600);
1223
1224int __init nf_conntrack_init(void)
1225{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001226 int ret;
1227
1228 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
1229 * machine has 256 buckets. >= 1GB machines have 8192 buckets. */
1230 if (!nf_conntrack_htable_size) {
1231 nf_conntrack_htable_size
1232 = (((num_physpages << PAGE_SHIFT) / 16384)
1233 / sizeof(struct list_head));
1234 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
1235 nf_conntrack_htable_size = 8192;
1236 if (nf_conntrack_htable_size < 16)
1237 nf_conntrack_htable_size = 16;
1238 }
1239 nf_conntrack_max = 8 * nf_conntrack_htable_size;
1240
1241 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1242 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1243 nf_conntrack_max);
1244
1245 nf_conntrack_hash = alloc_hashtable(nf_conntrack_htable_size,
1246 &nf_conntrack_vmalloc);
1247 if (!nf_conntrack_hash) {
1248 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1249 goto err_out;
1250 }
1251
1252 ret = nf_conntrack_register_cache(NF_CT_F_BASIC, "nf_conntrack:basic",
Harald Weltedc808fe2006-03-20 17:56:32 -08001253 sizeof(struct nf_conn));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001254 if (ret < 0) {
1255 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1256 goto err_free_hash;
1257 }
1258
1259 nf_conntrack_expect_cachep = kmem_cache_create("nf_conntrack_expect",
1260 sizeof(struct nf_conntrack_expect),
1261 0, 0, NULL, NULL);
1262 if (!nf_conntrack_expect_cachep) {
1263 printk(KERN_ERR "Unable to create nf_expect slab cache\n");
1264 goto err_free_conntrack_slab;
1265 }
1266
Patrick McHardyac5357e2007-03-14 16:38:25 -07001267 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001268 if (ret < 0)
1269 goto out_free_expect_slab;
1270
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001271 /* For use by REJECT target */
Patrick McHardyc3a47ab2007-02-12 11:09:19 -08001272 rcu_assign_pointer(ip_ct_attach, __nf_conntrack_attach);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -07001273 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001274
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001275 /* Set up fake conntrack:
1276 - to never be deleted, not in any hashes */
1277 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1278 /* - and look it like as a confirmed connection */
1279 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1280
1281 return ret;
1282
Patrick McHardy933a41e2006-11-29 02:35:18 +01001283out_free_expect_slab:
1284 kmem_cache_destroy(nf_conntrack_expect_cachep);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001285err_free_conntrack_slab:
1286 nf_conntrack_unregister_cache(NF_CT_F_BASIC);
1287err_free_hash:
1288 free_conntrack_hash(nf_conntrack_hash, nf_conntrack_vmalloc,
1289 nf_conntrack_htable_size);
1290err_out:
1291 return -ENOMEM;
1292}