Commit 33120b30 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by David S. Miller

[IPV6]: Convert /proc/net/ipv6_route to seq_file interface

This removes last proc_net_create() user. Kudos to Benjamin Thery and
Stephen Hemminger for comments on previous version.
Signed-off-by: default avatarAlexey Dobriyan <adobriyan@sw.ru>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4f9f8311
...@@ -38,12 +38,8 @@ ...@@ -38,12 +38,8 @@
#include <linux/in6.h> #include <linux/in6.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/if_arp.h> #include <linux/if_arp.h>
#ifdef CONFIG_PROC_FS
#include <linux/proc_fs.h> #include <linux/proc_fs.h>
#include <linux/seq_file.h> #include <linux/seq_file.h>
#endif
#include <net/net_namespace.h> #include <net/net_namespace.h>
#include <net/snmp.h> #include <net/snmp.h>
#include <net/ipv6.h> #include <net/ipv6.h>
...@@ -2288,71 +2284,50 @@ struct rt6_proc_arg ...@@ -2288,71 +2284,50 @@ struct rt6_proc_arg
static int rt6_info_route(struct rt6_info *rt, void *p_arg) static int rt6_info_route(struct rt6_info *rt, void *p_arg)
{ {
struct rt6_proc_arg *arg = (struct rt6_proc_arg *) p_arg; struct seq_file *m = p_arg;
if (arg->skip < arg->offset / RT6_INFO_LEN) { seq_printf(m, NIP6_SEQFMT " %02x ", NIP6(rt->rt6i_dst.addr),
arg->skip++; rt->rt6i_dst.plen);
return 0;
}
if (arg->len >= arg->length)
return 0;
arg->len += sprintf(arg->buffer + arg->len,
NIP6_SEQFMT " %02x ",
NIP6(rt->rt6i_dst.addr),
rt->rt6i_dst.plen);
#ifdef CONFIG_IPV6_SUBTREES #ifdef CONFIG_IPV6_SUBTREES
arg->len += sprintf(arg->buffer + arg->len, seq_printf(m, NIP6_SEQFMT " %02x ", NIP6(rt->rt6i_src.addr),
NIP6_SEQFMT " %02x ", rt->rt6i_src.plen);
NIP6(rt->rt6i_src.addr),
rt->rt6i_src.plen);
#else #else
arg->len += sprintf(arg->buffer + arg->len, seq_puts(m, "00000000000000000000000000000000 00 ");
"00000000000000000000000000000000 00 ");
#endif #endif
if (rt->rt6i_nexthop) { if (rt->rt6i_nexthop) {
arg->len += sprintf(arg->buffer + arg->len, seq_printf(m, NIP6_SEQFMT,
NIP6_SEQFMT, NIP6(*((struct in6_addr *)rt->rt6i_nexthop->primary_key)));
NIP6(*((struct in6_addr *)rt->rt6i_nexthop->primary_key)));
} else { } else {
arg->len += sprintf(arg->buffer + arg->len, seq_puts(m, "00000000000000000000000000000000");
"00000000000000000000000000000000");
} }
arg->len += sprintf(arg->buffer + arg->len, seq_printf(m, " %08x %08x %08x %08x %8s\n",
" %08x %08x %08x %08x %8s\n", rt->rt6i_metric, atomic_read(&rt->u.dst.__refcnt),
rt->rt6i_metric, atomic_read(&rt->u.dst.__refcnt), rt->u.dst.__use, rt->rt6i_flags,
rt->u.dst.__use, rt->rt6i_flags, rt->rt6i_dev ? rt->rt6i_dev->name : "");
rt->rt6i_dev ? rt->rt6i_dev->name : "");
return 0; return 0;
} }
static int rt6_proc_info(char *buffer, char **start, off_t offset, int length) static int ipv6_route_show(struct seq_file *m, void *v)
{ {
struct rt6_proc_arg arg = { fib6_clean_all(rt6_info_route, 0, m);
.buffer = buffer, return 0;
.offset = offset, }
.length = length,
};
fib6_clean_all(rt6_info_route, 0, &arg);
*start = buffer;
if (offset)
*start += offset % RT6_INFO_LEN;
arg.len -= offset % RT6_INFO_LEN;
if (arg.len > length)
arg.len = length;
if (arg.len < 0)
arg.len = 0;
return arg.len; static int ipv6_route_open(struct inode *inode, struct file *file)
{
return single_open(file, ipv6_route_show, NULL);
} }
static const struct file_operations ipv6_route_proc_fops = {
.owner = THIS_MODULE,
.open = ipv6_route_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static int rt6_stats_seq_show(struct seq_file *seq, void *v) static int rt6_stats_seq_show(struct seq_file *seq, void *v)
{ {
seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n", seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
...@@ -2489,22 +2464,14 @@ ctl_table ipv6_route_table[] = { ...@@ -2489,22 +2464,14 @@ ctl_table ipv6_route_table[] = {
void __init ip6_route_init(void) void __init ip6_route_init(void)
{ {
#ifdef CONFIG_PROC_FS
struct proc_dir_entry *p;
#endif
ip6_dst_ops.kmem_cachep = ip6_dst_ops.kmem_cachep =
kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0, kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL); SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops.kmem_cachep; ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops.kmem_cachep;
fib6_init(); fib6_init();
#ifdef CONFIG_PROC_FS proc_net_fops_create(&init_net, "ipv6_route", 0, &ipv6_route_proc_fops);
p = proc_net_create(&init_net, "ipv6_route", 0, rt6_proc_info);
if (p)
p->owner = THIS_MODULE;
proc_net_fops_create(&init_net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops); proc_net_fops_create(&init_net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops);
#endif
#ifdef CONFIG_XFRM #ifdef CONFIG_XFRM
xfrm6_init(); xfrm6_init();
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment