1 /* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
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.
9 #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>
18 #include <linux/sysctl.h>
21 #include <net/netfilter/nf_conntrack.h>
22 #include <net/netfilter/nf_conntrack_core.h>
23 #include <net/netfilter/nf_conntrack_l3proto.h>
24 #include <net/netfilter/nf_conntrack_l4proto.h>
25 #include <net/netfilter/nf_conntrack_expect.h>
26 #include <net/netfilter/nf_conntrack_helper.h>
31 #define DEBUGP(format, args...)
34 MODULE_LICENSE("GPL");
38 print_tuple(struct seq_file *s, const struct nf_conntrack_tuple *tuple,
39 struct nf_conntrack_l3proto *l3proto,
40 struct nf_conntrack_l4proto *l4proto)
42 return l3proto->print_tuple(s, tuple) || l4proto->print_tuple(s, tuple);
44 EXPORT_SYMBOL_GPL(print_tuple);
46 #ifdef CONFIG_NF_CT_ACCT
48 seq_print_counters(struct seq_file *s,
49 const struct ip_conntrack_counter *counter)
51 return seq_printf(s, "packets=%llu bytes=%llu ",
52 (unsigned long long)counter->packets,
53 (unsigned long long)counter->bytes);
56 #define seq_print_counters(x, y) 0
59 struct ct_iter_state {
63 static struct list_head *ct_get_first(struct seq_file *seq)
65 struct ct_iter_state *st = seq->private;
68 st->bucket < nf_conntrack_htable_size;
70 if (!list_empty(&nf_conntrack_hash[st->bucket]))
71 return nf_conntrack_hash[st->bucket].next;
76 static struct list_head *ct_get_next(struct seq_file *seq, struct list_head *head)
78 struct ct_iter_state *st = seq->private;
81 while (head == &nf_conntrack_hash[st->bucket]) {
82 if (++st->bucket >= nf_conntrack_htable_size)
84 head = nf_conntrack_hash[st->bucket].next;
89 static struct list_head *ct_get_idx(struct seq_file *seq, loff_t pos)
91 struct list_head *head = ct_get_first(seq);
94 while (pos && (head = ct_get_next(seq, head)))
96 return pos ? NULL : head;
99 static void *ct_seq_start(struct seq_file *seq, loff_t *pos)
101 read_lock_bh(&nf_conntrack_lock);
102 return ct_get_idx(seq, *pos);
105 static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
108 return ct_get_next(s, v);
111 static void ct_seq_stop(struct seq_file *s, void *v)
113 read_unlock_bh(&nf_conntrack_lock);
116 /* return 0 on success, 1 in case of error */
117 static int ct_seq_show(struct seq_file *s, void *v)
119 const struct nf_conntrack_tuple_hash *hash = v;
120 const struct nf_conn *conntrack = nf_ct_tuplehash_to_ctrack(hash);
121 struct nf_conntrack_l3proto *l3proto;
122 struct nf_conntrack_l4proto *l4proto;
124 NF_CT_ASSERT(conntrack);
126 /* we only want to print DIR_ORIGINAL */
127 if (NF_CT_DIRECTION(hash))
130 l3proto = __nf_ct_l3proto_find(conntrack->tuplehash[IP_CT_DIR_ORIGINAL]
133 NF_CT_ASSERT(l3proto);
134 l4proto = __nf_ct_l4proto_find(conntrack->tuplehash[IP_CT_DIR_ORIGINAL]
136 conntrack->tuplehash[IP_CT_DIR_ORIGINAL]
137 .tuple.dst.protonum);
138 NF_CT_ASSERT(l4proto);
140 if (seq_printf(s, "%-8s %u %-8s %u %ld ",
142 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num,
144 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum,
145 timer_pending(&conntrack->timeout)
146 ? (long)(conntrack->timeout.expires - jiffies)/HZ : 0) != 0)
149 if (l3proto->print_conntrack(s, conntrack))
152 if (l4proto->print_conntrack(s, conntrack))
155 if (print_tuple(s, &conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
159 if (seq_print_counters(s, &conntrack->counters[IP_CT_DIR_ORIGINAL]))
162 if (!(test_bit(IPS_SEEN_REPLY_BIT, &conntrack->status)))
163 if (seq_printf(s, "[UNREPLIED] "))
166 if (print_tuple(s, &conntrack->tuplehash[IP_CT_DIR_REPLY].tuple,
170 if (seq_print_counters(s, &conntrack->counters[IP_CT_DIR_REPLY]))
173 if (test_bit(IPS_ASSURED_BIT, &conntrack->status))
174 if (seq_printf(s, "[ASSURED] "))
177 #if defined(CONFIG_NF_CONNTRACK_MARK)
178 if (seq_printf(s, "mark=%u ", conntrack->mark))
182 #ifdef CONFIG_NF_CONNTRACK_SECMARK
183 if (seq_printf(s, "secmark=%u ", conntrack->secmark))
187 if (seq_printf(s, "use=%u\n", atomic_read(&conntrack->ct_general.use)))
193 static struct seq_operations ct_seq_ops = {
194 .start = ct_seq_start,
200 static int ct_open(struct inode *inode, struct file *file)
202 struct seq_file *seq;
203 struct ct_iter_state *st;
206 st = kmalloc(sizeof(struct ct_iter_state), GFP_KERNEL);
209 ret = seq_open(file, &ct_seq_ops);
212 seq = file->private_data;
214 memset(st, 0, sizeof(struct ct_iter_state));
221 static const struct file_operations ct_file_ops = {
222 .owner = THIS_MODULE,
226 .release = seq_release_private,
229 static void *ct_cpu_seq_start(struct seq_file *seq, loff_t *pos)
234 return SEQ_START_TOKEN;
236 for (cpu = *pos-1; cpu < NR_CPUS; ++cpu) {
237 if (!cpu_possible(cpu))
240 return &per_cpu(nf_conntrack_stat, cpu);
246 static void *ct_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
250 for (cpu = *pos; cpu < NR_CPUS; ++cpu) {
251 if (!cpu_possible(cpu))
254 return &per_cpu(nf_conntrack_stat, cpu);
260 static void ct_cpu_seq_stop(struct seq_file *seq, void *v)
264 static int ct_cpu_seq_show(struct seq_file *seq, void *v)
266 unsigned int nr_conntracks = atomic_read(&nf_conntrack_count);
267 struct ip_conntrack_stat *st = v;
269 if (v == SEQ_START_TOKEN) {
270 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");
274 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x "
275 "%08x %08x %08x %08x %08x %08x %08x %08x \n",
297 static struct seq_operations ct_cpu_seq_ops = {
298 .start = ct_cpu_seq_start,
299 .next = ct_cpu_seq_next,
300 .stop = ct_cpu_seq_stop,
301 .show = ct_cpu_seq_show,
304 static int ct_cpu_seq_open(struct inode *inode, struct file *file)
306 return seq_open(file, &ct_cpu_seq_ops);
309 static const struct file_operations ct_cpu_seq_fops = {
310 .owner = THIS_MODULE,
311 .open = ct_cpu_seq_open,
314 .release = seq_release_private,
316 #endif /* CONFIG_PROC_FS */
320 int nf_conntrack_checksum __read_mostly = 1;
321 EXPORT_SYMBOL_GPL(nf_conntrack_checksum);
324 /* Log invalid packets of a given protocol */
325 static int log_invalid_proto_min = 0;
326 static int log_invalid_proto_max = 255;
328 static struct ctl_table_header *nf_ct_sysctl_header;
330 static ctl_table nf_ct_sysctl_table[] = {
332 .ctl_name = NET_NF_CONNTRACK_MAX,
333 .procname = "nf_conntrack_max",
334 .data = &nf_conntrack_max,
335 .maxlen = sizeof(int),
337 .proc_handler = &proc_dointvec,
340 .ctl_name = NET_NF_CONNTRACK_COUNT,
341 .procname = "nf_conntrack_count",
342 .data = &nf_conntrack_count,
343 .maxlen = sizeof(int),
345 .proc_handler = &proc_dointvec,
348 .ctl_name = NET_NF_CONNTRACK_BUCKETS,
349 .procname = "nf_conntrack_buckets",
350 .data = &nf_conntrack_htable_size,
351 .maxlen = sizeof(unsigned int),
353 .proc_handler = &proc_dointvec,
356 .ctl_name = NET_NF_CONNTRACK_CHECKSUM,
357 .procname = "nf_conntrack_checksum",
358 .data = &nf_conntrack_checksum,
359 .maxlen = sizeof(unsigned int),
361 .proc_handler = &proc_dointvec,
364 .ctl_name = NET_NF_CONNTRACK_LOG_INVALID,
365 .procname = "nf_conntrack_log_invalid",
366 .data = &nf_ct_log_invalid,
367 .maxlen = sizeof(unsigned int),
369 .proc_handler = &proc_dointvec_minmax,
370 .strategy = &sysctl_intvec,
371 .extra1 = &log_invalid_proto_min,
372 .extra2 = &log_invalid_proto_max,
378 #define NET_NF_CONNTRACK_MAX 2089
380 static ctl_table nf_ct_netfilter_table[] = {
382 .ctl_name = NET_NETFILTER,
383 .procname = "netfilter",
385 .child = nf_ct_sysctl_table,
388 .ctl_name = NET_NF_CONNTRACK_MAX,
389 .procname = "nf_conntrack_max",
390 .data = &nf_conntrack_max,
391 .maxlen = sizeof(int),
393 .proc_handler = &proc_dointvec,
398 static ctl_table nf_ct_net_table[] = {
403 .child = nf_ct_netfilter_table,
407 EXPORT_SYMBOL_GPL(nf_ct_log_invalid);
408 #endif /* CONFIG_SYSCTL */
410 static int __init nf_conntrack_standalone_init(void)
412 #ifdef CONFIG_PROC_FS
413 struct proc_dir_entry *proc, *proc_exp, *proc_stat;
417 ret = nf_conntrack_init();
421 #ifdef CONFIG_PROC_FS
422 proc = proc_net_fops_create("nf_conntrack", 0440, &ct_file_ops);
423 if (!proc) goto cleanup_init;
425 proc_exp = proc_net_fops_create("nf_conntrack_expect", 0440,
427 if (!proc_exp) goto cleanup_proc;
429 proc_stat = create_proc_entry("nf_conntrack", S_IRUGO, proc_net_stat);
431 goto cleanup_proc_exp;
433 proc_stat->proc_fops = &ct_cpu_seq_fops;
434 proc_stat->owner = THIS_MODULE;
437 nf_ct_sysctl_header = register_sysctl_table(nf_ct_net_table);
438 if (nf_ct_sysctl_header == NULL) {
439 printk("nf_conntrack: can't register to sysctl.\n");
441 goto cleanup_proc_stat;
449 #ifdef CONFIG_PROC_FS
450 remove_proc_entry("nf_conntrack", proc_net_stat);
452 proc_net_remove("nf_conntrack_expect");
454 proc_net_remove("nf_conntrack");
456 #endif /* CNFIG_PROC_FS */
457 nf_conntrack_cleanup();
461 static void __exit nf_conntrack_standalone_fini(void)
464 unregister_sysctl_table(nf_ct_sysctl_header);
466 #ifdef CONFIG_PROC_FS
467 remove_proc_entry("nf_conntrack", proc_net_stat);
468 proc_net_remove("nf_conntrack_expect");
469 proc_net_remove("nf_conntrack");
470 #endif /* CNFIG_PROC_FS */
471 nf_conntrack_cleanup();
474 module_init(nf_conntrack_standalone_init);
475 module_exit(nf_conntrack_standalone_fini);
477 /* Some modules need us, but don't depend directly on any symbol.
478 They should call this. */
479 void need_conntrack(void)
482 EXPORT_SYMBOL_GPL(need_conntrack);