blob: 4823c9677facf0790ccf0971f516d253ef43f093 [file] [log] [blame]
David S. Miller3c12afe2007-09-12 14:18:18 +02001/*
2 * linux/fs/proc/net.c
3 *
4 * Copyright (C) 2007
5 *
6 * Author: Eric Biederman <ebiederm@xmission.com>
7 *
8 * proc net directory handling functions
9 */
10
11#include <asm/uaccess.h>
12
13#include <linux/errno.h>
14#include <linux/time.h>
15#include <linux/proc_fs.h>
16#include <linux/stat.h>
17#include <linux/init.h>
18#include <linux/sched.h>
19#include <linux/module.h>
20#include <linux/bitops.h>
21#include <linux/smp_lock.h>
22#include <linux/mount.h>
23#include <linux/nsproxy.h>
24#include <net/net_namespace.h>
Denis V. Luneve372c412007-11-19 22:31:54 -080025#include <linux/seq_file.h>
David S. Miller3c12afe2007-09-12 14:18:18 +020026
27#include "internal.h"
28
29
Denis V. Luneve372c412007-11-19 22:31:54 -080030int seq_open_net(struct inode *ino, struct file *f,
31 const struct seq_operations *ops, int size)
32{
33 struct net *net;
34 struct seq_net_private *p;
35
36 BUG_ON(size < sizeof(*p));
37
38 net = get_proc_net(ino);
39 if (net == NULL)
40 return -ENXIO;
41
42 p = __seq_open_private(f, ops, size);
43 if (p == NULL) {
44 put_net(net);
45 return -ENOMEM;
46 }
47 p->net = net;
48 return 0;
49}
50EXPORT_SYMBOL_GPL(seq_open_net);
51
52int seq_release_net(struct inode *ino, struct file *f)
53{
54 struct seq_file *seq;
55 struct seq_net_private *p;
56
57 seq = f->private_data;
58 p = seq->private;
59
60 put_net(p->net);
61 seq_release_private(ino, f);
62 return 0;
63}
64EXPORT_SYMBOL_GPL(seq_release_net);
65
66
David S. Miller3c12afe2007-09-12 14:18:18 +020067struct proc_dir_entry *proc_net_fops_create(struct net *net,
68 const char *name, mode_t mode, const struct file_operations *fops)
69{
70 struct proc_dir_entry *res;
71
72 res = create_proc_entry(name, mode, net->proc_net);
73 if (res)
74 res->proc_fops = fops;
75 return res;
76}
Daniel Lezcano36ac3132007-09-12 14:51:47 +020077EXPORT_SYMBOL_GPL(proc_net_fops_create);
David S. Miller3c12afe2007-09-12 14:18:18 +020078
79void proc_net_remove(struct net *net, const char *name)
80{
81 remove_proc_entry(name, net->proc_net);
82}
Daniel Lezcano36ac3132007-09-12 14:51:47 +020083EXPORT_SYMBOL_GPL(proc_net_remove);
David S. Miller3c12afe2007-09-12 14:18:18 +020084
Eric W. Biederman077130c2007-09-13 09:18:57 +020085struct net *get_proc_net(const struct inode *inode)
86{
87 return maybe_get_net(PDE_NET(PDE(inode)));
88}
89EXPORT_SYMBOL_GPL(get_proc_net);
90
Eric W. Biederman2b1e3002007-12-02 00:33:17 +110091static struct proc_dir_entry *shadow_pde;
David S. Miller3c12afe2007-09-12 14:18:18 +020092
Eric W. Biederman2b1e3002007-12-02 00:33:17 +110093static struct proc_dir_entry *proc_net_shadow(struct task_struct *task,
David S. Miller3c12afe2007-09-12 14:18:18 +020094 struct proc_dir_entry *de)
95{
Eric W. Biederman2b1e3002007-12-02 00:33:17 +110096 return task->nsproxy->net_ns->proc_net;
David S. Miller3c12afe2007-09-12 14:18:18 +020097}
98
Denis V. Luneve5d69b92008-01-10 03:51:41 -080099struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name,
100 struct proc_dir_entry *parent)
101{
102 struct proc_dir_entry *pde;
103 pde = proc_mkdir_mode(name, S_IRUGO | S_IXUGO, parent);
104 if (pde != NULL)
105 pde->data = net;
106 return pde;
107}
108EXPORT_SYMBOL_GPL(proc_net_mkdir);
109
Pavel Emelyanov46650792007-10-08 20:38:39 -0700110static __net_init int proc_net_ns_init(struct net *net)
David S. Miller3c12afe2007-09-12 14:18:18 +0200111{
112 struct proc_dir_entry *root, *netd, *net_statd;
113 int err;
114
115 err = -ENOMEM;
116 root = kzalloc(sizeof(*root), GFP_KERNEL);
117 if (!root)
118 goto out;
119
120 err = -EEXIST;
Denis V. Luneve5d69b92008-01-10 03:51:41 -0800121 netd = proc_net_mkdir(net, "net", root);
David S. Miller3c12afe2007-09-12 14:18:18 +0200122 if (!netd)
123 goto free_root;
124
125 err = -EEXIST;
Denis V. Luneve5d69b92008-01-10 03:51:41 -0800126 net_statd = proc_net_mkdir(net, "stat", netd);
David S. Miller3c12afe2007-09-12 14:18:18 +0200127 if (!net_statd)
128 goto free_net;
129
130 root->data = net;
David S. Miller3c12afe2007-09-12 14:18:18 +0200131
132 net->proc_net_root = root;
133 net->proc_net = netd;
134 net->proc_net_stat = net_statd;
135 err = 0;
136
137out:
138 return err;
139free_net:
140 remove_proc_entry("net", root);
141free_root:
142 kfree(root);
143 goto out;
144}
145
Pavel Emelyanov46650792007-10-08 20:38:39 -0700146static __net_exit void proc_net_ns_exit(struct net *net)
David S. Miller3c12afe2007-09-12 14:18:18 +0200147{
148 remove_proc_entry("stat", net->proc_net);
149 remove_proc_entry("net", net->proc_net_root);
150 kfree(net->proc_net_root);
151}
152
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800153static struct pernet_operations __net_initdata proc_net_ns_ops = {
David S. Miller3c12afe2007-09-12 14:18:18 +0200154 .init = proc_net_ns_init,
155 .exit = proc_net_ns_exit,
156};
157
Pavel Emelyanov46650792007-10-08 20:38:39 -0700158int __init proc_net_init(void)
David S. Miller3c12afe2007-09-12 14:18:18 +0200159{
Eric W. Biederman2b1e3002007-12-02 00:33:17 +1100160 shadow_pde = proc_mkdir("net", NULL);
161 shadow_pde->shadow_proc = proc_net_shadow;
David S. Miller3c12afe2007-09-12 14:18:18 +0200162
163 return register_pernet_subsys(&proc_net_ns_ops);
164}