Merge tag 'sh-fixes-4.6-rc1' of git://git.libc.org/linux-sh
[deliverable/linux.git] / net / ipv4 / netfilter / nf_conntrack_l3proto_ipv4_compat.c
CommitLineData
e4bd8bce
PM
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>
f229f6ce 5 * (C) 2006-2010 Patrick McHardy <kaber@trash.net>
e4bd8bce
PM
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/types.h>
12#include <linux/proc_fs.h>
13#include <linux/seq_file.h>
14#include <linux/percpu.h>
1ae4de0c 15#include <linux/security.h>
457c4cbc 16#include <net/net_namespace.h>
e4bd8bce
PM
17
18#include <linux/netfilter.h>
19#include <net/netfilter/nf_conntrack_core.h>
20#include <net/netfilter/nf_conntrack_l3proto.h>
21#include <net/netfilter/nf_conntrack_l4proto.h>
22#include <net/netfilter/nf_conntrack_expect.h>
58401572 23#include <net/netfilter/nf_conntrack_acct.h>
eb733162 24#include <linux/rculist_nulls.h>
bc3b2d7f 25#include <linux/export.h>
e4bd8bce
PM
26
27struct ct_iter_state {
5e6b2997 28 struct seq_net_private p;
e4bd8bce
PM
29 unsigned int bucket;
30};
31
ea781f19 32static struct hlist_nulls_node *ct_get_first(struct seq_file *seq)
e4bd8bce 33{
5e6b2997 34 struct net *net = seq_file_net(seq);
e4bd8bce 35 struct ct_iter_state *st = seq->private;
ea781f19 36 struct hlist_nulls_node *n;
e4bd8bce
PM
37
38 for (st->bucket = 0;
d696c7bd 39 st->bucket < net->ct.htable_size;
e4bd8bce 40 st->bucket++) {
eb733162
ED
41 n = rcu_dereference(
42 hlist_nulls_first_rcu(&net->ct.hash[st->bucket]));
ea781f19 43 if (!is_a_nulls(n))
76507f69 44 return n;
e4bd8bce
PM
45 }
46 return NULL;
47}
48
ea781f19
ED
49static struct hlist_nulls_node *ct_get_next(struct seq_file *seq,
50 struct hlist_nulls_node *head)
e4bd8bce 51{
5e6b2997 52 struct net *net = seq_file_net(seq);
e4bd8bce
PM
53 struct ct_iter_state *st = seq->private;
54
eb733162 55 head = rcu_dereference(hlist_nulls_next_rcu(head));
ea781f19
ED
56 while (is_a_nulls(head)) {
57 if (likely(get_nulls_value(head) == st->bucket)) {
d696c7bd 58 if (++st->bucket >= net->ct.htable_size)
ea781f19
ED
59 return NULL;
60 }
eb733162
ED
61 head = rcu_dereference(
62 hlist_nulls_first_rcu(&net->ct.hash[st->bucket]));
e4bd8bce
PM
63 }
64 return head;
65}
66
ea781f19 67static struct hlist_nulls_node *ct_get_idx(struct seq_file *seq, loff_t pos)
e4bd8bce 68{
ea781f19 69 struct hlist_nulls_node *head = ct_get_first(seq);
e4bd8bce
PM
70
71 if (head)
72 while (pos && (head = ct_get_next(seq, head)))
73 pos--;
74 return pos ? NULL : head;
75}
76
77static void *ct_seq_start(struct seq_file *seq, loff_t *pos)
76507f69 78 __acquires(RCU)
e4bd8bce 79{
76507f69 80 rcu_read_lock();
e4bd8bce
PM
81 return ct_get_idx(seq, *pos);
82}
83
84static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
85{
86 (*pos)++;
87 return ct_get_next(s, v);
88}
89
90static void ct_seq_stop(struct seq_file *s, void *v)
76507f69 91 __releases(RCU)
e4bd8bce 92{
76507f69 93 rcu_read_unlock();
e4bd8bce
PM
94}
95
1ae4de0c 96#ifdef CONFIG_NF_CONNTRACK_SECMARK
e71456ae 97static void ct_show_secctx(struct seq_file *s, const struct nf_conn *ct)
1ae4de0c
EP
98{
99 int ret;
100 u32 len;
101 char *secctx;
102
103 ret = security_secid_to_secctx(ct->secmark, &secctx, &len);
104 if (ret)
e71456ae 105 return;
1ae4de0c 106
e71456ae 107 seq_printf(s, "secctx=%s ", secctx);
1ae4de0c
EP
108
109 security_release_secctx(secctx, len);
1ae4de0c
EP
110}
111#else
e71456ae 112static inline void ct_show_secctx(struct seq_file *s, const struct nf_conn *ct)
1ae4de0c 113{
1ae4de0c
EP
114}
115#endif
116
e4bd8bce
PM
117static int ct_seq_show(struct seq_file *s, void *v)
118{
ea781f19
ED
119 struct nf_conntrack_tuple_hash *hash = v;
120 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(hash);
32948588
JE
121 const struct nf_conntrack_l3proto *l3proto;
122 const struct nf_conntrack_l4proto *l4proto;
ea781f19 123 int ret = 0;
e4bd8bce
PM
124
125 NF_CT_ASSERT(ct);
ea781f19
ED
126 if (unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
127 return 0;
128
e4bd8bce
PM
129
130 /* we only want to print DIR_ORIGINAL */
131 if (NF_CT_DIRECTION(hash))
ea781f19 132 goto release;
5e8fbe2a 133 if (nf_ct_l3num(ct) != AF_INET)
ea781f19 134 goto release;
e4bd8bce 135
5e8fbe2a 136 l3proto = __nf_ct_l3proto_find(nf_ct_l3num(ct));
e4bd8bce 137 NF_CT_ASSERT(l3proto);
5e8fbe2a 138 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
e4bd8bce
PM
139 NF_CT_ASSERT(l4proto);
140
ea781f19 141 ret = -ENOSPC;
e71456ae
SRRH
142 seq_printf(s, "%-8s %u %ld ",
143 l4proto->name, nf_ct_protonum(ct),
144 timer_pending(&ct->timeout)
145 ? (long)(ct->timeout.expires - jiffies)/HZ : 0);
e4bd8bce 146
37246a58
SRRH
147 if (l4proto->print_conntrack)
148 l4proto->print_conntrack(s, ct);
149
150 if (seq_has_overflowed(s))
ea781f19 151 goto release;
e4bd8bce 152
824f1fbe
JP
153 print_tuple(s, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
154 l3proto, l4proto);
155
156 if (seq_has_overflowed(s))
ea781f19 157 goto release;
e4bd8bce 158
58401572 159 if (seq_print_acct(s, ct, IP_CT_DIR_ORIGINAL))
ea781f19 160 goto release;
e4bd8bce
PM
161
162 if (!(test_bit(IPS_SEEN_REPLY_BIT, &ct->status)))
e71456ae 163 seq_printf(s, "[UNREPLIED] ");
e4bd8bce 164
824f1fbe
JP
165 print_tuple(s, &ct->tuplehash[IP_CT_DIR_REPLY].tuple,
166 l3proto, l4proto);
167
168 if (seq_has_overflowed(s))
ea781f19 169 goto release;
e4bd8bce 170
58401572 171 if (seq_print_acct(s, ct, IP_CT_DIR_REPLY))
ea781f19 172 goto release;
e4bd8bce
PM
173
174 if (test_bit(IPS_ASSURED_BIT, &ct->status))
e71456ae 175 seq_printf(s, "[ASSURED] ");
e4bd8bce
PM
176
177#ifdef CONFIG_NF_CONNTRACK_MARK
e71456ae 178 seq_printf(s, "mark=%u ", ct->mark);
e4bd8bce
PM
179#endif
180
e71456ae
SRRH
181 ct_show_secctx(s, ct);
182
183 seq_printf(s, "use=%u\n", atomic_read(&ct->ct_general.use));
e4bd8bce 184
e71456ae 185 if (seq_has_overflowed(s))
ea781f19 186 goto release;
e71456ae 187
ea781f19
ED
188 ret = 0;
189release:
190 nf_ct_put(ct);
191 return ret;
e4bd8bce
PM
192}
193
56b3d975 194static const struct seq_operations ct_seq_ops = {
e4bd8bce
PM
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{
5e6b2997
AD
203 return seq_open_net(inode, file, &ct_seq_ops,
204 sizeof(struct ct_iter_state));
e4bd8bce
PM
205}
206
9a32144e 207static const struct file_operations ct_file_ops = {
e4bd8bce
PM
208 .owner = THIS_MODULE,
209 .open = ct_open,
210 .read = seq_read,
211 .llseek = seq_lseek,
5e6b2997 212 .release = seq_release_net,
e4bd8bce
PM
213};
214
215/* expects */
5d08ad44 216struct ct_expect_iter_state {
5e6b2997 217 struct seq_net_private p;
5d08ad44
PM
218 unsigned int bucket;
219};
220
221static struct hlist_node *ct_expect_get_first(struct seq_file *seq)
e4bd8bce 222{
5e6b2997 223 struct net *net = seq_file_net(seq);
5d08ad44 224 struct ct_expect_iter_state *st = seq->private;
7d0742da 225 struct hlist_node *n;
e4bd8bce 226
5d08ad44 227 for (st->bucket = 0; st->bucket < nf_ct_expect_hsize; st->bucket++) {
eb733162
ED
228 n = rcu_dereference(
229 hlist_first_rcu(&net->ct.expect_hash[st->bucket]));
7d0742da
PM
230 if (n)
231 return n;
5d08ad44
PM
232 }
233 return NULL;
234}
e4bd8bce 235
5d08ad44
PM
236static struct hlist_node *ct_expect_get_next(struct seq_file *seq,
237 struct hlist_node *head)
238{
5e6b2997 239 struct net *net = seq_file_net(seq);
5d08ad44 240 struct ct_expect_iter_state *st = seq->private;
e4bd8bce 241
eb733162 242 head = rcu_dereference(hlist_next_rcu(head));
5d08ad44
PM
243 while (head == NULL) {
244 if (++st->bucket >= nf_ct_expect_hsize)
e4bd8bce 245 return NULL;
eb733162
ED
246 head = rcu_dereference(
247 hlist_first_rcu(&net->ct.expect_hash[st->bucket]));
e4bd8bce 248 }
5d08ad44 249 return head;
e4bd8bce
PM
250}
251
5d08ad44 252static struct hlist_node *ct_expect_get_idx(struct seq_file *seq, loff_t pos)
e4bd8bce 253{
5d08ad44 254 struct hlist_node *head = ct_expect_get_first(seq);
e4bd8bce 255
5d08ad44
PM
256 if (head)
257 while (pos && (head = ct_expect_get_next(seq, head)))
258 pos--;
259 return pos ? NULL : head;
260}
e4bd8bce 261
5d08ad44 262static void *exp_seq_start(struct seq_file *seq, loff_t *pos)
76507f69 263 __acquires(RCU)
5d08ad44 264{
7d0742da 265 rcu_read_lock();
5d08ad44
PM
266 return ct_expect_get_idx(seq, *pos);
267}
e4bd8bce 268
5d08ad44
PM
269static void *exp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
270{
271 (*pos)++;
272 return ct_expect_get_next(seq, v);
e4bd8bce
PM
273}
274
5d08ad44 275static void exp_seq_stop(struct seq_file *seq, void *v)
76507f69 276 __releases(RCU)
e4bd8bce 277{
7d0742da 278 rcu_read_unlock();
e4bd8bce
PM
279}
280
281static int exp_seq_show(struct seq_file *s, void *v)
282{
5d08ad44 283 struct nf_conntrack_expect *exp;
32948588 284 const struct hlist_node *n = v;
5d08ad44
PM
285
286 exp = hlist_entry(n, struct nf_conntrack_expect, hnode);
e4bd8bce
PM
287
288 if (exp->tuple.src.l3num != AF_INET)
289 return 0;
290
291 if (exp->timeout.function)
292 seq_printf(s, "%ld ", timer_pending(&exp->timeout)
293 ? (long)(exp->timeout.expires - jiffies)/HZ : 0);
294 else
295 seq_printf(s, "- ");
296
297 seq_printf(s, "proto=%u ", exp->tuple.dst.protonum);
298
299 print_tuple(s, &exp->tuple,
300 __nf_ct_l3proto_find(exp->tuple.src.l3num),
301 __nf_ct_l4proto_find(exp->tuple.src.l3num,
e905a9ed 302 exp->tuple.dst.protonum));
1ca9e417
JP
303 seq_putc(s, '\n');
304
305 return 0;
e4bd8bce
PM
306}
307
56b3d975 308static const struct seq_operations exp_seq_ops = {
e4bd8bce
PM
309 .start = exp_seq_start,
310 .next = exp_seq_next,
311 .stop = exp_seq_stop,
312 .show = exp_seq_show
313};
314
315static int exp_open(struct inode *inode, struct file *file)
316{
5e6b2997
AD
317 return seq_open_net(inode, file, &exp_seq_ops,
318 sizeof(struct ct_expect_iter_state));
e4bd8bce
PM
319}
320
9a32144e 321static const struct file_operations ip_exp_file_ops = {
e4bd8bce
PM
322 .owner = THIS_MODULE,
323 .open = exp_open,
324 .read = seq_read,
325 .llseek = seq_lseek,
5e6b2997 326 .release = seq_release_net,
e4bd8bce
PM
327};
328
329static void *ct_cpu_seq_start(struct seq_file *seq, loff_t *pos)
330{
8e9df801 331 struct net *net = seq_file_net(seq);
e4bd8bce
PM
332 int cpu;
333
334 if (*pos == 0)
335 return SEQ_START_TOKEN;
336
0f23174a 337 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
e4bd8bce
PM
338 if (!cpu_possible(cpu))
339 continue;
340 *pos = cpu+1;
8e9df801 341 return per_cpu_ptr(net->ct.stat, cpu);
e4bd8bce
PM
342 }
343
344 return NULL;
345}
346
347static void *ct_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
348{
8e9df801 349 struct net *net = seq_file_net(seq);
e4bd8bce
PM
350 int cpu;
351
0f23174a 352 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
e4bd8bce
PM
353 if (!cpu_possible(cpu))
354 continue;
355 *pos = cpu+1;
8e9df801 356 return per_cpu_ptr(net->ct.stat, cpu);
e4bd8bce
PM
357 }
358
359 return NULL;
360}
361
362static void ct_cpu_seq_stop(struct seq_file *seq, void *v)
363{
364}
365
366static int ct_cpu_seq_show(struct seq_file *seq, void *v)
367{
8e9df801
AD
368 struct net *net = seq_file_net(seq);
369 unsigned int nr_conntracks = atomic_read(&net->ct.count);
32948588 370 const struct ip_conntrack_stat *st = v;
e4bd8bce
PM
371
372 if (v == SEQ_START_TOKEN) {
af740b2c 373 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 search_restart\n");
e4bd8bce
PM
374 return 0;
375 }
376
377 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x "
af740b2c 378 "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
e4bd8bce
PM
379 nr_conntracks,
380 st->searched,
381 st->found,
382 st->new,
383 st->invalid,
384 st->ignore,
385 st->delete,
386 st->delete_list,
387 st->insert,
388 st->insert_failed,
389 st->drop,
390 st->early_drop,
391 st->error,
392
393 st->expect_new,
394 st->expect_create,
af740b2c
JDB
395 st->expect_delete,
396 st->search_restart
e4bd8bce
PM
397 );
398 return 0;
399}
400
56b3d975 401static const struct seq_operations ct_cpu_seq_ops = {
e4bd8bce
PM
402 .start = ct_cpu_seq_start,
403 .next = ct_cpu_seq_next,
404 .stop = ct_cpu_seq_stop,
405 .show = ct_cpu_seq_show,
406};
407
408static int ct_cpu_seq_open(struct inode *inode, struct file *file)
409{
8e9df801
AD
410 return seq_open_net(inode, file, &ct_cpu_seq_ops,
411 sizeof(struct seq_net_private));
e4bd8bce
PM
412}
413
9a32144e 414static const struct file_operations ct_cpu_seq_fops = {
e4bd8bce
PM
415 .owner = THIS_MODULE,
416 .open = ct_cpu_seq_open,
417 .read = seq_read,
418 .llseek = seq_lseek,
8e9df801 419 .release = seq_release_net,
e4bd8bce
PM
420};
421
5e6b2997 422static int __net_init ip_conntrack_net_init(struct net *net)
e4bd8bce
PM
423{
424 struct proc_dir_entry *proc, *proc_exp, *proc_stat;
425
d4beaa66 426 proc = proc_create("ip_conntrack", 0440, net->proc_net, &ct_file_ops);
e4bd8bce
PM
427 if (!proc)
428 goto err1;
429
d4beaa66
G
430 proc_exp = proc_create("ip_conntrack_expect", 0440, net->proc_net,
431 &ip_exp_file_ops);
e4bd8bce
PM
432 if (!proc_exp)
433 goto err2;
434
8eeee8b1 435 proc_stat = proc_create("ip_conntrack", S_IRUGO,
5e6b2997 436 net->proc_net_stat, &ct_cpu_seq_fops);
e4bd8bce
PM
437 if (!proc_stat)
438 goto err3;
e4bd8bce
PM
439 return 0;
440
441err3:
ece31ffd 442 remove_proc_entry("ip_conntrack_expect", net->proc_net);
e4bd8bce 443err2:
ece31ffd 444 remove_proc_entry("ip_conntrack", net->proc_net);
e4bd8bce
PM
445err1:
446 return -ENOMEM;
447}
448
5e6b2997
AD
449static void __net_exit ip_conntrack_net_exit(struct net *net)
450{
451 remove_proc_entry("ip_conntrack", net->proc_net_stat);
ece31ffd
G
452 remove_proc_entry("ip_conntrack_expect", net->proc_net);
453 remove_proc_entry("ip_conntrack", net->proc_net);
5e6b2997
AD
454}
455
456static struct pernet_operations ip_conntrack_net_ops = {
457 .init = ip_conntrack_net_init,
458 .exit = ip_conntrack_net_exit,
459};
460
461int __init nf_conntrack_ipv4_compat_init(void)
462{
463 return register_pernet_subsys(&ip_conntrack_net_ops);
464}
465
e4bd8bce
PM
466void __exit nf_conntrack_ipv4_compat_fini(void)
467{
5e6b2997 468 unregister_pernet_subsys(&ip_conntrack_net_ops);
e4bd8bce 469}
This page took 0.617405 seconds and 5 git commands to generate.