blob: 0696f87aaef12c8987c0825d4685434265b4ada2 [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>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010023
24#include <net/netfilter/nf_conntrack.h>
25#include <net/netfilter/nf_conntrack_core.h>
26#include <net/netfilter/nf_conntrack_expect.h>
27#include <net/netfilter/nf_conntrack_helper.h>
28#include <net/netfilter/nf_conntrack_tuple.h>
29
Patrick McHardy68236452007-07-07 22:30:49 -070030LIST_HEAD(nf_ct_expect_list);
31EXPORT_SYMBOL_GPL(nf_ct_expect_list);
Patrick McHardy13b18332006-12-02 22:11:25 -080032
Patrick McHardya71c0852007-07-07 22:33:47 -070033struct hlist_head *nf_ct_expect_hash __read_mostly;
34EXPORT_SYMBOL_GPL(nf_ct_expect_hash);
35
36unsigned int nf_ct_expect_hsize __read_mostly;
37EXPORT_SYMBOL_GPL(nf_ct_expect_hsize);
38
39static unsigned int nf_ct_expect_hash_rnd __read_mostly;
40static unsigned int nf_ct_expect_count;
41static int nf_ct_expect_hash_rnd_initted __read_mostly;
42static int nf_ct_expect_vmalloc;
43
Patrick McHardye9c1b082007-07-07 22:32:53 -070044static struct kmem_cache *nf_ct_expect_cachep __read_mostly;
Patrick McHardy68236452007-07-07 22:30:49 -070045static unsigned int nf_ct_expect_next_id;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010046
47/* nf_conntrack_expect helper functions */
48void nf_ct_unlink_expect(struct nf_conntrack_expect *exp)
49{
50 struct nf_conn_help *master_help = nfct_help(exp->master);
51
52 NF_CT_ASSERT(master_help);
53 NF_CT_ASSERT(!timer_pending(&exp->timeout));
54
55 list_del(&exp->list);
Patrick McHardya71c0852007-07-07 22:33:47 -070056 hlist_del(&exp->hnode);
57 nf_ct_expect_count--;
58
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010059 NF_CT_STAT_INC(expect_delete);
60 master_help->expecting--;
Patrick McHardy68236452007-07-07 22:30:49 -070061 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010062}
Patrick McHardy13b18332006-12-02 22:11:25 -080063EXPORT_SYMBOL_GPL(nf_ct_unlink_expect);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010064
Patrick McHardy68236452007-07-07 22:30:49 -070065static void nf_ct_expectation_timed_out(unsigned long ul_expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010066{
67 struct nf_conntrack_expect *exp = (void *)ul_expect;
68
69 write_lock_bh(&nf_conntrack_lock);
70 nf_ct_unlink_expect(exp);
71 write_unlock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -070072 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010073}
74
Patrick McHardya71c0852007-07-07 22:33:47 -070075static unsigned int nf_ct_expect_dst_hash(const struct nf_conntrack_tuple *tuple)
76{
77 if (unlikely(!nf_ct_expect_hash_rnd_initted)) {
78 get_random_bytes(&nf_ct_expect_hash_rnd, 4);
79 nf_ct_expect_hash_rnd_initted = 1;
80 }
81
82 return jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
83 (((tuple->dst.protonum ^ tuple->src.l3num) << 16) |
84 tuple->dst.u.all) ^ nf_ct_expect_hash_rnd) %
85 nf_ct_expect_hsize;
86}
87
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010088struct nf_conntrack_expect *
Patrick McHardy68236452007-07-07 22:30:49 -070089__nf_ct_expect_find(const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010090{
91 struct nf_conntrack_expect *i;
Patrick McHardya71c0852007-07-07 22:33:47 -070092 struct hlist_node *n;
93 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010094
Patrick McHardya71c0852007-07-07 22:33:47 -070095 if (!nf_ct_expect_count)
96 return NULL;
97
98 h = nf_ct_expect_dst_hash(tuple);
99 hlist_for_each_entry(i, n, &nf_ct_expect_hash[h], hnode) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100100 if (nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask))
101 return i;
102 }
103 return NULL;
104}
Patrick McHardy68236452007-07-07 22:30:49 -0700105EXPORT_SYMBOL_GPL(__nf_ct_expect_find);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100106
107/* Just find a expectation corresponding to a tuple. */
108struct nf_conntrack_expect *
Patrick McHardy68236452007-07-07 22:30:49 -0700109nf_ct_expect_find_get(const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100110{
111 struct nf_conntrack_expect *i;
112
113 read_lock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -0700114 i = __nf_ct_expect_find(tuple);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100115 if (i)
116 atomic_inc(&i->use);
117 read_unlock_bh(&nf_conntrack_lock);
118
119 return i;
120}
Patrick McHardy68236452007-07-07 22:30:49 -0700121EXPORT_SYMBOL_GPL(nf_ct_expect_find_get);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100122
123/* If an expectation for this connection is found, it gets delete from
124 * global list then returned. */
125struct nf_conntrack_expect *
Patrick McHardy68236452007-07-07 22:30:49 -0700126nf_ct_find_expectation(const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100127{
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800128 struct nf_conntrack_expect *exp;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100129
Patrick McHardy68236452007-07-07 22:30:49 -0700130 exp = __nf_ct_expect_find(tuple);
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800131 if (!exp)
132 return NULL;
133
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100134 /* If master is not in hash table yet (ie. packet hasn't left
135 this machine yet), how can other end know about expected?
136 Hence these are not the droids you are looking for (if
137 master ct never got confirmed, we'd hold a reference to it
138 and weird things would happen to future packets). */
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800139 if (!nf_ct_is_confirmed(exp->master))
140 return NULL;
141
142 if (exp->flags & NF_CT_EXPECT_PERMANENT) {
143 atomic_inc(&exp->use);
144 return exp;
145 } else if (del_timer(&exp->timeout)) {
146 nf_ct_unlink_expect(exp);
147 return exp;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100148 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800149
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100150 return NULL;
151}
152
153/* delete all expectations for this conntrack */
154void nf_ct_remove_expectations(struct nf_conn *ct)
155{
156 struct nf_conntrack_expect *i, *tmp;
157 struct nf_conn_help *help = nfct_help(ct);
158
159 /* Optimization: most connection never expect any others. */
160 if (!help || help->expecting == 0)
161 return;
162
Patrick McHardy68236452007-07-07 22:30:49 -0700163 list_for_each_entry_safe(i, tmp, &nf_ct_expect_list, list) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100164 if (i->master == ct && del_timer(&i->timeout)) {
165 nf_ct_unlink_expect(i);
Patrick McHardy68236452007-07-07 22:30:49 -0700166 nf_ct_expect_put(i);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800167 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100168 }
169}
Patrick McHardy13b18332006-12-02 22:11:25 -0800170EXPORT_SYMBOL_GPL(nf_ct_remove_expectations);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100171
172/* Would two expected things clash? */
173static inline int expect_clash(const struct nf_conntrack_expect *a,
174 const struct nf_conntrack_expect *b)
175{
176 /* Part covered by intersection of masks must be unequal,
177 otherwise they clash */
Patrick McHardyd4156e82007-07-07 22:31:32 -0700178 struct nf_conntrack_tuple_mask intersect_mask;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100179 int count;
180
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100181 intersect_mask.src.u.all = a->mask.src.u.all & b->mask.src.u.all;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100182
183 for (count = 0; count < NF_CT_TUPLE_L3SIZE; count++){
184 intersect_mask.src.u3.all[count] =
185 a->mask.src.u3.all[count] & b->mask.src.u3.all[count];
186 }
187
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100188 return nf_ct_tuple_mask_cmp(&a->tuple, &b->tuple, &intersect_mask);
189}
190
191static inline int expect_matches(const struct nf_conntrack_expect *a,
192 const struct nf_conntrack_expect *b)
193{
194 return a->master == b->master
195 && nf_ct_tuple_equal(&a->tuple, &b->tuple)
Patrick McHardyd4156e82007-07-07 22:31:32 -0700196 && nf_ct_tuple_mask_equal(&a->mask, &b->mask);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100197}
198
199/* Generally a bad idea to call this: could have matched already. */
Patrick McHardy68236452007-07-07 22:30:49 -0700200void nf_ct_unexpect_related(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100201{
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100202 write_lock_bh(&nf_conntrack_lock);
Patrick McHardy4e1d4e62007-07-07 22:32:03 -0700203 if (del_timer(&exp->timeout)) {
204 nf_ct_unlink_expect(exp);
205 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100206 }
207 write_unlock_bh(&nf_conntrack_lock);
208}
Patrick McHardy68236452007-07-07 22:30:49 -0700209EXPORT_SYMBOL_GPL(nf_ct_unexpect_related);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100210
211/* We don't increase the master conntrack refcount for non-fulfilled
212 * conntracks. During the conntrack destruction, the expectations are
213 * always killed before the conntrack itself */
Patrick McHardy68236452007-07-07 22:30:49 -0700214struct nf_conntrack_expect *nf_ct_expect_alloc(struct nf_conn *me)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100215{
216 struct nf_conntrack_expect *new;
217
Patrick McHardy68236452007-07-07 22:30:49 -0700218 new = kmem_cache_alloc(nf_ct_expect_cachep, GFP_ATOMIC);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100219 if (!new)
220 return NULL;
221
222 new->master = me;
223 atomic_set(&new->use, 1);
224 return new;
225}
Patrick McHardy68236452007-07-07 22:30:49 -0700226EXPORT_SYMBOL_GPL(nf_ct_expect_alloc);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100227
Patrick McHardy68236452007-07-07 22:30:49 -0700228void nf_ct_expect_init(struct nf_conntrack_expect *exp, int family,
229 union nf_conntrack_address *saddr,
230 union nf_conntrack_address *daddr,
231 u_int8_t proto, __be16 *src, __be16 *dst)
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800232{
233 int len;
234
235 if (family == AF_INET)
236 len = 4;
237 else
238 len = 16;
239
240 exp->flags = 0;
241 exp->expectfn = NULL;
242 exp->helper = NULL;
243 exp->tuple.src.l3num = family;
244 exp->tuple.dst.protonum = proto;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800245
246 if (saddr) {
247 memcpy(&exp->tuple.src.u3, saddr, len);
248 if (sizeof(exp->tuple.src.u3) > len)
249 /* address needs to be cleared for nf_ct_tuple_equal */
250 memset((void *)&exp->tuple.src.u3 + len, 0x00,
251 sizeof(exp->tuple.src.u3) - len);
252 memset(&exp->mask.src.u3, 0xFF, len);
253 if (sizeof(exp->mask.src.u3) > len)
254 memset((void *)&exp->mask.src.u3 + len, 0x00,
255 sizeof(exp->mask.src.u3) - len);
256 } else {
257 memset(&exp->tuple.src.u3, 0x00, sizeof(exp->tuple.src.u3));
258 memset(&exp->mask.src.u3, 0x00, sizeof(exp->mask.src.u3));
259 }
260
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800261 if (src) {
262 exp->tuple.src.u.all = (__force u16)*src;
263 exp->mask.src.u.all = 0xFFFF;
264 } else {
265 exp->tuple.src.u.all = 0;
266 exp->mask.src.u.all = 0;
267 }
268
Patrick McHardyd4156e82007-07-07 22:31:32 -0700269 memcpy(&exp->tuple.dst.u3, daddr, len);
270 if (sizeof(exp->tuple.dst.u3) > len)
271 /* address needs to be cleared for nf_ct_tuple_equal */
272 memset((void *)&exp->tuple.dst.u3 + len, 0x00,
273 sizeof(exp->tuple.dst.u3) - len);
274
275 exp->tuple.dst.u.all = (__force u16)*dst;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800276}
Patrick McHardy68236452007-07-07 22:30:49 -0700277EXPORT_SYMBOL_GPL(nf_ct_expect_init);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800278
Patrick McHardy68236452007-07-07 22:30:49 -0700279void nf_ct_expect_put(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100280{
281 if (atomic_dec_and_test(&exp->use))
Patrick McHardy68236452007-07-07 22:30:49 -0700282 kmem_cache_free(nf_ct_expect_cachep, exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100283}
Patrick McHardy68236452007-07-07 22:30:49 -0700284EXPORT_SYMBOL_GPL(nf_ct_expect_put);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100285
Patrick McHardy68236452007-07-07 22:30:49 -0700286static void nf_ct_expect_insert(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100287{
288 struct nf_conn_help *master_help = nfct_help(exp->master);
Patrick McHardya71c0852007-07-07 22:33:47 -0700289 unsigned int h = nf_ct_expect_dst_hash(&exp->tuple);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100290
291 atomic_inc(&exp->use);
292 master_help->expecting++;
Patrick McHardya71c0852007-07-07 22:33:47 -0700293
Patrick McHardy68236452007-07-07 22:30:49 -0700294 list_add(&exp->list, &nf_ct_expect_list);
Patrick McHardya71c0852007-07-07 22:33:47 -0700295 hlist_add_head(&exp->hnode, &nf_ct_expect_hash[h]);
296 nf_ct_expect_count++;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100297
Patrick McHardy68236452007-07-07 22:30:49 -0700298 setup_timer(&exp->timeout, nf_ct_expectation_timed_out,
299 (unsigned long)exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100300 exp->timeout.expires = jiffies + master_help->helper->timeout * HZ;
301 add_timer(&exp->timeout);
302
Patrick McHardy68236452007-07-07 22:30:49 -0700303 exp->id = ++nf_ct_expect_next_id;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100304 atomic_inc(&exp->use);
305 NF_CT_STAT_INC(expect_create);
306}
307
308/* Race with expectations being used means we could have none to find; OK. */
309static void evict_oldest_expect(struct nf_conn *master)
310{
311 struct nf_conntrack_expect *i;
312
Patrick McHardy68236452007-07-07 22:30:49 -0700313 list_for_each_entry_reverse(i, &nf_ct_expect_list, list) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100314 if (i->master == master) {
315 if (del_timer(&i->timeout)) {
316 nf_ct_unlink_expect(i);
Patrick McHardy68236452007-07-07 22:30:49 -0700317 nf_ct_expect_put(i);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100318 }
319 break;
320 }
321 }
322}
323
324static inline int refresh_timer(struct nf_conntrack_expect *i)
325{
326 struct nf_conn_help *master_help = nfct_help(i->master);
327
328 if (!del_timer(&i->timeout))
329 return 0;
330
331 i->timeout.expires = jiffies + master_help->helper->timeout*HZ;
332 add_timer(&i->timeout);
333 return 1;
334}
335
Patrick McHardy68236452007-07-07 22:30:49 -0700336int nf_ct_expect_related(struct nf_conntrack_expect *expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100337{
338 struct nf_conntrack_expect *i;
339 struct nf_conn *master = expect->master;
340 struct nf_conn_help *master_help = nfct_help(master);
Patrick McHardya71c0852007-07-07 22:33:47 -0700341 struct hlist_node *n;
342 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100343 int ret;
344
345 NF_CT_ASSERT(master_help);
346
347 write_lock_bh(&nf_conntrack_lock);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700348 if (!master_help->helper) {
349 ret = -ESHUTDOWN;
350 goto out;
351 }
Patrick McHardya71c0852007-07-07 22:33:47 -0700352 h = nf_ct_expect_dst_hash(&expect->tuple);
353 hlist_for_each_entry(i, n, &nf_ct_expect_hash[h], hnode) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100354 if (expect_matches(i, expect)) {
355 /* Refresh timer: if it's dying, ignore.. */
356 if (refresh_timer(i)) {
357 ret = 0;
358 goto out;
359 }
360 } else if (expect_clash(i, expect)) {
361 ret = -EBUSY;
362 goto out;
363 }
364 }
365 /* Will be over limit? */
366 if (master_help->helper->max_expected &&
367 master_help->expecting >= master_help->helper->max_expected)
368 evict_oldest_expect(master);
369
Patrick McHardy68236452007-07-07 22:30:49 -0700370 nf_ct_expect_insert(expect);
371 nf_ct_expect_event(IPEXP_NEW, expect);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100372 ret = 0;
373out:
374 write_unlock_bh(&nf_conntrack_lock);
375 return ret;
376}
Patrick McHardy68236452007-07-07 22:30:49 -0700377EXPORT_SYMBOL_GPL(nf_ct_expect_related);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100378
379#ifdef CONFIG_PROC_FS
380static void *exp_seq_start(struct seq_file *s, loff_t *pos)
381{
Patrick McHardy68236452007-07-07 22:30:49 -0700382 struct list_head *e = &nf_ct_expect_list;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100383 loff_t i;
384
385 /* strange seq_file api calls stop even if we fail,
386 * thus we need to grab lock since stop unlocks */
387 read_lock_bh(&nf_conntrack_lock);
388
389 if (list_empty(e))
390 return NULL;
391
392 for (i = 0; i <= *pos; i++) {
393 e = e->next;
Patrick McHardy68236452007-07-07 22:30:49 -0700394 if (e == &nf_ct_expect_list)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100395 return NULL;
396 }
397 return e;
398}
399
400static void *exp_seq_next(struct seq_file *s, void *v, loff_t *pos)
401{
402 struct list_head *e = v;
403
404 ++*pos;
405 e = e->next;
406
Patrick McHardy68236452007-07-07 22:30:49 -0700407 if (e == &nf_ct_expect_list)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100408 return NULL;
409
410 return e;
411}
412
413static void exp_seq_stop(struct seq_file *s, void *v)
414{
415 read_unlock_bh(&nf_conntrack_lock);
416}
417
418static int exp_seq_show(struct seq_file *s, void *v)
419{
420 struct nf_conntrack_expect *expect = v;
421
422 if (expect->timeout.function)
423 seq_printf(s, "%ld ", timer_pending(&expect->timeout)
424 ? (long)(expect->timeout.expires - jiffies)/HZ : 0);
425 else
426 seq_printf(s, "- ");
427 seq_printf(s, "l3proto = %u proto=%u ",
428 expect->tuple.src.l3num,
429 expect->tuple.dst.protonum);
430 print_tuple(s, &expect->tuple,
431 __nf_ct_l3proto_find(expect->tuple.src.l3num),
Martin Josefsson605dcad2006-11-29 02:35:06 +0100432 __nf_ct_l4proto_find(expect->tuple.src.l3num,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100433 expect->tuple.dst.protonum));
434 return seq_putc(s, '\n');
435}
436
437static struct seq_operations exp_seq_ops = {
438 .start = exp_seq_start,
439 .next = exp_seq_next,
440 .stop = exp_seq_stop,
441 .show = exp_seq_show
442};
443
444static int exp_open(struct inode *inode, struct file *file)
445{
446 return seq_open(file, &exp_seq_ops);
447}
448
Arjan van de Venda7071d2007-02-12 00:55:36 -0800449const struct file_operations exp_file_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100450 .owner = THIS_MODULE,
451 .open = exp_open,
452 .read = seq_read,
453 .llseek = seq_lseek,
454 .release = seq_release
455};
456#endif /* CONFIG_PROC_FS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700457
458static int __init exp_proc_init(void)
459{
460#ifdef CONFIG_PROC_FS
461 struct proc_dir_entry *proc;
462
463 proc = proc_net_fops_create("nf_conntrack_expect", 0440, &exp_file_ops);
464 if (!proc)
465 return -ENOMEM;
466#endif /* CONFIG_PROC_FS */
467 return 0;
468}
469
470static void exp_proc_remove(void)
471{
472#ifdef CONFIG_PROC_FS
473 proc_net_remove("nf_conntrack_expect");
474#endif /* CONFIG_PROC_FS */
475}
476
Patrick McHardya71c0852007-07-07 22:33:47 -0700477module_param_named(expect_hashsize, nf_ct_expect_hsize, uint, 0600);
478
Patrick McHardye9c1b082007-07-07 22:32:53 -0700479int __init nf_conntrack_expect_init(void)
480{
Patrick McHardya71c0852007-07-07 22:33:47 -0700481 int err = -ENOMEM;
482
483 if (!nf_ct_expect_hsize) {
484 nf_ct_expect_hsize = nf_conntrack_htable_size / 256;
485 if (!nf_ct_expect_hsize)
486 nf_ct_expect_hsize = 1;
487 }
488
489 nf_ct_expect_hash = nf_ct_alloc_hashtable(&nf_ct_expect_hsize,
490 &nf_ct_expect_vmalloc);
491 if (nf_ct_expect_hash == NULL)
492 goto err1;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700493
494 nf_ct_expect_cachep = kmem_cache_create("nf_conntrack_expect",
495 sizeof(struct nf_conntrack_expect),
496 0, 0, NULL, NULL);
497 if (!nf_ct_expect_cachep)
Patrick McHardya71c0852007-07-07 22:33:47 -0700498 goto err2;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700499
500 err = exp_proc_init();
501 if (err < 0)
Patrick McHardya71c0852007-07-07 22:33:47 -0700502 goto err3;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700503
504 return 0;
505
Patrick McHardya71c0852007-07-07 22:33:47 -0700506err3:
507 nf_ct_free_hashtable(nf_ct_expect_hash, nf_ct_expect_vmalloc,
508 nf_ct_expect_hsize);
509err2:
Patrick McHardye9c1b082007-07-07 22:32:53 -0700510 kmem_cache_destroy(nf_ct_expect_cachep);
Patrick McHardya71c0852007-07-07 22:33:47 -0700511err1:
Patrick McHardye9c1b082007-07-07 22:32:53 -0700512 return err;
513}
514
515void nf_conntrack_expect_fini(void)
516{
517 exp_proc_remove();
518 kmem_cache_destroy(nf_ct_expect_cachep);
Patrick McHardya71c0852007-07-07 22:33:47 -0700519 nf_ct_free_hashtable(nf_ct_expect_hash, nf_ct_expect_vmalloc,
520 nf_ct_expect_hsize);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700521}