blob: 0fe11889ce141c70f9811a5b8fd89a6e9d267265 [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),
Al Viroa34c4582007-07-26 17:33:19 +010082 ((__force __u16)tuple->src.u.all << 16) |
83 (__force __u16)tuple->dst.u.all);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080084
85 return jhash_2words(a, b, rnd) % size;
86}
87
88static inline u_int32_t hash_conntrack(const struct nf_conntrack_tuple *tuple)
89{
90 return __hash_conntrack(tuple, nf_conntrack_htable_size,
91 nf_conntrack_hash_rnd);
92}
93
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080094int
95nf_ct_get_tuple(const struct sk_buff *skb,
96 unsigned int nhoff,
97 unsigned int dataoff,
98 u_int16_t l3num,
99 u_int8_t protonum,
100 struct nf_conntrack_tuple *tuple,
101 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100102 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800103{
104 NF_CT_TUPLE_U_BLANK(tuple);
105
106 tuple->src.l3num = l3num;
107 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
108 return 0;
109
110 tuple->dst.protonum = protonum;
111 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
112
Martin Josefsson605dcad2006-11-29 02:35:06 +0100113 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800114}
Patrick McHardy13b18332006-12-02 22:11:25 -0800115EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800116
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700117int nf_ct_get_tuplepr(const struct sk_buff *skb,
118 unsigned int nhoff,
119 u_int16_t l3num,
120 struct nf_conntrack_tuple *tuple)
121{
122 struct nf_conntrack_l3proto *l3proto;
123 struct nf_conntrack_l4proto *l4proto;
124 unsigned int protoff;
125 u_int8_t protonum;
126 int ret;
127
128 rcu_read_lock();
129
130 l3proto = __nf_ct_l3proto_find(l3num);
131 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
132 if (ret != NF_ACCEPT) {
133 rcu_read_unlock();
134 return 0;
135 }
136
137 l4proto = __nf_ct_l4proto_find(l3num, protonum);
138
139 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
140 l3proto, l4proto);
141
142 rcu_read_unlock();
143 return ret;
144}
145EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
146
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800147int
148nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
149 const struct nf_conntrack_tuple *orig,
150 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100151 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800152{
153 NF_CT_TUPLE_U_BLANK(inverse);
154
155 inverse->src.l3num = orig->src.l3num;
156 if (l3proto->invert_tuple(inverse, orig) == 0)
157 return 0;
158
159 inverse->dst.dir = !orig->dst.dir;
160
161 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100162 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800163}
Patrick McHardy13b18332006-12-02 22:11:25 -0800164EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800166static void
167clean_from_lists(struct nf_conn *ct)
168{
Patrick McHardy0d537782007-07-07 22:39:38 -0700169 pr_debug("clean_from_lists(%p)\n", ct);
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700170 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
171 hlist_del(&ct->tuplehash[IP_CT_DIR_REPLY].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800172
173 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800174 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800175}
176
177static void
178destroy_conntrack(struct nf_conntrack *nfct)
179{
180 struct nf_conn *ct = (struct nf_conn *)nfct;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100181 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800182
Patrick McHardy0d537782007-07-07 22:39:38 -0700183 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800184 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
185 NF_CT_ASSERT(!timer_pending(&ct->timeout));
186
187 nf_conntrack_event(IPCT_DESTROY, ct);
188 set_bit(IPS_DYING_BIT, &ct->status);
189
190 /* To make sure we don't get any weird locking issues here:
191 * destroy_conntrack() MUST NOT be called with a write lock
192 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800193 rcu_read_lock();
Patrick McHardy923f4902007-02-12 11:12:57 -0800194 l4proto = __nf_ct_l4proto_find(ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.l3num,
195 ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.protonum);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100196 if (l4proto && l4proto->destroy)
197 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800198
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700199 nf_ct_ext_destroy(ct);
200
Patrick McHardy982d9a92007-02-12 11:14:11 -0800201 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800202
203 write_lock_bh(&nf_conntrack_lock);
204 /* Expectations will have been removed in clean_from_lists,
205 * except TFTP can create an expectation on the first packet,
206 * before connection is in the list, so we need to clean here,
207 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800208 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800209
210 /* We overload first tuple to link into unconfirmed list. */
211 if (!nf_ct_is_confirmed(ct)) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700212 BUG_ON(hlist_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode));
213 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800214 }
215
216 NF_CT_STAT_INC(delete);
217 write_unlock_bh(&nf_conntrack_lock);
218
219 if (ct->master)
220 nf_ct_put(ct->master);
221
Patrick McHardy0d537782007-07-07 22:39:38 -0700222 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800223 nf_conntrack_free(ct);
224}
225
226static void death_by_timeout(unsigned long ul_conntrack)
227{
228 struct nf_conn *ct = (void *)ul_conntrack;
Patrick McHardy5397e972007-05-19 14:23:52 -0700229 struct nf_conn_help *help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700230 struct nf_conntrack_helper *helper;
Patrick McHardy5397e972007-05-19 14:23:52 -0700231
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700232 if (help) {
233 rcu_read_lock();
234 helper = rcu_dereference(help->helper);
235 if (helper && helper->destroy)
236 helper->destroy(ct);
237 rcu_read_unlock();
238 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800239
240 write_lock_bh(&nf_conntrack_lock);
241 /* Inside lock so preempt is disabled on module removal path.
242 * Otherwise we can get spurious warnings. */
243 NF_CT_STAT_INC(delete_list);
244 clean_from_lists(ct);
245 write_unlock_bh(&nf_conntrack_lock);
246 nf_ct_put(ct);
247}
248
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800249struct nf_conntrack_tuple_hash *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800250__nf_conntrack_find(const struct nf_conntrack_tuple *tuple,
251 const struct nf_conn *ignored_conntrack)
252{
253 struct nf_conntrack_tuple_hash *h;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700254 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800255 unsigned int hash = hash_conntrack(tuple);
256
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700257 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700258 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
259 nf_ct_tuple_equal(tuple, &h->tuple)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800260 NF_CT_STAT_INC(found);
261 return h;
262 }
263 NF_CT_STAT_INC(searched);
264 }
265
266 return NULL;
267}
Patrick McHardy13b18332006-12-02 22:11:25 -0800268EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800269
270/* Find a connection corresponding to a tuple. */
271struct nf_conntrack_tuple_hash *
Patrick McHardy330f7db2007-07-07 22:28:42 -0700272nf_conntrack_find_get(const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800273{
274 struct nf_conntrack_tuple_hash *h;
275
276 read_lock_bh(&nf_conntrack_lock);
Patrick McHardy330f7db2007-07-07 22:28:42 -0700277 h = __nf_conntrack_find(tuple, NULL);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800278 if (h)
279 atomic_inc(&nf_ct_tuplehash_to_ctrack(h)->ct_general.use);
280 read_unlock_bh(&nf_conntrack_lock);
281
282 return h;
283}
Patrick McHardy13b18332006-12-02 22:11:25 -0800284EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800285
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800286static void __nf_conntrack_hash_insert(struct nf_conn *ct,
287 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800288 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800289{
290 ct->id = ++nf_conntrack_next_id;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700291 hlist_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
292 &nf_conntrack_hash[hash]);
293 hlist_add_head(&ct->tuplehash[IP_CT_DIR_REPLY].hnode,
294 &nf_conntrack_hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800295}
296
297void nf_conntrack_hash_insert(struct nf_conn *ct)
298{
299 unsigned int hash, repl_hash;
300
301 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
302 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
303
304 write_lock_bh(&nf_conntrack_lock);
305 __nf_conntrack_hash_insert(ct, hash, repl_hash);
306 write_unlock_bh(&nf_conntrack_lock);
307}
Patrick McHardy13b18332006-12-02 22:11:25 -0800308EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800309
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800310/* Confirm a connection given skb; places it in hash table */
311int
312__nf_conntrack_confirm(struct sk_buff **pskb)
313{
314 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700315 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800316 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700317 struct nf_conn_help *help;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700318 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800319 enum ip_conntrack_info ctinfo;
320
321 ct = nf_ct_get(*pskb, &ctinfo);
322
323 /* ipt_REJECT uses nf_conntrack_attach to attach related
324 ICMP/TCP RST packets in other direction. Actual packet
325 which created connection will be IP_CT_NEW or for an
326 expected connection, IP_CT_RELATED. */
327 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
328 return NF_ACCEPT;
329
330 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
331 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
332
333 /* We're not in hash table, and we refuse to set up related
334 connections for unconfirmed conns. But packet copies and
335 REJECT will give spurious warnings here. */
336 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
337
338 /* No external references means noone else could have
339 confirmed us. */
340 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700341 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800342
343 write_lock_bh(&nf_conntrack_lock);
344
345 /* See if there's one in the list already, including reverse:
346 NAT could have grabbed it without realizing, since we're
347 not in the hash. If there is, we lost race. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700348 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700349 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
350 &h->tuple))
351 goto out;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700352 hlist_for_each_entry(h, n, &nf_conntrack_hash[repl_hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700353 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
354 &h->tuple))
355 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800356
Patrick McHardydf0933d2006-09-20 11:57:53 -0700357 /* Remove from unconfirmed list */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700358 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700359
360 __nf_conntrack_hash_insert(ct, hash, repl_hash);
361 /* Timer relative to confirmation time, not original
362 setting time, otherwise we'd get timer wrap in
363 weird delay cases. */
364 ct->timeout.expires += jiffies;
365 add_timer(&ct->timeout);
366 atomic_inc(&ct->ct_general.use);
367 set_bit(IPS_CONFIRMED_BIT, &ct->status);
368 NF_CT_STAT_INC(insert);
369 write_unlock_bh(&nf_conntrack_lock);
370 help = nfct_help(ct);
371 if (help && help->helper)
372 nf_conntrack_event_cache(IPCT_HELPER, *pskb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800373#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardydf0933d2006-09-20 11:57:53 -0700374 if (test_bit(IPS_SRC_NAT_DONE_BIT, &ct->status) ||
375 test_bit(IPS_DST_NAT_DONE_BIT, &ct->status))
376 nf_conntrack_event_cache(IPCT_NATINFO, *pskb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800377#endif
Patrick McHardydf0933d2006-09-20 11:57:53 -0700378 nf_conntrack_event_cache(master_ct(ct) ?
379 IPCT_RELATED : IPCT_NEW, *pskb);
380 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800381
Patrick McHardydf0933d2006-09-20 11:57:53 -0700382out:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800383 NF_CT_STAT_INC(insert_failed);
384 write_unlock_bh(&nf_conntrack_lock);
385 return NF_DROP;
386}
Patrick McHardy13b18332006-12-02 22:11:25 -0800387EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800388
389/* Returns true if a connection correspondings to the tuple (required
390 for NAT). */
391int
392nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
393 const struct nf_conn *ignored_conntrack)
394{
395 struct nf_conntrack_tuple_hash *h;
396
397 read_lock_bh(&nf_conntrack_lock);
398 h = __nf_conntrack_find(tuple, ignored_conntrack);
399 read_unlock_bh(&nf_conntrack_lock);
400
401 return h != NULL;
402}
Patrick McHardy13b18332006-12-02 22:11:25 -0800403EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800404
Patrick McHardy7ae77302007-07-07 22:37:38 -0700405#define NF_CT_EVICTION_RANGE 8
406
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800407/* There's a small race here where we may free a just-assured
408 connection. Too bad: we're in trouble anyway. */
Patrick McHardy7ae77302007-07-07 22:37:38 -0700409static int early_drop(unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800410{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700411 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800412 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700413 struct nf_conn *ct = NULL, *tmp;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700414 struct hlist_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700415 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800416 int dropped = 0;
417
418 read_lock_bh(&nf_conntrack_lock);
Patrick McHardy7ae77302007-07-07 22:37:38 -0700419 for (i = 0; i < nf_conntrack_htable_size; i++) {
420 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode) {
421 tmp = nf_ct_tuplehash_to_ctrack(h);
422 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
423 ct = tmp;
424 cnt++;
425 }
426 if (ct || cnt >= NF_CT_EVICTION_RANGE)
427 break;
428 hash = (hash + 1) % nf_conntrack_htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800429 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700430 if (ct)
431 atomic_inc(&ct->ct_general.use);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800432 read_unlock_bh(&nf_conntrack_lock);
433
434 if (!ct)
435 return dropped;
436
437 if (del_timer(&ct->timeout)) {
438 death_by_timeout((unsigned long)ct);
439 dropped = 1;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800440 NF_CT_STAT_INC_ATOMIC(early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800441 }
442 nf_ct_put(ct);
443 return dropped;
444}
445
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700446struct nf_conn *nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
447 const struct nf_conntrack_tuple *repl)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800448{
449 struct nf_conn *conntrack = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800450
Harald Weltedc808fe2006-03-20 17:56:32 -0800451 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800452 get_random_bytes(&nf_conntrack_hash_rnd, 4);
453 nf_conntrack_hash_rnd_initted = 1;
454 }
455
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700456 /* We don't want any race condition at early drop stage */
457 atomic_inc(&nf_conntrack_count);
458
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800459 if (nf_conntrack_max
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700460 && atomic_read(&nf_conntrack_count) > nf_conntrack_max) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800461 unsigned int hash = hash_conntrack(orig);
Patrick McHardy7ae77302007-07-07 22:37:38 -0700462 if (!early_drop(hash)) {
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700463 atomic_dec(&nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800464 if (net_ratelimit())
465 printk(KERN_WARNING
466 "nf_conntrack: table full, dropping"
467 " packet.\n");
468 return ERR_PTR(-ENOMEM);
469 }
470 }
471
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700472 conntrack = kmem_cache_zalloc(nf_conntrack_cachep, GFP_ATOMIC);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800473 if (conntrack == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700474 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700475 atomic_dec(&nf_conntrack_count);
476 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800477 }
478
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800479 atomic_set(&conntrack->ct_general.use, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800480 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
481 conntrack->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
482 /* Don't set timer yet: wait for confirmation */
Patrick McHardye6f689d2007-03-23 11:16:30 -0700483 setup_timer(&conntrack->timeout, death_by_timeout,
484 (unsigned long)conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800485
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700486 return conntrack;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800487}
Patrick McHardy13b18332006-12-02 22:11:25 -0800488EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800489
490void nf_conntrack_free(struct nf_conn *conntrack)
491{
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700492 nf_ct_ext_free(conntrack);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700493 kmem_cache_free(nf_conntrack_cachep, conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800494 atomic_dec(&nf_conntrack_count);
495}
Patrick McHardy13b18332006-12-02 22:11:25 -0800496EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800497
498/* Allocate a new conntrack: we return -ENOMEM if classification
499 failed due to stress. Otherwise it really is unclassifiable. */
500static struct nf_conntrack_tuple_hash *
501init_conntrack(const struct nf_conntrack_tuple *tuple,
502 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100503 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800504 struct sk_buff *skb,
505 unsigned int dataoff)
506{
507 struct nf_conn *conntrack;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700508 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800509 struct nf_conntrack_tuple repl_tuple;
510 struct nf_conntrack_expect *exp;
511
Martin Josefsson605dcad2006-11-29 02:35:06 +0100512 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700513 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800514 return NULL;
515 }
516
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700517 conntrack = nf_conntrack_alloc(tuple, &repl_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800518 if (conntrack == NULL || IS_ERR(conntrack)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700519 pr_debug("Can't allocate conntrack.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800520 return (struct nf_conntrack_tuple_hash *)conntrack;
521 }
522
Martin Josefsson605dcad2006-11-29 02:35:06 +0100523 if (!l4proto->new(conntrack, skb, dataoff)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800524 nf_conntrack_free(conntrack);
Patrick McHardy0d537782007-07-07 22:39:38 -0700525 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800526 return NULL;
527 }
528
529 write_lock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -0700530 exp = nf_ct_find_expectation(tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800531 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700532 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
533 conntrack, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800534 /* Welcome, Mr. Bond. We've been expecting you... */
535 __set_bit(IPS_EXPECTED_BIT, &conntrack->status);
536 conntrack->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700537 if (exp->helper) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700538 help = nf_ct_helper_ext_add(conntrack, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700539 if (help)
540 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700541 }
542
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800543#ifdef CONFIG_NF_CONNTRACK_MARK
544 conntrack->mark = exp->master->mark;
545#endif
James Morris7c9728c2006-06-09 00:31:46 -0700546#ifdef CONFIG_NF_CONNTRACK_SECMARK
547 conntrack->secmark = exp->master->secmark;
548#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800549 nf_conntrack_get(&conntrack->master->ct_general);
550 NF_CT_STAT_INC(expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800551 } else {
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700552 struct nf_conntrack_helper *helper;
553
554 helper = __nf_ct_helper_find(&repl_tuple);
555 if (helper) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700556 help = nf_ct_helper_ext_add(conntrack, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700557 if (help)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700558 rcu_assign_pointer(help->helper, helper);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700559 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800560 NF_CT_STAT_INC(new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800561 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800562
563 /* Overload tuple linked list to put us in unconfirmed list. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700564 hlist_add_head(&conntrack->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
565 &unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800566
567 write_unlock_bh(&nf_conntrack_lock);
568
569 if (exp) {
570 if (exp->expectfn)
571 exp->expectfn(conntrack, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700572 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800573 }
574
575 return &conntrack->tuplehash[IP_CT_DIR_ORIGINAL];
576}
577
578/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
579static inline struct nf_conn *
580resolve_normal_ct(struct sk_buff *skb,
581 unsigned int dataoff,
582 u_int16_t l3num,
583 u_int8_t protonum,
584 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100585 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800586 int *set_reply,
587 enum ip_conntrack_info *ctinfo)
588{
589 struct nf_conntrack_tuple tuple;
590 struct nf_conntrack_tuple_hash *h;
591 struct nf_conn *ct;
592
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300593 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800594 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100595 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700596 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800597 return NULL;
598 }
599
600 /* look for tuple match */
Patrick McHardy330f7db2007-07-07 22:28:42 -0700601 h = nf_conntrack_find_get(&tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800602 if (!h) {
Martin Josefsson605dcad2006-11-29 02:35:06 +0100603 h = init_conntrack(&tuple, l3proto, l4proto, skb, dataoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800604 if (!h)
605 return NULL;
606 if (IS_ERR(h))
607 return (void *)h;
608 }
609 ct = nf_ct_tuplehash_to_ctrack(h);
610
611 /* It exists; we have (non-exclusive) reference. */
612 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
613 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
614 /* Please set reply bit if this packet OK */
615 *set_reply = 1;
616 } else {
617 /* Once we've had two way comms, always ESTABLISHED. */
618 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700619 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800620 *ctinfo = IP_CT_ESTABLISHED;
621 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700622 pr_debug("nf_conntrack_in: related packet for %p\n",
623 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800624 *ctinfo = IP_CT_RELATED;
625 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700626 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800627 *ctinfo = IP_CT_NEW;
628 }
629 *set_reply = 0;
630 }
631 skb->nfct = &ct->ct_general;
632 skb->nfctinfo = *ctinfo;
633 return ct;
634}
635
636unsigned int
637nf_conntrack_in(int pf, unsigned int hooknum, struct sk_buff **pskb)
638{
639 struct nf_conn *ct;
640 enum ip_conntrack_info ctinfo;
641 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100642 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800643 unsigned int dataoff;
644 u_int8_t protonum;
645 int set_reply = 0;
646 int ret;
647
648 /* Previously seen (loopback or untracked)? Ignore. */
649 if ((*pskb)->nfct) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800650 NF_CT_STAT_INC_ATOMIC(ignore);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800651 return NF_ACCEPT;
652 }
653
Patrick McHardy923f4902007-02-12 11:12:57 -0800654 /* rcu_read_lock()ed by nf_hook_slow */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800655 l3proto = __nf_ct_l3proto_find((u_int16_t)pf);
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700656 ret = l3proto->get_l4proto(*pskb, skb_network_offset(*pskb),
657 &dataoff, &protonum);
658 if (ret <= 0) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700659 pr_debug("not prepared to track yet or error occured\n");
Yasuyuki Kozakaid87d8462007-07-14 20:44:23 -0700660 NF_CT_STAT_INC_ATOMIC(error);
661 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800662 return -ret;
663 }
664
Martin Josefsson605dcad2006-11-29 02:35:06 +0100665 l4proto = __nf_ct_l4proto_find((u_int16_t)pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800666
667 /* It may be an special packet, error, unclean...
668 * inverse of the return code tells to the netfilter
669 * core what to do with the packet. */
Martin Josefsson605dcad2006-11-29 02:35:06 +0100670 if (l4proto->error != NULL &&
671 (ret = l4proto->error(*pskb, dataoff, &ctinfo, pf, hooknum)) <= 0) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800672 NF_CT_STAT_INC_ATOMIC(error);
673 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800674 return -ret;
675 }
676
Martin Josefsson605dcad2006-11-29 02:35:06 +0100677 ct = resolve_normal_ct(*pskb, dataoff, pf, protonum, l3proto, l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800678 &set_reply, &ctinfo);
679 if (!ct) {
680 /* Not valid part of a connection */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800681 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800682 return NF_ACCEPT;
683 }
684
685 if (IS_ERR(ct)) {
686 /* Too stressed to deal. */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800687 NF_CT_STAT_INC_ATOMIC(drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800688 return NF_DROP;
689 }
690
691 NF_CT_ASSERT((*pskb)->nfct);
692
Martin Josefsson605dcad2006-11-29 02:35:06 +0100693 ret = l4proto->packet(ct, *pskb, dataoff, ctinfo, pf, hooknum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800694 if (ret < 0) {
695 /* Invalid: inverse of the return code tells
696 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -0700697 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800698 nf_conntrack_put((*pskb)->nfct);
699 (*pskb)->nfct = NULL;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800700 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800701 return -ret;
702 }
703
704 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
705 nf_conntrack_event_cache(IPCT_STATUS, *pskb);
706
707 return ret;
708}
Patrick McHardy13b18332006-12-02 22:11:25 -0800709EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800710
711int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
712 const struct nf_conntrack_tuple *orig)
713{
Patrick McHardy923f4902007-02-12 11:12:57 -0800714 int ret;
715
716 rcu_read_lock();
717 ret = nf_ct_invert_tuple(inverse, orig,
718 __nf_ct_l3proto_find(orig->src.l3num),
719 __nf_ct_l4proto_find(orig->src.l3num,
720 orig->dst.protonum));
721 rcu_read_unlock();
722 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800723}
Patrick McHardy13b18332006-12-02 22:11:25 -0800724EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800725
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800726/* Alter reply tuple (maybe alter helper). This is for NAT, and is
727 implicitly racy: see __nf_conntrack_confirm */
728void nf_conntrack_alter_reply(struct nf_conn *ct,
729 const struct nf_conntrack_tuple *newreply)
730{
731 struct nf_conn_help *help = nfct_help(ct);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700732 struct nf_conntrack_helper *helper;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800733
734 write_lock_bh(&nf_conntrack_lock);
735 /* Should be unconfirmed, so not in hash table yet */
736 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
737
Patrick McHardy0d537782007-07-07 22:39:38 -0700738 pr_debug("Altering reply tuple of %p to ", ct);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800739 NF_CT_DUMP_TUPLE(newreply);
740
741 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700742 if (ct->master || (help && help->expecting != 0))
743 goto out;
744
745 helper = __nf_ct_helper_find(newreply);
746 if (helper == NULL) {
747 if (help)
748 rcu_assign_pointer(help->helper, NULL);
749 goto out;
Yasuyuki Kozakai5d78a842007-05-10 14:16:24 -0700750 }
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700751
752 if (help == NULL) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700753 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
754 if (help == NULL)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700755 goto out;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700756 } else {
757 memset(&help->help, 0, sizeof(help->help));
758 }
759
760 rcu_assign_pointer(help->helper, helper);
761out:
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800762 write_unlock_bh(&nf_conntrack_lock);
763}
Patrick McHardy13b18332006-12-02 22:11:25 -0800764EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800765
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800766/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
767void __nf_ct_refresh_acct(struct nf_conn *ct,
768 enum ip_conntrack_info ctinfo,
769 const struct sk_buff *skb,
770 unsigned long extra_jiffies,
771 int do_acct)
772{
773 int event = 0;
774
775 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
776 NF_CT_ASSERT(skb);
777
778 write_lock_bh(&nf_conntrack_lock);
779
Eric Leblond997ae832006-05-29 18:24:20 -0700780 /* Only update if this is not a fixed timeout */
781 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status)) {
782 write_unlock_bh(&nf_conntrack_lock);
783 return;
784 }
785
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800786 /* If not in hash table, timer will not be active yet */
787 if (!nf_ct_is_confirmed(ct)) {
788 ct->timeout.expires = extra_jiffies;
789 event = IPCT_REFRESH;
790 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +0100791 unsigned long newtime = jiffies + extra_jiffies;
792
793 /* Only update the timeout if the new timeout is at least
794 HZ jiffies from the old timeout. Need del_timer for race
795 avoidance (may already be dying). */
796 if (newtime - ct->timeout.expires >= HZ
797 && del_timer(&ct->timeout)) {
798 ct->timeout.expires = newtime;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800799 add_timer(&ct->timeout);
800 event = IPCT_REFRESH;
801 }
802 }
803
804#ifdef CONFIG_NF_CT_ACCT
805 if (do_acct) {
806 ct->counters[CTINFO2DIR(ctinfo)].packets++;
807 ct->counters[CTINFO2DIR(ctinfo)].bytes +=
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300808 skb->len - skb_network_offset(skb);
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100809
810 if ((ct->counters[CTINFO2DIR(ctinfo)].packets & 0x80000000)
811 || (ct->counters[CTINFO2DIR(ctinfo)].bytes & 0x80000000))
812 event |= IPCT_COUNTER_FILLING;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800813 }
814#endif
815
816 write_unlock_bh(&nf_conntrack_lock);
817
818 /* must be unlocked when calling event cache */
819 if (event)
820 nf_conntrack_event_cache(event, skb);
821}
Patrick McHardy13b18332006-12-02 22:11:25 -0800822EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800823
Patrick McHardye281db5c2007-03-04 15:57:25 -0800824#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800825
826#include <linux/netfilter/nfnetlink.h>
827#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -0800828#include <linux/mutex.h>
829
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800830
831/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
832 * in ip_conntrack_core, since we don't want the protocols to autoload
833 * or depend on ctnetlink */
834int nf_ct_port_tuple_to_nfattr(struct sk_buff *skb,
835 const struct nf_conntrack_tuple *tuple)
836{
837 NFA_PUT(skb, CTA_PROTO_SRC_PORT, sizeof(u_int16_t),
838 &tuple->src.u.tcp.port);
839 NFA_PUT(skb, CTA_PROTO_DST_PORT, sizeof(u_int16_t),
840 &tuple->dst.u.tcp.port);
841 return 0;
842
843nfattr_failure:
844 return -1;
845}
Patrick McHardy13b18332006-12-02 22:11:25 -0800846EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nfattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800847
848static const size_t cta_min_proto[CTA_PROTO_MAX] = {
849 [CTA_PROTO_SRC_PORT-1] = sizeof(u_int16_t),
850 [CTA_PROTO_DST_PORT-1] = sizeof(u_int16_t)
851};
852
853int nf_ct_port_nfattr_to_tuple(struct nfattr *tb[],
854 struct nf_conntrack_tuple *t)
855{
856 if (!tb[CTA_PROTO_SRC_PORT-1] || !tb[CTA_PROTO_DST_PORT-1])
857 return -EINVAL;
858
859 if (nfattr_bad_size(tb, CTA_PROTO_MAX, cta_min_proto))
860 return -EINVAL;
861
Patrick McHardybff9a892006-12-02 22:05:08 -0800862 t->src.u.tcp.port = *(__be16 *)NFA_DATA(tb[CTA_PROTO_SRC_PORT-1]);
863 t->dst.u.tcp.port = *(__be16 *)NFA_DATA(tb[CTA_PROTO_DST_PORT-1]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800864
865 return 0;
866}
Patrick McHardy13b18332006-12-02 22:11:25 -0800867EXPORT_SYMBOL_GPL(nf_ct_port_nfattr_to_tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800868#endif
869
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800870/* Used by ipt_REJECT and ip6t_REJECT. */
871void __nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
872{
873 struct nf_conn *ct;
874 enum ip_conntrack_info ctinfo;
875
876 /* This ICMP is in reverse direction to the packet which caused it */
877 ct = nf_ct_get(skb, &ctinfo);
878 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
879 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
880 else
881 ctinfo = IP_CT_RELATED;
882
883 /* Attach to new skbuff, and increment count */
884 nskb->nfct = &ct->ct_general;
885 nskb->nfctinfo = ctinfo;
886 nf_conntrack_get(nskb->nfct);
887}
Patrick McHardy13b18332006-12-02 22:11:25 -0800888EXPORT_SYMBOL_GPL(__nf_conntrack_attach);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800889
890static inline int
891do_iter(const struct nf_conntrack_tuple_hash *i,
892 int (*iter)(struct nf_conn *i, void *data),
893 void *data)
894{
895 return iter(nf_ct_tuplehash_to_ctrack(i), data);
896}
897
898/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -0700899static struct nf_conn *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800900get_next_corpse(int (*iter)(struct nf_conn *i, void *data),
901 void *data, unsigned int *bucket)
902{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700903 struct nf_conntrack_tuple_hash *h;
904 struct nf_conn *ct;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700905 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800906
907 write_lock_bh(&nf_conntrack_lock);
908 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700909 hlist_for_each_entry(h, n, &nf_conntrack_hash[*bucket], hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700910 ct = nf_ct_tuplehash_to_ctrack(h);
911 if (iter(ct, data))
912 goto found;
913 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800914 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700915 hlist_for_each_entry(h, n, &unconfirmed, hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700916 ct = nf_ct_tuplehash_to_ctrack(h);
917 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -0800918 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700919 }
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800920 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700921 return NULL;
922found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800923 atomic_inc(&ct->ct_general.use);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800924 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700925 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800926}
927
928void
929nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data)
930{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700931 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800932 unsigned int bucket = 0;
933
Patrick McHardydf0933d2006-09-20 11:57:53 -0700934 while ((ct = get_next_corpse(iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800935 /* Time to push up daises... */
936 if (del_timer(&ct->timeout))
937 death_by_timeout((unsigned long)ct);
938 /* ... else the timer will get him soon. */
939
940 nf_ct_put(ct);
941 }
942}
Patrick McHardy13b18332006-12-02 22:11:25 -0800943EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800944
945static int kill_all(struct nf_conn *i, void *data)
946{
947 return 1;
948}
949
Patrick McHardyac565e52007-07-07 22:30:08 -0700950void nf_ct_free_hashtable(struct hlist_head *hash, int vmalloced, int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800951{
952 if (vmalloced)
953 vfree(hash);
954 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800955 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700956 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800957}
Patrick McHardyac565e52007-07-07 22:30:08 -0700958EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800959
Randy Dunlap272491e2006-12-07 01:17:24 -0800960void nf_conntrack_flush(void)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800961{
962 nf_ct_iterate_cleanup(kill_all, NULL);
963}
Patrick McHardy13b18332006-12-02 22:11:25 -0800964EXPORT_SYMBOL_GPL(nf_conntrack_flush);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800965
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800966/* Mishearing the voices in his head, our hero wonders how he's
967 supposed to kill the mall. */
968void nf_conntrack_cleanup(void)
969{
Patrick McHardyc3a47ab2007-02-12 11:09:19 -0800970 rcu_assign_pointer(ip_ct_attach, NULL);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -0800971
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800972 /* This makes sure all current packets have passed through
973 netfilter framework. Roll on, two-stage module
974 delete... */
975 synchronize_net();
976
977 nf_ct_event_cache_flush();
978 i_see_dead_people:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800979 nf_conntrack_flush();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800980 if (atomic_read(&nf_conntrack_count) != 0) {
981 schedule();
982 goto i_see_dead_people;
983 }
Patrick McHardy66365682005-12-05 13:36:50 -0800984 /* wait until all references to nf_conntrack_untracked are dropped */
985 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
986 schedule();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800987
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -0700988 rcu_assign_pointer(nf_ct_destroy, NULL);
989
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700990 kmem_cache_destroy(nf_conntrack_cachep);
Patrick McHardyac565e52007-07-07 22:30:08 -0700991 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
992 nf_conntrack_htable_size);
KOVACS Krisztian5a6f294e42005-11-15 16:47:34 -0800993
Patrick McHardyac5357e2007-03-14 16:38:25 -0700994 nf_conntrack_proto_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700995 nf_conntrack_helper_fini();
Patrick McHardye9c1b082007-07-07 22:32:53 -0700996 nf_conntrack_expect_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800997}
998
Patrick McHardyac565e52007-07-07 22:30:08 -0700999struct hlist_head *nf_ct_alloc_hashtable(int *sizep, int *vmalloced)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001000{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001001 struct hlist_head *hash;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001002 unsigned int size, i;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001003
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001004 *vmalloced = 0;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001005
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001006 size = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_head));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001007 hash = (void*)__get_free_pages(GFP_KERNEL,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001008 get_order(sizeof(struct hlist_head)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001009 * size));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001010 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001011 *vmalloced = 1;
1012 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001013 hash = vmalloc(sizeof(struct hlist_head) * size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001014 }
1015
1016 if (hash)
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001017 for (i = 0; i < size; i++)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001018 INIT_HLIST_HEAD(&hash[i]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001019
1020 return hash;
1021}
Patrick McHardyac565e52007-07-07 22:30:08 -07001022EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001023
1024int set_hashsize(const char *val, struct kernel_param *kp)
1025{
1026 int i, bucket, hashsize, vmalloced;
1027 int old_vmalloced, old_size;
1028 int rnd;
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001029 struct hlist_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001030 struct nf_conntrack_tuple_hash *h;
1031
1032 /* On boot, we can set this without any fancy locking. */
1033 if (!nf_conntrack_htable_size)
1034 return param_set_uint(val, kp);
1035
1036 hashsize = simple_strtol(val, NULL, 0);
1037 if (!hashsize)
1038 return -EINVAL;
1039
Patrick McHardyac565e52007-07-07 22:30:08 -07001040 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001041 if (!hash)
1042 return -ENOMEM;
1043
1044 /* We have to rehahs for the new table anyway, so we also can
1045 * use a newrandom seed */
1046 get_random_bytes(&rnd, 4);
1047
1048 write_lock_bh(&nf_conntrack_lock);
1049 for (i = 0; i < nf_conntrack_htable_size; i++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001050 while (!hlist_empty(&nf_conntrack_hash[i])) {
1051 h = hlist_entry(nf_conntrack_hash[i].first,
1052 struct nf_conntrack_tuple_hash, hnode);
1053 hlist_del(&h->hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001054 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001055 hlist_add_head(&h->hnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001056 }
1057 }
1058 old_size = nf_conntrack_htable_size;
1059 old_vmalloced = nf_conntrack_vmalloc;
1060 old_hash = nf_conntrack_hash;
1061
1062 nf_conntrack_htable_size = hashsize;
1063 nf_conntrack_vmalloc = vmalloced;
1064 nf_conntrack_hash = hash;
1065 nf_conntrack_hash_rnd = rnd;
1066 write_unlock_bh(&nf_conntrack_lock);
1067
Patrick McHardyac565e52007-07-07 22:30:08 -07001068 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001069 return 0;
1070}
1071
1072module_param_call(hashsize, set_hashsize, param_get_uint,
1073 &nf_conntrack_htable_size, 0600);
1074
1075int __init nf_conntrack_init(void)
1076{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001077 int max_factor = 8;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001078 int ret;
1079
1080 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001081 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001082 if (!nf_conntrack_htable_size) {
1083 nf_conntrack_htable_size
1084 = (((num_physpages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001085 / sizeof(struct hlist_head));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001086 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001087 nf_conntrack_htable_size = 16384;
1088 if (nf_conntrack_htable_size < 32)
1089 nf_conntrack_htable_size = 32;
1090
1091 /* Use a max. factor of four by default to get the same max as
1092 * with the old struct list_heads. When a table size is given
1093 * we use the old value of 8 to avoid reducing the max.
1094 * entries. */
1095 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001096 }
Patrick McHardyac565e52007-07-07 22:30:08 -07001097 nf_conntrack_hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
1098 &nf_conntrack_vmalloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001099 if (!nf_conntrack_hash) {
1100 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1101 goto err_out;
1102 }
1103
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001104 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001105
1106 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1107 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1108 nf_conntrack_max);
1109
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001110 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1111 sizeof(struct nf_conn),
Paul Mundt20c2df82007-07-20 10:11:58 +09001112 0, 0, NULL);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001113 if (!nf_conntrack_cachep) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001114 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1115 goto err_free_hash;
1116 }
1117
Patrick McHardyac5357e2007-03-14 16:38:25 -07001118 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001119 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001120 goto err_free_conntrack_slab;
1121
1122 ret = nf_conntrack_expect_init();
1123 if (ret < 0)
1124 goto out_fini_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001125
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001126 ret = nf_conntrack_helper_init();
1127 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001128 goto out_fini_expect;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001129
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001130 /* For use by REJECT target */
Patrick McHardyc3a47ab2007-02-12 11:09:19 -08001131 rcu_assign_pointer(ip_ct_attach, __nf_conntrack_attach);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -07001132 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001133
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001134 /* Set up fake conntrack:
1135 - to never be deleted, not in any hashes */
1136 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1137 /* - and look it like as a confirmed connection */
1138 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1139
1140 return ret;
1141
Patrick McHardye9c1b082007-07-07 22:32:53 -07001142out_fini_expect:
1143 nf_conntrack_expect_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001144out_fini_proto:
1145 nf_conntrack_proto_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001146err_free_conntrack_slab:
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001147 kmem_cache_destroy(nf_conntrack_cachep);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001148err_free_hash:
Patrick McHardyac565e52007-07-07 22:30:08 -07001149 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
1150 nf_conntrack_htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001151err_out:
1152 return -ENOMEM;
1153}