blob: a4d5cdeb0110c73fbf52ddc35cb6221741228600 [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001/* Connection state tracking for netfilter. This is separated from,
2 but required by, the NAT layer; it can also be used by an iptables
3 extension. */
4
5/* (C) 1999-2001 Paul `Rusty' Russell
Harald Weltedc808fe2006-03-20 17:56:32 -08006 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08007 * (C) 2003,2004 USAGI/WIDE Project <http://www.linux-ipv6.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080012 */
13
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080014#include <linux/types.h>
15#include <linux/netfilter.h>
16#include <linux/module.h>
17#include <linux/skbuff.h>
18#include <linux/proc_fs.h>
19#include <linux/vmalloc.h>
20#include <linux/stddef.h>
21#include <linux/slab.h>
22#include <linux/random.h>
23#include <linux/jhash.h>
24#include <linux/err.h>
25#include <linux/percpu.h>
26#include <linux/moduleparam.h>
27#include <linux/notifier.h>
28#include <linux/kernel.h>
29#include <linux/netdevice.h>
30#include <linux/socket.h>
Al Virod7fe0f22006-12-03 23:15:30 -050031#include <linux/mm.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080032
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080033#include <net/netfilter/nf_conntrack.h>
34#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010035#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010036#include <net/netfilter/nf_conntrack_expect.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080037#include <net/netfilter/nf_conntrack_helper.h>
38#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070039#include <net/netfilter/nf_conntrack_extend.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080040
Harald Weltedc808fe2006-03-20 17:56:32 -080041#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080042
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080043DEFINE_RWLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080044EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080045
46/* nf_conntrack_standalone needs this */
47atomic_t nf_conntrack_count = ATOMIC_INIT(0);
Patrick McHardya999e682006-11-29 02:35:20 +010048EXPORT_SYMBOL_GPL(nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080049
Martin Josefssone2b76062006-11-29 02:35:04 +010050unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080051EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
52
Brian Haley94aec082006-09-18 00:05:22 -070053int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010054EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080055
Patrick McHardyf205c5e2007-07-07 22:28:14 -070056struct hlist_head *nf_conntrack_hash __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080057EXPORT_SYMBOL_GPL(nf_conntrack_hash);
58
Martin Josefssone2b76062006-11-29 02:35:04 +010059struct nf_conn nf_conntrack_untracked __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080060EXPORT_SYMBOL_GPL(nf_conntrack_untracked);
61
Brian Haley94aec082006-09-18 00:05:22 -070062unsigned int nf_ct_log_invalid __read_mostly;
Patrick McHardyf205c5e2007-07-07 22:28:14 -070063HLIST_HEAD(unconfirmed);
Brian Haley1192e402006-09-20 12:03:46 -070064static int nf_conntrack_vmalloc __read_mostly;
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -070065static struct kmem_cache *nf_conntrack_cachep __read_mostly;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010066
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080067DEFINE_PER_CPU(struct ip_conntrack_stat, nf_conntrack_stat);
68EXPORT_PER_CPU_SYMBOL(nf_conntrack_stat);
69
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080070static int nf_conntrack_hash_rnd_initted;
71static unsigned int nf_conntrack_hash_rnd;
72
73static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
74 unsigned int size, unsigned int rnd)
75{
76 unsigned int a, b;
Sami Farin9b887902007-03-14 16:43:00 -070077
78 a = jhash2(tuple->src.u3.all, ARRAY_SIZE(tuple->src.u3.all),
79 (tuple->src.l3num << 16) | tuple->dst.protonum);
80 b = jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
Al Viroa34c4582007-07-26 17:33:19 +010081 ((__force __u16)tuple->src.u.all << 16) |
82 (__force __u16)tuple->dst.u.all);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083
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
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700116int nf_ct_get_tuplepr(const struct sk_buff *skb,
117 unsigned int nhoff,
118 u_int16_t l3num,
119 struct nf_conntrack_tuple *tuple)
120{
121 struct nf_conntrack_l3proto *l3proto;
122 struct nf_conntrack_l4proto *l4proto;
123 unsigned int protoff;
124 u_int8_t protonum;
125 int ret;
126
127 rcu_read_lock();
128
129 l3proto = __nf_ct_l3proto_find(l3num);
130 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
131 if (ret != NF_ACCEPT) {
132 rcu_read_unlock();
133 return 0;
134 }
135
136 l4proto = __nf_ct_l4proto_find(l3num, protonum);
137
138 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
139 l3proto, l4proto);
140
141 rcu_read_unlock();
142 return ret;
143}
144EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
145
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800146int
147nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
148 const struct nf_conntrack_tuple *orig,
149 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100150 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800151{
152 NF_CT_TUPLE_U_BLANK(inverse);
153
154 inverse->src.l3num = orig->src.l3num;
155 if (l3proto->invert_tuple(inverse, orig) == 0)
156 return 0;
157
158 inverse->dst.dir = !orig->dst.dir;
159
160 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100161 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800162}
Patrick McHardy13b18332006-12-02 22:11:25 -0800163EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800164
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165static void
166clean_from_lists(struct nf_conn *ct)
167{
Patrick McHardy0d537782007-07-07 22:39:38 -0700168 pr_debug("clean_from_lists(%p)\n", ct);
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700169 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
170 hlist_del(&ct->tuplehash[IP_CT_DIR_REPLY].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800171
172 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800173 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800174}
175
176static void
177destroy_conntrack(struct nf_conntrack *nfct)
178{
179 struct nf_conn *ct = (struct nf_conn *)nfct;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100180 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800181
Patrick McHardy0d537782007-07-07 22:39:38 -0700182 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800183 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
184 NF_CT_ASSERT(!timer_pending(&ct->timeout));
185
186 nf_conntrack_event(IPCT_DESTROY, ct);
187 set_bit(IPS_DYING_BIT, &ct->status);
188
189 /* To make sure we don't get any weird locking issues here:
190 * destroy_conntrack() MUST NOT be called with a write lock
191 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800192 rcu_read_lock();
Patrick McHardy923f4902007-02-12 11:12:57 -0800193 l4proto = __nf_ct_l4proto_find(ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.l3num,
194 ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.protonum);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100195 if (l4proto && l4proto->destroy)
196 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800197
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700198 nf_ct_ext_destroy(ct);
199
Patrick McHardy982d9a92007-02-12 11:14:11 -0800200 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800201
202 write_lock_bh(&nf_conntrack_lock);
203 /* Expectations will have been removed in clean_from_lists,
204 * except TFTP can create an expectation on the first packet,
205 * before connection is in the list, so we need to clean here,
206 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800207 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800208
209 /* We overload first tuple to link into unconfirmed list. */
210 if (!nf_ct_is_confirmed(ct)) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700211 BUG_ON(hlist_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode));
212 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800213 }
214
215 NF_CT_STAT_INC(delete);
216 write_unlock_bh(&nf_conntrack_lock);
217
218 if (ct->master)
219 nf_ct_put(ct->master);
220
Patrick McHardy0d537782007-07-07 22:39:38 -0700221 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800222 nf_conntrack_free(ct);
223}
224
225static void death_by_timeout(unsigned long ul_conntrack)
226{
227 struct nf_conn *ct = (void *)ul_conntrack;
Patrick McHardy5397e972007-05-19 14:23:52 -0700228 struct nf_conn_help *help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700229 struct nf_conntrack_helper *helper;
Patrick McHardy5397e972007-05-19 14:23:52 -0700230
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700231 if (help) {
232 rcu_read_lock();
233 helper = rcu_dereference(help->helper);
234 if (helper && helper->destroy)
235 helper->destroy(ct);
236 rcu_read_unlock();
237 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800238
239 write_lock_bh(&nf_conntrack_lock);
240 /* Inside lock so preempt is disabled on module removal path.
241 * Otherwise we can get spurious warnings. */
242 NF_CT_STAT_INC(delete_list);
243 clean_from_lists(ct);
244 write_unlock_bh(&nf_conntrack_lock);
245 nf_ct_put(ct);
246}
247
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800248struct nf_conntrack_tuple_hash *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800249__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
250 const struct nf_conn *ignored_conntrack)
251{
252 struct nf_conntrack_tuple_hash *h;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700253 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800254 unsigned int hash = hash_conntrack(tuple);
255
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700256 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700257 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
258 nf_ct_tuple_equal(tuple, &h->tuple)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800259 NF_CT_STAT_INC(found);
260 return h;
261 }
262 NF_CT_STAT_INC(searched);
263 }
264
265 return NULL;
266}
Patrick McHardy13b18332006-12-02 22:11:25 -0800267EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800268
269/* Find a connection corresponding to a tuple. */
270struct nf_conntrack_tuple_hash *
Patrick McHardy330f7db2007-07-07 22:28:42 -0700271nf_conntrack_find_get(const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800272{
273 struct nf_conntrack_tuple_hash *h;
274
275 read_lock_bh(&nf_conntrack_lock);
Patrick McHardy330f7db2007-07-07 22:28:42 -0700276 h = __nf_conntrack_find(tuple, NULL);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800277 if (h)
278 atomic_inc(&nf_ct_tuplehash_to_ctrack(h)->ct_general.use);
279 read_unlock_bh(&nf_conntrack_lock);
280
281 return h;
282}
Patrick McHardy13b18332006-12-02 22:11:25 -0800283EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800284
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800285static void __nf_conntrack_hash_insert(struct nf_conn *ct,
286 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800287 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800288{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700289 hlist_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
290 &nf_conntrack_hash[hash]);
291 hlist_add_head(&ct->tuplehash[IP_CT_DIR_REPLY].hnode,
292 &nf_conntrack_hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800293}
294
295void nf_conntrack_hash_insert(struct nf_conn *ct)
296{
297 unsigned int hash, repl_hash;
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 write_lock_bh(&nf_conntrack_lock);
303 __nf_conntrack_hash_insert(ct, hash, repl_hash);
304 write_unlock_bh(&nf_conntrack_lock);
305}
Patrick McHardy13b18332006-12-02 22:11:25 -0800306EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800307
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800308/* Confirm a connection given skb; places it in hash table */
309int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700310__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800311{
312 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700313 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800314 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700315 struct nf_conn_help *help;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700316 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800317 enum ip_conntrack_info ctinfo;
318
Herbert Xu3db05fe2007-10-15 00:53:15 -0700319 ct = nf_ct_get(skb, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800320
321 /* ipt_REJECT uses nf_conntrack_attach to attach related
322 ICMP/TCP RST packets in other direction. Actual packet
323 which created connection will be IP_CT_NEW or for an
324 expected connection, IP_CT_RELATED. */
325 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
326 return NF_ACCEPT;
327
328 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
329 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
330
331 /* We're not in hash table, and we refuse to set up related
332 connections for unconfirmed conns. But packet copies and
333 REJECT will give spurious warnings here. */
334 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
335
336 /* No external references means noone else could have
337 confirmed us. */
338 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700339 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800340
341 write_lock_bh(&nf_conntrack_lock);
342
343 /* See if there's one in the list already, including reverse:
344 NAT could have grabbed it without realizing, since we're
345 not in the hash. If there is, we lost race. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700346 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700347 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
348 &h->tuple))
349 goto out;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700350 hlist_for_each_entry(h, n, &nf_conntrack_hash[repl_hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700351 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
352 &h->tuple))
353 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800354
Patrick McHardydf0933d2006-09-20 11:57:53 -0700355 /* Remove from unconfirmed list */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700356 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700357
358 __nf_conntrack_hash_insert(ct, hash, repl_hash);
359 /* Timer relative to confirmation time, not original
360 setting time, otherwise we'd get timer wrap in
361 weird delay cases. */
362 ct->timeout.expires += jiffies;
363 add_timer(&ct->timeout);
364 atomic_inc(&ct->ct_general.use);
365 set_bit(IPS_CONFIRMED_BIT, &ct->status);
366 NF_CT_STAT_INC(insert);
367 write_unlock_bh(&nf_conntrack_lock);
368 help = nfct_help(ct);
369 if (help && help->helper)
Herbert Xu3db05fe2007-10-15 00:53:15 -0700370 nf_conntrack_event_cache(IPCT_HELPER, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800371#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardydf0933d2006-09-20 11:57:53 -0700372 if (test_bit(IPS_SRC_NAT_DONE_BIT, &ct->status) ||
373 test_bit(IPS_DST_NAT_DONE_BIT, &ct->status))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700374 nf_conntrack_event_cache(IPCT_NATINFO, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800375#endif
Patrick McHardydf0933d2006-09-20 11:57:53 -0700376 nf_conntrack_event_cache(master_ct(ct) ?
Herbert Xu3db05fe2007-10-15 00:53:15 -0700377 IPCT_RELATED : IPCT_NEW, skb);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700378 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800379
Patrick McHardydf0933d2006-09-20 11:57:53 -0700380out:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800381 NF_CT_STAT_INC(insert_failed);
382 write_unlock_bh(&nf_conntrack_lock);
383 return NF_DROP;
384}
Patrick McHardy13b18332006-12-02 22:11:25 -0800385EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800386
387/* Returns true if a connection correspondings to the tuple (required
388 for NAT). */
389int
390nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
391 const struct nf_conn *ignored_conntrack)
392{
393 struct nf_conntrack_tuple_hash *h;
394
395 read_lock_bh(&nf_conntrack_lock);
396 h = __nf_conntrack_find(tuple, ignored_conntrack);
397 read_unlock_bh(&nf_conntrack_lock);
398
399 return h != NULL;
400}
Patrick McHardy13b18332006-12-02 22:11:25 -0800401EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800402
Patrick McHardy7ae77302007-07-07 22:37:38 -0700403#define NF_CT_EVICTION_RANGE 8
404
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800405/* There's a small race here where we may free a just-assured
406 connection. Too bad: we're in trouble anyway. */
Patrick McHardy7ae77302007-07-07 22:37:38 -0700407static int early_drop(unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800408{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700409 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800410 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700411 struct nf_conn *ct = NULL, *tmp;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700412 struct hlist_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700413 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800414 int dropped = 0;
415
416 read_lock_bh(&nf_conntrack_lock);
Patrick McHardy7ae77302007-07-07 22:37:38 -0700417 for (i = 0; i < nf_conntrack_htable_size; i++) {
418 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode) {
419 tmp = nf_ct_tuplehash_to_ctrack(h);
420 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
421 ct = tmp;
422 cnt++;
423 }
424 if (ct || cnt >= NF_CT_EVICTION_RANGE)
425 break;
426 hash = (hash + 1) % nf_conntrack_htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800427 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700428 if (ct)
429 atomic_inc(&ct->ct_general.use);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800430 read_unlock_bh(&nf_conntrack_lock);
431
432 if (!ct)
433 return dropped;
434
435 if (del_timer(&ct->timeout)) {
436 death_by_timeout((unsigned long)ct);
437 dropped = 1;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800438 NF_CT_STAT_INC_ATOMIC(early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800439 }
440 nf_ct_put(ct);
441 return dropped;
442}
443
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700444struct nf_conn *nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
445 const struct nf_conntrack_tuple *repl)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800446{
447 struct nf_conn *conntrack = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800448
Harald Weltedc808fe2006-03-20 17:56:32 -0800449 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800450 get_random_bytes(&nf_conntrack_hash_rnd, 4);
451 nf_conntrack_hash_rnd_initted = 1;
452 }
453
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700454 /* We don't want any race condition at early drop stage */
455 atomic_inc(&nf_conntrack_count);
456
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800457 if (nf_conntrack_max
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700458 && atomic_read(&nf_conntrack_count) > nf_conntrack_max) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800459 unsigned int hash = hash_conntrack(orig);
Patrick McHardy7ae77302007-07-07 22:37:38 -0700460 if (!early_drop(hash)) {
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700461 atomic_dec(&nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800462 if (net_ratelimit())
463 printk(KERN_WARNING
464 "nf_conntrack: table full, dropping"
465 " packet.\n");
466 return ERR_PTR(-ENOMEM);
467 }
468 }
469
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700470 conntrack = kmem_cache_zalloc(nf_conntrack_cachep, GFP_ATOMIC);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800471 if (conntrack == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700472 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700473 atomic_dec(&nf_conntrack_count);
474 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800475 }
476
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800477 atomic_set(&conntrack->ct_general.use, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800478 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
479 conntrack->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
480 /* Don't set timer yet: wait for confirmation */
Patrick McHardye6f689d2007-03-23 11:16:30 -0700481 setup_timer(&conntrack->timeout, death_by_timeout,
482 (unsigned long)conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800483
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700484 return conntrack;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800485}
Patrick McHardy13b18332006-12-02 22:11:25 -0800486EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800487
488void nf_conntrack_free(struct nf_conn *conntrack)
489{
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700490 nf_ct_ext_free(conntrack);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700491 kmem_cache_free(nf_conntrack_cachep, conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800492 atomic_dec(&nf_conntrack_count);
493}
Patrick McHardy13b18332006-12-02 22:11:25 -0800494EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800495
496/* Allocate a new conntrack: we return -ENOMEM if classification
497 failed due to stress. Otherwise it really is unclassifiable. */
498static struct nf_conntrack_tuple_hash *
499init_conntrack(const struct nf_conntrack_tuple *tuple,
500 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100501 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800502 struct sk_buff *skb,
503 unsigned int dataoff)
504{
505 struct nf_conn *conntrack;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700506 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800507 struct nf_conntrack_tuple repl_tuple;
508 struct nf_conntrack_expect *exp;
509
Martin Josefsson605dcad2006-11-29 02:35:06 +0100510 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700511 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800512 return NULL;
513 }
514
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700515 conntrack = nf_conntrack_alloc(tuple, &repl_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800516 if (conntrack == NULL || IS_ERR(conntrack)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700517 pr_debug("Can't allocate conntrack.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800518 return (struct nf_conntrack_tuple_hash *)conntrack;
519 }
520
Martin Josefsson605dcad2006-11-29 02:35:06 +0100521 if (!l4proto->new(conntrack, skb, dataoff)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800522 nf_conntrack_free(conntrack);
Patrick McHardy0d537782007-07-07 22:39:38 -0700523 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800524 return NULL;
525 }
526
527 write_lock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -0700528 exp = nf_ct_find_expectation(tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800529 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700530 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
531 conntrack, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800532 /* Welcome, Mr. Bond. We've been expecting you... */
533 __set_bit(IPS_EXPECTED_BIT, &conntrack->status);
534 conntrack->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700535 if (exp->helper) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700536 help = nf_ct_helper_ext_add(conntrack, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700537 if (help)
538 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700539 }
540
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800541#ifdef CONFIG_NF_CONNTRACK_MARK
542 conntrack->mark = exp->master->mark;
543#endif
James Morris7c9728c2006-06-09 00:31:46 -0700544#ifdef CONFIG_NF_CONNTRACK_SECMARK
545 conntrack->secmark = exp->master->secmark;
546#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800547 nf_conntrack_get(&conntrack->master->ct_general);
548 NF_CT_STAT_INC(expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800549 } else {
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700550 struct nf_conntrack_helper *helper;
551
552 helper = __nf_ct_helper_find(&repl_tuple);
553 if (helper) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700554 help = nf_ct_helper_ext_add(conntrack, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700555 if (help)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700556 rcu_assign_pointer(help->helper, helper);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700557 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800558 NF_CT_STAT_INC(new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800559 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800560
561 /* Overload tuple linked list to put us in unconfirmed list. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700562 hlist_add_head(&conntrack->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
563 &unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800564
565 write_unlock_bh(&nf_conntrack_lock);
566
567 if (exp) {
568 if (exp->expectfn)
569 exp->expectfn(conntrack, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700570 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800571 }
572
573 return &conntrack->tuplehash[IP_CT_DIR_ORIGINAL];
574}
575
576/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
577static inline struct nf_conn *
578resolve_normal_ct(struct sk_buff *skb,
579 unsigned int dataoff,
580 u_int16_t l3num,
581 u_int8_t protonum,
582 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100583 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800584 int *set_reply,
585 enum ip_conntrack_info *ctinfo)
586{
587 struct nf_conntrack_tuple tuple;
588 struct nf_conntrack_tuple_hash *h;
589 struct nf_conn *ct;
590
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300591 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800592 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100593 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700594 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800595 return NULL;
596 }
597
598 /* look for tuple match */
Patrick McHardy330f7db2007-07-07 22:28:42 -0700599 h = nf_conntrack_find_get(&tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800600 if (!h) {
Martin Josefsson605dcad2006-11-29 02:35:06 +0100601 h = init_conntrack(&tuple, l3proto, l4proto, skb, dataoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800602 if (!h)
603 return NULL;
604 if (IS_ERR(h))
605 return (void *)h;
606 }
607 ct = nf_ct_tuplehash_to_ctrack(h);
608
609 /* It exists; we have (non-exclusive) reference. */
610 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
611 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
612 /* Please set reply bit if this packet OK */
613 *set_reply = 1;
614 } else {
615 /* Once we've had two way comms, always ESTABLISHED. */
616 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700617 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800618 *ctinfo = IP_CT_ESTABLISHED;
619 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700620 pr_debug("nf_conntrack_in: related packet for %p\n",
621 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800622 *ctinfo = IP_CT_RELATED;
623 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700624 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800625 *ctinfo = IP_CT_NEW;
626 }
627 *set_reply = 0;
628 }
629 skb->nfct = &ct->ct_general;
630 skb->nfctinfo = *ctinfo;
631 return ct;
632}
633
634unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700635nf_conntrack_in(int pf, unsigned int hooknum, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800636{
637 struct nf_conn *ct;
638 enum ip_conntrack_info ctinfo;
639 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100640 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800641 unsigned int dataoff;
642 u_int8_t protonum;
643 int set_reply = 0;
644 int ret;
645
646 /* Previously seen (loopback or untracked)? Ignore. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700647 if (skb->nfct) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800648 NF_CT_STAT_INC_ATOMIC(ignore);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800649 return NF_ACCEPT;
650 }
651
Patrick McHardy923f4902007-02-12 11:12:57 -0800652 /* rcu_read_lock()ed by nf_hook_slow */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800653 l3proto = __nf_ct_l3proto_find((u_int16_t)pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700654 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700655 &dataoff, &protonum);
656 if (ret <= 0) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700657 pr_debug("not prepared to track yet or error occured\n");
Yasuyuki Kozakaid87d8462007-07-14 20:44:23 -0700658 NF_CT_STAT_INC_ATOMIC(error);
659 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800660 return -ret;
661 }
662
Martin Josefsson605dcad2006-11-29 02:35:06 +0100663 l4proto = __nf_ct_l4proto_find((u_int16_t)pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800664
665 /* It may be an special packet, error, unclean...
666 * inverse of the return code tells to the netfilter
667 * core what to do with the packet. */
Martin Josefsson605dcad2006-11-29 02:35:06 +0100668 if (l4proto->error != NULL &&
Herbert Xu3db05fe2007-10-15 00:53:15 -0700669 (ret = l4proto->error(skb, dataoff, &ctinfo, pf, hooknum)) <= 0) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800670 NF_CT_STAT_INC_ATOMIC(error);
671 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800672 return -ret;
673 }
674
Herbert Xu3db05fe2007-10-15 00:53:15 -0700675 ct = resolve_normal_ct(skb, dataoff, pf, protonum, l3proto, l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800676 &set_reply, &ctinfo);
677 if (!ct) {
678 /* Not valid part of a connection */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800679 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800680 return NF_ACCEPT;
681 }
682
683 if (IS_ERR(ct)) {
684 /* Too stressed to deal. */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800685 NF_CT_STAT_INC_ATOMIC(drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800686 return NF_DROP;
687 }
688
Herbert Xu3db05fe2007-10-15 00:53:15 -0700689 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800690
Herbert Xu3db05fe2007-10-15 00:53:15 -0700691 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800692 if (ret < 0) {
693 /* Invalid: inverse of the return code tells
694 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -0700695 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -0700696 nf_conntrack_put(skb->nfct);
697 skb->nfct = NULL;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800698 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800699 return -ret;
700 }
701
702 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700703 nf_conntrack_event_cache(IPCT_STATUS, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800704
705 return ret;
706}
Patrick McHardy13b18332006-12-02 22:11:25 -0800707EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800708
709int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
710 const struct nf_conntrack_tuple *orig)
711{
Patrick McHardy923f4902007-02-12 11:12:57 -0800712 int ret;
713
714 rcu_read_lock();
715 ret = nf_ct_invert_tuple(inverse, orig,
716 __nf_ct_l3proto_find(orig->src.l3num),
717 __nf_ct_l4proto_find(orig->src.l3num,
718 orig->dst.protonum));
719 rcu_read_unlock();
720 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800721}
Patrick McHardy13b18332006-12-02 22:11:25 -0800722EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800723
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800724/* Alter reply tuple (maybe alter helper). This is for NAT, and is
725 implicitly racy: see __nf_conntrack_confirm */
726void nf_conntrack_alter_reply(struct nf_conn *ct,
727 const struct nf_conntrack_tuple *newreply)
728{
729 struct nf_conn_help *help = nfct_help(ct);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700730 struct nf_conntrack_helper *helper;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800731
732 write_lock_bh(&nf_conntrack_lock);
733 /* Should be unconfirmed, so not in hash table yet */
734 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
735
Patrick McHardy0d537782007-07-07 22:39:38 -0700736 pr_debug("Altering reply tuple of %p to ", ct);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800737 NF_CT_DUMP_TUPLE(newreply);
738
739 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700740 if (ct->master || (help && help->expecting != 0))
741 goto out;
742
743 helper = __nf_ct_helper_find(newreply);
744 if (helper == NULL) {
745 if (help)
746 rcu_assign_pointer(help->helper, NULL);
747 goto out;
Yasuyuki Kozakai5d78a842007-05-10 14:16:24 -0700748 }
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700749
750 if (help == NULL) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700751 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
752 if (help == NULL)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700753 goto out;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700754 } else {
755 memset(&help->help, 0, sizeof(help->help));
756 }
757
758 rcu_assign_pointer(help->helper, helper);
759out:
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800760 write_unlock_bh(&nf_conntrack_lock);
761}
Patrick McHardy13b18332006-12-02 22:11:25 -0800762EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800763
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800764/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
765void __nf_ct_refresh_acct(struct nf_conn *ct,
766 enum ip_conntrack_info ctinfo,
767 const struct sk_buff *skb,
768 unsigned long extra_jiffies,
769 int do_acct)
770{
771 int event = 0;
772
773 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
774 NF_CT_ASSERT(skb);
775
776 write_lock_bh(&nf_conntrack_lock);
777
Eric Leblond997ae832006-05-29 18:24:20 -0700778 /* Only update if this is not a fixed timeout */
779 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status)) {
780 write_unlock_bh(&nf_conntrack_lock);
781 return;
782 }
783
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800784 /* If not in hash table, timer will not be active yet */
785 if (!nf_ct_is_confirmed(ct)) {
786 ct->timeout.expires = extra_jiffies;
787 event = IPCT_REFRESH;
788 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +0100789 unsigned long newtime = jiffies + extra_jiffies;
790
791 /* Only update the timeout if the new timeout is at least
792 HZ jiffies from the old timeout. Need del_timer for race
793 avoidance (may already be dying). */
794 if (newtime - ct->timeout.expires >= HZ
795 && del_timer(&ct->timeout)) {
796 ct->timeout.expires = newtime;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800797 add_timer(&ct->timeout);
798 event = IPCT_REFRESH;
799 }
800 }
801
802#ifdef CONFIG_NF_CT_ACCT
803 if (do_acct) {
804 ct->counters[CTINFO2DIR(ctinfo)].packets++;
805 ct->counters[CTINFO2DIR(ctinfo)].bytes +=
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300806 skb->len - skb_network_offset(skb);
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100807
808 if ((ct->counters[CTINFO2DIR(ctinfo)].packets & 0x80000000)
809 || (ct->counters[CTINFO2DIR(ctinfo)].bytes & 0x80000000))
810 event |= IPCT_COUNTER_FILLING;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800811 }
812#endif
813
814 write_unlock_bh(&nf_conntrack_lock);
815
816 /* must be unlocked when calling event cache */
817 if (event)
818 nf_conntrack_event_cache(event, skb);
819}
Patrick McHardy13b18332006-12-02 22:11:25 -0800820EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800821
Patrick McHardye281db5c2007-03-04 15:57:25 -0800822#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800823
824#include <linux/netfilter/nfnetlink.h>
825#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -0800826#include <linux/mutex.h>
827
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800828/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
829 * in ip_conntrack_core, since we don't want the protocols to autoload
830 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -0700831int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800832 const struct nf_conntrack_tuple *tuple)
833{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700834 NLA_PUT(skb, CTA_PROTO_SRC_PORT, sizeof(u_int16_t),
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800835 &tuple->src.u.tcp.port);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700836 NLA_PUT(skb, CTA_PROTO_DST_PORT, sizeof(u_int16_t),
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800837 &tuple->dst.u.tcp.port);
838 return 0;
839
Patrick McHardydf6fb862007-09-28 14:37:03 -0700840nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800841 return -1;
842}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700843EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800844
Patrick McHardyf73e9242007-09-28 14:39:55 -0700845const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
846 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
847 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800848};
Patrick McHardyf73e9242007-09-28 14:39:55 -0700849EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800850
Patrick McHardyfdf70832007-09-28 14:37:41 -0700851int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800852 struct nf_conntrack_tuple *t)
853{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700854 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800855 return -EINVAL;
856
Patrick McHardydf6fb862007-09-28 14:37:03 -0700857 t->src.u.tcp.port = *(__be16 *)nla_data(tb[CTA_PROTO_SRC_PORT]);
858 t->dst.u.tcp.port = *(__be16 *)nla_data(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800859
860 return 0;
861}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700862EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800863#endif
864
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800865/* Used by ipt_REJECT and ip6t_REJECT. */
866void __nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
867{
868 struct nf_conn *ct;
869 enum ip_conntrack_info ctinfo;
870
871 /* This ICMP is in reverse direction to the packet which caused it */
872 ct = nf_ct_get(skb, &ctinfo);
873 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
874 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
875 else
876 ctinfo = IP_CT_RELATED;
877
878 /* Attach to new skbuff, and increment count */
879 nskb->nfct = &ct->ct_general;
880 nskb->nfctinfo = ctinfo;
881 nf_conntrack_get(nskb->nfct);
882}
Patrick McHardy13b18332006-12-02 22:11:25 -0800883EXPORT_SYMBOL_GPL(__nf_conntrack_attach);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800884
885static inline int
886do_iter(const struct nf_conntrack_tuple_hash *i,
887 int (*iter)(struct nf_conn *i, void *data),
888 void *data)
889{
890 return iter(nf_ct_tuplehash_to_ctrack(i), data);
891}
892
893/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -0700894static struct nf_conn *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800895get_next_corpse(int (*iter)(struct nf_conn *i, void *data),
896 void *data, unsigned int *bucket)
897{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700898 struct nf_conntrack_tuple_hash *h;
899 struct nf_conn *ct;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700900 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800901
902 write_lock_bh(&nf_conntrack_lock);
903 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700904 hlist_for_each_entry(h, n, &nf_conntrack_hash[*bucket], hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700905 ct = nf_ct_tuplehash_to_ctrack(h);
906 if (iter(ct, data))
907 goto found;
908 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800909 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700910 hlist_for_each_entry(h, n, &unconfirmed, hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700911 ct = nf_ct_tuplehash_to_ctrack(h);
912 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -0800913 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700914 }
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800915 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700916 return NULL;
917found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800918 atomic_inc(&ct->ct_general.use);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800919 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700920 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800921}
922
923void
924nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data)
925{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700926 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800927 unsigned int bucket = 0;
928
Patrick McHardydf0933d2006-09-20 11:57:53 -0700929 while ((ct = get_next_corpse(iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800930 /* Time to push up daises... */
931 if (del_timer(&ct->timeout))
932 death_by_timeout((unsigned long)ct);
933 /* ... else the timer will get him soon. */
934
935 nf_ct_put(ct);
936 }
937}
Patrick McHardy13b18332006-12-02 22:11:25 -0800938EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800939
940static int kill_all(struct nf_conn *i, void *data)
941{
942 return 1;
943}
944
Patrick McHardyac565e52007-07-07 22:30:08 -0700945void nf_ct_free_hashtable(struct hlist_head *hash, int vmalloced, int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800946{
947 if (vmalloced)
948 vfree(hash);
949 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800950 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700951 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800952}
Patrick McHardyac565e52007-07-07 22:30:08 -0700953EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800954
Randy Dunlap272491e2006-12-07 01:17:24 -0800955void nf_conntrack_flush(void)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800956{
957 nf_ct_iterate_cleanup(kill_all, NULL);
958}
Patrick McHardy13b18332006-12-02 22:11:25 -0800959EXPORT_SYMBOL_GPL(nf_conntrack_flush);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800960
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800961/* Mishearing the voices in his head, our hero wonders how he's
962 supposed to kill the mall. */
963void nf_conntrack_cleanup(void)
964{
Patrick McHardyc3a47ab2007-02-12 11:09:19 -0800965 rcu_assign_pointer(ip_ct_attach, NULL);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -0800966
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800967 /* This makes sure all current packets have passed through
968 netfilter framework. Roll on, two-stage module
969 delete... */
970 synchronize_net();
971
972 nf_ct_event_cache_flush();
973 i_see_dead_people:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800974 nf_conntrack_flush();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800975 if (atomic_read(&nf_conntrack_count) != 0) {
976 schedule();
977 goto i_see_dead_people;
978 }
Patrick McHardy66365682005-12-05 13:36:50 -0800979 /* wait until all references to nf_conntrack_untracked are dropped */
980 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
981 schedule();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800982
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -0700983 rcu_assign_pointer(nf_ct_destroy, NULL);
984
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700985 kmem_cache_destroy(nf_conntrack_cachep);
Patrick McHardyac565e52007-07-07 22:30:08 -0700986 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
987 nf_conntrack_htable_size);
KOVACS Krisztian5a6f294e42005-11-15 16:47:34 -0800988
Patrick McHardyac5357e2007-03-14 16:38:25 -0700989 nf_conntrack_proto_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700990 nf_conntrack_helper_fini();
Patrick McHardye9c1b082007-07-07 22:32:53 -0700991 nf_conntrack_expect_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800992}
993
Patrick McHardyac565e52007-07-07 22:30:08 -0700994struct hlist_head *nf_ct_alloc_hashtable(int *sizep, int *vmalloced)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800995{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700996 struct hlist_head *hash;
Patrick McHardy8e5105a2007-07-07 22:27:33 -0700997 unsigned int size, i;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800998
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800999 *vmalloced = 0;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001000
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001001 size = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_head));
Andrew Morton29b67492007-10-29 21:41:19 -07001002 hash = (void*)__get_free_pages(GFP_KERNEL|__GFP_NOWARN,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001003 get_order(sizeof(struct hlist_head)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001004 * size));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001005 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001006 *vmalloced = 1;
1007 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001008 hash = vmalloc(sizeof(struct hlist_head) * size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001009 }
1010
1011 if (hash)
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001012 for (i = 0; i < size; i++)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001013 INIT_HLIST_HEAD(&hash[i]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001014
1015 return hash;
1016}
Patrick McHardyac565e52007-07-07 22:30:08 -07001017EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001018
Patrick McHardyfae718d2007-12-24 21:09:10 -08001019int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001020{
1021 int i, bucket, hashsize, vmalloced;
1022 int old_vmalloced, old_size;
1023 int rnd;
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001024 struct hlist_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001025 struct nf_conntrack_tuple_hash *h;
1026
1027 /* On boot, we can set this without any fancy locking. */
1028 if (!nf_conntrack_htable_size)
1029 return param_set_uint(val, kp);
1030
1031 hashsize = simple_strtol(val, NULL, 0);
1032 if (!hashsize)
1033 return -EINVAL;
1034
Patrick McHardyac565e52007-07-07 22:30:08 -07001035 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001036 if (!hash)
1037 return -ENOMEM;
1038
1039 /* We have to rehahs for the new table anyway, so we also can
1040 * use a newrandom seed */
1041 get_random_bytes(&rnd, 4);
1042
1043 write_lock_bh(&nf_conntrack_lock);
1044 for (i = 0; i < nf_conntrack_htable_size; i++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001045 while (!hlist_empty(&nf_conntrack_hash[i])) {
1046 h = hlist_entry(nf_conntrack_hash[i].first,
1047 struct nf_conntrack_tuple_hash, hnode);
1048 hlist_del(&h->hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001049 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001050 hlist_add_head(&h->hnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001051 }
1052 }
1053 old_size = nf_conntrack_htable_size;
1054 old_vmalloced = nf_conntrack_vmalloc;
1055 old_hash = nf_conntrack_hash;
1056
1057 nf_conntrack_htable_size = hashsize;
1058 nf_conntrack_vmalloc = vmalloced;
1059 nf_conntrack_hash = hash;
1060 nf_conntrack_hash_rnd = rnd;
1061 write_unlock_bh(&nf_conntrack_lock);
1062
Patrick McHardyac565e52007-07-07 22:30:08 -07001063 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001064 return 0;
1065}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001066EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001067
Patrick McHardyfae718d2007-12-24 21:09:10 -08001068module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001069 &nf_conntrack_htable_size, 0600);
1070
1071int __init nf_conntrack_init(void)
1072{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001073 int max_factor = 8;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001074 int ret;
1075
1076 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001077 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001078 if (!nf_conntrack_htable_size) {
1079 nf_conntrack_htable_size
1080 = (((num_physpages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001081 / sizeof(struct hlist_head));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001082 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001083 nf_conntrack_htable_size = 16384;
1084 if (nf_conntrack_htable_size < 32)
1085 nf_conntrack_htable_size = 32;
1086
1087 /* Use a max. factor of four by default to get the same max as
1088 * with the old struct list_heads. When a table size is given
1089 * we use the old value of 8 to avoid reducing the max.
1090 * entries. */
1091 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001092 }
Patrick McHardyac565e52007-07-07 22:30:08 -07001093 nf_conntrack_hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
1094 &nf_conntrack_vmalloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001095 if (!nf_conntrack_hash) {
1096 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1097 goto err_out;
1098 }
1099
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001100 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001101
1102 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1103 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1104 nf_conntrack_max);
1105
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001106 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1107 sizeof(struct nf_conn),
Paul Mundt20c2df82007-07-20 10:11:58 +09001108 0, 0, NULL);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001109 if (!nf_conntrack_cachep) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001110 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1111 goto err_free_hash;
1112 }
1113
Patrick McHardyac5357e2007-03-14 16:38:25 -07001114 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001115 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001116 goto err_free_conntrack_slab;
1117
1118 ret = nf_conntrack_expect_init();
1119 if (ret < 0)
1120 goto out_fini_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001121
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001122 ret = nf_conntrack_helper_init();
1123 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001124 goto out_fini_expect;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001125
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001126 /* For use by REJECT target */
Patrick McHardyc3a47ab2007-02-12 11:09:19 -08001127 rcu_assign_pointer(ip_ct_attach, __nf_conntrack_attach);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -07001128 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001129
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001130 /* Set up fake conntrack:
1131 - to never be deleted, not in any hashes */
1132 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1133 /* - and look it like as a confirmed connection */
1134 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1135
1136 return ret;
1137
Patrick McHardye9c1b082007-07-07 22:32:53 -07001138out_fini_expect:
1139 nf_conntrack_expect_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001140out_fini_proto:
1141 nf_conntrack_proto_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001142err_free_conntrack_slab:
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001143 kmem_cache_destroy(nf_conntrack_cachep);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001144err_free_hash:
Patrick McHardyac565e52007-07-07 22:30:08 -07001145 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
1146 nf_conntrack_htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001147err_out:
1148 return -ENOMEM;
1149}