proc_net.c 4.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 *  linux/fs/proc/net.c
 *
 *  Copyright (C) 2007
 *
 *  Author: Eric Biederman <ebiederm@xmission.com>
 *
 *  proc net directory handling functions
 */

11
#include <linux/uaccess.h>
12 13 14 15 16

#include <linux/errno.h>
#include <linux/time.h>
#include <linux/proc_fs.h>
#include <linux/stat.h>
17
#include <linux/slab.h>
18 19
#include <linux/init.h>
#include <linux/sched.h>
20
#include <linux/sched/task.h>
21 22 23 24
#include <linux/module.h>
#include <linux/bitops.h>
#include <linux/mount.h>
#include <linux/nsproxy.h>
25
#include <linux/uidgid.h>
26
#include <net/net_namespace.h>
27
#include <linux/seq_file.h>
28 29 30

#include "internal.h"

31 32 33 34
static inline struct net *PDE_NET(struct proc_dir_entry *pde)
{
	return pde->parent->data;
}
35

A
Adrian Bunk 已提交
36 37 38 39 40
static struct net *get_proc_net(const struct inode *inode)
{
	return maybe_get_net(PDE_NET(PDE(inode)));
}

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
int seq_open_net(struct inode *ino, struct file *f,
		 const struct seq_operations *ops, int size)
{
	struct net *net;
	struct seq_net_private *p;

	BUG_ON(size < sizeof(*p));

	net = get_proc_net(ino);
	if (net == NULL)
		return -ENXIO;

	p = __seq_open_private(f, ops, size);
	if (p == NULL) {
		put_net(net);
		return -ENOMEM;
	}
58
#ifdef CONFIG_NET_NS
59
	p->net = net;
60
#endif
61 62 63 64
	return 0;
}
EXPORT_SYMBOL_GPL(seq_open_net);

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
int single_open_net(struct inode *inode, struct file *file,
		int (*show)(struct seq_file *, void *))
{
	int err;
	struct net *net;

	err = -ENXIO;
	net = get_proc_net(inode);
	if (net == NULL)
		goto err_net;

	err = single_open(file, show, net);
	if (err < 0)
		goto err_open;

	return 0;

err_open:
	put_net(net);
err_net:
	return err;
}
EXPORT_SYMBOL_GPL(single_open_net);

89 90 91 92 93 94
int seq_release_net(struct inode *ino, struct file *f)
{
	struct seq_file *seq;

	seq = f->private_data;

95
	put_net(seq_file_net(seq));
96 97 98 99 100
	seq_release_private(ino, f);
	return 0;
}
EXPORT_SYMBOL_GPL(seq_release_net);

101 102 103 104 105 106 107 108
int single_release_net(struct inode *ino, struct file *f)
{
	struct seq_file *seq = f->private_data;
	put_net(seq->private);
	return single_release(ino, f);
}
EXPORT_SYMBOL_GPL(single_release_net);

109 110 111 112 113 114 115 116 117
static struct net *get_proc_task_net(struct inode *dir)
{
	struct task_struct *task;
	struct nsproxy *ns;
	struct net *net = NULL;

	rcu_read_lock();
	task = pid_task(proc_pid(dir), PIDTYPE_PID);
	if (task != NULL) {
118 119
		task_lock(task);
		ns = task->nsproxy;
120 121
		if (ns != NULL)
			net = get_net(ns->net_ns);
122
		task_unlock(task);
123 124 125 126 127 128 129
	}
	rcu_read_unlock();

	return net;
}

static struct dentry *proc_tgid_net_lookup(struct inode *dir,
A
Al Viro 已提交
130
		struct dentry *dentry, unsigned int flags)
131 132 133 134 135 136 137
{
	struct dentry *de;
	struct net *net;

	de = ERR_PTR(-ENOENT);
	net = get_proc_task_net(dir);
	if (net != NULL) {
A
Alexey Dobriyan 已提交
138
		de = proc_lookup_de(dir, dentry, net->proc_net);
139 140 141 142 143
		put_net(net);
	}
	return de;
}

144 145
static int proc_tgid_net_getattr(const struct path *path, struct kstat *stat,
				 u32 request_mask, unsigned int query_flags)
146
{
147
	struct inode *inode = d_inode(path->dentry);
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
	struct net *net;

	net = get_proc_task_net(inode);

	generic_fillattr(inode, stat);

	if (net != NULL) {
		stat->nlink = net->proc_net->nlink;
		put_net(net);
	}

	return 0;
}

const struct inode_operations proc_net_inode_operations = {
	.lookup		= proc_tgid_net_lookup,
	.getattr	= proc_tgid_net_getattr,
};

A
Al Viro 已提交
167
static int proc_tgid_net_readdir(struct file *file, struct dir_context *ctx)
168 169 170 171 172
{
	int ret;
	struct net *net;

	ret = -EINVAL;
A
Al Viro 已提交
173
	net = get_proc_task_net(file_inode(file));
174
	if (net != NULL) {
A
Alexey Dobriyan 已提交
175
		ret = proc_readdir_de(file, ctx, net->proc_net);
176 177 178 179 180 181
		put_net(net);
	}
	return ret;
}

const struct file_operations proc_net_operations = {
A
Alexey Dobriyan 已提交
182
	.llseek		= generic_file_llseek,
183
	.read		= generic_read_dir,
184
	.iterate_shared	= proc_tgid_net_readdir,
185 186
};

187
static __net_init int proc_net_ns_init(struct net *net)
188
{
189
	struct proc_dir_entry *netd, *net_statd;
190 191
	kuid_t uid;
	kgid_t gid;
192 193 194
	int err;

	err = -ENOMEM;
195
	netd = kmem_cache_zalloc(proc_dir_entry_cache, GFP_KERNEL);
196
	if (!netd)
197 198
		goto out;

199
	netd->subdir = RB_ROOT_CACHED;
200 201 202 203
	netd->data = net;
	netd->nlink = 2;
	netd->namelen = 3;
	netd->parent = &proc_root;
204
	netd->name = netd->inline_name;
205
	memcpy(netd->name, "net", 4);
206

207 208 209 210 211 212 213 214 215 216
	uid = make_kuid(net->user_ns, 0);
	if (!uid_valid(uid))
		uid = netd->uid;

	gid = make_kgid(net->user_ns, 0);
	if (!gid_valid(gid))
		gid = netd->gid;

	proc_set_user(netd, uid, gid);

217
	err = -EEXIST;
D
Denis V. Lunev 已提交
218
	net_statd = proc_net_mkdir(net, "stat", netd);
219 220 221 222 223
	if (!net_statd)
		goto free_net;

	net->proc_net = netd;
	net->proc_net_stat = net_statd;
224
	return 0;
225

226
free_net:
227
	pde_free(netd);
228 229 230 231
out:
	return err;
}

232
static __net_exit void proc_net_ns_exit(struct net *net)
233 234
{
	remove_proc_entry("stat", net->proc_net);
235
	pde_free(net->proc_net);
236 237
}

238
static struct pernet_operations __net_initdata proc_net_ns_ops = {
239 240 241 242
	.init = proc_net_ns_init,
	.exit = proc_net_ns_exit,
};

243
int __init proc_net_init(void)
244
{
245
	proc_symlink("net", NULL, "self/net");
246 247 248

	return register_pernet_subsys(&proc_net_ns_ops);
}