blob: b77eb56a87e33a7ec85bd351e5b6d512922ebbc3 [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
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080043DEFINE_SPINLOCK(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{
Patrick McHardy07949352008-01-31 04:40:52 -080076 unsigned int n;
77 u_int32_t h;
Sami Farin9b887902007-03-14 16:43:00 -070078
Patrick McHardy07949352008-01-31 04:40:52 -080079 /* The direction must be ignored, so we hash everything up to the
80 * destination ports (which is a multiple of 4) and treat the last
81 * three bytes manually.
82 */
83 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
84 h = jhash2((u32 *)tuple, n,
85 rnd ^ (((__force __u16)tuple->dst.u.all << 16) |
86 tuple->dst.protonum));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080087
Patrick McHardy07949352008-01-31 04:40:52 -080088 return ((u64)h * size) >> 32;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080089}
90
91static inline u_int32_t hash_conntrack(const struct nf_conntrack_tuple *tuple)
92{
93 return __hash_conntrack(tuple, nf_conntrack_htable_size,
94 nf_conntrack_hash_rnd);
95}
96
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080097int
98nf_ct_get_tuple(const struct sk_buff *skb,
99 unsigned int nhoff,
100 unsigned int dataoff,
101 u_int16_t l3num,
102 u_int8_t protonum,
103 struct nf_conntrack_tuple *tuple,
104 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100105 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800106{
107 NF_CT_TUPLE_U_BLANK(tuple);
108
109 tuple->src.l3num = l3num;
110 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
111 return 0;
112
113 tuple->dst.protonum = protonum;
114 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
115
Martin Josefsson605dcad2006-11-29 02:35:06 +0100116 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800117}
Patrick McHardy13b18332006-12-02 22:11:25 -0800118EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800119
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700120int nf_ct_get_tuplepr(const struct sk_buff *skb,
121 unsigned int nhoff,
122 u_int16_t l3num,
123 struct nf_conntrack_tuple *tuple)
124{
125 struct nf_conntrack_l3proto *l3proto;
126 struct nf_conntrack_l4proto *l4proto;
127 unsigned int protoff;
128 u_int8_t protonum;
129 int ret;
130
131 rcu_read_lock();
132
133 l3proto = __nf_ct_l3proto_find(l3num);
134 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
135 if (ret != NF_ACCEPT) {
136 rcu_read_unlock();
137 return 0;
138 }
139
140 l4proto = __nf_ct_l4proto_find(l3num, protonum);
141
142 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
143 l3proto, l4proto);
144
145 rcu_read_unlock();
146 return ret;
147}
148EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
149
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800150int
151nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
152 const struct nf_conntrack_tuple *orig,
153 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100154 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800155{
156 NF_CT_TUPLE_U_BLANK(inverse);
157
158 inverse->src.l3num = orig->src.l3num;
159 if (l3proto->invert_tuple(inverse, orig) == 0)
160 return 0;
161
162 inverse->dst.dir = !orig->dst.dir;
163
164 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100165 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800166}
Patrick McHardy13b18332006-12-02 22:11:25 -0800167EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800168
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800169static void
170clean_from_lists(struct nf_conn *ct)
171{
Patrick McHardy0d537782007-07-07 22:39:38 -0700172 pr_debug("clean_from_lists(%p)\n", ct);
Patrick McHardy76507f62008-01-31 04:38:38 -0800173 hlist_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
174 hlist_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800175
176 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800177 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800178}
179
180static void
181destroy_conntrack(struct nf_conntrack *nfct)
182{
183 struct nf_conn *ct = (struct nf_conn *)nfct;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100184 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800185
Patrick McHardy0d537782007-07-07 22:39:38 -0700186 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800187 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
188 NF_CT_ASSERT(!timer_pending(&ct->timeout));
189
190 nf_conntrack_event(IPCT_DESTROY, ct);
191 set_bit(IPS_DYING_BIT, &ct->status);
192
193 /* To make sure we don't get any weird locking issues here:
194 * destroy_conntrack() MUST NOT be called with a write lock
195 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800196 rcu_read_lock();
Patrick McHardy923f4902007-02-12 11:12:57 -0800197 l4proto = __nf_ct_l4proto_find(ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.l3num,
198 ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.protonum);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100199 if (l4proto && l4proto->destroy)
200 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800201
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700202 nf_ct_ext_destroy(ct);
203
Patrick McHardy982d9a92007-02-12 11:14:11 -0800204 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800205
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800206 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800207 /* Expectations will have been removed in clean_from_lists,
208 * except TFTP can create an expectation on the first packet,
209 * before connection is in the list, so we need to clean here,
210 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800211 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800212
213 /* We overload first tuple to link into unconfirmed list. */
214 if (!nf_ct_is_confirmed(ct)) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700215 BUG_ON(hlist_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode));
216 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800217 }
218
219 NF_CT_STAT_INC(delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800220 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800221
222 if (ct->master)
223 nf_ct_put(ct->master);
224
Patrick McHardy0d537782007-07-07 22:39:38 -0700225 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800226 nf_conntrack_free(ct);
227}
228
229static void death_by_timeout(unsigned long ul_conntrack)
230{
231 struct nf_conn *ct = (void *)ul_conntrack;
Patrick McHardy5397e972007-05-19 14:23:52 -0700232 struct nf_conn_help *help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700233 struct nf_conntrack_helper *helper;
Patrick McHardy5397e972007-05-19 14:23:52 -0700234
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700235 if (help) {
236 rcu_read_lock();
237 helper = rcu_dereference(help->helper);
238 if (helper && helper->destroy)
239 helper->destroy(ct);
240 rcu_read_unlock();
241 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800242
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800243 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800244 /* Inside lock so preempt is disabled on module removal path.
245 * Otherwise we can get spurious warnings. */
246 NF_CT_STAT_INC(delete_list);
247 clean_from_lists(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800248 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800249 nf_ct_put(ct);
250}
251
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800252struct nf_conntrack_tuple_hash *
Patrick McHardyba419af2008-01-31 04:39:23 -0800253__nf_conntrack_find(const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800254{
255 struct nf_conntrack_tuple_hash *h;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700256 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800257 unsigned int hash = hash_conntrack(tuple);
258
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800259 /* Disable BHs the entire time since we normally need to disable them
260 * at least once for the stats anyway.
261 */
262 local_bh_disable();
Patrick McHardy76507f62008-01-31 04:38:38 -0800263 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash], hnode) {
Patrick McHardyba419af2008-01-31 04:39:23 -0800264 if (nf_ct_tuple_equal(tuple, &h->tuple)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800265 NF_CT_STAT_INC(found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800266 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800267 return h;
268 }
269 NF_CT_STAT_INC(searched);
270 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800271 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800272
273 return NULL;
274}
Patrick McHardy13b18332006-12-02 22:11:25 -0800275EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800276
277/* Find a connection corresponding to a tuple. */
278struct nf_conntrack_tuple_hash *
Patrick McHardy330f7db2007-07-07 22:28:42 -0700279nf_conntrack_find_get(const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800280{
281 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800282 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800283
Patrick McHardy76507f62008-01-31 04:38:38 -0800284 rcu_read_lock();
Patrick McHardyba419af2008-01-31 04:39:23 -0800285 h = __nf_conntrack_find(tuple);
Patrick McHardy76507f62008-01-31 04:38:38 -0800286 if (h) {
287 ct = nf_ct_tuplehash_to_ctrack(h);
288 if (unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
289 h = NULL;
290 }
291 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800292
293 return h;
294}
Patrick McHardy13b18332006-12-02 22:11:25 -0800295EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800296
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800297static void __nf_conntrack_hash_insert(struct nf_conn *ct,
298 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800299 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800300{
Patrick McHardy76507f62008-01-31 04:38:38 -0800301 hlist_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
302 &nf_conntrack_hash[hash]);
303 hlist_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnode,
304 &nf_conntrack_hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800305}
306
307void nf_conntrack_hash_insert(struct nf_conn *ct)
308{
309 unsigned int hash, repl_hash;
310
311 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
312 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
313
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800314 spin_lock_bh(&nf_conntrack_lock);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800315 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800316 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800317}
Patrick McHardy13b18332006-12-02 22:11:25 -0800318EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800319
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800320/* Confirm a connection given skb; places it in hash table */
321int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700322__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800323{
324 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700325 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800326 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700327 struct nf_conn_help *help;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700328 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800329 enum ip_conntrack_info ctinfo;
330
Herbert Xu3db05fe2007-10-15 00:53:15 -0700331 ct = nf_ct_get(skb, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800332
333 /* ipt_REJECT uses nf_conntrack_attach to attach related
334 ICMP/TCP RST packets in other direction. Actual packet
335 which created connection will be IP_CT_NEW or for an
336 expected connection, IP_CT_RELATED. */
337 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
338 return NF_ACCEPT;
339
340 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
341 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
342
343 /* We're not in hash table, and we refuse to set up related
344 connections for unconfirmed conns. But packet copies and
345 REJECT will give spurious warnings here. */
346 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
347
348 /* No external references means noone else could have
349 confirmed us. */
350 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700351 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800352
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800353 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800354
355 /* See if there's one in the list already, including reverse:
356 NAT could have grabbed it without realizing, since we're
357 not in the hash. If there is, we lost race. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700358 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700359 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
360 &h->tuple))
361 goto out;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700362 hlist_for_each_entry(h, n, &nf_conntrack_hash[repl_hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700363 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
364 &h->tuple))
365 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800366
Patrick McHardydf0933d2006-09-20 11:57:53 -0700367 /* Remove from unconfirmed list */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700368 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700369
370 __nf_conntrack_hash_insert(ct, hash, repl_hash);
371 /* Timer relative to confirmation time, not original
372 setting time, otherwise we'd get timer wrap in
373 weird delay cases. */
374 ct->timeout.expires += jiffies;
375 add_timer(&ct->timeout);
376 atomic_inc(&ct->ct_general.use);
377 set_bit(IPS_CONFIRMED_BIT, &ct->status);
378 NF_CT_STAT_INC(insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800379 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700380 help = nfct_help(ct);
381 if (help && help->helper)
Herbert Xu3db05fe2007-10-15 00:53:15 -0700382 nf_conntrack_event_cache(IPCT_HELPER, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800383#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardydf0933d2006-09-20 11:57:53 -0700384 if (test_bit(IPS_SRC_NAT_DONE_BIT, &ct->status) ||
385 test_bit(IPS_DST_NAT_DONE_BIT, &ct->status))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700386 nf_conntrack_event_cache(IPCT_NATINFO, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800387#endif
Patrick McHardydf0933d2006-09-20 11:57:53 -0700388 nf_conntrack_event_cache(master_ct(ct) ?
Herbert Xu3db05fe2007-10-15 00:53:15 -0700389 IPCT_RELATED : IPCT_NEW, skb);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700390 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800391
Patrick McHardydf0933d2006-09-20 11:57:53 -0700392out:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800393 NF_CT_STAT_INC(insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800394 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800395 return NF_DROP;
396}
Patrick McHardy13b18332006-12-02 22:11:25 -0800397EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800398
399/* Returns true if a connection correspondings to the tuple (required
400 for NAT). */
401int
402nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
403 const struct nf_conn *ignored_conntrack)
404{
405 struct nf_conntrack_tuple_hash *h;
Patrick McHardyba419af2008-01-31 04:39:23 -0800406 struct hlist_node *n;
407 unsigned int hash = hash_conntrack(tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800408
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800409 /* Disable BHs the entire time since we need to disable them at
410 * least once for the stats anyway.
411 */
412 rcu_read_lock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800413 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash], hnode) {
414 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
415 nf_ct_tuple_equal(tuple, &h->tuple)) {
416 NF_CT_STAT_INC(found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800417 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800418 return 1;
419 }
420 NF_CT_STAT_INC(searched);
421 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800422 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800423
Patrick McHardyba419af2008-01-31 04:39:23 -0800424 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800425}
Patrick McHardy13b18332006-12-02 22:11:25 -0800426EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800427
Patrick McHardy7ae77302007-07-07 22:37:38 -0700428#define NF_CT_EVICTION_RANGE 8
429
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800430/* There's a small race here where we may free a just-assured
431 connection. Too bad: we're in trouble anyway. */
Patrick McHardy76eb9462008-01-31 04:41:44 -0800432static noinline int early_drop(unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800433{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700434 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800435 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700436 struct nf_conn *ct = NULL, *tmp;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700437 struct hlist_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700438 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800439 int dropped = 0;
440
Patrick McHardy76507f62008-01-31 04:38:38 -0800441 rcu_read_lock();
Patrick McHardy7ae77302007-07-07 22:37:38 -0700442 for (i = 0; i < nf_conntrack_htable_size; i++) {
Patrick McHardy76507f62008-01-31 04:38:38 -0800443 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash],
444 hnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700445 tmp = nf_ct_tuplehash_to_ctrack(h);
446 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
447 ct = tmp;
448 cnt++;
449 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800450
451 if (ct && unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
452 ct = NULL;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700453 if (ct || cnt >= NF_CT_EVICTION_RANGE)
454 break;
455 hash = (hash + 1) % nf_conntrack_htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800456 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800457 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800458
459 if (!ct)
460 return dropped;
461
462 if (del_timer(&ct->timeout)) {
463 death_by_timeout((unsigned long)ct);
464 dropped = 1;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800465 NF_CT_STAT_INC_ATOMIC(early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800466 }
467 nf_ct_put(ct);
468 return dropped;
469}
470
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700471struct nf_conn *nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
472 const struct nf_conntrack_tuple *repl)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800473{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800474 struct nf_conn *ct = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800475
Harald Weltedc808fe2006-03-20 17:56:32 -0800476 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800477 get_random_bytes(&nf_conntrack_hash_rnd, 4);
478 nf_conntrack_hash_rnd_initted = 1;
479 }
480
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700481 /* We don't want any race condition at early drop stage */
482 atomic_inc(&nf_conntrack_count);
483
Patrick McHardy76eb9462008-01-31 04:41:44 -0800484 if (nf_conntrack_max &&
485 unlikely(atomic_read(&nf_conntrack_count) > nf_conntrack_max)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800486 unsigned int hash = hash_conntrack(orig);
Patrick McHardy7ae77302007-07-07 22:37:38 -0700487 if (!early_drop(hash)) {
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700488 atomic_dec(&nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800489 if (net_ratelimit())
490 printk(KERN_WARNING
491 "nf_conntrack: table full, dropping"
492 " packet.\n");
493 return ERR_PTR(-ENOMEM);
494 }
495 }
496
Patrick McHardyc88130b2008-01-31 04:42:11 -0800497 ct = kmem_cache_zalloc(nf_conntrack_cachep, GFP_ATOMIC);
498 if (ct == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700499 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700500 atomic_dec(&nf_conntrack_count);
501 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800502 }
503
Patrick McHardyc88130b2008-01-31 04:42:11 -0800504 atomic_set(&ct->ct_general.use, 1);
505 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
506 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800507 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800508 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
509 INIT_RCU_HEAD(&ct->rcu);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800510
Patrick McHardyc88130b2008-01-31 04:42:11 -0800511 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800512}
Patrick McHardy13b18332006-12-02 22:11:25 -0800513EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800514
Patrick McHardy76507f62008-01-31 04:38:38 -0800515static void nf_conntrack_free_rcu(struct rcu_head *head)
516{
517 struct nf_conn *ct = container_of(head, struct nf_conn, rcu);
518
519 nf_ct_ext_free(ct);
520 kmem_cache_free(nf_conntrack_cachep, ct);
521 atomic_dec(&nf_conntrack_count);
522}
523
Patrick McHardyc88130b2008-01-31 04:42:11 -0800524void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800525{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800526 call_rcu(&ct->rcu, nf_conntrack_free_rcu);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800527}
Patrick McHardy13b18332006-12-02 22:11:25 -0800528EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800529
530/* Allocate a new conntrack: we return -ENOMEM if classification
531 failed due to stress. Otherwise it really is unclassifiable. */
532static struct nf_conntrack_tuple_hash *
533init_conntrack(const struct nf_conntrack_tuple *tuple,
534 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100535 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800536 struct sk_buff *skb,
537 unsigned int dataoff)
538{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800539 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700540 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800541 struct nf_conntrack_tuple repl_tuple;
542 struct nf_conntrack_expect *exp;
543
Martin Josefsson605dcad2006-11-29 02:35:06 +0100544 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700545 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800546 return NULL;
547 }
548
Patrick McHardyc88130b2008-01-31 04:42:11 -0800549 ct = nf_conntrack_alloc(tuple, &repl_tuple);
550 if (ct == NULL || IS_ERR(ct)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700551 pr_debug("Can't allocate conntrack.\n");
Patrick McHardyc88130b2008-01-31 04:42:11 -0800552 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800553 }
554
Patrick McHardyc88130b2008-01-31 04:42:11 -0800555 if (!l4proto->new(ct, skb, dataoff)) {
556 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700557 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800558 return NULL;
559 }
560
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800561 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -0700562 exp = nf_ct_find_expectation(tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800563 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700564 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800565 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800566 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800567 __set_bit(IPS_EXPECTED_BIT, &ct->status);
568 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700569 if (exp->helper) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800570 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700571 if (help)
572 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700573 }
574
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800575#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800576 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800577#endif
James Morris7c9728c2006-06-09 00:31:46 -0700578#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800579 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700580#endif
Patrick McHardyc88130b2008-01-31 04:42:11 -0800581 nf_conntrack_get(&ct->master->ct_general);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800582 NF_CT_STAT_INC(expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800583 } else {
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700584 struct nf_conntrack_helper *helper;
585
586 helper = __nf_ct_helper_find(&repl_tuple);
587 if (helper) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800588 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700589 if (help)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700590 rcu_assign_pointer(help->helper, helper);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700591 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800592 NF_CT_STAT_INC(new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800593 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800594
595 /* Overload tuple linked list to put us in unconfirmed list. */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800596 hlist_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode, &unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800597
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800598 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800599
600 if (exp) {
601 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800602 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700603 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800604 }
605
Patrick McHardyc88130b2008-01-31 04:42:11 -0800606 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800607}
608
609/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
610static inline struct nf_conn *
611resolve_normal_ct(struct sk_buff *skb,
612 unsigned int dataoff,
613 u_int16_t l3num,
614 u_int8_t protonum,
615 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100616 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800617 int *set_reply,
618 enum ip_conntrack_info *ctinfo)
619{
620 struct nf_conntrack_tuple tuple;
621 struct nf_conntrack_tuple_hash *h;
622 struct nf_conn *ct;
623
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300624 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800625 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100626 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700627 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800628 return NULL;
629 }
630
631 /* look for tuple match */
Patrick McHardy330f7db2007-07-07 22:28:42 -0700632 h = nf_conntrack_find_get(&tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800633 if (!h) {
Martin Josefsson605dcad2006-11-29 02:35:06 +0100634 h = init_conntrack(&tuple, l3proto, l4proto, skb, dataoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800635 if (!h)
636 return NULL;
637 if (IS_ERR(h))
638 return (void *)h;
639 }
640 ct = nf_ct_tuplehash_to_ctrack(h);
641
642 /* It exists; we have (non-exclusive) reference. */
643 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
644 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
645 /* Please set reply bit if this packet OK */
646 *set_reply = 1;
647 } else {
648 /* Once we've had two way comms, always ESTABLISHED. */
649 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700650 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800651 *ctinfo = IP_CT_ESTABLISHED;
652 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700653 pr_debug("nf_conntrack_in: related packet for %p\n",
654 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800655 *ctinfo = IP_CT_RELATED;
656 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700657 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800658 *ctinfo = IP_CT_NEW;
659 }
660 *set_reply = 0;
661 }
662 skb->nfct = &ct->ct_general;
663 skb->nfctinfo = *ctinfo;
664 return ct;
665}
666
667unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700668nf_conntrack_in(int pf, unsigned int hooknum, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800669{
670 struct nf_conn *ct;
671 enum ip_conntrack_info ctinfo;
672 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100673 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800674 unsigned int dataoff;
675 u_int8_t protonum;
676 int set_reply = 0;
677 int ret;
678
679 /* Previously seen (loopback or untracked)? Ignore. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700680 if (skb->nfct) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800681 NF_CT_STAT_INC_ATOMIC(ignore);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800682 return NF_ACCEPT;
683 }
684
Patrick McHardy923f4902007-02-12 11:12:57 -0800685 /* rcu_read_lock()ed by nf_hook_slow */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800686 l3proto = __nf_ct_l3proto_find((u_int16_t)pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700687 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700688 &dataoff, &protonum);
689 if (ret <= 0) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700690 pr_debug("not prepared to track yet or error occured\n");
Yasuyuki Kozakaid87d8462007-07-14 20:44:23 -0700691 NF_CT_STAT_INC_ATOMIC(error);
692 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800693 return -ret;
694 }
695
Martin Josefsson605dcad2006-11-29 02:35:06 +0100696 l4proto = __nf_ct_l4proto_find((u_int16_t)pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800697
698 /* It may be an special packet, error, unclean...
699 * inverse of the return code tells to the netfilter
700 * core what to do with the packet. */
Martin Josefsson605dcad2006-11-29 02:35:06 +0100701 if (l4proto->error != NULL &&
Herbert Xu3db05fe2007-10-15 00:53:15 -0700702 (ret = l4proto->error(skb, dataoff, &ctinfo, pf, hooknum)) <= 0) {
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800703 NF_CT_STAT_INC_ATOMIC(error);
704 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800705 return -ret;
706 }
707
Herbert Xu3db05fe2007-10-15 00:53:15 -0700708 ct = resolve_normal_ct(skb, dataoff, pf, protonum, l3proto, l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800709 &set_reply, &ctinfo);
710 if (!ct) {
711 /* Not valid part of a connection */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800712 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800713 return NF_ACCEPT;
714 }
715
716 if (IS_ERR(ct)) {
717 /* Too stressed to deal. */
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800718 NF_CT_STAT_INC_ATOMIC(drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800719 return NF_DROP;
720 }
721
Herbert Xu3db05fe2007-10-15 00:53:15 -0700722 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800723
Herbert Xu3db05fe2007-10-15 00:53:15 -0700724 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800725 if (ret < 0) {
726 /* Invalid: inverse of the return code tells
727 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -0700728 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -0700729 nf_conntrack_put(skb->nfct);
730 skb->nfct = NULL;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800731 NF_CT_STAT_INC_ATOMIC(invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800732 return -ret;
733 }
734
735 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700736 nf_conntrack_event_cache(IPCT_STATUS, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800737
738 return ret;
739}
Patrick McHardy13b18332006-12-02 22:11:25 -0800740EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800741
742int nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
743 const struct nf_conntrack_tuple *orig)
744{
Patrick McHardy923f4902007-02-12 11:12:57 -0800745 int ret;
746
747 rcu_read_lock();
748 ret = nf_ct_invert_tuple(inverse, orig,
749 __nf_ct_l3proto_find(orig->src.l3num),
750 __nf_ct_l4proto_find(orig->src.l3num,
751 orig->dst.protonum));
752 rcu_read_unlock();
753 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800754}
Patrick McHardy13b18332006-12-02 22:11:25 -0800755EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800756
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800757/* Alter reply tuple (maybe alter helper). This is for NAT, and is
758 implicitly racy: see __nf_conntrack_confirm */
759void nf_conntrack_alter_reply(struct nf_conn *ct,
760 const struct nf_conntrack_tuple *newreply)
761{
762 struct nf_conn_help *help = nfct_help(ct);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700763 struct nf_conntrack_helper *helper;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800764
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800765 /* Should be unconfirmed, so not in hash table yet */
766 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
767
Patrick McHardy0d537782007-07-07 22:39:38 -0700768 pr_debug("Altering reply tuple of %p to ", ct);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800769 NF_CT_DUMP_TUPLE(newreply);
770
771 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700772 if (ct->master || (help && help->expecting != 0))
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800773 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700774
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800775 rcu_read_lock();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700776 helper = __nf_ct_helper_find(newreply);
777 if (helper == NULL) {
778 if (help)
779 rcu_assign_pointer(help->helper, NULL);
780 goto out;
Yasuyuki Kozakai5d78a842007-05-10 14:16:24 -0700781 }
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700782
783 if (help == NULL) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700784 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
785 if (help == NULL)
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700786 goto out;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700787 } else {
788 memset(&help->help, 0, sizeof(help->help));
789 }
790
791 rcu_assign_pointer(help->helper, helper);
792out:
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800793 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800794}
Patrick McHardy13b18332006-12-02 22:11:25 -0800795EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800796
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800797/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
798void __nf_ct_refresh_acct(struct nf_conn *ct,
799 enum ip_conntrack_info ctinfo,
800 const struct sk_buff *skb,
801 unsigned long extra_jiffies,
802 int do_acct)
803{
804 int event = 0;
805
806 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
807 NF_CT_ASSERT(skb);
808
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800809 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800810
Eric Leblond997ae832006-05-29 18:24:20 -0700811 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -0800812 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
813 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -0700814
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800815 /* If not in hash table, timer will not be active yet */
816 if (!nf_ct_is_confirmed(ct)) {
817 ct->timeout.expires = extra_jiffies;
818 event = IPCT_REFRESH;
819 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +0100820 unsigned long newtime = jiffies + extra_jiffies;
821
822 /* Only update the timeout if the new timeout is at least
823 HZ jiffies from the old timeout. Need del_timer for race
824 avoidance (may already be dying). */
825 if (newtime - ct->timeout.expires >= HZ
826 && del_timer(&ct->timeout)) {
827 ct->timeout.expires = newtime;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800828 add_timer(&ct->timeout);
829 event = IPCT_REFRESH;
830 }
831 }
832
Patrick McHardy47d95042008-01-31 04:36:31 -0800833acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800834#ifdef CONFIG_NF_CT_ACCT
835 if (do_acct) {
836 ct->counters[CTINFO2DIR(ctinfo)].packets++;
837 ct->counters[CTINFO2DIR(ctinfo)].bytes +=
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300838 skb->len - skb_network_offset(skb);
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100839
840 if ((ct->counters[CTINFO2DIR(ctinfo)].packets & 0x80000000)
841 || (ct->counters[CTINFO2DIR(ctinfo)].bytes & 0x80000000))
842 event |= IPCT_COUNTER_FILLING;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800843 }
844#endif
845
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800846 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800847
848 /* must be unlocked when calling event cache */
849 if (event)
850 nf_conntrack_event_cache(event, skb);
851}
Patrick McHardy13b18332006-12-02 22:11:25 -0800852EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800853
Patrick McHardye281db5c2007-03-04 15:57:25 -0800854#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800855
856#include <linux/netfilter/nfnetlink.h>
857#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -0800858#include <linux/mutex.h>
859
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800860/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
861 * in ip_conntrack_core, since we don't want the protocols to autoload
862 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -0700863int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800864 const struct nf_conntrack_tuple *tuple)
865{
Patrick McHardy77236b62007-12-17 22:29:45 -0800866 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
867 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800868 return 0;
869
Patrick McHardydf6fb862007-09-28 14:37:03 -0700870nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800871 return -1;
872}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700873EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800874
Patrick McHardyf73e9242007-09-28 14:39:55 -0700875const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
876 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
877 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800878};
Patrick McHardyf73e9242007-09-28 14:39:55 -0700879EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800880
Patrick McHardyfdf70832007-09-28 14:37:41 -0700881int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800882 struct nf_conntrack_tuple *t)
883{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700884 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800885 return -EINVAL;
886
Patrick McHardy77236b62007-12-17 22:29:45 -0800887 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
888 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800889
890 return 0;
891}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700892EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800893#endif
894
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800895/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardyb334aad2008-01-14 23:48:57 -0800896static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800897{
898 struct nf_conn *ct;
899 enum ip_conntrack_info ctinfo;
900
901 /* This ICMP is in reverse direction to the packet which caused it */
902 ct = nf_ct_get(skb, &ctinfo);
903 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
904 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
905 else
906 ctinfo = IP_CT_RELATED;
907
908 /* Attach to new skbuff, and increment count */
909 nskb->nfct = &ct->ct_general;
910 nskb->nfctinfo = ctinfo;
911 nf_conntrack_get(nskb->nfct);
912}
913
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800914/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -0700915static struct nf_conn *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800916get_next_corpse(int (*iter)(struct nf_conn *i, void *data),
917 void *data, unsigned int *bucket)
918{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700919 struct nf_conntrack_tuple_hash *h;
920 struct nf_conn *ct;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700921 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800922
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800923 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800924 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700925 hlist_for_each_entry(h, n, &nf_conntrack_hash[*bucket], hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700926 ct = nf_ct_tuplehash_to_ctrack(h);
927 if (iter(ct, data))
928 goto found;
929 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800930 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700931 hlist_for_each_entry(h, n, &unconfirmed, hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700932 ct = nf_ct_tuplehash_to_ctrack(h);
933 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -0800934 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700935 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800936 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700937 return NULL;
938found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800939 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800940 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700941 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800942}
943
944void
945nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data)
946{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700947 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800948 unsigned int bucket = 0;
949
Patrick McHardydf0933d2006-09-20 11:57:53 -0700950 while ((ct = get_next_corpse(iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800951 /* Time to push up daises... */
952 if (del_timer(&ct->timeout))
953 death_by_timeout((unsigned long)ct);
954 /* ... else the timer will get him soon. */
955
956 nf_ct_put(ct);
957 }
958}
Patrick McHardy13b18332006-12-02 22:11:25 -0800959EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800960
961static int kill_all(struct nf_conn *i, void *data)
962{
963 return 1;
964}
965
Stephen Hemminger96eb24d2008-01-31 04:07:29 -0800966void nf_ct_free_hashtable(struct hlist_head *hash, int vmalloced, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800967{
968 if (vmalloced)
969 vfree(hash);
970 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800971 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700972 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800973}
Patrick McHardyac565e52007-07-07 22:30:08 -0700974EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800975
Randy Dunlap272491e2006-12-07 01:17:24 -0800976void nf_conntrack_flush(void)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800977{
978 nf_ct_iterate_cleanup(kill_all, NULL);
979}
Patrick McHardy13b18332006-12-02 22:11:25 -0800980EXPORT_SYMBOL_GPL(nf_conntrack_flush);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800981
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800982/* Mishearing the voices in his head, our hero wonders how he's
983 supposed to kill the mall. */
984void nf_conntrack_cleanup(void)
985{
Patrick McHardyc3a47ab2007-02-12 11:09:19 -0800986 rcu_assign_pointer(ip_ct_attach, NULL);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -0800987
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800988 /* This makes sure all current packets have passed through
989 netfilter framework. Roll on, two-stage module
990 delete... */
991 synchronize_net();
992
993 nf_ct_event_cache_flush();
994 i_see_dead_people:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800995 nf_conntrack_flush();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800996 if (atomic_read(&nf_conntrack_count) != 0) {
997 schedule();
998 goto i_see_dead_people;
999 }
Patrick McHardy66365682005-12-05 13:36:50 -08001000 /* wait until all references to nf_conntrack_untracked are dropped */
1001 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
1002 schedule();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001003
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -07001004 rcu_assign_pointer(nf_ct_destroy, NULL);
1005
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001006 kmem_cache_destroy(nf_conntrack_cachep);
Patrick McHardyac565e52007-07-07 22:30:08 -07001007 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
1008 nf_conntrack_htable_size);
KOVACS Krisztian5a6f2942005-11-15 16:47:34 -08001009
Patrick McHardyac5357e2007-03-14 16:38:25 -07001010 nf_conntrack_proto_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001011 nf_conntrack_helper_fini();
Patrick McHardye9c1b082007-07-07 22:32:53 -07001012 nf_conntrack_expect_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001013}
1014
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001015struct hlist_head *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001016{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001017 struct hlist_head *hash;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001018 unsigned int size, i;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001019
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001020 *vmalloced = 0;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001021
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001022 size = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_head));
Andrew Morton29b67492007-10-29 21:41:19 -07001023 hash = (void*)__get_free_pages(GFP_KERNEL|__GFP_NOWARN,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001024 get_order(sizeof(struct hlist_head)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001025 * size));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001026 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001027 *vmalloced = 1;
1028 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001029 hash = vmalloc(sizeof(struct hlist_head) * size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001030 }
1031
1032 if (hash)
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001033 for (i = 0; i < size; i++)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001034 INIT_HLIST_HEAD(&hash[i]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001035
1036 return hash;
1037}
Patrick McHardyac565e52007-07-07 22:30:08 -07001038EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001039
Patrick McHardyfae718d2007-12-24 21:09:10 -08001040int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001041{
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001042 int i, bucket, vmalloced, old_vmalloced;
1043 unsigned int hashsize, old_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001044 int rnd;
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001045 struct hlist_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001046 struct nf_conntrack_tuple_hash *h;
1047
1048 /* On boot, we can set this without any fancy locking. */
1049 if (!nf_conntrack_htable_size)
1050 return param_set_uint(val, kp);
1051
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001052 hashsize = simple_strtoul(val, NULL, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001053 if (!hashsize)
1054 return -EINVAL;
1055
Patrick McHardyac565e52007-07-07 22:30:08 -07001056 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001057 if (!hash)
1058 return -ENOMEM;
1059
1060 /* We have to rehahs for the new table anyway, so we also can
1061 * use a newrandom seed */
1062 get_random_bytes(&rnd, 4);
1063
Patrick McHardy76507f62008-01-31 04:38:38 -08001064 /* Lookups in the old hash might happen in parallel, which means we
1065 * might get false negatives during connection lookup. New connections
1066 * created because of a false negative won't make it into the hash
1067 * though since that required taking the lock.
1068 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001069 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001070 for (i = 0; i < nf_conntrack_htable_size; i++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001071 while (!hlist_empty(&nf_conntrack_hash[i])) {
1072 h = hlist_entry(nf_conntrack_hash[i].first,
1073 struct nf_conntrack_tuple_hash, hnode);
Patrick McHardy76507f62008-01-31 04:38:38 -08001074 hlist_del_rcu(&h->hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001075 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001076 hlist_add_head(&h->hnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001077 }
1078 }
1079 old_size = nf_conntrack_htable_size;
1080 old_vmalloced = nf_conntrack_vmalloc;
1081 old_hash = nf_conntrack_hash;
1082
1083 nf_conntrack_htable_size = hashsize;
1084 nf_conntrack_vmalloc = vmalloced;
1085 nf_conntrack_hash = hash;
1086 nf_conntrack_hash_rnd = rnd;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001087 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001088
Patrick McHardyac565e52007-07-07 22:30:08 -07001089 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001090 return 0;
1091}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001092EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001093
Patrick McHardyfae718d2007-12-24 21:09:10 -08001094module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001095 &nf_conntrack_htable_size, 0600);
1096
1097int __init nf_conntrack_init(void)
1098{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001099 int max_factor = 8;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001100 int ret;
1101
1102 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001103 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001104 if (!nf_conntrack_htable_size) {
1105 nf_conntrack_htable_size
1106 = (((num_physpages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001107 / sizeof(struct hlist_head));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001108 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001109 nf_conntrack_htable_size = 16384;
1110 if (nf_conntrack_htable_size < 32)
1111 nf_conntrack_htable_size = 32;
1112
1113 /* Use a max. factor of four by default to get the same max as
1114 * with the old struct list_heads. When a table size is given
1115 * we use the old value of 8 to avoid reducing the max.
1116 * entries. */
1117 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001118 }
Patrick McHardyac565e52007-07-07 22:30:08 -07001119 nf_conntrack_hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
1120 &nf_conntrack_vmalloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001121 if (!nf_conntrack_hash) {
1122 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1123 goto err_out;
1124 }
1125
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001126 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001127
1128 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1129 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1130 nf_conntrack_max);
1131
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001132 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1133 sizeof(struct nf_conn),
Paul Mundt20c2df82007-07-20 10:11:58 +09001134 0, 0, NULL);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001135 if (!nf_conntrack_cachep) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001136 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1137 goto err_free_hash;
1138 }
1139
Patrick McHardyac5357e2007-03-14 16:38:25 -07001140 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001141 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001142 goto err_free_conntrack_slab;
1143
1144 ret = nf_conntrack_expect_init();
1145 if (ret < 0)
1146 goto out_fini_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001147
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001148 ret = nf_conntrack_helper_init();
1149 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001150 goto out_fini_expect;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001151
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001152 /* For use by REJECT target */
Patrick McHardyb334aad2008-01-14 23:48:57 -08001153 rcu_assign_pointer(ip_ct_attach, nf_conntrack_attach);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -07001154 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001155
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001156 /* Set up fake conntrack:
1157 - to never be deleted, not in any hashes */
1158 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1159 /* - and look it like as a confirmed connection */
1160 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1161
1162 return ret;
1163
Patrick McHardye9c1b082007-07-07 22:32:53 -07001164out_fini_expect:
1165 nf_conntrack_expect_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001166out_fini_proto:
1167 nf_conntrack_proto_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001168err_free_conntrack_slab:
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001169 kmem_cache_destroy(nf_conntrack_cachep);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001170err_free_hash:
Patrick McHardyac565e52007-07-07 22:30:08 -07001171 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
1172 nf_conntrack_htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001173err_out:
1174 return -ENOMEM;
1175}