blob: fe536b20408bb90355f7e37e2d182ad8c31f4558 [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>
17#ifdef CONFIG_SYSCTL
18#include <linux/sysctl.h>
19#endif
20
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080021#include <net/netfilter/nf_conntrack.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010022#include <net/netfilter/nf_conntrack_core.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080023#include <net/netfilter/nf_conntrack_l3proto.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010024#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010025#include <net/netfilter/nf_conntrack_expect.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080026#include <net/netfilter/nf_conntrack_helper.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080027
28#if 0
29#define DEBUGP printk
30#else
31#define DEBUGP(format, args...)
32#endif
33
34MODULE_LICENSE("GPL");
35
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080036#ifdef CONFIG_PROC_FS
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010037int
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080038print_tuple(struct seq_file *s, const struct nf_conntrack_tuple *tuple,
39 struct nf_conntrack_l3proto *l3proto,
Martin Josefsson605dcad2006-11-29 02:35:06 +010040 struct nf_conntrack_l4proto *l4proto)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080041{
Martin Josefsson605dcad2006-11-29 02:35:06 +010042 return l3proto->print_tuple(s, tuple) || l4proto->print_tuple(s, tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080043}
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010044EXPORT_SYMBOL_GPL(print_tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080045
46#ifdef CONFIG_NF_CT_ACCT
47static unsigned int
48seq_print_counters(struct seq_file *s,
49 const struct ip_conntrack_counter *counter)
50{
51 return seq_printf(s, "packets=%llu bytes=%llu ",
52 (unsigned long long)counter->packets,
53 (unsigned long long)counter->bytes);
54}
55#else
56#define seq_print_counters(x, y) 0
57#endif
58
59struct ct_iter_state {
60 unsigned int bucket;
61};
62
Patrick McHardyf205c5e2007-07-07 22:28:14 -070063static struct hlist_node *ct_get_first(struct seq_file *seq)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080064{
65 struct ct_iter_state *st = seq->private;
66
67 for (st->bucket = 0;
68 st->bucket < nf_conntrack_htable_size;
69 st->bucket++) {
Patrick McHardyf205c5e2007-07-07 22:28:14 -070070 if (!hlist_empty(&nf_conntrack_hash[st->bucket]))
71 return nf_conntrack_hash[st->bucket].first;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080072 }
73 return NULL;
74}
75
Patrick McHardyf205c5e2007-07-07 22:28:14 -070076static struct hlist_node *ct_get_next(struct seq_file *seq,
77 struct hlist_node *head)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080078{
79 struct ct_iter_state *st = seq->private;
80
81 head = head->next;
Patrick McHardyf205c5e2007-07-07 22:28:14 -070082 while (head == NULL) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083 if (++st->bucket >= nf_conntrack_htable_size)
84 return NULL;
Patrick McHardyf205c5e2007-07-07 22:28:14 -070085 head = nf_conntrack_hash[st->bucket].first;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080086 }
87 return head;
88}
89
Patrick McHardyf205c5e2007-07-07 22:28:14 -070090static struct hlist_node *ct_get_idx(struct seq_file *seq, loff_t pos)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080091{
Patrick McHardyf205c5e2007-07-07 22:28:14 -070092 struct hlist_node *head = ct_get_first(seq);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080093
94 if (head)
95 while (pos && (head = ct_get_next(seq, head)))
96 pos--;
97 return pos ? NULL : head;
98}
99
100static void *ct_seq_start(struct seq_file *seq, loff_t *pos)
101{
102 read_lock_bh(&nf_conntrack_lock);
103 return ct_get_idx(seq, *pos);
104}
105
106static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
107{
108 (*pos)++;
109 return ct_get_next(s, v);
110}
111
112static void ct_seq_stop(struct seq_file *s, void *v)
113{
114 read_unlock_bh(&nf_conntrack_lock);
115}
116
117/* return 0 on success, 1 in case of error */
118static int ct_seq_show(struct seq_file *s, void *v)
119{
120 const struct nf_conntrack_tuple_hash *hash = v;
121 const struct nf_conn *conntrack = nf_ct_tuplehash_to_ctrack(hash);
122 struct nf_conntrack_l3proto *l3proto;
Martin Josefsson605dcad2006-11-29 02:35:06 +0100123 struct nf_conntrack_l4proto *l4proto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800124
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800125 NF_CT_ASSERT(conntrack);
126
127 /* we only want to print DIR_ORIGINAL */
128 if (NF_CT_DIRECTION(hash))
129 return 0;
130
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800131 l3proto = __nf_ct_l3proto_find(conntrack->tuplehash[IP_CT_DIR_ORIGINAL]
132 .tuple.src.l3num);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800133
134 NF_CT_ASSERT(l3proto);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100135 l4proto = __nf_ct_l4proto_find(conntrack->tuplehash[IP_CT_DIR_ORIGINAL]
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800136 .tuple.src.l3num,
137 conntrack->tuplehash[IP_CT_DIR_ORIGINAL]
138 .tuple.dst.protonum);
Martin Josefsson605dcad2006-11-29 02:35:06 +0100139 NF_CT_ASSERT(l4proto);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800140
141 if (seq_printf(s, "%-8s %u %-8s %u %ld ",
142 l3proto->name,
143 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100144 l4proto->name,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800145 conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum,
146 timer_pending(&conntrack->timeout)
147 ? (long)(conntrack->timeout.expires - jiffies)/HZ : 0) != 0)
148 return -ENOSPC;
149
150 if (l3proto->print_conntrack(s, conntrack))
151 return -ENOSPC;
152
Martin Josefsson605dcad2006-11-29 02:35:06 +0100153 if (l4proto->print_conntrack(s, conntrack))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800154 return -ENOSPC;
155
156 if (print_tuple(s, &conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100157 l3proto, l4proto))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800158 return -ENOSPC;
159
160 if (seq_print_counters(s, &conntrack->counters[IP_CT_DIR_ORIGINAL]))
161 return -ENOSPC;
162
163 if (!(test_bit(IPS_SEEN_REPLY_BIT, &conntrack->status)))
164 if (seq_printf(s, "[UNREPLIED] "))
165 return -ENOSPC;
166
167 if (print_tuple(s, &conntrack->tuplehash[IP_CT_DIR_REPLY].tuple,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100168 l3proto, l4proto))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800169 return -ENOSPC;
170
171 if (seq_print_counters(s, &conntrack->counters[IP_CT_DIR_REPLY]))
172 return -ENOSPC;
173
174 if (test_bit(IPS_ASSURED_BIT, &conntrack->status))
175 if (seq_printf(s, "[ASSURED] "))
176 return -ENOSPC;
177
178#if defined(CONFIG_NF_CONNTRACK_MARK)
179 if (seq_printf(s, "mark=%u ", conntrack->mark))
180 return -ENOSPC;
181#endif
182
James Morris7c9728c2006-06-09 00:31:46 -0700183#ifdef CONFIG_NF_CONNTRACK_SECMARK
184 if (seq_printf(s, "secmark=%u ", conntrack->secmark))
185 return -ENOSPC;
186#endif
187
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800188 if (seq_printf(s, "use=%u\n", atomic_read(&conntrack->ct_general.use)))
189 return -ENOSPC;
190
191 return 0;
192}
193
194static struct seq_operations ct_seq_ops = {
195 .start = ct_seq_start,
196 .next = ct_seq_next,
197 .stop = ct_seq_stop,
198 .show = ct_seq_show
199};
200
201static int ct_open(struct inode *inode, struct file *file)
202{
203 struct seq_file *seq;
204 struct ct_iter_state *st;
205 int ret;
206
207 st = kmalloc(sizeof(struct ct_iter_state), GFP_KERNEL);
208 if (st == NULL)
209 return -ENOMEM;
210 ret = seq_open(file, &ct_seq_ops);
211 if (ret)
212 goto out_free;
213 seq = file->private_data;
214 seq->private = st;
215 memset(st, 0, sizeof(struct ct_iter_state));
216 return ret;
217out_free:
218 kfree(st);
219 return ret;
220}
221
Arjan van de Venda7071d2007-02-12 00:55:36 -0800222static const struct file_operations ct_file_ops = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800223 .owner = THIS_MODULE,
224 .open = ct_open,
225 .read = seq_read,
226 .llseek = seq_lseek,
227 .release = seq_release_private,
228};
229
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800230static void *ct_cpu_seq_start(struct seq_file *seq, loff_t *pos)
231{
232 int cpu;
233
234 if (*pos == 0)
235 return SEQ_START_TOKEN;
236
237 for (cpu = *pos-1; cpu < NR_CPUS; ++cpu) {
238 if (!cpu_possible(cpu))
239 continue;
240 *pos = cpu + 1;
241 return &per_cpu(nf_conntrack_stat, cpu);
242 }
243
244 return NULL;
245}
246
247static void *ct_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
248{
249 int cpu;
250
251 for (cpu = *pos; cpu < NR_CPUS; ++cpu) {
252 if (!cpu_possible(cpu))
253 continue;
254 *pos = cpu + 1;
255 return &per_cpu(nf_conntrack_stat, cpu);
256 }
257
258 return NULL;
259}
260
261static void ct_cpu_seq_stop(struct seq_file *seq, void *v)
262{
263}
264
265static int ct_cpu_seq_show(struct seq_file *seq, void *v)
266{
267 unsigned int nr_conntracks = atomic_read(&nf_conntrack_count);
268 struct ip_conntrack_stat *st = v;
269
270 if (v == SEQ_START_TOKEN) {
271 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");
272 return 0;
273 }
274
275 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x "
276 "%08x %08x %08x %08x %08x %08x %08x %08x \n",
277 nr_conntracks,
278 st->searched,
279 st->found,
280 st->new,
281 st->invalid,
282 st->ignore,
283 st->delete,
284 st->delete_list,
285 st->insert,
286 st->insert_failed,
287 st->drop,
288 st->early_drop,
289 st->error,
290
291 st->expect_new,
292 st->expect_create,
293 st->expect_delete
294 );
295 return 0;
296}
297
298static struct seq_operations ct_cpu_seq_ops = {
299 .start = ct_cpu_seq_start,
300 .next = ct_cpu_seq_next,
301 .stop = ct_cpu_seq_stop,
302 .show = ct_cpu_seq_show,
303};
304
305static int ct_cpu_seq_open(struct inode *inode, struct file *file)
306{
307 return seq_open(file, &ct_cpu_seq_ops);
308}
309
Arjan van de Venda7071d2007-02-12 00:55:36 -0800310static const struct file_operations ct_cpu_seq_fops = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800311 .owner = THIS_MODULE,
312 .open = ct_cpu_seq_open,
313 .read = seq_read,
314 .llseek = seq_lseek,
315 .release = seq_release_private,
316};
317#endif /* CONFIG_PROC_FS */
318
319/* Sysctl support */
320
Brian Haley94aec082006-09-18 00:05:22 -0700321int nf_conntrack_checksum __read_mostly = 1;
Patrick McHardy13b18332006-12-02 22:11:25 -0800322EXPORT_SYMBOL_GPL(nf_conntrack_checksum);
Adrian Bunk72b55822006-07-24 22:53:12 -0700323
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800324#ifdef CONFIG_SYSCTL
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800325/* Log invalid packets of a given protocol */
326static int log_invalid_proto_min = 0;
327static int log_invalid_proto_max = 255;
328
329static struct ctl_table_header *nf_ct_sysctl_header;
330
331static ctl_table nf_ct_sysctl_table[] = {
332 {
333 .ctl_name = NET_NF_CONNTRACK_MAX,
334 .procname = "nf_conntrack_max",
335 .data = &nf_conntrack_max,
336 .maxlen = sizeof(int),
337 .mode = 0644,
338 .proc_handler = &proc_dointvec,
339 },
340 {
341 .ctl_name = NET_NF_CONNTRACK_COUNT,
342 .procname = "nf_conntrack_count",
343 .data = &nf_conntrack_count,
344 .maxlen = sizeof(int),
345 .mode = 0444,
346 .proc_handler = &proc_dointvec,
347 },
348 {
349 .ctl_name = NET_NF_CONNTRACK_BUCKETS,
350 .procname = "nf_conntrack_buckets",
351 .data = &nf_conntrack_htable_size,
352 .maxlen = sizeof(unsigned int),
353 .mode = 0444,
354 .proc_handler = &proc_dointvec,
355 },
356 {
Patrick McHardy39a27a32006-05-29 18:23:54 -0700357 .ctl_name = NET_NF_CONNTRACK_CHECKSUM,
358 .procname = "nf_conntrack_checksum",
359 .data = &nf_conntrack_checksum,
360 .maxlen = sizeof(unsigned int),
361 .mode = 0644,
362 .proc_handler = &proc_dointvec,
363 },
364 {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800365 .ctl_name = NET_NF_CONNTRACK_LOG_INVALID,
366 .procname = "nf_conntrack_log_invalid",
367 .data = &nf_ct_log_invalid,
368 .maxlen = sizeof(unsigned int),
369 .mode = 0644,
370 .proc_handler = &proc_dointvec_minmax,
371 .strategy = &sysctl_intvec,
372 .extra1 = &log_invalid_proto_min,
373 .extra2 = &log_invalid_proto_max,
374 },
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800375
376 { .ctl_name = 0 }
377};
378
379#define NET_NF_CONNTRACK_MAX 2089
380
381static ctl_table nf_ct_netfilter_table[] = {
382 {
383 .ctl_name = NET_NETFILTER,
384 .procname = "netfilter",
385 .mode = 0555,
386 .child = nf_ct_sysctl_table,
387 },
388 {
389 .ctl_name = NET_NF_CONNTRACK_MAX,
390 .procname = "nf_conntrack_max",
391 .data = &nf_conntrack_max,
392 .maxlen = sizeof(int),
393 .mode = 0644,
394 .proc_handler = &proc_dointvec,
395 },
396 { .ctl_name = 0 }
397};
398
399static ctl_table nf_ct_net_table[] = {
400 {
401 .ctl_name = CTL_NET,
402 .procname = "net",
403 .mode = 0555,
404 .child = nf_ct_netfilter_table,
405 },
406 { .ctl_name = 0 }
407};
Patrick McHardy13b18332006-12-02 22:11:25 -0800408EXPORT_SYMBOL_GPL(nf_ct_log_invalid);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800409#endif /* CONFIG_SYSCTL */
410
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800411static int __init nf_conntrack_standalone_init(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800412{
Patrick McHardy32292a72006-04-06 14:11:30 -0700413#ifdef CONFIG_PROC_FS
414 struct proc_dir_entry *proc, *proc_exp, *proc_stat;
415#endif
416 int ret = 0;
417
418 ret = nf_conntrack_init();
419 if (ret < 0)
420 return ret;
421
422#ifdef CONFIG_PROC_FS
423 proc = proc_net_fops_create("nf_conntrack", 0440, &ct_file_ops);
424 if (!proc) goto cleanup_init;
425
426 proc_exp = proc_net_fops_create("nf_conntrack_expect", 0440,
427 &exp_file_ops);
428 if (!proc_exp) goto cleanup_proc;
429
430 proc_stat = create_proc_entry("nf_conntrack", S_IRUGO, proc_net_stat);
431 if (!proc_stat)
432 goto cleanup_proc_exp;
433
434 proc_stat->proc_fops = &ct_cpu_seq_fops;
435 proc_stat->owner = THIS_MODULE;
436#endif
437#ifdef CONFIG_SYSCTL
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800438 nf_ct_sysctl_header = register_sysctl_table(nf_ct_net_table);
Patrick McHardy32292a72006-04-06 14:11:30 -0700439 if (nf_ct_sysctl_header == NULL) {
440 printk("nf_conntrack: can't register to sysctl.\n");
441 ret = -ENOMEM;
442 goto cleanup_proc_stat;
443 }
444#endif
445 return ret;
446
447#ifdef CONFIG_SYSCTL
448 cleanup_proc_stat:
449#endif
450#ifdef CONFIG_PROC_FS
451 remove_proc_entry("nf_conntrack", proc_net_stat);
452 cleanup_proc_exp:
453 proc_net_remove("nf_conntrack_expect");
454 cleanup_proc:
455 proc_net_remove("nf_conntrack");
456 cleanup_init:
457#endif /* CNFIG_PROC_FS */
458 nf_conntrack_cleanup();
459 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800460}
461
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800462static void __exit nf_conntrack_standalone_fini(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800463{
Patrick McHardy32292a72006-04-06 14:11:30 -0700464#ifdef CONFIG_SYSCTL
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800465 unregister_sysctl_table(nf_ct_sysctl_header);
Patrick McHardy32292a72006-04-06 14:11:30 -0700466#endif
467#ifdef CONFIG_PROC_FS
468 remove_proc_entry("nf_conntrack", proc_net_stat);
469 proc_net_remove("nf_conntrack_expect");
470 proc_net_remove("nf_conntrack");
471#endif /* CNFIG_PROC_FS */
472 nf_conntrack_cleanup();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800473}
474
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800475module_init(nf_conntrack_standalone_init);
476module_exit(nf_conntrack_standalone_fini);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800477
478/* Some modules need us, but don't depend directly on any symbol.
479 They should call this. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800480void need_conntrack(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800481{
482}
Patrick McHardy13b18332006-12-02 22:11:25 -0800483EXPORT_SYMBOL_GPL(need_conntrack);