blob: ea34090f10cbc56a2f0f4599d336fa1fb398e26e [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001/* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08007 */
8
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08009#include <linux/types.h>
10#include <linux/netfilter.h>
11#include <linux/module.h>
12#include <linux/skbuff.h>
13#include <linux/proc_fs.h>
14#include <linux/seq_file.h>
15#include <linux/percpu.h>
16#include <linux/netdevice.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020017#include <net/net_namespace.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080018#ifdef CONFIG_SYSCTL
19#include <linux/sysctl.h>
20#endif
21
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080022#include <net/netfilter/nf_conntrack.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010023#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080024#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010025#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010026#include <net/netfilter/nf_conntrack_expect.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080027#include <net/netfilter/nf_conntrack_helper.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080028
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080029MODULE_LICENSE("GPL");
30
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080031#ifdef CONFIG_PROC_FS
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010032int
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080033print_tuple(struct seq_file *s, const struct nf_conntrack_tuple *tuple,
Jan Engelhardt32948582008-01-31 04:53:24 -080034 const struct nf_conntrack_l3proto *l3proto,
35 const struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080036{
Martin Josefsson605dcad2006-11-29 02:35:06 +010037 return l3proto->print_tuple(s, tuple) || l4proto->print_tuple(s, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080038}
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010039EXPORT_SYMBOL_GPL(print_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080040
41#ifdef CONFIG_NF_CT_ACCT
42static unsigned int
43seq_print_counters(struct seq_file *s,
44 const struct ip_conntrack_counter *counter)
45{
46 return seq_printf(s, "packets=%llu bytes=%llu ",
47 (unsigned long long)counter->packets,
48 (unsigned long long)counter->bytes);
49}
50#else
51#define seq_print_counters(x, y) 0
52#endif
53
54struct ct_iter_state {
55 unsigned int bucket;
56};
57
Patrick McHardyf205c5e2007-07-07 22:28:14 -070058static struct hlist_node *ct_get_first(struct seq_file *seq)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080059{
60 struct ct_iter_state *st = seq->private;
Patrick McHardy76507f62008-01-31 04:38:38 -080061 struct hlist_node *n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080062
63 for (st->bucket = 0;
64 st->bucket < nf_conntrack_htable_size;
65 st->bucket++) {
Patrick McHardy76507f62008-01-31 04:38:38 -080066 n = rcu_dereference(nf_conntrack_hash[st->bucket].first);
67 if (n)
68 return n;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080069 }
70 return NULL;
71}
72
Patrick McHardyf205c5e2007-07-07 22:28:14 -070073static struct hlist_node *ct_get_next(struct seq_file *seq,
74 struct hlist_node *head)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080075{
76 struct ct_iter_state *st = seq->private;
77
Patrick McHardy76507f62008-01-31 04:38:38 -080078 head = rcu_dereference(head->next);
Patrick McHardyf205c5e2007-07-07 22:28:14 -070079 while (head == NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080080 if (++st->bucket >= nf_conntrack_htable_size)
81 return NULL;
Patrick McHardy76507f62008-01-31 04:38:38 -080082 head = rcu_dereference(nf_conntrack_hash[st->bucket].first);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083 }
84 return head;
85}
86
Patrick McHardyf205c5e2007-07-07 22:28:14 -070087static struct hlist_node *ct_get_idx(struct seq_file *seq, loff_t pos)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080088{
Patrick McHardyf205c5e2007-07-07 22:28:14 -070089 struct hlist_node *head = ct_get_first(seq);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080090
91 if (head)
92 while (pos && (head = ct_get_next(seq, head)))
93 pos--;
94 return pos ? NULL : head;
95}
96
97static void *ct_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy76507f62008-01-31 04:38:38 -080098 __acquires(RCU)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080099{
Patrick McHardy76507f62008-01-31 04:38:38 -0800100 rcu_read_lock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800101 return ct_get_idx(seq, *pos);
102}
103
104static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
105{
106 (*pos)++;
107 return ct_get_next(s, v);
108}
109
110static void ct_seq_stop(struct seq_file *s, void *v)
Patrick McHardy76507f62008-01-31 04:38:38 -0800111 __releases(RCU)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800112{
Patrick McHardy76507f62008-01-31 04:38:38 -0800113 rcu_read_unlock();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800114}
115
116/* return 0 on success, 1 in case of error */
117static int ct_seq_show(struct seq_file *s, void *v)
118{
119 const struct nf_conntrack_tuple_hash *hash = v;
Patrick McHardyc88130b2008-01-31 04:42:11 -0800120 const struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(hash);
Jan Engelhardt32948582008-01-31 04:53:24 -0800121 const struct nf_conntrack_l3proto *l3proto;
122 const struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800123
Patrick McHardyc88130b2008-01-31 04:42:11 -0800124 NF_CT_ASSERT(ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800125
126 /* we only want to print DIR_ORIGINAL */
127 if (NF_CT_DIRECTION(hash))
128 return 0;
129
Patrick McHardyc88130b2008-01-31 04:42:11 -0800130 l3proto = __nf_ct_l3proto_find(ct->tuplehash[IP_CT_DIR_ORIGINAL]
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800131 .tuple.src.l3num);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800132
133 NF_CT_ASSERT(l3proto);
Patrick McHardyc88130b2008-01-31 04:42:11 -0800134 l4proto = __nf_ct_l4proto_find(ct->tuplehash[IP_CT_DIR_ORIGINAL]
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800135 .tuple.src.l3num,
Patrick McHardyc88130b2008-01-31 04:42:11 -0800136 ct->tuplehash[IP_CT_DIR_ORIGINAL]
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800137 .tuple.dst.protonum);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100138 NF_CT_ASSERT(l4proto);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800139
140 if (seq_printf(s, "%-8s %u %-8s %u %ld ",
141 l3proto->name,
Patrick McHardyc88130b2008-01-31 04:42:11 -0800142 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100143 l4proto->name,
Patrick McHardyc88130b2008-01-31 04:42:11 -0800144 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum,
145 timer_pending(&ct->timeout)
146 ? (long)(ct->timeout.expires - jiffies)/HZ : 0) != 0)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800147 return -ENOSPC;
148
Patrick McHardyc88130b2008-01-31 04:42:11 -0800149 if (l4proto->print_conntrack && l4proto->print_conntrack(s, ct))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800150 return -ENOSPC;
151
Patrick McHardyc88130b2008-01-31 04:42:11 -0800152 if (print_tuple(s, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100153 l3proto, l4proto))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800154 return -ENOSPC;
155
Patrick McHardyc88130b2008-01-31 04:42:11 -0800156 if (seq_print_counters(s, &ct->counters[IP_CT_DIR_ORIGINAL]))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800157 return -ENOSPC;
158
Patrick McHardyc88130b2008-01-31 04:42:11 -0800159 if (!(test_bit(IPS_SEEN_REPLY_BIT, &ct->status)))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800160 if (seq_printf(s, "[UNREPLIED] "))
161 return -ENOSPC;
162
Patrick McHardyc88130b2008-01-31 04:42:11 -0800163 if (print_tuple(s, &ct->tuplehash[IP_CT_DIR_REPLY].tuple,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100164 l3proto, l4proto))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165 return -ENOSPC;
166
Patrick McHardyc88130b2008-01-31 04:42:11 -0800167 if (seq_print_counters(s, &ct->counters[IP_CT_DIR_REPLY]))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800168 return -ENOSPC;
169
Patrick McHardyc88130b2008-01-31 04:42:11 -0800170 if (test_bit(IPS_ASSURED_BIT, &ct->status))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800171 if (seq_printf(s, "[ASSURED] "))
172 return -ENOSPC;
173
174#if defined(CONFIG_NF_CONNTRACK_MARK)
Patrick McHardyc88130b2008-01-31 04:42:11 -0800175 if (seq_printf(s, "mark=%u ", ct->mark))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800176 return -ENOSPC;
177#endif
178
James Morris7c9728c2006-06-09 00:31:46 -0700179#ifdef CONFIG_NF_CONNTRACK_SECMARK
Patrick McHardyc88130b2008-01-31 04:42:11 -0800180 if (seq_printf(s, "secmark=%u ", ct->secmark))
James Morris7c9728c2006-06-09 00:31:46 -0700181 return -ENOSPC;
182#endif
183
Patrick McHardyc88130b2008-01-31 04:42:11 -0800184 if (seq_printf(s, "use=%u\n", atomic_read(&ct->ct_general.use)))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800185 return -ENOSPC;
YOSHIFUJI Hideakia5d29262007-07-19 10:44:21 +0900186
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800187 return 0;
188}
189
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700190static const struct seq_operations ct_seq_ops = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800191 .start = ct_seq_start,
192 .next = ct_seq_next,
193 .stop = ct_seq_stop,
194 .show = ct_seq_show
195};
196
197static int ct_open(struct inode *inode, struct file *file)
198{
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700199 return seq_open_private(file, &ct_seq_ops,
200 sizeof(struct ct_iter_state));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800201}
202
Arjan van de Venda7071d2007-02-12 00:55:36 -0800203static const struct file_operations ct_file_ops = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800204 .owner = THIS_MODULE,
205 .open = ct_open,
206 .read = seq_read,
207 .llseek = seq_lseek,
208 .release = seq_release_private,
209};
210
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800211static void *ct_cpu_seq_start(struct seq_file *seq, loff_t *pos)
212{
213 int cpu;
214
215 if (*pos == 0)
216 return SEQ_START_TOKEN;
217
218 for (cpu = *pos-1; cpu < NR_CPUS; ++cpu) {
219 if (!cpu_possible(cpu))
220 continue;
221 *pos = cpu + 1;
222 return &per_cpu(nf_conntrack_stat, cpu);
223 }
224
225 return NULL;
226}
227
228static void *ct_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
229{
230 int cpu;
231
232 for (cpu = *pos; cpu < NR_CPUS; ++cpu) {
233 if (!cpu_possible(cpu))
234 continue;
235 *pos = cpu + 1;
236 return &per_cpu(nf_conntrack_stat, cpu);
237 }
238
239 return NULL;
240}
241
242static void ct_cpu_seq_stop(struct seq_file *seq, void *v)
243{
244}
245
246static int ct_cpu_seq_show(struct seq_file *seq, void *v)
247{
248 unsigned int nr_conntracks = atomic_read(&nf_conntrack_count);
Jan Engelhardt32948582008-01-31 04:53:24 -0800249 const struct ip_conntrack_stat *st = v;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800250
251 if (v == SEQ_START_TOKEN) {
252 seq_printf(seq, "entries searched found new invalid ignore delete delete_list insert insert_failed drop early_drop icmp_error expect_new expect_create expect_delete\n");
253 return 0;
254 }
255
256 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x "
257 "%08x %08x %08x %08x %08x %08x %08x %08x \n",
258 nr_conntracks,
259 st->searched,
260 st->found,
261 st->new,
262 st->invalid,
263 st->ignore,
264 st->delete,
265 st->delete_list,
266 st->insert,
267 st->insert_failed,
268 st->drop,
269 st->early_drop,
270 st->error,
271
272 st->expect_new,
273 st->expect_create,
274 st->expect_delete
275 );
276 return 0;
277}
278
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700279static const struct seq_operations ct_cpu_seq_ops = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800280 .start = ct_cpu_seq_start,
281 .next = ct_cpu_seq_next,
282 .stop = ct_cpu_seq_stop,
283 .show = ct_cpu_seq_show,
284};
285
286static int ct_cpu_seq_open(struct inode *inode, struct file *file)
287{
288 return seq_open(file, &ct_cpu_seq_ops);
289}
290
Arjan van de Venda7071d2007-02-12 00:55:36 -0800291static const struct file_operations ct_cpu_seq_fops = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800292 .owner = THIS_MODULE,
293 .open = ct_cpu_seq_open,
294 .read = seq_read,
295 .llseek = seq_lseek,
296 .release = seq_release_private,
297};
298#endif /* CONFIG_PROC_FS */
299
300/* Sysctl support */
301
Brian Haley94aec082006-09-18 00:05:22 -0700302int nf_conntrack_checksum __read_mostly = 1;
Patrick McHardy13b18332006-12-02 22:11:25 -0800303EXPORT_SYMBOL_GPL(nf_conntrack_checksum);
Adrian Bunk72b55822006-07-24 22:53:12 -0700304
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800305#ifdef CONFIG_SYSCTL
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800306/* Log invalid packets of a given protocol */
307static int log_invalid_proto_min = 0;
308static int log_invalid_proto_max = 255;
309
310static struct ctl_table_header *nf_ct_sysctl_header;
311
312static ctl_table nf_ct_sysctl_table[] = {
313 {
314 .ctl_name = NET_NF_CONNTRACK_MAX,
315 .procname = "nf_conntrack_max",
316 .data = &nf_conntrack_max,
317 .maxlen = sizeof(int),
318 .mode = 0644,
319 .proc_handler = &proc_dointvec,
320 },
321 {
322 .ctl_name = NET_NF_CONNTRACK_COUNT,
323 .procname = "nf_conntrack_count",
324 .data = &nf_conntrack_count,
325 .maxlen = sizeof(int),
326 .mode = 0444,
327 .proc_handler = &proc_dointvec,
328 },
329 {
330 .ctl_name = NET_NF_CONNTRACK_BUCKETS,
331 .procname = "nf_conntrack_buckets",
332 .data = &nf_conntrack_htable_size,
333 .maxlen = sizeof(unsigned int),
334 .mode = 0444,
335 .proc_handler = &proc_dointvec,
336 },
337 {
Patrick McHardy39a27a32006-05-29 18:23:54 -0700338 .ctl_name = NET_NF_CONNTRACK_CHECKSUM,
339 .procname = "nf_conntrack_checksum",
340 .data = &nf_conntrack_checksum,
341 .maxlen = sizeof(unsigned int),
342 .mode = 0644,
343 .proc_handler = &proc_dointvec,
344 },
345 {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800346 .ctl_name = NET_NF_CONNTRACK_LOG_INVALID,
347 .procname = "nf_conntrack_log_invalid",
348 .data = &nf_ct_log_invalid,
349 .maxlen = sizeof(unsigned int),
350 .mode = 0644,
351 .proc_handler = &proc_dointvec_minmax,
352 .strategy = &sysctl_intvec,
353 .extra1 = &log_invalid_proto_min,
354 .extra2 = &log_invalid_proto_max,
355 },
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700356 {
357 .ctl_name = CTL_UNNUMBERED,
358 .procname = "nf_conntrack_expect_max",
359 .data = &nf_ct_expect_max,
360 .maxlen = sizeof(int),
361 .mode = 0644,
362 .proc_handler = &proc_dointvec,
363 },
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800364 { .ctl_name = 0 }
365};
366
367#define NET_NF_CONNTRACK_MAX 2089
368
369static ctl_table nf_ct_netfilter_table[] = {
370 {
371 .ctl_name = NET_NETFILTER,
372 .procname = "netfilter",
373 .mode = 0555,
374 .child = nf_ct_sysctl_table,
375 },
376 {
377 .ctl_name = NET_NF_CONNTRACK_MAX,
378 .procname = "nf_conntrack_max",
379 .data = &nf_conntrack_max,
380 .maxlen = sizeof(int),
381 .mode = 0644,
382 .proc_handler = &proc_dointvec,
383 },
384 { .ctl_name = 0 }
385};
386
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -0800387struct ctl_path nf_ct_path[] = {
388 { .procname = "net", .ctl_name = CTL_NET, },
389 { }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800390};
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -0800391
Patrick McHardy13b18332006-12-02 22:11:25 -0800392EXPORT_SYMBOL_GPL(nf_ct_log_invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800393#endif /* CONFIG_SYSCTL */
394
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800395static int __init nf_conntrack_standalone_init(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800396{
Patrick McHardy32292a72006-04-06 14:11:30 -0700397#ifdef CONFIG_PROC_FS
Patrick McHardye9c1b082007-07-07 22:32:53 -0700398 struct proc_dir_entry *proc, *proc_stat;
Patrick McHardy32292a72006-04-06 14:11:30 -0700399#endif
400 int ret = 0;
401
402 ret = nf_conntrack_init();
403 if (ret < 0)
404 return ret;
405
406#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200407 proc = proc_net_fops_create(&init_net, "nf_conntrack", 0440, &ct_file_ops);
Patrick McHardy32292a72006-04-06 14:11:30 -0700408 if (!proc) goto cleanup_init;
409
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200410 proc_stat = create_proc_entry("nf_conntrack", S_IRUGO, init_net.proc_net_stat);
Patrick McHardy32292a72006-04-06 14:11:30 -0700411 if (!proc_stat)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700412 goto cleanup_proc;
Patrick McHardy32292a72006-04-06 14:11:30 -0700413
414 proc_stat->proc_fops = &ct_cpu_seq_fops;
415 proc_stat->owner = THIS_MODULE;
416#endif
417#ifdef CONFIG_SYSCTL
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -0800418 nf_ct_sysctl_header = register_sysctl_paths(nf_ct_path,
419 nf_ct_netfilter_table);
Patrick McHardy32292a72006-04-06 14:11:30 -0700420 if (nf_ct_sysctl_header == NULL) {
421 printk("nf_conntrack: can't register to sysctl.\n");
422 ret = -ENOMEM;
423 goto cleanup_proc_stat;
424 }
425#endif
426 return ret;
427
428#ifdef CONFIG_SYSCTL
429 cleanup_proc_stat:
430#endif
431#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200432 remove_proc_entry("nf_conntrack", init_net. proc_net_stat);
Patrick McHardy32292a72006-04-06 14:11:30 -0700433 cleanup_proc:
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200434 proc_net_remove(&init_net, "nf_conntrack");
Patrick McHardy32292a72006-04-06 14:11:30 -0700435 cleanup_init:
436#endif /* CNFIG_PROC_FS */
437 nf_conntrack_cleanup();
438 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800439}
440
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800441static void __exit nf_conntrack_standalone_fini(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800442{
Patrick McHardy32292a72006-04-06 14:11:30 -0700443#ifdef CONFIG_SYSCTL
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800444 unregister_sysctl_table(nf_ct_sysctl_header);
Patrick McHardy32292a72006-04-06 14:11:30 -0700445#endif
446#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200447 remove_proc_entry("nf_conntrack", init_net.proc_net_stat);
448 proc_net_remove(&init_net, "nf_conntrack");
Patrick McHardy32292a72006-04-06 14:11:30 -0700449#endif /* CNFIG_PROC_FS */
450 nf_conntrack_cleanup();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800451}
452
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800453module_init(nf_conntrack_standalone_init);
454module_exit(nf_conntrack_standalone_fini);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800455
456/* Some modules need us, but don't depend directly on any symbol.
457 They should call this. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800458void need_conntrack(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800459{
460}
Patrick McHardy13b18332006-12-02 22:11:25 -0800461EXPORT_SYMBOL_GPL(need_conntrack);