blob: b37109817a988034272285e868036ddc188dbe84 [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 Ayusoa0891aa2009-06-13 12:26:29 +020042#include <net/netfilter/nf_conntrack_ecache.h>
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070043#include <net/netfilter/nf_nat.h>
Patrick McHardye17b6662008-11-18 12:24:17 +010044#include <net/netfilter/nf_nat_core.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080045
Harald Weltedc808fe2006-03-20 17:56:32 -080046#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080047
Patrick McHardye17b6662008-11-18 12:24:17 +010048int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
49 enum nf_nat_manip_type manip,
Patrick McHardy39938322009-08-25 16:07:58 +020050 const struct nlattr *attr) __read_mostly;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070051EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
52
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080053DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080054EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080055
Martin Josefssone2b76062006-11-29 02:35:04 +010056unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080057EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
58
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +010059unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010060EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080061
Martin Josefssone2b76062006-11-29 02:35:04 +010062struct nf_conn nf_conntrack_untracked __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080063EXPORT_SYMBOL_GPL(nf_conntrack_untracked);
64
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -070065static struct kmem_cache *nf_conntrack_cachep __read_mostly;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010066
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080067static int nf_conntrack_hash_rnd_initted;
68static unsigned int nf_conntrack_hash_rnd;
69
70static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
71 unsigned int size, unsigned int rnd)
72{
Patrick McHardy07949352008-01-31 04:40:52 -080073 unsigned int n;
74 u_int32_t h;
Sami Farin9b887902007-03-14 16:43:00 -070075
Patrick McHardy07949352008-01-31 04:40:52 -080076 /* The direction must be ignored, so we hash everything up to the
77 * destination ports (which is a multiple of 4) and treat the last
78 * three bytes manually.
79 */
80 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
81 h = jhash2((u32 *)tuple, n,
82 rnd ^ (((__force __u16)tuple->dst.u.all << 16) |
83 tuple->dst.protonum));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080084
Patrick McHardy07949352008-01-31 04:40:52 -080085 return ((u64)h * size) >> 32;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080086}
87
88static inline u_int32_t hash_conntrack(const struct nf_conntrack_tuple *tuple)
89{
90 return __hash_conntrack(tuple, nf_conntrack_htable_size,
91 nf_conntrack_hash_rnd);
92}
93
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +020094bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080095nf_ct_get_tuple(const struct sk_buff *skb,
96 unsigned int nhoff,
97 unsigned int dataoff,
98 u_int16_t l3num,
99 u_int8_t protonum,
100 struct nf_conntrack_tuple *tuple,
101 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100102 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800103{
Philip Craig443a70d2008-04-29 03:35:10 -0700104 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800105
106 tuple->src.l3num = l3num;
107 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200108 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800109
110 tuple->dst.protonum = protonum;
111 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
112
Martin Josefsson605dcad2006-11-29 02:35:06 +0100113 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800114}
Patrick McHardy13b18332006-12-02 22:11:25 -0800115EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800116
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200117bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
118 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700119{
120 struct nf_conntrack_l3proto *l3proto;
121 struct nf_conntrack_l4proto *l4proto;
122 unsigned int protoff;
123 u_int8_t protonum;
124 int ret;
125
126 rcu_read_lock();
127
128 l3proto = __nf_ct_l3proto_find(l3num);
129 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
130 if (ret != NF_ACCEPT) {
131 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200132 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700133 }
134
135 l4proto = __nf_ct_l4proto_find(l3num, protonum);
136
137 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
138 l3proto, l4proto);
139
140 rcu_read_unlock();
141 return ret;
142}
143EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
144
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200145bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800146nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
147 const struct nf_conntrack_tuple *orig,
148 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100149 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800150{
Philip Craig443a70d2008-04-29 03:35:10 -0700151 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800152
153 inverse->src.l3num = orig->src.l3num;
154 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200155 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800156
157 inverse->dst.dir = !orig->dst.dir;
158
159 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100160 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800161}
Patrick McHardy13b18332006-12-02 22:11:25 -0800162EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800163
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800164static void
165clean_from_lists(struct nf_conn *ct)
166{
Patrick McHardy0d537782007-07-07 22:39:38 -0700167 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100168 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
169 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800170
171 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800172 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800173}
174
175static void
176destroy_conntrack(struct nf_conntrack *nfct)
177{
178 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200179 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100180 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800181
Patrick McHardy0d537782007-07-07 22:39:38 -0700182 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800183 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
184 NF_CT_ASSERT(!timer_pending(&ct->timeout));
185
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800186 /* To make sure we don't get any weird locking issues here:
187 * destroy_conntrack() MUST NOT be called with a write lock
188 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800189 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200190 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100191 if (l4proto && l4proto->destroy)
192 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800193
Patrick McHardy982d9a92007-02-12 11:14:11 -0800194 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800195
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800196 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800197 /* Expectations will have been removed in clean_from_lists,
198 * except TFTP can create an expectation on the first packet,
199 * before connection is in the list, so we need to clean here,
200 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800201 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800202
203 /* We overload first tuple to link into unconfirmed list. */
204 if (!nf_ct_is_confirmed(ct)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100205 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
206 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800207 }
208
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200209 NF_CT_STAT_INC(net, delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800210 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800211
212 if (ct->master)
213 nf_ct_put(ct->master);
214
Patrick McHardy0d537782007-07-07 22:39:38 -0700215 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800216 nf_conntrack_free(ct);
217}
218
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200219void nf_ct_delete_from_lists(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800220{
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200221 struct net *net = nf_ct_net(ct);
Patrick McHardy5397e972007-05-19 14:23:52 -0700222
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200223 nf_ct_helper_destroy(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800224 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800225 /* Inside lock so preempt is disabled on module removal path.
226 * Otherwise we can get spurious warnings. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200227 NF_CT_STAT_INC(net, delete_list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800228 clean_from_lists(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800229 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200230}
231EXPORT_SYMBOL_GPL(nf_ct_delete_from_lists);
232
233static void death_by_event(unsigned long ul_conntrack)
234{
235 struct nf_conn *ct = (void *)ul_conntrack;
236 struct net *net = nf_ct_net(ct);
237
238 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
239 /* bad luck, let's retry again */
240 ct->timeout.expires = jiffies +
241 (random32() % net->ct.sysctl_events_retry_timeout);
242 add_timer(&ct->timeout);
243 return;
244 }
245 /* we've got the event delivered, now it's dying */
246 set_bit(IPS_DYING_BIT, &ct->status);
247 spin_lock(&nf_conntrack_lock);
248 hlist_nulls_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
249 spin_unlock(&nf_conntrack_lock);
250 nf_ct_put(ct);
251}
252
253void nf_ct_insert_dying_list(struct nf_conn *ct)
254{
255 struct net *net = nf_ct_net(ct);
256
257 /* add this conntrack to the dying list */
258 spin_lock_bh(&nf_conntrack_lock);
259 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
260 &net->ct.dying);
261 spin_unlock_bh(&nf_conntrack_lock);
262 /* set a new timer to retry event delivery */
263 setup_timer(&ct->timeout, death_by_event, (unsigned long)ct);
264 ct->timeout.expires = jiffies +
265 (random32() % net->ct.sysctl_events_retry_timeout);
266 add_timer(&ct->timeout);
267}
268EXPORT_SYMBOL_GPL(nf_ct_insert_dying_list);
269
270static void death_by_timeout(unsigned long ul_conntrack)
271{
272 struct nf_conn *ct = (void *)ul_conntrack;
273
274 if (!test_bit(IPS_DYING_BIT, &ct->status) &&
275 unlikely(nf_conntrack_event(IPCT_DESTROY, ct) < 0)) {
276 /* destroy event was not delivered */
277 nf_ct_delete_from_lists(ct);
278 nf_ct_insert_dying_list(ct);
279 return;
280 }
281 set_bit(IPS_DYING_BIT, &ct->status);
282 nf_ct_delete_from_lists(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800283 nf_ct_put(ct);
284}
285
Eric Dumazetea781f12009-03-25 21:05:46 +0100286/*
287 * Warning :
288 * - Caller must take a reference on returned object
289 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
290 * OR
291 * - Caller must lock nf_conntrack_lock before calling this function
292 */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800293struct nf_conntrack_tuple_hash *
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200294__nf_conntrack_find(struct net *net, const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800295{
296 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100297 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800298 unsigned int hash = hash_conntrack(tuple);
299
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800300 /* Disable BHs the entire time since we normally need to disable them
301 * at least once for the stats anyway.
302 */
303 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100304begin:
305 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardyba419af2008-01-31 04:39:23 -0800306 if (nf_ct_tuple_equal(tuple, &h->tuple)) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200307 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800308 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800309 return h;
310 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200311 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800312 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100313 /*
314 * if the nulls value we got at the end of this lookup is
315 * not the expected one, we must restart lookup.
316 * We probably met an item that was moved to another chain.
317 */
318 if (get_nulls_value(n) != hash)
319 goto begin;
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800320 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800321
322 return NULL;
323}
Patrick McHardy13b18332006-12-02 22:11:25 -0800324EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800325
326/* Find a connection corresponding to a tuple. */
327struct nf_conntrack_tuple_hash *
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200328nf_conntrack_find_get(struct net *net, const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800329{
330 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800331 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800332
Patrick McHardy76507f62008-01-31 04:38:38 -0800333 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100334begin:
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200335 h = __nf_conntrack_find(net, tuple);
Patrick McHardy76507f62008-01-31 04:38:38 -0800336 if (h) {
337 ct = nf_ct_tuplehash_to_ctrack(h);
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200338 if (unlikely(nf_ct_is_dying(ct) ||
339 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800340 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100341 else {
342 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple))) {
343 nf_ct_put(ct);
344 goto begin;
345 }
346 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800347 }
348 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800349
350 return h;
351}
Patrick McHardy13b18332006-12-02 22:11:25 -0800352EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800353
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800354static void __nf_conntrack_hash_insert(struct nf_conn *ct,
355 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800356 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800357{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200358 struct net *net = nf_ct_net(ct);
359
Eric Dumazetea781f12009-03-25 21:05:46 +0100360 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200361 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100362 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200363 &net->ct.hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800364}
365
366void nf_conntrack_hash_insert(struct nf_conn *ct)
367{
368 unsigned int hash, repl_hash;
369
370 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
371 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
372
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800373 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800374}
Patrick McHardy13b18332006-12-02 22:11:25 -0800375EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800376
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800377/* Confirm a connection given skb; places it in hash table */
378int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700379__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800380{
381 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700382 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800383 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700384 struct nf_conn_help *help;
Eric Dumazetea781f12009-03-25 21:05:46 +0100385 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800386 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200387 struct net *net;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800388
Herbert Xu3db05fe2007-10-15 00:53:15 -0700389 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200390 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800391
392 /* ipt_REJECT uses nf_conntrack_attach to attach related
393 ICMP/TCP RST packets in other direction. Actual packet
394 which created connection will be IP_CT_NEW or for an
395 expected connection, IP_CT_RELATED. */
396 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
397 return NF_ACCEPT;
398
399 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
400 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
401
402 /* We're not in hash table, and we refuse to set up related
403 connections for unconfirmed conns. But packet copies and
404 REJECT will give spurious warnings here. */
405 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
406
407 /* No external references means noone else could have
408 confirmed us. */
409 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700410 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800411
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800412 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800413
414 /* See if there's one in the list already, including reverse:
415 NAT could have grabbed it without realizing, since we're
416 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100417 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700418 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
419 &h->tuple))
420 goto out;
Eric Dumazetea781f12009-03-25 21:05:46 +0100421 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700422 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
423 &h->tuple))
424 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800425
Patrick McHardydf0933d2006-09-20 11:57:53 -0700426 /* Remove from unconfirmed list */
Eric Dumazetea781f12009-03-25 21:05:46 +0100427 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700428
Patrick McHardydf0933d2006-09-20 11:57:53 -0700429 /* Timer relative to confirmation time, not original
430 setting time, otherwise we'd get timer wrap in
431 weird delay cases. */
432 ct->timeout.expires += jiffies;
433 add_timer(&ct->timeout);
434 atomic_inc(&ct->ct_general.use);
435 set_bit(IPS_CONFIRMED_BIT, &ct->status);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200436
437 /* Since the lookup is lockless, hash insertion must be done after
438 * starting the timer and setting the CONFIRMED bit. The RCU barriers
439 * guarantee that no other CPU can find the conntrack before the above
440 * stores are visible.
441 */
442 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200443 NF_CT_STAT_INC(net, insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800444 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200445
Patrick McHardydf0933d2006-09-20 11:57:53 -0700446 help = nfct_help(ct);
447 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200448 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200449
Patrick McHardydf0933d2006-09-20 11:57:53 -0700450 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200451 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700452 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800453
Patrick McHardydf0933d2006-09-20 11:57:53 -0700454out:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200455 NF_CT_STAT_INC(net, insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800456 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800457 return NF_DROP;
458}
Patrick McHardy13b18332006-12-02 22:11:25 -0800459EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800460
461/* Returns true if a connection correspondings to the tuple (required
462 for NAT). */
463int
464nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
465 const struct nf_conn *ignored_conntrack)
466{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200467 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800468 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100469 struct hlist_nulls_node *n;
Patrick McHardyba419af2008-01-31 04:39:23 -0800470 unsigned int hash = hash_conntrack(tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800471
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800472 /* Disable BHs the entire time since we need to disable them at
473 * least once for the stats anyway.
474 */
475 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100476 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardyba419af2008-01-31 04:39:23 -0800477 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
478 nf_ct_tuple_equal(tuple, &h->tuple)) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200479 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800480 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800481 return 1;
482 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200483 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800484 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800485 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800486
Patrick McHardyba419af2008-01-31 04:39:23 -0800487 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800488}
Patrick McHardy13b18332006-12-02 22:11:25 -0800489EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800490
Patrick McHardy7ae77302007-07-07 22:37:38 -0700491#define NF_CT_EVICTION_RANGE 8
492
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800493/* There's a small race here where we may free a just-assured
494 connection. Too bad: we're in trouble anyway. */
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200495static noinline int early_drop(struct net *net, unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800496{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700497 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800498 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700499 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100500 struct hlist_nulls_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700501 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800502 int dropped = 0;
503
Patrick McHardy76507f62008-01-31 04:38:38 -0800504 rcu_read_lock();
Patrick McHardy7ae77302007-07-07 22:37:38 -0700505 for (i = 0; i < nf_conntrack_htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100506 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
507 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700508 tmp = nf_ct_tuplehash_to_ctrack(h);
509 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
510 ct = tmp;
511 cnt++;
512 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800513
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200514 if (ct && unlikely(nf_ct_is_dying(ct) ||
515 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800516 ct = NULL;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700517 if (ct || cnt >= NF_CT_EVICTION_RANGE)
518 break;
519 hash = (hash + 1) % nf_conntrack_htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800520 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800521 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800522
523 if (!ct)
524 return dropped;
525
526 if (del_timer(&ct->timeout)) {
527 death_by_timeout((unsigned long)ct);
528 dropped = 1;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200529 NF_CT_STAT_INC_ATOMIC(net, early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800530 }
531 nf_ct_put(ct);
532 return dropped;
533}
534
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200535struct nf_conn *nf_conntrack_alloc(struct net *net,
536 const struct nf_conntrack_tuple *orig,
Pablo Neira Ayusob891c5a2008-07-08 02:35:55 -0700537 const struct nf_conntrack_tuple *repl,
538 gfp_t gfp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800539{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000540 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800541
Harald Weltedc808fe2006-03-20 17:56:32 -0800542 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Hagen Paul Pfeiferaf07d242009-02-20 10:48:06 +0100543 get_random_bytes(&nf_conntrack_hash_rnd,
544 sizeof(nf_conntrack_hash_rnd));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800545 nf_conntrack_hash_rnd_initted = 1;
546 }
547
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700548 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200549 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700550
Patrick McHardy76eb9462008-01-31 04:41:44 -0800551 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200552 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800553 unsigned int hash = hash_conntrack(orig);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200554 if (!early_drop(net, hash)) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200555 atomic_dec(&net->ct.count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800556 if (net_ratelimit())
557 printk(KERN_WARNING
558 "nf_conntrack: table full, dropping"
559 " packet.\n");
560 return ERR_PTR(-ENOMEM);
561 }
562 }
563
Eric Dumazet941297f2009-07-16 14:03:40 +0200564 /*
565 * Do not use kmem_cache_zalloc(), as this cache uses
566 * SLAB_DESTROY_BY_RCU.
567 */
568 ct = kmem_cache_alloc(nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800569 if (ct == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700570 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200571 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700572 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800573 }
Eric Dumazet941297f2009-07-16 14:03:40 +0200574 /*
575 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
576 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
577 */
578 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
579 sizeof(*ct) - offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
Patrick McHardy440f0d52009-06-10 14:32:47 +0200580 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800581 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
Eric Dumazet941297f2009-07-16 14:03:40 +0200582 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800583 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Eric Dumazet941297f2009-07-16 14:03:40 +0200584 ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800585 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800586 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200587#ifdef CONFIG_NET_NS
588 ct->ct_net = net;
589#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800590
Eric Dumazet941297f2009-07-16 14:03:40 +0200591 /*
592 * changes to lookup keys must be done before setting refcnt to 1
593 */
594 smp_wmb();
595 atomic_set(&ct->ct_general.use, 1);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800596 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800597}
Patrick McHardy13b18332006-12-02 22:11:25 -0800598EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800599
Patrick McHardyc88130b2008-01-31 04:42:11 -0800600void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800601{
Eric Dumazet1d452092009-03-24 14:26:50 +0100602 struct net *net = nf_ct_net(ct);
603
Patrick McHardyceeff752008-06-11 17:51:10 -0700604 nf_ct_ext_destroy(ct);
Eric Dumazet1d452092009-03-24 14:26:50 +0100605 atomic_dec(&net->ct.count);
Eric Dumazetea781f12009-03-25 21:05:46 +0100606 nf_ct_ext_free(ct);
607 kmem_cache_free(nf_conntrack_cachep, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800608}
Patrick McHardy13b18332006-12-02 22:11:25 -0800609EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800610
611/* Allocate a new conntrack: we return -ENOMEM if classification
612 failed due to stress. Otherwise it really is unclassifiable. */
613static struct nf_conntrack_tuple_hash *
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200614init_conntrack(struct net *net,
615 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800616 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100617 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800618 struct sk_buff *skb,
619 unsigned int dataoff)
620{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800621 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700622 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800623 struct nf_conntrack_tuple repl_tuple;
624 struct nf_conntrack_expect *exp;
625
Martin Josefsson605dcad2006-11-29 02:35:06 +0100626 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700627 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800628 return NULL;
629 }
630
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200631 ct = nf_conntrack_alloc(net, tuple, &repl_tuple, GFP_ATOMIC);
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000632 if (IS_ERR(ct)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700633 pr_debug("Can't allocate conntrack.\n");
Patrick McHardyc88130b2008-01-31 04:42:11 -0800634 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800635 }
636
Patrick McHardyc88130b2008-01-31 04:42:11 -0800637 if (!l4proto->new(ct, skb, dataoff)) {
638 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700639 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800640 return NULL;
641 }
642
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700643 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200644 nf_ct_ecache_ext_add(ct, GFP_ATOMIC);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700645
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800646 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200647 exp = nf_ct_find_expectation(net, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800648 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700649 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800650 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800651 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800652 __set_bit(IPS_EXPECTED_BIT, &ct->status);
653 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700654 if (exp->helper) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800655 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700656 if (help)
657 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700658 }
659
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800660#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800661 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800662#endif
James Morris7c9728c2006-06-09 00:31:46 -0700663#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800664 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700665#endif
Patrick McHardyc88130b2008-01-31 04:42:11 -0800666 nf_conntrack_get(&ct->master->ct_general);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200667 NF_CT_STAT_INC(net, expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800668 } else {
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100669 __nf_ct_try_assign_helper(ct, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200670 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800671 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800672
673 /* Overload tuple linked list to put us in unconfirmed list. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100674 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan63c9a262008-10-08 11:35:04 +0200675 &net->ct.unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800676
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800677 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800678
679 if (exp) {
680 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800681 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700682 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800683 }
684
Patrick McHardyc88130b2008-01-31 04:42:11 -0800685 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800686}
687
688/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
689static inline struct nf_conn *
Alexey Dobriyana702a652008-10-08 11:35:04 +0200690resolve_normal_ct(struct net *net,
691 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800692 unsigned int dataoff,
693 u_int16_t l3num,
694 u_int8_t protonum,
695 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100696 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800697 int *set_reply,
698 enum ip_conntrack_info *ctinfo)
699{
700 struct nf_conntrack_tuple tuple;
701 struct nf_conntrack_tuple_hash *h;
702 struct nf_conn *ct;
703
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300704 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800705 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100706 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700707 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800708 return NULL;
709 }
710
711 /* look for tuple match */
Alexey Dobriyana702a652008-10-08 11:35:04 +0200712 h = nf_conntrack_find_get(net, &tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800713 if (!h) {
Alexey Dobriyana702a652008-10-08 11:35:04 +0200714 h = init_conntrack(net, &tuple, l3proto, l4proto, skb, dataoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800715 if (!h)
716 return NULL;
717 if (IS_ERR(h))
718 return (void *)h;
719 }
720 ct = nf_ct_tuplehash_to_ctrack(h);
721
722 /* It exists; we have (non-exclusive) reference. */
723 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
724 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
725 /* Please set reply bit if this packet OK */
726 *set_reply = 1;
727 } else {
728 /* Once we've had two way comms, always ESTABLISHED. */
729 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700730 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800731 *ctinfo = IP_CT_ESTABLISHED;
732 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700733 pr_debug("nf_conntrack_in: related packet for %p\n",
734 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800735 *ctinfo = IP_CT_RELATED;
736 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700737 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800738 *ctinfo = IP_CT_NEW;
739 }
740 *set_reply = 0;
741 }
742 skb->nfct = &ct->ct_general;
743 skb->nfctinfo = *ctinfo;
744 return ct;
745}
746
747unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +0200748nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
749 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800750{
751 struct nf_conn *ct;
752 enum ip_conntrack_info ctinfo;
753 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100754 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800755 unsigned int dataoff;
756 u_int8_t protonum;
757 int set_reply = 0;
758 int ret;
759
760 /* Previously seen (loopback or untracked)? Ignore. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700761 if (skb->nfct) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200762 NF_CT_STAT_INC_ATOMIC(net, ignore);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800763 return NF_ACCEPT;
764 }
765
Patrick McHardy923f4902007-02-12 11:12:57 -0800766 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200767 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700768 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700769 &dataoff, &protonum);
770 if (ret <= 0) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700771 pr_debug("not prepared to track yet or error occured\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200772 NF_CT_STAT_INC_ATOMIC(net, error);
773 NF_CT_STAT_INC_ATOMIC(net, invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800774 return -ret;
775 }
776
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200777 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800778
779 /* It may be an special packet, error, unclean...
780 * inverse of the return code tells to the netfilter
781 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200782 if (l4proto->error != NULL) {
783 ret = l4proto->error(net, skb, dataoff, &ctinfo, pf, hooknum);
784 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200785 NF_CT_STAT_INC_ATOMIC(net, error);
786 NF_CT_STAT_INC_ATOMIC(net, invalid);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200787 return -ret;
788 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800789 }
790
Alexey Dobriyana702a652008-10-08 11:35:04 +0200791 ct = resolve_normal_ct(net, skb, dataoff, pf, protonum,
792 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800793 if (!ct) {
794 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200795 NF_CT_STAT_INC_ATOMIC(net, invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800796 return NF_ACCEPT;
797 }
798
799 if (IS_ERR(ct)) {
800 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200801 NF_CT_STAT_INC_ATOMIC(net, drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800802 return NF_DROP;
803 }
804
Herbert Xu3db05fe2007-10-15 00:53:15 -0700805 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800806
Herbert Xu3db05fe2007-10-15 00:53:15 -0700807 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
Christoph Paaschec8d5402009-03-16 15:51:29 +0100808 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800809 /* Invalid: inverse of the return code tells
810 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -0700811 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -0700812 nf_conntrack_put(skb->nfct);
813 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200814 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +0100815 if (ret == -NF_DROP)
816 NF_CT_STAT_INC_ATOMIC(net, drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800817 return -ret;
818 }
819
820 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200821 nf_conntrack_event_cache(IPCT_STATUS, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800822
823 return ret;
824}
Patrick McHardy13b18332006-12-02 22:11:25 -0800825EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800826
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200827bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
828 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800829{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200830 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -0800831
832 rcu_read_lock();
833 ret = nf_ct_invert_tuple(inverse, orig,
834 __nf_ct_l3proto_find(orig->src.l3num),
835 __nf_ct_l4proto_find(orig->src.l3num,
836 orig->dst.protonum));
837 rcu_read_unlock();
838 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800839}
Patrick McHardy13b18332006-12-02 22:11:25 -0800840EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800841
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800842/* Alter reply tuple (maybe alter helper). This is for NAT, and is
843 implicitly racy: see __nf_conntrack_confirm */
844void nf_conntrack_alter_reply(struct nf_conn *ct,
845 const struct nf_conntrack_tuple *newreply)
846{
847 struct nf_conn_help *help = nfct_help(ct);
848
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800849 /* Should be unconfirmed, so not in hash table yet */
850 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
851
Patrick McHardy0d537782007-07-07 22:39:38 -0700852 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200853 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800854
855 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +0200856 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800857 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700858
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800859 rcu_read_lock();
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100860 __nf_ct_try_assign_helper(ct, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800861 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800862}
Patrick McHardy13b18332006-12-02 22:11:25 -0800863EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800864
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800865/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
866void __nf_ct_refresh_acct(struct nf_conn *ct,
867 enum ip_conntrack_info ctinfo,
868 const struct sk_buff *skb,
869 unsigned long extra_jiffies,
870 int do_acct)
871{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800872 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
873 NF_CT_ASSERT(skb);
874
Eric Leblond997ae832006-05-29 18:24:20 -0700875 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -0800876 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
877 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -0700878
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800879 /* If not in hash table, timer will not be active yet */
880 if (!nf_ct_is_confirmed(ct)) {
881 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800882 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +0100883 unsigned long newtime = jiffies + extra_jiffies;
884
885 /* Only update the timeout if the new timeout is at least
886 HZ jiffies from the old timeout. Need del_timer for race
887 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200888 if (newtime - ct->timeout.expires >= HZ)
889 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800890 }
891
Patrick McHardy47d95042008-01-31 04:36:31 -0800892acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800893 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700894 struct nf_conn_counter *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100895
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700896 acct = nf_conn_acct_find(ct);
897 if (acct) {
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200898 spin_lock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700899 acct[CTINFO2DIR(ctinfo)].packets++;
900 acct[CTINFO2DIR(ctinfo)].bytes +=
901 skb->len - skb_network_offset(skb);
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200902 spin_unlock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700903 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800904 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800905}
Patrick McHardy13b18332006-12-02 22:11:25 -0800906EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800907
David S. Miller4c889492008-07-14 20:22:38 -0700908bool __nf_ct_kill_acct(struct nf_conn *ct,
909 enum ip_conntrack_info ctinfo,
910 const struct sk_buff *skb,
911 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -0700912{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700913 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700914 struct nf_conn_counter *acct;
915
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700916 acct = nf_conn_acct_find(ct);
917 if (acct) {
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200918 spin_lock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700919 acct[CTINFO2DIR(ctinfo)].packets++;
920 acct[CTINFO2DIR(ctinfo)].bytes +=
921 skb->len - skb_network_offset(skb);
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200922 spin_unlock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700923 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700924 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700925
David S. Miller4c889492008-07-14 20:22:38 -0700926 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -0700927 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -0700928 return true;
929 }
930 return false;
Patrick McHardy51091762008-06-09 15:59:06 -0700931}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700932EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -0700933
Patrick McHardye281db5c2007-03-04 15:57:25 -0800934#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800935
936#include <linux/netfilter/nfnetlink.h>
937#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -0800938#include <linux/mutex.h>
939
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800940/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
941 * in ip_conntrack_core, since we don't want the protocols to autoload
942 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -0700943int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800944 const struct nf_conntrack_tuple *tuple)
945{
Patrick McHardy77236b62007-12-17 22:29:45 -0800946 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
947 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800948 return 0;
949
Patrick McHardydf6fb862007-09-28 14:37:03 -0700950nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800951 return -1;
952}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700953EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800954
Patrick McHardyf73e9242007-09-28 14:39:55 -0700955const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
956 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
957 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800958};
Patrick McHardyf73e9242007-09-28 14:39:55 -0700959EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800960
Patrick McHardyfdf70832007-09-28 14:37:41 -0700961int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800962 struct nf_conntrack_tuple *t)
963{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700964 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800965 return -EINVAL;
966
Patrick McHardy77236b62007-12-17 22:29:45 -0800967 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
968 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800969
970 return 0;
971}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700972EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +0100973
974int nf_ct_port_nlattr_tuple_size(void)
975{
976 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
977}
978EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800979#endif
980
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800981/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardyb334aad2008-01-14 23:48:57 -0800982static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800983{
984 struct nf_conn *ct;
985 enum ip_conntrack_info ctinfo;
986
987 /* This ICMP is in reverse direction to the packet which caused it */
988 ct = nf_ct_get(skb, &ctinfo);
989 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
990 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
991 else
992 ctinfo = IP_CT_RELATED;
993
994 /* Attach to new skbuff, and increment count */
995 nskb->nfct = &ct->ct_general;
996 nskb->nfctinfo = ctinfo;
997 nf_conntrack_get(nskb->nfct);
998}
999
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001000/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001001static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001002get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001003 void *data, unsigned int *bucket)
1004{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001005 struct nf_conntrack_tuple_hash *h;
1006 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +01001007 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001008
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001009 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001010 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001011 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001012 ct = nf_ct_tuplehash_to_ctrack(h);
1013 if (iter(ct, data))
1014 goto found;
1015 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001016 }
Eric Dumazetea781f12009-03-25 21:05:46 +01001017 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001018 ct = nf_ct_tuplehash_to_ctrack(h);
1019 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -08001020 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001021 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001022 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001023 return NULL;
1024found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001025 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001026 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001027 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001028}
1029
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001030void nf_ct_iterate_cleanup(struct net *net,
1031 int (*iter)(struct nf_conn *i, void *data),
1032 void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001033{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001034 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001035 unsigned int bucket = 0;
1036
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001037 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001038 /* Time to push up daises... */
1039 if (del_timer(&ct->timeout))
1040 death_by_timeout((unsigned long)ct);
1041 /* ... else the timer will get him soon. */
1042
1043 nf_ct_put(ct);
1044 }
1045}
Patrick McHardy13b18332006-12-02 22:11:25 -08001046EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001047
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001048struct __nf_ct_flush_report {
1049 u32 pid;
1050 int report;
1051};
1052
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001053static int kill_report(struct nf_conn *i, void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001054{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001055 struct __nf_ct_flush_report *fr = (struct __nf_ct_flush_report *)data;
1056
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001057 /* If we fail to deliver the event, death_by_timeout() will retry */
1058 if (nf_conntrack_event_report(IPCT_DESTROY, i,
1059 fr->pid, fr->report) < 0)
1060 return 1;
1061
1062 /* Avoid the delivery of the destroy event in death_by_timeout(). */
1063 set_bit(IPS_DYING_BIT, &i->status);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001064 return 1;
1065}
1066
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001067static int kill_all(struct nf_conn *i, void *data)
1068{
1069 return 1;
1070}
1071
Eric Dumazetea781f12009-03-25 21:05:46 +01001072void nf_ct_free_hashtable(void *hash, int vmalloced, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001073{
1074 if (vmalloced)
1075 vfree(hash);
1076 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001077 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001078 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001079}
Patrick McHardyac565e52007-07-07 22:30:08 -07001080EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001081
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001082void nf_conntrack_flush_report(struct net *net, u32 pid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001083{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001084 struct __nf_ct_flush_report fr = {
1085 .pid = pid,
1086 .report = report,
1087 };
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001088 nf_ct_iterate_cleanup(net, kill_report, &fr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001089}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001090EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001091
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001092static void nf_ct_release_dying_list(struct net *net)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001093{
1094 struct nf_conntrack_tuple_hash *h;
1095 struct nf_conn *ct;
1096 struct hlist_nulls_node *n;
1097
1098 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001099 hlist_nulls_for_each_entry(h, n, &net->ct.dying, hnnode) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001100 ct = nf_ct_tuplehash_to_ctrack(h);
1101 /* never fails to remove them, no listeners at this point */
1102 nf_ct_kill(ct);
1103 }
1104 spin_unlock_bh(&nf_conntrack_lock);
1105}
1106
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001107static void nf_conntrack_cleanup_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001108{
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001109 nf_conntrack_helper_fini();
1110 nf_conntrack_proto_fini();
1111 kmem_cache_destroy(nf_conntrack_cachep);
1112}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001113
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001114static void nf_conntrack_cleanup_net(struct net *net)
1115{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001116 i_see_dead_people:
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001117 nf_ct_iterate_cleanup(net, kill_all, NULL);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001118 nf_ct_release_dying_list(net);
Alexey Dobriyan49ac8712008-10-08 11:35:03 +02001119 if (atomic_read(&net->ct.count) != 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001120 schedule();
1121 goto i_see_dead_people;
1122 }
Patrick McHardy66365682005-12-05 13:36:50 -08001123 /* wait until all references to nf_conntrack_untracked are dropped */
1124 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
1125 schedule();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001126
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001127 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
Patrick McHardyac565e52007-07-07 22:30:08 -07001128 nf_conntrack_htable_size);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001129 nf_conntrack_ecache_fini(net);
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001130 nf_conntrack_acct_fini(net);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001131 nf_conntrack_expect_fini(net);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001132 free_percpu(net->ct.stat);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001133}
1134
1135/* Mishearing the voices in his head, our hero wonders how he's
1136 supposed to kill the mall. */
1137void nf_conntrack_cleanup(struct net *net)
1138{
1139 if (net_eq(net, &init_net))
1140 rcu_assign_pointer(ip_ct_attach, NULL);
1141
1142 /* This makes sure all current packets have passed through
1143 netfilter framework. Roll on, two-stage module
1144 delete... */
1145 synchronize_net();
1146
1147 nf_conntrack_cleanup_net(net);
1148
1149 if (net_eq(net, &init_net)) {
1150 rcu_assign_pointer(nf_ct_destroy, NULL);
1151 nf_conntrack_cleanup_init_net();
1152 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001153}
1154
Eric Dumazetea781f12009-03-25 21:05:46 +01001155void *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001156{
Eric Dumazetea781f12009-03-25 21:05:46 +01001157 struct hlist_nulls_head *hash;
1158 unsigned int nr_slots, i;
1159 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001160
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001161 *vmalloced = 0;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001162
Eric Dumazetea781f12009-03-25 21:05:46 +01001163 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1164 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1165 sz = nr_slots * sizeof(struct hlist_nulls_head);
1166 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1167 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001168 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001169 *vmalloced = 1;
1170 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazetea781f12009-03-25 21:05:46 +01001171 hash = __vmalloc(sz, GFP_KERNEL | __GFP_ZERO, PAGE_KERNEL);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001172 }
1173
Eric Dumazetea781f12009-03-25 21:05:46 +01001174 if (hash && nulls)
1175 for (i = 0; i < nr_slots; i++)
1176 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001177
1178 return hash;
1179}
Patrick McHardyac565e52007-07-07 22:30:08 -07001180EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001181
Patrick McHardyfae718d2007-12-24 21:09:10 -08001182int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001183{
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001184 int i, bucket, vmalloced, old_vmalloced;
1185 unsigned int hashsize, old_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001186 int rnd;
Eric Dumazetea781f12009-03-25 21:05:46 +01001187 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001188 struct nf_conntrack_tuple_hash *h;
1189
1190 /* On boot, we can set this without any fancy locking. */
1191 if (!nf_conntrack_htable_size)
1192 return param_set_uint(val, kp);
1193
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001194 hashsize = simple_strtoul(val, NULL, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001195 if (!hashsize)
1196 return -EINVAL;
1197
Eric Dumazetea781f12009-03-25 21:05:46 +01001198 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001199 if (!hash)
1200 return -ENOMEM;
1201
1202 /* We have to rehahs for the new table anyway, so we also can
1203 * use a newrandom seed */
Hagen Paul Pfeiferaf07d242009-02-20 10:48:06 +01001204 get_random_bytes(&rnd, sizeof(rnd));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001205
Patrick McHardy76507f62008-01-31 04:38:38 -08001206 /* Lookups in the old hash might happen in parallel, which means we
1207 * might get false negatives during connection lookup. New connections
1208 * created because of a false negative won't make it into the hash
1209 * though since that required taking the lock.
1210 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001211 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001212 for (i = 0; i < nf_conntrack_htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001213 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1214 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1215 struct nf_conntrack_tuple_hash, hnnode);
1216 hlist_nulls_del_rcu(&h->hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001217 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
Eric Dumazetea781f12009-03-25 21:05:46 +01001218 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001219 }
1220 }
1221 old_size = nf_conntrack_htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001222 old_vmalloced = init_net.ct.hash_vmalloc;
1223 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001224
1225 nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001226 init_net.ct.hash_vmalloc = vmalloced;
1227 init_net.ct.hash = hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001228 nf_conntrack_hash_rnd = rnd;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001229 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001230
Patrick McHardyac565e52007-07-07 22:30:08 -07001231 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001232 return 0;
1233}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001234EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001235
Patrick McHardyfae718d2007-12-24 21:09:10 -08001236module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001237 &nf_conntrack_htable_size, 0600);
1238
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001239static int nf_conntrack_init_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001240{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001241 int max_factor = 8;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001242 int ret;
1243
1244 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001245 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001246 if (!nf_conntrack_htable_size) {
1247 nf_conntrack_htable_size
1248 = (((num_physpages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001249 / sizeof(struct hlist_head));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001250 if (num_physpages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001251 nf_conntrack_htable_size = 16384;
1252 if (nf_conntrack_htable_size < 32)
1253 nf_conntrack_htable_size = 32;
1254
1255 /* Use a max. factor of four by default to get the same max as
1256 * with the old struct list_heads. When a table size is given
1257 * we use the old value of 8 to avoid reducing the max.
1258 * entries. */
1259 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001260 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001261 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001262
1263 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1264 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1265 nf_conntrack_max);
1266
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001267 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1268 sizeof(struct nf_conn),
Eric Dumazetea781f12009-03-25 21:05:46 +01001269 0, SLAB_DESTROY_BY_RCU, NULL);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001270 if (!nf_conntrack_cachep) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001271 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001272 ret = -ENOMEM;
1273 goto err_cache;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001274 }
1275
Patrick McHardyac5357e2007-03-14 16:38:25 -07001276 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001277 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001278 goto err_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001279
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001280 ret = nf_conntrack_helper_init();
1281 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001282 goto err_helper;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001283
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001284 return 0;
1285
1286err_helper:
1287 nf_conntrack_proto_fini();
1288err_proto:
1289 kmem_cache_destroy(nf_conntrack_cachep);
1290err_cache:
1291 return ret;
1292}
1293
Eric Dumazet8cc20192009-06-22 14:13:55 +02001294/*
1295 * We need to use special "null" values, not used in hash table
1296 */
1297#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1298#define DYING_NULLS_VAL ((1<<30)+1)
1299
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001300static int nf_conntrack_init_net(struct net *net)
1301{
1302 int ret;
1303
1304 atomic_set(&net->ct.count, 0);
Eric Dumazet8cc20192009-06-22 14:13:55 +02001305 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, UNCONFIRMED_NULLS_VAL);
1306 INIT_HLIST_NULLS_HEAD(&net->ct.dying, DYING_NULLS_VAL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001307 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1308 if (!net->ct.stat) {
1309 ret = -ENOMEM;
1310 goto err_stat;
1311 }
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001312 net->ct.hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
Eric Dumazetea781f12009-03-25 21:05:46 +01001313 &net->ct.hash_vmalloc, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001314 if (!net->ct.hash) {
1315 ret = -ENOMEM;
1316 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1317 goto err_hash;
1318 }
1319 ret = nf_conntrack_expect_init(net);
1320 if (ret < 0)
1321 goto err_expect;
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001322 ret = nf_conntrack_acct_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001323 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001324 goto err_acct;
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001325 ret = nf_conntrack_ecache_init(net);
1326 if (ret < 0)
1327 goto err_ecache;
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001328
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001329 /* Set up fake conntrack:
1330 - to never be deleted, not in any hashes */
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +02001331#ifdef CONFIG_NET_NS
1332 nf_conntrack_untracked.ct_net = &init_net;
1333#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001334 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1335 /* - and look it like as a confirmed connection */
1336 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1337
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001338 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001339
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001340err_ecache:
1341 nf_conntrack_acct_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001342err_acct:
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001343 nf_conntrack_expect_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001344err_expect:
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001345 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
Patrick McHardyac565e52007-07-07 22:30:08 -07001346 nf_conntrack_htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001347err_hash:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001348 free_percpu(net->ct.stat);
1349err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001350 return ret;
1351}
1352
1353int nf_conntrack_init(struct net *net)
1354{
1355 int ret;
1356
1357 if (net_eq(net, &init_net)) {
1358 ret = nf_conntrack_init_init_net();
1359 if (ret < 0)
1360 goto out_init_net;
1361 }
1362 ret = nf_conntrack_init_net(net);
1363 if (ret < 0)
1364 goto out_net;
1365
1366 if (net_eq(net, &init_net)) {
1367 /* For use by REJECT target */
1368 rcu_assign_pointer(ip_ct_attach, nf_conntrack_attach);
1369 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
1370 }
1371 return 0;
1372
1373out_net:
1374 if (net_eq(net, &init_net))
1375 nf_conntrack_cleanup_init_net();
1376out_init_net:
1377 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001378}