blob: 6aaf64b5dede89fa187fcc0103e440d74d39f47a [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>
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -070040#include <net/netfilter/nf_conntrack_acct.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080041
Harald Weltedc808fe2006-03-20 17:56:32 -080042#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080043
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080044DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080045EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080046
47/* nf_conntrack_standalone needs this */
48atomic_t nf_conntrack_count = ATOMIC_INIT(0);
Patrick McHardya999e682006-11-29 02:35:20 +010049EXPORT_SYMBOL_GPL(nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080050
Martin Josefssone2b76062006-11-29 02:35:04 +010051unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080052EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
53
Brian Haley94aec082006-09-18 00:05:22 -070054int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010055EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080056
Patrick McHardyf205c5e2007-07-07 22:28:14 -070057struct hlist_head *nf_conntrack_hash __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080058EXPORT_SYMBOL_GPL(nf_conntrack_hash);
59
Martin Josefssone2b76062006-11-29 02:35:04 +010060struct nf_conn nf_conntrack_untracked __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080061EXPORT_SYMBOL_GPL(nf_conntrack_untracked);
62
Brian Haley94aec082006-09-18 00:05:22 -070063unsigned int nf_ct_log_invalid __read_mostly;
Patrick McHardyf205c5e2007-07-07 22:28:14 -070064HLIST_HEAD(unconfirmed);
Brian Haley1192e402006-09-20 12:03:46 -070065static int nf_conntrack_vmalloc __read_mostly;
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -070066static struct kmem_cache *nf_conntrack_cachep __read_mostly;
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{
Patrick McHardy07949352008-01-31 04:40:52 -080077 unsigned int n;
78 u_int32_t h;
Sami Farin9b887902007-03-14 16:43:00 -070079
Patrick McHardy07949352008-01-31 04:40:52 -080080 /* The direction must be ignored, so we hash everything up to the
81 * destination ports (which is a multiple of 4) and treat the last
82 * three bytes manually.
83 */
84 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
85 h = jhash2((u32 *)tuple, n,
86 rnd ^ (((__force __u16)tuple->dst.u.all << 16) |
87 tuple->dst.protonum));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080088
Patrick McHardy07949352008-01-31 04:40:52 -080089 return ((u64)h * size) >> 32;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080090}
91
92static inline u_int32_t hash_conntrack(const struct nf_conntrack_tuple *tuple)
93{
94 return __hash_conntrack(tuple, nf_conntrack_htable_size,
95 nf_conntrack_hash_rnd);
96}
97
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +020098bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080099nf_ct_get_tuple(const struct sk_buff *skb,
100 unsigned int nhoff,
101 unsigned int dataoff,
102 u_int16_t l3num,
103 u_int8_t protonum,
104 struct nf_conntrack_tuple *tuple,
105 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100106 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800107{
Philip Craig443a70d2008-04-29 03:35:10 -0700108 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800109
110 tuple->src.l3num = l3num;
111 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200112 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800113
114 tuple->dst.protonum = protonum;
115 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
116
Martin Josefsson605dcad2006-11-29 02:35:06 +0100117 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800118}
Patrick McHardy13b18332006-12-02 22:11:25 -0800119EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800120
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200121bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
122 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700123{
124 struct nf_conntrack_l3proto *l3proto;
125 struct nf_conntrack_l4proto *l4proto;
126 unsigned int protoff;
127 u_int8_t protonum;
128 int ret;
129
130 rcu_read_lock();
131
132 l3proto = __nf_ct_l3proto_find(l3num);
133 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
134 if (ret != NF_ACCEPT) {
135 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200136 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700137 }
138
139 l4proto = __nf_ct_l4proto_find(l3num, protonum);
140
141 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
142 l3proto, l4proto);
143
144 rcu_read_unlock();
145 return ret;
146}
147EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
148
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200149bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800150nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
151 const struct nf_conntrack_tuple *orig,
152 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100153 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800154{
Philip Craig443a70d2008-04-29 03:35:10 -0700155 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800156
157 inverse->src.l3num = orig->src.l3num;
158 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200159 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800160
161 inverse->dst.dir = !orig->dst.dir;
162
163 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100164 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165}
Patrick McHardy13b18332006-12-02 22:11:25 -0800166EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800167
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800168static void
169clean_from_lists(struct nf_conn *ct)
170{
Patrick McHardy0d537782007-07-07 22:39:38 -0700171 pr_debug("clean_from_lists(%p)\n", ct);
Patrick McHardy76507f62008-01-31 04:38:38 -0800172 hlist_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
173 hlist_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800174
175 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800176 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800177}
178
179static void
180destroy_conntrack(struct nf_conntrack *nfct)
181{
182 struct nf_conn *ct = (struct nf_conn *)nfct;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100183 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800184
Patrick McHardy0d537782007-07-07 22:39:38 -0700185 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800186 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
187 NF_CT_ASSERT(!timer_pending(&ct->timeout));
188
189 nf_conntrack_event(IPCT_DESTROY, ct);
190 set_bit(IPS_DYING_BIT, &ct->status);
191
192 /* To make sure we don't get any weird locking issues here:
193 * destroy_conntrack() MUST NOT be called with a write lock
194 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800195 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200196 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100197 if (l4proto && l4proto->destroy)
198 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800199
Patrick McHardy982d9a92007-02-12 11:14:11 -0800200 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800201
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800202 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800203 /* Expectations will have been removed in clean_from_lists,
204 * except TFTP can create an expectation on the first packet,
205 * before connection is in the list, so we need to clean here,
206 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800207 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800208
209 /* We overload first tuple to link into unconfirmed list. */
210 if (!nf_ct_is_confirmed(ct)) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700211 BUG_ON(hlist_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode));
212 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800213 }
214
215 NF_CT_STAT_INC(delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800216 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800217
218 if (ct->master)
219 nf_ct_put(ct->master);
220
Patrick McHardy0d537782007-07-07 22:39:38 -0700221 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800222 nf_conntrack_free(ct);
223}
224
225static void death_by_timeout(unsigned long ul_conntrack)
226{
227 struct nf_conn *ct = (void *)ul_conntrack;
Patrick McHardy5397e972007-05-19 14:23:52 -0700228 struct nf_conn_help *help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700229 struct nf_conntrack_helper *helper;
Patrick McHardy5397e972007-05-19 14:23:52 -0700230
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700231 if (help) {
232 rcu_read_lock();
233 helper = rcu_dereference(help->helper);
234 if (helper && helper->destroy)
235 helper->destroy(ct);
236 rcu_read_unlock();
237 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800238
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800239 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800240 /* Inside lock so preempt is disabled on module removal path.
241 * Otherwise we can get spurious warnings. */
242 NF_CT_STAT_INC(delete_list);
243 clean_from_lists(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800244 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800245 nf_ct_put(ct);
246}
247
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800248struct nf_conntrack_tuple_hash *
Patrick McHardyba419af2008-01-31 04:39:23 -0800249__nf_conntrack_find(const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800250{
251 struct nf_conntrack_tuple_hash *h;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700252 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800253 unsigned int hash = hash_conntrack(tuple);
254
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800255 /* Disable BHs the entire time since we normally need to disable them
256 * at least once for the stats anyway.
257 */
258 local_bh_disable();
Patrick McHardy76507f62008-01-31 04:38:38 -0800259 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash], hnode) {
Patrick McHardyba419af2008-01-31 04:39:23 -0800260 if (nf_ct_tuple_equal(tuple, &h->tuple)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800261 NF_CT_STAT_INC(found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800262 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800263 return h;
264 }
265 NF_CT_STAT_INC(searched);
266 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800267 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800268
269 return NULL;
270}
Patrick McHardy13b18332006-12-02 22:11:25 -0800271EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800272
273/* Find a connection corresponding to a tuple. */
274struct nf_conntrack_tuple_hash *
Patrick McHardy330f7db2007-07-07 22:28:42 -0700275nf_conntrack_find_get(const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800276{
277 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800278 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800279
Patrick McHardy76507f62008-01-31 04:38:38 -0800280 rcu_read_lock();
Patrick McHardyba419af2008-01-31 04:39:23 -0800281 h = __nf_conntrack_find(tuple);
Patrick McHardy76507f62008-01-31 04:38:38 -0800282 if (h) {
283 ct = nf_ct_tuplehash_to_ctrack(h);
284 if (unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
285 h = NULL;
286 }
287 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800288
289 return h;
290}
Patrick McHardy13b18332006-12-02 22:11:25 -0800291EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800292
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800293static void __nf_conntrack_hash_insert(struct nf_conn *ct,
294 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800295 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800296{
Patrick McHardy76507f62008-01-31 04:38:38 -0800297 hlist_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode,
298 &nf_conntrack_hash[hash]);
299 hlist_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnode,
300 &nf_conntrack_hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800301}
302
303void nf_conntrack_hash_insert(struct nf_conn *ct)
304{
305 unsigned int hash, repl_hash;
306
307 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
308 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
309
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800310 spin_lock_bh(&nf_conntrack_lock);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800311 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800312 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800313}
Patrick McHardy13b18332006-12-02 22:11:25 -0800314EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800315
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800316/* Confirm a connection given skb; places it in hash table */
317int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700318__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800319{
320 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700321 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800322 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700323 struct nf_conn_help *help;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700324 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800325 enum ip_conntrack_info ctinfo;
326
Herbert Xu3db05fe2007-10-15 00:53:15 -0700327 ct = nf_ct_get(skb, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800328
329 /* ipt_REJECT uses nf_conntrack_attach to attach related
330 ICMP/TCP RST packets in other direction. Actual packet
331 which created connection will be IP_CT_NEW or for an
332 expected connection, IP_CT_RELATED. */
333 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
334 return NF_ACCEPT;
335
336 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
337 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
338
339 /* We're not in hash table, and we refuse to set up related
340 connections for unconfirmed conns. But packet copies and
341 REJECT will give spurious warnings here. */
342 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
343
344 /* No external references means noone else could have
345 confirmed us. */
346 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700347 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800348
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800349 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800350
351 /* See if there's one in the list already, including reverse:
352 NAT could have grabbed it without realizing, since we're
353 not in the hash. If there is, we lost race. */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700354 hlist_for_each_entry(h, n, &nf_conntrack_hash[hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700355 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
356 &h->tuple))
357 goto out;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700358 hlist_for_each_entry(h, n, &nf_conntrack_hash[repl_hash], hnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700359 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
360 &h->tuple))
361 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800362
Patrick McHardydf0933d2006-09-20 11:57:53 -0700363 /* Remove from unconfirmed list */
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700364 hlist_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700365
366 __nf_conntrack_hash_insert(ct, hash, repl_hash);
367 /* Timer relative to confirmation time, not original
368 setting time, otherwise we'd get timer wrap in
369 weird delay cases. */
370 ct->timeout.expires += jiffies;
371 add_timer(&ct->timeout);
372 atomic_inc(&ct->ct_general.use);
373 set_bit(IPS_CONFIRMED_BIT, &ct->status);
374 NF_CT_STAT_INC(insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800375 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700376 help = nfct_help(ct);
377 if (help && help->helper)
Herbert Xu3db05fe2007-10-15 00:53:15 -0700378 nf_conntrack_event_cache(IPCT_HELPER, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800379#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardydf0933d2006-09-20 11:57:53 -0700380 if (test_bit(IPS_SRC_NAT_DONE_BIT, &ct->status) ||
381 test_bit(IPS_DST_NAT_DONE_BIT, &ct->status))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700382 nf_conntrack_event_cache(IPCT_NATINFO, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800383#endif
Patrick McHardydf0933d2006-09-20 11:57:53 -0700384 nf_conntrack_event_cache(master_ct(ct) ?
Herbert Xu3db05fe2007-10-15 00:53:15 -0700385 IPCT_RELATED : IPCT_NEW, skb);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700386 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800387
Patrick McHardydf0933d2006-09-20 11:57:53 -0700388out:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800389 NF_CT_STAT_INC(insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800390 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800391 return NF_DROP;
392}
Patrick McHardy13b18332006-12-02 22:11:25 -0800393EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800394
395/* Returns true if a connection correspondings to the tuple (required
396 for NAT). */
397int
398nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
399 const struct nf_conn *ignored_conntrack)
400{
401 struct nf_conntrack_tuple_hash *h;
Patrick McHardyba419af2008-01-31 04:39:23 -0800402 struct hlist_node *n;
403 unsigned int hash = hash_conntrack(tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800404
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800405 /* Disable BHs the entire time since we need to disable them at
406 * least once for the stats anyway.
407 */
408 rcu_read_lock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800409 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash], hnode) {
410 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
411 nf_ct_tuple_equal(tuple, &h->tuple)) {
412 NF_CT_STAT_INC(found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800413 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800414 return 1;
415 }
416 NF_CT_STAT_INC(searched);
417 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800418 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800419
Patrick McHardyba419af2008-01-31 04:39:23 -0800420 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800421}
Patrick McHardy13b18332006-12-02 22:11:25 -0800422EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800423
Patrick McHardy7ae77302007-07-07 22:37:38 -0700424#define NF_CT_EVICTION_RANGE 8
425
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800426/* There's a small race here where we may free a just-assured
427 connection. Too bad: we're in trouble anyway. */
Patrick McHardy76eb9462008-01-31 04:41:44 -0800428static noinline int early_drop(unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800429{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700430 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800431 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700432 struct nf_conn *ct = NULL, *tmp;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700433 struct hlist_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700434 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800435 int dropped = 0;
436
Patrick McHardy76507f62008-01-31 04:38:38 -0800437 rcu_read_lock();
Patrick McHardy7ae77302007-07-07 22:37:38 -0700438 for (i = 0; i < nf_conntrack_htable_size; i++) {
Patrick McHardy76507f62008-01-31 04:38:38 -0800439 hlist_for_each_entry_rcu(h, n, &nf_conntrack_hash[hash],
440 hnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700441 tmp = nf_ct_tuplehash_to_ctrack(h);
442 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
443 ct = tmp;
444 cnt++;
445 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800446
447 if (ct && unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
448 ct = NULL;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700449 if (ct || cnt >= NF_CT_EVICTION_RANGE)
450 break;
451 hash = (hash + 1) % nf_conntrack_htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800452 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800453 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800454
455 if (!ct)
456 return dropped;
457
458 if (del_timer(&ct->timeout)) {
459 death_by_timeout((unsigned long)ct);
460 dropped = 1;
Patrick McHardyc0e912d2007-02-12 11:13:43 -0800461 NF_CT_STAT_INC_ATOMIC(early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800462 }
463 nf_ct_put(ct);
464 return dropped;
465}
466
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700467struct nf_conn *nf_conntrack_alloc(const struct nf_conntrack_tuple *orig,
Pablo Neira Ayusob891c5a2008-07-08 02:35:55 -0700468 const struct nf_conntrack_tuple *repl,
469 gfp_t gfp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800470{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800471 struct nf_conn *ct = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800472
Harald Weltedc808fe2006-03-20 17:56:32 -0800473 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800474 get_random_bytes(&nf_conntrack_hash_rnd, 4);
475 nf_conntrack_hash_rnd_initted = 1;
476 }
477
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700478 /* We don't want any race condition at early drop stage */
479 atomic_inc(&nf_conntrack_count);
480
Patrick McHardy76eb9462008-01-31 04:41:44 -0800481 if (nf_conntrack_max &&
482 unlikely(atomic_read(&nf_conntrack_count) > nf_conntrack_max)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800483 unsigned int hash = hash_conntrack(orig);
Patrick McHardy7ae77302007-07-07 22:37:38 -0700484 if (!early_drop(hash)) {
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700485 atomic_dec(&nf_conntrack_count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800486 if (net_ratelimit())
487 printk(KERN_WARNING
488 "nf_conntrack: table full, dropping"
489 " packet.\n");
490 return ERR_PTR(-ENOMEM);
491 }
492 }
493
Pablo Neira Ayusob891c5a2008-07-08 02:35:55 -0700494 ct = kmem_cache_zalloc(nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800495 if (ct == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700496 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700497 atomic_dec(&nf_conntrack_count);
498 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800499 }
500
Patrick McHardyc88130b2008-01-31 04:42:11 -0800501 atomic_set(&ct->ct_general.use, 1);
502 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
503 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800504 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800505 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
506 INIT_RCU_HEAD(&ct->rcu);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800507
Patrick McHardyc88130b2008-01-31 04:42:11 -0800508 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800509}
Patrick McHardy13b18332006-12-02 22:11:25 -0800510EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800511
Patrick McHardy76507f62008-01-31 04:38:38 -0800512static void nf_conntrack_free_rcu(struct rcu_head *head)
513{
514 struct nf_conn *ct = container_of(head, struct nf_conn, rcu);
515
516 nf_ct_ext_free(ct);
517 kmem_cache_free(nf_conntrack_cachep, ct);
518 atomic_dec(&nf_conntrack_count);
519}
520
Patrick McHardyc88130b2008-01-31 04:42:11 -0800521void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800522{
Patrick McHardyceeff752008-06-11 17:51:10 -0700523 nf_ct_ext_destroy(ct);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800524 call_rcu(&ct->rcu, nf_conntrack_free_rcu);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800525}
Patrick McHardy13b18332006-12-02 22:11:25 -0800526EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800527
528/* Allocate a new conntrack: we return -ENOMEM if classification
529 failed due to stress. Otherwise it really is unclassifiable. */
530static struct nf_conntrack_tuple_hash *
531init_conntrack(const struct nf_conntrack_tuple *tuple,
532 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100533 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800534 struct sk_buff *skb,
535 unsigned int dataoff)
536{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800537 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700538 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800539 struct nf_conntrack_tuple repl_tuple;
540 struct nf_conntrack_expect *exp;
541
Martin Josefsson605dcad2006-11-29 02:35:06 +0100542 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700543 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800544 return NULL;
545 }
546
Pablo Neira Ayusob891c5a2008-07-08 02:35:55 -0700547 ct = nf_conntrack_alloc(tuple, &repl_tuple, GFP_ATOMIC);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800548 if (ct == NULL || IS_ERR(ct)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700549 pr_debug("Can't allocate conntrack.\n");
Patrick McHardyc88130b2008-01-31 04:42:11 -0800550 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800551 }
552
Patrick McHardyc88130b2008-01-31 04:42:11 -0800553 if (!l4proto->new(ct, skb, dataoff)) {
554 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700555 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800556 return NULL;
557 }
558
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700559 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
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
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200668nf_conntrack_in(u_int8_t 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 */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200686 l3proto = __nf_ct_l3proto_find(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
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200696 l4proto = __nf_ct_l4proto_find(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
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200742bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
743 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800744{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200745 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -0800746
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);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200769 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800770
771 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +0200772 if (ct->master || (help && !hlist_empty(&help->expectations)))
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 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700835 struct nf_conn_counter *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100836
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700837 acct = nf_conn_acct_find(ct);
838 if (acct) {
839 acct[CTINFO2DIR(ctinfo)].packets++;
840 acct[CTINFO2DIR(ctinfo)].bytes +=
841 skb->len - skb_network_offset(skb);
842 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800843 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800844
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800845 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800846
847 /* must be unlocked when calling event cache */
848 if (event)
849 nf_conntrack_event_cache(event, skb);
850}
Patrick McHardy13b18332006-12-02 22:11:25 -0800851EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800852
David S. Miller4c889492008-07-14 20:22:38 -0700853bool __nf_ct_kill_acct(struct nf_conn *ct,
854 enum ip_conntrack_info ctinfo,
855 const struct sk_buff *skb,
856 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -0700857{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700858 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700859 struct nf_conn_counter *acct;
860
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700861 spin_lock_bh(&nf_conntrack_lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700862 acct = nf_conn_acct_find(ct);
863 if (acct) {
864 acct[CTINFO2DIR(ctinfo)].packets++;
865 acct[CTINFO2DIR(ctinfo)].bytes +=
866 skb->len - skb_network_offset(skb);
867 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700868 spin_unlock_bh(&nf_conntrack_lock);
869 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700870
David S. Miller4c889492008-07-14 20:22:38 -0700871 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -0700872 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -0700873 return true;
874 }
875 return false;
Patrick McHardy51091762008-06-09 15:59:06 -0700876}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700877EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -0700878
Patrick McHardye281db5c2007-03-04 15:57:25 -0800879#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800880
881#include <linux/netfilter/nfnetlink.h>
882#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -0800883#include <linux/mutex.h>
884
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800885/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
886 * in ip_conntrack_core, since we don't want the protocols to autoload
887 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -0700888int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800889 const struct nf_conntrack_tuple *tuple)
890{
Patrick McHardy77236b62007-12-17 22:29:45 -0800891 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
892 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800893 return 0;
894
Patrick McHardydf6fb862007-09-28 14:37:03 -0700895nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800896 return -1;
897}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700898EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800899
Patrick McHardyf73e9242007-09-28 14:39:55 -0700900const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
901 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
902 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800903};
Patrick McHardyf73e9242007-09-28 14:39:55 -0700904EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800905
Patrick McHardyfdf70832007-09-28 14:37:41 -0700906int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800907 struct nf_conntrack_tuple *t)
908{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700909 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800910 return -EINVAL;
911
Patrick McHardy77236b62007-12-17 22:29:45 -0800912 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
913 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800914
915 return 0;
916}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700917EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800918#endif
919
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800920/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardyb334aad2008-01-14 23:48:57 -0800921static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800922{
923 struct nf_conn *ct;
924 enum ip_conntrack_info ctinfo;
925
926 /* This ICMP is in reverse direction to the packet which caused it */
927 ct = nf_ct_get(skb, &ctinfo);
928 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
929 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
930 else
931 ctinfo = IP_CT_RELATED;
932
933 /* Attach to new skbuff, and increment count */
934 nskb->nfct = &ct->ct_general;
935 nskb->nfctinfo = ctinfo;
936 nf_conntrack_get(nskb->nfct);
937}
938
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800939/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -0700940static struct nf_conn *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800941get_next_corpse(int (*iter)(struct nf_conn *i, void *data),
942 void *data, unsigned int *bucket)
943{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700944 struct nf_conntrack_tuple_hash *h;
945 struct nf_conn *ct;
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700946 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800947
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800948 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800949 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700950 hlist_for_each_entry(h, n, &nf_conntrack_hash[*bucket], hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700951 ct = nf_ct_tuplehash_to_ctrack(h);
952 if (iter(ct, data))
953 goto found;
954 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800955 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700956 hlist_for_each_entry(h, n, &unconfirmed, hnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700957 ct = nf_ct_tuplehash_to_ctrack(h);
958 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -0800959 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700960 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800961 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700962 return NULL;
963found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800964 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800965 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700966 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800967}
968
969void
970nf_ct_iterate_cleanup(int (*iter)(struct nf_conn *i, void *data), void *data)
971{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700972 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800973 unsigned int bucket = 0;
974
Patrick McHardydf0933d2006-09-20 11:57:53 -0700975 while ((ct = get_next_corpse(iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800976 /* Time to push up daises... */
977 if (del_timer(&ct->timeout))
978 death_by_timeout((unsigned long)ct);
979 /* ... else the timer will get him soon. */
980
981 nf_ct_put(ct);
982 }
983}
Patrick McHardy13b18332006-12-02 22:11:25 -0800984EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800985
986static int kill_all(struct nf_conn *i, void *data)
987{
988 return 1;
989}
990
Stephen Hemminger96eb24d2008-01-31 04:07:29 -0800991void nf_ct_free_hashtable(struct hlist_head *hash, int vmalloced, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800992{
993 if (vmalloced)
994 vfree(hash);
995 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800996 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700997 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800998}
Patrick McHardyac565e52007-07-07 22:30:08 -0700999EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001000
Randy Dunlap272491e2006-12-07 01:17:24 -08001001void nf_conntrack_flush(void)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001002{
1003 nf_ct_iterate_cleanup(kill_all, NULL);
1004}
Patrick McHardy13b18332006-12-02 22:11:25 -08001005EXPORT_SYMBOL_GPL(nf_conntrack_flush);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001006
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001007/* Mishearing the voices in his head, our hero wonders how he's
1008 supposed to kill the mall. */
1009void nf_conntrack_cleanup(void)
1010{
Patrick McHardyc3a47ab2007-02-12 11:09:19 -08001011 rcu_assign_pointer(ip_ct_attach, NULL);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001012
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001013 /* This makes sure all current packets have passed through
1014 netfilter framework. Roll on, two-stage module
1015 delete... */
1016 synchronize_net();
1017
1018 nf_ct_event_cache_flush();
1019 i_see_dead_people:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001020 nf_conntrack_flush();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001021 if (atomic_read(&nf_conntrack_count) != 0) {
1022 schedule();
1023 goto i_see_dead_people;
1024 }
Patrick McHardy66365682005-12-05 13:36:50 -08001025 /* wait until all references to nf_conntrack_untracked are dropped */
1026 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
1027 schedule();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001028
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -07001029 rcu_assign_pointer(nf_ct_destroy, NULL);
1030
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001031 kmem_cache_destroy(nf_conntrack_cachep);
Patrick McHardyac565e52007-07-07 22:30:08 -07001032 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
1033 nf_conntrack_htable_size);
KOVACS Krisztian5a6f294e42005-11-15 16:47:34 -08001034
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001035 nf_conntrack_acct_fini();
Krzysztof Piotr Oledzki9714be72008-08-06 02:35:44 -07001036 nf_conntrack_expect_fini();
1037 nf_conntrack_helper_fini();
1038 nf_conntrack_proto_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001039}
1040
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001041struct hlist_head *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001042{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001043 struct hlist_head *hash;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001044 unsigned int size, i;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001045
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001046 *vmalloced = 0;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001047
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001048 size = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_head));
Andrew Morton29b67492007-10-29 21:41:19 -07001049 hash = (void*)__get_free_pages(GFP_KERNEL|__GFP_NOWARN,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001050 get_order(sizeof(struct hlist_head)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001051 * size));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001052 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001053 *vmalloced = 1;
1054 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001055 hash = vmalloc(sizeof(struct hlist_head) * size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001056 }
1057
1058 if (hash)
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001059 for (i = 0; i < size; i++)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001060 INIT_HLIST_HEAD(&hash[i]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001061
1062 return hash;
1063}
Patrick McHardyac565e52007-07-07 22:30:08 -07001064EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001065
Patrick McHardyfae718d2007-12-24 21:09:10 -08001066int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001067{
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001068 int i, bucket, vmalloced, old_vmalloced;
1069 unsigned int hashsize, old_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001070 int rnd;
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001071 struct hlist_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001072 struct nf_conntrack_tuple_hash *h;
1073
1074 /* On boot, we can set this without any fancy locking. */
1075 if (!nf_conntrack_htable_size)
1076 return param_set_uint(val, kp);
1077
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001078 hashsize = simple_strtoul(val, NULL, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001079 if (!hashsize)
1080 return -EINVAL;
1081
Patrick McHardyac565e52007-07-07 22:30:08 -07001082 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001083 if (!hash)
1084 return -ENOMEM;
1085
1086 /* We have to rehahs for the new table anyway, so we also can
1087 * use a newrandom seed */
1088 get_random_bytes(&rnd, 4);
1089
Patrick McHardy76507f62008-01-31 04:38:38 -08001090 /* Lookups in the old hash might happen in parallel, which means we
1091 * might get false negatives during connection lookup. New connections
1092 * created because of a false negative won't make it into the hash
1093 * though since that required taking the lock.
1094 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001095 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001096 for (i = 0; i < nf_conntrack_htable_size; i++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001097 while (!hlist_empty(&nf_conntrack_hash[i])) {
1098 h = hlist_entry(nf_conntrack_hash[i].first,
1099 struct nf_conntrack_tuple_hash, hnode);
Patrick McHardy76507f62008-01-31 04:38:38 -08001100 hlist_del_rcu(&h->hnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001101 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001102 hlist_add_head(&h->hnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001103 }
1104 }
1105 old_size = nf_conntrack_htable_size;
1106 old_vmalloced = nf_conntrack_vmalloc;
1107 old_hash = nf_conntrack_hash;
1108
1109 nf_conntrack_htable_size = hashsize;
1110 nf_conntrack_vmalloc = vmalloced;
1111 nf_conntrack_hash = hash;
1112 nf_conntrack_hash_rnd = rnd;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001113 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001114
Patrick McHardyac565e52007-07-07 22:30:08 -07001115 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001116 return 0;
1117}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001118EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001119
Patrick McHardyfae718d2007-12-24 21:09:10 -08001120module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001121 &nf_conntrack_htable_size, 0600);
1122
1123int __init nf_conntrack_init(void)
1124{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001125 int max_factor = 8;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001126 int ret;
1127
1128 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001129 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001130 if (!nf_conntrack_htable_size) {
1131 nf_conntrack_htable_size
1132 = (((num_physpages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001133 / sizeof(struct hlist_head));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001134 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001135 nf_conntrack_htable_size = 16384;
1136 if (nf_conntrack_htable_size < 32)
1137 nf_conntrack_htable_size = 32;
1138
1139 /* Use a max. factor of four by default to get the same max as
1140 * with the old struct list_heads. When a table size is given
1141 * we use the old value of 8 to avoid reducing the max.
1142 * entries. */
1143 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001144 }
Patrick McHardyac565e52007-07-07 22:30:08 -07001145 nf_conntrack_hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
1146 &nf_conntrack_vmalloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001147 if (!nf_conntrack_hash) {
1148 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1149 goto err_out;
1150 }
1151
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001152 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001153
1154 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1155 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1156 nf_conntrack_max);
1157
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001158 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1159 sizeof(struct nf_conn),
Paul Mundt20c2df82007-07-20 10:11:58 +09001160 0, 0, NULL);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001161 if (!nf_conntrack_cachep) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001162 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
1163 goto err_free_hash;
1164 }
1165
Patrick McHardyac5357e2007-03-14 16:38:25 -07001166 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001167 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001168 goto err_free_conntrack_slab;
1169
1170 ret = nf_conntrack_expect_init();
1171 if (ret < 0)
1172 goto out_fini_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001173
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001174 ret = nf_conntrack_helper_init();
1175 if (ret < 0)
Patrick McHardye9c1b082007-07-07 22:32:53 -07001176 goto out_fini_expect;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001177
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001178 ret = nf_conntrack_acct_init();
1179 if (ret < 0)
1180 goto out_fini_helper;
1181
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001182 /* For use by REJECT target */
Patrick McHardyb334aad2008-01-14 23:48:57 -08001183 rcu_assign_pointer(ip_ct_attach, nf_conntrack_attach);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -07001184 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001185
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001186 /* Set up fake conntrack:
1187 - to never be deleted, not in any hashes */
1188 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1189 /* - and look it like as a confirmed connection */
1190 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1191
1192 return ret;
1193
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001194out_fini_helper:
1195 nf_conntrack_helper_fini();
Patrick McHardye9c1b082007-07-07 22:32:53 -07001196out_fini_expect:
1197 nf_conntrack_expect_fini();
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001198out_fini_proto:
1199 nf_conntrack_proto_fini();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001200err_free_conntrack_slab:
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001201 kmem_cache_destroy(nf_conntrack_cachep);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001202err_free_hash:
Patrick McHardyac565e52007-07-07 22:30:08 -07001203 nf_ct_free_hashtable(nf_conntrack_hash, nf_conntrack_vmalloc,
1204 nf_conntrack_htable_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001205err_out:
1206 return -ENOMEM;
1207}