6 * Author: Eric Biederman <ebiederm@xmission.com>
8 * proc net directory handling functions
11 #include <asm/uaccess.h>
13 #include <linux/errno.h>
14 #include <linux/time.h>
15 #include <linux/proc_fs.h>
16 #include <linux/stat.h>
17 #include <linux/slab.h>
18 #include <linux/init.h>
19 #include <linux/sched.h>
20 #include <linux/module.h>
21 #include <linux/bitops.h>
22 #include <linux/mount.h>
23 #include <linux/nsproxy.h>
24 #include <net/net_namespace.h>
25 #include <linux/seq_file.h>
30 static struct net
*get_proc_net(const struct inode
*inode
)
32 return maybe_get_net(PDE_NET(PDE(inode
)));
35 int seq_open_net(struct inode
*ino
, struct file
*f
,
36 const struct seq_operations
*ops
, int size
)
39 struct seq_net_private
*p
;
41 BUG_ON(size
< sizeof(*p
));
43 net
= get_proc_net(ino
);
47 p
= __seq_open_private(f
, ops
, size
);
57 EXPORT_SYMBOL_GPL(seq_open_net
);
59 int single_open_net(struct inode
*inode
, struct file
*file
,
60 int (*show
)(struct seq_file
*, void *))
66 net
= get_proc_net(inode
);
70 err
= single_open(file
, show
, net
);
81 EXPORT_SYMBOL_GPL(single_open_net
);
83 int seq_release_net(struct inode
*ino
, struct file
*f
)
87 seq
= f
->private_data
;
89 put_net(seq_file_net(seq
));
90 seq_release_private(ino
, f
);
93 EXPORT_SYMBOL_GPL(seq_release_net
);
95 int single_release_net(struct inode
*ino
, struct file
*f
)
97 struct seq_file
*seq
= f
->private_data
;
98 put_net(seq
->private);
99 return single_release(ino
, f
);
101 EXPORT_SYMBOL_GPL(single_release_net
);
103 static struct net
*get_proc_task_net(struct inode
*dir
)
105 struct task_struct
*task
;
107 struct net
*net
= NULL
;
110 task
= pid_task(proc_pid(dir
), PIDTYPE_PID
);
112 ns
= task_nsproxy(task
);
114 net
= get_net(ns
->net_ns
);
121 static struct dentry
*proc_tgid_net_lookup(struct inode
*dir
,
122 struct dentry
*dentry
, struct nameidata
*nd
)
127 de
= ERR_PTR(-ENOENT
);
128 net
= get_proc_task_net(dir
);
130 de
= proc_lookup_de(net
->proc_net
, dir
, dentry
);
136 static int proc_tgid_net_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
139 struct inode
*inode
= dentry
->d_inode
;
142 net
= get_proc_task_net(inode
);
144 generic_fillattr(inode
, stat
);
147 stat
->nlink
= net
->proc_net
->nlink
;
154 const struct inode_operations proc_net_inode_operations
= {
155 .lookup
= proc_tgid_net_lookup
,
156 .getattr
= proc_tgid_net_getattr
,
159 static int proc_tgid_net_readdir(struct file
*filp
, void *dirent
,
166 net
= get_proc_task_net(filp
->f_path
.dentry
->d_inode
);
168 ret
= proc_readdir_de(net
->proc_net
, filp
, dirent
, filldir
);
174 const struct file_operations proc_net_operations
= {
175 .llseek
= generic_file_llseek
,
176 .read
= generic_read_dir
,
177 .readdir
= proc_tgid_net_readdir
,
181 struct proc_dir_entry
*proc_net_fops_create(struct net
*net
,
182 const char *name
, mode_t mode
, const struct file_operations
*fops
)
184 return proc_create(name
, mode
, net
->proc_net
, fops
);
186 EXPORT_SYMBOL_GPL(proc_net_fops_create
);
188 void proc_net_remove(struct net
*net
, const char *name
)
190 remove_proc_entry(name
, net
->proc_net
);
192 EXPORT_SYMBOL_GPL(proc_net_remove
);
194 static __net_init
int proc_net_ns_init(struct net
*net
)
196 struct proc_dir_entry
*netd
, *net_statd
;
200 netd
= kzalloc(sizeof(*netd
) + 4, GFP_KERNEL
);
207 netd
->parent
= &proc_root
;
208 memcpy(netd
->name
, "net", 4);
211 net_statd
= proc_net_mkdir(net
, "stat", netd
);
215 net
->proc_net
= netd
;
216 net
->proc_net_stat
= net_statd
;
225 static __net_exit
void proc_net_ns_exit(struct net
*net
)
227 remove_proc_entry("stat", net
->proc_net
);
228 kfree(net
->proc_net
);
231 static struct pernet_operations __net_initdata proc_net_ns_ops
= {
232 .init
= proc_net_ns_init
,
233 .exit
= proc_net_ns_exit
,
236 int __init
proc_net_init(void)
238 proc_symlink("net", NULL
, "self/net");
240 return register_pernet_subsys(&proc_net_ns_ops
);