blob: 37a703bc3b8ee0556fedbeccb6a89a72ce39750c [file] [log] [blame]
Martin Josefsson77ab9cf2006-11-29 02:34:58 +01001/* Expectation handling for nf_conntrack. */
2
3/* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
5 * (C) 2003,2004 USAGI/WIDE Project <http://www.linux-ipv6.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/types.h>
13#include <linux/netfilter.h>
14#include <linux/skbuff.h>
15#include <linux/proc_fs.h>
16#include <linux/seq_file.h>
17#include <linux/stddef.h>
18#include <linux/slab.h>
19#include <linux/err.h>
20#include <linux/percpu.h>
21#include <linux/kernel.h>
Patrick McHardya71c0852007-07-07 22:33:47 -070022#include <linux/jhash.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020023#include <net/net_namespace.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010024
25#include <net/netfilter/nf_conntrack.h>
26#include <net/netfilter/nf_conntrack_core.h>
27#include <net/netfilter/nf_conntrack_expect.h>
28#include <net/netfilter/nf_conntrack_helper.h>
29#include <net/netfilter/nf_conntrack_tuple.h>
30
Patrick McHardya71c0852007-07-07 22:33:47 -070031unsigned int nf_ct_expect_hsize __read_mostly;
32EXPORT_SYMBOL_GPL(nf_ct_expect_hsize);
33
34static unsigned int nf_ct_expect_hash_rnd __read_mostly;
Patrick McHardyf264a7d2007-07-07 22:36:24 -070035unsigned int nf_ct_expect_max __read_mostly;
Patrick McHardya71c0852007-07-07 22:33:47 -070036static int nf_ct_expect_hash_rnd_initted __read_mostly;
Patrick McHardya71c0852007-07-07 22:33:47 -070037
Patrick McHardye9c1b082007-07-07 22:32:53 -070038static struct kmem_cache *nf_ct_expect_cachep __read_mostly;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010039
40/* nf_conntrack_expect helper functions */
41void nf_ct_unlink_expect(struct nf_conntrack_expect *exp)
42{
43 struct nf_conn_help *master_help = nfct_help(exp->master);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020044 struct net *net = nf_ct_exp_net(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010045
46 NF_CT_ASSERT(master_help);
47 NF_CT_ASSERT(!timer_pending(&exp->timeout));
48
Patrick McHardy7d0742d2008-01-31 04:38:19 -080049 hlist_del_rcu(&exp->hnode);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020050 net->ct.expect_count--;
Patrick McHardya71c0852007-07-07 22:33:47 -070051
Patrick McHardyb5605802007-07-07 22:35:56 -070052 hlist_del(&exp->lnode);
Patrick McHardy6002f2662008-03-25 20:09:15 -070053 master_help->expecting[exp->class]--;
Patrick McHardy68236452007-07-07 22:30:49 -070054 nf_ct_expect_put(exp);
Patrick McHardyb5605802007-07-07 22:35:56 -070055
Alexey Dobriyan0d55af82008-10-08 11:35:07 +020056 NF_CT_STAT_INC(net, expect_delete);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010057}
Patrick McHardy13b18332006-12-02 22:11:25 -080058EXPORT_SYMBOL_GPL(nf_ct_unlink_expect);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010059
Patrick McHardy68236452007-07-07 22:30:49 -070060static void nf_ct_expectation_timed_out(unsigned long ul_expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010061{
62 struct nf_conntrack_expect *exp = (void *)ul_expect;
63
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080064 spin_lock_bh(&nf_conntrack_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010065 nf_ct_unlink_expect(exp);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080066 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -070067 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010068}
69
Patrick McHardya71c0852007-07-07 22:33:47 -070070static unsigned int nf_ct_expect_dst_hash(const struct nf_conntrack_tuple *tuple)
71{
Patrick McHardy34498822007-12-17 22:45:52 -080072 unsigned int hash;
73
Patrick McHardya71c0852007-07-07 22:33:47 -070074 if (unlikely(!nf_ct_expect_hash_rnd_initted)) {
75 get_random_bytes(&nf_ct_expect_hash_rnd, 4);
76 nf_ct_expect_hash_rnd_initted = 1;
77 }
78
Patrick McHardy34498822007-12-17 22:45:52 -080079 hash = jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
Patrick McHardya71c0852007-07-07 22:33:47 -070080 (((tuple->dst.protonum ^ tuple->src.l3num) << 16) |
Patrick McHardy34498822007-12-17 22:45:52 -080081 (__force __u16)tuple->dst.u.all) ^ nf_ct_expect_hash_rnd);
82 return ((u64)hash * nf_ct_expect_hsize) >> 32;
Patrick McHardya71c0852007-07-07 22:33:47 -070083}
84
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010085struct nf_conntrack_expect *
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020086__nf_ct_expect_find(struct net *net, const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010087{
88 struct nf_conntrack_expect *i;
Patrick McHardya71c0852007-07-07 22:33:47 -070089 struct hlist_node *n;
90 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010091
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020092 if (!net->ct.expect_count)
Patrick McHardya71c0852007-07-07 22:33:47 -070093 return NULL;
94
95 h = nf_ct_expect_dst_hash(tuple);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020096 hlist_for_each_entry_rcu(i, n, &net->ct.expect_hash[h], hnode) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010097 if (nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask))
98 return i;
99 }
100 return NULL;
101}
Patrick McHardy68236452007-07-07 22:30:49 -0700102EXPORT_SYMBOL_GPL(__nf_ct_expect_find);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100103
104/* Just find a expectation corresponding to a tuple. */
105struct nf_conntrack_expect *
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200106nf_ct_expect_find_get(struct net *net, const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100107{
108 struct nf_conntrack_expect *i;
109
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800110 rcu_read_lock();
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200111 i = __nf_ct_expect_find(net, tuple);
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800112 if (i && !atomic_inc_not_zero(&i->use))
113 i = NULL;
114 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100115
116 return i;
117}
Patrick McHardy68236452007-07-07 22:30:49 -0700118EXPORT_SYMBOL_GPL(nf_ct_expect_find_get);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100119
120/* If an expectation for this connection is found, it gets delete from
121 * global list then returned. */
122struct nf_conntrack_expect *
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200123nf_ct_find_expectation(struct net *net, const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100124{
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700125 struct nf_conntrack_expect *i, *exp = NULL;
126 struct hlist_node *n;
127 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100128
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200129 if (!net->ct.expect_count)
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700130 return NULL;
131
132 h = nf_ct_expect_dst_hash(tuple);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200133 hlist_for_each_entry(i, n, &net->ct.expect_hash[h], hnode) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700134 if (!(i->flags & NF_CT_EXPECT_INACTIVE) &&
135 nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask)) {
136 exp = i;
137 break;
138 }
139 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800140 if (!exp)
141 return NULL;
142
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100143 /* If master is not in hash table yet (ie. packet hasn't left
144 this machine yet), how can other end know about expected?
145 Hence these are not the droids you are looking for (if
146 master ct never got confirmed, we'd hold a reference to it
147 and weird things would happen to future packets). */
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800148 if (!nf_ct_is_confirmed(exp->master))
149 return NULL;
150
151 if (exp->flags & NF_CT_EXPECT_PERMANENT) {
152 atomic_inc(&exp->use);
153 return exp;
154 } else if (del_timer(&exp->timeout)) {
155 nf_ct_unlink_expect(exp);
156 return exp;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100157 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800158
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100159 return NULL;
160}
161
162/* delete all expectations for this conntrack */
163void nf_ct_remove_expectations(struct nf_conn *ct)
164{
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100165 struct nf_conn_help *help = nfct_help(ct);
Patrick McHardyb5605802007-07-07 22:35:56 -0700166 struct nf_conntrack_expect *exp;
167 struct hlist_node *n, *next;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100168
169 /* Optimization: most connection never expect any others. */
Patrick McHardy6002f2662008-03-25 20:09:15 -0700170 if (!help)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100171 return;
172
Patrick McHardyb5605802007-07-07 22:35:56 -0700173 hlist_for_each_entry_safe(exp, n, next, &help->expectations, lnode) {
174 if (del_timer(&exp->timeout)) {
175 nf_ct_unlink_expect(exp);
176 nf_ct_expect_put(exp);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800177 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100178 }
179}
Patrick McHardy13b18332006-12-02 22:11:25 -0800180EXPORT_SYMBOL_GPL(nf_ct_remove_expectations);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100181
182/* Would two expected things clash? */
183static inline int expect_clash(const struct nf_conntrack_expect *a,
184 const struct nf_conntrack_expect *b)
185{
186 /* Part covered by intersection of masks must be unequal,
187 otherwise they clash */
Patrick McHardyd4156e82007-07-07 22:31:32 -0700188 struct nf_conntrack_tuple_mask intersect_mask;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100189 int count;
190
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100191 intersect_mask.src.u.all = a->mask.src.u.all & b->mask.src.u.all;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100192
193 for (count = 0; count < NF_CT_TUPLE_L3SIZE; count++){
194 intersect_mask.src.u3.all[count] =
195 a->mask.src.u3.all[count] & b->mask.src.u3.all[count];
196 }
197
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100198 return nf_ct_tuple_mask_cmp(&a->tuple, &b->tuple, &intersect_mask);
199}
200
201static inline int expect_matches(const struct nf_conntrack_expect *a,
202 const struct nf_conntrack_expect *b)
203{
Patrick McHardy6002f2662008-03-25 20:09:15 -0700204 return a->master == b->master && a->class == b->class
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100205 && nf_ct_tuple_equal(&a->tuple, &b->tuple)
Patrick McHardyd4156e82007-07-07 22:31:32 -0700206 && nf_ct_tuple_mask_equal(&a->mask, &b->mask);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100207}
208
209/* Generally a bad idea to call this: could have matched already. */
Patrick McHardy68236452007-07-07 22:30:49 -0700210void nf_ct_unexpect_related(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100211{
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800212 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy4e1d4e62007-07-07 22:32:03 -0700213 if (del_timer(&exp->timeout)) {
214 nf_ct_unlink_expect(exp);
215 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100216 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800217 spin_unlock_bh(&nf_conntrack_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100218}
Patrick McHardy68236452007-07-07 22:30:49 -0700219EXPORT_SYMBOL_GPL(nf_ct_unexpect_related);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100220
221/* We don't increase the master conntrack refcount for non-fulfilled
222 * conntracks. During the conntrack destruction, the expectations are
223 * always killed before the conntrack itself */
Patrick McHardy68236452007-07-07 22:30:49 -0700224struct nf_conntrack_expect *nf_ct_expect_alloc(struct nf_conn *me)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100225{
226 struct nf_conntrack_expect *new;
227
Patrick McHardy68236452007-07-07 22:30:49 -0700228 new = kmem_cache_alloc(nf_ct_expect_cachep, GFP_ATOMIC);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100229 if (!new)
230 return NULL;
231
232 new->master = me;
233 atomic_set(&new->use, 1);
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800234 INIT_RCU_HEAD(&new->rcu);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100235 return new;
236}
Patrick McHardy68236452007-07-07 22:30:49 -0700237EXPORT_SYMBOL_GPL(nf_ct_expect_alloc);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100238
Patrick McHardy6002f2662008-03-25 20:09:15 -0700239void nf_ct_expect_init(struct nf_conntrack_expect *exp, unsigned int class,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200240 u_int8_t family,
Patrick McHardy1d9d7522008-03-25 20:07:58 -0700241 const union nf_inet_addr *saddr,
242 const union nf_inet_addr *daddr,
243 u_int8_t proto, const __be16 *src, const __be16 *dst)
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800244{
245 int len;
246
247 if (family == AF_INET)
248 len = 4;
249 else
250 len = 16;
251
252 exp->flags = 0;
Patrick McHardy6002f2662008-03-25 20:09:15 -0700253 exp->class = class;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800254 exp->expectfn = NULL;
255 exp->helper = NULL;
256 exp->tuple.src.l3num = family;
257 exp->tuple.dst.protonum = proto;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800258
259 if (saddr) {
260 memcpy(&exp->tuple.src.u3, saddr, len);
261 if (sizeof(exp->tuple.src.u3) > len)
262 /* address needs to be cleared for nf_ct_tuple_equal */
263 memset((void *)&exp->tuple.src.u3 + len, 0x00,
264 sizeof(exp->tuple.src.u3) - len);
265 memset(&exp->mask.src.u3, 0xFF, len);
266 if (sizeof(exp->mask.src.u3) > len)
267 memset((void *)&exp->mask.src.u3 + len, 0x00,
268 sizeof(exp->mask.src.u3) - len);
269 } else {
270 memset(&exp->tuple.src.u3, 0x00, sizeof(exp->tuple.src.u3));
271 memset(&exp->mask.src.u3, 0x00, sizeof(exp->mask.src.u3));
272 }
273
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800274 if (src) {
Al Viroa34c4582007-07-26 17:33:19 +0100275 exp->tuple.src.u.all = *src;
276 exp->mask.src.u.all = htons(0xFFFF);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800277 } else {
278 exp->tuple.src.u.all = 0;
279 exp->mask.src.u.all = 0;
280 }
281
Patrick McHardyd4156e82007-07-07 22:31:32 -0700282 memcpy(&exp->tuple.dst.u3, daddr, len);
283 if (sizeof(exp->tuple.dst.u3) > len)
284 /* address needs to be cleared for nf_ct_tuple_equal */
285 memset((void *)&exp->tuple.dst.u3 + len, 0x00,
286 sizeof(exp->tuple.dst.u3) - len);
287
Al Viroa34c4582007-07-26 17:33:19 +0100288 exp->tuple.dst.u.all = *dst;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800289}
Patrick McHardy68236452007-07-07 22:30:49 -0700290EXPORT_SYMBOL_GPL(nf_ct_expect_init);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800291
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800292static void nf_ct_expect_free_rcu(struct rcu_head *head)
293{
294 struct nf_conntrack_expect *exp;
295
296 exp = container_of(head, struct nf_conntrack_expect, rcu);
297 kmem_cache_free(nf_ct_expect_cachep, exp);
298}
299
Patrick McHardy68236452007-07-07 22:30:49 -0700300void nf_ct_expect_put(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100301{
302 if (atomic_dec_and_test(&exp->use))
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800303 call_rcu(&exp->rcu, nf_ct_expect_free_rcu);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100304}
Patrick McHardy68236452007-07-07 22:30:49 -0700305EXPORT_SYMBOL_GPL(nf_ct_expect_put);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100306
Patrick McHardy68236452007-07-07 22:30:49 -0700307static void nf_ct_expect_insert(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100308{
309 struct nf_conn_help *master_help = nfct_help(exp->master);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200310 struct net *net = nf_ct_exp_net(exp);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700311 const struct nf_conntrack_expect_policy *p;
Patrick McHardya71c0852007-07-07 22:33:47 -0700312 unsigned int h = nf_ct_expect_dst_hash(&exp->tuple);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100313
314 atomic_inc(&exp->use);
Patrick McHardyb5605802007-07-07 22:35:56 -0700315
316 hlist_add_head(&exp->lnode, &master_help->expectations);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700317 master_help->expecting[exp->class]++;
Patrick McHardya71c0852007-07-07 22:33:47 -0700318
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200319 hlist_add_head_rcu(&exp->hnode, &net->ct.expect_hash[h]);
320 net->ct.expect_count++;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100321
Patrick McHardy68236452007-07-07 22:30:49 -0700322 setup_timer(&exp->timeout, nf_ct_expectation_timed_out,
323 (unsigned long)exp);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700324 p = &master_help->helper->expect_policy[exp->class];
325 exp->timeout.expires = jiffies + p->timeout * HZ;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100326 add_timer(&exp->timeout);
327
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100328 atomic_inc(&exp->use);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200329 NF_CT_STAT_INC(net, expect_create);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100330}
331
332/* Race with expectations being used means we could have none to find; OK. */
Patrick McHardy6002f2662008-03-25 20:09:15 -0700333static void evict_oldest_expect(struct nf_conn *master,
334 struct nf_conntrack_expect *new)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100335{
Patrick McHardyb5605802007-07-07 22:35:56 -0700336 struct nf_conn_help *master_help = nfct_help(master);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700337 struct nf_conntrack_expect *exp, *last = NULL;
Patrick McHardyb5605802007-07-07 22:35:56 -0700338 struct hlist_node *n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100339
Patrick McHardy6002f2662008-03-25 20:09:15 -0700340 hlist_for_each_entry(exp, n, &master_help->expectations, lnode) {
341 if (exp->class == new->class)
342 last = exp;
343 }
Patrick McHardyb5605802007-07-07 22:35:56 -0700344
Patrick McHardy6002f2662008-03-25 20:09:15 -0700345 if (last && del_timer(&last->timeout)) {
346 nf_ct_unlink_expect(last);
347 nf_ct_expect_put(last);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100348 }
349}
350
351static inline int refresh_timer(struct nf_conntrack_expect *i)
352{
353 struct nf_conn_help *master_help = nfct_help(i->master);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700354 const struct nf_conntrack_expect_policy *p;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100355
356 if (!del_timer(&i->timeout))
357 return 0;
358
Patrick McHardy6002f2662008-03-25 20:09:15 -0700359 p = &master_help->helper->expect_policy[i->class];
360 i->timeout.expires = jiffies + p->timeout * HZ;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100361 add_timer(&i->timeout);
362 return 1;
363}
364
Patrick McHardy68236452007-07-07 22:30:49 -0700365int nf_ct_expect_related(struct nf_conntrack_expect *expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100366{
Patrick McHardy6002f2662008-03-25 20:09:15 -0700367 const struct nf_conntrack_expect_policy *p;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100368 struct nf_conntrack_expect *i;
369 struct nf_conn *master = expect->master;
370 struct nf_conn_help *master_help = nfct_help(master);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200371 struct net *net = nf_ct_exp_net(expect);
Patrick McHardya71c0852007-07-07 22:33:47 -0700372 struct hlist_node *n;
373 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100374 int ret;
375
376 NF_CT_ASSERT(master_help);
377
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800378 spin_lock_bh(&nf_conntrack_lock);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700379 if (!master_help->helper) {
380 ret = -ESHUTDOWN;
381 goto out;
382 }
Patrick McHardya71c0852007-07-07 22:33:47 -0700383 h = nf_ct_expect_dst_hash(&expect->tuple);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200384 hlist_for_each_entry(i, n, &net->ct.expect_hash[h], hnode) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100385 if (expect_matches(i, expect)) {
386 /* Refresh timer: if it's dying, ignore.. */
387 if (refresh_timer(i)) {
388 ret = 0;
389 goto out;
390 }
391 } else if (expect_clash(i, expect)) {
392 ret = -EBUSY;
393 goto out;
394 }
395 }
396 /* Will be over limit? */
Patrick McHardy6002f2662008-03-25 20:09:15 -0700397 p = &master_help->helper->expect_policy[expect->class];
398 if (p->max_expected &&
399 master_help->expecting[expect->class] >= p->max_expected) {
400 evict_oldest_expect(master, expect);
401 if (master_help->expecting[expect->class] >= p->max_expected) {
402 ret = -EMFILE;
403 goto out;
404 }
405 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100406
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200407 if (net->ct.expect_count >= nf_ct_expect_max) {
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700408 if (net_ratelimit())
409 printk(KERN_WARNING
Alexey Dobriyan3d89e9c2008-03-10 16:43:10 -0700410 "nf_conntrack: expectation table full\n");
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700411 ret = -EMFILE;
412 goto out;
413 }
414
Patrick McHardy68236452007-07-07 22:30:49 -0700415 nf_ct_expect_insert(expect);
416 nf_ct_expect_event(IPEXP_NEW, expect);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100417 ret = 0;
418out:
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800419 spin_unlock_bh(&nf_conntrack_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100420 return ret;
421}
Patrick McHardy68236452007-07-07 22:30:49 -0700422EXPORT_SYMBOL_GPL(nf_ct_expect_related);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100423
424#ifdef CONFIG_PROC_FS
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700425struct ct_expect_iter_state {
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200426 struct seq_net_private p;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700427 unsigned int bucket;
428};
429
430static struct hlist_node *ct_expect_get_first(struct seq_file *seq)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100431{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200432 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700433 struct ct_expect_iter_state *st = seq->private;
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800434 struct hlist_node *n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100435
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700436 for (st->bucket = 0; st->bucket < nf_ct_expect_hsize; st->bucket++) {
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200437 n = rcu_dereference(net->ct.expect_hash[st->bucket].first);
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800438 if (n)
439 return n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100440 }
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700441 return NULL;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100442}
443
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700444static struct hlist_node *ct_expect_get_next(struct seq_file *seq,
445 struct hlist_node *head)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100446{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200447 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700448 struct ct_expect_iter_state *st = seq->private;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100449
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800450 head = rcu_dereference(head->next);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700451 while (head == NULL) {
452 if (++st->bucket >= nf_ct_expect_hsize)
453 return NULL;
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200454 head = rcu_dereference(net->ct.expect_hash[st->bucket].first);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700455 }
456 return head;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100457}
458
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700459static struct hlist_node *ct_expect_get_idx(struct seq_file *seq, loff_t pos)
460{
461 struct hlist_node *head = ct_expect_get_first(seq);
462
463 if (head)
464 while (pos && (head = ct_expect_get_next(seq, head)))
465 pos--;
466 return pos ? NULL : head;
467}
468
469static void *exp_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800470 __acquires(RCU)
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700471{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800472 rcu_read_lock();
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700473 return ct_expect_get_idx(seq, *pos);
474}
475
476static void *exp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
477{
478 (*pos)++;
479 return ct_expect_get_next(seq, v);
480}
481
482static void exp_seq_stop(struct seq_file *seq, void *v)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800483 __releases(RCU)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100484{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800485 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100486}
487
488static int exp_seq_show(struct seq_file *s, void *v)
489{
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700490 struct nf_conntrack_expect *expect;
491 struct hlist_node *n = v;
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700492 char *delim = "";
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700493
494 expect = hlist_entry(n, struct nf_conntrack_expect, hnode);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100495
496 if (expect->timeout.function)
497 seq_printf(s, "%ld ", timer_pending(&expect->timeout)
498 ? (long)(expect->timeout.expires - jiffies)/HZ : 0);
499 else
500 seq_printf(s, "- ");
501 seq_printf(s, "l3proto = %u proto=%u ",
502 expect->tuple.src.l3num,
503 expect->tuple.dst.protonum);
504 print_tuple(s, &expect->tuple,
505 __nf_ct_l3proto_find(expect->tuple.src.l3num),
Martin Josefsson605dcad2006-11-29 02:35:06 +0100506 __nf_ct_l4proto_find(expect->tuple.src.l3num,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100507 expect->tuple.dst.protonum));
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700508
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700509 if (expect->flags & NF_CT_EXPECT_PERMANENT) {
510 seq_printf(s, "PERMANENT");
511 delim = ",";
512 }
513 if (expect->flags & NF_CT_EXPECT_INACTIVE)
514 seq_printf(s, "%sINACTIVE", delim);
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700515
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100516 return seq_putc(s, '\n');
517}
518
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700519static const struct seq_operations exp_seq_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100520 .start = exp_seq_start,
521 .next = exp_seq_next,
522 .stop = exp_seq_stop,
523 .show = exp_seq_show
524};
525
526static int exp_open(struct inode *inode, struct file *file)
527{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200528 return seq_open_net(inode, file, &exp_seq_ops,
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700529 sizeof(struct ct_expect_iter_state));
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100530}
531
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700532static const struct file_operations exp_file_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100533 .owner = THIS_MODULE,
534 .open = exp_open,
535 .read = seq_read,
536 .llseek = seq_lseek,
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200537 .release = seq_release_net,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100538};
539#endif /* CONFIG_PROC_FS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700540
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200541static int exp_proc_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700542{
543#ifdef CONFIG_PROC_FS
544 struct proc_dir_entry *proc;
545
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200546 proc = proc_net_fops_create(net, "nf_conntrack_expect", 0440, &exp_file_ops);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700547 if (!proc)
548 return -ENOMEM;
549#endif /* CONFIG_PROC_FS */
550 return 0;
551}
552
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200553static void exp_proc_remove(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700554{
555#ifdef CONFIG_PROC_FS
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200556 proc_net_remove(net, "nf_conntrack_expect");
Patrick McHardye9c1b082007-07-07 22:32:53 -0700557#endif /* CONFIG_PROC_FS */
558}
559
Patrick McHardya71c0852007-07-07 22:33:47 -0700560module_param_named(expect_hashsize, nf_ct_expect_hsize, uint, 0600);
561
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200562int nf_conntrack_expect_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700563{
Patrick McHardya71c0852007-07-07 22:33:47 -0700564 int err = -ENOMEM;
565
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200566 if (net_eq(net, &init_net)) {
567 if (!nf_ct_expect_hsize) {
568 nf_ct_expect_hsize = nf_conntrack_htable_size / 256;
569 if (!nf_ct_expect_hsize)
570 nf_ct_expect_hsize = 1;
571 }
572 nf_ct_expect_max = nf_ct_expect_hsize * 4;
Patrick McHardya71c0852007-07-07 22:33:47 -0700573 }
574
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200575 net->ct.expect_count = 0;
576 net->ct.expect_hash = nf_ct_alloc_hashtable(&nf_ct_expect_hsize,
577 &net->ct.expect_vmalloc);
578 if (net->ct.expect_hash == NULL)
Patrick McHardya71c0852007-07-07 22:33:47 -0700579 goto err1;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700580
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200581 if (net_eq(net, &init_net)) {
582 nf_ct_expect_cachep = kmem_cache_create("nf_conntrack_expect",
Patrick McHardye9c1b082007-07-07 22:32:53 -0700583 sizeof(struct nf_conntrack_expect),
Paul Mundt20c2df82007-07-20 10:11:58 +0900584 0, 0, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200585 if (!nf_ct_expect_cachep)
586 goto err2;
587 }
Patrick McHardye9c1b082007-07-07 22:32:53 -0700588
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200589 err = exp_proc_init(net);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700590 if (err < 0)
Patrick McHardya71c0852007-07-07 22:33:47 -0700591 goto err3;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700592
593 return 0;
594
Patrick McHardya71c0852007-07-07 22:33:47 -0700595err3:
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200596 if (net_eq(net, &init_net))
597 kmem_cache_destroy(nf_ct_expect_cachep);
Alexey Dobriyan12293bf2008-05-29 03:19:37 -0700598err2:
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200599 nf_ct_free_hashtable(net->ct.expect_hash, net->ct.expect_vmalloc,
Patrick McHardya71c0852007-07-07 22:33:47 -0700600 nf_ct_expect_hsize);
Patrick McHardya71c0852007-07-07 22:33:47 -0700601err1:
Patrick McHardye9c1b082007-07-07 22:32:53 -0700602 return err;
603}
604
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200605void nf_conntrack_expect_fini(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700606{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200607 exp_proc_remove(net);
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200608 if (net_eq(net, &init_net))
609 kmem_cache_destroy(nf_ct_expect_cachep);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200610 nf_ct_free_hashtable(net->ct.expect_hash, net->ct.expect_vmalloc,
Patrick McHardya71c0852007-07-07 22:33:47 -0700611 nf_ct_expect_hsize);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700612}