blob: 3a020720e40b73fdd54add29d972c5f64aa5536b [file] [log] [blame]
Patrick McHardye4bd8bc2006-11-29 02:35:22 +01001/* ip_conntrack proc compat - based on ip_conntrack_standalone.c
2 *
3 * (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <linux/types.h>
11#include <linux/proc_fs.h>
12#include <linux/seq_file.h>
13#include <linux/percpu.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020014#include <net/net_namespace.h>
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010015
16#include <linux/netfilter.h>
17#include <net/netfilter/nf_conntrack_core.h>
18#include <net/netfilter/nf_conntrack_l3proto.h>
19#include <net/netfilter/nf_conntrack_l4proto.h>
20#include <net/netfilter/nf_conntrack_expect.h>
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -070021#include <net/netfilter/nf_conntrack_acct.h>
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010022
23struct ct_iter_state {
24 unsigned int bucket;
25};
26
Patrick McHardyf205c5e2007-07-07 22:28:14 -070027static struct hlist_node *ct_get_first(struct seq_file *seq)
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010028{
29 struct ct_iter_state *st = seq->private;
Patrick McHardy76507f62008-01-31 04:38:38 -080030 struct hlist_node *n;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010031
32 for (st->bucket = 0;
33 st->bucket < nf_conntrack_htable_size;
34 st->bucket++) {
Patrick McHardy76507f62008-01-31 04:38:38 -080035 n = rcu_dereference(nf_conntrack_hash[st->bucket].first);
36 if (n)
37 return n;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010038 }
39 return NULL;
40}
41
Patrick McHardyf205c5e2007-07-07 22:28:14 -070042static struct hlist_node *ct_get_next(struct seq_file *seq,
43 struct hlist_node *head)
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010044{
45 struct ct_iter_state *st = seq->private;
46
Patrick McHardy76507f62008-01-31 04:38:38 -080047 head = rcu_dereference(head->next);
Patrick McHardyf205c5e2007-07-07 22:28:14 -070048 while (head == NULL) {
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010049 if (++st->bucket >= nf_conntrack_htable_size)
50 return NULL;
Patrick McHardy76507f62008-01-31 04:38:38 -080051 head = rcu_dereference(nf_conntrack_hash[st->bucket].first);
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010052 }
53 return head;
54}
55
Patrick McHardyf205c5e2007-07-07 22:28:14 -070056static struct hlist_node *ct_get_idx(struct seq_file *seq, loff_t pos)
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010057{
Patrick McHardyf205c5e2007-07-07 22:28:14 -070058 struct hlist_node *head = ct_get_first(seq);
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010059
60 if (head)
61 while (pos && (head = ct_get_next(seq, head)))
62 pos--;
63 return pos ? NULL : head;
64}
65
66static void *ct_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy76507f62008-01-31 04:38:38 -080067 __acquires(RCU)
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010068{
Patrick McHardy76507f62008-01-31 04:38:38 -080069 rcu_read_lock();
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010070 return ct_get_idx(seq, *pos);
71}
72
73static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
74{
75 (*pos)++;
76 return ct_get_next(s, v);
77}
78
79static void ct_seq_stop(struct seq_file *s, void *v)
Patrick McHardy76507f62008-01-31 04:38:38 -080080 __releases(RCU)
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010081{
Patrick McHardy76507f62008-01-31 04:38:38 -080082 rcu_read_unlock();
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010083}
84
85static int ct_seq_show(struct seq_file *s, void *v)
86{
87 const struct nf_conntrack_tuple_hash *hash = v;
88 const struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(hash);
Jan Engelhardt32948582008-01-31 04:53:24 -080089 const struct nf_conntrack_l3proto *l3proto;
90 const struct nf_conntrack_l4proto *l4proto;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010091
92 NF_CT_ASSERT(ct);
93
94 /* we only want to print DIR_ORIGINAL */
95 if (NF_CT_DIRECTION(hash))
96 return 0;
Patrick McHardy5e8fbe22008-04-14 11:15:52 +020097 if (nf_ct_l3num(ct) != AF_INET)
Patrick McHardye4bd8bc2006-11-29 02:35:22 +010098 return 0;
99
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200100 l3proto = __nf_ct_l3proto_find(nf_ct_l3num(ct));
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100101 NF_CT_ASSERT(l3proto);
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200102 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100103 NF_CT_ASSERT(l4proto);
104
105 if (seq_printf(s, "%-8s %u %ld ",
Patrick McHardy5e8fbe22008-04-14 11:15:52 +0200106 l4proto->name, nf_ct_protonum(ct),
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100107 timer_pending(&ct->timeout)
108 ? (long)(ct->timeout.expires - jiffies)/HZ : 0) != 0)
109 return -ENOSPC;
110
Patrick McHardyc71e9162008-01-14 23:49:37 -0800111 if (l4proto->print_conntrack && l4proto->print_conntrack(s, ct))
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100112 return -ENOSPC;
113
114 if (print_tuple(s, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
115 l3proto, l4proto))
116 return -ENOSPC;
117
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700118 if (seq_print_acct(s, ct, IP_CT_DIR_ORIGINAL))
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100119 return -ENOSPC;
120
121 if (!(test_bit(IPS_SEEN_REPLY_BIT, &ct->status)))
122 if (seq_printf(s, "[UNREPLIED] "))
123 return -ENOSPC;
124
125 if (print_tuple(s, &ct->tuplehash[IP_CT_DIR_REPLY].tuple,
126 l3proto, l4proto))
127 return -ENOSPC;
128
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -0700129 if (seq_print_acct(s, ct, IP_CT_DIR_REPLY))
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100130 return -ENOSPC;
131
132 if (test_bit(IPS_ASSURED_BIT, &ct->status))
133 if (seq_printf(s, "[ASSURED] "))
134 return -ENOSPC;
135
136#ifdef CONFIG_NF_CONNTRACK_MARK
137 if (seq_printf(s, "mark=%u ", ct->mark))
138 return -ENOSPC;
139#endif
140
141#ifdef CONFIG_NF_CONNTRACK_SECMARK
142 if (seq_printf(s, "secmark=%u ", ct->secmark))
143 return -ENOSPC;
144#endif
145
146 if (seq_printf(s, "use=%u\n", atomic_read(&ct->ct_general.use)))
147 return -ENOSPC;
148
149 return 0;
150}
151
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700152static const struct seq_operations ct_seq_ops = {
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100153 .start = ct_seq_start,
154 .next = ct_seq_next,
155 .stop = ct_seq_stop,
156 .show = ct_seq_show
157};
158
159static int ct_open(struct inode *inode, struct file *file)
160{
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700161 return seq_open_private(file, &ct_seq_ops,
162 sizeof(struct ct_iter_state));
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100163}
164
Arjan van de Ven9a321442007-02-12 00:55:35 -0800165static const struct file_operations ct_file_ops = {
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100166 .owner = THIS_MODULE,
167 .open = ct_open,
168 .read = seq_read,
169 .llseek = seq_lseek,
170 .release = seq_release_private,
171};
172
173/* expects */
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700174struct ct_expect_iter_state {
175 unsigned int bucket;
176};
177
178static struct hlist_node *ct_expect_get_first(struct seq_file *seq)
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100179{
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700180 struct ct_expect_iter_state *st = seq->private;
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800181 struct hlist_node *n;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100182
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700183 for (st->bucket = 0; st->bucket < nf_ct_expect_hsize; st->bucket++) {
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800184 n = rcu_dereference(nf_ct_expect_hash[st->bucket].first);
185 if (n)
186 return n;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100187 }
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700188 return NULL;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100189}
190
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700191static struct hlist_node *ct_expect_get_next(struct seq_file *seq,
192 struct hlist_node *head)
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100193{
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700194 struct ct_expect_iter_state *st = seq->private;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100195
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800196 head = rcu_dereference(head->next);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700197 while (head == NULL) {
198 if (++st->bucket >= nf_ct_expect_hsize)
199 return NULL;
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800200 head = rcu_dereference(nf_ct_expect_hash[st->bucket].first);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700201 }
202 return head;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100203}
204
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700205static struct hlist_node *ct_expect_get_idx(struct seq_file *seq, loff_t pos)
206{
207 struct hlist_node *head = ct_expect_get_first(seq);
208
209 if (head)
210 while (pos && (head = ct_expect_get_next(seq, head)))
211 pos--;
212 return pos ? NULL : head;
213}
214
215static void *exp_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy76507f62008-01-31 04:38:38 -0800216 __acquires(RCU)
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700217{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800218 rcu_read_lock();
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700219 return ct_expect_get_idx(seq, *pos);
220}
221
222static void *exp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
223{
224 (*pos)++;
225 return ct_expect_get_next(seq, v);
226}
227
228static void exp_seq_stop(struct seq_file *seq, void *v)
Patrick McHardy76507f62008-01-31 04:38:38 -0800229 __releases(RCU)
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100230{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800231 rcu_read_unlock();
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100232}
233
234static int exp_seq_show(struct seq_file *s, void *v)
235{
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700236 struct nf_conntrack_expect *exp;
Jan Engelhardt32948582008-01-31 04:53:24 -0800237 const struct hlist_node *n = v;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700238
239 exp = hlist_entry(n, struct nf_conntrack_expect, hnode);
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100240
241 if (exp->tuple.src.l3num != AF_INET)
242 return 0;
243
244 if (exp->timeout.function)
245 seq_printf(s, "%ld ", timer_pending(&exp->timeout)
246 ? (long)(exp->timeout.expires - jiffies)/HZ : 0);
247 else
248 seq_printf(s, "- ");
249
250 seq_printf(s, "proto=%u ", exp->tuple.dst.protonum);
251
252 print_tuple(s, &exp->tuple,
253 __nf_ct_l3proto_find(exp->tuple.src.l3num),
254 __nf_ct_l4proto_find(exp->tuple.src.l3num,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900255 exp->tuple.dst.protonum));
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100256 return seq_putc(s, '\n');
257}
258
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700259static const struct seq_operations exp_seq_ops = {
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100260 .start = exp_seq_start,
261 .next = exp_seq_next,
262 .stop = exp_seq_stop,
263 .show = exp_seq_show
264};
265
266static int exp_open(struct inode *inode, struct file *file)
267{
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700268 return seq_open_private(file, &exp_seq_ops,
269 sizeof(struct ct_expect_iter_state));
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100270}
271
Arjan van de Ven9a321442007-02-12 00:55:35 -0800272static const struct file_operations ip_exp_file_ops = {
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100273 .owner = THIS_MODULE,
274 .open = exp_open,
275 .read = seq_read,
276 .llseek = seq_lseek,
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700277 .release = seq_release_private,
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100278};
279
280static void *ct_cpu_seq_start(struct seq_file *seq, loff_t *pos)
281{
282 int cpu;
283
284 if (*pos == 0)
285 return SEQ_START_TOKEN;
286
287 for (cpu = *pos-1; cpu < NR_CPUS; ++cpu) {
288 if (!cpu_possible(cpu))
289 continue;
290 *pos = cpu+1;
291 return &per_cpu(nf_conntrack_stat, cpu);
292 }
293
294 return NULL;
295}
296
297static void *ct_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
298{
299 int cpu;
300
301 for (cpu = *pos; cpu < NR_CPUS; ++cpu) {
302 if (!cpu_possible(cpu))
303 continue;
304 *pos = cpu+1;
305 return &per_cpu(nf_conntrack_stat, cpu);
306 }
307
308 return NULL;
309}
310
311static void ct_cpu_seq_stop(struct seq_file *seq, void *v)
312{
313}
314
315static int ct_cpu_seq_show(struct seq_file *seq, void *v)
316{
317 unsigned int nr_conntracks = atomic_read(&nf_conntrack_count);
Jan Engelhardt32948582008-01-31 04:53:24 -0800318 const struct ip_conntrack_stat *st = v;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100319
320 if (v == SEQ_START_TOKEN) {
321 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");
322 return 0;
323 }
324
325 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x "
326 "%08x %08x %08x %08x %08x %08x %08x %08x \n",
327 nr_conntracks,
328 st->searched,
329 st->found,
330 st->new,
331 st->invalid,
332 st->ignore,
333 st->delete,
334 st->delete_list,
335 st->insert,
336 st->insert_failed,
337 st->drop,
338 st->early_drop,
339 st->error,
340
341 st->expect_new,
342 st->expect_create,
343 st->expect_delete
344 );
345 return 0;
346}
347
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700348static const struct seq_operations ct_cpu_seq_ops = {
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100349 .start = ct_cpu_seq_start,
350 .next = ct_cpu_seq_next,
351 .stop = ct_cpu_seq_stop,
352 .show = ct_cpu_seq_show,
353};
354
355static int ct_cpu_seq_open(struct inode *inode, struct file *file)
356{
357 return seq_open(file, &ct_cpu_seq_ops);
358}
359
Arjan van de Ven9a321442007-02-12 00:55:35 -0800360static const struct file_operations ct_cpu_seq_fops = {
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100361 .owner = THIS_MODULE,
362 .open = ct_cpu_seq_open,
363 .read = seq_read,
364 .llseek = seq_lseek,
Pavel Emelyanov665bba12008-02-29 11:39:17 -0800365 .release = seq_release,
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100366};
367
368int __init nf_conntrack_ipv4_compat_init(void)
369{
370 struct proc_dir_entry *proc, *proc_exp, *proc_stat;
371
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200372 proc = proc_net_fops_create(&init_net, "ip_conntrack", 0440, &ct_file_ops);
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100373 if (!proc)
374 goto err1;
375
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200376 proc_exp = proc_net_fops_create(&init_net, "ip_conntrack_expect", 0440,
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100377 &ip_exp_file_ops);
378 if (!proc_exp)
379 goto err2;
380
Denis V. Lunev8eeee8b2008-03-27 16:55:53 -0700381 proc_stat = proc_create("ip_conntrack", S_IRUGO,
382 init_net.proc_net_stat, &ct_cpu_seq_fops);
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100383 if (!proc_stat)
384 goto err3;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100385 return 0;
386
387err3:
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200388 proc_net_remove(&init_net, "ip_conntrack_expect");
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100389err2:
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200390 proc_net_remove(&init_net, "ip_conntrack");
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100391err1:
392 return -ENOMEM;
393}
394
395void __exit nf_conntrack_ipv4_compat_fini(void)
396{
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200397 remove_proc_entry("ip_conntrack", init_net.proc_net_stat);
398 proc_net_remove(&init_net, "ip_conntrack_expect");
399 proc_net_remove(&init_net, "ip_conntrack");
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100400}