blob: d8dffe7ab5093625eb9cbe4265d34e0c9a4ba7e3 [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>
Eric Dumazetea781f12009-03-25 21:05:46 +010032#include <linux/rculist_nulls.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080033
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080034#include <net/netfilter/nf_conntrack.h>
35#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010036#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010037#include <net/netfilter/nf_conntrack_expect.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080038#include <net/netfilter/nf_conntrack_helper.h>
39#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070040#include <net/netfilter/nf_conntrack_extend.h>
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -070041#include <net/netfilter/nf_conntrack_acct.h>
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070042#include <net/netfilter/nf_nat.h>
Patrick McHardye17b6662008-11-18 12:24:17 +010043#include <net/netfilter/nf_nat_core.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080044
Harald Weltedc808fe2006-03-20 17:56:32 -080045#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080046
Patrick McHardye17b6662008-11-18 12:24:17 +010047int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
48 enum nf_nat_manip_type manip,
49 struct nlattr *attr) __read_mostly;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070050EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
51
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080052DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080053EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080054
Martin Josefssone2b76062006-11-29 02:35:04 +010055unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080056EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
57
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +010058unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010059EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080060
Martin Josefssone2b76062006-11-29 02:35:04 +010061struct nf_conn nf_conntrack_untracked __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080062EXPORT_SYMBOL_GPL(nf_conntrack_untracked);
63
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -070064static struct kmem_cache *nf_conntrack_cachep __read_mostly;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010065
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080066static int nf_conntrack_hash_rnd_initted;
67static unsigned int nf_conntrack_hash_rnd;
68
69static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
70 unsigned int size, unsigned int rnd)
71{
Patrick McHardy07949352008-01-31 04:40:52 -080072 unsigned int n;
73 u_int32_t h;
Sami Farin9b887902007-03-14 16:43:00 -070074
Patrick McHardy07949352008-01-31 04:40:52 -080075 /* The direction must be ignored, so we hash everything up to the
76 * destination ports (which is a multiple of 4) and treat the last
77 * three bytes manually.
78 */
79 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
80 h = jhash2((u32 *)tuple, n,
81 rnd ^ (((__force __u16)tuple->dst.u.all << 16) |
82 tuple->dst.protonum));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083
Patrick McHardy07949352008-01-31 04:40:52 -080084 return ((u64)h * size) >> 32;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080085}
86
87static inline u_int32_t hash_conntrack(const struct nf_conntrack_tuple *tuple)
88{
89 return __hash_conntrack(tuple, nf_conntrack_htable_size,
90 nf_conntrack_hash_rnd);
91}
92
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +020093bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080094nf_ct_get_tuple(const struct sk_buff *skb,
95 unsigned int nhoff,
96 unsigned int dataoff,
97 u_int16_t l3num,
98 u_int8_t protonum,
99 struct nf_conntrack_tuple *tuple,
100 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100101 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800102{
Philip Craig443a70d2008-04-29 03:35:10 -0700103 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800104
105 tuple->src.l3num = l3num;
106 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200107 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800108
109 tuple->dst.protonum = protonum;
110 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
111
Martin Josefsson605dcad2006-11-29 02:35:06 +0100112 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800113}
Patrick McHardy13b18332006-12-02 22:11:25 -0800114EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800115
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200116bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
117 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700118{
119 struct nf_conntrack_l3proto *l3proto;
120 struct nf_conntrack_l4proto *l4proto;
121 unsigned int protoff;
122 u_int8_t protonum;
123 int ret;
124
125 rcu_read_lock();
126
127 l3proto = __nf_ct_l3proto_find(l3num);
128 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
129 if (ret != NF_ACCEPT) {
130 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200131 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700132 }
133
134 l4proto = __nf_ct_l4proto_find(l3num, protonum);
135
136 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
137 l3proto, l4proto);
138
139 rcu_read_unlock();
140 return ret;
141}
142EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
143
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200144bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800145nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
146 const struct nf_conntrack_tuple *orig,
147 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100148 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800149{
Philip Craig443a70d2008-04-29 03:35:10 -0700150 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800151
152 inverse->src.l3num = orig->src.l3num;
153 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200154 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800155
156 inverse->dst.dir = !orig->dst.dir;
157
158 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100159 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800160}
Patrick McHardy13b18332006-12-02 22:11:25 -0800161EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800162
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800163static void
164clean_from_lists(struct nf_conn *ct)
165{
Patrick McHardy0d537782007-07-07 22:39:38 -0700166 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100167 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
168 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800169
170 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800171 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800172}
173
174static void
175destroy_conntrack(struct nf_conntrack *nfct)
176{
177 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200178 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100179 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800180
Patrick McHardy0d537782007-07-07 22:39:38 -0700181 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800182 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
183 NF_CT_ASSERT(!timer_pending(&ct->timeout));
184
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100185 if (!test_bit(IPS_DYING_BIT, &ct->status))
186 nf_conntrack_event(IPCT_DESTROY, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800187 set_bit(IPS_DYING_BIT, &ct->status);
188
189 /* To make sure we don't get any weird locking issues here:
190 * destroy_conntrack() MUST NOT be called with a write lock
191 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800192 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200193 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100194 if (l4proto && l4proto->destroy)
195 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800196
Patrick McHardy982d9a92007-02-12 11:14:11 -0800197 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800198
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800199 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800200 /* Expectations will have been removed in clean_from_lists,
201 * except TFTP can create an expectation on the first packet,
202 * before connection is in the list, so we need to clean here,
203 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800204 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800205
206 /* We overload first tuple to link into unconfirmed list. */
207 if (!nf_ct_is_confirmed(ct)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100208 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
209 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800210 }
211
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200212 NF_CT_STAT_INC(net, delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800213 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800214
215 if (ct->master)
216 nf_ct_put(ct->master);
217
Patrick McHardy0d537782007-07-07 22:39:38 -0700218 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800219 nf_conntrack_free(ct);
220}
221
222static void death_by_timeout(unsigned long ul_conntrack)
223{
224 struct nf_conn *ct = (void *)ul_conntrack;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200225 struct net *net = nf_ct_net(ct);
Patrick McHardy5397e972007-05-19 14:23:52 -0700226 struct nf_conn_help *help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700227 struct nf_conntrack_helper *helper;
Patrick McHardy5397e972007-05-19 14:23:52 -0700228
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700229 if (help) {
230 rcu_read_lock();
231 helper = rcu_dereference(help->helper);
232 if (helper && helper->destroy)
233 helper->destroy(ct);
234 rcu_read_unlock();
235 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800236
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800237 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800238 /* Inside lock so preempt is disabled on module removal path.
239 * Otherwise we can get spurious warnings. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200240 NF_CT_STAT_INC(net, delete_list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800241 clean_from_lists(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800242 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800243 nf_ct_put(ct);
244}
245
Eric Dumazetea781f12009-03-25 21:05:46 +0100246/*
247 * Warning :
248 * - Caller must take a reference on returned object
249 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
250 * OR
251 * - Caller must lock nf_conntrack_lock before calling this function
252 */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800253struct nf_conntrack_tuple_hash *
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200254__nf_conntrack_find(struct net *net, const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800255{
256 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100257 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800258 unsigned int hash = hash_conntrack(tuple);
259
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800260 /* Disable BHs the entire time since we normally need to disable them
261 * at least once for the stats anyway.
262 */
263 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100264begin:
265 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardyba419af2008-01-31 04:39:23 -0800266 if (nf_ct_tuple_equal(tuple, &h->tuple)) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200267 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800268 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800269 return h;
270 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200271 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800272 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100273 /*
274 * if the nulls value we got at the end of this lookup is
275 * not the expected one, we must restart lookup.
276 * We probably met an item that was moved to another chain.
277 */
278 if (get_nulls_value(n) != hash)
279 goto begin;
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800280 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800281
282 return NULL;
283}
Patrick McHardy13b18332006-12-02 22:11:25 -0800284EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800285
286/* Find a connection corresponding to a tuple. */
287struct nf_conntrack_tuple_hash *
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200288nf_conntrack_find_get(struct net *net, const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800289{
290 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800291 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800292
Patrick McHardy76507f62008-01-31 04:38:38 -0800293 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100294begin:
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200295 h = __nf_conntrack_find(net, tuple);
Patrick McHardy76507f62008-01-31 04:38:38 -0800296 if (h) {
297 ct = nf_ct_tuplehash_to_ctrack(h);
298 if (unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
299 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100300 else {
301 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple))) {
302 nf_ct_put(ct);
303 goto begin;
304 }
305 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800306 }
307 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800308
309 return h;
310}
Patrick McHardy13b18332006-12-02 22:11:25 -0800311EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800312
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800313static void __nf_conntrack_hash_insert(struct nf_conn *ct,
314 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800315 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800316{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200317 struct net *net = nf_ct_net(ct);
318
Eric Dumazetea781f12009-03-25 21:05:46 +0100319 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200320 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100321 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200322 &net->ct.hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800323}
324
325void nf_conntrack_hash_insert(struct nf_conn *ct)
326{
327 unsigned int hash, repl_hash;
328
329 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
330 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
331
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800332 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800333}
Patrick McHardy13b18332006-12-02 22:11:25 -0800334EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800335
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800336/* Confirm a connection given skb; places it in hash table */
337int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700338__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800339{
340 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700341 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800342 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700343 struct nf_conn_help *help;
Eric Dumazetea781f12009-03-25 21:05:46 +0100344 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800345 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200346 struct net *net;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800347
Herbert Xu3db05fe2007-10-15 00:53:15 -0700348 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200349 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800350
351 /* ipt_REJECT uses nf_conntrack_attach to attach related
352 ICMP/TCP RST packets in other direction. Actual packet
353 which created connection will be IP_CT_NEW or for an
354 expected connection, IP_CT_RELATED. */
355 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
356 return NF_ACCEPT;
357
358 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
359 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
360
361 /* We're not in hash table, and we refuse to set up related
362 connections for unconfirmed conns. But packet copies and
363 REJECT will give spurious warnings here. */
364 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
365
366 /* No external references means noone else could have
367 confirmed us. */
368 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700369 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800370
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800371 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800372
373 /* See if there's one in the list already, including reverse:
374 NAT could have grabbed it without realizing, since we're
375 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100376 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700377 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
378 &h->tuple))
379 goto out;
Eric Dumazetea781f12009-03-25 21:05:46 +0100380 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700381 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
382 &h->tuple))
383 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800384
Patrick McHardydf0933d2006-09-20 11:57:53 -0700385 /* Remove from unconfirmed list */
Eric Dumazetea781f12009-03-25 21:05:46 +0100386 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700387
388 __nf_conntrack_hash_insert(ct, hash, repl_hash);
389 /* Timer relative to confirmation time, not original
390 setting time, otherwise we'd get timer wrap in
391 weird delay cases. */
392 ct->timeout.expires += jiffies;
393 add_timer(&ct->timeout);
394 atomic_inc(&ct->ct_general.use);
395 set_bit(IPS_CONFIRMED_BIT, &ct->status);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200396 NF_CT_STAT_INC(net, insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800397 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700398 help = nfct_help(ct);
399 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200400 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200401
Patrick McHardydf0933d2006-09-20 11:57:53 -0700402 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200403 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700404 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800405
Patrick McHardydf0933d2006-09-20 11:57:53 -0700406out:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200407 NF_CT_STAT_INC(net, insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800408 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800409 return NF_DROP;
410}
Patrick McHardy13b18332006-12-02 22:11:25 -0800411EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800412
413/* Returns true if a connection correspondings to the tuple (required
414 for NAT). */
415int
416nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
417 const struct nf_conn *ignored_conntrack)
418{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200419 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800420 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100421 struct hlist_nulls_node *n;
Patrick McHardyba419af2008-01-31 04:39:23 -0800422 unsigned int hash = hash_conntrack(tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800423
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800424 /* Disable BHs the entire time since we need to disable them at
425 * least once for the stats anyway.
426 */
427 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100428 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardyba419af2008-01-31 04:39:23 -0800429 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
430 nf_ct_tuple_equal(tuple, &h->tuple)) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200431 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800432 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800433 return 1;
434 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200435 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800436 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800437 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800438
Patrick McHardyba419af2008-01-31 04:39:23 -0800439 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800440}
Patrick McHardy13b18332006-12-02 22:11:25 -0800441EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800442
Patrick McHardy7ae77302007-07-07 22:37:38 -0700443#define NF_CT_EVICTION_RANGE 8
444
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800445/* There's a small race here where we may free a just-assured
446 connection. Too bad: we're in trouble anyway. */
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200447static noinline int early_drop(struct net *net, unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800448{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700449 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800450 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700451 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100452 struct hlist_nulls_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700453 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800454 int dropped = 0;
455
Patrick McHardy76507f62008-01-31 04:38:38 -0800456 rcu_read_lock();
Patrick McHardy7ae77302007-07-07 22:37:38 -0700457 for (i = 0; i < nf_conntrack_htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100458 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
459 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700460 tmp = nf_ct_tuplehash_to_ctrack(h);
461 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
462 ct = tmp;
463 cnt++;
464 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800465
466 if (ct && unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
467 ct = NULL;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700468 if (ct || cnt >= NF_CT_EVICTION_RANGE)
469 break;
470 hash = (hash + 1) % nf_conntrack_htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800471 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800472 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800473
474 if (!ct)
475 return dropped;
476
477 if (del_timer(&ct->timeout)) {
478 death_by_timeout((unsigned long)ct);
479 dropped = 1;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200480 NF_CT_STAT_INC_ATOMIC(net, early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800481 }
482 nf_ct_put(ct);
483 return dropped;
484}
485
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200486struct nf_conn *nf_conntrack_alloc(struct net *net,
487 const struct nf_conntrack_tuple *orig,
Pablo Neira Ayusob891c5a2008-07-08 02:35:55 -0700488 const struct nf_conntrack_tuple *repl,
489 gfp_t gfp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800490{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000491 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800492
Harald Weltedc808fe2006-03-20 17:56:32 -0800493 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Hagen Paul Pfeiferaf07d242009-02-20 10:48:06 +0100494 get_random_bytes(&nf_conntrack_hash_rnd,
495 sizeof(nf_conntrack_hash_rnd));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800496 nf_conntrack_hash_rnd_initted = 1;
497 }
498
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700499 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200500 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700501
Patrick McHardy76eb9462008-01-31 04:41:44 -0800502 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200503 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800504 unsigned int hash = hash_conntrack(orig);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200505 if (!early_drop(net, hash)) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200506 atomic_dec(&net->ct.count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800507 if (net_ratelimit())
508 printk(KERN_WARNING
509 "nf_conntrack: table full, dropping"
510 " packet.\n");
511 return ERR_PTR(-ENOMEM);
512 }
513 }
514
Pablo Neira Ayusob891c5a2008-07-08 02:35:55 -0700515 ct = kmem_cache_zalloc(nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800516 if (ct == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700517 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200518 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700519 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800520 }
521
Patrick McHardy440f0d52009-06-10 14:32:47 +0200522 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800523 atomic_set(&ct->ct_general.use, 1);
524 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
525 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800526 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800527 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200528#ifdef CONFIG_NET_NS
529 ct->ct_net = net;
530#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800531
Patrick McHardyc88130b2008-01-31 04:42:11 -0800532 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800533}
Patrick McHardy13b18332006-12-02 22:11:25 -0800534EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800535
Patrick McHardyc88130b2008-01-31 04:42:11 -0800536void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800537{
Eric Dumazet1d452092009-03-24 14:26:50 +0100538 struct net *net = nf_ct_net(ct);
539
Patrick McHardyceeff752008-06-11 17:51:10 -0700540 nf_ct_ext_destroy(ct);
Eric Dumazet1d452092009-03-24 14:26:50 +0100541 atomic_dec(&net->ct.count);
Eric Dumazetea781f12009-03-25 21:05:46 +0100542 nf_ct_ext_free(ct);
543 kmem_cache_free(nf_conntrack_cachep, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800544}
Patrick McHardy13b18332006-12-02 22:11:25 -0800545EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800546
547/* Allocate a new conntrack: we return -ENOMEM if classification
548 failed due to stress. Otherwise it really is unclassifiable. */
549static struct nf_conntrack_tuple_hash *
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200550init_conntrack(struct net *net,
551 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800552 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100553 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800554 struct sk_buff *skb,
555 unsigned int dataoff)
556{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800557 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700558 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800559 struct nf_conntrack_tuple repl_tuple;
560 struct nf_conntrack_expect *exp;
561
Martin Josefsson605dcad2006-11-29 02:35:06 +0100562 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700563 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800564 return NULL;
565 }
566
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200567 ct = nf_conntrack_alloc(net, tuple, &repl_tuple, GFP_ATOMIC);
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000568 if (IS_ERR(ct)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700569 pr_debug("Can't allocate conntrack.\n");
Patrick McHardyc88130b2008-01-31 04:42:11 -0800570 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800571 }
572
Patrick McHardyc88130b2008-01-31 04:42:11 -0800573 if (!l4proto->new(ct, skb, dataoff)) {
574 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700575 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800576 return NULL;
577 }
578
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700579 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
580
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800581 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200582 exp = nf_ct_find_expectation(net, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800583 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700584 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800585 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800586 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800587 __set_bit(IPS_EXPECTED_BIT, &ct->status);
588 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700589 if (exp->helper) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800590 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700591 if (help)
592 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700593 }
594
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800595#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800596 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800597#endif
James Morris7c9728c2006-06-09 00:31:46 -0700598#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800599 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700600#endif
Patrick McHardyc88130b2008-01-31 04:42:11 -0800601 nf_conntrack_get(&ct->master->ct_general);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200602 NF_CT_STAT_INC(net, expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800603 } else {
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100604 __nf_ct_try_assign_helper(ct, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200605 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800606 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800607
608 /* Overload tuple linked list to put us in unconfirmed list. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100609 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan63c9a262008-10-08 11:35:04 +0200610 &net->ct.unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800611
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800612 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800613
614 if (exp) {
615 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800616 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700617 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800618 }
619
Patrick McHardyc88130b2008-01-31 04:42:11 -0800620 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800621}
622
623/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
624static inline struct nf_conn *
Alexey Dobriyana702a652008-10-08 11:35:04 +0200625resolve_normal_ct(struct net *net,
626 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800627 unsigned int dataoff,
628 u_int16_t l3num,
629 u_int8_t protonum,
630 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100631 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800632 int *set_reply,
633 enum ip_conntrack_info *ctinfo)
634{
635 struct nf_conntrack_tuple tuple;
636 struct nf_conntrack_tuple_hash *h;
637 struct nf_conn *ct;
638
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300639 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800640 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100641 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700642 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800643 return NULL;
644 }
645
646 /* look for tuple match */
Alexey Dobriyana702a652008-10-08 11:35:04 +0200647 h = nf_conntrack_find_get(net, &tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800648 if (!h) {
Alexey Dobriyana702a652008-10-08 11:35:04 +0200649 h = init_conntrack(net, &tuple, l3proto, l4proto, skb, dataoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800650 if (!h)
651 return NULL;
652 if (IS_ERR(h))
653 return (void *)h;
654 }
655 ct = nf_ct_tuplehash_to_ctrack(h);
656
657 /* It exists; we have (non-exclusive) reference. */
658 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
659 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
660 /* Please set reply bit if this packet OK */
661 *set_reply = 1;
662 } else {
663 /* Once we've had two way comms, always ESTABLISHED. */
664 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700665 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800666 *ctinfo = IP_CT_ESTABLISHED;
667 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700668 pr_debug("nf_conntrack_in: related packet for %p\n",
669 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800670 *ctinfo = IP_CT_RELATED;
671 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700672 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800673 *ctinfo = IP_CT_NEW;
674 }
675 *set_reply = 0;
676 }
677 skb->nfct = &ct->ct_general;
678 skb->nfctinfo = *ctinfo;
679 return ct;
680}
681
682unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +0200683nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
684 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800685{
686 struct nf_conn *ct;
687 enum ip_conntrack_info ctinfo;
688 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100689 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800690 unsigned int dataoff;
691 u_int8_t protonum;
692 int set_reply = 0;
693 int ret;
694
695 /* Previously seen (loopback or untracked)? Ignore. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700696 if (skb->nfct) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200697 NF_CT_STAT_INC_ATOMIC(net, ignore);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800698 return NF_ACCEPT;
699 }
700
Patrick McHardy923f4902007-02-12 11:12:57 -0800701 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200702 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700703 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700704 &dataoff, &protonum);
705 if (ret <= 0) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700706 pr_debug("not prepared to track yet or error occured\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200707 NF_CT_STAT_INC_ATOMIC(net, error);
708 NF_CT_STAT_INC_ATOMIC(net, invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800709 return -ret;
710 }
711
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200712 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800713
714 /* It may be an special packet, error, unclean...
715 * inverse of the return code tells to the netfilter
716 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200717 if (l4proto->error != NULL) {
718 ret = l4proto->error(net, skb, dataoff, &ctinfo, pf, hooknum);
719 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200720 NF_CT_STAT_INC_ATOMIC(net, error);
721 NF_CT_STAT_INC_ATOMIC(net, invalid);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200722 return -ret;
723 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800724 }
725
Alexey Dobriyana702a652008-10-08 11:35:04 +0200726 ct = resolve_normal_ct(net, skb, dataoff, pf, protonum,
727 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800728 if (!ct) {
729 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200730 NF_CT_STAT_INC_ATOMIC(net, invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800731 return NF_ACCEPT;
732 }
733
734 if (IS_ERR(ct)) {
735 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200736 NF_CT_STAT_INC_ATOMIC(net, drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800737 return NF_DROP;
738 }
739
Herbert Xu3db05fe2007-10-15 00:53:15 -0700740 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800741
Herbert Xu3db05fe2007-10-15 00:53:15 -0700742 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
Christoph Paaschec8d5402009-03-16 15:51:29 +0100743 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800744 /* Invalid: inverse of the return code tells
745 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -0700746 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -0700747 nf_conntrack_put(skb->nfct);
748 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200749 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +0100750 if (ret == -NF_DROP)
751 NF_CT_STAT_INC_ATOMIC(net, drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800752 return -ret;
753 }
754
755 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200756 nf_conntrack_event_cache(IPCT_STATUS, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800757
758 return ret;
759}
Patrick McHardy13b18332006-12-02 22:11:25 -0800760EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800761
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200762bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
763 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800764{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200765 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -0800766
767 rcu_read_lock();
768 ret = nf_ct_invert_tuple(inverse, orig,
769 __nf_ct_l3proto_find(orig->src.l3num),
770 __nf_ct_l4proto_find(orig->src.l3num,
771 orig->dst.protonum));
772 rcu_read_unlock();
773 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800774}
Patrick McHardy13b18332006-12-02 22:11:25 -0800775EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800776
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800777/* Alter reply tuple (maybe alter helper). This is for NAT, and is
778 implicitly racy: see __nf_conntrack_confirm */
779void nf_conntrack_alter_reply(struct nf_conn *ct,
780 const struct nf_conntrack_tuple *newreply)
781{
782 struct nf_conn_help *help = nfct_help(ct);
783
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800784 /* Should be unconfirmed, so not in hash table yet */
785 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
786
Patrick McHardy0d537782007-07-07 22:39:38 -0700787 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200788 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800789
790 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +0200791 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800792 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700793
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800794 rcu_read_lock();
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100795 __nf_ct_try_assign_helper(ct, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800796 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800797}
Patrick McHardy13b18332006-12-02 22:11:25 -0800798EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800799
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800800/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
801void __nf_ct_refresh_acct(struct nf_conn *ct,
802 enum ip_conntrack_info ctinfo,
803 const struct sk_buff *skb,
804 unsigned long extra_jiffies,
805 int do_acct)
806{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800807 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
808 NF_CT_ASSERT(skb);
809
Eric Leblond997ae832006-05-29 18:24:20 -0700810 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -0800811 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
812 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -0700813
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800814 /* If not in hash table, timer will not be active yet */
815 if (!nf_ct_is_confirmed(ct)) {
816 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800817 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +0100818 unsigned long newtime = jiffies + extra_jiffies;
819
820 /* Only update the timeout if the new timeout is at least
821 HZ jiffies from the old timeout. Need del_timer for race
822 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200823 if (newtime - ct->timeout.expires >= HZ)
824 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800825 }
826
Patrick McHardy47d95042008-01-31 04:36:31 -0800827acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800828 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700829 struct nf_conn_counter *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100830
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700831 acct = nf_conn_acct_find(ct);
832 if (acct) {
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200833 spin_lock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700834 acct[CTINFO2DIR(ctinfo)].packets++;
835 acct[CTINFO2DIR(ctinfo)].bytes +=
836 skb->len - skb_network_offset(skb);
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200837 spin_unlock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700838 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800839 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800840}
Patrick McHardy13b18332006-12-02 22:11:25 -0800841EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800842
David S. Miller4c889492008-07-14 20:22:38 -0700843bool __nf_ct_kill_acct(struct nf_conn *ct,
844 enum ip_conntrack_info ctinfo,
845 const struct sk_buff *skb,
846 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -0700847{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700848 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700849 struct nf_conn_counter *acct;
850
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700851 acct = nf_conn_acct_find(ct);
852 if (acct) {
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200853 spin_lock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700854 acct[CTINFO2DIR(ctinfo)].packets++;
855 acct[CTINFO2DIR(ctinfo)].bytes +=
856 skb->len - skb_network_offset(skb);
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200857 spin_unlock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700858 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700859 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700860
David S. Miller4c889492008-07-14 20:22:38 -0700861 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -0700862 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -0700863 return true;
864 }
865 return false;
Patrick McHardy51091762008-06-09 15:59:06 -0700866}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700867EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -0700868
Patrick McHardye281db5c2007-03-04 15:57:25 -0800869#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800870
871#include <linux/netfilter/nfnetlink.h>
872#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -0800873#include <linux/mutex.h>
874
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800875/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
876 * in ip_conntrack_core, since we don't want the protocols to autoload
877 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -0700878int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800879 const struct nf_conntrack_tuple *tuple)
880{
Patrick McHardy77236b62007-12-17 22:29:45 -0800881 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
882 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800883 return 0;
884
Patrick McHardydf6fb862007-09-28 14:37:03 -0700885nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800886 return -1;
887}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700888EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800889
Patrick McHardyf73e9242007-09-28 14:39:55 -0700890const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
891 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
892 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800893};
Patrick McHardyf73e9242007-09-28 14:39:55 -0700894EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800895
Patrick McHardyfdf70832007-09-28 14:37:41 -0700896int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800897 struct nf_conntrack_tuple *t)
898{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700899 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800900 return -EINVAL;
901
Patrick McHardy77236b62007-12-17 22:29:45 -0800902 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
903 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800904
905 return 0;
906}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700907EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +0100908
909int nf_ct_port_nlattr_tuple_size(void)
910{
911 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
912}
913EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800914#endif
915
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800916/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardyb334aad2008-01-14 23:48:57 -0800917static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800918{
919 struct nf_conn *ct;
920 enum ip_conntrack_info ctinfo;
921
922 /* This ICMP is in reverse direction to the packet which caused it */
923 ct = nf_ct_get(skb, &ctinfo);
924 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
925 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
926 else
927 ctinfo = IP_CT_RELATED;
928
929 /* Attach to new skbuff, and increment count */
930 nskb->nfct = &ct->ct_general;
931 nskb->nfctinfo = ctinfo;
932 nf_conntrack_get(nskb->nfct);
933}
934
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800935/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -0700936static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200937get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800938 void *data, unsigned int *bucket)
939{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700940 struct nf_conntrack_tuple_hash *h;
941 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +0100942 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800943
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800944 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800945 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100946 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700947 ct = nf_ct_tuplehash_to_ctrack(h);
948 if (iter(ct, data))
949 goto found;
950 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800951 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100952 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -0700953 ct = nf_ct_tuplehash_to_ctrack(h);
954 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -0800955 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700956 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800957 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700958 return NULL;
959found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -0800960 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800961 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700962 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800963}
964
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200965void nf_ct_iterate_cleanup(struct net *net,
966 int (*iter)(struct nf_conn *i, void *data),
967 void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800968{
Patrick McHardydf0933d2006-09-20 11:57:53 -0700969 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800970 unsigned int bucket = 0;
971
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200972 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800973 /* Time to push up daises... */
974 if (del_timer(&ct->timeout))
975 death_by_timeout((unsigned long)ct);
976 /* ... else the timer will get him soon. */
977
978 nf_ct_put(ct);
979 }
980}
Patrick McHardy13b18332006-12-02 22:11:25 -0800981EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800982
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100983struct __nf_ct_flush_report {
984 u32 pid;
985 int report;
986};
987
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +0200988static int kill_report(struct nf_conn *i, void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800989{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100990 struct __nf_ct_flush_report *fr = (struct __nf_ct_flush_report *)data;
991
992 /* get_next_corpse sets the dying bit for us */
993 nf_conntrack_event_report(IPCT_DESTROY,
994 i,
995 fr->pid,
996 fr->report);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800997 return 1;
998}
999
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001000static int kill_all(struct nf_conn *i, void *data)
1001{
1002 return 1;
1003}
1004
Eric Dumazetea781f12009-03-25 21:05:46 +01001005void nf_ct_free_hashtable(void *hash, int vmalloced, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001006{
1007 if (vmalloced)
1008 vfree(hash);
1009 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001010 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001011 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001012}
Patrick McHardyac565e52007-07-07 22:30:08 -07001013EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001014
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001015void nf_conntrack_flush_report(struct net *net, u32 pid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001016{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001017 struct __nf_ct_flush_report fr = {
1018 .pid = pid,
1019 .report = report,
1020 };
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001021 nf_ct_iterate_cleanup(net, kill_report, &fr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001022}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001023EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001024
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001025static void nf_conntrack_cleanup_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001026{
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001027 nf_conntrack_helper_fini();
1028 nf_conntrack_proto_fini();
1029 kmem_cache_destroy(nf_conntrack_cachep);
1030}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001031
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001032static void nf_conntrack_cleanup_net(struct net *net)
1033{
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001034 nf_ct_event_cache_flush(net);
1035 nf_conntrack_ecache_fini(net);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001036 i_see_dead_people:
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001037 nf_ct_iterate_cleanup(net, kill_all, NULL);
Alexey Dobriyan49ac8712008-10-08 11:35:03 +02001038 if (atomic_read(&net->ct.count) != 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001039 schedule();
1040 goto i_see_dead_people;
1041 }
Patrick McHardy66365682005-12-05 13:36:50 -08001042 /* wait until all references to nf_conntrack_untracked are dropped */
1043 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
1044 schedule();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001045
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001046 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
Patrick McHardyac565e52007-07-07 22:30:08 -07001047 nf_conntrack_htable_size);
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001048 nf_conntrack_acct_fini(net);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001049 nf_conntrack_expect_fini(net);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001050 free_percpu(net->ct.stat);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001051}
1052
1053/* Mishearing the voices in his head, our hero wonders how he's
1054 supposed to kill the mall. */
1055void nf_conntrack_cleanup(struct net *net)
1056{
1057 if (net_eq(net, &init_net))
1058 rcu_assign_pointer(ip_ct_attach, NULL);
1059
1060 /* This makes sure all current packets have passed through
1061 netfilter framework. Roll on, two-stage module
1062 delete... */
1063 synchronize_net();
1064
1065 nf_conntrack_cleanup_net(net);
1066
1067 if (net_eq(net, &init_net)) {
1068 rcu_assign_pointer(nf_ct_destroy, NULL);
1069 nf_conntrack_cleanup_init_net();
1070 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001071}
1072
Eric Dumazetea781f12009-03-25 21:05:46 +01001073void *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001074{
Eric Dumazetea781f12009-03-25 21:05:46 +01001075 struct hlist_nulls_head *hash;
1076 unsigned int nr_slots, i;
1077 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001078
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001079 *vmalloced = 0;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001080
Eric Dumazetea781f12009-03-25 21:05:46 +01001081 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1082 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1083 sz = nr_slots * sizeof(struct hlist_nulls_head);
1084 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1085 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001086 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001087 *vmalloced = 1;
1088 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazetea781f12009-03-25 21:05:46 +01001089 hash = __vmalloc(sz, GFP_KERNEL | __GFP_ZERO, PAGE_KERNEL);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001090 }
1091
Eric Dumazetea781f12009-03-25 21:05:46 +01001092 if (hash && nulls)
1093 for (i = 0; i < nr_slots; i++)
1094 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001095
1096 return hash;
1097}
Patrick McHardyac565e52007-07-07 22:30:08 -07001098EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001099
Patrick McHardyfae718d2007-12-24 21:09:10 -08001100int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001101{
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001102 int i, bucket, vmalloced, old_vmalloced;
1103 unsigned int hashsize, old_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001104 int rnd;
Eric Dumazetea781f12009-03-25 21:05:46 +01001105 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001106 struct nf_conntrack_tuple_hash *h;
1107
1108 /* On boot, we can set this without any fancy locking. */
1109 if (!nf_conntrack_htable_size)
1110 return param_set_uint(val, kp);
1111
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001112 hashsize = simple_strtoul(val, NULL, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001113 if (!hashsize)
1114 return -EINVAL;
1115
Eric Dumazetea781f12009-03-25 21:05:46 +01001116 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001117 if (!hash)
1118 return -ENOMEM;
1119
1120 /* We have to rehahs for the new table anyway, so we also can
1121 * use a newrandom seed */
Hagen Paul Pfeiferaf07d242009-02-20 10:48:06 +01001122 get_random_bytes(&rnd, sizeof(rnd));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001123
Patrick McHardy76507f62008-01-31 04:38:38 -08001124 /* Lookups in the old hash might happen in parallel, which means we
1125 * might get false negatives during connection lookup. New connections
1126 * created because of a false negative won't make it into the hash
1127 * though since that required taking the lock.
1128 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001129 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001130 for (i = 0; i < nf_conntrack_htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001131 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1132 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1133 struct nf_conntrack_tuple_hash, hnnode);
1134 hlist_nulls_del_rcu(&h->hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001135 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
Eric Dumazetea781f12009-03-25 21:05:46 +01001136 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001137 }
1138 }
1139 old_size = nf_conntrack_htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001140 old_vmalloced = init_net.ct.hash_vmalloc;
1141 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001142
1143 nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001144 init_net.ct.hash_vmalloc = vmalloced;
1145 init_net.ct.hash = hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001146 nf_conntrack_hash_rnd = rnd;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001147 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001148
Patrick McHardyac565e52007-07-07 22:30:08 -07001149 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001150 return 0;
1151}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001152EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001153
Patrick McHardyfae718d2007-12-24 21:09:10 -08001154module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001155 &nf_conntrack_htable_size, 0600);
1156
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001157static int nf_conntrack_init_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001158{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001159 int max_factor = 8;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001160 int ret;
1161
1162 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001163 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001164 if (!nf_conntrack_htable_size) {
1165 nf_conntrack_htable_size
1166 = (((num_physpages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001167 / sizeof(struct hlist_head));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001168 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001169 nf_conntrack_htable_size = 16384;
1170 if (nf_conntrack_htable_size < 32)
1171 nf_conntrack_htable_size = 32;
1172
1173 /* Use a max. factor of four by default to get the same max as
1174 * with the old struct list_heads. When a table size is given
1175 * we use the old value of 8 to avoid reducing the max.
1176 * entries. */
1177 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001178 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001179 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001180
1181 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1182 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1183 nf_conntrack_max);
1184
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001185 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1186 sizeof(struct nf_conn),
Eric Dumazetea781f12009-03-25 21:05:46 +01001187 0, SLAB_DESTROY_BY_RCU, NULL);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001188 if (!nf_conntrack_cachep) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001189 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001190 ret = -ENOMEM;
1191 goto err_cache;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001192 }
1193
Patrick McHardyac5357e2007-03-14 16:38:25 -07001194 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001195 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001196 goto err_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001197
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001198 ret = nf_conntrack_helper_init();
1199 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001200 goto err_helper;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001201
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001202 return 0;
1203
1204err_helper:
1205 nf_conntrack_proto_fini();
1206err_proto:
1207 kmem_cache_destroy(nf_conntrack_cachep);
1208err_cache:
1209 return ret;
1210}
1211
1212static int nf_conntrack_init_net(struct net *net)
1213{
1214 int ret;
1215
1216 atomic_set(&net->ct.count, 0);
Eric Dumazetea781f12009-03-25 21:05:46 +01001217 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, 0);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001218 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1219 if (!net->ct.stat) {
1220 ret = -ENOMEM;
1221 goto err_stat;
1222 }
1223 ret = nf_conntrack_ecache_init(net);
1224 if (ret < 0)
1225 goto err_ecache;
1226 net->ct.hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
Eric Dumazetea781f12009-03-25 21:05:46 +01001227 &net->ct.hash_vmalloc, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001228 if (!net->ct.hash) {
1229 ret = -ENOMEM;
1230 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1231 goto err_hash;
1232 }
1233 ret = nf_conntrack_expect_init(net);
1234 if (ret < 0)
1235 goto err_expect;
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001236 ret = nf_conntrack_acct_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001237 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001238 goto err_acct;
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001239
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001240 /* Set up fake conntrack:
1241 - to never be deleted, not in any hashes */
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +02001242#ifdef CONFIG_NET_NS
1243 nf_conntrack_untracked.ct_net = &init_net;
1244#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001245 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1246 /* - and look it like as a confirmed connection */
1247 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1248
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001249 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001250
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001251err_acct:
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001252 nf_conntrack_expect_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001253err_expect:
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001254 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
Patrick McHardyac565e52007-07-07 22:30:08 -07001255 nf_conntrack_htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001256err_hash:
1257 nf_conntrack_ecache_fini(net);
1258err_ecache:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001259 free_percpu(net->ct.stat);
1260err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001261 return ret;
1262}
1263
1264int nf_conntrack_init(struct net *net)
1265{
1266 int ret;
1267
1268 if (net_eq(net, &init_net)) {
1269 ret = nf_conntrack_init_init_net();
1270 if (ret < 0)
1271 goto out_init_net;
1272 }
1273 ret = nf_conntrack_init_net(net);
1274 if (ret < 0)
1275 goto out_net;
1276
1277 if (net_eq(net, &init_net)) {
1278 /* For use by REJECT target */
1279 rcu_assign_pointer(ip_ct_attach, nf_conntrack_attach);
1280 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
1281 }
1282 return 0;
1283
1284out_net:
1285 if (net_eq(net, &init_net))
1286 nf_conntrack_cleanup_init_net();
1287out_init_net:
1288 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001289}