proc_sysctl.c 11.1 KB
Newer Older
1 2 3
/*
 * /proc/sys support
 */
A
Alexey Dobriyan 已提交
4
#include <linux/init.h>
5
#include <linux/sysctl.h>
L
Lucas De Marchi 已提交
6
#include <linux/poll.h>
7 8
#include <linux/proc_fs.h>
#include <linux/security.h>
9
#include <linux/namei.h>
10 11
#include "internal.h"

A
Al Viro 已提交
12
static const struct dentry_operations proc_sys_dentry_operations;
13
static const struct file_operations proc_sys_file_operations;
14
static const struct inode_operations proc_sys_inode_operations;
A
Al Viro 已提交
15 16
static const struct file_operations proc_sys_dir_file_operations;
static const struct inode_operations proc_sys_dir_operations;
17

L
Lucas De Marchi 已提交
18 19 20 21 22 23 24 25 26
void proc_sys_poll_notify(struct ctl_table_poll *poll)
{
	if (!poll)
		return;

	atomic_inc(&poll->event);
	wake_up_interruptible(&poll->wait);
}

A
Al Viro 已提交
27 28
static struct inode *proc_sys_make_inode(struct super_block *sb,
		struct ctl_table_header *head, struct ctl_table *table)
29 30
{
	struct inode *inode;
A
Al Viro 已提交
31
	struct proc_inode *ei;
32

A
Al Viro 已提交
33
	inode = new_inode(sb);
34 35 36
	if (!inode)
		goto out;

37 38
	inode->i_ino = get_next_ino();

A
Al Viro 已提交
39
	sysctl_head_get(head);
40
	ei = PROC_I(inode);
A
Al Viro 已提交
41 42 43
	ei->sysctl = head;
	ei->sysctl_entry = table;

44
	inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
A
Al Viro 已提交
45 46 47 48 49 50 51
	inode->i_mode = table->mode;
	if (!table->child) {
		inode->i_mode |= S_IFREG;
		inode->i_op = &proc_sys_inode_operations;
		inode->i_fop = &proc_sys_file_operations;
	} else {
		inode->i_mode |= S_IFDIR;
52
		clear_nlink(inode);
A
Al Viro 已提交
53 54 55
		inode->i_op = &proc_sys_dir_operations;
		inode->i_fop = &proc_sys_dir_file_operations;
	}
56 57 58 59
out:
	return inode;
}

A
Al Viro 已提交
60
static struct ctl_table *find_in_table(struct ctl_table *p, struct qstr *name)
61 62
{
	int len;
63
	for ( ; p->procname; p++) {
64

A
Al Viro 已提交
65
		if (!p->procname)
66 67
			continue;

A
Al Viro 已提交
68
		len = strlen(p->procname);
69 70 71
		if (len != name->len)
			continue;

A
Al Viro 已提交
72
		if (memcmp(p->procname, name->name, len) != 0)
73 74 75
			continue;

		/* I have a match */
A
Al Viro 已提交
76
		return p;
77 78 79 80
	}
	return NULL;
}

A
Adrian Bunk 已提交
81
static struct ctl_table_header *grab_header(struct inode *inode)
82
{
A
Al Viro 已提交
83 84 85 86 87
	if (PROC_I(inode)->sysctl)
		return sysctl_head_grab(PROC_I(inode)->sysctl);
	else
		return sysctl_head_next(NULL);
}
88

A
Al Viro 已提交
89 90 91 92 93 94 95 96 97 98
static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
					struct nameidata *nd)
{
	struct ctl_table_header *head = grab_header(dir);
	struct ctl_table *table = PROC_I(dir)->sysctl_entry;
	struct ctl_table_header *h = NULL;
	struct qstr *name = &dentry->d_name;
	struct ctl_table *p;
	struct inode *inode;
	struct dentry *err = ERR_PTR(-ENOENT);
99

A
Al Viro 已提交
100 101
	if (IS_ERR(head))
		return ERR_CAST(head);
102

A
Al Viro 已提交
103 104 105
	if (table && !table->child) {
		WARN_ON(1);
		goto out;
106 107
	}

A
Al Viro 已提交
108
	table = table ? table->child : head->ctl_table;
109

A
Al Viro 已提交
110 111 112 113 114 115 116 117 118
	p = find_in_table(table, name);
	if (!p) {
		for (h = sysctl_head_next(NULL); h; h = sysctl_head_next(h)) {
			if (h->attached_to != table)
				continue;
			p = find_in_table(h->attached_by, name);
			if (p)
				break;
		}
119 120
	}

A
Al Viro 已提交
121
	if (!p)
122 123 124
		goto out;

	err = ERR_PTR(-ENOMEM);
A
Al Viro 已提交
125 126 127 128
	inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
	if (h)
		sysctl_head_finish(h);

129 130 131 132
	if (!inode)
		goto out;

	err = NULL;
133
	d_set_d_op(dentry, &proc_sys_dentry_operations);
134 135 136 137 138 139 140
	d_add(dentry, inode);

out:
	sysctl_head_finish(head);
	return err;
}

141 142
static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
		size_t count, loff_t *ppos, int write)
143
{
A
Al Viro 已提交
144 145 146
	struct inode *inode = filp->f_path.dentry->d_inode;
	struct ctl_table_header *head = grab_header(inode);
	struct ctl_table *table = PROC_I(inode)->sysctl_entry;
147 148
	ssize_t error;
	size_t res;
149

A
Al Viro 已提交
150 151
	if (IS_ERR(head))
		return PTR_ERR(head);
152 153 154 155 156 157

	/*
	 * At this point we know that the sysctl was not unregistered
	 * and won't be until we finish.
	 */
	error = -EPERM;
158
	if (sysctl_perm(head->root, table, write ? MAY_WRITE : MAY_READ))
159 160
		goto out;

A
Al Viro 已提交
161 162 163 164 165
	/* if that can happen at all, it should be -EINVAL, not -EISDIR */
	error = -EINVAL;
	if (!table->proc_handler)
		goto out;

166 167
	/* careful: calling conventions are nasty here */
	res = count;
168
	error = table->proc_handler(table, write, buf, &res, ppos);
169 170 171 172 173 174 175 176
	if (!error)
		error = res;
out:
	sysctl_head_finish(head);

	return error;
}

177
static ssize_t proc_sys_read(struct file *filp, char __user *buf,
178 179
				size_t count, loff_t *ppos)
{
180 181
	return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
}
182

183 184 185 186
static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
				size_t count, loff_t *ppos)
{
	return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
187 188
}

L
Lucas De Marchi 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
static int proc_sys_open(struct inode *inode, struct file *filp)
{
	struct ctl_table *table = PROC_I(inode)->sysctl_entry;

	if (table->poll)
		filp->private_data = proc_sys_poll_event(table->poll);

	return 0;
}

static unsigned int proc_sys_poll(struct file *filp, poll_table *wait)
{
	struct inode *inode = filp->f_path.dentry->d_inode;
	struct ctl_table *table = PROC_I(inode)->sysctl_entry;
	unsigned long event = (unsigned long)filp->private_data;
	unsigned int ret = DEFAULT_POLLMASK;

	if (!table->proc_handler)
		goto out;

	if (!table->poll)
		goto out;

	poll_wait(filp, &table->poll->wait, wait);

	if (event != atomic_read(&table->poll->event)) {
		filp->private_data = proc_sys_poll_event(table->poll);
		ret = POLLIN | POLLRDNORM | POLLERR | POLLPRI;
	}

out:
	return ret;
}
222 223

static int proc_sys_fill_cache(struct file *filp, void *dirent,
A
Al Viro 已提交
224 225 226
				filldir_t filldir,
				struct ctl_table_header *head,
				struct ctl_table *table)
227 228 229 230 231 232 233 234 235 236 237 238 239
{
	struct dentry *child, *dir = filp->f_path.dentry;
	struct inode *inode;
	struct qstr qname;
	ino_t ino = 0;
	unsigned type = DT_UNKNOWN;

	qname.name = table->procname;
	qname.len  = strlen(table->procname);
	qname.hash = full_name_hash(qname.name, qname.len);

	child = d_lookup(dir, &qname);
	if (!child) {
A
Al Viro 已提交
240 241 242 243 244 245 246
		child = d_alloc(dir, &qname);
		if (child) {
			inode = proc_sys_make_inode(dir->d_sb, head, table);
			if (!inode) {
				dput(child);
				return -ENOMEM;
			} else {
247
				d_set_d_op(child, &proc_sys_dentry_operations);
A
Al Viro 已提交
248
				d_add(child, inode);
249
			}
A
Al Viro 已提交
250 251
		} else {
			return -ENOMEM;
252 253 254
		}
	}
	inode = child->d_inode;
A
Al Viro 已提交
255 256
	ino  = inode->i_ino;
	type = inode->i_mode >> 12;
257
	dput(child);
A
Al Viro 已提交
258 259 260 261 262 263 264 265
	return !!filldir(dirent, qname.name, qname.len, filp->f_pos, ino, type);
}

static int scan(struct ctl_table_header *head, ctl_table *table,
		unsigned long *pos, struct file *file,
		void *dirent, filldir_t filldir)
{

266
	for (; table->procname; table++, (*pos)++) {
A
Al Viro 已提交
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
		int res;

		/* Can't do anything without a proc name */
		if (!table->procname)
			continue;

		if (*pos < file->f_pos)
			continue;

		res = proc_sys_fill_cache(file, dirent, filldir, head, table);
		if (res)
			return res;

		file->f_pos = *pos + 1;
	}
	return 0;
283 284 285 286
}

static int proc_sys_readdir(struct file *filp, void *dirent, filldir_t filldir)
{
A
Al Viro 已提交
287
	struct dentry *dentry = filp->f_path.dentry;
288
	struct inode *inode = dentry->d_inode;
A
Al Viro 已提交
289 290 291
	struct ctl_table_header *head = grab_header(inode);
	struct ctl_table *table = PROC_I(inode)->sysctl_entry;
	struct ctl_table_header *h = NULL;
292
	unsigned long pos;
A
Al Viro 已提交
293 294 295 296
	int ret = -EINVAL;

	if (IS_ERR(head))
		return PTR_ERR(head);
297

A
Al Viro 已提交
298 299
	if (table && !table->child) {
		WARN_ON(1);
300
		goto out;
A
Al Viro 已提交
301 302 303
	}

	table = table ? table->child : head->ctl_table;
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320

	ret = 0;
	/* Avoid a switch here: arm builds fail with missing __cmpdi2 */
	if (filp->f_pos == 0) {
		if (filldir(dirent, ".", 1, filp->f_pos,
				inode->i_ino, DT_DIR) < 0)
			goto out;
		filp->f_pos++;
	}
	if (filp->f_pos == 1) {
		if (filldir(dirent, "..", 2, filp->f_pos,
				parent_ino(dentry), DT_DIR) < 0)
			goto out;
		filp->f_pos++;
	}
	pos = 2;

A
Al Viro 已提交
321 322 323
	ret = scan(head, table, &pos, filp, dirent, filldir);
	if (ret)
		goto out;
324

A
Al Viro 已提交
325 326
	for (h = sysctl_head_next(NULL); h; h = sysctl_head_next(h)) {
		if (h->attached_to != table)
327
			continue;
A
Al Viro 已提交
328 329 330 331
		ret = scan(h, h->attached_by, &pos, filp, dirent, filldir);
		if (ret) {
			sysctl_head_finish(h);
			break;
332 333 334 335 336 337 338 339
		}
	}
	ret = 1;
out:
	sysctl_head_finish(head);
	return ret;
}

340
static int proc_sys_permission(struct inode *inode, int mask)
341 342 343 344 345
{
	/*
	 * sysctl entries that are not writeable,
	 * are _NOT_ writeable, capabilities or not.
	 */
346 347
	struct ctl_table_header *head;
	struct ctl_table *table;
348 349
	int error;

350 351 352 353 354
	/* Executable files are not allowed under /proc/sys/ */
	if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
		return -EACCES;

	head = grab_header(inode);
A
Al Viro 已提交
355 356
	if (IS_ERR(head))
		return PTR_ERR(head);
357

358
	table = PROC_I(inode)->sysctl_entry;
A
Al Viro 已提交
359 360 361
	if (!table) /* global root - r-xr-xr-x */
		error = mask & MAY_WRITE ? -EACCES : 0;
	else /* Use the permissions on the sysctl table entry */
362
		error = sysctl_perm(head->root, table, mask & ~MAY_NOT_BLOCK);
363 364 365 366 367 368 369 370 371 372 373 374 375 376

	sysctl_head_finish(head);
	return error;
}

static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
{
	struct inode *inode = dentry->d_inode;
	int error;

	if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
		return -EPERM;

	error = inode_change_ok(inode, attr);
C
Christoph Hellwig 已提交
377 378 379 380 381 382 383 384 385
	if (error)
		return error;

	if ((attr->ia_valid & ATTR_SIZE) &&
	    attr->ia_size != i_size_read(inode)) {
		error = vmtruncate(inode, attr->ia_size);
		if (error)
			return error;
	}
386

C
Christoph Hellwig 已提交
387 388 389
	setattr_copy(inode, attr);
	mark_inode_dirty(inode);
	return 0;
390 391
}

A
Al Viro 已提交
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
{
	struct inode *inode = dentry->d_inode;
	struct ctl_table_header *head = grab_header(inode);
	struct ctl_table *table = PROC_I(inode)->sysctl_entry;

	if (IS_ERR(head))
		return PTR_ERR(head);

	generic_fillattr(inode, stat);
	if (table)
		stat->mode = (stat->mode & S_IFMT) | table->mode;

	sysctl_head_finish(head);
	return 0;
}

409
static const struct file_operations proc_sys_file_operations = {
L
Lucas De Marchi 已提交
410 411
	.open		= proc_sys_open,
	.poll		= proc_sys_poll,
412 413
	.read		= proc_sys_read,
	.write		= proc_sys_write,
414
	.llseek		= default_llseek,
A
Al Viro 已提交
415 416 417
};

static const struct file_operations proc_sys_dir_file_operations = {
418
	.read		= generic_read_dir,
419
	.readdir	= proc_sys_readdir,
420
	.llseek		= generic_file_llseek,
421 422
};

423
static const struct inode_operations proc_sys_inode_operations = {
A
Al Viro 已提交
424 425 426 427 428 429
	.permission	= proc_sys_permission,
	.setattr	= proc_sys_setattr,
	.getattr	= proc_sys_getattr,
};

static const struct inode_operations proc_sys_dir_operations = {
430 431 432
	.lookup		= proc_sys_lookup,
	.permission	= proc_sys_permission,
	.setattr	= proc_sys_setattr,
A
Al Viro 已提交
433
	.getattr	= proc_sys_getattr,
434 435 436 437
};

static int proc_sys_revalidate(struct dentry *dentry, struct nameidata *nd)
{
438 439
	if (nd->flags & LOOKUP_RCU)
		return -ECHILD;
A
Al Viro 已提交
440 441 442
	return !PROC_I(dentry->d_inode)->sysctl->unregistering;
}

N
Nick Piggin 已提交
443
static int proc_sys_delete(const struct dentry *dentry)
A
Al Viro 已提交
444 445 446 447
{
	return !!PROC_I(dentry->d_inode)->sysctl->unregistering;
}

N
Nick Piggin 已提交
448 449 450 451
static int proc_sys_compare(const struct dentry *parent,
		const struct inode *pinode,
		const struct dentry *dentry, const struct inode *inode,
		unsigned int len, const char *str, const struct qstr *name)
A
Al Viro 已提交
452
{
A
Al Viro 已提交
453
	struct ctl_table_header *head;
N
Nick Piggin 已提交
454 455
	/* Although proc doesn't have negative dentries, rcu-walk means
	 * that inode here can be NULL */
A
Al Viro 已提交
456
	/* AV: can it, indeed? */
N
Nick Piggin 已提交
457
	if (!inode)
A
Al Viro 已提交
458
		return 1;
N
Nick Piggin 已提交
459
	if (name->len != len)
A
Al Viro 已提交
460
		return 1;
N
Nick Piggin 已提交
461
	if (memcmp(name->name, str, len))
A
Al Viro 已提交
462
		return 1;
A
Al Viro 已提交
463 464
	head = rcu_dereference(PROC_I(inode)->sysctl);
	return !head || !sysctl_is_seen(head);
465 466
}

A
Al Viro 已提交
467
static const struct dentry_operations proc_sys_dentry_operations = {
468
	.d_revalidate	= proc_sys_revalidate,
A
Al Viro 已提交
469 470
	.d_delete	= proc_sys_delete,
	.d_compare	= proc_sys_compare,
471 472
};

A
Alexey Dobriyan 已提交
473
int __init proc_sys_init(void)
474
{
A
Alexey Dobriyan 已提交
475 476
	struct proc_dir_entry *proc_sys_root;

477
	proc_sys_root = proc_mkdir("sys", NULL);
A
Al Viro 已提交
478 479
	proc_sys_root->proc_iops = &proc_sys_dir_operations;
	proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
480 481 482
	proc_sys_root->nlink = 0;
	return 0;
}