1 /* This file contains all the functions required for the standalone
4 These are not required by the compatibility layer.
7 /* (C) 1999-2001 Paul `Rusty' Russell
8 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
14 * 16 Dec 2003: Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
15 * - generalize L3 protocol dependent part.
17 * Derived from net/ipv4/netfilter/ip_conntrack_standalone.c
20 #include <linux/config.h>
21 #include <linux/types.h>
22 #include <linux/netfilter.h>
23 #include <linux/module.h>
24 #include <linux/skbuff.h>
25 #include <linux/proc_fs.h>
26 #include <linux/seq_file.h>
27 #include <linux/percpu.h>
28 #include <linux/netdevice.h>
30 #include <linux/sysctl.h>
33 #define ASSERT_READ_LOCK(x)
34 #define ASSERT_WRITE_LOCK(x)
36 #include <net/netfilter/nf_conntrack.h>
37 #include <net/netfilter/nf_conntrack_l3proto.h>
38 #include <net/netfilter/nf_conntrack_protocol.h>
39 #include <net/netfilter/nf_conntrack_core.h>
40 #include <net/netfilter/nf_conntrack_helper.h>
41 #include <linux/netfilter_ipv4/listhelp.h>
46 #define DEBUGP(format, args...)
49 MODULE_LICENSE("GPL");
51 extern atomic_t nf_conntrack_count
;
52 DECLARE_PER_CPU(struct ip_conntrack_stat
, nf_conntrack_stat
);
54 static int kill_l3proto(struct nf_conn
*i
, void *data
)
56 return (i
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
==
57 ((struct nf_conntrack_l3proto
*)data
)->l3proto
);
60 static int kill_proto(struct nf_conn
*i
, void *data
)
62 struct nf_conntrack_protocol
*proto
;
63 proto
= (struct nf_conntrack_protocol
*)data
;
64 return (i
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
==
66 (i
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
==
72 print_tuple(struct seq_file
*s
, const struct nf_conntrack_tuple
*tuple
,
73 struct nf_conntrack_l3proto
*l3proto
,
74 struct nf_conntrack_protocol
*proto
)
76 return l3proto
->print_tuple(s
, tuple
) || proto
->print_tuple(s
, tuple
);
79 #ifdef CONFIG_NF_CT_ACCT
81 seq_print_counters(struct seq_file
*s
,
82 const struct ip_conntrack_counter
*counter
)
84 return seq_printf(s
, "packets=%llu bytes=%llu ",
85 (unsigned long long)counter
->packets
,
86 (unsigned long long)counter
->bytes
);
89 #define seq_print_counters(x, y) 0
92 struct ct_iter_state
{
96 static struct list_head
*ct_get_first(struct seq_file
*seq
)
98 struct ct_iter_state
*st
= seq
->private;
101 st
->bucket
< nf_conntrack_htable_size
;
103 if (!list_empty(&nf_conntrack_hash
[st
->bucket
]))
104 return nf_conntrack_hash
[st
->bucket
].next
;
109 static struct list_head
*ct_get_next(struct seq_file
*seq
, struct list_head
*head
)
111 struct ct_iter_state
*st
= seq
->private;
114 while (head
== &nf_conntrack_hash
[st
->bucket
]) {
115 if (++st
->bucket
>= nf_conntrack_htable_size
)
117 head
= nf_conntrack_hash
[st
->bucket
].next
;
122 static struct list_head
*ct_get_idx(struct seq_file
*seq
, loff_t pos
)
124 struct list_head
*head
= ct_get_first(seq
);
127 while (pos
&& (head
= ct_get_next(seq
, head
)))
129 return pos
? NULL
: head
;
132 static void *ct_seq_start(struct seq_file
*seq
, loff_t
*pos
)
134 read_lock_bh(&nf_conntrack_lock
);
135 return ct_get_idx(seq
, *pos
);
138 static void *ct_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
141 return ct_get_next(s
, v
);
144 static void ct_seq_stop(struct seq_file
*s
, void *v
)
146 read_unlock_bh(&nf_conntrack_lock
);
149 /* return 0 on success, 1 in case of error */
150 static int ct_seq_show(struct seq_file
*s
, void *v
)
152 const struct nf_conntrack_tuple_hash
*hash
= v
;
153 const struct nf_conn
*conntrack
= nf_ct_tuplehash_to_ctrack(hash
);
154 struct nf_conntrack_l3proto
*l3proto
;
155 struct nf_conntrack_protocol
*proto
;
157 ASSERT_READ_LOCK(&nf_conntrack_lock
);
158 NF_CT_ASSERT(conntrack
);
160 /* we only want to print DIR_ORIGINAL */
161 if (NF_CT_DIRECTION(hash
))
164 l3proto
= __nf_ct_l3proto_find(conntrack
->tuplehash
[IP_CT_DIR_ORIGINAL
]
167 NF_CT_ASSERT(l3proto
);
168 proto
= __nf_ct_proto_find(conntrack
->tuplehash
[IP_CT_DIR_ORIGINAL
]
170 conntrack
->tuplehash
[IP_CT_DIR_ORIGINAL
]
171 .tuple
.dst
.protonum
);
174 if (seq_printf(s
, "%-8s %u %-8s %u %ld ",
176 conntrack
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
,
178 conntrack
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
,
179 timer_pending(&conntrack
->timeout
)
180 ? (long)(conntrack
->timeout
.expires
- jiffies
)/HZ
: 0) != 0)
183 if (l3proto
->print_conntrack(s
, conntrack
))
186 if (proto
->print_conntrack(s
, conntrack
))
189 if (print_tuple(s
, &conntrack
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
,
193 if (seq_print_counters(s
, &conntrack
->counters
[IP_CT_DIR_ORIGINAL
]))
196 if (!(test_bit(IPS_SEEN_REPLY_BIT
, &conntrack
->status
)))
197 if (seq_printf(s
, "[UNREPLIED] "))
200 if (print_tuple(s
, &conntrack
->tuplehash
[IP_CT_DIR_REPLY
].tuple
,
204 if (seq_print_counters(s
, &conntrack
->counters
[IP_CT_DIR_REPLY
]))
207 if (test_bit(IPS_ASSURED_BIT
, &conntrack
->status
))
208 if (seq_printf(s
, "[ASSURED] "))
211 #if defined(CONFIG_NF_CONNTRACK_MARK)
212 if (seq_printf(s
, "mark=%u ", conntrack
->mark
))
216 if (seq_printf(s
, "use=%u\n", atomic_read(&conntrack
->ct_general
.use
)))
222 static struct seq_operations ct_seq_ops
= {
223 .start
= ct_seq_start
,
229 static int ct_open(struct inode
*inode
, struct file
*file
)
231 struct seq_file
*seq
;
232 struct ct_iter_state
*st
;
235 st
= kmalloc(sizeof(struct ct_iter_state
), GFP_KERNEL
);
238 ret
= seq_open(file
, &ct_seq_ops
);
241 seq
= file
->private_data
;
243 memset(st
, 0, sizeof(struct ct_iter_state
));
250 static struct file_operations ct_file_ops
= {
251 .owner
= THIS_MODULE
,
255 .release
= seq_release_private
,
259 static void *exp_seq_start(struct seq_file
*s
, loff_t
*pos
)
261 struct list_head
*e
= &nf_conntrack_expect_list
;
264 /* strange seq_file api calls stop even if we fail,
265 * thus we need to grab lock since stop unlocks */
266 read_lock_bh(&nf_conntrack_lock
);
271 for (i
= 0; i
<= *pos
; i
++) {
273 if (e
== &nf_conntrack_expect_list
)
279 static void *exp_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
281 struct list_head
*e
= v
;
286 if (e
== &nf_conntrack_expect_list
)
292 static void exp_seq_stop(struct seq_file
*s
, void *v
)
294 read_unlock_bh(&nf_conntrack_lock
);
297 static int exp_seq_show(struct seq_file
*s
, void *v
)
299 struct nf_conntrack_expect
*expect
= v
;
301 if (expect
->timeout
.function
)
302 seq_printf(s
, "%ld ", timer_pending(&expect
->timeout
)
303 ? (long)(expect
->timeout
.expires
- jiffies
)/HZ
: 0);
306 seq_printf(s
, "l3proto = %u proto=%u ",
307 expect
->tuple
.src
.l3num
,
308 expect
->tuple
.dst
.protonum
);
309 print_tuple(s
, &expect
->tuple
,
310 __nf_ct_l3proto_find(expect
->tuple
.src
.l3num
),
311 __nf_ct_proto_find(expect
->tuple
.src
.l3num
,
312 expect
->tuple
.dst
.protonum
));
313 return seq_putc(s
, '\n');
316 static struct seq_operations exp_seq_ops
= {
317 .start
= exp_seq_start
,
318 .next
= exp_seq_next
,
319 .stop
= exp_seq_stop
,
323 static int exp_open(struct inode
*inode
, struct file
*file
)
325 return seq_open(file
, &exp_seq_ops
);
328 static struct file_operations exp_file_ops
= {
329 .owner
= THIS_MODULE
,
333 .release
= seq_release
336 static void *ct_cpu_seq_start(struct seq_file
*seq
, loff_t
*pos
)
341 return SEQ_START_TOKEN
;
343 for (cpu
= *pos
-1; cpu
< NR_CPUS
; ++cpu
) {
344 if (!cpu_possible(cpu
))
347 return &per_cpu(nf_conntrack_stat
, cpu
);
353 static void *ct_cpu_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
357 for (cpu
= *pos
; cpu
< NR_CPUS
; ++cpu
) {
358 if (!cpu_possible(cpu
))
361 return &per_cpu(nf_conntrack_stat
, cpu
);
367 static void ct_cpu_seq_stop(struct seq_file
*seq
, void *v
)
371 static int ct_cpu_seq_show(struct seq_file
*seq
, void *v
)
373 unsigned int nr_conntracks
= atomic_read(&nf_conntrack_count
);
374 struct ip_conntrack_stat
*st
= v
;
376 if (v
== SEQ_START_TOKEN
) {
377 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");
381 seq_printf(seq
, "%08x %08x %08x %08x %08x %08x %08x %08x "
382 "%08x %08x %08x %08x %08x %08x %08x %08x \n",
404 static struct seq_operations ct_cpu_seq_ops
= {
405 .start
= ct_cpu_seq_start
,
406 .next
= ct_cpu_seq_next
,
407 .stop
= ct_cpu_seq_stop
,
408 .show
= ct_cpu_seq_show
,
411 static int ct_cpu_seq_open(struct inode
*inode
, struct file
*file
)
413 return seq_open(file
, &ct_cpu_seq_ops
);
416 static struct file_operations ct_cpu_seq_fops
= {
417 .owner
= THIS_MODULE
,
418 .open
= ct_cpu_seq_open
,
421 .release
= seq_release_private
,
423 #endif /* CONFIG_PROC_FS */
429 /* From nf_conntrack_core.c */
430 extern int nf_conntrack_max
;
431 extern unsigned int nf_conntrack_htable_size
;
433 /* From nf_conntrack_proto_tcp.c */
434 extern unsigned int nf_ct_tcp_timeout_syn_sent
;
435 extern unsigned int nf_ct_tcp_timeout_syn_recv
;
436 extern unsigned int nf_ct_tcp_timeout_established
;
437 extern unsigned int nf_ct_tcp_timeout_fin_wait
;
438 extern unsigned int nf_ct_tcp_timeout_close_wait
;
439 extern unsigned int nf_ct_tcp_timeout_last_ack
;
440 extern unsigned int nf_ct_tcp_timeout_time_wait
;
441 extern unsigned int nf_ct_tcp_timeout_close
;
442 extern unsigned int nf_ct_tcp_timeout_max_retrans
;
443 extern int nf_ct_tcp_loose
;
444 extern int nf_ct_tcp_be_liberal
;
445 extern int nf_ct_tcp_max_retrans
;
447 /* From nf_conntrack_proto_udp.c */
448 extern unsigned int nf_ct_udp_timeout
;
449 extern unsigned int nf_ct_udp_timeout_stream
;
451 /* From nf_conntrack_proto_generic.c */
452 extern unsigned int nf_ct_generic_timeout
;
454 /* Log invalid packets of a given protocol */
455 static int log_invalid_proto_min
= 0;
456 static int log_invalid_proto_max
= 255;
458 static struct ctl_table_header
*nf_ct_sysctl_header
;
460 static ctl_table nf_ct_sysctl_table
[] = {
462 .ctl_name
= NET_NF_CONNTRACK_MAX
,
463 .procname
= "nf_conntrack_max",
464 .data
= &nf_conntrack_max
,
465 .maxlen
= sizeof(int),
467 .proc_handler
= &proc_dointvec
,
470 .ctl_name
= NET_NF_CONNTRACK_COUNT
,
471 .procname
= "nf_conntrack_count",
472 .data
= &nf_conntrack_count
,
473 .maxlen
= sizeof(int),
475 .proc_handler
= &proc_dointvec
,
478 .ctl_name
= NET_NF_CONNTRACK_BUCKETS
,
479 .procname
= "nf_conntrack_buckets",
480 .data
= &nf_conntrack_htable_size
,
481 .maxlen
= sizeof(unsigned int),
483 .proc_handler
= &proc_dointvec
,
486 .ctl_name
= NET_NF_CONNTRACK_TCP_TIMEOUT_SYN_SENT
,
487 .procname
= "nf_conntrack_tcp_timeout_syn_sent",
488 .data
= &nf_ct_tcp_timeout_syn_sent
,
489 .maxlen
= sizeof(unsigned int),
491 .proc_handler
= &proc_dointvec_jiffies
,
494 .ctl_name
= NET_NF_CONNTRACK_TCP_TIMEOUT_SYN_RECV
,
495 .procname
= "nf_conntrack_tcp_timeout_syn_recv",
496 .data
= &nf_ct_tcp_timeout_syn_recv
,
497 .maxlen
= sizeof(unsigned int),
499 .proc_handler
= &proc_dointvec_jiffies
,
502 .ctl_name
= NET_NF_CONNTRACK_TCP_TIMEOUT_ESTABLISHED
,
503 .procname
= "nf_conntrack_tcp_timeout_established",
504 .data
= &nf_ct_tcp_timeout_established
,
505 .maxlen
= sizeof(unsigned int),
507 .proc_handler
= &proc_dointvec_jiffies
,
510 .ctl_name
= NET_NF_CONNTRACK_TCP_TIMEOUT_FIN_WAIT
,
511 .procname
= "nf_conntrack_tcp_timeout_fin_wait",
512 .data
= &nf_ct_tcp_timeout_fin_wait
,
513 .maxlen
= sizeof(unsigned int),
515 .proc_handler
= &proc_dointvec_jiffies
,
518 .ctl_name
= NET_NF_CONNTRACK_TCP_TIMEOUT_CLOSE_WAIT
,
519 .procname
= "nf_conntrack_tcp_timeout_close_wait",
520 .data
= &nf_ct_tcp_timeout_close_wait
,
521 .maxlen
= sizeof(unsigned int),
523 .proc_handler
= &proc_dointvec_jiffies
,
526 .ctl_name
= NET_NF_CONNTRACK_TCP_TIMEOUT_LAST_ACK
,
527 .procname
= "nf_conntrack_tcp_timeout_last_ack",
528 .data
= &nf_ct_tcp_timeout_last_ack
,
529 .maxlen
= sizeof(unsigned int),
531 .proc_handler
= &proc_dointvec_jiffies
,
534 .ctl_name
= NET_NF_CONNTRACK_TCP_TIMEOUT_TIME_WAIT
,
535 .procname
= "nf_conntrack_tcp_timeout_time_wait",
536 .data
= &nf_ct_tcp_timeout_time_wait
,
537 .maxlen
= sizeof(unsigned int),
539 .proc_handler
= &proc_dointvec_jiffies
,
542 .ctl_name
= NET_NF_CONNTRACK_TCP_TIMEOUT_CLOSE
,
543 .procname
= "nf_conntrack_tcp_timeout_close",
544 .data
= &nf_ct_tcp_timeout_close
,
545 .maxlen
= sizeof(unsigned int),
547 .proc_handler
= &proc_dointvec_jiffies
,
550 .ctl_name
= NET_NF_CONNTRACK_UDP_TIMEOUT
,
551 .procname
= "nf_conntrack_udp_timeout",
552 .data
= &nf_ct_udp_timeout
,
553 .maxlen
= sizeof(unsigned int),
555 .proc_handler
= &proc_dointvec_jiffies
,
558 .ctl_name
= NET_NF_CONNTRACK_UDP_TIMEOUT_STREAM
,
559 .procname
= "nf_conntrack_udp_timeout_stream",
560 .data
= &nf_ct_udp_timeout_stream
,
561 .maxlen
= sizeof(unsigned int),
563 .proc_handler
= &proc_dointvec_jiffies
,
566 .ctl_name
= NET_NF_CONNTRACK_GENERIC_TIMEOUT
,
567 .procname
= "nf_conntrack_generic_timeout",
568 .data
= &nf_ct_generic_timeout
,
569 .maxlen
= sizeof(unsigned int),
571 .proc_handler
= &proc_dointvec_jiffies
,
574 .ctl_name
= NET_NF_CONNTRACK_LOG_INVALID
,
575 .procname
= "nf_conntrack_log_invalid",
576 .data
= &nf_ct_log_invalid
,
577 .maxlen
= sizeof(unsigned int),
579 .proc_handler
= &proc_dointvec_minmax
,
580 .strategy
= &sysctl_intvec
,
581 .extra1
= &log_invalid_proto_min
,
582 .extra2
= &log_invalid_proto_max
,
585 .ctl_name
= NET_NF_CONNTRACK_TCP_TIMEOUT_MAX_RETRANS
,
586 .procname
= "nf_conntrack_tcp_timeout_max_retrans",
587 .data
= &nf_ct_tcp_timeout_max_retrans
,
588 .maxlen
= sizeof(unsigned int),
590 .proc_handler
= &proc_dointvec_jiffies
,
593 .ctl_name
= NET_NF_CONNTRACK_TCP_LOOSE
,
594 .procname
= "nf_conntrack_tcp_loose",
595 .data
= &nf_ct_tcp_loose
,
596 .maxlen
= sizeof(unsigned int),
598 .proc_handler
= &proc_dointvec
,
601 .ctl_name
= NET_NF_CONNTRACK_TCP_BE_LIBERAL
,
602 .procname
= "nf_conntrack_tcp_be_liberal",
603 .data
= &nf_ct_tcp_be_liberal
,
604 .maxlen
= sizeof(unsigned int),
606 .proc_handler
= &proc_dointvec
,
609 .ctl_name
= NET_NF_CONNTRACK_TCP_MAX_RETRANS
,
610 .procname
= "nf_conntrack_tcp_max_retrans",
611 .data
= &nf_ct_tcp_max_retrans
,
612 .maxlen
= sizeof(unsigned int),
614 .proc_handler
= &proc_dointvec
,
620 #define NET_NF_CONNTRACK_MAX 2089
622 static ctl_table nf_ct_netfilter_table
[] = {
624 .ctl_name
= NET_NETFILTER
,
625 .procname
= "netfilter",
627 .child
= nf_ct_sysctl_table
,
630 .ctl_name
= NET_NF_CONNTRACK_MAX
,
631 .procname
= "nf_conntrack_max",
632 .data
= &nf_conntrack_max
,
633 .maxlen
= sizeof(int),
635 .proc_handler
= &proc_dointvec
,
640 static ctl_table nf_ct_net_table
[] = {
645 .child
= nf_ct_netfilter_table
,
649 EXPORT_SYMBOL(nf_ct_log_invalid
);
650 #endif /* CONFIG_SYSCTL */
652 int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto
*proto
)
656 write_lock_bh(&nf_conntrack_lock
);
657 if (nf_ct_l3protos
[proto
->l3proto
] != &nf_conntrack_generic_l3proto
) {
661 nf_ct_l3protos
[proto
->l3proto
] = proto
;
663 write_unlock_bh(&nf_conntrack_lock
);
668 void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto
*proto
)
670 write_lock_bh(&nf_conntrack_lock
);
671 nf_ct_l3protos
[proto
->l3proto
] = &nf_conntrack_generic_l3proto
;
672 write_unlock_bh(&nf_conntrack_lock
);
674 /* Somebody could be still looking at the proto in bh. */
677 /* Remove all contrack entries for this protocol */
678 nf_ct_iterate_cleanup(kill_l3proto
, proto
);
681 /* FIXME: Allow NULL functions and sub in pointers to generic for
683 int nf_conntrack_protocol_register(struct nf_conntrack_protocol
*proto
)
688 write_lock_bh(&nf_conntrack_lock
);
689 if (nf_ct_protos
[proto
->l3proto
]) {
690 if (nf_ct_protos
[proto
->l3proto
][proto
->proto
]
691 != &nf_conntrack_generic_protocol
) {
696 /* l3proto may be loaded latter. */
697 struct nf_conntrack_protocol
**proto_array
;
700 write_unlock_bh(&nf_conntrack_lock
);
702 proto_array
= (struct nf_conntrack_protocol
**)
703 kmalloc(MAX_NF_CT_PROTO
*
704 sizeof(struct nf_conntrack_protocol
*),
706 if (proto_array
== NULL
) {
710 for (i
= 0; i
< MAX_NF_CT_PROTO
; i
++)
711 proto_array
[i
] = &nf_conntrack_generic_protocol
;
713 write_lock_bh(&nf_conntrack_lock
);
714 if (nf_ct_protos
[proto
->l3proto
]) {
715 /* bad timing, but no problem */
716 write_unlock_bh(&nf_conntrack_lock
);
719 nf_ct_protos
[proto
->l3proto
] = proto_array
;
720 write_unlock_bh(&nf_conntrack_lock
);
724 * Just once because array is never freed until unloading
730 nf_ct_protos
[proto
->l3proto
][proto
->proto
] = proto
;
733 write_unlock_bh(&nf_conntrack_lock
);
738 void nf_conntrack_protocol_unregister(struct nf_conntrack_protocol
*proto
)
740 write_lock_bh(&nf_conntrack_lock
);
741 nf_ct_protos
[proto
->l3proto
][proto
->proto
]
742 = &nf_conntrack_generic_protocol
;
743 write_unlock_bh(&nf_conntrack_lock
);
745 /* Somebody could be still looking at the proto in bh. */
748 /* Remove all contrack entries for this protocol */
749 nf_ct_iterate_cleanup(kill_proto
, proto
);
752 static int __init
nf_conntrack_standalone_init(void)
754 #ifdef CONFIG_PROC_FS
755 struct proc_dir_entry
*proc
, *proc_exp
, *proc_stat
;
759 ret
= nf_conntrack_init();
763 #ifdef CONFIG_PROC_FS
764 proc
= proc_net_fops_create("nf_conntrack", 0440, &ct_file_ops
);
765 if (!proc
) goto cleanup_init
;
767 proc_exp
= proc_net_fops_create("nf_conntrack_expect", 0440,
769 if (!proc_exp
) goto cleanup_proc
;
771 proc_stat
= create_proc_entry("nf_conntrack", S_IRUGO
, proc_net_stat
);
773 goto cleanup_proc_exp
;
775 proc_stat
->proc_fops
= &ct_cpu_seq_fops
;
776 proc_stat
->owner
= THIS_MODULE
;
779 nf_ct_sysctl_header
= register_sysctl_table(nf_ct_net_table
, 0);
780 if (nf_ct_sysctl_header
== NULL
) {
781 printk("nf_conntrack: can't register to sysctl.\n");
783 goto cleanup_proc_stat
;
791 #ifdef CONFIG_PROC_FS
792 remove_proc_entry("nf_conntrack", proc_net_stat
);
794 proc_net_remove("nf_conntrack_expect");
796 proc_net_remove("nf_conntrack");
798 #endif /* CNFIG_PROC_FS */
799 nf_conntrack_cleanup();
803 static void __exit
nf_conntrack_standalone_fini(void)
806 unregister_sysctl_table(nf_ct_sysctl_header
);
808 #ifdef CONFIG_PROC_FS
809 remove_proc_entry("nf_conntrack", proc_net_stat
);
810 proc_net_remove("nf_conntrack_expect");
811 proc_net_remove("nf_conntrack");
812 #endif /* CNFIG_PROC_FS */
813 nf_conntrack_cleanup();
816 module_init(nf_conntrack_standalone_init
);
817 module_exit(nf_conntrack_standalone_fini
);
819 /* Some modules need us, but don't depend directly on any symbol.
820 They should call this. */
821 void need_conntrack(void)
825 #ifdef CONFIG_NF_CONNTRACK_EVENTS
826 EXPORT_SYMBOL_GPL(nf_conntrack_chain
);
827 EXPORT_SYMBOL_GPL(nf_conntrack_expect_chain
);
828 EXPORT_SYMBOL_GPL(nf_conntrack_register_notifier
);
829 EXPORT_SYMBOL_GPL(nf_conntrack_unregister_notifier
);
830 EXPORT_SYMBOL_GPL(__nf_ct_event_cache_init
);
831 EXPORT_PER_CPU_SYMBOL_GPL(nf_conntrack_ecache
);
832 EXPORT_SYMBOL_GPL(nf_ct_deliver_cached_events
);
834 EXPORT_SYMBOL(nf_ct_l3proto_try_module_get
);
835 EXPORT_SYMBOL(nf_ct_l3proto_module_put
);
836 EXPORT_SYMBOL(nf_conntrack_l3proto_register
);
837 EXPORT_SYMBOL(nf_conntrack_l3proto_unregister
);
838 EXPORT_SYMBOL(nf_conntrack_protocol_register
);
839 EXPORT_SYMBOL(nf_conntrack_protocol_unregister
);
840 EXPORT_SYMBOL(nf_ct_invert_tuplepr
);
841 EXPORT_SYMBOL(nf_conntrack_destroyed
);
842 EXPORT_SYMBOL(need_conntrack
);
843 EXPORT_SYMBOL(nf_conntrack_helper_register
);
844 EXPORT_SYMBOL(nf_conntrack_helper_unregister
);
845 EXPORT_SYMBOL(nf_ct_iterate_cleanup
);
846 EXPORT_SYMBOL(__nf_ct_refresh_acct
);
847 EXPORT_SYMBOL(nf_ct_protos
);
848 EXPORT_SYMBOL(__nf_ct_proto_find
);
849 EXPORT_SYMBOL(nf_ct_proto_find_get
);
850 EXPORT_SYMBOL(nf_ct_proto_put
);
851 EXPORT_SYMBOL(nf_ct_l3proto_find_get
);
852 EXPORT_SYMBOL(nf_ct_l3proto_put
);
853 EXPORT_SYMBOL(nf_ct_l3protos
);
854 EXPORT_SYMBOL(nf_conntrack_expect_alloc
);
855 EXPORT_SYMBOL(nf_conntrack_expect_put
);
856 EXPORT_SYMBOL(nf_conntrack_expect_related
);
857 EXPORT_SYMBOL(nf_conntrack_unexpect_related
);
858 EXPORT_SYMBOL(nf_conntrack_tuple_taken
);
859 EXPORT_SYMBOL(nf_conntrack_htable_size
);
860 EXPORT_SYMBOL(nf_conntrack_lock
);
861 EXPORT_SYMBOL(nf_conntrack_hash
);
862 EXPORT_SYMBOL(nf_conntrack_untracked
);
863 EXPORT_SYMBOL_GPL(nf_conntrack_find_get
);
864 #ifdef CONFIG_IP_NF_NAT_NEEDED
865 EXPORT_SYMBOL(nf_conntrack_tcp_update
);
867 EXPORT_SYMBOL(__nf_conntrack_confirm
);
868 EXPORT_SYMBOL(nf_ct_get_tuple
);
869 EXPORT_SYMBOL(nf_ct_invert_tuple
);
870 EXPORT_SYMBOL(nf_conntrack_in
);
871 EXPORT_SYMBOL(__nf_conntrack_attach
);
872 EXPORT_SYMBOL(nf_conntrack_alloc
);
873 EXPORT_SYMBOL(nf_conntrack_free
);
874 EXPORT_SYMBOL(nf_conntrack_flush
);
875 EXPORT_SYMBOL(nf_ct_remove_expectations
);
876 EXPORT_SYMBOL(nf_ct_helper_find_get
);
877 EXPORT_SYMBOL(nf_ct_helper_put
);
878 EXPORT_SYMBOL(__nf_conntrack_helper_find_byname
);
879 EXPORT_SYMBOL(__nf_conntrack_find
);
880 EXPORT_SYMBOL(nf_ct_unlink_expect
);
881 EXPORT_SYMBOL(nf_conntrack_hash_insert
);
882 EXPORT_SYMBOL(__nf_conntrack_expect_find
);
883 EXPORT_SYMBOL(nf_conntrack_expect_find
);
884 EXPORT_SYMBOL(nf_conntrack_expect_list
);
885 #if defined(CONFIG_NF_CT_NETLINK) || \
886 defined(CONFIG_NF_CT_NETLINK_MODULE)
887 EXPORT_SYMBOL(nf_ct_port_tuple_to_nfattr
);
888 EXPORT_SYMBOL(nf_ct_port_nfattr_to_tuple
);