]> err.no Git - linux-2.6/blob - net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
[linux-2.6] / net / ipv4 / netfilter / nf_conntrack_l3proto_ipv4_compat.c
1 /* 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>
14 #include <net/net_namespace.h>
15
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>
21
22 #ifdef CONFIG_NF_CT_ACCT
23 static unsigned int
24 seq_print_counters(struct seq_file *s,
25                    const struct ip_conntrack_counter *counter)
26 {
27         return seq_printf(s, "packets=%llu bytes=%llu ",
28                           (unsigned long long)counter->packets,
29                           (unsigned long long)counter->bytes);
30 }
31 #else
32 #define seq_print_counters(x, y)        0
33 #endif
34
35 struct ct_iter_state {
36         unsigned int bucket;
37 };
38
39 static struct hlist_node *ct_get_first(struct seq_file *seq)
40 {
41         struct ct_iter_state *st = seq->private;
42
43         for (st->bucket = 0;
44              st->bucket < nf_conntrack_htable_size;
45              st->bucket++) {
46                 if (!hlist_empty(&nf_conntrack_hash[st->bucket]))
47                         return nf_conntrack_hash[st->bucket].first;
48         }
49         return NULL;
50 }
51
52 static struct hlist_node *ct_get_next(struct seq_file *seq,
53                                       struct hlist_node *head)
54 {
55         struct ct_iter_state *st = seq->private;
56
57         head = head->next;
58         while (head == NULL) {
59                 if (++st->bucket >= nf_conntrack_htable_size)
60                         return NULL;
61                 head = nf_conntrack_hash[st->bucket].first;
62         }
63         return head;
64 }
65
66 static struct hlist_node *ct_get_idx(struct seq_file *seq, loff_t pos)
67 {
68         struct hlist_node *head = ct_get_first(seq);
69
70         if (head)
71                 while (pos && (head = ct_get_next(seq, head)))
72                         pos--;
73         return pos ? NULL : head;
74 }
75
76 static void *ct_seq_start(struct seq_file *seq, loff_t *pos)
77 {
78         read_lock_bh(&nf_conntrack_lock);
79         return ct_get_idx(seq, *pos);
80 }
81
82 static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
83 {
84         (*pos)++;
85         return ct_get_next(s, v);
86 }
87
88 static void ct_seq_stop(struct seq_file *s, void *v)
89 {
90         read_unlock_bh(&nf_conntrack_lock);
91 }
92
93 static int ct_seq_show(struct seq_file *s, void *v)
94 {
95         const struct nf_conntrack_tuple_hash *hash = v;
96         const struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(hash);
97         struct nf_conntrack_l3proto *l3proto;
98         struct nf_conntrack_l4proto *l4proto;
99
100         NF_CT_ASSERT(ct);
101
102         /* we only want to print DIR_ORIGINAL */
103         if (NF_CT_DIRECTION(hash))
104                 return 0;
105         if (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num != AF_INET)
106                 return 0;
107
108         l3proto = __nf_ct_l3proto_find(ct->tuplehash[IP_CT_DIR_ORIGINAL]
109                                        .tuple.src.l3num);
110         NF_CT_ASSERT(l3proto);
111         l4proto = __nf_ct_l4proto_find(ct->tuplehash[IP_CT_DIR_ORIGINAL]
112                                        .tuple.src.l3num,
113                                        ct->tuplehash[IP_CT_DIR_ORIGINAL]
114                                        .tuple.dst.protonum);
115         NF_CT_ASSERT(l4proto);
116
117         if (seq_printf(s, "%-8s %u %ld ",
118                       l4proto->name,
119                       ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum,
120                       timer_pending(&ct->timeout)
121                       ? (long)(ct->timeout.expires - jiffies)/HZ : 0) != 0)
122                 return -ENOSPC;
123
124         if (l3proto->print_conntrack(s, ct))
125                 return -ENOSPC;
126
127         if (l4proto->print_conntrack(s, ct))
128                 return -ENOSPC;
129
130         if (print_tuple(s, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
131                         l3proto, l4proto))
132                 return -ENOSPC;
133
134         if (seq_print_counters(s, &ct->counters[IP_CT_DIR_ORIGINAL]))
135                 return -ENOSPC;
136
137         if (!(test_bit(IPS_SEEN_REPLY_BIT, &ct->status)))
138                 if (seq_printf(s, "[UNREPLIED] "))
139                         return -ENOSPC;
140
141         if (print_tuple(s, &ct->tuplehash[IP_CT_DIR_REPLY].tuple,
142                         l3proto, l4proto))
143                 return -ENOSPC;
144
145         if (seq_print_counters(s, &ct->counters[IP_CT_DIR_REPLY]))
146                 return -ENOSPC;
147
148         if (test_bit(IPS_ASSURED_BIT, &ct->status))
149                 if (seq_printf(s, "[ASSURED] "))
150                         return -ENOSPC;
151
152 #ifdef CONFIG_NF_CONNTRACK_MARK
153         if (seq_printf(s, "mark=%u ", ct->mark))
154                 return -ENOSPC;
155 #endif
156
157 #ifdef CONFIG_NF_CONNTRACK_SECMARK
158         if (seq_printf(s, "secmark=%u ", ct->secmark))
159                 return -ENOSPC;
160 #endif
161
162         if (seq_printf(s, "use=%u\n", atomic_read(&ct->ct_general.use)))
163                 return -ENOSPC;
164
165         return 0;
166 }
167
168 static const struct seq_operations ct_seq_ops = {
169         .start = ct_seq_start,
170         .next  = ct_seq_next,
171         .stop  = ct_seq_stop,
172         .show  = ct_seq_show
173 };
174
175 static int ct_open(struct inode *inode, struct file *file)
176 {
177         return seq_open_private(file, &ct_seq_ops,
178                         sizeof(struct ct_iter_state));
179 }
180
181 static const struct file_operations ct_file_ops = {
182         .owner   = THIS_MODULE,
183         .open    = ct_open,
184         .read    = seq_read,
185         .llseek  = seq_lseek,
186         .release = seq_release_private,
187 };
188
189 /* expects */
190 struct ct_expect_iter_state {
191         unsigned int bucket;
192 };
193
194 static struct hlist_node *ct_expect_get_first(struct seq_file *seq)
195 {
196         struct ct_expect_iter_state *st = seq->private;
197
198         for (st->bucket = 0; st->bucket < nf_ct_expect_hsize; st->bucket++) {
199                 if (!hlist_empty(&nf_ct_expect_hash[st->bucket]))
200                         return nf_ct_expect_hash[st->bucket].first;
201         }
202         return NULL;
203 }
204
205 static struct hlist_node *ct_expect_get_next(struct seq_file *seq,
206                                              struct hlist_node *head)
207 {
208         struct ct_expect_iter_state *st = seq->private;
209
210         head = head->next;
211         while (head == NULL) {
212                 if (++st->bucket >= nf_ct_expect_hsize)
213                         return NULL;
214                 head = nf_ct_expect_hash[st->bucket].first;
215         }
216         return head;
217 }
218
219 static struct hlist_node *ct_expect_get_idx(struct seq_file *seq, loff_t pos)
220 {
221         struct hlist_node *head = ct_expect_get_first(seq);
222
223         if (head)
224                 while (pos && (head = ct_expect_get_next(seq, head)))
225                         pos--;
226         return pos ? NULL : head;
227 }
228
229 static void *exp_seq_start(struct seq_file *seq, loff_t *pos)
230 {
231         read_lock_bh(&nf_conntrack_lock);
232         return ct_expect_get_idx(seq, *pos);
233 }
234
235 static void *exp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
236 {
237         (*pos)++;
238         return ct_expect_get_next(seq, v);
239 }
240
241 static void exp_seq_stop(struct seq_file *seq, void *v)
242 {
243         read_unlock_bh(&nf_conntrack_lock);
244 }
245
246 static int exp_seq_show(struct seq_file *s, void *v)
247 {
248         struct nf_conntrack_expect *exp;
249         struct hlist_node *n = v;
250
251         exp = hlist_entry(n, struct nf_conntrack_expect, hnode);
252
253         if (exp->tuple.src.l3num != AF_INET)
254                 return 0;
255
256         if (exp->timeout.function)
257                 seq_printf(s, "%ld ", timer_pending(&exp->timeout)
258                            ? (long)(exp->timeout.expires - jiffies)/HZ : 0);
259         else
260                 seq_printf(s, "- ");
261
262         seq_printf(s, "proto=%u ", exp->tuple.dst.protonum);
263
264         print_tuple(s, &exp->tuple,
265                     __nf_ct_l3proto_find(exp->tuple.src.l3num),
266                     __nf_ct_l4proto_find(exp->tuple.src.l3num,
267                                          exp->tuple.dst.protonum));
268         return seq_putc(s, '\n');
269 }
270
271 static const struct seq_operations exp_seq_ops = {
272         .start = exp_seq_start,
273         .next = exp_seq_next,
274         .stop = exp_seq_stop,
275         .show = exp_seq_show
276 };
277
278 static int exp_open(struct inode *inode, struct file *file)
279 {
280         return seq_open_private(file, &exp_seq_ops,
281                         sizeof(struct ct_expect_iter_state));
282 }
283
284 static const struct file_operations ip_exp_file_ops = {
285         .owner   = THIS_MODULE,
286         .open    = exp_open,
287         .read    = seq_read,
288         .llseek  = seq_lseek,
289         .release = seq_release_private,
290 };
291
292 static void *ct_cpu_seq_start(struct seq_file *seq, loff_t *pos)
293 {
294         int cpu;
295
296         if (*pos == 0)
297                 return SEQ_START_TOKEN;
298
299         for (cpu = *pos-1; cpu < NR_CPUS; ++cpu) {
300                 if (!cpu_possible(cpu))
301                         continue;
302                 *pos = cpu+1;
303                 return &per_cpu(nf_conntrack_stat, cpu);
304         }
305
306         return NULL;
307 }
308
309 static void *ct_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
310 {
311         int cpu;
312
313         for (cpu = *pos; cpu < NR_CPUS; ++cpu) {
314                 if (!cpu_possible(cpu))
315                         continue;
316                 *pos = cpu+1;
317                 return &per_cpu(nf_conntrack_stat, cpu);
318         }
319
320         return NULL;
321 }
322
323 static void ct_cpu_seq_stop(struct seq_file *seq, void *v)
324 {
325 }
326
327 static int ct_cpu_seq_show(struct seq_file *seq, void *v)
328 {
329         unsigned int nr_conntracks = atomic_read(&nf_conntrack_count);
330         struct ip_conntrack_stat *st = v;
331
332         if (v == SEQ_START_TOKEN) {
333                 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");
334                 return 0;
335         }
336
337         seq_printf(seq, "%08x  %08x %08x %08x %08x %08x %08x %08x "
338                         "%08x %08x %08x %08x %08x  %08x %08x %08x \n",
339                    nr_conntracks,
340                    st->searched,
341                    st->found,
342                    st->new,
343                    st->invalid,
344                    st->ignore,
345                    st->delete,
346                    st->delete_list,
347                    st->insert,
348                    st->insert_failed,
349                    st->drop,
350                    st->early_drop,
351                    st->error,
352
353                    st->expect_new,
354                    st->expect_create,
355                    st->expect_delete
356                 );
357         return 0;
358 }
359
360 static const struct seq_operations ct_cpu_seq_ops = {
361         .start  = ct_cpu_seq_start,
362         .next   = ct_cpu_seq_next,
363         .stop   = ct_cpu_seq_stop,
364         .show   = ct_cpu_seq_show,
365 };
366
367 static int ct_cpu_seq_open(struct inode *inode, struct file *file)
368 {
369         return seq_open(file, &ct_cpu_seq_ops);
370 }
371
372 static const struct file_operations ct_cpu_seq_fops = {
373         .owner   = THIS_MODULE,
374         .open    = ct_cpu_seq_open,
375         .read    = seq_read,
376         .llseek  = seq_lseek,
377         .release = seq_release_private,
378 };
379
380 int __init nf_conntrack_ipv4_compat_init(void)
381 {
382         struct proc_dir_entry *proc, *proc_exp, *proc_stat;
383
384         proc = proc_net_fops_create(&init_net, "ip_conntrack", 0440, &ct_file_ops);
385         if (!proc)
386                 goto err1;
387
388         proc_exp = proc_net_fops_create(&init_net, "ip_conntrack_expect", 0440,
389                                         &ip_exp_file_ops);
390         if (!proc_exp)
391                 goto err2;
392
393         proc_stat = create_proc_entry("ip_conntrack", S_IRUGO, init_net.proc_net_stat);
394         if (!proc_stat)
395                 goto err3;
396
397         proc_stat->proc_fops = &ct_cpu_seq_fops;
398         proc_stat->owner = THIS_MODULE;
399
400         return 0;
401
402 err3:
403         proc_net_remove(&init_net, "ip_conntrack_expect");
404 err2:
405         proc_net_remove(&init_net, "ip_conntrack");
406 err1:
407         return -ENOMEM;
408 }
409
410 void __exit nf_conntrack_ipv4_compat_fini(void)
411 {
412         remove_proc_entry("ip_conntrack", init_net.proc_net_stat);
413         proc_net_remove(&init_net, "ip_conntrack_expect");
414         proc_net_remove(&init_net, "ip_conntrack");
415 }