blob: 091ff770eb7b3b71636cc51e3f5d056987a1df67 [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>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040017#include <linux/sched.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080018#include <linux/skbuff.h>
19#include <linux/proc_fs.h>
20#include <linux/vmalloc.h>
21#include <linux/stddef.h>
22#include <linux/slab.h>
23#include <linux/random.h>
24#include <linux/jhash.h>
25#include <linux/err.h>
26#include <linux/percpu.h>
27#include <linux/moduleparam.h>
28#include <linux/notifier.h>
29#include <linux/kernel.h>
30#include <linux/netdevice.h>
31#include <linux/socket.h>
Al Virod7fe0f22006-12-03 23:15:30 -050032#include <linux/mm.h>
Eric Dumazetea781f12009-03-25 21:05:46 +010033#include <linux/rculist_nulls.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080034
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080035#include <net/netfilter/nf_conntrack.h>
36#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010037#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010038#include <net/netfilter/nf_conntrack_expect.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080039#include <net/netfilter/nf_conntrack_helper.h>
40#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070041#include <net/netfilter/nf_conntrack_extend.h>
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -070042#include <net/netfilter/nf_conntrack_acct.h>
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020043#include <net/netfilter/nf_conntrack_ecache.h>
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070044#include <net/netfilter/nf_nat.h>
Patrick McHardye17b6662008-11-18 12:24:17 +010045#include <net/netfilter/nf_nat_core.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080046
Harald Weltedc808fe2006-03-20 17:56:32 -080047#define NF_CONNTRACK_VERSION "0.5.0"
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080048
Patrick McHardye17b6662008-11-18 12:24:17 +010049int (*nfnetlink_parse_nat_setup_hook)(struct nf_conn *ct,
50 enum nf_nat_manip_type manip,
Patrick McHardy39938322009-08-25 16:07:58 +020051 const struct nlattr *attr) __read_mostly;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070052EXPORT_SYMBOL_GPL(nfnetlink_parse_nat_setup_hook);
53
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080054DEFINE_SPINLOCK(nf_conntrack_lock);
Patrick McHardy13b18332006-12-02 22:11:25 -080055EXPORT_SYMBOL_GPL(nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080056
Martin Josefssone2b76062006-11-29 02:35:04 +010057unsigned int nf_conntrack_htable_size __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080058EXPORT_SYMBOL_GPL(nf_conntrack_htable_size);
59
Hagen Paul Pfeifere4780752009-02-20 10:47:09 +010060unsigned int nf_conntrack_max __read_mostly;
Patrick McHardya999e682006-11-29 02:35:20 +010061EXPORT_SYMBOL_GPL(nf_conntrack_max);
Patrick McHardy13b18332006-12-02 22:11:25 -080062
Martin Josefssone2b76062006-11-29 02:35:04 +010063struct nf_conn nf_conntrack_untracked __read_mostly;
Patrick McHardy13b18332006-12-02 22:11:25 -080064EXPORT_SYMBOL_GPL(nf_conntrack_untracked);
65
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -070066static struct kmem_cache *nf_conntrack_cachep __read_mostly;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010067
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080068static int nf_conntrack_hash_rnd_initted;
69static unsigned int nf_conntrack_hash_rnd;
70
71static u_int32_t __hash_conntrack(const struct nf_conntrack_tuple *tuple,
72 unsigned int size, unsigned int rnd)
73{
Patrick McHardy07949352008-01-31 04:40:52 -080074 unsigned int n;
75 u_int32_t h;
Sami Farin9b887902007-03-14 16:43:00 -070076
Patrick McHardy07949352008-01-31 04:40:52 -080077 /* The direction must be ignored, so we hash everything up to the
78 * destination ports (which is a multiple of 4) and treat the last
79 * three bytes manually.
80 */
81 n = (sizeof(tuple->src) + sizeof(tuple->dst.u3)) / sizeof(u32);
82 h = jhash2((u32 *)tuple, n,
83 rnd ^ (((__force __u16)tuple->dst.u.all << 16) |
84 tuple->dst.protonum));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080085
Patrick McHardy07949352008-01-31 04:40:52 -080086 return ((u64)h * size) >> 32;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080087}
88
89static inline u_int32_t hash_conntrack(const struct nf_conntrack_tuple *tuple)
90{
91 return __hash_conntrack(tuple, nf_conntrack_htable_size,
92 nf_conntrack_hash_rnd);
93}
94
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +020095bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080096nf_ct_get_tuple(const struct sk_buff *skb,
97 unsigned int nhoff,
98 unsigned int dataoff,
99 u_int16_t l3num,
100 u_int8_t protonum,
101 struct nf_conntrack_tuple *tuple,
102 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100103 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800104{
Philip Craig443a70d2008-04-29 03:35:10 -0700105 memset(tuple, 0, sizeof(*tuple));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800106
107 tuple->src.l3num = l3num;
108 if (l3proto->pkt_to_tuple(skb, nhoff, tuple) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200109 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800110
111 tuple->dst.protonum = protonum;
112 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
113
Martin Josefsson605dcad2006-11-29 02:35:06 +0100114 return l4proto->pkt_to_tuple(skb, dataoff, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800115}
Patrick McHardy13b18332006-12-02 22:11:25 -0800116EXPORT_SYMBOL_GPL(nf_ct_get_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800117
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200118bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
119 u_int16_t l3num, struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700120{
121 struct nf_conntrack_l3proto *l3proto;
122 struct nf_conntrack_l4proto *l4proto;
123 unsigned int protoff;
124 u_int8_t protonum;
125 int ret;
126
127 rcu_read_lock();
128
129 l3proto = __nf_ct_l3proto_find(l3num);
130 ret = l3proto->get_l4proto(skb, nhoff, &protoff, &protonum);
131 if (ret != NF_ACCEPT) {
132 rcu_read_unlock();
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200133 return false;
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700134 }
135
136 l4proto = __nf_ct_l4proto_find(l3num, protonum);
137
138 ret = nf_ct_get_tuple(skb, nhoff, protoff, l3num, protonum, tuple,
139 l3proto, l4proto);
140
141 rcu_read_unlock();
142 return ret;
143}
144EXPORT_SYMBOL_GPL(nf_ct_get_tuplepr);
145
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200146bool
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800147nf_ct_invert_tuple(struct nf_conntrack_tuple *inverse,
148 const struct nf_conntrack_tuple *orig,
149 const struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100150 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800151{
Philip Craig443a70d2008-04-29 03:35:10 -0700152 memset(inverse, 0, sizeof(*inverse));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800153
154 inverse->src.l3num = orig->src.l3num;
155 if (l3proto->invert_tuple(inverse, orig) == 0)
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200156 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800157
158 inverse->dst.dir = !orig->dst.dir;
159
160 inverse->dst.protonum = orig->dst.protonum;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100161 return l4proto->invert_tuple(inverse, orig);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800162}
Patrick McHardy13b18332006-12-02 22:11:25 -0800163EXPORT_SYMBOL_GPL(nf_ct_invert_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800164
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165static void
166clean_from_lists(struct nf_conn *ct)
167{
Patrick McHardy0d537782007-07-07 22:39:38 -0700168 pr_debug("clean_from_lists(%p)\n", ct);
Eric Dumazetea781f12009-03-25 21:05:46 +0100169 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
170 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800171
172 /* Destroy all pending expectations */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800173 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800174}
175
176static void
177destroy_conntrack(struct nf_conntrack *nfct)
178{
179 struct nf_conn *ct = (struct nf_conn *)nfct;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200180 struct net *net = nf_ct_net(ct);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100181 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800182
Patrick McHardy0d537782007-07-07 22:39:38 -0700183 pr_debug("destroy_conntrack(%p)\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800184 NF_CT_ASSERT(atomic_read(&nfct->use) == 0);
185 NF_CT_ASSERT(!timer_pending(&ct->timeout));
186
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800187 /* To make sure we don't get any weird locking issues here:
188 * destroy_conntrack() MUST NOT be called with a write lock
189 * to nf_conntrack_lock!!! -HW */
Patrick McHardy923f4902007-02-12 11:12:57 -0800190 rcu_read_lock();
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200191 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Martin Josefsson605dcad2006-11-29 02:35:06 +0100192 if (l4proto && l4proto->destroy)
193 l4proto->destroy(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800194
Patrick McHardy982d9a92007-02-12 11:14:11 -0800195 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800196
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800197 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800198 /* Expectations will have been removed in clean_from_lists,
199 * except TFTP can create an expectation on the first packet,
200 * before connection is in the list, so we need to clean here,
201 * too. */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800202 nf_ct_remove_expectations(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800203
204 /* We overload first tuple to link into unconfirmed list. */
205 if (!nf_ct_is_confirmed(ct)) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100206 BUG_ON(hlist_nulls_unhashed(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode));
207 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800208 }
209
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200210 NF_CT_STAT_INC(net, delete);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800211 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800212
213 if (ct->master)
214 nf_ct_put(ct->master);
215
Patrick McHardy0d537782007-07-07 22:39:38 -0700216 pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800217 nf_conntrack_free(ct);
218}
219
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200220void nf_ct_delete_from_lists(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800221{
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200222 struct net *net = nf_ct_net(ct);
Patrick McHardy5397e972007-05-19 14:23:52 -0700223
Pablo Neira Ayuso9858a3a2009-06-13 12:28:22 +0200224 nf_ct_helper_destroy(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800225 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800226 /* Inside lock so preempt is disabled on module removal path.
227 * Otherwise we can get spurious warnings. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200228 NF_CT_STAT_INC(net, delete_list);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800229 clean_from_lists(ct);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800230 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200231}
232EXPORT_SYMBOL_GPL(nf_ct_delete_from_lists);
233
234static void death_by_event(unsigned long ul_conntrack)
235{
236 struct nf_conn *ct = (void *)ul_conntrack;
237 struct net *net = nf_ct_net(ct);
238
239 if (nf_conntrack_event(IPCT_DESTROY, ct) < 0) {
240 /* bad luck, let's retry again */
241 ct->timeout.expires = jiffies +
242 (random32() % net->ct.sysctl_events_retry_timeout);
243 add_timer(&ct->timeout);
244 return;
245 }
246 /* we've got the event delivered, now it's dying */
247 set_bit(IPS_DYING_BIT, &ct->status);
248 spin_lock(&nf_conntrack_lock);
249 hlist_nulls_del(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
250 spin_unlock(&nf_conntrack_lock);
251 nf_ct_put(ct);
252}
253
254void nf_ct_insert_dying_list(struct nf_conn *ct)
255{
256 struct net *net = nf_ct_net(ct);
257
258 /* add this conntrack to the dying list */
259 spin_lock_bh(&nf_conntrack_lock);
260 hlist_nulls_add_head(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
261 &net->ct.dying);
262 spin_unlock_bh(&nf_conntrack_lock);
263 /* set a new timer to retry event delivery */
264 setup_timer(&ct->timeout, death_by_event, (unsigned long)ct);
265 ct->timeout.expires = jiffies +
266 (random32() % net->ct.sysctl_events_retry_timeout);
267 add_timer(&ct->timeout);
268}
269EXPORT_SYMBOL_GPL(nf_ct_insert_dying_list);
270
271static void death_by_timeout(unsigned long ul_conntrack)
272{
273 struct nf_conn *ct = (void *)ul_conntrack;
274
275 if (!test_bit(IPS_DYING_BIT, &ct->status) &&
276 unlikely(nf_conntrack_event(IPCT_DESTROY, ct) < 0)) {
277 /* destroy event was not delivered */
278 nf_ct_delete_from_lists(ct);
279 nf_ct_insert_dying_list(ct);
280 return;
281 }
282 set_bit(IPS_DYING_BIT, &ct->status);
283 nf_ct_delete_from_lists(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800284 nf_ct_put(ct);
285}
286
Eric Dumazetea781f12009-03-25 21:05:46 +0100287/*
288 * Warning :
289 * - Caller must take a reference on returned object
290 * and recheck nf_ct_tuple_equal(tuple, &h->tuple)
291 * OR
292 * - Caller must lock nf_conntrack_lock before calling this function
293 */
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800294struct nf_conntrack_tuple_hash *
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200295__nf_conntrack_find(struct net *net, const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800296{
297 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100298 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800299 unsigned int hash = hash_conntrack(tuple);
300
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800301 /* Disable BHs the entire time since we normally need to disable them
302 * at least once for the stats anyway.
303 */
304 local_bh_disable();
Eric Dumazetea781f12009-03-25 21:05:46 +0100305begin:
306 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardyba419af2008-01-31 04:39:23 -0800307 if (nf_ct_tuple_equal(tuple, &h->tuple)) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200308 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800309 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800310 return h;
311 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200312 NF_CT_STAT_INC(net, searched);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800313 }
Eric Dumazetea781f12009-03-25 21:05:46 +0100314 /*
315 * if the nulls value we got at the end of this lookup is
316 * not the expected one, we must restart lookup.
317 * We probably met an item that was moved to another chain.
318 */
319 if (get_nulls_value(n) != hash)
320 goto begin;
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800321 local_bh_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800322
323 return NULL;
324}
Patrick McHardy13b18332006-12-02 22:11:25 -0800325EXPORT_SYMBOL_GPL(__nf_conntrack_find);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800326
327/* Find a connection corresponding to a tuple. */
328struct nf_conntrack_tuple_hash *
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200329nf_conntrack_find_get(struct net *net, const struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800330{
331 struct nf_conntrack_tuple_hash *h;
Patrick McHardy76507f62008-01-31 04:38:38 -0800332 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800333
Patrick McHardy76507f62008-01-31 04:38:38 -0800334 rcu_read_lock();
Eric Dumazetea781f12009-03-25 21:05:46 +0100335begin:
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200336 h = __nf_conntrack_find(net, tuple);
Patrick McHardy76507f62008-01-31 04:38:38 -0800337 if (h) {
338 ct = nf_ct_tuplehash_to_ctrack(h);
Patrick McHardy8d8890b72009-06-22 14:14:41 +0200339 if (unlikely(nf_ct_is_dying(ct) ||
340 !atomic_inc_not_zero(&ct->ct_general.use)))
Patrick McHardy76507f62008-01-31 04:38:38 -0800341 h = NULL;
Eric Dumazetea781f12009-03-25 21:05:46 +0100342 else {
343 if (unlikely(!nf_ct_tuple_equal(tuple, &h->tuple))) {
344 nf_ct_put(ct);
345 goto begin;
346 }
347 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800348 }
349 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800350
351 return h;
352}
Patrick McHardy13b18332006-12-02 22:11:25 -0800353EXPORT_SYMBOL_GPL(nf_conntrack_find_get);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800354
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800355static void __nf_conntrack_hash_insert(struct nf_conn *ct,
356 unsigned int hash,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800357 unsigned int repl_hash)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800358{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200359 struct net *net = nf_ct_net(ct);
360
Eric Dumazetea781f12009-03-25 21:05:46 +0100361 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200362 &net->ct.hash[hash]);
Eric Dumazetea781f12009-03-25 21:05:46 +0100363 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_REPLY].hnnode,
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200364 &net->ct.hash[repl_hash]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800365}
366
367void nf_conntrack_hash_insert(struct nf_conn *ct)
368{
369 unsigned int hash, repl_hash;
370
371 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
372 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
373
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800374 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800375}
Patrick McHardy13b18332006-12-02 22:11:25 -0800376EXPORT_SYMBOL_GPL(nf_conntrack_hash_insert);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800377
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800378/* Confirm a connection given skb; places it in hash table */
379int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700380__nf_conntrack_confirm(struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800381{
382 unsigned int hash, repl_hash;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700383 struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800384 struct nf_conn *ct;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700385 struct nf_conn_help *help;
Eric Dumazetea781f12009-03-25 21:05:46 +0100386 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800387 enum ip_conntrack_info ctinfo;
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200388 struct net *net;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800389
Herbert Xu3db05fe2007-10-15 00:53:15 -0700390 ct = nf_ct_get(skb, &ctinfo);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200391 net = nf_ct_net(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800392
393 /* ipt_REJECT uses nf_conntrack_attach to attach related
394 ICMP/TCP RST packets in other direction. Actual packet
395 which created connection will be IP_CT_NEW or for an
396 expected connection, IP_CT_RELATED. */
397 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
398 return NF_ACCEPT;
399
400 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
401 repl_hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_REPLY].tuple);
402
403 /* We're not in hash table, and we refuse to set up related
404 connections for unconfirmed conns. But packet copies and
405 REJECT will give spurious warnings here. */
406 /* NF_CT_ASSERT(atomic_read(&ct->ct_general.use) == 1); */
407
408 /* No external references means noone else could have
409 confirmed us. */
410 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
Patrick McHardy0d537782007-07-07 22:39:38 -0700411 pr_debug("Confirming conntrack %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800412
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800413 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800414
415 /* See if there's one in the list already, including reverse:
416 NAT could have grabbed it without realizing, since we're
417 not in the hash. If there is, we lost race. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100418 hlist_nulls_for_each_entry(h, n, &net->ct.hash[hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700419 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
420 &h->tuple))
421 goto out;
Eric Dumazetea781f12009-03-25 21:05:46 +0100422 hlist_nulls_for_each_entry(h, n, &net->ct.hash[repl_hash], hnnode)
Patrick McHardydf0933d2006-09-20 11:57:53 -0700423 if (nf_ct_tuple_equal(&ct->tuplehash[IP_CT_DIR_REPLY].tuple,
424 &h->tuple))
425 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800426
Patrick McHardydf0933d2006-09-20 11:57:53 -0700427 /* Remove from unconfirmed list */
Eric Dumazetea781f12009-03-25 21:05:46 +0100428 hlist_nulls_del_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700429
Patrick McHardydf0933d2006-09-20 11:57:53 -0700430 /* Timer relative to confirmation time, not original
431 setting time, otherwise we'd get timer wrap in
432 weird delay cases. */
433 ct->timeout.expires += jiffies;
434 add_timer(&ct->timeout);
435 atomic_inc(&ct->ct_general.use);
436 set_bit(IPS_CONFIRMED_BIT, &ct->status);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200437
438 /* Since the lookup is lockless, hash insertion must be done after
439 * starting the timer and setting the CONFIRMED bit. The RCU barriers
440 * guarantee that no other CPU can find the conntrack before the above
441 * stores are visible.
442 */
443 __nf_conntrack_hash_insert(ct, hash, repl_hash);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200444 NF_CT_STAT_INC(net, insert);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800445 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy5c8ec912009-06-22 14:14:16 +0200446
Patrick McHardydf0933d2006-09-20 11:57:53 -0700447 help = nfct_help(ct);
448 if (help && help->helper)
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200449 nf_conntrack_event_cache(IPCT_HELPER, ct);
Pablo Neira Ayuso17e6e4e2009-06-02 20:08:46 +0200450
Patrick McHardydf0933d2006-09-20 11:57:53 -0700451 nf_conntrack_event_cache(master_ct(ct) ?
Alexey Dobriyana71996f2008-10-08 11:35:07 +0200452 IPCT_RELATED : IPCT_NEW, ct);
Patrick McHardydf0933d2006-09-20 11:57:53 -0700453 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800454
Patrick McHardydf0933d2006-09-20 11:57:53 -0700455out:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200456 NF_CT_STAT_INC(net, insert_failed);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800457 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800458 return NF_DROP;
459}
Patrick McHardy13b18332006-12-02 22:11:25 -0800460EXPORT_SYMBOL_GPL(__nf_conntrack_confirm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800461
462/* Returns true if a connection correspondings to the tuple (required
463 for NAT). */
464int
465nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
466 const struct nf_conn *ignored_conntrack)
467{
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200468 struct net *net = nf_ct_net(ignored_conntrack);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800469 struct nf_conntrack_tuple_hash *h;
Eric Dumazetea781f12009-03-25 21:05:46 +0100470 struct hlist_nulls_node *n;
Patrick McHardyba419af2008-01-31 04:39:23 -0800471 unsigned int hash = hash_conntrack(tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800472
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800473 /* Disable BHs the entire time since we need to disable them at
474 * least once for the stats anyway.
475 */
476 rcu_read_lock_bh();
Eric Dumazetea781f12009-03-25 21:05:46 +0100477 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash], hnnode) {
Patrick McHardyba419af2008-01-31 04:39:23 -0800478 if (nf_ct_tuplehash_to_ctrack(h) != ignored_conntrack &&
479 nf_ct_tuple_equal(tuple, &h->tuple)) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200480 NF_CT_STAT_INC(net, found);
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800481 rcu_read_unlock_bh();
Patrick McHardyba419af2008-01-31 04:39:23 -0800482 return 1;
483 }
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200484 NF_CT_STAT_INC(net, searched);
Patrick McHardyba419af2008-01-31 04:39:23 -0800485 }
Patrick McHardy4e29e9e2008-02-27 12:07:47 -0800486 rcu_read_unlock_bh();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800487
Patrick McHardyba419af2008-01-31 04:39:23 -0800488 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800489}
Patrick McHardy13b18332006-12-02 22:11:25 -0800490EXPORT_SYMBOL_GPL(nf_conntrack_tuple_taken);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800491
Patrick McHardy7ae77302007-07-07 22:37:38 -0700492#define NF_CT_EVICTION_RANGE 8
493
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800494/* There's a small race here where we may free a just-assured
495 connection. Too bad: we're in trouble anyway. */
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200496static noinline int early_drop(struct net *net, unsigned int hash)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800497{
Patrick McHardyf205c5e2007-07-07 22:28:14 -0700498 /* Use oldest entry, which is roughly LRU */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800499 struct nf_conntrack_tuple_hash *h;
Patrick McHardydf0933d2006-09-20 11:57:53 -0700500 struct nf_conn *ct = NULL, *tmp;
Eric Dumazetea781f12009-03-25 21:05:46 +0100501 struct hlist_nulls_node *n;
Patrick McHardy7ae77302007-07-07 22:37:38 -0700502 unsigned int i, cnt = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800503 int dropped = 0;
504
Patrick McHardy76507f62008-01-31 04:38:38 -0800505 rcu_read_lock();
Patrick McHardy7ae77302007-07-07 22:37:38 -0700506 for (i = 0; i < nf_conntrack_htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +0100507 hlist_nulls_for_each_entry_rcu(h, n, &net->ct.hash[hash],
508 hnnode) {
Patrick McHardy7ae77302007-07-07 22:37:38 -0700509 tmp = nf_ct_tuplehash_to_ctrack(h);
510 if (!test_bit(IPS_ASSURED_BIT, &tmp->status))
511 ct = tmp;
512 cnt++;
513 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800514
Changli Gao5ae27aa22009-11-05 14:51:31 +0100515 if (ct != NULL) {
516 if (likely(!nf_ct_is_dying(ct) &&
517 atomic_inc_not_zero(&ct->ct_general.use)))
518 break;
519 else
520 ct = NULL;
521 }
522
523 if (cnt >= NF_CT_EVICTION_RANGE)
Patrick McHardy7ae77302007-07-07 22:37:38 -0700524 break;
Changli Gao5ae27aa22009-11-05 14:51:31 +0100525
Patrick McHardy7ae77302007-07-07 22:37:38 -0700526 hash = (hash + 1) % nf_conntrack_htable_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800527 }
Patrick McHardy76507f62008-01-31 04:38:38 -0800528 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800529
530 if (!ct)
531 return dropped;
532
533 if (del_timer(&ct->timeout)) {
534 death_by_timeout((unsigned long)ct);
535 dropped = 1;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200536 NF_CT_STAT_INC_ATOMIC(net, early_drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800537 }
538 nf_ct_put(ct);
539 return dropped;
540}
541
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200542struct nf_conn *nf_conntrack_alloc(struct net *net,
543 const struct nf_conntrack_tuple *orig,
Pablo Neira Ayusob891c5a2008-07-08 02:35:55 -0700544 const struct nf_conntrack_tuple *repl,
545 gfp_t gfp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800546{
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000547 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800548
Harald Weltedc808fe2006-03-20 17:56:32 -0800549 if (unlikely(!nf_conntrack_hash_rnd_initted)) {
Hagen Paul Pfeiferaf07d242009-02-20 10:48:06 +0100550 get_random_bytes(&nf_conntrack_hash_rnd,
551 sizeof(nf_conntrack_hash_rnd));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800552 nf_conntrack_hash_rnd_initted = 1;
553 }
554
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700555 /* We don't want any race condition at early drop stage */
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200556 atomic_inc(&net->ct.count);
Pablo Neira Ayuso5251e2d2006-09-20 12:01:06 -0700557
Patrick McHardy76eb9462008-01-31 04:41:44 -0800558 if (nf_conntrack_max &&
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200559 unlikely(atomic_read(&net->ct.count) > nf_conntrack_max)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800560 unsigned int hash = hash_conntrack(orig);
Alexey Dobriyan400dad32008-10-08 11:35:03 +0200561 if (!early_drop(net, hash)) {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200562 atomic_dec(&net->ct.count);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800563 if (net_ratelimit())
564 printk(KERN_WARNING
565 "nf_conntrack: table full, dropping"
566 " packet.\n");
567 return ERR_PTR(-ENOMEM);
568 }
569 }
570
Eric Dumazet941297f2009-07-16 14:03:40 +0200571 /*
572 * Do not use kmem_cache_zalloc(), as this cache uses
573 * SLAB_DESTROY_BY_RCU.
574 */
575 ct = kmem_cache_alloc(nf_conntrack_cachep, gfp);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800576 if (ct == NULL) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700577 pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n");
Alexey Dobriyan49ac8712008-10-08 11:35:03 +0200578 atomic_dec(&net->ct.count);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -0700579 return ERR_PTR(-ENOMEM);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800580 }
Eric Dumazet941297f2009-07-16 14:03:40 +0200581 /*
582 * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next
583 * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged.
584 */
585 memset(&ct->tuplehash[IP_CT_DIR_MAX], 0,
586 sizeof(*ct) - offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX]));
Patrick McHardy440f0d52009-06-10 14:32:47 +0200587 spin_lock_init(&ct->lock);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800588 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig;
Eric Dumazet941297f2009-07-16 14:03:40 +0200589 ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800590 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl;
Eric Dumazet941297f2009-07-16 14:03:40 +0200591 ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev = NULL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800592 /* Don't set timer yet: wait for confirmation */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800593 setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct);
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200594#ifdef CONFIG_NET_NS
595 ct->ct_net = net;
596#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800597
Eric Dumazet941297f2009-07-16 14:03:40 +0200598 /*
599 * changes to lookup keys must be done before setting refcnt to 1
600 */
601 smp_wmb();
602 atomic_set(&ct->ct_general.use, 1);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800603 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800604}
Patrick McHardy13b18332006-12-02 22:11:25 -0800605EXPORT_SYMBOL_GPL(nf_conntrack_alloc);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800606
Patrick McHardyc88130b2008-01-31 04:42:11 -0800607void nf_conntrack_free(struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800608{
Eric Dumazet1d452092009-03-24 14:26:50 +0100609 struct net *net = nf_ct_net(ct);
610
Patrick McHardyceeff752008-06-11 17:51:10 -0700611 nf_ct_ext_destroy(ct);
Eric Dumazet1d452092009-03-24 14:26:50 +0100612 atomic_dec(&net->ct.count);
Eric Dumazetea781f12009-03-25 21:05:46 +0100613 nf_ct_ext_free(ct);
614 kmem_cache_free(nf_conntrack_cachep, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800615}
Patrick McHardy13b18332006-12-02 22:11:25 -0800616EXPORT_SYMBOL_GPL(nf_conntrack_free);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800617
618/* Allocate a new conntrack: we return -ENOMEM if classification
619 failed due to stress. Otherwise it really is unclassifiable. */
620static struct nf_conntrack_tuple_hash *
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200621init_conntrack(struct net *net,
622 const struct nf_conntrack_tuple *tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800623 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100624 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800625 struct sk_buff *skb,
626 unsigned int dataoff)
627{
Patrick McHardyc88130b2008-01-31 04:42:11 -0800628 struct nf_conn *ct;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700629 struct nf_conn_help *help;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800630 struct nf_conntrack_tuple repl_tuple;
631 struct nf_conntrack_expect *exp;
632
Martin Josefsson605dcad2006-11-29 02:35:06 +0100633 if (!nf_ct_invert_tuple(&repl_tuple, tuple, l3proto, l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700634 pr_debug("Can't invert tuple.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800635 return NULL;
636 }
637
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +0200638 ct = nf_conntrack_alloc(net, tuple, &repl_tuple, GFP_ATOMIC);
Julia Lawallcd7fcbf2009-01-12 00:06:08 +0000639 if (IS_ERR(ct)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700640 pr_debug("Can't allocate conntrack.\n");
Patrick McHardyc88130b2008-01-31 04:42:11 -0800641 return (struct nf_conntrack_tuple_hash *)ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800642 }
643
Patrick McHardyc88130b2008-01-31 04:42:11 -0800644 if (!l4proto->new(ct, skb, dataoff)) {
645 nf_conntrack_free(ct);
Patrick McHardy0d537782007-07-07 22:39:38 -0700646 pr_debug("init conntrack: can't track with proto module\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800647 return NULL;
648 }
649
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700650 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200651 nf_ct_ecache_ext_add(ct, GFP_ATOMIC);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700652
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800653 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200654 exp = nf_ct_find_expectation(net, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800655 if (exp) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700656 pr_debug("conntrack: expectation arrives ct=%p exp=%p\n",
Patrick McHardyc88130b2008-01-31 04:42:11 -0800657 ct, exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800658 /* Welcome, Mr. Bond. We've been expecting you... */
Patrick McHardyc88130b2008-01-31 04:42:11 -0800659 __set_bit(IPS_EXPECTED_BIT, &ct->status);
660 ct->master = exp->master;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700661 if (exp->helper) {
Patrick McHardyc88130b2008-01-31 04:42:11 -0800662 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700663 if (help)
664 rcu_assign_pointer(help->helper, exp->helper);
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700665 }
666
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800667#ifdef CONFIG_NF_CONNTRACK_MARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800668 ct->mark = exp->master->mark;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800669#endif
James Morris7c9728c2006-06-09 00:31:46 -0700670#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800671 ct->secmark = exp->master->secmark;
James Morris7c9728c2006-06-09 00:31:46 -0700672#endif
Patrick McHardyc88130b2008-01-31 04:42:11 -0800673 nf_conntrack_get(&ct->master->ct_general);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200674 NF_CT_STAT_INC(net, expect_new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800675 } else {
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100676 __nf_ct_try_assign_helper(ct, GFP_ATOMIC);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200677 NF_CT_STAT_INC(net, new);
Yasuyuki Kozakai22e74102006-11-27 10:25:59 -0800678 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800679
680 /* Overload tuple linked list to put us in unconfirmed list. */
Eric Dumazetea781f12009-03-25 21:05:46 +0100681 hlist_nulls_add_head_rcu(&ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode,
Alexey Dobriyan63c9a262008-10-08 11:35:04 +0200682 &net->ct.unconfirmed);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800683
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800684 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800685
686 if (exp) {
687 if (exp->expectfn)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800688 exp->expectfn(ct, exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700689 nf_ct_expect_put(exp);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800690 }
691
Patrick McHardyc88130b2008-01-31 04:42:11 -0800692 return &ct->tuplehash[IP_CT_DIR_ORIGINAL];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800693}
694
695/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
696static inline struct nf_conn *
Alexey Dobriyana702a652008-10-08 11:35:04 +0200697resolve_normal_ct(struct net *net,
698 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800699 unsigned int dataoff,
700 u_int16_t l3num,
701 u_int8_t protonum,
702 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100703 struct nf_conntrack_l4proto *l4proto,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800704 int *set_reply,
705 enum ip_conntrack_info *ctinfo)
706{
707 struct nf_conntrack_tuple tuple;
708 struct nf_conntrack_tuple_hash *h;
709 struct nf_conn *ct;
710
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300711 if (!nf_ct_get_tuple(skb, skb_network_offset(skb),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800712 dataoff, l3num, protonum, &tuple, l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100713 l4proto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700714 pr_debug("resolve_normal_ct: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800715 return NULL;
716 }
717
718 /* look for tuple match */
Alexey Dobriyana702a652008-10-08 11:35:04 +0200719 h = nf_conntrack_find_get(net, &tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800720 if (!h) {
Alexey Dobriyana702a652008-10-08 11:35:04 +0200721 h = init_conntrack(net, &tuple, l3proto, l4proto, skb, dataoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800722 if (!h)
723 return NULL;
724 if (IS_ERR(h))
725 return (void *)h;
726 }
727 ct = nf_ct_tuplehash_to_ctrack(h);
728
729 /* It exists; we have (non-exclusive) reference. */
730 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY) {
731 *ctinfo = IP_CT_ESTABLISHED + IP_CT_IS_REPLY;
732 /* Please set reply bit if this packet OK */
733 *set_reply = 1;
734 } else {
735 /* Once we've had two way comms, always ESTABLISHED. */
736 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700737 pr_debug("nf_conntrack_in: normal packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800738 *ctinfo = IP_CT_ESTABLISHED;
739 } else if (test_bit(IPS_EXPECTED_BIT, &ct->status)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700740 pr_debug("nf_conntrack_in: related packet for %p\n",
741 ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800742 *ctinfo = IP_CT_RELATED;
743 } else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700744 pr_debug("nf_conntrack_in: new packet for %p\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800745 *ctinfo = IP_CT_NEW;
746 }
747 *set_reply = 0;
748 }
749 skb->nfct = &ct->ct_general;
750 skb->nfctinfo = *ctinfo;
751 return ct;
752}
753
754unsigned int
Alexey Dobriyana702a652008-10-08 11:35:04 +0200755nf_conntrack_in(struct net *net, u_int8_t pf, unsigned int hooknum,
756 struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800757{
758 struct nf_conn *ct;
759 enum ip_conntrack_info ctinfo;
760 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100761 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800762 unsigned int dataoff;
763 u_int8_t protonum;
764 int set_reply = 0;
765 int ret;
766
767 /* Previously seen (loopback or untracked)? Ignore. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700768 if (skb->nfct) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200769 NF_CT_STAT_INC_ATOMIC(net, ignore);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800770 return NF_ACCEPT;
771 }
772
Patrick McHardy923f4902007-02-12 11:12:57 -0800773 /* rcu_read_lock()ed by nf_hook_slow */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200774 l3proto = __nf_ct_l3proto_find(pf);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700775 ret = l3proto->get_l4proto(skb, skb_network_offset(skb),
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700776 &dataoff, &protonum);
777 if (ret <= 0) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700778 pr_debug("not prepared to track yet or error occured\n");
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200779 NF_CT_STAT_INC_ATOMIC(net, error);
780 NF_CT_STAT_INC_ATOMIC(net, invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800781 return -ret;
782 }
783
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200784 l4proto = __nf_ct_l4proto_find(pf, protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800785
786 /* It may be an special packet, error, unclean...
787 * inverse of the return code tells to the netfilter
788 * core what to do with the packet. */
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200789 if (l4proto->error != NULL) {
790 ret = l4proto->error(net, skb, dataoff, &ctinfo, pf, hooknum);
791 if (ret <= 0) {
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200792 NF_CT_STAT_INC_ATOMIC(net, error);
793 NF_CT_STAT_INC_ATOMIC(net, invalid);
Alexey Dobriyan74c51a12008-10-08 11:35:05 +0200794 return -ret;
795 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800796 }
797
Alexey Dobriyana702a652008-10-08 11:35:04 +0200798 ct = resolve_normal_ct(net, skb, dataoff, pf, protonum,
799 l3proto, l4proto, &set_reply, &ctinfo);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800800 if (!ct) {
801 /* Not valid part of a connection */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200802 NF_CT_STAT_INC_ATOMIC(net, invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800803 return NF_ACCEPT;
804 }
805
806 if (IS_ERR(ct)) {
807 /* Too stressed to deal. */
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200808 NF_CT_STAT_INC_ATOMIC(net, drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800809 return NF_DROP;
810 }
811
Herbert Xu3db05fe2007-10-15 00:53:15 -0700812 NF_CT_ASSERT(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800813
Herbert Xu3db05fe2007-10-15 00:53:15 -0700814 ret = l4proto->packet(ct, skb, dataoff, ctinfo, pf, hooknum);
Christoph Paaschec8d5402009-03-16 15:51:29 +0100815 if (ret <= 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800816 /* Invalid: inverse of the return code tells
817 * the netfilter core what to do */
Patrick McHardy0d537782007-07-07 22:39:38 -0700818 pr_debug("nf_conntrack_in: Can't track with proto module\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -0700819 nf_conntrack_put(skb->nfct);
820 skb->nfct = NULL;
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200821 NF_CT_STAT_INC_ATOMIC(net, invalid);
Pablo Neira Ayuso7d1e0452009-02-24 14:48:01 +0100822 if (ret == -NF_DROP)
823 NF_CT_STAT_INC_ATOMIC(net, drop);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800824 return -ret;
825 }
826
827 if (set_reply && !test_and_set_bit(IPS_SEEN_REPLY_BIT, &ct->status))
Patrick McHardy858b31332010-02-03 13:48:53 +0100828 nf_conntrack_event_cache(IPCT_REPLY, ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800829
830 return ret;
831}
Patrick McHardy13b18332006-12-02 22:11:25 -0800832EXPORT_SYMBOL_GPL(nf_conntrack_in);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800833
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200834bool nf_ct_invert_tuplepr(struct nf_conntrack_tuple *inverse,
835 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800836{
Jan Engelhardt5f2b4c92008-04-14 11:15:53 +0200837 bool ret;
Patrick McHardy923f4902007-02-12 11:12:57 -0800838
839 rcu_read_lock();
840 ret = nf_ct_invert_tuple(inverse, orig,
841 __nf_ct_l3proto_find(orig->src.l3num),
842 __nf_ct_l4proto_find(orig->src.l3num,
843 orig->dst.protonum));
844 rcu_read_unlock();
845 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800846}
Patrick McHardy13b18332006-12-02 22:11:25 -0800847EXPORT_SYMBOL_GPL(nf_ct_invert_tuplepr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800848
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800849/* Alter reply tuple (maybe alter helper). This is for NAT, and is
850 implicitly racy: see __nf_conntrack_confirm */
851void nf_conntrack_alter_reply(struct nf_conn *ct,
852 const struct nf_conntrack_tuple *newreply)
853{
854 struct nf_conn_help *help = nfct_help(ct);
855
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800856 /* Should be unconfirmed, so not in hash table yet */
857 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
858
Patrick McHardy0d537782007-07-07 22:39:38 -0700859 pr_debug("Altering reply tuple of %p to ", ct);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200860 nf_ct_dump_tuple(newreply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800861
862 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
Patrick McHardyef1a5a52008-04-14 11:21:01 +0200863 if (ct->master || (help && !hlist_empty(&help->expectations)))
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800864 return;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -0700865
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800866 rcu_read_lock();
Pablo Neira Ayuso226c0c02008-11-18 11:54:05 +0100867 __nf_ct_try_assign_helper(ct, GFP_ATOMIC);
Patrick McHardyc52fbb42008-01-31 04:37:36 -0800868 rcu_read_unlock();
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800869}
Patrick McHardy13b18332006-12-02 22:11:25 -0800870EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800871
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800872/* Refresh conntrack for this many jiffies and do accounting if do_acct is 1 */
873void __nf_ct_refresh_acct(struct nf_conn *ct,
874 enum ip_conntrack_info ctinfo,
875 const struct sk_buff *skb,
876 unsigned long extra_jiffies,
877 int do_acct)
878{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800879 NF_CT_ASSERT(ct->timeout.data == (unsigned long)ct);
880 NF_CT_ASSERT(skb);
881
Eric Leblond997ae832006-05-29 18:24:20 -0700882 /* Only update if this is not a fixed timeout */
Patrick McHardy47d95042008-01-31 04:36:31 -0800883 if (test_bit(IPS_FIXED_TIMEOUT_BIT, &ct->status))
884 goto acct;
Eric Leblond997ae832006-05-29 18:24:20 -0700885
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800886 /* If not in hash table, timer will not be active yet */
887 if (!nf_ct_is_confirmed(ct)) {
888 ct->timeout.expires = extra_jiffies;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800889 } else {
Martin Josefssonbe00c8e2006-11-29 02:35:12 +0100890 unsigned long newtime = jiffies + extra_jiffies;
891
892 /* Only update the timeout if the new timeout is at least
893 HZ jiffies from the old timeout. Need del_timer for race
894 avoidance (may already be dying). */
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200895 if (newtime - ct->timeout.expires >= HZ)
896 mod_timer_pending(&ct->timeout, newtime);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800897 }
898
Patrick McHardy47d95042008-01-31 04:36:31 -0800899acct:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800900 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700901 struct nf_conn_counter *acct;
Martin Josefsson3ffd5ee2006-11-29 02:35:10 +0100902
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700903 acct = nf_conn_acct_find(ct);
904 if (acct) {
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200905 spin_lock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700906 acct[CTINFO2DIR(ctinfo)].packets++;
907 acct[CTINFO2DIR(ctinfo)].bytes +=
908 skb->len - skb_network_offset(skb);
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200909 spin_unlock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700910 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800911 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800912}
Patrick McHardy13b18332006-12-02 22:11:25 -0800913EXPORT_SYMBOL_GPL(__nf_ct_refresh_acct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800914
David S. Miller4c889492008-07-14 20:22:38 -0700915bool __nf_ct_kill_acct(struct nf_conn *ct,
916 enum ip_conntrack_info ctinfo,
917 const struct sk_buff *skb,
918 int do_acct)
Patrick McHardy51091762008-06-09 15:59:06 -0700919{
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700920 if (do_acct) {
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700921 struct nf_conn_counter *acct;
922
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700923 acct = nf_conn_acct_find(ct);
924 if (acct) {
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200925 spin_lock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700926 acct[CTINFO2DIR(ctinfo)].packets++;
927 acct[CTINFO2DIR(ctinfo)].bytes +=
928 skb->len - skb_network_offset(skb);
Patrick McHardy65cb9fd2009-06-13 12:21:49 +0200929 spin_unlock_bh(&ct->lock);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700930 }
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700931 }
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700932
David S. Miller4c889492008-07-14 20:22:38 -0700933 if (del_timer(&ct->timeout)) {
Patrick McHardy51091762008-06-09 15:59:06 -0700934 ct->timeout.function((unsigned long)ct);
David S. Miller4c889492008-07-14 20:22:38 -0700935 return true;
936 }
937 return false;
Patrick McHardy51091762008-06-09 15:59:06 -0700938}
Fabian Hugelshofer718d4ad2008-06-09 15:59:40 -0700939EXPORT_SYMBOL_GPL(__nf_ct_kill_acct);
Patrick McHardy51091762008-06-09 15:59:06 -0700940
Patrick McHardye281db5c2007-03-04 15:57:25 -0800941#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800942
943#include <linux/netfilter/nfnetlink.h>
944#include <linux/netfilter/nfnetlink_conntrack.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -0800945#include <linux/mutex.h>
946
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800947/* Generic function for tcp/udp/sctp/dccp and alike. This needs to be
948 * in ip_conntrack_core, since we don't want the protocols to autoload
949 * or depend on ctnetlink */
Patrick McHardyfdf70832007-09-28 14:37:41 -0700950int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800951 const struct nf_conntrack_tuple *tuple)
952{
Patrick McHardy77236b62007-12-17 22:29:45 -0800953 NLA_PUT_BE16(skb, CTA_PROTO_SRC_PORT, tuple->src.u.tcp.port);
954 NLA_PUT_BE16(skb, CTA_PROTO_DST_PORT, tuple->dst.u.tcp.port);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800955 return 0;
956
Patrick McHardydf6fb862007-09-28 14:37:03 -0700957nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800958 return -1;
959}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700960EXPORT_SYMBOL_GPL(nf_ct_port_tuple_to_nlattr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800961
Patrick McHardyf73e9242007-09-28 14:39:55 -0700962const struct nla_policy nf_ct_port_nla_policy[CTA_PROTO_MAX+1] = {
963 [CTA_PROTO_SRC_PORT] = { .type = NLA_U16 },
964 [CTA_PROTO_DST_PORT] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800965};
Patrick McHardyf73e9242007-09-28 14:39:55 -0700966EXPORT_SYMBOL_GPL(nf_ct_port_nla_policy);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800967
Patrick McHardyfdf70832007-09-28 14:37:41 -0700968int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800969 struct nf_conntrack_tuple *t)
970{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700971 if (!tb[CTA_PROTO_SRC_PORT] || !tb[CTA_PROTO_DST_PORT])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800972 return -EINVAL;
973
Patrick McHardy77236b62007-12-17 22:29:45 -0800974 t->src.u.tcp.port = nla_get_be16(tb[CTA_PROTO_SRC_PORT]);
975 t->dst.u.tcp.port = nla_get_be16(tb[CTA_PROTO_DST_PORT]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800976
977 return 0;
978}
Patrick McHardyfdf70832007-09-28 14:37:41 -0700979EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
Holger Eitzenberger5c0de292009-03-25 21:52:17 +0100980
981int nf_ct_port_nlattr_tuple_size(void)
982{
983 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
984}
985EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800986#endif
987
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800988/* Used by ipt_REJECT and ip6t_REJECT. */
Patrick McHardyb334aad2008-01-14 23:48:57 -0800989static void nf_conntrack_attach(struct sk_buff *nskb, struct sk_buff *skb)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800990{
991 struct nf_conn *ct;
992 enum ip_conntrack_info ctinfo;
993
994 /* This ICMP is in reverse direction to the packet which caused it */
995 ct = nf_ct_get(skb, &ctinfo);
996 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
997 ctinfo = IP_CT_RELATED + IP_CT_IS_REPLY;
998 else
999 ctinfo = IP_CT_RELATED;
1000
1001 /* Attach to new skbuff, and increment count */
1002 nskb->nfct = &ct->ct_general;
1003 nskb->nfctinfo = ctinfo;
1004 nf_conntrack_get(nskb->nfct);
1005}
1006
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001007/* Bring out ya dead! */
Patrick McHardydf0933d2006-09-20 11:57:53 -07001008static struct nf_conn *
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001009get_next_corpse(struct net *net, int (*iter)(struct nf_conn *i, void *data),
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001010 void *data, unsigned int *bucket)
1011{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001012 struct nf_conntrack_tuple_hash *h;
1013 struct nf_conn *ct;
Eric Dumazetea781f12009-03-25 21:05:46 +01001014 struct hlist_nulls_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001015
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001016 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001017 for (; *bucket < nf_conntrack_htable_size; (*bucket)++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001018 hlist_nulls_for_each_entry(h, n, &net->ct.hash[*bucket], hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001019 ct = nf_ct_tuplehash_to_ctrack(h);
1020 if (iter(ct, data))
1021 goto found;
1022 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001023 }
Eric Dumazetea781f12009-03-25 21:05:46 +01001024 hlist_nulls_for_each_entry(h, n, &net->ct.unconfirmed, hnnode) {
Patrick McHardydf0933d2006-09-20 11:57:53 -07001025 ct = nf_ct_tuplehash_to_ctrack(h);
1026 if (iter(ct, data))
Patrick McHardyec68e972007-03-04 15:57:01 -08001027 set_bit(IPS_DYING_BIT, &ct->status);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001028 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001029 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001030 return NULL;
1031found:
Martin Josefssonc073e3f2006-10-30 15:13:58 -08001032 atomic_inc(&ct->ct_general.use);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001033 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardydf0933d2006-09-20 11:57:53 -07001034 return ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001035}
1036
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001037void nf_ct_iterate_cleanup(struct net *net,
1038 int (*iter)(struct nf_conn *i, void *data),
1039 void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001040{
Patrick McHardydf0933d2006-09-20 11:57:53 -07001041 struct nf_conn *ct;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001042 unsigned int bucket = 0;
1043
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001044 while ((ct = get_next_corpse(net, iter, data, &bucket)) != NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001045 /* Time to push up daises... */
1046 if (del_timer(&ct->timeout))
1047 death_by_timeout((unsigned long)ct);
1048 /* ... else the timer will get him soon. */
1049
1050 nf_ct_put(ct);
1051 }
1052}
Patrick McHardy13b18332006-12-02 22:11:25 -08001053EXPORT_SYMBOL_GPL(nf_ct_iterate_cleanup);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001054
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001055struct __nf_ct_flush_report {
1056 u32 pid;
1057 int report;
1058};
1059
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001060static int kill_report(struct nf_conn *i, void *data)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001061{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001062 struct __nf_ct_flush_report *fr = (struct __nf_ct_flush_report *)data;
1063
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001064 /* If we fail to deliver the event, death_by_timeout() will retry */
1065 if (nf_conntrack_event_report(IPCT_DESTROY, i,
1066 fr->pid, fr->report) < 0)
1067 return 1;
1068
1069 /* Avoid the delivery of the destroy event in death_by_timeout(). */
1070 set_bit(IPS_DYING_BIT, &i->status);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001071 return 1;
1072}
1073
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001074static int kill_all(struct nf_conn *i, void *data)
1075{
1076 return 1;
1077}
1078
Eric Dumazetea781f12009-03-25 21:05:46 +01001079void nf_ct_free_hashtable(void *hash, int vmalloced, unsigned int size)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001080{
1081 if (vmalloced)
1082 vfree(hash);
1083 else
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001084 free_pages((unsigned long)hash,
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001085 get_order(sizeof(struct hlist_head) * size));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001086}
Patrick McHardyac565e52007-07-07 22:30:08 -07001087EXPORT_SYMBOL_GPL(nf_ct_free_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001088
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001089void nf_conntrack_flush_report(struct net *net, u32 pid, int report)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001090{
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +01001091 struct __nf_ct_flush_report fr = {
1092 .pid = pid,
1093 .report = report,
1094 };
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001095 nf_ct_iterate_cleanup(net, kill_report, &fr);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001096}
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001097EXPORT_SYMBOL_GPL(nf_conntrack_flush_report);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001098
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001099static void nf_ct_release_dying_list(struct net *net)
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001100{
1101 struct nf_conntrack_tuple_hash *h;
1102 struct nf_conn *ct;
1103 struct hlist_nulls_node *n;
1104
1105 spin_lock_bh(&nf_conntrack_lock);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001106 hlist_nulls_for_each_entry(h, n, &net->ct.dying, hnnode) {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +02001107 ct = nf_ct_tuplehash_to_ctrack(h);
1108 /* never fails to remove them, no listeners at this point */
1109 nf_ct_kill(ct);
1110 }
1111 spin_unlock_bh(&nf_conntrack_lock);
1112}
1113
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001114static void nf_conntrack_cleanup_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001115{
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001116 nf_conntrack_helper_fini();
1117 nf_conntrack_proto_fini();
1118 kmem_cache_destroy(nf_conntrack_cachep);
1119}
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001120
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001121static void nf_conntrack_cleanup_net(struct net *net)
1122{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001123 i_see_dead_people:
Pablo Neira Ayuso274d3832009-06-02 20:08:38 +02001124 nf_ct_iterate_cleanup(net, kill_all, NULL);
Alexey Dobriyanee254fa2009-08-31 14:23:15 +02001125 nf_ct_release_dying_list(net);
Alexey Dobriyan49ac8712008-10-08 11:35:03 +02001126 if (atomic_read(&net->ct.count) != 0) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001127 schedule();
1128 goto i_see_dead_people;
1129 }
Patrick McHardy66365682005-12-05 13:36:50 -08001130 /* wait until all references to nf_conntrack_untracked are dropped */
1131 while (atomic_read(&nf_conntrack_untracked.ct_general.use) > 1)
1132 schedule();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001133
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001134 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
Patrick McHardyac565e52007-07-07 22:30:08 -07001135 nf_conntrack_htable_size);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001136 nf_conntrack_ecache_fini(net);
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001137 nf_conntrack_acct_fini(net);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001138 nf_conntrack_expect_fini(net);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001139 free_percpu(net->ct.stat);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001140}
1141
1142/* Mishearing the voices in his head, our hero wonders how he's
1143 supposed to kill the mall. */
1144void nf_conntrack_cleanup(struct net *net)
1145{
1146 if (net_eq(net, &init_net))
1147 rcu_assign_pointer(ip_ct_attach, NULL);
1148
1149 /* This makes sure all current packets have passed through
1150 netfilter framework. Roll on, two-stage module
1151 delete... */
1152 synchronize_net();
1153
1154 nf_conntrack_cleanup_net(net);
1155
1156 if (net_eq(net, &init_net)) {
1157 rcu_assign_pointer(nf_ct_destroy, NULL);
1158 nf_conntrack_cleanup_init_net();
1159 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001160}
1161
Eric Dumazetea781f12009-03-25 21:05:46 +01001162void *nf_ct_alloc_hashtable(unsigned int *sizep, int *vmalloced, int nulls)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001163{
Eric Dumazetea781f12009-03-25 21:05:46 +01001164 struct hlist_nulls_head *hash;
1165 unsigned int nr_slots, i;
1166 size_t sz;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001167
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001168 *vmalloced = 0;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001169
Eric Dumazetea781f12009-03-25 21:05:46 +01001170 BUILD_BUG_ON(sizeof(struct hlist_nulls_head) != sizeof(struct hlist_head));
1171 nr_slots = *sizep = roundup(*sizep, PAGE_SIZE / sizeof(struct hlist_nulls_head));
1172 sz = nr_slots * sizeof(struct hlist_nulls_head);
1173 hash = (void *)__get_free_pages(GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO,
1174 get_order(sz));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001175 if (!hash) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001176 *vmalloced = 1;
1177 printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n");
Eric Dumazetea781f12009-03-25 21:05:46 +01001178 hash = __vmalloc(sz, GFP_KERNEL | __GFP_ZERO, PAGE_KERNEL);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001179 }
1180
Eric Dumazetea781f12009-03-25 21:05:46 +01001181 if (hash && nulls)
1182 for (i = 0; i < nr_slots; i++)
1183 INIT_HLIST_NULLS_HEAD(&hash[i], i);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001184
1185 return hash;
1186}
Patrick McHardyac565e52007-07-07 22:30:08 -07001187EXPORT_SYMBOL_GPL(nf_ct_alloc_hashtable);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001188
Patrick McHardyfae718d2007-12-24 21:09:10 -08001189int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001190{
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001191 int i, bucket, vmalloced, old_vmalloced;
1192 unsigned int hashsize, old_size;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001193 int rnd;
Eric Dumazetea781f12009-03-25 21:05:46 +01001194 struct hlist_nulls_head *hash, *old_hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001195 struct nf_conntrack_tuple_hash *h;
1196
1197 /* On boot, we can set this without any fancy locking. */
1198 if (!nf_conntrack_htable_size)
1199 return param_set_uint(val, kp);
1200
Stephen Hemminger96eb24d2008-01-31 04:07:29 -08001201 hashsize = simple_strtoul(val, NULL, 0);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001202 if (!hashsize)
1203 return -EINVAL;
1204
Eric Dumazetea781f12009-03-25 21:05:46 +01001205 hash = nf_ct_alloc_hashtable(&hashsize, &vmalloced, 1);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001206 if (!hash)
1207 return -ENOMEM;
1208
1209 /* We have to rehahs for the new table anyway, so we also can
1210 * use a newrandom seed */
Hagen Paul Pfeiferaf07d242009-02-20 10:48:06 +01001211 get_random_bytes(&rnd, sizeof(rnd));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001212
Patrick McHardy76507f62008-01-31 04:38:38 -08001213 /* Lookups in the old hash might happen in parallel, which means we
1214 * might get false negatives during connection lookup. New connections
1215 * created because of a false negative won't make it into the hash
1216 * though since that required taking the lock.
1217 */
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001218 spin_lock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001219 for (i = 0; i < nf_conntrack_htable_size; i++) {
Eric Dumazetea781f12009-03-25 21:05:46 +01001220 while (!hlist_nulls_empty(&init_net.ct.hash[i])) {
1221 h = hlist_nulls_entry(init_net.ct.hash[i].first,
1222 struct nf_conntrack_tuple_hash, hnnode);
1223 hlist_nulls_del_rcu(&h->hnnode);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001224 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
Eric Dumazetea781f12009-03-25 21:05:46 +01001225 hlist_nulls_add_head_rcu(&h->hnnode, &hash[bucket]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001226 }
1227 }
1228 old_size = nf_conntrack_htable_size;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001229 old_vmalloced = init_net.ct.hash_vmalloc;
1230 old_hash = init_net.ct.hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001231
1232 nf_conntrack_htable_size = hashsize;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001233 init_net.ct.hash_vmalloc = vmalloced;
1234 init_net.ct.hash = hash;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001235 nf_conntrack_hash_rnd = rnd;
Patrick McHardyf8ba1af2008-01-31 04:38:58 -08001236 spin_unlock_bh(&nf_conntrack_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001237
Patrick McHardyac565e52007-07-07 22:30:08 -07001238 nf_ct_free_hashtable(old_hash, old_vmalloced, old_size);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001239 return 0;
1240}
Patrick McHardyfae718d2007-12-24 21:09:10 -08001241EXPORT_SYMBOL_GPL(nf_conntrack_set_hashsize);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001242
Patrick McHardyfae718d2007-12-24 21:09:10 -08001243module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001244 &nf_conntrack_htable_size, 0600);
1245
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001246static int nf_conntrack_init_init_net(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001247{
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001248 int max_factor = 8;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001249 int ret;
1250
1251 /* Idea from tcp.c: use 1/16384 of memory. On i386: 32MB
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001252 * machine has 512 buckets. >= 1GB machines have 16384 buckets. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001253 if (!nf_conntrack_htable_size) {
1254 nf_conntrack_htable_size
Jan Beulich44813742009-09-21 17:03:05 -07001255 = (((totalram_pages << PAGE_SHIFT) / 16384)
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001256 / sizeof(struct hlist_head));
Jan Beulich44813742009-09-21 17:03:05 -07001257 if (totalram_pages > (1024 * 1024 * 1024 / PAGE_SIZE))
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001258 nf_conntrack_htable_size = 16384;
1259 if (nf_conntrack_htable_size < 32)
1260 nf_conntrack_htable_size = 32;
1261
1262 /* Use a max. factor of four by default to get the same max as
1263 * with the old struct list_heads. When a table size is given
1264 * we use the old value of 8 to avoid reducing the max.
1265 * entries. */
1266 max_factor = 4;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001267 }
Patrick McHardyf205c5e2007-07-07 22:28:14 -07001268 nf_conntrack_max = max_factor * nf_conntrack_htable_size;
Patrick McHardy8e5105a2007-07-07 22:27:33 -07001269
1270 printk("nf_conntrack version %s (%u buckets, %d max)\n",
1271 NF_CONNTRACK_VERSION, nf_conntrack_htable_size,
1272 nf_conntrack_max);
1273
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001274 nf_conntrack_cachep = kmem_cache_create("nf_conntrack",
1275 sizeof(struct nf_conn),
Eric Dumazetea781f12009-03-25 21:05:46 +01001276 0, SLAB_DESTROY_BY_RCU, NULL);
Yasuyuki Kozakaidacd2a12007-07-07 22:25:51 -07001277 if (!nf_conntrack_cachep) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001278 printk(KERN_ERR "Unable to create nf_conn slab cache\n");
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001279 ret = -ENOMEM;
1280 goto err_cache;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001281 }
1282
Patrick McHardyac5357e2007-03-14 16:38:25 -07001283 ret = nf_conntrack_proto_init();
Patrick McHardy933a41e2006-11-29 02:35:18 +01001284 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001285 goto err_proto;
Patrick McHardy933a41e2006-11-29 02:35:18 +01001286
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001287 ret = nf_conntrack_helper_init();
1288 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001289 goto err_helper;
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07001290
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001291 return 0;
1292
1293err_helper:
1294 nf_conntrack_proto_fini();
1295err_proto:
1296 kmem_cache_destroy(nf_conntrack_cachep);
1297err_cache:
1298 return ret;
1299}
1300
Eric Dumazet8cc20192009-06-22 14:13:55 +02001301/*
1302 * We need to use special "null" values, not used in hash table
1303 */
1304#define UNCONFIRMED_NULLS_VAL ((1<<30)+0)
1305#define DYING_NULLS_VAL ((1<<30)+1)
1306
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001307static int nf_conntrack_init_net(struct net *net)
1308{
1309 int ret;
1310
1311 atomic_set(&net->ct.count, 0);
Eric Dumazet8cc20192009-06-22 14:13:55 +02001312 INIT_HLIST_NULLS_HEAD(&net->ct.unconfirmed, UNCONFIRMED_NULLS_VAL);
1313 INIT_HLIST_NULLS_HEAD(&net->ct.dying, DYING_NULLS_VAL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001314 net->ct.stat = alloc_percpu(struct ip_conntrack_stat);
1315 if (!net->ct.stat) {
1316 ret = -ENOMEM;
1317 goto err_stat;
1318 }
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001319 net->ct.hash = nf_ct_alloc_hashtable(&nf_conntrack_htable_size,
Eric Dumazetea781f12009-03-25 21:05:46 +01001320 &net->ct.hash_vmalloc, 1);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001321 if (!net->ct.hash) {
1322 ret = -ENOMEM;
1323 printk(KERN_ERR "Unable to create nf_conntrack_hash\n");
1324 goto err_hash;
1325 }
1326 ret = nf_conntrack_expect_init(net);
1327 if (ret < 0)
1328 goto err_expect;
Alexey Dobriyand716a4d2008-10-08 11:35:09 +02001329 ret = nf_conntrack_acct_init(net);
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -07001330 if (ret < 0)
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001331 goto err_acct;
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001332 ret = nf_conntrack_ecache_init(net);
1333 if (ret < 0)
1334 goto err_ecache;
Yasuyuki Kozakai7d3cdc62006-02-15 15:22:21 -08001335
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001336 /* Set up fake conntrack:
1337 - to never be deleted, not in any hashes */
Alexey Dobriyan5a1fb392008-10-08 11:35:02 +02001338#ifdef CONFIG_NET_NS
1339 nf_conntrack_untracked.ct_net = &init_net;
1340#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001341 atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
1342 /* - and look it like as a confirmed connection */
1343 set_bit(IPS_CONFIRMED_BIT, &nf_conntrack_untracked.status);
1344
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001345 return 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001346
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +02001347err_ecache:
1348 nf_conntrack_acct_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001349err_acct:
Alexey Dobriyan9b03f382008-10-08 11:35:03 +02001350 nf_conntrack_expect_fini(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001351err_expect:
Alexey Dobriyan400dad32008-10-08 11:35:03 +02001352 nf_ct_free_hashtable(net->ct.hash, net->ct.hash_vmalloc,
Patrick McHardyac565e52007-07-07 22:30:08 -07001353 nf_conntrack_htable_size);
Alexey Dobriyan6058fa62008-10-08 11:35:07 +02001354err_hash:
Alexey Dobriyan0d55af82008-10-08 11:35:07 +02001355 free_percpu(net->ct.stat);
1356err_stat:
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001357 return ret;
1358}
1359
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -08001360s16 (*nf_ct_nat_offset)(const struct nf_conn *ct,
1361 enum ip_conntrack_dir dir,
1362 u32 seq);
1363EXPORT_SYMBOL_GPL(nf_ct_nat_offset);
1364
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001365int nf_conntrack_init(struct net *net)
1366{
1367 int ret;
1368
1369 if (net_eq(net, &init_net)) {
1370 ret = nf_conntrack_init_init_net();
1371 if (ret < 0)
1372 goto out_init_net;
1373 }
1374 ret = nf_conntrack_init_net(net);
1375 if (ret < 0)
1376 goto out_net;
1377
1378 if (net_eq(net, &init_net)) {
1379 /* For use by REJECT target */
1380 rcu_assign_pointer(ip_ct_attach, nf_conntrack_attach);
1381 rcu_assign_pointer(nf_ct_destroy, destroy_conntrack);
Jozsef Kadlecsikf9dd09c2009-11-06 00:43:42 -08001382
1383 /* Howto get NAT offsets */
1384 rcu_assign_pointer(nf_ct_nat_offset, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +02001385 }
1386 return 0;
1387
1388out_net:
1389 if (net_eq(net, &init_net))
1390 nf_conntrack_cleanup_init_net();
1391out_init_net:
1392 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001393}