blob: b224a28e0c15fc7cc3d219cdbc01ccdf60c7b1b7 [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 }
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +090047#ifdef CONFIG_NET_NS
Denis V. Luneve372c412007-11-19 22:31:54 -080048 p->net = net;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +090049#endif
Denis V. Luneve372c412007-11-19 22:31:54 -080050 return 0;
51}
52EXPORT_SYMBOL_GPL(seq_open_net);
53
Pavel Emelyanovde05c552008-07-18 04:07:21 -070054int single_open_net(struct inode *inode, struct file *file,
55 int (*show)(struct seq_file *, void *))
56{
57 int err;
58 struct net *net;
59
60 err = -ENXIO;
61 net = get_proc_net(inode);
62 if (net == NULL)
63 goto err_net;
64
65 err = single_open(file, show, net);
66 if (err < 0)
67 goto err_open;
68
69 return 0;
70
71err_open:
72 put_net(net);
73err_net:
74 return err;
75}
76EXPORT_SYMBOL_GPL(single_open_net);
77
Denis V. Luneve372c412007-11-19 22:31:54 -080078int seq_release_net(struct inode *ino, struct file *f)
79{
80 struct seq_file *seq;
Denis V. Luneve372c412007-11-19 22:31:54 -080081
82 seq = f->private_data;
Denis V. Luneve372c412007-11-19 22:31:54 -080083
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +090084 put_net(seq_file_net(seq));
Denis V. Luneve372c412007-11-19 22:31:54 -080085 seq_release_private(ino, f);
86 return 0;
87}
88EXPORT_SYMBOL_GPL(seq_release_net);
89
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -070090int single_release_net(struct inode *ino, struct file *f)
91{
92 struct seq_file *seq = f->private_data;
93 put_net(seq->private);
94 return single_release(ino, f);
95}
96EXPORT_SYMBOL_GPL(single_release_net);
97
Pavel Emelyanove9720ac2008-03-07 11:08:40 -080098static struct net *get_proc_task_net(struct inode *dir)
99{
100 struct task_struct *task;
101 struct nsproxy *ns;
102 struct net *net = NULL;
103
104 rcu_read_lock();
105 task = pid_task(proc_pid(dir), PIDTYPE_PID);
106 if (task != NULL) {
107 ns = task_nsproxy(task);
108 if (ns != NULL)
109 net = get_net(ns->net_ns);
110 }
111 rcu_read_unlock();
112
113 return net;
114}
115
116static struct dentry *proc_tgid_net_lookup(struct inode *dir,
117 struct dentry *dentry, struct nameidata *nd)
118{
119 struct dentry *de;
120 struct net *net;
121
122 de = ERR_PTR(-ENOENT);
123 net = get_proc_task_net(dir);
124 if (net != NULL) {
125 de = proc_lookup_de(net->proc_net, dir, dentry);
126 put_net(net);
127 }
128 return de;
129}
130
131static int proc_tgid_net_getattr(struct vfsmount *mnt, struct dentry *dentry,
132 struct kstat *stat)
133{
134 struct inode *inode = dentry->d_inode;
135 struct net *net;
136
137 net = get_proc_task_net(inode);
138
139 generic_fillattr(inode, stat);
140
141 if (net != NULL) {
142 stat->nlink = net->proc_net->nlink;
143 put_net(net);
144 }
145
146 return 0;
147}
148
149const struct inode_operations proc_net_inode_operations = {
150 .lookup = proc_tgid_net_lookup,
151 .getattr = proc_tgid_net_getattr,
152};
153
154static int proc_tgid_net_readdir(struct file *filp, void *dirent,
155 filldir_t filldir)
156{
157 int ret;
158 struct net *net;
159
160 ret = -EINVAL;
161 net = get_proc_task_net(filp->f_path.dentry->d_inode);
162 if (net != NULL) {
163 ret = proc_readdir_de(net->proc_net, filp, dirent, filldir);
164 put_net(net);
165 }
166 return ret;
167}
168
169const struct file_operations proc_net_operations = {
170 .read = generic_read_dir,
171 .readdir = proc_tgid_net_readdir,
172};
173
Denis V. Luneve372c412007-11-19 22:31:54 -0800174
David S. Miller3c12afe2007-09-12 14:18:18 +0200175struct proc_dir_entry *proc_net_fops_create(struct net *net,
176 const char *name, mode_t mode, const struct file_operations *fops)
177{
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800178 return proc_create(name, mode, net->proc_net, fops);
David S. Miller3c12afe2007-09-12 14:18:18 +0200179}
Daniel Lezcano36ac3132007-09-12 14:51:47 +0200180EXPORT_SYMBOL_GPL(proc_net_fops_create);
David S. Miller3c12afe2007-09-12 14:18:18 +0200181
182void proc_net_remove(struct net *net, const char *name)
183{
184 remove_proc_entry(name, net->proc_net);
185}
Daniel Lezcano36ac3132007-09-12 14:51:47 +0200186EXPORT_SYMBOL_GPL(proc_net_remove);
David S. Miller3c12afe2007-09-12 14:18:18 +0200187
Eric W. Biederman077130c2007-09-13 09:18:57 +0200188struct net *get_proc_net(const struct inode *inode)
189{
190 return maybe_get_net(PDE_NET(PDE(inode)));
191}
192EXPORT_SYMBOL_GPL(get_proc_net);
193
Pavel Emelyanov46650792007-10-08 20:38:39 -0700194static __net_init int proc_net_ns_init(struct net *net)
David S. Miller3c12afe2007-09-12 14:18:18 +0200195{
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800196 struct proc_dir_entry *netd, *net_statd;
David S. Miller3c12afe2007-09-12 14:18:18 +0200197 int err;
198
199 err = -ENOMEM;
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800200 netd = kzalloc(sizeof(*netd), GFP_KERNEL);
201 if (!netd)
David S. Miller3c12afe2007-09-12 14:18:18 +0200202 goto out;
203
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800204 netd->data = net;
205 netd->nlink = 2;
206 netd->name = "net";
207 netd->namelen = 3;
208 netd->parent = &proc_root;
David S. Miller3c12afe2007-09-12 14:18:18 +0200209
210 err = -EEXIST;
Denis V. Luneve5d69b92008-01-10 03:51:41 -0800211 net_statd = proc_net_mkdir(net, "stat", netd);
David S. Miller3c12afe2007-09-12 14:18:18 +0200212 if (!net_statd)
213 goto free_net;
214
David S. Miller3c12afe2007-09-12 14:18:18 +0200215 net->proc_net = netd;
216 net->proc_net_stat = net_statd;
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800217 return 0;
David S. Miller3c12afe2007-09-12 14:18:18 +0200218
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800219free_net:
220 kfree(netd);
David S. Miller3c12afe2007-09-12 14:18:18 +0200221out:
222 return err;
David S. Miller3c12afe2007-09-12 14:18:18 +0200223}
224
Pavel Emelyanov46650792007-10-08 20:38:39 -0700225static __net_exit void proc_net_ns_exit(struct net *net)
David S. Miller3c12afe2007-09-12 14:18:18 +0200226{
227 remove_proc_entry("stat", net->proc_net);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800228 kfree(net->proc_net);
David S. Miller3c12afe2007-09-12 14:18:18 +0200229}
230
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800231static struct pernet_operations __net_initdata proc_net_ns_ops = {
David S. Miller3c12afe2007-09-12 14:18:18 +0200232 .init = proc_net_ns_init,
233 .exit = proc_net_ns_exit,
234};
235
Pavel Emelyanov46650792007-10-08 20:38:39 -0700236int __init proc_net_init(void)
David S. Miller3c12afe2007-09-12 14:18:18 +0200237{
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800238 proc_symlink("net", NULL, "self/net");
David S. Miller3c12afe2007-09-12 14:18:18 +0200239
240 return register_pernet_subsys(&proc_net_ns_ops);
241}