inode.c 13.1 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4 5 6 7
/*
 *  linux/fs/proc/inode.c
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 */

A
Alexey Dobriyan 已提交
8
#include <linux/cache.h>
L
Linus Torvalds 已提交
9 10 11
#include <linux/time.h>
#include <linux/proc_fs.h>
#include <linux/kernel.h>
V
Vasiliy Kulikov 已提交
12
#include <linux/pid_namespace.h>
L
Linus Torvalds 已提交
13 14 15
#include <linux/mm.h>
#include <linux/string.h>
#include <linux/stat.h>
16
#include <linux/completion.h>
17
#include <linux/poll.h>
A
Andrew Morton 已提交
18
#include <linux/printk.h>
L
Linus Torvalds 已提交
19 20 21 22
#include <linux/file.h>
#include <linux/limits.h>
#include <linux/init.h>
#include <linux/module.h>
A
Al Viro 已提交
23
#include <linux/sysctl.h>
V
Vasiliy Kulikov 已提交
24
#include <linux/seq_file.h>
25
#include <linux/slab.h>
V
Vasiliy Kulikov 已提交
26
#include <linux/mount.h>
27
#include <linux/magic.h>
L
Linus Torvalds 已提交
28

29
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
30

31
#include "internal.h"
L
Linus Torvalds 已提交
32

A
Al Viro 已提交
33
static void proc_evict_inode(struct inode *inode)
L
Linus Torvalds 已提交
34 35
{
	struct proc_dir_entry *de;
A
Al Viro 已提交
36
	struct ctl_table_header *head;
L
Linus Torvalds 已提交
37

38
	truncate_inode_pages_final(&inode->i_data);
39
	clear_inode(inode);
40

41
	/* Stop tracking associated processes */
42
	put_pid(PROC_I(inode)->pid);
L
Linus Torvalds 已提交
43 44

	/* Let go of any associated proc directory entry */
45
	de = PDE(inode);
46
	if (de)
47
		pde_put(de);
48

A
Al Viro 已提交
49 50
	head = PROC_I(inode)->sysctl;
	if (head) {
51
		RCU_INIT_POINTER(PROC_I(inode)->sysctl, NULL);
52
		proc_sys_evict_inode(inode, head);
A
Al Viro 已提交
53
	}
L
Linus Torvalds 已提交
54 55
}

A
Alexey Dobriyan 已提交
56
static struct kmem_cache *proc_inode_cachep __ro_after_init;
57
static struct kmem_cache *pde_opener_cache __ro_after_init;
L
Linus Torvalds 已提交
58 59 60 61 62 63

static struct inode *proc_alloc_inode(struct super_block *sb)
{
	struct proc_inode *ei;
	struct inode *inode;

64
	ei = kmem_cache_alloc(proc_inode_cachep, GFP_KERNEL);
L
Linus Torvalds 已提交
65 66
	if (!ei)
		return NULL;
67
	ei->pid = NULL;
68
	ei->fd = 0;
L
Linus Torvalds 已提交
69 70
	ei->op.proc_get_link = NULL;
	ei->pde = NULL;
A
Al Viro 已提交
71 72
	ei->sysctl = NULL;
	ei->sysctl_entry = NULL;
A
Al Viro 已提交
73
	ei->ns_ops = NULL;
L
Linus Torvalds 已提交
74 75 76 77
	inode = &ei->vfs_inode;
	return inode;
}

N
Nick Piggin 已提交
78
static void proc_i_callback(struct rcu_head *head)
L
Linus Torvalds 已提交
79
{
N
Nick Piggin 已提交
80
	struct inode *inode = container_of(head, struct inode, i_rcu);
L
Linus Torvalds 已提交
81 82 83
	kmem_cache_free(proc_inode_cachep, PROC_I(inode));
}

N
Nick Piggin 已提交
84 85 86 87 88
static void proc_destroy_inode(struct inode *inode)
{
	call_rcu(&inode->i_rcu, proc_i_callback);
}

89
static void init_once(void *foo)
L
Linus Torvalds 已提交
90 91 92
{
	struct proc_inode *ei = (struct proc_inode *) foo;

C
Christoph Lameter 已提交
93
	inode_init_once(&ei->vfs_inode);
L
Linus Torvalds 已提交
94
}
95

96
void __init proc_init_kmemcache(void)
L
Linus Torvalds 已提交
97 98 99
{
	proc_inode_cachep = kmem_cache_create("proc_inode_cache",
					     sizeof(struct proc_inode),
100
					     0, (SLAB_RECLAIM_ACCOUNT|
101 102
						SLAB_MEM_SPREAD|SLAB_ACCOUNT|
						SLAB_PANIC),
103
					     init_once);
104 105
	pde_opener_cache =
		kmem_cache_create("pde_opener", sizeof(struct pde_opener), 0,
106
				  SLAB_ACCOUNT|SLAB_PANIC, NULL);
107 108 109 110
	proc_dir_entry_cache = kmem_cache_create_usercopy(
		"proc_dir_entry", sizeof(struct proc_dir_entry), 0, SLAB_PANIC,
		offsetof(struct proc_dir_entry, inline_name),
		sizeof_field(struct proc_dir_entry, inline_name), NULL);
L
Linus Torvalds 已提交
111 112
}

V
Vasiliy Kulikov 已提交
113 114
static int proc_show_options(struct seq_file *seq, struct dentry *root)
{
115 116 117
	struct super_block *sb = root->d_sb;
	struct pid_namespace *pid = sb->s_fs_info;

118 119
	if (!gid_eq(pid->pid_gid, GLOBAL_ROOT_GID))
		seq_printf(seq, ",gid=%u", from_kgid_munged(&init_user_ns, pid->pid_gid));
120
	if (pid->hide_pid != HIDEPID_OFF)
121 122
		seq_printf(seq, ",hidepid=%u", pid->hide_pid);

V
Vasiliy Kulikov 已提交
123 124 125
	return 0;
}

126
static const struct super_operations proc_sops = {
L
Linus Torvalds 已提交
127 128 129
	.alloc_inode	= proc_alloc_inode,
	.destroy_inode	= proc_destroy_inode,
	.drop_inode	= generic_delete_inode,
A
Al Viro 已提交
130
	.evict_inode	= proc_evict_inode,
L
Linus Torvalds 已提交
131
	.statfs		= simple_statfs,
V
Vasiliy Kulikov 已提交
132 133
	.remount_fs	= proc_remount,
	.show_options	= proc_show_options,
L
Linus Torvalds 已提交
134 135
};

136 137 138 139
enum {BIAS = -1U<<31};

static inline int use_pde(struct proc_dir_entry *pde)
{
140
	return likely(atomic_inc_unless_negative(&pde->in_use));
A
Alexey Dobriyan 已提交
141 142
}

143
static void unuse_pde(struct proc_dir_entry *pde)
A
Alexey Dobriyan 已提交
144
{
145
	if (unlikely(atomic_dec_return(&pde->in_use) == BIAS))
A
Al Viro 已提交
146
		complete(pde->pde_unload_completion);
147 148
}

149
/* pde is locked on entry, unlocked on exit */
150 151
static void close_pdeo(struct proc_dir_entry *pde, struct pde_opener *pdeo)
{
152 153 154 155 156 157 158 159 160 161
	/*
	 * close() (proc_reg_release()) can't delete an entry and proceed:
	 * ->release hook needs to be available at the right moment.
	 *
	 * rmmod (remove_proc_entry() et al) can't delete an entry and proceed:
	 * "struct file" needs to be available at the right moment.
	 *
	 * Therefore, first process to enter this function does ->release() and
	 * signals its completion to the other process which does nothing.
	 */
A
Al Viro 已提交
162
	if (pdeo->closing) {
163
		/* somebody else is doing that, just wait */
A
Al Viro 已提交
164 165
		DECLARE_COMPLETION_ONSTACK(c);
		pdeo->c = &c;
166
		spin_unlock(&pde->pde_unload_lock);
A
Al Viro 已提交
167
		wait_for_completion(&c);
168 169
	} else {
		struct file *file;
170 171
		struct completion *c;

172
		pdeo->closing = true;
173 174 175 176
		spin_unlock(&pde->pde_unload_lock);
		file = pdeo->file;
		pde->proc_fops->release(file_inode(file), file);
		spin_lock(&pde->pde_unload_lock);
177
		/* After ->release. */
178
		list_del(&pdeo->lh);
179 180 181 182
		c = pdeo->c;
		spin_unlock(&pde->pde_unload_lock);
		if (unlikely(c))
			complete(c);
183
		kmem_cache_free(pde_opener_cache, pdeo);
A
Al Viro 已提交
184
	}
185 186
}

187
void proc_entry_rundown(struct proc_dir_entry *de)
188
{
A
Al Viro 已提交
189
	DECLARE_COMPLETION_ONSTACK(c);
190
	/* Wait until all existing callers into module are done. */
A
Al Viro 已提交
191 192 193
	de->pde_unload_completion = &c;
	if (atomic_add_return(BIAS, &de->in_use) != BIAS)
		wait_for_completion(&c);
194

195 196
	/* ->pde_openers list can't grow from now on. */

A
Al Viro 已提交
197
	spin_lock(&de->pde_unload_lock);
198 199 200
	while (!list_empty(&de->pde_openers)) {
		struct pde_opener *pdeo;
		pdeo = list_first_entry(&de->pde_openers, struct pde_opener, lh);
201
		close_pdeo(de, pdeo);
202
		spin_lock(&de->pde_unload_lock);
203 204
	}
	spin_unlock(&de->pde_unload_lock);
205 206
}

207 208 209 210 211 212 213 214 215 216 217 218
static loff_t proc_reg_llseek(struct file *file, loff_t offset, int whence)
{
	struct proc_dir_entry *pde = PDE(file_inode(file));
	loff_t rv = -EINVAL;
	if (use_pde(pde)) {
		loff_t (*llseek)(struct file *, loff_t, int);
		llseek = pde->proc_fops->llseek;
		if (!llseek)
			llseek = default_llseek;
		rv = llseek(file, offset, whence);
		unuse_pde(pde);
	}
219 220 221
	return rv;
}

222
static ssize_t proc_reg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
223
{
224
	ssize_t (*read)(struct file *, char __user *, size_t, loff_t *);
A
Al Viro 已提交
225
	struct proc_dir_entry *pde = PDE(file_inode(file));
226
	ssize_t rv = -EIO;
227 228 229 230 231
	if (use_pde(pde)) {
		read = pde->proc_fops->read;
		if (read)
			rv = read(file, buf, count, ppos);
		unuse_pde(pde);
232
	}
233 234
	return rv;
}
235

236 237 238 239 240 241 242 243 244 245 246
static ssize_t proc_reg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
{
	ssize_t (*write)(struct file *, const char __user *, size_t, loff_t *);
	struct proc_dir_entry *pde = PDE(file_inode(file));
	ssize_t rv = -EIO;
	if (use_pde(pde)) {
		write = pde->proc_fops->write;
		if (write)
			rv = write(file, buf, count, ppos);
		unuse_pde(pde);
	}
247 248 249
	return rv;
}

A
Al Viro 已提交
250
static __poll_t proc_reg_poll(struct file *file, struct poll_table_struct *pts)
251
{
A
Al Viro 已提交
252
	struct proc_dir_entry *pde = PDE(file_inode(file));
253
	__poll_t rv = DEFAULT_POLLMASK;
A
Al Viro 已提交
254
	__poll_t (*poll)(struct file *, struct poll_table_struct *);
255 256 257 258 259
	if (use_pde(pde)) {
		poll = pde->proc_fops->poll;
		if (poll)
			rv = poll(file, pts);
		unuse_pde(pde);
260 261 262 263 264 265
	}
	return rv;
}

static long proc_reg_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
A
Al Viro 已提交
266
	struct proc_dir_entry *pde = PDE(file_inode(file));
267
	long rv = -ENOTTY;
268
	long (*ioctl)(struct file *, unsigned int, unsigned long);
269 270 271 272 273
	if (use_pde(pde)) {
		ioctl = pde->proc_fops->unlocked_ioctl;
		if (ioctl)
			rv = ioctl(file, cmd, arg);
		unuse_pde(pde);
274 275 276 277 278 279 280
	}
	return rv;
}

#ifdef CONFIG_COMPAT
static long proc_reg_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
A
Al Viro 已提交
281
	struct proc_dir_entry *pde = PDE(file_inode(file));
282 283
	long rv = -ENOTTY;
	long (*compat_ioctl)(struct file *, unsigned int, unsigned long);
284 285 286 287 288
	if (use_pde(pde)) {
		compat_ioctl = pde->proc_fops->compat_ioctl;
		if (compat_ioctl)
			rv = compat_ioctl(file, cmd, arg);
		unuse_pde(pde);
289 290 291 292 293 294 295
	}
	return rv;
}
#endif

static int proc_reg_mmap(struct file *file, struct vm_area_struct *vma)
{
A
Al Viro 已提交
296
	struct proc_dir_entry *pde = PDE(file_inode(file));
297 298
	int rv = -EIO;
	int (*mmap)(struct file *, struct vm_area_struct *);
299 300 301 302 303
	if (use_pde(pde)) {
		mmap = pde->proc_fops->mmap;
		if (mmap)
			rv = mmap(file, vma);
		unuse_pde(pde);
304 305 306 307
	}
	return rv;
}

308 309 310 311
static unsigned long
proc_reg_get_unmapped_area(struct file *file, unsigned long orig_addr,
			   unsigned long len, unsigned long pgoff,
			   unsigned long flags)
312 313
{
	struct proc_dir_entry *pde = PDE(file_inode(file));
314
	unsigned long rv = -EIO;
315

316
	if (use_pde(pde)) {
317 318 319
		typeof(proc_reg_get_unmapped_area) *get_area;

		get_area = pde->proc_fops->get_unmapped_area;
320
#ifdef CONFIG_MMU
321 322
		if (!get_area)
			get_area = current->mm->get_unmapped_area;
323
#endif
324

325 326
		if (get_area)
			rv = get_area(file, orig_addr, len, pgoff, flags);
327 328
		else
			rv = orig_addr;
329 330 331 332 333
		unuse_pde(pde);
	}
	return rv;
}

334 335 336 337 338
static int proc_reg_open(struct inode *inode, struct file *file)
{
	struct proc_dir_entry *pde = PDE(inode);
	int rv = 0;
	int (*open)(struct inode *, struct file *);
A
Alexey Dobriyan 已提交
339 340 341 342
	int (*release)(struct inode *, struct file *);
	struct pde_opener *pdeo;

	/*
343 344 345 346 347 348 349
	 * Ensure that
	 * 1) PDE's ->release hook will be called no matter what
	 *    either normally by close()/->release, or forcefully by
	 *    rmmod/remove_proc_entry.
	 *
	 * 2) rmmod isn't blocked by opening file in /proc and sitting on
	 *    the descriptor (including "rmmod foo </proc/foo" scenario).
A
Alexey Dobriyan 已提交
350
	 *
351
	 * Save every "struct file" with custom ->release hook.
A
Alexey Dobriyan 已提交
352
	 */
353
	if (!use_pde(pde))
354
		return -ENOENT;
355

A
Alexey Dobriyan 已提交
356
	release = pde->proc_fops->release;
357
	if (release) {
358
		pdeo = kmem_cache_alloc(pde_opener_cache, GFP_KERNEL);
359 360 361 362 363
		if (!pdeo) {
			rv = -ENOMEM;
			goto out_unuse;
		}
	}
364

365
	open = pde->proc_fops->open;
366 367 368
	if (open)
		rv = open(inode, file);

369 370 371 372 373 374 375 376 377 378
	if (release) {
		if (rv == 0) {
			/* To know what to release. */
			pdeo->file = file;
			pdeo->closing = false;
			pdeo->c = NULL;
			spin_lock(&pde->pde_unload_lock);
			list_add(&pdeo->lh, &pde->pde_openers);
			spin_unlock(&pde->pde_unload_lock);
		} else
379
			kmem_cache_free(pde_opener_cache, pdeo);
380
	}
A
Al Viro 已提交
381

382
out_unuse:
A
Al Viro 已提交
383
	unuse_pde(pde);
384 385 386 387 388 389
	return rv;
}

static int proc_reg_release(struct inode *inode, struct file *file)
{
	struct proc_dir_entry *pde = PDE(inode);
A
Alexey Dobriyan 已提交
390
	struct pde_opener *pdeo;
391
	spin_lock(&pde->pde_unload_lock);
392 393 394
	list_for_each_entry(pdeo, &pde->pde_openers, lh) {
		if (pdeo->file == file) {
			close_pdeo(pde, pdeo);
395
			return 0;
396
		}
A
Alexey Dobriyan 已提交
397
	}
398
	spin_unlock(&pde->pde_unload_lock);
399
	return 0;
400 401 402 403 404 405 406 407 408 409 410 411
}

static const struct file_operations proc_reg_file_ops = {
	.llseek		= proc_reg_llseek,
	.read		= proc_reg_read,
	.write		= proc_reg_write,
	.poll		= proc_reg_poll,
	.unlocked_ioctl	= proc_reg_unlocked_ioctl,
#ifdef CONFIG_COMPAT
	.compat_ioctl	= proc_reg_compat_ioctl,
#endif
	.mmap		= proc_reg_mmap,
412
	.get_unmapped_area = proc_reg_get_unmapped_area,
413 414 415 416
	.open		= proc_reg_open,
	.release	= proc_reg_release,
};

417 418 419 420 421 422 423 424
#ifdef CONFIG_COMPAT
static const struct file_operations proc_reg_file_ops_no_compat = {
	.llseek		= proc_reg_llseek,
	.read		= proc_reg_read,
	.write		= proc_reg_write,
	.poll		= proc_reg_poll,
	.unlocked_ioctl	= proc_reg_unlocked_ioctl,
	.mmap		= proc_reg_mmap,
425
	.get_unmapped_area = proc_reg_get_unmapped_area,
426 427 428 429 430
	.open		= proc_reg_open,
	.release	= proc_reg_release,
};
#endif

431 432 433 434 435
static void proc_put_link(void *p)
{
	unuse_pde(p);
}

436
static const char *proc_get_link(struct dentry *dentry,
437 438
				 struct inode *inode,
				 struct delayed_call *done)
439
{
440
	struct proc_dir_entry *pde = PDE(inode);
441
	if (!use_pde(pde))
442
		return ERR_PTR(-EINVAL);
443
	set_delayed_call(done, proc_put_link, pde);
444
	return pde->data;
445 446 447
}

const struct inode_operations proc_link_inode_operations = {
448
	.get_link	= proc_get_link,
449 450
};

A
Alexey Dobriyan 已提交
451
struct inode *proc_get_inode(struct super_block *sb, struct proc_dir_entry *de)
L
Linus Torvalds 已提交
452
{
453
	struct inode *inode = new_inode_pseudo(sb);
L
Linus Torvalds 已提交
454

455 456
	if (inode) {
		inode->i_ino = de->low_ino;
457
		inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
458
		PROC_I(inode)->pde = de;
459

460 461 462 463
		if (is_empty_pde(de)) {
			make_empty_dir_inode(inode);
			return inode;
		}
464 465 466 467 468 469 470 471
		if (de->mode) {
			inode->i_mode = de->mode;
			inode->i_uid = de->uid;
			inode->i_gid = de->gid;
		}
		if (de->size)
			inode->i_size = de->size;
		if (de->nlink)
M
Miklos Szeredi 已提交
472
			set_nlink(inode, de->nlink);
473 474
		WARN_ON(!de->proc_iops);
		inode->i_op = de->proc_iops;
475 476
		if (de->proc_fops) {
			if (S_ISREG(inode->i_mode)) {
477
#ifdef CONFIG_COMPAT
478 479 480 481
				if (!de->proc_fops->compat_ioctl)
					inode->i_fop =
						&proc_reg_file_ops_no_compat;
				else
482
#endif
483 484 485
					inode->i_fop = &proc_reg_file_ops;
			} else {
				inode->i_fop = de->proc_fops;
486
			}
487
		}
488
	} else
489
	       pde_put(de);
L
Linus Torvalds 已提交
490
	return inode;
491
}
L
Linus Torvalds 已提交
492

493
int proc_fill_super(struct super_block *s, void *data, int silent)
L
Linus Torvalds 已提交
494
{
495
	struct pid_namespace *ns = get_pid_ns(s->s_fs_info);
496
	struct inode *root_inode;
497
	int ret;
498

499 500 501
	if (!proc_parse_options(data, ns))
		return -EINVAL;

502 503
	/* User space would break if executables or devices appear on proc */
	s->s_iflags |= SB_I_USERNS_VISIBLE | SB_I_NOEXEC | SB_I_NODEV;
504
	s->s_flags |= SB_NODIRATIME | SB_NOSUID | SB_NOEXEC;
L
Linus Torvalds 已提交
505 506 507 508 509
	s->s_blocksize = 1024;
	s->s_blocksize_bits = 10;
	s->s_magic = PROC_SUPER_MAGIC;
	s->s_op = &proc_sops;
	s->s_time_gran = 1;
510 511 512 513 514 515 516

	/*
	 * procfs isn't actually a stacking filesystem; however, there is
	 * too much magic going on inside it to permit stacking things on
	 * top of it
	 */
	s->s_stack_depth = FILESYSTEM_MAX_STACK_DEPTH;
L
Linus Torvalds 已提交
517
	
518
	pde_get(&proc_root);
519 520
	root_inode = proc_get_inode(s, &proc_root);
	if (!root_inode) {
A
Andrew Morton 已提交
521
		pr_err("proc_fill_super: get root inode failed\n");
522 523
		return -ENOMEM;
	}
L
Linus Torvalds 已提交
524

525 526
	s->s_root = d_make_root(root_inode);
	if (!s->s_root) {
A
Andrew Morton 已提交
527
		pr_err("proc_fill_super: allocate dentry failed\n");
528 529 530
		return -ENOMEM;
	}

531 532 533 534 535
	ret = proc_setup_self(s);
	if (ret) {
		return ret;
	}
	return proc_setup_thread_self(s);
L
Linus Torvalds 已提交
536
}