blob: 3d1411012a2c496d5bdf98649321e63074e63e60 [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;
Pablo Neira Ayuso4e3882f2006-03-22 13:55:11 -080066static unsigned int nf_conntrack_next_id;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010067
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080068DEFINE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
69EXPORT_PER_CPU_SYMBOL(nf_conntrack_stat);
70
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080071static int nf_conntrack_hash_rnd_initted;
72static unsigned int nf_conntrack_hash_rnd;
73
74static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
75 unsigned int size, unsigned int rnd)
76{
77 unsigned int a, b;
Sami Farin9b887902007-03-14 16:43:00 -070078
79 a = jhash2(tuple->src.u3.all, ARRAY_SIZE(tuple->src.u3.all),
80 (tuple->src.l3num << 16) | tuple->dst.protonum);
81 b = jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
82 (tuple->src.u.all << 16) | tuple->dst.u.all);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083
84 return jhash_2words(a, b, rnd) % size;
85}
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
116int
117nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
118 const struct nf_conntrack_tuple *orig,
119 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100120 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800121{
122 NF_CT_TUPLE_U_BLANK(inverse);
123
124 inverse->src.l3num = orig->src.l3num;
125 if (l3proto->invert_tuple(inverse, orig) == 0)
126 return 0;
127
128 inverse->dst.dir = !orig->dst.dir;
129
130 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100131 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800132}
Patrick McHardy13b18332006-12-02 22:11:25 -0800133EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800134
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800135static void
136clean_from_lists(struct nf_conn *ct)
137{
Patrick McHardy0d537782007-07-07 22:39:38 -0700138 pr_debug("clean_from_lists(%p)\n", ct);
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700139 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
140 hlist_del(&ct->tuplehash[IP_CT_DIR_REPLY].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800141
142 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800143 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800144}
145
146static void
147destroy_conntrack(struct nf_conntrack *nfct)
148{
149 struct nf_conn *ct = (struct nf_conn *)nfct;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100150 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800151
Patrick McHardy0d537782007-07-07 22:39:38 -0700152 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800153 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
154 NF_CT_ASSERT(!timer_pending(&ct->timeout));
155
156 nf_conntrack_event(IPCT_DESTROY, ct);
157 set_bit(IPS_DYING_BIT, &ct->status);
158
159 /* To make sure we don't get any weird locking issues here:
160 * destroy_conntrack() MUST NOT be called with a write lock
161 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800162 rcu_read_lock();
Patrick McHardy923f4902007-02-12 11:12:57 -0800163 l4proto = __nf_ct_l4proto_find(ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.l3num,
164 ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.protonum);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100165 if (l4proto && l4proto->destroy)
166 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800167
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700168 nf_ct_ext_destroy(ct);
169
Patrick McHardy982d9a92007-02-12 11:14:11 -0800170 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800171
172 write_lock_bh(&nf_conntrack_lock);
173 /* Expectations will have been removed in clean_from_lists,
174 * except TFTP can create an expectation on the first packet,
175 * before connection is in the list, so we need to clean here,
176 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800177 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800178
179 /* We overload first tuple to link into unconfirmed list. */
180 if (!nf_ct_is_confirmed(ct)) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700181 BUG_ON(hlist_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode));
182 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800183 }
184
185 NF_CT_STAT_INC(delete);
186 write_unlock_bh(&nf_conntrack_lock);
187
188 if (ct->master)
189 nf_ct_put(ct->master);
190
Patrick McHardy0d537782007-07-07 22:39:38 -0700191 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800192 nf_conntrack_free(ct);
193}
194
195static void death_by_timeout(unsigned long ul_conntrack)
196{
197 struct nf_conn *ct = (void *)ul_conntrack;
Patrick McHardy5397e972007-05-19 14:23:52 -0700198 struct nf_conn_help *help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700199 struct nf_conntrack_helper *helper;
Patrick McHardy5397e972007-05-19 14:23:52 -0700200
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700201 if (help) {
202 rcu_read_lock();
203 helper = rcu_dereference(help->helper);
204 if (helper && helper->destroy)
205 helper->destroy(ct);
206 rcu_read_unlock();
207 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800208
209 write_lock_bh(&nf_conntrack_lock);
210 /* Inside lock so preempt is disabled on module removal path.
211 * Otherwise we can get spurious warnings. */
212 NF_CT_STAT_INC(delete_list);
213 clean_from_lists(ct);
214 write_unlock_bh(&nf_conntrack_lock);
215 nf_ct_put(ct);
216}
217
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800218struct nf_conntrack_tuple_hash *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800219__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
220 const struct nf_conn *ignored_conntrack)
221{
222 struct nf_conntrack_tuple_hash *h;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700223 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800224 unsigned int hash = hash_conntrack(tuple);
225
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700226 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700227 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
228 nf_ct_tuple_equal(tuple, &h->tuple)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800229 NF_CT_STAT_INC(found);
230 return h;
231 }
232 NF_CT_STAT_INC(searched);
233 }
234
235 return NULL;
236}
Patrick McHardy13b18332006-12-02 22:11:25 -0800237EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800238
239/* Find a connection corresponding to a tuple. */
240struct nf_conntrack_tuple_hash *
Patrick McHardy330f7db2007-07-07 22:28:42 -0700241nf_conntrack_find_get(const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800242{
243 struct nf_conntrack_tuple_hash *h;
244
245 read_lock_bh(&nf_conntrack_lock);
Patrick McHardy330f7db2007-07-07 22:28:42 -0700246 h = __nf_conntrack_find(tuple, NULL);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800247 if (h)
248 atomic_inc(&nf_ct_tuplehash_to_ctrack(h)->ct_general.use);
249 read_unlock_bh(&nf_conntrack_lock);
250
251 return h;
252}
Patrick McHardy13b18332006-12-02 22:11:25 -0800253EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800254
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800255static void __nf_conntrack_hash_insert(struct nf_conn *ct,
256 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800257 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800258{
259 ct->id = ++nf_conntrack_next_id;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700260 hlist_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
261 &nf_conntrack_hash[hash]);
262 hlist_add_head(&ct->tuplehash[IP_CT_DIR_REPLY].hnode,
263 &nf_conntrack_hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800264}
265
266void nf_conntrack_hash_insert(struct nf_conn *ct)
267{
268 unsigned int hash, repl_hash;
269
270 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
271 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
272
273 write_lock_bh(&nf_conntrack_lock);
274 __nf_conntrack_hash_insert(ct, hash, repl_hash);
275 write_unlock_bh(&nf_conntrack_lock);
276}
Patrick McHardy13b18332006-12-02 22:11:25 -0800277EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800278
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800279/* Confirm a connection given skb; places it in hash table */
280int
281__nf_conntrack_confirm(struct sk_buff **pskb)
282{
283 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700284 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800285 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700286 struct nf_conn_help *help;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700287 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800288 enum ip_conntrack_info ctinfo;
289
290 ct = nf_ct_get(*pskb, &ctinfo);
291
292 /* ipt_REJECT uses nf_conntrack_attach to attach related
293 ICMP/TCP RST packets in other direction. Actual packet
294 which created connection will be IP_CT_NEW or for an
295 expected connection, IP_CT_RELATED. */
296 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
297 return NF_ACCEPT;
298
299 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
300 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
301
302 /* We're not in hash table, and we refuse to set up related
303 connections for unconfirmed conns. But packet copies and
304 REJECT will give spurious warnings here. */
305 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
306
307 /* No external references means noone else could have
308 confirmed us. */
309 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700310 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800311
312 write_lock_bh(&nf_conntrack_lock);
313
314 /* See if there's one in the list already, including reverse:
315 NAT could have grabbed it without realizing, since we're
316 not in the hash. If there is, we lost race. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700317 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700318 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
319 &h->tuple))
320 goto out;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700321 hlist_for_each_entry(h, n, &nf_conntrack_hash[repl_hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700322 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
323 &h->tuple))
324 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800325
Patrick McHardydf0933d2006-09-20 11:57:53 -0700326 /* Remove from unconfirmed list */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700327 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700328
329 __nf_conntrack_hash_insert(ct, hash, repl_hash);
330 /* Timer relative to confirmation time, not original
331 setting time, otherwise we'd get timer wrap in
332 weird delay cases. */
333 ct->timeout.expires += jiffies;
334 add_timer(&ct->timeout);
335 atomic_inc(&ct->ct_general.use);
336 set_bit(IPS_CONFIRMED_BIT, &ct->status);
337 NF_CT_STAT_INC(insert);
338 write_unlock_bh(&nf_conntrack_lock);
339 help = nfct_help(ct);
340 if (help && help->helper)
341 nf_conntrack_event_cache(IPCT_HELPER, *pskb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800342#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardydf0933d2006-09-20 11:57:53 -0700343 if (test_bit(IPS_SRC_NAT_DONE_BIT, &ct->status) ||
344 test_bit(IPS_DST_NAT_DONE_BIT, &ct->status))
345 nf_conntrack_event_cache(IPCT_NATINFO, *pskb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800346#endif
Patrick McHardydf0933d2006-09-20 11:57:53 -0700347 nf_conntrack_event_cache(master_ct(ct) ?
348 IPCT_RELATED : IPCT_NEW, *pskb);
349 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800350
Patrick McHardydf0933d2006-09-20 11:57:53 -0700351out:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800352 NF_CT_STAT_INC(insert_failed);
353 write_unlock_bh(&nf_conntrack_lock);
354 return NF_DROP;
355}
Patrick McHardy13b18332006-12-02 22:11:25 -0800356EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800357
358/* Returns true if a connection correspondings to the tuple (required
359 for NAT). */
360int
361nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
362 const struct nf_conn *ignored_conntrack)
363{
364 struct nf_conntrack_tuple_hash *h;
365
366 read_lock_bh(&nf_conntrack_lock);
367 h = __nf_conntrack_find(tuple, ignored_conntrack);
368 read_unlock_bh(&nf_conntrack_lock);
369
370 return h != NULL;
371}
Patrick McHardy13b18332006-12-02 22:11:25 -0800372EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800373
Patrick McHardy7ae77302007-07-07 22:37:38 -0700374#define NF_CT_EVICTION_RANGE 8
375
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800376/* There's a small race here where we may free a just-assured
377 connection. Too bad: we're in trouble anyway. */
Patrick McHardy7ae77302007-07-07 22:37:38 -0700378static int early_drop(unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800379{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700380 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800381 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700382 struct nf_conn *ct = NULL, *tmp;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700383 struct hlist_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700384 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800385 int dropped = 0;
386
387 read_lock_bh(&nf_conntrack_lock);
Patrick McHardy7ae77302007-07-07 22:37:38 -0700388 for (i = 0; i < nf_conntrack_htable_size; i++) {
389 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode) {
390 tmp = nf_ct_tuplehash_to_ctrack(h);
391 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
392 ct = tmp;
393 cnt++;
394 }
395 if (ct || cnt >= NF_CT_EVICTION_RANGE)
396 break;
397 hash = (hash + 1) % nf_conntrack_htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800398 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700399 if (ct)
400 atomic_inc(&ct->ct_general.use);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800401 read_unlock_bh(&nf_conntrack_lock);
402
403 if (!ct)
404 return dropped;
405
406 if (del_timer(&ct->timeout)) {
407 death_by_timeout((unsigned long)ct);
408 dropped = 1;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800409 NF_CT_STAT_INC_ATOMIC(early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800410 }
411 nf_ct_put(ct);
412 return dropped;
413}
414
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700415struct nf_conn *nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
416 const struct nf_conntrack_tuple *repl)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800417{
418 struct nf_conn *conntrack = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800419
Harald Weltedc808fe2006-03-20 17:56:32 -0800420 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800421 get_random_bytes(&nf_conntrack_hash_rnd, 4);
422 nf_conntrack_hash_rnd_initted = 1;
423 }
424
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700425 /* We don't want any race condition at early drop stage */
426 atomic_inc(&nf_conntrack_count);
427
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800428 if (nf_conntrack_max
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700429 && atomic_read(&nf_conntrack_count) > nf_conntrack_max) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800430 unsigned int hash = hash_conntrack(orig);
Patrick McHardy7ae77302007-07-07 22:37:38 -0700431 if (!early_drop(hash)) {
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700432 atomic_dec(&nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800433 if (net_ratelimit())
434 printk(KERN_WARNING
435 "nf_conntrack: table full, dropping"
436 " packet.\n");
437 return ERR_PTR(-ENOMEM);
438 }
439 }
440
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700441 conntrack = kmem_cache_zalloc(nf_conntrack_cachep, GFP_ATOMIC);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800442 if (conntrack == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700443 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700444 atomic_dec(&nf_conntrack_count);
445 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800446 }
447
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800448 atomic_set(&conntrack->ct_general.use, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800449 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
450 conntrack->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
451 /* Don't set timer yet: wait for confirmation */
Patrick McHardye6f689d2007-03-23 11:16:30 -0700452 setup_timer(&conntrack->timeout, death_by_timeout,
453 (unsigned long)conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800454
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700455 return conntrack;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800456}
Patrick McHardy13b18332006-12-02 22:11:25 -0800457EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800458
459void nf_conntrack_free(struct nf_conn *conntrack)
460{
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700461 nf_ct_ext_free(conntrack);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700462 kmem_cache_free(nf_conntrack_cachep, conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800463 atomic_dec(&nf_conntrack_count);
464}
Patrick McHardy13b18332006-12-02 22:11:25 -0800465EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800466
467/* Allocate a new conntrack: we return -ENOMEM if classification
468 failed due to stress. Otherwise it really is unclassifiable. */
469static struct nf_conntrack_tuple_hash *
470init_conntrack(const struct nf_conntrack_tuple *tuple,
471 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100472 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800473 struct sk_buff *skb,
474 unsigned int dataoff)
475{
476 struct nf_conn *conntrack;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700477 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800478 struct nf_conntrack_tuple repl_tuple;
479 struct nf_conntrack_expect *exp;
480
Martin Josefsson605dcad2006-11-29 02:35:06 +0100481 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700482 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800483 return NULL;
484 }
485
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700486 conntrack = nf_conntrack_alloc(tuple, &repl_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800487 if (conntrack == NULL || IS_ERR(conntrack)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700488 pr_debug("Can't allocate conntrack.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800489 return (struct nf_conntrack_tuple_hash *)conntrack;
490 }
491
Martin Josefsson605dcad2006-11-29 02:35:06 +0100492 if (!l4proto->new(conntrack, skb, dataoff)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800493 nf_conntrack_free(conntrack);
Patrick McHardy0d537782007-07-07 22:39:38 -0700494 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800495 return NULL;
496 }
497
498 write_lock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -0700499 exp = nf_ct_find_expectation(tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800500 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700501 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
502 conntrack, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800503 /* Welcome, Mr. Bond. We've been expecting you... */
504 __set_bit(IPS_EXPECTED_BIT, &conntrack->status);
505 conntrack->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700506 if (exp->helper) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700507 help = nf_ct_helper_ext_add(conntrack, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700508 if (help)
509 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700510 }
511
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800512#ifdef CONFIG_NF_CONNTRACK_MARK
513 conntrack->mark = exp->master->mark;
514#endif
James Morris7c9728c2006-06-09 00:31:46 -0700515#ifdef CONFIG_NF_CONNTRACK_SECMARK
516 conntrack->secmark = exp->master->secmark;
517#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800518 nf_conntrack_get(&conntrack->master->ct_general);
519 NF_CT_STAT_INC(expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800520 } else {
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700521 struct nf_conntrack_helper *helper;
522
523 helper = __nf_ct_helper_find(&repl_tuple);
524 if (helper) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700525 help = nf_ct_helper_ext_add(conntrack, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700526 if (help)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700527 rcu_assign_pointer(help->helper, helper);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700528 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800529 NF_CT_STAT_INC(new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800530 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800531
532 /* Overload tuple linked list to put us in unconfirmed list. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700533 hlist_add_head(&conntrack->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
534 &unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800535
536 write_unlock_bh(&nf_conntrack_lock);
537
538 if (exp) {
539 if (exp->expectfn)
540 exp->expectfn(conntrack, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700541 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800542 }
543
544 return &conntrack->tuplehash[IP_CT_DIR_ORIGINAL];
545}
546
547/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
548static inline struct nf_conn *
549resolve_normal_ct(struct sk_buff *skb,
550 unsigned int dataoff,
551 u_int16_t l3num,
552 u_int8_t protonum,
553 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100554 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800555 int *set_reply,
556 enum ip_conntrack_info *ctinfo)
557{
558 struct nf_conntrack_tuple tuple;
559 struct nf_conntrack_tuple_hash *h;
560 struct nf_conn *ct;
561
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300562 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800563 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100564 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700565 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800566 return NULL;
567 }
568
569 /* look for tuple match */
Patrick McHardy330f7db2007-07-07 22:28:42 -0700570 h = nf_conntrack_find_get(&tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800571 if (!h) {
Martin Josefsson605dcad2006-11-29 02:35:06 +0100572 h = init_conntrack(&tuple, l3proto, l4proto, skb, dataoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800573 if (!h)
574 return NULL;
575 if (IS_ERR(h))
576 return (void *)h;
577 }
578 ct = nf_ct_tuplehash_to_ctrack(h);
579
580 /* It exists; we have (non-exclusive) reference. */
581 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
582 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
583 /* Please set reply bit if this packet OK */
584 *set_reply = 1;
585 } else {
586 /* Once we've had two way comms, always ESTABLISHED. */
587 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700588 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800589 *ctinfo = IP_CT_ESTABLISHED;
590 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700591 pr_debug("nf_conntrack_in: related packet for %p\n",
592 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800593 *ctinfo = IP_CT_RELATED;
594 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700595 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800596 *ctinfo = IP_CT_NEW;
597 }
598 *set_reply = 0;
599 }
600 skb->nfct = &ct->ct_general;
601 skb->nfctinfo = *ctinfo;
602 return ct;
603}
604
605unsigned int
606nf_conntrack_in(int pf, unsigned int hooknum, struct sk_buff **pskb)
607{
608 struct nf_conn *ct;
609 enum ip_conntrack_info ctinfo;
610 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100611 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800612 unsigned int dataoff;
613 u_int8_t protonum;
614 int set_reply = 0;
615 int ret;
616
617 /* Previously seen (loopback or untracked)? Ignore. */
618 if ((*pskb)->nfct) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800619 NF_CT_STAT_INC_ATOMIC(ignore);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800620 return NF_ACCEPT;
621 }
622
Patrick McHardy923f4902007-02-12 11:12:57 -0800623 /* rcu_read_lock()ed by nf_hook_slow */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800624 l3proto = __nf_ct_l3proto_find((u_int16_t)pf);
Patrick McHardy923f4902007-02-12 11:12:57 -0800625
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800626 if ((ret = l3proto->prepare(pskb, hooknum, &dataoff, &protonum)) <= 0) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700627 pr_debug("not prepared to track yet or error occured\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800628 return -ret;
629 }
630
Martin Josefsson605dcad2006-11-29 02:35:06 +0100631 l4proto = __nf_ct_l4proto_find((u_int16_t)pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800632
633 /* It may be an special packet, error, unclean...
634 * inverse of the return code tells to the netfilter
635 * core what to do with the packet. */
Martin Josefsson605dcad2006-11-29 02:35:06 +0100636 if (l4proto->error != NULL &&
637 (ret = l4proto->error(*pskb, dataoff, &ctinfo, pf, hooknum)) <= 0) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800638 NF_CT_STAT_INC_ATOMIC(error);
639 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800640 return -ret;
641 }
642
Martin Josefsson605dcad2006-11-29 02:35:06 +0100643 ct = resolve_normal_ct(*pskb, dataoff, pf, protonum, l3proto, l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800644 &set_reply, &ctinfo);
645 if (!ct) {
646 /* Not valid part of a connection */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800647 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800648 return NF_ACCEPT;
649 }
650
651 if (IS_ERR(ct)) {
652 /* Too stressed to deal. */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800653 NF_CT_STAT_INC_ATOMIC(drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800654 return NF_DROP;
655 }
656
657 NF_CT_ASSERT((*pskb)->nfct);
658
Martin Josefsson605dcad2006-11-29 02:35:06 +0100659 ret = l4proto->packet(ct, *pskb, dataoff, ctinfo, pf, hooknum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800660 if (ret < 0) {
661 /* Invalid: inverse of the return code tells
662 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -0700663 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800664 nf_conntrack_put((*pskb)->nfct);
665 (*pskb)->nfct = NULL;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800666 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800667 return -ret;
668 }
669
670 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
671 nf_conntrack_event_cache(IPCT_STATUS, *pskb);
672
673 return ret;
674}
Patrick McHardy13b18332006-12-02 22:11:25 -0800675EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800676
677int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
678 const struct nf_conntrack_tuple *orig)
679{
Patrick McHardy923f4902007-02-12 11:12:57 -0800680 int ret;
681
682 rcu_read_lock();
683 ret = nf_ct_invert_tuple(inverse, orig,
684 __nf_ct_l3proto_find(orig->src.l3num),
685 __nf_ct_l4proto_find(orig->src.l3num,
686 orig->dst.protonum));
687 rcu_read_unlock();
688 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800689}
Patrick McHardy13b18332006-12-02 22:11:25 -0800690EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800691
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800692/* Alter reply tuple (maybe alter helper). This is for NAT, and is
693 implicitly racy: see __nf_conntrack_confirm */
694void nf_conntrack_alter_reply(struct nf_conn *ct,
695 const struct nf_conntrack_tuple *newreply)
696{
697 struct nf_conn_help *help = nfct_help(ct);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700698 struct nf_conntrack_helper *helper;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800699
700 write_lock_bh(&nf_conntrack_lock);
701 /* Should be unconfirmed, so not in hash table yet */
702 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
703
Patrick McHardy0d537782007-07-07 22:39:38 -0700704 pr_debug("Altering reply tuple of %p to ", ct);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800705 NF_CT_DUMP_TUPLE(newreply);
706
707 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700708 if (ct->master || (help && help->expecting != 0))
709 goto out;
710
711 helper = __nf_ct_helper_find(newreply);
712 if (helper == NULL) {
713 if (help)
714 rcu_assign_pointer(help->helper, NULL);
715 goto out;
Yasuyuki Kozakai5d78a842007-05-10 14:16:24 -0700716 }
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700717
718 if (help == NULL) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700719 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
720 if (help == NULL)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700721 goto out;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700722 } else {
723 memset(&help->help, 0, sizeof(help->help));
724 }
725
726 rcu_assign_pointer(help->helper, helper);
727out:
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800728 write_unlock_bh(&nf_conntrack_lock);
729}
Patrick McHardy13b18332006-12-02 22:11:25 -0800730EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800731
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800732/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
733void __nf_ct_refresh_acct(struct nf_conn *ct,
734 enum ip_conntrack_info ctinfo,
735 const struct sk_buff *skb,
736 unsigned long extra_jiffies,
737 int do_acct)
738{
739 int event = 0;
740
741 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
742 NF_CT_ASSERT(skb);
743
744 write_lock_bh(&nf_conntrack_lock);
745
Eric Leblond997ae832006-05-29 18:24:20 -0700746 /* Only update if this is not a fixed timeout */
747 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status)) {
748 write_unlock_bh(&nf_conntrack_lock);
749 return;
750 }
751
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800752 /* If not in hash table, timer will not be active yet */
753 if (!nf_ct_is_confirmed(ct)) {
754 ct->timeout.expires = extra_jiffies;
755 event = IPCT_REFRESH;
756 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +0100757 unsigned long newtime = jiffies + extra_jiffies;
758
759 /* Only update the timeout if the new timeout is at least
760 HZ jiffies from the old timeout. Need del_timer for race
761 avoidance (may already be dying). */
762 if (newtime - ct->timeout.expires >= HZ
763 && del_timer(&ct->timeout)) {
764 ct->timeout.expires = newtime;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800765 add_timer(&ct->timeout);
766 event = IPCT_REFRESH;
767 }
768 }
769
770#ifdef CONFIG_NF_CT_ACCT
771 if (do_acct) {
772 ct->counters[CTINFO2DIR(ctinfo)].packets++;
773 ct->counters[CTINFO2DIR(ctinfo)].bytes +=
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300774 skb->len - skb_network_offset(skb);
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100775
776 if ((ct->counters[CTINFO2DIR(ctinfo)].packets & 0x80000000)
777 || (ct->counters[CTINFO2DIR(ctinfo)].bytes & 0x80000000))
778 event |= IPCT_COUNTER_FILLING;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800779 }
780#endif
781
782 write_unlock_bh(&nf_conntrack_lock);
783
784 /* must be unlocked when calling event cache */
785 if (event)
786 nf_conntrack_event_cache(event, skb);
787}
Patrick McHardy13b18332006-12-02 22:11:25 -0800788EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800789
Patrick McHardye281db5c2007-03-04 15:57:25 -0800790#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800791
792#include <linux/netfilter/nfnetlink.h>
793#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -0800794#include <linux/mutex.h>
795
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800796
797/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
798 * in ip_conntrack_core, since we don't want the protocols to autoload
799 * or depend on ctnetlink */
800int nf_ct_port_tuple_to_nfattr(struct sk_buff *skb,
801 const struct nf_conntrack_tuple *tuple)
802{
803 NFA_PUT(skb, CTA_PROTO_SRC_PORT, sizeof(u_int16_t),
804 &tuple->src.u.tcp.port);
805 NFA_PUT(skb, CTA_PROTO_DST_PORT, sizeof(u_int16_t),
806 &tuple->dst.u.tcp.port);
807 return 0;
808
809nfattr_failure:
810 return -1;
811}
Patrick McHardy13b18332006-12-02 22:11:25 -0800812EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nfattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800813
814static const size_t cta_min_proto[CTA_PROTO_MAX] = {
815 [CTA_PROTO_SRC_PORT-1] = sizeof(u_int16_t),
816 [CTA_PROTO_DST_PORT-1] = sizeof(u_int16_t)
817};
818
819int nf_ct_port_nfattr_to_tuple(struct nfattr *tb[],
820 struct nf_conntrack_tuple *t)
821{
822 if (!tb[CTA_PROTO_SRC_PORT-1] || !tb[CTA_PROTO_DST_PORT-1])
823 return -EINVAL;
824
825 if (nfattr_bad_size(tb, CTA_PROTO_MAX, cta_min_proto))
826 return -EINVAL;
827
Patrick McHardybff9a892006-12-02 22:05:08 -0800828 t->src.u.tcp.port = *(__be16 *)NFA_DATA(tb[CTA_PROTO_SRC_PORT-1]);
829 t->dst.u.tcp.port = *(__be16 *)NFA_DATA(tb[CTA_PROTO_DST_PORT-1]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800830
831 return 0;
832}
Patrick McHardy13b18332006-12-02 22:11:25 -0800833EXPORT_SYMBOL_GPL(nf_ct_port_nfattr_to_tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800834#endif
835
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800836/* Used by ipt_REJECT and ip6t_REJECT. */
837void __nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
838{
839 struct nf_conn *ct;
840 enum ip_conntrack_info ctinfo;
841
842 /* This ICMP is in reverse direction to the packet which caused it */
843 ct = nf_ct_get(skb, &ctinfo);
844 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
845 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
846 else
847 ctinfo = IP_CT_RELATED;
848
849 /* Attach to new skbuff, and increment count */
850 nskb->nfct = &ct->ct_general;
851 nskb->nfctinfo = ctinfo;
852 nf_conntrack_get(nskb->nfct);
853}
Patrick McHardy13b18332006-12-02 22:11:25 -0800854EXPORT_SYMBOL_GPL(__nf_conntrack_attach);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800855
856static inline int
857do_iter(const struct nf_conntrack_tuple_hash *i,
858 int (*iter)(struct nf_conn *i, void *data),
859 void *data)
860{
861 return iter(nf_ct_tuplehash_to_ctrack(i), data);
862}
863
864/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -0700865static struct nf_conn *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800866get_next_corpse(int (*iter)(struct nf_conn *i, void *data),
867 void *data, unsigned int *bucket)
868{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700869 struct nf_conntrack_tuple_hash *h;
870 struct nf_conn *ct;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700871 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800872
873 write_lock_bh(&nf_conntrack_lock);
874 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700875 hlist_for_each_entry(h, n, &nf_conntrack_hash[*bucket], hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700876 ct = nf_ct_tuplehash_to_ctrack(h);
877 if (iter(ct, data))
878 goto found;
879 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800880 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700881 hlist_for_each_entry(h, n, &unconfirmed, hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700882 ct = nf_ct_tuplehash_to_ctrack(h);
883 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -0800884 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700885 }
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800886 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700887 return NULL;
888found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800889 atomic_inc(&ct->ct_general.use);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800890 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700891 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800892}
893
894void
895nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data)
896{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700897 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800898 unsigned int bucket = 0;
899
Patrick McHardydf0933d2006-09-20 11:57:53 -0700900 while ((ct = get_next_corpse(iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800901 /* Time to push up daises... */
902 if (del_timer(&ct->timeout))
903 death_by_timeout((unsigned long)ct);
904 /* ... else the timer will get him soon. */
905
906 nf_ct_put(ct);
907 }
908}
Patrick McHardy13b18332006-12-02 22:11:25 -0800909EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800910
911static int kill_all(struct nf_conn *i, void *data)
912{
913 return 1;
914}
915
Patrick McHardyac565e52007-07-07 22:30:08 -0700916void nf_ct_free_hashtable(struct hlist_head *hash, int vmalloced, int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800917{
918 if (vmalloced)
919 vfree(hash);
920 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800921 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700922 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800923}
Patrick McHardyac565e52007-07-07 22:30:08 -0700924EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800925
Randy Dunlap272491e2006-12-07 01:17:24 -0800926void nf_conntrack_flush(void)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800927{
928 nf_ct_iterate_cleanup(kill_all, NULL);
929}
Patrick McHardy13b18332006-12-02 22:11:25 -0800930EXPORT_SYMBOL_GPL(nf_conntrack_flush);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800931
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800932/* Mishearing the voices in his head, our hero wonders how he's
933 supposed to kill the mall. */
934void nf_conntrack_cleanup(void)
935{
Patrick McHardyc3a47ab2007-02-12 11:09:19 -0800936 rcu_assign_pointer(ip_ct_attach, NULL);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -0800937
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800938 /* This makes sure all current packets have passed through
939 netfilter framework. Roll on, two-stage module
940 delete... */
941 synchronize_net();
942
943 nf_ct_event_cache_flush();
944 i_see_dead_people:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800945 nf_conntrack_flush();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800946 if (atomic_read(&nf_conntrack_count) != 0) {
947 schedule();
948 goto i_see_dead_people;
949 }
Patrick McHardy66365682005-12-05 13:36:50 -0800950 /* wait until all references to nf_conntrack_untracked are dropped */
951 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
952 schedule();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800953
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -0700954 rcu_assign_pointer(nf_ct_destroy, NULL);
955
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700956 kmem_cache_destroy(nf_conntrack_cachep);
Patrick McHardyac565e52007-07-07 22:30:08 -0700957 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
958 nf_conntrack_htable_size);
KOVACS Krisztian5a6f294e42005-11-15 16:47:34 -0800959
Patrick McHardyac5357e2007-03-14 16:38:25 -0700960 nf_conntrack_proto_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700961 nf_conntrack_helper_fini();
Patrick McHardye9c1b082007-07-07 22:32:53 -0700962 nf_conntrack_expect_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800963}
964
Patrick McHardyac565e52007-07-07 22:30:08 -0700965struct hlist_head *nf_ct_alloc_hashtable(int *sizep, int *vmalloced)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800966{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700967 struct hlist_head *hash;
Patrick McHardy8e5105a2007-07-07 22:27:33 -0700968 unsigned int size, i;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800969
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800970 *vmalloced = 0;
Patrick McHardy8e5105a2007-07-07 22:27:33 -0700971
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700972 size = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_head));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800973 hash = (void*)__get_free_pages(GFP_KERNEL,
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700974 get_order(sizeof(struct hlist_head)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800975 * size));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800976 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800977 *vmalloced = 1;
978 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700979 hash = vmalloc(sizeof(struct hlist_head) * size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800980 }
981
982 if (hash)
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800983 for (i = 0; i < size; i++)
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700984 INIT_HLIST_HEAD(&hash[i]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800985
986 return hash;
987}
Patrick McHardyac565e52007-07-07 22:30:08 -0700988EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800989
990int set_hashsize(const char *val, struct kernel_param *kp)
991{
992 int i, bucket, hashsize, vmalloced;
993 int old_vmalloced, old_size;
994 int rnd;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700995 struct hlist_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800996 struct nf_conntrack_tuple_hash *h;
997
998 /* On boot, we can set this without any fancy locking. */
999 if (!nf_conntrack_htable_size)
1000 return param_set_uint(val, kp);
1001
1002 hashsize = simple_strtol(val, NULL, 0);
1003 if (!hashsize)
1004 return -EINVAL;
1005
Patrick McHardyac565e52007-07-07 22:30:08 -07001006 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001007 if (!hash)
1008 return -ENOMEM;
1009
1010 /* We have to rehahs for the new table anyway, so we also can
1011 * use a newrandom seed */
1012 get_random_bytes(&rnd, 4);
1013
1014 write_lock_bh(&nf_conntrack_lock);
1015 for (i = 0; i < nf_conntrack_htable_size; i++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001016 while (!hlist_empty(&nf_conntrack_hash[i])) {
1017 h = hlist_entry(nf_conntrack_hash[i].first,
1018 struct nf_conntrack_tuple_hash, hnode);
1019 hlist_del(&h->hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001020 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001021 hlist_add_head(&h->hnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001022 }
1023 }
1024 old_size = nf_conntrack_htable_size;
1025 old_vmalloced = nf_conntrack_vmalloc;
1026 old_hash = nf_conntrack_hash;
1027
1028 nf_conntrack_htable_size = hashsize;
1029 nf_conntrack_vmalloc = vmalloced;
1030 nf_conntrack_hash = hash;
1031 nf_conntrack_hash_rnd = rnd;
1032 write_unlock_bh(&nf_conntrack_lock);
1033
Patrick McHardyac565e52007-07-07 22:30:08 -07001034 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001035 return 0;
1036}
1037
1038module_param_call(hashsize, set_hashsize, param_get_uint,
1039 &nf_conntrack_htable_size, 0600);
1040
1041int __init nf_conntrack_init(void)
1042{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001043 int max_factor = 8;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001044 int ret;
1045
1046 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001047 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001048 if (!nf_conntrack_htable_size) {
1049 nf_conntrack_htable_size
1050 = (((num_physpages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001051 / sizeof(struct hlist_head));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001052 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001053 nf_conntrack_htable_size = 16384;
1054 if (nf_conntrack_htable_size < 32)
1055 nf_conntrack_htable_size = 32;
1056
1057 /* Use a max. factor of four by default to get the same max as
1058 * with the old struct list_heads. When a table size is given
1059 * we use the old value of 8 to avoid reducing the max.
1060 * entries. */
1061 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001062 }
Patrick McHardyac565e52007-07-07 22:30:08 -07001063 nf_conntrack_hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
1064 &nf_conntrack_vmalloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001065 if (!nf_conntrack_hash) {
1066 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1067 goto err_out;
1068 }
1069
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001070 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001071
1072 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1073 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1074 nf_conntrack_max);
1075
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001076 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1077 sizeof(struct nf_conn),
1078 0, 0, NULL, NULL);
1079 if (!nf_conntrack_cachep) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001080 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1081 goto err_free_hash;
1082 }
1083
Patrick McHardyac5357e2007-03-14 16:38:25 -07001084 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001085 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001086 goto err_free_conntrack_slab;
1087
1088 ret = nf_conntrack_expect_init();
1089 if (ret < 0)
1090 goto out_fini_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001091
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001092 ret = nf_conntrack_helper_init();
1093 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001094 goto out_fini_expect;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001095
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001096 /* For use by REJECT target */
Patrick McHardyc3a47ab2007-02-12 11:09:19 -08001097 rcu_assign_pointer(ip_ct_attach, __nf_conntrack_attach);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -07001098 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001099
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001100 /* Set up fake conntrack:
1101 - to never be deleted, not in any hashes */
1102 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1103 /* - and look it like as a confirmed connection */
1104 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1105
1106 return ret;
1107
Patrick McHardye9c1b082007-07-07 22:32:53 -07001108out_fini_expect:
1109 nf_conntrack_expect_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001110out_fini_proto:
1111 nf_conntrack_proto_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001112err_free_conntrack_slab:
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001113 kmem_cache_destroy(nf_conntrack_cachep);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001114err_free_hash:
Patrick McHardyac565e52007-07-07 22:30:08 -07001115 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
1116 nf_conntrack_htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001117err_out:
1118 return -ENOMEM;
1119}