xref: /openbmc/linux/fs/proc/base.c (revision caaee6234d05a58c5b4d05e7bf766131b810a657)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  *  linux/fs/proc/base.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  *  Copyright (C) 1991, 1992 Linus Torvalds
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  *  proc base directory handling functions
71da177e4SLinus Torvalds  *
81da177e4SLinus Torvalds  *  1999, Al Viro. Rewritten. Now it covers the whole per-process part.
91da177e4SLinus Torvalds  *  Instead of using magical inumbers to determine the kind of object
101da177e4SLinus Torvalds  *  we allocate and fill in-core inodes upon lookup. They don't even
111da177e4SLinus Torvalds  *  go into icache. We cache the reference to task_struct upon lookup too.
121da177e4SLinus Torvalds  *  Eventually it should become a filesystem in its own. We don't use the
131da177e4SLinus Torvalds  *  rest of procfs anymore.
14e070ad49SMauricio Lin  *
15e070ad49SMauricio Lin  *
16e070ad49SMauricio Lin  *  Changelog:
17e070ad49SMauricio Lin  *  17-Jan-2005
18e070ad49SMauricio Lin  *  Allan Bezerra
19e070ad49SMauricio Lin  *  Bruna Moreira <bruna.moreira@indt.org.br>
20e070ad49SMauricio Lin  *  Edjard Mota <edjard.mota@indt.org.br>
21e070ad49SMauricio Lin  *  Ilias Biris <ilias.biris@indt.org.br>
22e070ad49SMauricio Lin  *  Mauricio Lin <mauricio.lin@indt.org.br>
23e070ad49SMauricio Lin  *
24e070ad49SMauricio Lin  *  Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
25e070ad49SMauricio Lin  *
26e070ad49SMauricio Lin  *  A new process specific entry (smaps) included in /proc. It shows the
27e070ad49SMauricio Lin  *  size of rss for each memory area. The maps entry lacks information
28e070ad49SMauricio Lin  *  about physical memory size (rss) for each mapped file, i.e.,
29e070ad49SMauricio Lin  *  rss information for executables and library files.
30e070ad49SMauricio Lin  *  This additional information is useful for any tools that need to know
31e070ad49SMauricio Lin  *  about physical memory consumption for a process specific library.
32e070ad49SMauricio Lin  *
33e070ad49SMauricio Lin  *  Changelog:
34e070ad49SMauricio Lin  *  21-Feb-2005
35e070ad49SMauricio Lin  *  Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
36e070ad49SMauricio Lin  *  Pud inclusion in the page table walking.
37e070ad49SMauricio Lin  *
38e070ad49SMauricio Lin  *  ChangeLog:
39e070ad49SMauricio Lin  *  10-Mar-2005
40e070ad49SMauricio Lin  *  10LE Instituto Nokia de Tecnologia - INdT:
41e070ad49SMauricio Lin  *  A better way to walks through the page table as suggested by Hugh Dickins.
42e070ad49SMauricio Lin  *
43e070ad49SMauricio Lin  *  Simo Piiroinen <simo.piiroinen@nokia.com>:
44e070ad49SMauricio Lin  *  Smaps information related to shared, private, clean and dirty pages.
45e070ad49SMauricio Lin  *
46e070ad49SMauricio Lin  *  Paul Mundt <paul.mundt@nokia.com>:
47e070ad49SMauricio Lin  *  Overall revision about smaps.
481da177e4SLinus Torvalds  */
491da177e4SLinus Torvalds 
501da177e4SLinus Torvalds #include <asm/uaccess.h>
511da177e4SLinus Torvalds 
521da177e4SLinus Torvalds #include <linux/errno.h>
531da177e4SLinus Torvalds #include <linux/time.h>
541da177e4SLinus Torvalds #include <linux/proc_fs.h>
551da177e4SLinus Torvalds #include <linux/stat.h>
565995477aSAndrea Righi #include <linux/task_io_accounting_ops.h>
571da177e4SLinus Torvalds #include <linux/init.h>
5816f7e0feSRandy Dunlap #include <linux/capability.h>
591da177e4SLinus Torvalds #include <linux/file.h>
609f3acc31SAl Viro #include <linux/fdtable.h>
611da177e4SLinus Torvalds #include <linux/string.h>
621da177e4SLinus Torvalds #include <linux/seq_file.h>
631da177e4SLinus Torvalds #include <linux/namei.h>
646b3286edSKirill Korotaev #include <linux/mnt_namespace.h>
651da177e4SLinus Torvalds #include <linux/mm.h>
66a63d83f4SDavid Rientjes #include <linux/swap.h>
67b835996fSDipankar Sarma #include <linux/rcupdate.h>
681da177e4SLinus Torvalds #include <linux/kallsyms.h>
692ec220e2SKen Chen #include <linux/stacktrace.h>
70d85f50d5SNeil Horman #include <linux/resource.h>
715096add8SKees Cook #include <linux/module.h>
721da177e4SLinus Torvalds #include <linux/mount.h>
731da177e4SLinus Torvalds #include <linux/security.h>
741da177e4SLinus Torvalds #include <linux/ptrace.h>
750d094efeSRoland McGrath #include <linux/tracehook.h>
7687ebdc00SAndrew Morton #include <linux/printk.h>
77a424316cSPaul Menage #include <linux/cgroup.h>
781da177e4SLinus Torvalds #include <linux/cpuset.h>
791da177e4SLinus Torvalds #include <linux/audit.h>
805addc5ddSAl Viro #include <linux/poll.h>
811651e14eSSerge E. Hallyn #include <linux/nsproxy.h>
828ac773b4SAlexey Dobriyan #include <linux/oom.h>
833cb4a0bbSKawai, Hidehiro #include <linux/elf.h>
8460347f67SPavel Emelyanov #include <linux/pid_namespace.h>
8522d917d8SEric W. Biederman #include <linux/user_namespace.h>
865ad4e53bSAl Viro #include <linux/fs_struct.h>
875a0e3ad6STejun Heo #include <linux/slab.h>
88640708a2SPavel Emelyanov #include <linux/flex_array.h>
8948f6a7a5SPavel Emelyanov #include <linux/posix-timers.h>
90f133eccaSChris Metcalf #ifdef CONFIG_HARDWALL
91f133eccaSChris Metcalf #include <asm/hardwall.h>
92f133eccaSChris Metcalf #endif
9343d2b113SKAMEZAWA Hiroyuki #include <trace/events/oom.h>
941da177e4SLinus Torvalds #include "internal.h"
95faf60af1SCyrill Gorcunov #include "fd.h"
961da177e4SLinus Torvalds 
970f2fe20fSEric W. Biederman /* NOTE:
980f2fe20fSEric W. Biederman  *	Implementing inode permission operations in /proc is almost
990f2fe20fSEric W. Biederman  *	certainly an error.  Permission checks need to happen during
1000f2fe20fSEric W. Biederman  *	each system call not at open time.  The reason is that most of
1010f2fe20fSEric W. Biederman  *	what we wish to check for permissions in /proc varies at runtime.
1020f2fe20fSEric W. Biederman  *
1030f2fe20fSEric W. Biederman  *	The classic example of a problem is opening file descriptors
1040f2fe20fSEric W. Biederman  *	in /proc for a task before it execs a suid executable.
1050f2fe20fSEric W. Biederman  */
1060f2fe20fSEric W. Biederman 
1071da177e4SLinus Torvalds struct pid_entry {
108cedbccabSAlexey Dobriyan 	const char *name;
109c5141e6dSEric Dumazet 	int len;
110d161a13fSAl Viro 	umode_t mode;
111c5ef1c42SArjan van de Ven 	const struct inode_operations *iop;
11200977a59SArjan van de Ven 	const struct file_operations *fop;
11320cdc894SEric W. Biederman 	union proc_op op;
1141da177e4SLinus Torvalds };
1151da177e4SLinus Torvalds 
11661a28784SEric W. Biederman #define NOD(NAME, MODE, IOP, FOP, OP) {			\
11720cdc894SEric W. Biederman 	.name = (NAME),					\
118c5141e6dSEric Dumazet 	.len  = sizeof(NAME) - 1,			\
11920cdc894SEric W. Biederman 	.mode = MODE,					\
12020cdc894SEric W. Biederman 	.iop  = IOP,					\
12120cdc894SEric W. Biederman 	.fop  = FOP,					\
12220cdc894SEric W. Biederman 	.op   = OP,					\
12320cdc894SEric W. Biederman }
12420cdc894SEric W. Biederman 
125631f9c18SAlexey Dobriyan #define DIR(NAME, MODE, iops, fops)	\
126631f9c18SAlexey Dobriyan 	NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
127631f9c18SAlexey Dobriyan #define LNK(NAME, get_link)					\
12861a28784SEric W. Biederman 	NOD(NAME, (S_IFLNK|S_IRWXUGO),				\
12920cdc894SEric W. Biederman 		&proc_pid_link_inode_operations, NULL,		\
130631f9c18SAlexey Dobriyan 		{ .proc_get_link = get_link } )
131631f9c18SAlexey Dobriyan #define REG(NAME, MODE, fops)				\
132631f9c18SAlexey Dobriyan 	NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
133631f9c18SAlexey Dobriyan #define ONE(NAME, MODE, show)				\
134be614086SEric W. Biederman 	NOD(NAME, (S_IFREG|(MODE)), 			\
135be614086SEric W. Biederman 		NULL, &proc_single_file_operations,	\
136631f9c18SAlexey Dobriyan 		{ .proc_show = show } )
1371da177e4SLinus Torvalds 
138aed54175SVegard Nossum /*
139aed54175SVegard Nossum  * Count the number of hardlinks for the pid_entry table, excluding the .
140aed54175SVegard Nossum  * and .. links.
141aed54175SVegard Nossum  */
142aed54175SVegard Nossum static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
143aed54175SVegard Nossum 	unsigned int n)
144aed54175SVegard Nossum {
145aed54175SVegard Nossum 	unsigned int i;
146aed54175SVegard Nossum 	unsigned int count;
147aed54175SVegard Nossum 
148aed54175SVegard Nossum 	count = 0;
149aed54175SVegard Nossum 	for (i = 0; i < n; ++i) {
150aed54175SVegard Nossum 		if (S_ISDIR(entries[i].mode))
151aed54175SVegard Nossum 			++count;
152aed54175SVegard Nossum 	}
153aed54175SVegard Nossum 
154aed54175SVegard Nossum 	return count;
155aed54175SVegard Nossum }
156aed54175SVegard Nossum 
157f7ad3c6bSMiklos Szeredi static int get_task_root(struct task_struct *task, struct path *root)
1581da177e4SLinus Torvalds {
1597c2c7d99SHugh Dickins 	int result = -ENOENT;
1607c2c7d99SHugh Dickins 
1610494f6ecSMiklos Szeredi 	task_lock(task);
162f7ad3c6bSMiklos Szeredi 	if (task->fs) {
163f7ad3c6bSMiklos Szeredi 		get_fs_root(task->fs, root);
1647c2c7d99SHugh Dickins 		result = 0;
1657c2c7d99SHugh Dickins 	}
1660494f6ecSMiklos Szeredi 	task_unlock(task);
1677c2c7d99SHugh Dickins 	return result;
1680494f6ecSMiklos Szeredi }
1690494f6ecSMiklos Szeredi 
1707773fbc5SCyrill Gorcunov static int proc_cwd_link(struct dentry *dentry, struct path *path)
1710494f6ecSMiklos Szeredi {
1722b0143b5SDavid Howells 	struct task_struct *task = get_proc_task(d_inode(dentry));
1730494f6ecSMiklos Szeredi 	int result = -ENOENT;
17499f89551SEric W. Biederman 
17599f89551SEric W. Biederman 	if (task) {
176f7ad3c6bSMiklos Szeredi 		task_lock(task);
177f7ad3c6bSMiklos Szeredi 		if (task->fs) {
178f7ad3c6bSMiklos Szeredi 			get_fs_pwd(task->fs, path);
179f7ad3c6bSMiklos Szeredi 			result = 0;
180f7ad3c6bSMiklos Szeredi 		}
181f7ad3c6bSMiklos Szeredi 		task_unlock(task);
18299f89551SEric W. Biederman 		put_task_struct(task);
18399f89551SEric W. Biederman 	}
1841da177e4SLinus Torvalds 	return result;
1851da177e4SLinus Torvalds }
1861da177e4SLinus Torvalds 
1877773fbc5SCyrill Gorcunov static int proc_root_link(struct dentry *dentry, struct path *path)
1881da177e4SLinus Torvalds {
1892b0143b5SDavid Howells 	struct task_struct *task = get_proc_task(d_inode(dentry));
1901da177e4SLinus Torvalds 	int result = -ENOENT;
19199f89551SEric W. Biederman 
19299f89551SEric W. Biederman 	if (task) {
193f7ad3c6bSMiklos Szeredi 		result = get_task_root(task, path);
19499f89551SEric W. Biederman 		put_task_struct(task);
19599f89551SEric W. Biederman 	}
1961da177e4SLinus Torvalds 	return result;
1971da177e4SLinus Torvalds }
1981da177e4SLinus Torvalds 
199c2c0bb44SAlexey Dobriyan static ssize_t proc_pid_cmdline_read(struct file *file, char __user *buf,
200c2c0bb44SAlexey Dobriyan 				     size_t _count, loff_t *pos)
2011da177e4SLinus Torvalds {
202c2c0bb44SAlexey Dobriyan 	struct task_struct *tsk;
203c2c0bb44SAlexey Dobriyan 	struct mm_struct *mm;
204c2c0bb44SAlexey Dobriyan 	char *page;
205c2c0bb44SAlexey Dobriyan 	unsigned long count = _count;
206c2c0bb44SAlexey Dobriyan 	unsigned long arg_start, arg_end, env_start, env_end;
207c2c0bb44SAlexey Dobriyan 	unsigned long len1, len2, len;
208c2c0bb44SAlexey Dobriyan 	unsigned long p;
209c2c0bb44SAlexey Dobriyan 	char c;
210c2c0bb44SAlexey Dobriyan 	ssize_t rv;
211c2c0bb44SAlexey Dobriyan 
212c2c0bb44SAlexey Dobriyan 	BUG_ON(*pos < 0);
213c2c0bb44SAlexey Dobriyan 
214c2c0bb44SAlexey Dobriyan 	tsk = get_proc_task(file_inode(file));
215c2c0bb44SAlexey Dobriyan 	if (!tsk)
216c2c0bb44SAlexey Dobriyan 		return -ESRCH;
217c2c0bb44SAlexey Dobriyan 	mm = get_task_mm(tsk);
218c2c0bb44SAlexey Dobriyan 	put_task_struct(tsk);
219c2c0bb44SAlexey Dobriyan 	if (!mm)
2202ca66ff7SAlexey Dobriyan 		return 0;
221c2c0bb44SAlexey Dobriyan 	/* Check if process spawned far enough to have cmdline. */
222c2c0bb44SAlexey Dobriyan 	if (!mm->env_end) {
223c2c0bb44SAlexey Dobriyan 		rv = 0;
224c2c0bb44SAlexey Dobriyan 		goto out_mmput;
2251da177e4SLinus Torvalds 	}
2261da177e4SLinus Torvalds 
227c2c0bb44SAlexey Dobriyan 	page = (char *)__get_free_page(GFP_TEMPORARY);
228c2c0bb44SAlexey Dobriyan 	if (!page) {
229c2c0bb44SAlexey Dobriyan 		rv = -ENOMEM;
230c2c0bb44SAlexey Dobriyan 		goto out_mmput;
231c2c0bb44SAlexey Dobriyan 	}
232c2c0bb44SAlexey Dobriyan 
233c2c0bb44SAlexey Dobriyan 	down_read(&mm->mmap_sem);
234c2c0bb44SAlexey Dobriyan 	arg_start = mm->arg_start;
235c2c0bb44SAlexey Dobriyan 	arg_end = mm->arg_end;
236c2c0bb44SAlexey Dobriyan 	env_start = mm->env_start;
237c2c0bb44SAlexey Dobriyan 	env_end = mm->env_end;
238c2c0bb44SAlexey Dobriyan 	up_read(&mm->mmap_sem);
239c2c0bb44SAlexey Dobriyan 
240c2c0bb44SAlexey Dobriyan 	BUG_ON(arg_start > arg_end);
241c2c0bb44SAlexey Dobriyan 	BUG_ON(env_start > env_end);
242c2c0bb44SAlexey Dobriyan 
243c2c0bb44SAlexey Dobriyan 	len1 = arg_end - arg_start;
244c2c0bb44SAlexey Dobriyan 	len2 = env_end - env_start;
245c2c0bb44SAlexey Dobriyan 
2463581d458SAlexey Dobriyan 	/* Empty ARGV. */
2473581d458SAlexey Dobriyan 	if (len1 == 0) {
2483581d458SAlexey Dobriyan 		rv = 0;
2493581d458SAlexey Dobriyan 		goto out_free_page;
2503581d458SAlexey Dobriyan 	}
251c2c0bb44SAlexey Dobriyan 	/*
252c2c0bb44SAlexey Dobriyan 	 * Inherently racy -- command line shares address space
253c2c0bb44SAlexey Dobriyan 	 * with code and data.
254c2c0bb44SAlexey Dobriyan 	 */
255c2c0bb44SAlexey Dobriyan 	rv = access_remote_vm(mm, arg_end - 1, &c, 1, 0);
256c2c0bb44SAlexey Dobriyan 	if (rv <= 0)
257c2c0bb44SAlexey Dobriyan 		goto out_free_page;
258c2c0bb44SAlexey Dobriyan 
259c2c0bb44SAlexey Dobriyan 	rv = 0;
260c2c0bb44SAlexey Dobriyan 
261c2c0bb44SAlexey Dobriyan 	if (c == '\0') {
262c2c0bb44SAlexey Dobriyan 		/* Command line (set of strings) occupies whole ARGV. */
263c2c0bb44SAlexey Dobriyan 		if (len1 <= *pos)
264c2c0bb44SAlexey Dobriyan 			goto out_free_page;
265c2c0bb44SAlexey Dobriyan 
266c2c0bb44SAlexey Dobriyan 		p = arg_start + *pos;
267c2c0bb44SAlexey Dobriyan 		len = len1 - *pos;
268c2c0bb44SAlexey Dobriyan 		while (count > 0 && len > 0) {
269c2c0bb44SAlexey Dobriyan 			unsigned int _count;
270c2c0bb44SAlexey Dobriyan 			int nr_read;
271c2c0bb44SAlexey Dobriyan 
272c2c0bb44SAlexey Dobriyan 			_count = min3(count, len, PAGE_SIZE);
273c2c0bb44SAlexey Dobriyan 			nr_read = access_remote_vm(mm, p, page, _count, 0);
274c2c0bb44SAlexey Dobriyan 			if (nr_read < 0)
275c2c0bb44SAlexey Dobriyan 				rv = nr_read;
276c2c0bb44SAlexey Dobriyan 			if (nr_read <= 0)
277c2c0bb44SAlexey Dobriyan 				goto out_free_page;
278c2c0bb44SAlexey Dobriyan 
279c2c0bb44SAlexey Dobriyan 			if (copy_to_user(buf, page, nr_read)) {
280c2c0bb44SAlexey Dobriyan 				rv = -EFAULT;
281c2c0bb44SAlexey Dobriyan 				goto out_free_page;
282c2c0bb44SAlexey Dobriyan 			}
283c2c0bb44SAlexey Dobriyan 
284c2c0bb44SAlexey Dobriyan 			p	+= nr_read;
285c2c0bb44SAlexey Dobriyan 			len	-= nr_read;
286c2c0bb44SAlexey Dobriyan 			buf	+= nr_read;
287c2c0bb44SAlexey Dobriyan 			count	-= nr_read;
288c2c0bb44SAlexey Dobriyan 			rv	+= nr_read;
289c2c0bb44SAlexey Dobriyan 		}
290c2c0bb44SAlexey Dobriyan 	} else {
291c2c0bb44SAlexey Dobriyan 		/*
292c2c0bb44SAlexey Dobriyan 		 * Command line (1 string) occupies ARGV and maybe
293c2c0bb44SAlexey Dobriyan 		 * extends into ENVP.
294c2c0bb44SAlexey Dobriyan 		 */
295c2c0bb44SAlexey Dobriyan 		if (len1 + len2 <= *pos)
296c2c0bb44SAlexey Dobriyan 			goto skip_argv_envp;
297c2c0bb44SAlexey Dobriyan 		if (len1 <= *pos)
298c2c0bb44SAlexey Dobriyan 			goto skip_argv;
299c2c0bb44SAlexey Dobriyan 
300c2c0bb44SAlexey Dobriyan 		p = arg_start + *pos;
301c2c0bb44SAlexey Dobriyan 		len = len1 - *pos;
302c2c0bb44SAlexey Dobriyan 		while (count > 0 && len > 0) {
303c2c0bb44SAlexey Dobriyan 			unsigned int _count, l;
304c2c0bb44SAlexey Dobriyan 			int nr_read;
305c2c0bb44SAlexey Dobriyan 			bool final;
306c2c0bb44SAlexey Dobriyan 
307c2c0bb44SAlexey Dobriyan 			_count = min3(count, len, PAGE_SIZE);
308c2c0bb44SAlexey Dobriyan 			nr_read = access_remote_vm(mm, p, page, _count, 0);
309c2c0bb44SAlexey Dobriyan 			if (nr_read < 0)
310c2c0bb44SAlexey Dobriyan 				rv = nr_read;
311c2c0bb44SAlexey Dobriyan 			if (nr_read <= 0)
312c2c0bb44SAlexey Dobriyan 				goto out_free_page;
313c2c0bb44SAlexey Dobriyan 
314c2c0bb44SAlexey Dobriyan 			/*
315c2c0bb44SAlexey Dobriyan 			 * Command line can be shorter than whole ARGV
316c2c0bb44SAlexey Dobriyan 			 * even if last "marker" byte says it is not.
317c2c0bb44SAlexey Dobriyan 			 */
318c2c0bb44SAlexey Dobriyan 			final = false;
319c2c0bb44SAlexey Dobriyan 			l = strnlen(page, nr_read);
320c2c0bb44SAlexey Dobriyan 			if (l < nr_read) {
321c2c0bb44SAlexey Dobriyan 				nr_read = l;
322c2c0bb44SAlexey Dobriyan 				final = true;
323c2c0bb44SAlexey Dobriyan 			}
324c2c0bb44SAlexey Dobriyan 
325c2c0bb44SAlexey Dobriyan 			if (copy_to_user(buf, page, nr_read)) {
326c2c0bb44SAlexey Dobriyan 				rv = -EFAULT;
327c2c0bb44SAlexey Dobriyan 				goto out_free_page;
328c2c0bb44SAlexey Dobriyan 			}
329c2c0bb44SAlexey Dobriyan 
330c2c0bb44SAlexey Dobriyan 			p	+= nr_read;
331c2c0bb44SAlexey Dobriyan 			len	-= nr_read;
332c2c0bb44SAlexey Dobriyan 			buf	+= nr_read;
333c2c0bb44SAlexey Dobriyan 			count	-= nr_read;
334c2c0bb44SAlexey Dobriyan 			rv	+= nr_read;
335c2c0bb44SAlexey Dobriyan 
336c2c0bb44SAlexey Dobriyan 			if (final)
337c2c0bb44SAlexey Dobriyan 				goto out_free_page;
338c2c0bb44SAlexey Dobriyan 		}
339c2c0bb44SAlexey Dobriyan skip_argv:
340c2c0bb44SAlexey Dobriyan 		/*
341c2c0bb44SAlexey Dobriyan 		 * Command line (1 string) occupies ARGV and
342c2c0bb44SAlexey Dobriyan 		 * extends into ENVP.
343c2c0bb44SAlexey Dobriyan 		 */
344c2c0bb44SAlexey Dobriyan 		if (len1 <= *pos) {
345c2c0bb44SAlexey Dobriyan 			p = env_start + *pos - len1;
346c2c0bb44SAlexey Dobriyan 			len = len1 + len2 - *pos;
347c2c0bb44SAlexey Dobriyan 		} else {
348c2c0bb44SAlexey Dobriyan 			p = env_start;
349c2c0bb44SAlexey Dobriyan 			len = len2;
350c2c0bb44SAlexey Dobriyan 		}
351c2c0bb44SAlexey Dobriyan 		while (count > 0 && len > 0) {
352c2c0bb44SAlexey Dobriyan 			unsigned int _count, l;
353c2c0bb44SAlexey Dobriyan 			int nr_read;
354c2c0bb44SAlexey Dobriyan 			bool final;
355c2c0bb44SAlexey Dobriyan 
356c2c0bb44SAlexey Dobriyan 			_count = min3(count, len, PAGE_SIZE);
357c2c0bb44SAlexey Dobriyan 			nr_read = access_remote_vm(mm, p, page, _count, 0);
358c2c0bb44SAlexey Dobriyan 			if (nr_read < 0)
359c2c0bb44SAlexey Dobriyan 				rv = nr_read;
360c2c0bb44SAlexey Dobriyan 			if (nr_read <= 0)
361c2c0bb44SAlexey Dobriyan 				goto out_free_page;
362c2c0bb44SAlexey Dobriyan 
363c2c0bb44SAlexey Dobriyan 			/* Find EOS. */
364c2c0bb44SAlexey Dobriyan 			final = false;
365c2c0bb44SAlexey Dobriyan 			l = strnlen(page, nr_read);
366c2c0bb44SAlexey Dobriyan 			if (l < nr_read) {
367c2c0bb44SAlexey Dobriyan 				nr_read = l;
368c2c0bb44SAlexey Dobriyan 				final = true;
369c2c0bb44SAlexey Dobriyan 			}
370c2c0bb44SAlexey Dobriyan 
371c2c0bb44SAlexey Dobriyan 			if (copy_to_user(buf, page, nr_read)) {
372c2c0bb44SAlexey Dobriyan 				rv = -EFAULT;
373c2c0bb44SAlexey Dobriyan 				goto out_free_page;
374c2c0bb44SAlexey Dobriyan 			}
375c2c0bb44SAlexey Dobriyan 
376c2c0bb44SAlexey Dobriyan 			p	+= nr_read;
377c2c0bb44SAlexey Dobriyan 			len	-= nr_read;
378c2c0bb44SAlexey Dobriyan 			buf	+= nr_read;
379c2c0bb44SAlexey Dobriyan 			count	-= nr_read;
380c2c0bb44SAlexey Dobriyan 			rv	+= nr_read;
381c2c0bb44SAlexey Dobriyan 
382c2c0bb44SAlexey Dobriyan 			if (final)
383c2c0bb44SAlexey Dobriyan 				goto out_free_page;
384c2c0bb44SAlexey Dobriyan 		}
385c2c0bb44SAlexey Dobriyan skip_argv_envp:
386c2c0bb44SAlexey Dobriyan 		;
387c2c0bb44SAlexey Dobriyan 	}
388c2c0bb44SAlexey Dobriyan 
389c2c0bb44SAlexey Dobriyan out_free_page:
390c2c0bb44SAlexey Dobriyan 	free_page((unsigned long)page);
391c2c0bb44SAlexey Dobriyan out_mmput:
392c2c0bb44SAlexey Dobriyan 	mmput(mm);
393c2c0bb44SAlexey Dobriyan 	if (rv > 0)
394c2c0bb44SAlexey Dobriyan 		*pos += rv;
395c2c0bb44SAlexey Dobriyan 	return rv;
396c2c0bb44SAlexey Dobriyan }
397c2c0bb44SAlexey Dobriyan 
398c2c0bb44SAlexey Dobriyan static const struct file_operations proc_pid_cmdline_ops = {
399c2c0bb44SAlexey Dobriyan 	.read	= proc_pid_cmdline_read,
400c2c0bb44SAlexey Dobriyan 	.llseek	= generic_file_llseek,
401c2c0bb44SAlexey Dobriyan };
402c2c0bb44SAlexey Dobriyan 
403f9ea536eSAlexey Dobriyan static int proc_pid_auxv(struct seq_file *m, struct pid_namespace *ns,
404f9ea536eSAlexey Dobriyan 			 struct pid *pid, struct task_struct *task)
4051da177e4SLinus Torvalds {
406*caaee623SJann Horn 	struct mm_struct *mm = mm_access(task, PTRACE_MODE_READ_FSCREDS);
4072fadaef4SAl Viro 	if (mm && !IS_ERR(mm)) {
4081da177e4SLinus Torvalds 		unsigned int nwords = 0;
409dfe6b7d9SHannes Eder 		do {
4101da177e4SLinus Torvalds 			nwords += 2;
411dfe6b7d9SHannes Eder 		} while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
412f9ea536eSAlexey Dobriyan 		seq_write(m, mm->saved_auxv, nwords * sizeof(mm->saved_auxv[0]));
4131da177e4SLinus Torvalds 		mmput(mm);
414f9ea536eSAlexey Dobriyan 		return 0;
415f9ea536eSAlexey Dobriyan 	} else
416f9ea536eSAlexey Dobriyan 		return PTR_ERR(mm);
4171da177e4SLinus Torvalds }
4181da177e4SLinus Torvalds 
4191da177e4SLinus Torvalds 
4201da177e4SLinus Torvalds #ifdef CONFIG_KALLSYMS
4211da177e4SLinus Torvalds /*
4221da177e4SLinus Torvalds  * Provides a wchan file via kallsyms in a proper one-value-per-file format.
4231da177e4SLinus Torvalds  * Returns the resolved symbol.  If that fails, simply return the address.
4241da177e4SLinus Torvalds  */
425edfcd606SAlexey Dobriyan static int proc_pid_wchan(struct seq_file *m, struct pid_namespace *ns,
426edfcd606SAlexey Dobriyan 			  struct pid *pid, struct task_struct *task)
4271da177e4SLinus Torvalds {
428ffb45122SAlexey Dobriyan 	unsigned long wchan;
4299281aceaSTejun Heo 	char symname[KSYM_NAME_LEN];
4301da177e4SLinus Torvalds 
4311da177e4SLinus Torvalds 	wchan = get_wchan(task);
4321da177e4SLinus Torvalds 
433*caaee623SJann Horn 	if (wchan && ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)
434*caaee623SJann Horn 			&& !lookup_symbol_name(wchan, symname))
43525ce3191SJoe Perches 		seq_printf(m, "%s", symname);
436b2f73922SIngo Molnar 	else
437b2f73922SIngo Molnar 		seq_putc(m, '0');
43825ce3191SJoe Perches 
43925ce3191SJoe Perches 	return 0;
4401da177e4SLinus Torvalds }
4411da177e4SLinus Torvalds #endif /* CONFIG_KALLSYMS */
4421da177e4SLinus Torvalds 
443a9712bc1SAl Viro static int lock_trace(struct task_struct *task)
444a9712bc1SAl Viro {
445a9712bc1SAl Viro 	int err = mutex_lock_killable(&task->signal->cred_guard_mutex);
446a9712bc1SAl Viro 	if (err)
447a9712bc1SAl Viro 		return err;
448*caaee623SJann Horn 	if (!ptrace_may_access(task, PTRACE_MODE_ATTACH_FSCREDS)) {
449a9712bc1SAl Viro 		mutex_unlock(&task->signal->cred_guard_mutex);
450a9712bc1SAl Viro 		return -EPERM;
451a9712bc1SAl Viro 	}
452a9712bc1SAl Viro 	return 0;
453a9712bc1SAl Viro }
454a9712bc1SAl Viro 
455a9712bc1SAl Viro static void unlock_trace(struct task_struct *task)
456a9712bc1SAl Viro {
457a9712bc1SAl Viro 	mutex_unlock(&task->signal->cred_guard_mutex);
458a9712bc1SAl Viro }
459a9712bc1SAl Viro 
4602ec220e2SKen Chen #ifdef CONFIG_STACKTRACE
4612ec220e2SKen Chen 
4622ec220e2SKen Chen #define MAX_STACK_TRACE_DEPTH	64
4632ec220e2SKen Chen 
4642ec220e2SKen Chen static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
4652ec220e2SKen Chen 			  struct pid *pid, struct task_struct *task)
4662ec220e2SKen Chen {
4672ec220e2SKen Chen 	struct stack_trace trace;
4682ec220e2SKen Chen 	unsigned long *entries;
469a9712bc1SAl Viro 	int err;
4702ec220e2SKen Chen 	int i;
4712ec220e2SKen Chen 
4722ec220e2SKen Chen 	entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
4732ec220e2SKen Chen 	if (!entries)
4742ec220e2SKen Chen 		return -ENOMEM;
4752ec220e2SKen Chen 
4762ec220e2SKen Chen 	trace.nr_entries	= 0;
4772ec220e2SKen Chen 	trace.max_entries	= MAX_STACK_TRACE_DEPTH;
4782ec220e2SKen Chen 	trace.entries		= entries;
4792ec220e2SKen Chen 	trace.skip		= 0;
480a9712bc1SAl Viro 
481a9712bc1SAl Viro 	err = lock_trace(task);
482a9712bc1SAl Viro 	if (!err) {
4832ec220e2SKen Chen 		save_stack_trace_tsk(task, &trace);
4842ec220e2SKen Chen 
4852ec220e2SKen Chen 		for (i = 0; i < trace.nr_entries; i++) {
48651e03149SKonstantin Khlebnikov 			seq_printf(m, "[<%pK>] %pS\n",
4872ec220e2SKen Chen 				   (void *)entries[i], (void *)entries[i]);
4882ec220e2SKen Chen 		}
489a9712bc1SAl Viro 		unlock_trace(task);
490a9712bc1SAl Viro 	}
4912ec220e2SKen Chen 	kfree(entries);
4922ec220e2SKen Chen 
493a9712bc1SAl Viro 	return err;
4942ec220e2SKen Chen }
4952ec220e2SKen Chen #endif
4962ec220e2SKen Chen 
4975968ceceSNaveen N. Rao #ifdef CONFIG_SCHED_INFO
4981da177e4SLinus Torvalds /*
4991da177e4SLinus Torvalds  * Provides /proc/PID/schedstat
5001da177e4SLinus Torvalds  */
501f6e826caSAlexey Dobriyan static int proc_pid_schedstat(struct seq_file *m, struct pid_namespace *ns,
502f6e826caSAlexey Dobriyan 			      struct pid *pid, struct task_struct *task)
5031da177e4SLinus Torvalds {
5045968ceceSNaveen N. Rao 	if (unlikely(!sched_info_on()))
5055968ceceSNaveen N. Rao 		seq_printf(m, "0 0 0\n");
5065968ceceSNaveen N. Rao 	else
50725ce3191SJoe Perches 		seq_printf(m, "%llu %llu %lu\n",
508826e08b0SIngo Molnar 		   (unsigned long long)task->se.sum_exec_runtime,
509826e08b0SIngo Molnar 		   (unsigned long long)task->sched_info.run_delay,
5102d72376bSIngo Molnar 		   task->sched_info.pcount);
51125ce3191SJoe Perches 
51225ce3191SJoe Perches 	return 0;
5131da177e4SLinus Torvalds }
5141da177e4SLinus Torvalds #endif
5151da177e4SLinus Torvalds 
5169745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP
5179745512cSArjan van de Ven static int lstats_show_proc(struct seq_file *m, void *v)
5189745512cSArjan van de Ven {
5199745512cSArjan van de Ven 	int i;
52013d77c37SHiroshi Shimamoto 	struct inode *inode = m->private;
52113d77c37SHiroshi Shimamoto 	struct task_struct *task = get_proc_task(inode);
5229745512cSArjan van de Ven 
52313d77c37SHiroshi Shimamoto 	if (!task)
52413d77c37SHiroshi Shimamoto 		return -ESRCH;
52513d77c37SHiroshi Shimamoto 	seq_puts(m, "Latency Top version : v0.1\n");
5269745512cSArjan van de Ven 	for (i = 0; i < 32; i++) {
52734e49d4fSJoe Perches 		struct latency_record *lr = &task->latency_record[i];
52834e49d4fSJoe Perches 		if (lr->backtrace[0]) {
5299745512cSArjan van de Ven 			int q;
5309745512cSArjan van de Ven 			seq_printf(m, "%i %li %li",
53134e49d4fSJoe Perches 				   lr->count, lr->time, lr->max);
5329745512cSArjan van de Ven 			for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
53334e49d4fSJoe Perches 				unsigned long bt = lr->backtrace[q];
53434e49d4fSJoe Perches 				if (!bt)
5359745512cSArjan van de Ven 					break;
53634e49d4fSJoe Perches 				if (bt == ULONG_MAX)
5379745512cSArjan van de Ven 					break;
53834e49d4fSJoe Perches 				seq_printf(m, " %ps", (void *)bt);
5399745512cSArjan van de Ven 			}
5409d6de12fSAlexey Dobriyan 			seq_putc(m, '\n');
5419745512cSArjan van de Ven 		}
5429745512cSArjan van de Ven 
5439745512cSArjan van de Ven 	}
54413d77c37SHiroshi Shimamoto 	put_task_struct(task);
5459745512cSArjan van de Ven 	return 0;
5469745512cSArjan van de Ven }
5479745512cSArjan van de Ven 
5489745512cSArjan van de Ven static int lstats_open(struct inode *inode, struct file *file)
5499745512cSArjan van de Ven {
55013d77c37SHiroshi Shimamoto 	return single_open(file, lstats_show_proc, inode);
551d6643d12SHiroshi Shimamoto }
552d6643d12SHiroshi Shimamoto 
5539745512cSArjan van de Ven static ssize_t lstats_write(struct file *file, const char __user *buf,
5549745512cSArjan van de Ven 			    size_t count, loff_t *offs)
5559745512cSArjan van de Ven {
556496ad9aaSAl Viro 	struct task_struct *task = get_proc_task(file_inode(file));
5579745512cSArjan van de Ven 
55813d77c37SHiroshi Shimamoto 	if (!task)
55913d77c37SHiroshi Shimamoto 		return -ESRCH;
5609745512cSArjan van de Ven 	clear_all_latency_tracing(task);
56113d77c37SHiroshi Shimamoto 	put_task_struct(task);
5629745512cSArjan van de Ven 
5639745512cSArjan van de Ven 	return count;
5649745512cSArjan van de Ven }
5659745512cSArjan van de Ven 
5669745512cSArjan van de Ven static const struct file_operations proc_lstats_operations = {
5679745512cSArjan van de Ven 	.open		= lstats_open,
5689745512cSArjan van de Ven 	.read		= seq_read,
5699745512cSArjan van de Ven 	.write		= lstats_write,
5709745512cSArjan van de Ven 	.llseek		= seq_lseek,
57113d77c37SHiroshi Shimamoto 	.release	= single_release,
5729745512cSArjan van de Ven };
5739745512cSArjan van de Ven 
5749745512cSArjan van de Ven #endif
5759745512cSArjan van de Ven 
5766ba51e37SAlexey Dobriyan static int proc_oom_score(struct seq_file *m, struct pid_namespace *ns,
5776ba51e37SAlexey Dobriyan 			  struct pid *pid, struct task_struct *task)
5781da177e4SLinus Torvalds {
579a7f638f9SDavid Rientjes 	unsigned long totalpages = totalram_pages + total_swap_pages;
580b95c35e7SOleg Nesterov 	unsigned long points = 0;
5811da177e4SLinus Torvalds 
58219c5d45aSAlexey Dobriyan 	read_lock(&tasklist_lock);
583b95c35e7SOleg Nesterov 	if (pid_alive(task))
584a7f638f9SDavid Rientjes 		points = oom_badness(task, NULL, NULL, totalpages) *
585a7f638f9SDavid Rientjes 						1000 / totalpages;
58619c5d45aSAlexey Dobriyan 	read_unlock(&tasklist_lock);
58725ce3191SJoe Perches 	seq_printf(m, "%lu\n", points);
58825ce3191SJoe Perches 
58925ce3191SJoe Perches 	return 0;
5901da177e4SLinus Torvalds }
5911da177e4SLinus Torvalds 
592d85f50d5SNeil Horman struct limit_names {
593cedbccabSAlexey Dobriyan 	const char *name;
594cedbccabSAlexey Dobriyan 	const char *unit;
595d85f50d5SNeil Horman };
596d85f50d5SNeil Horman 
597d85f50d5SNeil Horman static const struct limit_names lnames[RLIM_NLIMITS] = {
598cff4edb5SKees Cook 	[RLIMIT_CPU] = {"Max cpu time", "seconds"},
599d85f50d5SNeil Horman 	[RLIMIT_FSIZE] = {"Max file size", "bytes"},
600d85f50d5SNeil Horman 	[RLIMIT_DATA] = {"Max data size", "bytes"},
601d85f50d5SNeil Horman 	[RLIMIT_STACK] = {"Max stack size", "bytes"},
602d85f50d5SNeil Horman 	[RLIMIT_CORE] = {"Max core file size", "bytes"},
603d85f50d5SNeil Horman 	[RLIMIT_RSS] = {"Max resident set", "bytes"},
604d85f50d5SNeil Horman 	[RLIMIT_NPROC] = {"Max processes", "processes"},
605d85f50d5SNeil Horman 	[RLIMIT_NOFILE] = {"Max open files", "files"},
606d85f50d5SNeil Horman 	[RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
607d85f50d5SNeil Horman 	[RLIMIT_AS] = {"Max address space", "bytes"},
608d85f50d5SNeil Horman 	[RLIMIT_LOCKS] = {"Max file locks", "locks"},
609d85f50d5SNeil Horman 	[RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
610d85f50d5SNeil Horman 	[RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
611d85f50d5SNeil Horman 	[RLIMIT_NICE] = {"Max nice priority", NULL},
612d85f50d5SNeil Horman 	[RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
6138808117cSEugene Teo 	[RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
614d85f50d5SNeil Horman };
615d85f50d5SNeil Horman 
616d85f50d5SNeil Horman /* Display limits for a process */
6171c963eb1SAlexey Dobriyan static int proc_pid_limits(struct seq_file *m, struct pid_namespace *ns,
6181c963eb1SAlexey Dobriyan 			   struct pid *pid, struct task_struct *task)
619d85f50d5SNeil Horman {
620d85f50d5SNeil Horman 	unsigned int i;
621d85f50d5SNeil Horman 	unsigned long flags;
622d85f50d5SNeil Horman 
623d85f50d5SNeil Horman 	struct rlimit rlim[RLIM_NLIMITS];
624d85f50d5SNeil Horman 
625a6bebbc8SLai Jiangshan 	if (!lock_task_sighand(task, &flags))
626d85f50d5SNeil Horman 		return 0;
627d85f50d5SNeil Horman 	memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
628d85f50d5SNeil Horman 	unlock_task_sighand(task, &flags);
629d85f50d5SNeil Horman 
630d85f50d5SNeil Horman 	/*
631d85f50d5SNeil Horman 	 * print the file header
632d85f50d5SNeil Horman 	 */
6331c963eb1SAlexey Dobriyan        seq_printf(m, "%-25s %-20s %-20s %-10s\n",
634d85f50d5SNeil Horman 		  "Limit", "Soft Limit", "Hard Limit", "Units");
635d85f50d5SNeil Horman 
636d85f50d5SNeil Horman 	for (i = 0; i < RLIM_NLIMITS; i++) {
637d85f50d5SNeil Horman 		if (rlim[i].rlim_cur == RLIM_INFINITY)
6381c963eb1SAlexey Dobriyan 			seq_printf(m, "%-25s %-20s ",
639d85f50d5SNeil Horman 				   lnames[i].name, "unlimited");
640d85f50d5SNeil Horman 		else
6411c963eb1SAlexey Dobriyan 			seq_printf(m, "%-25s %-20lu ",
642d85f50d5SNeil Horman 				   lnames[i].name, rlim[i].rlim_cur);
643d85f50d5SNeil Horman 
644d85f50d5SNeil Horman 		if (rlim[i].rlim_max == RLIM_INFINITY)
6451c963eb1SAlexey Dobriyan 			seq_printf(m, "%-20s ", "unlimited");
646d85f50d5SNeil Horman 		else
6471c963eb1SAlexey Dobriyan 			seq_printf(m, "%-20lu ", rlim[i].rlim_max);
648d85f50d5SNeil Horman 
649d85f50d5SNeil Horman 		if (lnames[i].unit)
6501c963eb1SAlexey Dobriyan 			seq_printf(m, "%-10s\n", lnames[i].unit);
651d85f50d5SNeil Horman 		else
6521c963eb1SAlexey Dobriyan 			seq_putc(m, '\n');
653d85f50d5SNeil Horman 	}
654d85f50d5SNeil Horman 
6551c963eb1SAlexey Dobriyan 	return 0;
656d85f50d5SNeil Horman }
657d85f50d5SNeil Horman 
658ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
65909d93bd6SAlexey Dobriyan static int proc_pid_syscall(struct seq_file *m, struct pid_namespace *ns,
66009d93bd6SAlexey Dobriyan 			    struct pid *pid, struct task_struct *task)
661ebcb6734SRoland McGrath {
662ebcb6734SRoland McGrath 	long nr;
663ebcb6734SRoland McGrath 	unsigned long args[6], sp, pc;
66425ce3191SJoe Perches 	int res;
66525ce3191SJoe Perches 
66625ce3191SJoe Perches 	res = lock_trace(task);
667a9712bc1SAl Viro 	if (res)
668a9712bc1SAl Viro 		return res;
669ebcb6734SRoland McGrath 
670ebcb6734SRoland McGrath 	if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
67109d93bd6SAlexey Dobriyan 		seq_puts(m, "running\n");
672a9712bc1SAl Viro 	else if (nr < 0)
67309d93bd6SAlexey Dobriyan 		seq_printf(m, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
674a9712bc1SAl Viro 	else
67509d93bd6SAlexey Dobriyan 		seq_printf(m,
676ebcb6734SRoland McGrath 		       "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
677ebcb6734SRoland McGrath 		       nr,
678ebcb6734SRoland McGrath 		       args[0], args[1], args[2], args[3], args[4], args[5],
679ebcb6734SRoland McGrath 		       sp, pc);
680a9712bc1SAl Viro 	unlock_trace(task);
68125ce3191SJoe Perches 
68225ce3191SJoe Perches 	return 0;
683ebcb6734SRoland McGrath }
684ebcb6734SRoland McGrath #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
685ebcb6734SRoland McGrath 
6861da177e4SLinus Torvalds /************************************************************************/
6871da177e4SLinus Torvalds /*                       Here the fs part begins                        */
6881da177e4SLinus Torvalds /************************************************************************/
6891da177e4SLinus Torvalds 
6901da177e4SLinus Torvalds /* permission checks */
691778c1144SEric W. Biederman static int proc_fd_access_allowed(struct inode *inode)
6921da177e4SLinus Torvalds {
693778c1144SEric W. Biederman 	struct task_struct *task;
694778c1144SEric W. Biederman 	int allowed = 0;
695df26c40eSEric W. Biederman 	/* Allow access to a task's file descriptors if it is us or we
696df26c40eSEric W. Biederman 	 * may use ptrace attach to the process and find out that
697df26c40eSEric W. Biederman 	 * information.
698778c1144SEric W. Biederman 	 */
699778c1144SEric W. Biederman 	task = get_proc_task(inode);
700df26c40eSEric W. Biederman 	if (task) {
701*caaee623SJann Horn 		allowed = ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS);
702778c1144SEric W. Biederman 		put_task_struct(task);
703df26c40eSEric W. Biederman 	}
704778c1144SEric W. Biederman 	return allowed;
7051da177e4SLinus Torvalds }
7061da177e4SLinus Torvalds 
7076b4e306aSEric W. Biederman int proc_setattr(struct dentry *dentry, struct iattr *attr)
7086d76fa58SLinus Torvalds {
7096d76fa58SLinus Torvalds 	int error;
7102b0143b5SDavid Howells 	struct inode *inode = d_inode(dentry);
7116d76fa58SLinus Torvalds 
7126d76fa58SLinus Torvalds 	if (attr->ia_valid & ATTR_MODE)
7136d76fa58SLinus Torvalds 		return -EPERM;
7146d76fa58SLinus Torvalds 
7156d76fa58SLinus Torvalds 	error = inode_change_ok(inode, attr);
7161025774cSChristoph Hellwig 	if (error)
7176d76fa58SLinus Torvalds 		return error;
7181025774cSChristoph Hellwig 
7191025774cSChristoph Hellwig 	setattr_copy(inode, attr);
7201025774cSChristoph Hellwig 	mark_inode_dirty(inode);
7211025774cSChristoph Hellwig 	return 0;
7226d76fa58SLinus Torvalds }
7236d76fa58SLinus Torvalds 
7240499680aSVasiliy Kulikov /*
7250499680aSVasiliy Kulikov  * May current process learn task's sched/cmdline info (for hide_pid_min=1)
7260499680aSVasiliy Kulikov  * or euid/egid (for hide_pid_min=2)?
7270499680aSVasiliy Kulikov  */
7280499680aSVasiliy Kulikov static bool has_pid_permissions(struct pid_namespace *pid,
7290499680aSVasiliy Kulikov 				 struct task_struct *task,
7300499680aSVasiliy Kulikov 				 int hide_pid_min)
7310499680aSVasiliy Kulikov {
7320499680aSVasiliy Kulikov 	if (pid->hide_pid < hide_pid_min)
7330499680aSVasiliy Kulikov 		return true;
7340499680aSVasiliy Kulikov 	if (in_group_p(pid->pid_gid))
7350499680aSVasiliy Kulikov 		return true;
736*caaee623SJann Horn 	return ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS);
7370499680aSVasiliy Kulikov }
7380499680aSVasiliy Kulikov 
7390499680aSVasiliy Kulikov 
7400499680aSVasiliy Kulikov static int proc_pid_permission(struct inode *inode, int mask)
7410499680aSVasiliy Kulikov {
7420499680aSVasiliy Kulikov 	struct pid_namespace *pid = inode->i_sb->s_fs_info;
7430499680aSVasiliy Kulikov 	struct task_struct *task;
7440499680aSVasiliy Kulikov 	bool has_perms;
7450499680aSVasiliy Kulikov 
7460499680aSVasiliy Kulikov 	task = get_proc_task(inode);
747a2ef990aSXiaotian Feng 	if (!task)
748a2ef990aSXiaotian Feng 		return -ESRCH;
7490499680aSVasiliy Kulikov 	has_perms = has_pid_permissions(pid, task, 1);
7500499680aSVasiliy Kulikov 	put_task_struct(task);
7510499680aSVasiliy Kulikov 
7520499680aSVasiliy Kulikov 	if (!has_perms) {
7530499680aSVasiliy Kulikov 		if (pid->hide_pid == 2) {
7540499680aSVasiliy Kulikov 			/*
7550499680aSVasiliy Kulikov 			 * Let's make getdents(), stat(), and open()
7560499680aSVasiliy Kulikov 			 * consistent with each other.  If a process
7570499680aSVasiliy Kulikov 			 * may not stat() a file, it shouldn't be seen
7580499680aSVasiliy Kulikov 			 * in procfs at all.
7590499680aSVasiliy Kulikov 			 */
7600499680aSVasiliy Kulikov 			return -ENOENT;
7610499680aSVasiliy Kulikov 		}
7620499680aSVasiliy Kulikov 
7630499680aSVasiliy Kulikov 		return -EPERM;
7640499680aSVasiliy Kulikov 	}
7650499680aSVasiliy Kulikov 	return generic_permission(inode, mask);
7660499680aSVasiliy Kulikov }
7670499680aSVasiliy Kulikov 
7680499680aSVasiliy Kulikov 
7690499680aSVasiliy Kulikov 
770c5ef1c42SArjan van de Ven static const struct inode_operations proc_def_inode_operations = {
7716d76fa58SLinus Torvalds 	.setattr	= proc_setattr,
7726d76fa58SLinus Torvalds };
7736d76fa58SLinus Torvalds 
774be614086SEric W. Biederman static int proc_single_show(struct seq_file *m, void *v)
775be614086SEric W. Biederman {
776be614086SEric W. Biederman 	struct inode *inode = m->private;
777be614086SEric W. Biederman 	struct pid_namespace *ns;
778be614086SEric W. Biederman 	struct pid *pid;
779be614086SEric W. Biederman 	struct task_struct *task;
780be614086SEric W. Biederman 	int ret;
781be614086SEric W. Biederman 
782be614086SEric W. Biederman 	ns = inode->i_sb->s_fs_info;
783be614086SEric W. Biederman 	pid = proc_pid(inode);
784be614086SEric W. Biederman 	task = get_pid_task(pid, PIDTYPE_PID);
785be614086SEric W. Biederman 	if (!task)
786be614086SEric W. Biederman 		return -ESRCH;
787be614086SEric W. Biederman 
788be614086SEric W. Biederman 	ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
789be614086SEric W. Biederman 
790be614086SEric W. Biederman 	put_task_struct(task);
791be614086SEric W. Biederman 	return ret;
792be614086SEric W. Biederman }
793be614086SEric W. Biederman 
794be614086SEric W. Biederman static int proc_single_open(struct inode *inode, struct file *filp)
795be614086SEric W. Biederman {
796c6a34058SJovi Zhang 	return single_open(filp, proc_single_show, inode);
797be614086SEric W. Biederman }
798be614086SEric W. Biederman 
799be614086SEric W. Biederman static const struct file_operations proc_single_file_operations = {
800be614086SEric W. Biederman 	.open		= proc_single_open,
801be614086SEric W. Biederman 	.read		= seq_read,
802be614086SEric W. Biederman 	.llseek		= seq_lseek,
803be614086SEric W. Biederman 	.release	= single_release,
804be614086SEric W. Biederman };
805be614086SEric W. Biederman 
8065381e169SOleg Nesterov 
8075381e169SOleg Nesterov struct mm_struct *proc_mem_open(struct inode *inode, unsigned int mode)
8081da177e4SLinus Torvalds {
8095381e169SOleg Nesterov 	struct task_struct *task = get_proc_task(inode);
8105381e169SOleg Nesterov 	struct mm_struct *mm = ERR_PTR(-ESRCH);
811e268337dSLinus Torvalds 
8125381e169SOleg Nesterov 	if (task) {
813*caaee623SJann Horn 		mm = mm_access(task, mode | PTRACE_MODE_FSCREDS);
814e268337dSLinus Torvalds 		put_task_struct(task);
815e268337dSLinus Torvalds 
8165381e169SOleg Nesterov 		if (!IS_ERR_OR_NULL(mm)) {
8176d08f2c7SOleg Nesterov 			/* ensure this mm_struct can't be freed */
8186d08f2c7SOleg Nesterov 			atomic_inc(&mm->mm_count);
8196d08f2c7SOleg Nesterov 			/* but do not pin its memory */
8206d08f2c7SOleg Nesterov 			mmput(mm);
8216d08f2c7SOleg Nesterov 		}
8225381e169SOleg Nesterov 	}
8235381e169SOleg Nesterov 
8245381e169SOleg Nesterov 	return mm;
8255381e169SOleg Nesterov }
8265381e169SOleg Nesterov 
8275381e169SOleg Nesterov static int __mem_open(struct inode *inode, struct file *file, unsigned int mode)
8285381e169SOleg Nesterov {
8295381e169SOleg Nesterov 	struct mm_struct *mm = proc_mem_open(inode, mode);
8305381e169SOleg Nesterov 
8315381e169SOleg Nesterov 	if (IS_ERR(mm))
8325381e169SOleg Nesterov 		return PTR_ERR(mm);
8336d08f2c7SOleg Nesterov 
834e268337dSLinus Torvalds 	file->private_data = mm;
8351da177e4SLinus Torvalds 	return 0;
8361da177e4SLinus Torvalds }
8371da177e4SLinus Torvalds 
838b409e578SCong Wang static int mem_open(struct inode *inode, struct file *file)
839b409e578SCong Wang {
840bc452b4bSDjalal Harouni 	int ret = __mem_open(inode, file, PTRACE_MODE_ATTACH);
841bc452b4bSDjalal Harouni 
842bc452b4bSDjalal Harouni 	/* OK to pass negative loff_t, we can catch out-of-range */
843bc452b4bSDjalal Harouni 	file->f_mode |= FMODE_UNSIGNED_OFFSET;
844bc452b4bSDjalal Harouni 
845bc452b4bSDjalal Harouni 	return ret;
846b409e578SCong Wang }
847b409e578SCong Wang 
848572d34b9SOleg Nesterov static ssize_t mem_rw(struct file *file, char __user *buf,
849572d34b9SOleg Nesterov 			size_t count, loff_t *ppos, int write)
8501da177e4SLinus Torvalds {
851e268337dSLinus Torvalds 	struct mm_struct *mm = file->private_data;
852572d34b9SOleg Nesterov 	unsigned long addr = *ppos;
853572d34b9SOleg Nesterov 	ssize_t copied;
8541da177e4SLinus Torvalds 	char *page;
8551da177e4SLinus Torvalds 
856e268337dSLinus Torvalds 	if (!mm)
857e268337dSLinus Torvalds 		return 0;
8581da177e4SLinus Torvalds 
859e12ba74dSMel Gorman 	page = (char *)__get_free_page(GFP_TEMPORARY);
8601da177e4SLinus Torvalds 	if (!page)
861e268337dSLinus Torvalds 		return -ENOMEM;
8621da177e4SLinus Torvalds 
863f7ca54f4SFrederik Deweerdt 	copied = 0;
8646d08f2c7SOleg Nesterov 	if (!atomic_inc_not_zero(&mm->mm_users))
8656d08f2c7SOleg Nesterov 		goto free;
8666d08f2c7SOleg Nesterov 
8671da177e4SLinus Torvalds 	while (count > 0) {
868572d34b9SOleg Nesterov 		int this_len = min_t(int, count, PAGE_SIZE);
8691da177e4SLinus Torvalds 
870572d34b9SOleg Nesterov 		if (write && copy_from_user(page, buf, this_len)) {
8711da177e4SLinus Torvalds 			copied = -EFAULT;
8721da177e4SLinus Torvalds 			break;
8731da177e4SLinus Torvalds 		}
874572d34b9SOleg Nesterov 
875572d34b9SOleg Nesterov 		this_len = access_remote_vm(mm, addr, page, this_len, write);
876572d34b9SOleg Nesterov 		if (!this_len) {
8771da177e4SLinus Torvalds 			if (!copied)
8781da177e4SLinus Torvalds 				copied = -EIO;
8791da177e4SLinus Torvalds 			break;
8801da177e4SLinus Torvalds 		}
881572d34b9SOleg Nesterov 
882572d34b9SOleg Nesterov 		if (!write && copy_to_user(buf, page, this_len)) {
883572d34b9SOleg Nesterov 			copied = -EFAULT;
884572d34b9SOleg Nesterov 			break;
8851da177e4SLinus Torvalds 		}
886572d34b9SOleg Nesterov 
887572d34b9SOleg Nesterov 		buf += this_len;
888572d34b9SOleg Nesterov 		addr += this_len;
889572d34b9SOleg Nesterov 		copied += this_len;
890572d34b9SOleg Nesterov 		count -= this_len;
891572d34b9SOleg Nesterov 	}
892572d34b9SOleg Nesterov 	*ppos = addr;
89330cd8903SKOSAKI Motohiro 
8946d08f2c7SOleg Nesterov 	mmput(mm);
8956d08f2c7SOleg Nesterov free:
89630cd8903SKOSAKI Motohiro 	free_page((unsigned long) page);
8971da177e4SLinus Torvalds 	return copied;
8981da177e4SLinus Torvalds }
8991da177e4SLinus Torvalds 
900572d34b9SOleg Nesterov static ssize_t mem_read(struct file *file, char __user *buf,
901572d34b9SOleg Nesterov 			size_t count, loff_t *ppos)
902572d34b9SOleg Nesterov {
903572d34b9SOleg Nesterov 	return mem_rw(file, buf, count, ppos, 0);
904572d34b9SOleg Nesterov }
905572d34b9SOleg Nesterov 
906572d34b9SOleg Nesterov static ssize_t mem_write(struct file *file, const char __user *buf,
907572d34b9SOleg Nesterov 			 size_t count, loff_t *ppos)
908572d34b9SOleg Nesterov {
909572d34b9SOleg Nesterov 	return mem_rw(file, (char __user*)buf, count, ppos, 1);
910572d34b9SOleg Nesterov }
911572d34b9SOleg Nesterov 
91285863e47SMatt Mackall loff_t mem_lseek(struct file *file, loff_t offset, int orig)
9131da177e4SLinus Torvalds {
9141da177e4SLinus Torvalds 	switch (orig) {
9151da177e4SLinus Torvalds 	case 0:
9161da177e4SLinus Torvalds 		file->f_pos = offset;
9171da177e4SLinus Torvalds 		break;
9181da177e4SLinus Torvalds 	case 1:
9191da177e4SLinus Torvalds 		file->f_pos += offset;
9201da177e4SLinus Torvalds 		break;
9211da177e4SLinus Torvalds 	default:
9221da177e4SLinus Torvalds 		return -EINVAL;
9231da177e4SLinus Torvalds 	}
9241da177e4SLinus Torvalds 	force_successful_syscall_return();
9251da177e4SLinus Torvalds 	return file->f_pos;
9261da177e4SLinus Torvalds }
9271da177e4SLinus Torvalds 
928e268337dSLinus Torvalds static int mem_release(struct inode *inode, struct file *file)
929e268337dSLinus Torvalds {
930e268337dSLinus Torvalds 	struct mm_struct *mm = file->private_data;
93171879d3cSOleg Nesterov 	if (mm)
9326d08f2c7SOleg Nesterov 		mmdrop(mm);
933e268337dSLinus Torvalds 	return 0;
934e268337dSLinus Torvalds }
935e268337dSLinus Torvalds 
93600977a59SArjan van de Ven static const struct file_operations proc_mem_operations = {
9371da177e4SLinus Torvalds 	.llseek		= mem_lseek,
9381da177e4SLinus Torvalds 	.read		= mem_read,
9391da177e4SLinus Torvalds 	.write		= mem_write,
9401da177e4SLinus Torvalds 	.open		= mem_open,
941e268337dSLinus Torvalds 	.release	= mem_release,
9421da177e4SLinus Torvalds };
9431da177e4SLinus Torvalds 
944b409e578SCong Wang static int environ_open(struct inode *inode, struct file *file)
945b409e578SCong Wang {
946b409e578SCong Wang 	return __mem_open(inode, file, PTRACE_MODE_READ);
947b409e578SCong Wang }
948b409e578SCong Wang 
949315e28c8SJames Pearson static ssize_t environ_read(struct file *file, char __user *buf,
950315e28c8SJames Pearson 			size_t count, loff_t *ppos)
951315e28c8SJames Pearson {
952315e28c8SJames Pearson 	char *page;
953315e28c8SJames Pearson 	unsigned long src = *ppos;
954b409e578SCong Wang 	int ret = 0;
955b409e578SCong Wang 	struct mm_struct *mm = file->private_data;
956315e28c8SJames Pearson 
957b409e578SCong Wang 	if (!mm)
958b409e578SCong Wang 		return 0;
959315e28c8SJames Pearson 
960315e28c8SJames Pearson 	page = (char *)__get_free_page(GFP_TEMPORARY);
961315e28c8SJames Pearson 	if (!page)
962b409e578SCong Wang 		return -ENOMEM;
963315e28c8SJames Pearson 
964d6f64b89SAl Viro 	ret = 0;
965b409e578SCong Wang 	if (!atomic_inc_not_zero(&mm->mm_users))
966b409e578SCong Wang 		goto free;
967315e28c8SJames Pearson 	while (count > 0) {
968e8905ec2SDjalal Harouni 		size_t this_len, max_len;
969e8905ec2SDjalal Harouni 		int retval;
970e8905ec2SDjalal Harouni 
971e8905ec2SDjalal Harouni 		if (src >= (mm->env_end - mm->env_start))
972e8905ec2SDjalal Harouni 			break;
973315e28c8SJames Pearson 
974315e28c8SJames Pearson 		this_len = mm->env_end - (mm->env_start + src);
975315e28c8SJames Pearson 
976e8905ec2SDjalal Harouni 		max_len = min_t(size_t, PAGE_SIZE, count);
977e8905ec2SDjalal Harouni 		this_len = min(max_len, this_len);
978315e28c8SJames Pearson 
979b409e578SCong Wang 		retval = access_remote_vm(mm, (mm->env_start + src),
980315e28c8SJames Pearson 			page, this_len, 0);
981315e28c8SJames Pearson 
982315e28c8SJames Pearson 		if (retval <= 0) {
983315e28c8SJames Pearson 			ret = retval;
984315e28c8SJames Pearson 			break;
985315e28c8SJames Pearson 		}
986315e28c8SJames Pearson 
987315e28c8SJames Pearson 		if (copy_to_user(buf, page, retval)) {
988315e28c8SJames Pearson 			ret = -EFAULT;
989315e28c8SJames Pearson 			break;
990315e28c8SJames Pearson 		}
991315e28c8SJames Pearson 
992315e28c8SJames Pearson 		ret += retval;
993315e28c8SJames Pearson 		src += retval;
994315e28c8SJames Pearson 		buf += retval;
995315e28c8SJames Pearson 		count -= retval;
996315e28c8SJames Pearson 	}
997315e28c8SJames Pearson 	*ppos = src;
998315e28c8SJames Pearson 	mmput(mm);
999b409e578SCong Wang 
1000b409e578SCong Wang free:
1001315e28c8SJames Pearson 	free_page((unsigned long) page);
1002315e28c8SJames Pearson 	return ret;
1003315e28c8SJames Pearson }
1004315e28c8SJames Pearson 
1005315e28c8SJames Pearson static const struct file_operations proc_environ_operations = {
1006b409e578SCong Wang 	.open		= environ_open,
1007315e28c8SJames Pearson 	.read		= environ_read,
100887df8424SArnd Bergmann 	.llseek		= generic_file_llseek,
1009b409e578SCong Wang 	.release	= mem_release,
1010315e28c8SJames Pearson };
1011315e28c8SJames Pearson 
1012fa0cbbf1SDavid Rientjes static ssize_t oom_adj_read(struct file *file, char __user *buf, size_t count,
1013fa0cbbf1SDavid Rientjes 			    loff_t *ppos)
1014fa0cbbf1SDavid Rientjes {
1015496ad9aaSAl Viro 	struct task_struct *task = get_proc_task(file_inode(file));
1016fa0cbbf1SDavid Rientjes 	char buffer[PROC_NUMBUF];
1017fa0cbbf1SDavid Rientjes 	int oom_adj = OOM_ADJUST_MIN;
1018fa0cbbf1SDavid Rientjes 	size_t len;
1019fa0cbbf1SDavid Rientjes 	unsigned long flags;
1020fa0cbbf1SDavid Rientjes 
1021fa0cbbf1SDavid Rientjes 	if (!task)
1022fa0cbbf1SDavid Rientjes 		return -ESRCH;
1023fa0cbbf1SDavid Rientjes 	if (lock_task_sighand(task, &flags)) {
1024fa0cbbf1SDavid Rientjes 		if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MAX)
1025fa0cbbf1SDavid Rientjes 			oom_adj = OOM_ADJUST_MAX;
1026fa0cbbf1SDavid Rientjes 		else
1027fa0cbbf1SDavid Rientjes 			oom_adj = (task->signal->oom_score_adj * -OOM_DISABLE) /
1028fa0cbbf1SDavid Rientjes 				  OOM_SCORE_ADJ_MAX;
1029fa0cbbf1SDavid Rientjes 		unlock_task_sighand(task, &flags);
1030fa0cbbf1SDavid Rientjes 	}
1031fa0cbbf1SDavid Rientjes 	put_task_struct(task);
1032fa0cbbf1SDavid Rientjes 	len = snprintf(buffer, sizeof(buffer), "%d\n", oom_adj);
1033fa0cbbf1SDavid Rientjes 	return simple_read_from_buffer(buf, count, ppos, buffer, len);
1034fa0cbbf1SDavid Rientjes }
1035fa0cbbf1SDavid Rientjes 
1036b72bdfa7SDavid Rientjes /*
1037b72bdfa7SDavid Rientjes  * /proc/pid/oom_adj exists solely for backwards compatibility with previous
1038b72bdfa7SDavid Rientjes  * kernels.  The effective policy is defined by oom_score_adj, which has a
1039b72bdfa7SDavid Rientjes  * different scale: oom_adj grew exponentially and oom_score_adj grows linearly.
1040b72bdfa7SDavid Rientjes  * Values written to oom_adj are simply mapped linearly to oom_score_adj.
1041b72bdfa7SDavid Rientjes  * Processes that become oom disabled via oom_adj will still be oom disabled
1042b72bdfa7SDavid Rientjes  * with this implementation.
1043b72bdfa7SDavid Rientjes  *
1044b72bdfa7SDavid Rientjes  * oom_adj cannot be removed since existing userspace binaries use it.
1045b72bdfa7SDavid Rientjes  */
1046fa0cbbf1SDavid Rientjes static ssize_t oom_adj_write(struct file *file, const char __user *buf,
1047fa0cbbf1SDavid Rientjes 			     size_t count, loff_t *ppos)
1048fa0cbbf1SDavid Rientjes {
1049fa0cbbf1SDavid Rientjes 	struct task_struct *task;
1050fa0cbbf1SDavid Rientjes 	char buffer[PROC_NUMBUF];
1051fa0cbbf1SDavid Rientjes 	int oom_adj;
1052fa0cbbf1SDavid Rientjes 	unsigned long flags;
1053fa0cbbf1SDavid Rientjes 	int err;
1054fa0cbbf1SDavid Rientjes 
1055fa0cbbf1SDavid Rientjes 	memset(buffer, 0, sizeof(buffer));
1056fa0cbbf1SDavid Rientjes 	if (count > sizeof(buffer) - 1)
1057fa0cbbf1SDavid Rientjes 		count = sizeof(buffer) - 1;
1058fa0cbbf1SDavid Rientjes 	if (copy_from_user(buffer, buf, count)) {
1059fa0cbbf1SDavid Rientjes 		err = -EFAULT;
1060fa0cbbf1SDavid Rientjes 		goto out;
1061fa0cbbf1SDavid Rientjes 	}
1062fa0cbbf1SDavid Rientjes 
1063fa0cbbf1SDavid Rientjes 	err = kstrtoint(strstrip(buffer), 0, &oom_adj);
1064fa0cbbf1SDavid Rientjes 	if (err)
1065fa0cbbf1SDavid Rientjes 		goto out;
1066fa0cbbf1SDavid Rientjes 	if ((oom_adj < OOM_ADJUST_MIN || oom_adj > OOM_ADJUST_MAX) &&
1067fa0cbbf1SDavid Rientjes 	     oom_adj != OOM_DISABLE) {
1068fa0cbbf1SDavid Rientjes 		err = -EINVAL;
1069fa0cbbf1SDavid Rientjes 		goto out;
1070fa0cbbf1SDavid Rientjes 	}
1071fa0cbbf1SDavid Rientjes 
1072496ad9aaSAl Viro 	task = get_proc_task(file_inode(file));
1073fa0cbbf1SDavid Rientjes 	if (!task) {
1074fa0cbbf1SDavid Rientjes 		err = -ESRCH;
1075fa0cbbf1SDavid Rientjes 		goto out;
1076fa0cbbf1SDavid Rientjes 	}
1077fa0cbbf1SDavid Rientjes 
1078fa0cbbf1SDavid Rientjes 	task_lock(task);
1079fa0cbbf1SDavid Rientjes 	if (!task->mm) {
1080fa0cbbf1SDavid Rientjes 		err = -EINVAL;
1081fa0cbbf1SDavid Rientjes 		goto err_task_lock;
1082fa0cbbf1SDavid Rientjes 	}
1083fa0cbbf1SDavid Rientjes 
1084fa0cbbf1SDavid Rientjes 	if (!lock_task_sighand(task, &flags)) {
1085fa0cbbf1SDavid Rientjes 		err = -ESRCH;
1086fa0cbbf1SDavid Rientjes 		goto err_task_lock;
1087fa0cbbf1SDavid Rientjes 	}
1088fa0cbbf1SDavid Rientjes 
1089fa0cbbf1SDavid Rientjes 	/*
1090fa0cbbf1SDavid Rientjes 	 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
1091fa0cbbf1SDavid Rientjes 	 * value is always attainable.
1092fa0cbbf1SDavid Rientjes 	 */
1093fa0cbbf1SDavid Rientjes 	if (oom_adj == OOM_ADJUST_MAX)
1094fa0cbbf1SDavid Rientjes 		oom_adj = OOM_SCORE_ADJ_MAX;
1095fa0cbbf1SDavid Rientjes 	else
1096fa0cbbf1SDavid Rientjes 		oom_adj = (oom_adj * OOM_SCORE_ADJ_MAX) / -OOM_DISABLE;
1097fa0cbbf1SDavid Rientjes 
1098fa0cbbf1SDavid Rientjes 	if (oom_adj < task->signal->oom_score_adj &&
1099fa0cbbf1SDavid Rientjes 	    !capable(CAP_SYS_RESOURCE)) {
1100fa0cbbf1SDavid Rientjes 		err = -EACCES;
1101fa0cbbf1SDavid Rientjes 		goto err_sighand;
1102fa0cbbf1SDavid Rientjes 	}
1103fa0cbbf1SDavid Rientjes 
1104fa0cbbf1SDavid Rientjes 	/*
1105fa0cbbf1SDavid Rientjes 	 * /proc/pid/oom_adj is provided for legacy purposes, ask users to use
1106fa0cbbf1SDavid Rientjes 	 * /proc/pid/oom_score_adj instead.
1107fa0cbbf1SDavid Rientjes 	 */
110887ebdc00SAndrew Morton 	pr_warn_once("%s (%d): /proc/%d/oom_adj is deprecated, please use /proc/%d/oom_score_adj instead.\n",
1109fa0cbbf1SDavid Rientjes 		  current->comm, task_pid_nr(current), task_pid_nr(task),
1110fa0cbbf1SDavid Rientjes 		  task_pid_nr(task));
1111fa0cbbf1SDavid Rientjes 
1112fa0cbbf1SDavid Rientjes 	task->signal->oom_score_adj = oom_adj;
1113fa0cbbf1SDavid Rientjes 	trace_oom_score_adj_update(task);
1114fa0cbbf1SDavid Rientjes err_sighand:
1115fa0cbbf1SDavid Rientjes 	unlock_task_sighand(task, &flags);
1116fa0cbbf1SDavid Rientjes err_task_lock:
1117fa0cbbf1SDavid Rientjes 	task_unlock(task);
1118fa0cbbf1SDavid Rientjes 	put_task_struct(task);
1119fa0cbbf1SDavid Rientjes out:
1120fa0cbbf1SDavid Rientjes 	return err < 0 ? err : count;
1121fa0cbbf1SDavid Rientjes }
1122fa0cbbf1SDavid Rientjes 
1123fa0cbbf1SDavid Rientjes static const struct file_operations proc_oom_adj_operations = {
1124fa0cbbf1SDavid Rientjes 	.read		= oom_adj_read,
1125fa0cbbf1SDavid Rientjes 	.write		= oom_adj_write,
1126fa0cbbf1SDavid Rientjes 	.llseek		= generic_file_llseek,
1127fa0cbbf1SDavid Rientjes };
1128fa0cbbf1SDavid Rientjes 
1129a63d83f4SDavid Rientjes static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
1130a63d83f4SDavid Rientjes 					size_t count, loff_t *ppos)
1131a63d83f4SDavid Rientjes {
1132496ad9aaSAl Viro 	struct task_struct *task = get_proc_task(file_inode(file));
1133a63d83f4SDavid Rientjes 	char buffer[PROC_NUMBUF];
1134a9c58b90SDavid Rientjes 	short oom_score_adj = OOM_SCORE_ADJ_MIN;
1135a63d83f4SDavid Rientjes 	unsigned long flags;
1136a63d83f4SDavid Rientjes 	size_t len;
1137a63d83f4SDavid Rientjes 
1138a63d83f4SDavid Rientjes 	if (!task)
1139a63d83f4SDavid Rientjes 		return -ESRCH;
1140a63d83f4SDavid Rientjes 	if (lock_task_sighand(task, &flags)) {
1141a63d83f4SDavid Rientjes 		oom_score_adj = task->signal->oom_score_adj;
1142a63d83f4SDavid Rientjes 		unlock_task_sighand(task, &flags);
1143a63d83f4SDavid Rientjes 	}
1144a63d83f4SDavid Rientjes 	put_task_struct(task);
1145a9c58b90SDavid Rientjes 	len = snprintf(buffer, sizeof(buffer), "%hd\n", oom_score_adj);
1146a63d83f4SDavid Rientjes 	return simple_read_from_buffer(buf, count, ppos, buffer, len);
1147a63d83f4SDavid Rientjes }
1148a63d83f4SDavid Rientjes 
1149a63d83f4SDavid Rientjes static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1150a63d83f4SDavid Rientjes 					size_t count, loff_t *ppos)
1151a63d83f4SDavid Rientjes {
1152a63d83f4SDavid Rientjes 	struct task_struct *task;
1153a63d83f4SDavid Rientjes 	char buffer[PROC_NUMBUF];
1154a63d83f4SDavid Rientjes 	unsigned long flags;
11550a8cb8e3SAlexey Dobriyan 	int oom_score_adj;
1156a63d83f4SDavid Rientjes 	int err;
1157a63d83f4SDavid Rientjes 
1158a63d83f4SDavid Rientjes 	memset(buffer, 0, sizeof(buffer));
1159a63d83f4SDavid Rientjes 	if (count > sizeof(buffer) - 1)
1160a63d83f4SDavid Rientjes 		count = sizeof(buffer) - 1;
1161723548bfSDavid Rientjes 	if (copy_from_user(buffer, buf, count)) {
1162723548bfSDavid Rientjes 		err = -EFAULT;
1163723548bfSDavid Rientjes 		goto out;
1164723548bfSDavid Rientjes 	}
1165a63d83f4SDavid Rientjes 
11660a8cb8e3SAlexey Dobriyan 	err = kstrtoint(strstrip(buffer), 0, &oom_score_adj);
1167a63d83f4SDavid Rientjes 	if (err)
1168723548bfSDavid Rientjes 		goto out;
1169a63d83f4SDavid Rientjes 	if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
1170723548bfSDavid Rientjes 			oom_score_adj > OOM_SCORE_ADJ_MAX) {
1171723548bfSDavid Rientjes 		err = -EINVAL;
1172723548bfSDavid Rientjes 		goto out;
1173723548bfSDavid Rientjes 	}
1174a63d83f4SDavid Rientjes 
1175496ad9aaSAl Viro 	task = get_proc_task(file_inode(file));
1176723548bfSDavid Rientjes 	if (!task) {
1177723548bfSDavid Rientjes 		err = -ESRCH;
1178723548bfSDavid Rientjes 		goto out;
1179723548bfSDavid Rientjes 	}
1180a63d83f4SDavid Rientjes 
11813d5992d2SYing Han 	task_lock(task);
11823d5992d2SYing Han 	if (!task->mm) {
1183723548bfSDavid Rientjes 		err = -EINVAL;
1184723548bfSDavid Rientjes 		goto err_task_lock;
11853d5992d2SYing Han 	}
1186d19d5476SDavid Rientjes 
1187d19d5476SDavid Rientjes 	if (!lock_task_sighand(task, &flags)) {
1188d19d5476SDavid Rientjes 		err = -ESRCH;
1189d19d5476SDavid Rientjes 		goto err_task_lock;
1190d19d5476SDavid Rientjes 	}
1191d19d5476SDavid Rientjes 
1192a9c58b90SDavid Rientjes 	if ((short)oom_score_adj < task->signal->oom_score_adj_min &&
1193d19d5476SDavid Rientjes 			!capable(CAP_SYS_RESOURCE)) {
1194d19d5476SDavid Rientjes 		err = -EACCES;
1195d19d5476SDavid Rientjes 		goto err_sighand;
1196d19d5476SDavid Rientjes 	}
1197d19d5476SDavid Rientjes 
1198a9c58b90SDavid Rientjes 	task->signal->oom_score_adj = (short)oom_score_adj;
1199dabb16f6SMandeep Singh Baines 	if (has_capability_noaudit(current, CAP_SYS_RESOURCE))
1200a9c58b90SDavid Rientjes 		task->signal->oom_score_adj_min = (short)oom_score_adj;
120143d2b113SKAMEZAWA Hiroyuki 	trace_oom_score_adj_update(task);
120201dc52ebSDavidlohr Bueso 
1203723548bfSDavid Rientjes err_sighand:
1204a63d83f4SDavid Rientjes 	unlock_task_sighand(task, &flags);
1205d19d5476SDavid Rientjes err_task_lock:
1206d19d5476SDavid Rientjes 	task_unlock(task);
1207a63d83f4SDavid Rientjes 	put_task_struct(task);
1208723548bfSDavid Rientjes out:
1209723548bfSDavid Rientjes 	return err < 0 ? err : count;
1210a63d83f4SDavid Rientjes }
1211a63d83f4SDavid Rientjes 
1212a63d83f4SDavid Rientjes static const struct file_operations proc_oom_score_adj_operations = {
1213a63d83f4SDavid Rientjes 	.read		= oom_score_adj_read,
1214a63d83f4SDavid Rientjes 	.write		= oom_score_adj_write,
12156038f373SArnd Bergmann 	.llseek		= default_llseek,
1216a63d83f4SDavid Rientjes };
1217a63d83f4SDavid Rientjes 
12181da177e4SLinus Torvalds #ifdef CONFIG_AUDITSYSCALL
12191da177e4SLinus Torvalds #define TMPBUFLEN 21
12201da177e4SLinus Torvalds static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
12211da177e4SLinus Torvalds 				  size_t count, loff_t *ppos)
12221da177e4SLinus Torvalds {
1223496ad9aaSAl Viro 	struct inode * inode = file_inode(file);
122499f89551SEric W. Biederman 	struct task_struct *task = get_proc_task(inode);
12251da177e4SLinus Torvalds 	ssize_t length;
12261da177e4SLinus Torvalds 	char tmpbuf[TMPBUFLEN];
12271da177e4SLinus Torvalds 
122899f89551SEric W. Biederman 	if (!task)
122999f89551SEric W. Biederman 		return -ESRCH;
12301da177e4SLinus Torvalds 	length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1231e1760bd5SEric W. Biederman 			   from_kuid(file->f_cred->user_ns,
1232e1760bd5SEric W. Biederman 				     audit_get_loginuid(task)));
123399f89551SEric W. Biederman 	put_task_struct(task);
12341da177e4SLinus Torvalds 	return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
12351da177e4SLinus Torvalds }
12361da177e4SLinus Torvalds 
12371da177e4SLinus Torvalds static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
12381da177e4SLinus Torvalds 				   size_t count, loff_t *ppos)
12391da177e4SLinus Torvalds {
1240496ad9aaSAl Viro 	struct inode * inode = file_inode(file);
12411da177e4SLinus Torvalds 	uid_t loginuid;
1242e1760bd5SEric W. Biederman 	kuid_t kloginuid;
1243774636e1SAlexey Dobriyan 	int rv;
12441da177e4SLinus Torvalds 
12457dc52157SPaul E. McKenney 	rcu_read_lock();
12467dc52157SPaul E. McKenney 	if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
12477dc52157SPaul E. McKenney 		rcu_read_unlock();
12481da177e4SLinus Torvalds 		return -EPERM;
12497dc52157SPaul E. McKenney 	}
12507dc52157SPaul E. McKenney 	rcu_read_unlock();
12511da177e4SLinus Torvalds 
12521da177e4SLinus Torvalds 	if (*ppos != 0) {
12531da177e4SLinus Torvalds 		/* No partial writes. */
12541da177e4SLinus Torvalds 		return -EINVAL;
12551da177e4SLinus Torvalds 	}
12561da177e4SLinus Torvalds 
1257774636e1SAlexey Dobriyan 	rv = kstrtou32_from_user(buf, count, 10, &loginuid);
1258774636e1SAlexey Dobriyan 	if (rv < 0)
1259774636e1SAlexey Dobriyan 		return rv;
126081407c84SEric Paris 
126181407c84SEric Paris 	/* is userspace tring to explicitly UNSET the loginuid? */
126281407c84SEric Paris 	if (loginuid == AUDIT_UID_UNSET) {
126381407c84SEric Paris 		kloginuid = INVALID_UID;
126481407c84SEric Paris 	} else {
1265e1760bd5SEric W. Biederman 		kloginuid = make_kuid(file->f_cred->user_ns, loginuid);
1266774636e1SAlexey Dobriyan 		if (!uid_valid(kloginuid))
1267774636e1SAlexey Dobriyan 			return -EINVAL;
126881407c84SEric Paris 	}
1269e1760bd5SEric W. Biederman 
1270774636e1SAlexey Dobriyan 	rv = audit_set_loginuid(kloginuid);
1271774636e1SAlexey Dobriyan 	if (rv < 0)
1272774636e1SAlexey Dobriyan 		return rv;
1273774636e1SAlexey Dobriyan 	return count;
12741da177e4SLinus Torvalds }
12751da177e4SLinus Torvalds 
127600977a59SArjan van de Ven static const struct file_operations proc_loginuid_operations = {
12771da177e4SLinus Torvalds 	.read		= proc_loginuid_read,
12781da177e4SLinus Torvalds 	.write		= proc_loginuid_write,
127987df8424SArnd Bergmann 	.llseek		= generic_file_llseek,
12801da177e4SLinus Torvalds };
12811e0bd755SEric Paris 
12821e0bd755SEric Paris static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
12831e0bd755SEric Paris 				  size_t count, loff_t *ppos)
12841e0bd755SEric Paris {
1285496ad9aaSAl Viro 	struct inode * inode = file_inode(file);
12861e0bd755SEric Paris 	struct task_struct *task = get_proc_task(inode);
12871e0bd755SEric Paris 	ssize_t length;
12881e0bd755SEric Paris 	char tmpbuf[TMPBUFLEN];
12891e0bd755SEric Paris 
12901e0bd755SEric Paris 	if (!task)
12911e0bd755SEric Paris 		return -ESRCH;
12921e0bd755SEric Paris 	length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
12931e0bd755SEric Paris 				audit_get_sessionid(task));
12941e0bd755SEric Paris 	put_task_struct(task);
12951e0bd755SEric Paris 	return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
12961e0bd755SEric Paris }
12971e0bd755SEric Paris 
12981e0bd755SEric Paris static const struct file_operations proc_sessionid_operations = {
12991e0bd755SEric Paris 	.read		= proc_sessionid_read,
130087df8424SArnd Bergmann 	.llseek		= generic_file_llseek,
13011e0bd755SEric Paris };
13021da177e4SLinus Torvalds #endif
13031da177e4SLinus Torvalds 
1304f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION
1305f4f154fdSAkinobu Mita static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1306f4f154fdSAkinobu Mita 				      size_t count, loff_t *ppos)
1307f4f154fdSAkinobu Mita {
1308496ad9aaSAl Viro 	struct task_struct *task = get_proc_task(file_inode(file));
1309f4f154fdSAkinobu Mita 	char buffer[PROC_NUMBUF];
1310f4f154fdSAkinobu Mita 	size_t len;
1311f4f154fdSAkinobu Mita 	int make_it_fail;
1312f4f154fdSAkinobu Mita 
1313f4f154fdSAkinobu Mita 	if (!task)
1314f4f154fdSAkinobu Mita 		return -ESRCH;
1315f4f154fdSAkinobu Mita 	make_it_fail = task->make_it_fail;
1316f4f154fdSAkinobu Mita 	put_task_struct(task);
1317f4f154fdSAkinobu Mita 
1318f4f154fdSAkinobu Mita 	len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
13190c28f287SAkinobu Mita 
13200c28f287SAkinobu Mita 	return simple_read_from_buffer(buf, count, ppos, buffer, len);
1321f4f154fdSAkinobu Mita }
1322f4f154fdSAkinobu Mita 
1323f4f154fdSAkinobu Mita static ssize_t proc_fault_inject_write(struct file * file,
1324f4f154fdSAkinobu Mita 			const char __user * buf, size_t count, loff_t *ppos)
1325f4f154fdSAkinobu Mita {
1326f4f154fdSAkinobu Mita 	struct task_struct *task;
1327774636e1SAlexey Dobriyan 	char buffer[PROC_NUMBUF];
1328f4f154fdSAkinobu Mita 	int make_it_fail;
1329774636e1SAlexey Dobriyan 	int rv;
1330f4f154fdSAkinobu Mita 
1331f4f154fdSAkinobu Mita 	if (!capable(CAP_SYS_RESOURCE))
1332f4f154fdSAkinobu Mita 		return -EPERM;
1333f4f154fdSAkinobu Mita 	memset(buffer, 0, sizeof(buffer));
1334f4f154fdSAkinobu Mita 	if (count > sizeof(buffer) - 1)
1335f4f154fdSAkinobu Mita 		count = sizeof(buffer) - 1;
1336f4f154fdSAkinobu Mita 	if (copy_from_user(buffer, buf, count))
1337f4f154fdSAkinobu Mita 		return -EFAULT;
1338774636e1SAlexey Dobriyan 	rv = kstrtoint(strstrip(buffer), 0, &make_it_fail);
1339774636e1SAlexey Dobriyan 	if (rv < 0)
1340774636e1SAlexey Dobriyan 		return rv;
134116caed31SDave Jones 	if (make_it_fail < 0 || make_it_fail > 1)
134216caed31SDave Jones 		return -EINVAL;
134316caed31SDave Jones 
1344496ad9aaSAl Viro 	task = get_proc_task(file_inode(file));
1345f4f154fdSAkinobu Mita 	if (!task)
1346f4f154fdSAkinobu Mita 		return -ESRCH;
1347f4f154fdSAkinobu Mita 	task->make_it_fail = make_it_fail;
1348f4f154fdSAkinobu Mita 	put_task_struct(task);
1349cba8aafeSVincent Li 
1350cba8aafeSVincent Li 	return count;
1351f4f154fdSAkinobu Mita }
1352f4f154fdSAkinobu Mita 
135300977a59SArjan van de Ven static const struct file_operations proc_fault_inject_operations = {
1354f4f154fdSAkinobu Mita 	.read		= proc_fault_inject_read,
1355f4f154fdSAkinobu Mita 	.write		= proc_fault_inject_write,
135687df8424SArnd Bergmann 	.llseek		= generic_file_llseek,
1357f4f154fdSAkinobu Mita };
1358f4f154fdSAkinobu Mita #endif
1359f4f154fdSAkinobu Mita 
13609745512cSArjan van de Ven 
136143ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG
136243ae34cbSIngo Molnar /*
136343ae34cbSIngo Molnar  * Print out various scheduling related per-task fields:
136443ae34cbSIngo Molnar  */
136543ae34cbSIngo Molnar static int sched_show(struct seq_file *m, void *v)
136643ae34cbSIngo Molnar {
136743ae34cbSIngo Molnar 	struct inode *inode = m->private;
136843ae34cbSIngo Molnar 	struct task_struct *p;
136943ae34cbSIngo Molnar 
137043ae34cbSIngo Molnar 	p = get_proc_task(inode);
137143ae34cbSIngo Molnar 	if (!p)
137243ae34cbSIngo Molnar 		return -ESRCH;
137343ae34cbSIngo Molnar 	proc_sched_show_task(p, m);
137443ae34cbSIngo Molnar 
137543ae34cbSIngo Molnar 	put_task_struct(p);
137643ae34cbSIngo Molnar 
137743ae34cbSIngo Molnar 	return 0;
137843ae34cbSIngo Molnar }
137943ae34cbSIngo Molnar 
138043ae34cbSIngo Molnar static ssize_t
138143ae34cbSIngo Molnar sched_write(struct file *file, const char __user *buf,
138243ae34cbSIngo Molnar 	    size_t count, loff_t *offset)
138343ae34cbSIngo Molnar {
1384496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
138543ae34cbSIngo Molnar 	struct task_struct *p;
138643ae34cbSIngo Molnar 
138743ae34cbSIngo Molnar 	p = get_proc_task(inode);
138843ae34cbSIngo Molnar 	if (!p)
138943ae34cbSIngo Molnar 		return -ESRCH;
139043ae34cbSIngo Molnar 	proc_sched_set_task(p);
139143ae34cbSIngo Molnar 
139243ae34cbSIngo Molnar 	put_task_struct(p);
139343ae34cbSIngo Molnar 
139443ae34cbSIngo Molnar 	return count;
139543ae34cbSIngo Molnar }
139643ae34cbSIngo Molnar 
139743ae34cbSIngo Molnar static int sched_open(struct inode *inode, struct file *filp)
139843ae34cbSIngo Molnar {
1399c6a34058SJovi Zhang 	return single_open(filp, sched_show, inode);
140043ae34cbSIngo Molnar }
140143ae34cbSIngo Molnar 
140243ae34cbSIngo Molnar static const struct file_operations proc_pid_sched_operations = {
140343ae34cbSIngo Molnar 	.open		= sched_open,
140443ae34cbSIngo Molnar 	.read		= seq_read,
140543ae34cbSIngo Molnar 	.write		= sched_write,
140643ae34cbSIngo Molnar 	.llseek		= seq_lseek,
14075ea473a1SAlexey Dobriyan 	.release	= single_release,
140843ae34cbSIngo Molnar };
140943ae34cbSIngo Molnar 
141043ae34cbSIngo Molnar #endif
141143ae34cbSIngo Molnar 
14125091faa4SMike Galbraith #ifdef CONFIG_SCHED_AUTOGROUP
14135091faa4SMike Galbraith /*
14145091faa4SMike Galbraith  * Print out autogroup related information:
14155091faa4SMike Galbraith  */
14165091faa4SMike Galbraith static int sched_autogroup_show(struct seq_file *m, void *v)
14175091faa4SMike Galbraith {
14185091faa4SMike Galbraith 	struct inode *inode = m->private;
14195091faa4SMike Galbraith 	struct task_struct *p;
14205091faa4SMike Galbraith 
14215091faa4SMike Galbraith 	p = get_proc_task(inode);
14225091faa4SMike Galbraith 	if (!p)
14235091faa4SMike Galbraith 		return -ESRCH;
14245091faa4SMike Galbraith 	proc_sched_autogroup_show_task(p, m);
14255091faa4SMike Galbraith 
14265091faa4SMike Galbraith 	put_task_struct(p);
14275091faa4SMike Galbraith 
14285091faa4SMike Galbraith 	return 0;
14295091faa4SMike Galbraith }
14305091faa4SMike Galbraith 
14315091faa4SMike Galbraith static ssize_t
14325091faa4SMike Galbraith sched_autogroup_write(struct file *file, const char __user *buf,
14335091faa4SMike Galbraith 	    size_t count, loff_t *offset)
14345091faa4SMike Galbraith {
1435496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
14365091faa4SMike Galbraith 	struct task_struct *p;
14375091faa4SMike Galbraith 	char buffer[PROC_NUMBUF];
14380a8cb8e3SAlexey Dobriyan 	int nice;
14395091faa4SMike Galbraith 	int err;
14405091faa4SMike Galbraith 
14415091faa4SMike Galbraith 	memset(buffer, 0, sizeof(buffer));
14425091faa4SMike Galbraith 	if (count > sizeof(buffer) - 1)
14435091faa4SMike Galbraith 		count = sizeof(buffer) - 1;
14445091faa4SMike Galbraith 	if (copy_from_user(buffer, buf, count))
14455091faa4SMike Galbraith 		return -EFAULT;
14465091faa4SMike Galbraith 
14470a8cb8e3SAlexey Dobriyan 	err = kstrtoint(strstrip(buffer), 0, &nice);
14480a8cb8e3SAlexey Dobriyan 	if (err < 0)
14490a8cb8e3SAlexey Dobriyan 		return err;
14505091faa4SMike Galbraith 
14515091faa4SMike Galbraith 	p = get_proc_task(inode);
14525091faa4SMike Galbraith 	if (!p)
14535091faa4SMike Galbraith 		return -ESRCH;
14545091faa4SMike Galbraith 
14552e5b5b3aSHiroshi Shimamoto 	err = proc_sched_autogroup_set_nice(p, nice);
14565091faa4SMike Galbraith 	if (err)
14575091faa4SMike Galbraith 		count = err;
14585091faa4SMike Galbraith 
14595091faa4SMike Galbraith 	put_task_struct(p);
14605091faa4SMike Galbraith 
14615091faa4SMike Galbraith 	return count;
14625091faa4SMike Galbraith }
14635091faa4SMike Galbraith 
14645091faa4SMike Galbraith static int sched_autogroup_open(struct inode *inode, struct file *filp)
14655091faa4SMike Galbraith {
14665091faa4SMike Galbraith 	int ret;
14675091faa4SMike Galbraith 
14685091faa4SMike Galbraith 	ret = single_open(filp, sched_autogroup_show, NULL);
14695091faa4SMike Galbraith 	if (!ret) {
14705091faa4SMike Galbraith 		struct seq_file *m = filp->private_data;
14715091faa4SMike Galbraith 
14725091faa4SMike Galbraith 		m->private = inode;
14735091faa4SMike Galbraith 	}
14745091faa4SMike Galbraith 	return ret;
14755091faa4SMike Galbraith }
14765091faa4SMike Galbraith 
14775091faa4SMike Galbraith static const struct file_operations proc_pid_sched_autogroup_operations = {
14785091faa4SMike Galbraith 	.open		= sched_autogroup_open,
14795091faa4SMike Galbraith 	.read		= seq_read,
14805091faa4SMike Galbraith 	.write		= sched_autogroup_write,
14815091faa4SMike Galbraith 	.llseek		= seq_lseek,
14825091faa4SMike Galbraith 	.release	= single_release,
14835091faa4SMike Galbraith };
14845091faa4SMike Galbraith 
14855091faa4SMike Galbraith #endif /* CONFIG_SCHED_AUTOGROUP */
14865091faa4SMike Galbraith 
14874614a696Sjohn stultz static ssize_t comm_write(struct file *file, const char __user *buf,
14884614a696Sjohn stultz 				size_t count, loff_t *offset)
14894614a696Sjohn stultz {
1490496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
14914614a696Sjohn stultz 	struct task_struct *p;
14924614a696Sjohn stultz 	char buffer[TASK_COMM_LEN];
1493830e0fc9SDavid Rientjes 	const size_t maxlen = sizeof(buffer) - 1;
14944614a696Sjohn stultz 
14954614a696Sjohn stultz 	memset(buffer, 0, sizeof(buffer));
1496830e0fc9SDavid Rientjes 	if (copy_from_user(buffer, buf, count > maxlen ? maxlen : count))
14974614a696Sjohn stultz 		return -EFAULT;
14984614a696Sjohn stultz 
14994614a696Sjohn stultz 	p = get_proc_task(inode);
15004614a696Sjohn stultz 	if (!p)
15014614a696Sjohn stultz 		return -ESRCH;
15024614a696Sjohn stultz 
15034614a696Sjohn stultz 	if (same_thread_group(current, p))
15044614a696Sjohn stultz 		set_task_comm(p, buffer);
15054614a696Sjohn stultz 	else
15064614a696Sjohn stultz 		count = -EINVAL;
15074614a696Sjohn stultz 
15084614a696Sjohn stultz 	put_task_struct(p);
15094614a696Sjohn stultz 
15104614a696Sjohn stultz 	return count;
15114614a696Sjohn stultz }
15124614a696Sjohn stultz 
15134614a696Sjohn stultz static int comm_show(struct seq_file *m, void *v)
15144614a696Sjohn stultz {
15154614a696Sjohn stultz 	struct inode *inode = m->private;
15164614a696Sjohn stultz 	struct task_struct *p;
15174614a696Sjohn stultz 
15184614a696Sjohn stultz 	p = get_proc_task(inode);
15194614a696Sjohn stultz 	if (!p)
15204614a696Sjohn stultz 		return -ESRCH;
15214614a696Sjohn stultz 
15224614a696Sjohn stultz 	task_lock(p);
15234614a696Sjohn stultz 	seq_printf(m, "%s\n", p->comm);
15244614a696Sjohn stultz 	task_unlock(p);
15254614a696Sjohn stultz 
15264614a696Sjohn stultz 	put_task_struct(p);
15274614a696Sjohn stultz 
15284614a696Sjohn stultz 	return 0;
15294614a696Sjohn stultz }
15304614a696Sjohn stultz 
15314614a696Sjohn stultz static int comm_open(struct inode *inode, struct file *filp)
15324614a696Sjohn stultz {
1533c6a34058SJovi Zhang 	return single_open(filp, comm_show, inode);
15344614a696Sjohn stultz }
15354614a696Sjohn stultz 
15364614a696Sjohn stultz static const struct file_operations proc_pid_set_comm_operations = {
15374614a696Sjohn stultz 	.open		= comm_open,
15384614a696Sjohn stultz 	.read		= seq_read,
15394614a696Sjohn stultz 	.write		= comm_write,
15404614a696Sjohn stultz 	.llseek		= seq_lseek,
15414614a696Sjohn stultz 	.release	= single_release,
15424614a696Sjohn stultz };
15434614a696Sjohn stultz 
15447773fbc5SCyrill Gorcunov static int proc_exe_link(struct dentry *dentry, struct path *exe_path)
1545925d1c40SMatt Helsley {
1546925d1c40SMatt Helsley 	struct task_struct *task;
1547925d1c40SMatt Helsley 	struct mm_struct *mm;
1548925d1c40SMatt Helsley 	struct file *exe_file;
1549925d1c40SMatt Helsley 
15502b0143b5SDavid Howells 	task = get_proc_task(d_inode(dentry));
1551925d1c40SMatt Helsley 	if (!task)
1552925d1c40SMatt Helsley 		return -ENOENT;
1553925d1c40SMatt Helsley 	mm = get_task_mm(task);
1554925d1c40SMatt Helsley 	put_task_struct(task);
1555925d1c40SMatt Helsley 	if (!mm)
1556925d1c40SMatt Helsley 		return -ENOENT;
1557925d1c40SMatt Helsley 	exe_file = get_mm_exe_file(mm);
1558925d1c40SMatt Helsley 	mmput(mm);
1559925d1c40SMatt Helsley 	if (exe_file) {
1560925d1c40SMatt Helsley 		*exe_path = exe_file->f_path;
1561925d1c40SMatt Helsley 		path_get(&exe_file->f_path);
1562925d1c40SMatt Helsley 		fput(exe_file);
1563925d1c40SMatt Helsley 		return 0;
1564925d1c40SMatt Helsley 	} else
1565925d1c40SMatt Helsley 		return -ENOENT;
1566925d1c40SMatt Helsley }
1567925d1c40SMatt Helsley 
15686b255391SAl Viro static const char *proc_pid_get_link(struct dentry *dentry,
1569fceef393SAl Viro 				     struct inode *inode,
1570fceef393SAl Viro 				     struct delayed_call *done)
15711da177e4SLinus Torvalds {
1572408ef013SChristoph Hellwig 	struct path path;
15731da177e4SLinus Torvalds 	int error = -EACCES;
15741da177e4SLinus Torvalds 
15756b255391SAl Viro 	if (!dentry)
15766b255391SAl Viro 		return ERR_PTR(-ECHILD);
15776b255391SAl Viro 
1578778c1144SEric W. Biederman 	/* Are we allowed to snoop on the tasks file descriptors? */
1579778c1144SEric W. Biederman 	if (!proc_fd_access_allowed(inode))
15801da177e4SLinus Torvalds 		goto out;
15811da177e4SLinus Torvalds 
1582408ef013SChristoph Hellwig 	error = PROC_I(inode)->op.proc_get_link(dentry, &path);
1583408ef013SChristoph Hellwig 	if (error)
1584408ef013SChristoph Hellwig 		goto out;
1585408ef013SChristoph Hellwig 
15866e77137bSAl Viro 	nd_jump_link(&path);
1587408ef013SChristoph Hellwig 	return NULL;
15881da177e4SLinus Torvalds out:
1589008b150aSAl Viro 	return ERR_PTR(error);
15901da177e4SLinus Torvalds }
15911da177e4SLinus Torvalds 
15923dcd25f3SJan Blunck static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
15931da177e4SLinus Torvalds {
1594e12ba74dSMel Gorman 	char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
15953dcd25f3SJan Blunck 	char *pathname;
15961da177e4SLinus Torvalds 	int len;
15971da177e4SLinus Torvalds 
15981da177e4SLinus Torvalds 	if (!tmp)
15991da177e4SLinus Torvalds 		return -ENOMEM;
16001da177e4SLinus Torvalds 
16017b2a69baSEric W. Biederman 	pathname = d_path(path, tmp, PAGE_SIZE);
16023dcd25f3SJan Blunck 	len = PTR_ERR(pathname);
16033dcd25f3SJan Blunck 	if (IS_ERR(pathname))
16041da177e4SLinus Torvalds 		goto out;
16053dcd25f3SJan Blunck 	len = tmp + PAGE_SIZE - 1 - pathname;
16061da177e4SLinus Torvalds 
16071da177e4SLinus Torvalds 	if (len > buflen)
16081da177e4SLinus Torvalds 		len = buflen;
16093dcd25f3SJan Blunck 	if (copy_to_user(buffer, pathname, len))
16101da177e4SLinus Torvalds 		len = -EFAULT;
16111da177e4SLinus Torvalds  out:
16121da177e4SLinus Torvalds 	free_page((unsigned long)tmp);
16131da177e4SLinus Torvalds 	return len;
16141da177e4SLinus Torvalds }
16151da177e4SLinus Torvalds 
16161da177e4SLinus Torvalds static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
16171da177e4SLinus Torvalds {
16181da177e4SLinus Torvalds 	int error = -EACCES;
16192b0143b5SDavid Howells 	struct inode *inode = d_inode(dentry);
16203dcd25f3SJan Blunck 	struct path path;
16211da177e4SLinus Torvalds 
1622778c1144SEric W. Biederman 	/* Are we allowed to snoop on the tasks file descriptors? */
1623778c1144SEric W. Biederman 	if (!proc_fd_access_allowed(inode))
16241da177e4SLinus Torvalds 		goto out;
16251da177e4SLinus Torvalds 
16267773fbc5SCyrill Gorcunov 	error = PROC_I(inode)->op.proc_get_link(dentry, &path);
16271da177e4SLinus Torvalds 	if (error)
16281da177e4SLinus Torvalds 		goto out;
16291da177e4SLinus Torvalds 
16303dcd25f3SJan Blunck 	error = do_proc_readlink(&path, buffer, buflen);
16313dcd25f3SJan Blunck 	path_put(&path);
16321da177e4SLinus Torvalds out:
16331da177e4SLinus Torvalds 	return error;
16341da177e4SLinus Torvalds }
16351da177e4SLinus Torvalds 
1636faf60af1SCyrill Gorcunov const struct inode_operations proc_pid_link_inode_operations = {
16371da177e4SLinus Torvalds 	.readlink	= proc_pid_readlink,
16386b255391SAl Viro 	.get_link	= proc_pid_get_link,
16396d76fa58SLinus Torvalds 	.setattr	= proc_setattr,
16401da177e4SLinus Torvalds };
16411da177e4SLinus Torvalds 
164228a6d671SEric W. Biederman 
164328a6d671SEric W. Biederman /* building an inode */
164428a6d671SEric W. Biederman 
16456b4e306aSEric W. Biederman struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
164628a6d671SEric W. Biederman {
164728a6d671SEric W. Biederman 	struct inode * inode;
164828a6d671SEric W. Biederman 	struct proc_inode *ei;
1649c69e8d9cSDavid Howells 	const struct cred *cred;
165028a6d671SEric W. Biederman 
165128a6d671SEric W. Biederman 	/* We need a new inode */
165228a6d671SEric W. Biederman 
165328a6d671SEric W. Biederman 	inode = new_inode(sb);
165428a6d671SEric W. Biederman 	if (!inode)
165528a6d671SEric W. Biederman 		goto out;
165628a6d671SEric W. Biederman 
165728a6d671SEric W. Biederman 	/* Common stuff */
165828a6d671SEric W. Biederman 	ei = PROC_I(inode);
165985fe4025SChristoph Hellwig 	inode->i_ino = get_next_ino();
166028a6d671SEric W. Biederman 	inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
166128a6d671SEric W. Biederman 	inode->i_op = &proc_def_inode_operations;
166228a6d671SEric W. Biederman 
166328a6d671SEric W. Biederman 	/*
166428a6d671SEric W. Biederman 	 * grab the reference to task.
166528a6d671SEric W. Biederman 	 */
16661a657f78SOleg Nesterov 	ei->pid = get_task_pid(task, PIDTYPE_PID);
166728a6d671SEric W. Biederman 	if (!ei->pid)
166828a6d671SEric W. Biederman 		goto out_unlock;
166928a6d671SEric W. Biederman 
167028a6d671SEric W. Biederman 	if (task_dumpable(task)) {
1671c69e8d9cSDavid Howells 		rcu_read_lock();
1672c69e8d9cSDavid Howells 		cred = __task_cred(task);
1673c69e8d9cSDavid Howells 		inode->i_uid = cred->euid;
1674c69e8d9cSDavid Howells 		inode->i_gid = cred->egid;
1675c69e8d9cSDavid Howells 		rcu_read_unlock();
167628a6d671SEric W. Biederman 	}
167728a6d671SEric W. Biederman 	security_task_to_inode(task, inode);
167828a6d671SEric W. Biederman 
167928a6d671SEric W. Biederman out:
168028a6d671SEric W. Biederman 	return inode;
168128a6d671SEric W. Biederman 
168228a6d671SEric W. Biederman out_unlock:
168328a6d671SEric W. Biederman 	iput(inode);
168428a6d671SEric W. Biederman 	return NULL;
168528a6d671SEric W. Biederman }
168628a6d671SEric W. Biederman 
16876b4e306aSEric W. Biederman int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
168828a6d671SEric W. Biederman {
16892b0143b5SDavid Howells 	struct inode *inode = d_inode(dentry);
169028a6d671SEric W. Biederman 	struct task_struct *task;
1691c69e8d9cSDavid Howells 	const struct cred *cred;
16920499680aSVasiliy Kulikov 	struct pid_namespace *pid = dentry->d_sb->s_fs_info;
1693c69e8d9cSDavid Howells 
169428a6d671SEric W. Biederman 	generic_fillattr(inode, stat);
169528a6d671SEric W. Biederman 
169628a6d671SEric W. Biederman 	rcu_read_lock();
1697dcb0f222SEric W. Biederman 	stat->uid = GLOBAL_ROOT_UID;
1698dcb0f222SEric W. Biederman 	stat->gid = GLOBAL_ROOT_GID;
169928a6d671SEric W. Biederman 	task = pid_task(proc_pid(inode), PIDTYPE_PID);
170028a6d671SEric W. Biederman 	if (task) {
17010499680aSVasiliy Kulikov 		if (!has_pid_permissions(pid, task, 2)) {
17020499680aSVasiliy Kulikov 			rcu_read_unlock();
17030499680aSVasiliy Kulikov 			/*
17040499680aSVasiliy Kulikov 			 * This doesn't prevent learning whether PID exists,
17050499680aSVasiliy Kulikov 			 * it only makes getattr() consistent with readdir().
17060499680aSVasiliy Kulikov 			 */
17070499680aSVasiliy Kulikov 			return -ENOENT;
17080499680aSVasiliy Kulikov 		}
170928a6d671SEric W. Biederman 		if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
171028a6d671SEric W. Biederman 		    task_dumpable(task)) {
1711c69e8d9cSDavid Howells 			cred = __task_cred(task);
1712c69e8d9cSDavid Howells 			stat->uid = cred->euid;
1713c69e8d9cSDavid Howells 			stat->gid = cred->egid;
171428a6d671SEric W. Biederman 		}
171528a6d671SEric W. Biederman 	}
171628a6d671SEric W. Biederman 	rcu_read_unlock();
171728a6d671SEric W. Biederman 	return 0;
171828a6d671SEric W. Biederman }
171928a6d671SEric W. Biederman 
172028a6d671SEric W. Biederman /* dentry stuff */
172128a6d671SEric W. Biederman 
172228a6d671SEric W. Biederman /*
172328a6d671SEric W. Biederman  *	Exceptional case: normally we are not allowed to unhash a busy
172428a6d671SEric W. Biederman  * directory. In this case, however, we can do it - no aliasing problems
172528a6d671SEric W. Biederman  * due to the way we treat inodes.
172628a6d671SEric W. Biederman  *
172728a6d671SEric W. Biederman  * Rewrite the inode's ownerships here because the owning task may have
172828a6d671SEric W. Biederman  * performed a setuid(), etc.
172928a6d671SEric W. Biederman  *
173028a6d671SEric W. Biederman  * Before the /proc/pid/status file was created the only way to read
173128a6d671SEric W. Biederman  * the effective uid of a /process was to stat /proc/pid.  Reading
173228a6d671SEric W. Biederman  * /proc/pid/status is slow enough that procps and other packages
173328a6d671SEric W. Biederman  * kept stating /proc/pid.  To keep the rules in /proc simple I have
173428a6d671SEric W. Biederman  * made this apply to all per process world readable and executable
173528a6d671SEric W. Biederman  * directories.
173628a6d671SEric W. Biederman  */
17370b728e19SAl Viro int pid_revalidate(struct dentry *dentry, unsigned int flags)
173828a6d671SEric W. Biederman {
173934286d66SNick Piggin 	struct inode *inode;
174034286d66SNick Piggin 	struct task_struct *task;
1741c69e8d9cSDavid Howells 	const struct cred *cred;
1742c69e8d9cSDavid Howells 
17430b728e19SAl Viro 	if (flags & LOOKUP_RCU)
174434286d66SNick Piggin 		return -ECHILD;
174534286d66SNick Piggin 
17462b0143b5SDavid Howells 	inode = d_inode(dentry);
174734286d66SNick Piggin 	task = get_proc_task(inode);
174834286d66SNick Piggin 
174928a6d671SEric W. Biederman 	if (task) {
175028a6d671SEric W. Biederman 		if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
175128a6d671SEric W. Biederman 		    task_dumpable(task)) {
1752c69e8d9cSDavid Howells 			rcu_read_lock();
1753c69e8d9cSDavid Howells 			cred = __task_cred(task);
1754c69e8d9cSDavid Howells 			inode->i_uid = cred->euid;
1755c69e8d9cSDavid Howells 			inode->i_gid = cred->egid;
1756c69e8d9cSDavid Howells 			rcu_read_unlock();
175728a6d671SEric W. Biederman 		} else {
1758dcb0f222SEric W. Biederman 			inode->i_uid = GLOBAL_ROOT_UID;
1759dcb0f222SEric W. Biederman 			inode->i_gid = GLOBAL_ROOT_GID;
176028a6d671SEric W. Biederman 		}
176128a6d671SEric W. Biederman 		inode->i_mode &= ~(S_ISUID | S_ISGID);
176228a6d671SEric W. Biederman 		security_task_to_inode(task, inode);
176328a6d671SEric W. Biederman 		put_task_struct(task);
176428a6d671SEric W. Biederman 		return 1;
176528a6d671SEric W. Biederman 	}
176628a6d671SEric W. Biederman 	return 0;
176728a6d671SEric W. Biederman }
176828a6d671SEric W. Biederman 
1769d855a4b7SOleg Nesterov static inline bool proc_inode_is_dead(struct inode *inode)
1770d855a4b7SOleg Nesterov {
1771d855a4b7SOleg Nesterov 	return !proc_pid(inode)->tasks[PIDTYPE_PID].first;
1772d855a4b7SOleg Nesterov }
1773d855a4b7SOleg Nesterov 
17741dd704b6SDavid Howells int pid_delete_dentry(const struct dentry *dentry)
17751dd704b6SDavid Howells {
17761dd704b6SDavid Howells 	/* Is the task we represent dead?
17771dd704b6SDavid Howells 	 * If so, then don't put the dentry on the lru list,
17781dd704b6SDavid Howells 	 * kill it immediately.
17791dd704b6SDavid Howells 	 */
17802b0143b5SDavid Howells 	return proc_inode_is_dead(d_inode(dentry));
17811dd704b6SDavid Howells }
17821dd704b6SDavid Howells 
17836b4e306aSEric W. Biederman const struct dentry_operations pid_dentry_operations =
178428a6d671SEric W. Biederman {
178528a6d671SEric W. Biederman 	.d_revalidate	= pid_revalidate,
178628a6d671SEric W. Biederman 	.d_delete	= pid_delete_dentry,
178728a6d671SEric W. Biederman };
178828a6d671SEric W. Biederman 
178928a6d671SEric W. Biederman /* Lookups */
179028a6d671SEric W. Biederman 
17911c0d04c9SEric W. Biederman /*
17921c0d04c9SEric W. Biederman  * Fill a directory entry.
17931c0d04c9SEric W. Biederman  *
17941c0d04c9SEric W. Biederman  * If possible create the dcache entry and derive our inode number and
17951c0d04c9SEric W. Biederman  * file type from dcache entry.
17961c0d04c9SEric W. Biederman  *
17971c0d04c9SEric W. Biederman  * Since all of the proc inode numbers are dynamically generated, the inode
17981c0d04c9SEric W. Biederman  * numbers do not exist until the inode is cache.  This means creating the
17991c0d04c9SEric W. Biederman  * the dcache entry in readdir is necessary to keep the inode numbers
18001c0d04c9SEric W. Biederman  * reported by readdir in sync with the inode numbers reported
18011c0d04c9SEric W. Biederman  * by stat.
18021c0d04c9SEric W. Biederman  */
1803f0c3b509SAl Viro bool proc_fill_cache(struct file *file, struct dir_context *ctx,
18046b4e306aSEric W. Biederman 	const char *name, int len,
1805c5141e6dSEric Dumazet 	instantiate_t instantiate, struct task_struct *task, const void *ptr)
180661a28784SEric W. Biederman {
1807f0c3b509SAl Viro 	struct dentry *child, *dir = file->f_path.dentry;
18081df98b8bSAl Viro 	struct qstr qname = QSTR_INIT(name, len);
180961a28784SEric W. Biederman 	struct inode *inode;
18101df98b8bSAl Viro 	unsigned type;
18111df98b8bSAl Viro 	ino_t ino;
181261a28784SEric W. Biederman 
18131df98b8bSAl Viro 	child = d_hash_and_lookup(dir, &qname);
181461a28784SEric W. Biederman 	if (!child) {
18151df98b8bSAl Viro 		child = d_alloc(dir, &qname);
18161df98b8bSAl Viro 		if (!child)
181761a28784SEric W. Biederman 			goto end_instantiate;
18182b0143b5SDavid Howells 		if (instantiate(d_inode(dir), child, task, ptr) < 0) {
18191df98b8bSAl Viro 			dput(child);
18201df98b8bSAl Viro 			goto end_instantiate;
18211df98b8bSAl Viro 		}
18221df98b8bSAl Viro 	}
18232b0143b5SDavid Howells 	inode = d_inode(child);
182461a28784SEric W. Biederman 	ino = inode->i_ino;
182561a28784SEric W. Biederman 	type = inode->i_mode >> 12;
182661a28784SEric W. Biederman 	dput(child);
1827f0c3b509SAl Viro 	return dir_emit(ctx, name, len, ino, type);
18281df98b8bSAl Viro 
18291df98b8bSAl Viro end_instantiate:
18301df98b8bSAl Viro 	return dir_emit(ctx, name, len, 1, DT_UNKNOWN);
183161a28784SEric W. Biederman }
183261a28784SEric W. Biederman 
1833640708a2SPavel Emelyanov /*
1834640708a2SPavel Emelyanov  * dname_to_vma_addr - maps a dentry name into two unsigned longs
1835640708a2SPavel Emelyanov  * which represent vma start and end addresses.
1836640708a2SPavel Emelyanov  */
1837640708a2SPavel Emelyanov static int dname_to_vma_addr(struct dentry *dentry,
1838640708a2SPavel Emelyanov 			     unsigned long *start, unsigned long *end)
1839640708a2SPavel Emelyanov {
1840640708a2SPavel Emelyanov 	if (sscanf(dentry->d_name.name, "%lx-%lx", start, end) != 2)
1841640708a2SPavel Emelyanov 		return -EINVAL;
1842640708a2SPavel Emelyanov 
1843640708a2SPavel Emelyanov 	return 0;
1844640708a2SPavel Emelyanov }
1845640708a2SPavel Emelyanov 
18460b728e19SAl Viro static int map_files_d_revalidate(struct dentry *dentry, unsigned int flags)
1847640708a2SPavel Emelyanov {
1848640708a2SPavel Emelyanov 	unsigned long vm_start, vm_end;
1849640708a2SPavel Emelyanov 	bool exact_vma_exists = false;
1850640708a2SPavel Emelyanov 	struct mm_struct *mm = NULL;
1851640708a2SPavel Emelyanov 	struct task_struct *task;
1852640708a2SPavel Emelyanov 	const struct cred *cred;
1853640708a2SPavel Emelyanov 	struct inode *inode;
1854640708a2SPavel Emelyanov 	int status = 0;
1855640708a2SPavel Emelyanov 
18560b728e19SAl Viro 	if (flags & LOOKUP_RCU)
1857640708a2SPavel Emelyanov 		return -ECHILD;
1858640708a2SPavel Emelyanov 
18592b0143b5SDavid Howells 	inode = d_inode(dentry);
1860640708a2SPavel Emelyanov 	task = get_proc_task(inode);
1861640708a2SPavel Emelyanov 	if (!task)
1862640708a2SPavel Emelyanov 		goto out_notask;
1863640708a2SPavel Emelyanov 
1864*caaee623SJann Horn 	mm = mm_access(task, PTRACE_MODE_READ_FSCREDS);
18652344bec7SCong Wang 	if (IS_ERR_OR_NULL(mm))
1866640708a2SPavel Emelyanov 		goto out;
1867640708a2SPavel Emelyanov 
1868640708a2SPavel Emelyanov 	if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) {
1869640708a2SPavel Emelyanov 		down_read(&mm->mmap_sem);
1870640708a2SPavel Emelyanov 		exact_vma_exists = !!find_exact_vma(mm, vm_start, vm_end);
1871640708a2SPavel Emelyanov 		up_read(&mm->mmap_sem);
1872640708a2SPavel Emelyanov 	}
1873640708a2SPavel Emelyanov 
1874640708a2SPavel Emelyanov 	mmput(mm);
1875640708a2SPavel Emelyanov 
1876640708a2SPavel Emelyanov 	if (exact_vma_exists) {
1877640708a2SPavel Emelyanov 		if (task_dumpable(task)) {
1878640708a2SPavel Emelyanov 			rcu_read_lock();
1879640708a2SPavel Emelyanov 			cred = __task_cred(task);
1880640708a2SPavel Emelyanov 			inode->i_uid = cred->euid;
1881640708a2SPavel Emelyanov 			inode->i_gid = cred->egid;
1882640708a2SPavel Emelyanov 			rcu_read_unlock();
1883640708a2SPavel Emelyanov 		} else {
1884dcb0f222SEric W. Biederman 			inode->i_uid = GLOBAL_ROOT_UID;
1885dcb0f222SEric W. Biederman 			inode->i_gid = GLOBAL_ROOT_GID;
1886640708a2SPavel Emelyanov 		}
1887640708a2SPavel Emelyanov 		security_task_to_inode(task, inode);
1888640708a2SPavel Emelyanov 		status = 1;
1889640708a2SPavel Emelyanov 	}
1890640708a2SPavel Emelyanov 
1891640708a2SPavel Emelyanov out:
1892640708a2SPavel Emelyanov 	put_task_struct(task);
1893640708a2SPavel Emelyanov 
1894640708a2SPavel Emelyanov out_notask:
1895640708a2SPavel Emelyanov 	return status;
1896640708a2SPavel Emelyanov }
1897640708a2SPavel Emelyanov 
1898640708a2SPavel Emelyanov static const struct dentry_operations tid_map_files_dentry_operations = {
1899640708a2SPavel Emelyanov 	.d_revalidate	= map_files_d_revalidate,
1900640708a2SPavel Emelyanov 	.d_delete	= pid_delete_dentry,
1901640708a2SPavel Emelyanov };
1902640708a2SPavel Emelyanov 
19036b255391SAl Viro static int map_files_get_link(struct dentry *dentry, struct path *path)
1904640708a2SPavel Emelyanov {
1905640708a2SPavel Emelyanov 	unsigned long vm_start, vm_end;
1906640708a2SPavel Emelyanov 	struct vm_area_struct *vma;
1907640708a2SPavel Emelyanov 	struct task_struct *task;
1908640708a2SPavel Emelyanov 	struct mm_struct *mm;
1909640708a2SPavel Emelyanov 	int rc;
1910640708a2SPavel Emelyanov 
1911640708a2SPavel Emelyanov 	rc = -ENOENT;
19122b0143b5SDavid Howells 	task = get_proc_task(d_inode(dentry));
1913640708a2SPavel Emelyanov 	if (!task)
1914640708a2SPavel Emelyanov 		goto out;
1915640708a2SPavel Emelyanov 
1916640708a2SPavel Emelyanov 	mm = get_task_mm(task);
1917640708a2SPavel Emelyanov 	put_task_struct(task);
1918640708a2SPavel Emelyanov 	if (!mm)
1919640708a2SPavel Emelyanov 		goto out;
1920640708a2SPavel Emelyanov 
1921640708a2SPavel Emelyanov 	rc = dname_to_vma_addr(dentry, &vm_start, &vm_end);
1922640708a2SPavel Emelyanov 	if (rc)
1923640708a2SPavel Emelyanov 		goto out_mmput;
1924640708a2SPavel Emelyanov 
192570335abbSArtem Fetishev 	rc = -ENOENT;
1926640708a2SPavel Emelyanov 	down_read(&mm->mmap_sem);
1927640708a2SPavel Emelyanov 	vma = find_exact_vma(mm, vm_start, vm_end);
1928640708a2SPavel Emelyanov 	if (vma && vma->vm_file) {
1929640708a2SPavel Emelyanov 		*path = vma->vm_file->f_path;
1930640708a2SPavel Emelyanov 		path_get(path);
1931640708a2SPavel Emelyanov 		rc = 0;
1932640708a2SPavel Emelyanov 	}
1933640708a2SPavel Emelyanov 	up_read(&mm->mmap_sem);
1934640708a2SPavel Emelyanov 
1935640708a2SPavel Emelyanov out_mmput:
1936640708a2SPavel Emelyanov 	mmput(mm);
1937640708a2SPavel Emelyanov out:
1938640708a2SPavel Emelyanov 	return rc;
1939640708a2SPavel Emelyanov }
1940640708a2SPavel Emelyanov 
1941640708a2SPavel Emelyanov struct map_files_info {
19427b540d06SAl Viro 	fmode_t		mode;
1943640708a2SPavel Emelyanov 	unsigned long	len;
1944640708a2SPavel Emelyanov 	unsigned char	name[4*sizeof(long)+2]; /* max: %lx-%lx\0 */
1945640708a2SPavel Emelyanov };
1946640708a2SPavel Emelyanov 
1947bdb4d100SCalvin Owens /*
1948bdb4d100SCalvin Owens  * Only allow CAP_SYS_ADMIN to follow the links, due to concerns about how the
1949bdb4d100SCalvin Owens  * symlinks may be used to bypass permissions on ancestor directories in the
1950bdb4d100SCalvin Owens  * path to the file in question.
1951bdb4d100SCalvin Owens  */
1952bdb4d100SCalvin Owens static const char *
19536b255391SAl Viro proc_map_files_get_link(struct dentry *dentry,
1954fceef393SAl Viro 			struct inode *inode,
1955fceef393SAl Viro 		        struct delayed_call *done)
1956bdb4d100SCalvin Owens {
1957bdb4d100SCalvin Owens 	if (!capable(CAP_SYS_ADMIN))
1958bdb4d100SCalvin Owens 		return ERR_PTR(-EPERM);
1959bdb4d100SCalvin Owens 
1960fceef393SAl Viro 	return proc_pid_get_link(dentry, inode, done);
1961bdb4d100SCalvin Owens }
1962bdb4d100SCalvin Owens 
1963bdb4d100SCalvin Owens /*
19646b255391SAl Viro  * Identical to proc_pid_link_inode_operations except for get_link()
1965bdb4d100SCalvin Owens  */
1966bdb4d100SCalvin Owens static const struct inode_operations proc_map_files_link_inode_operations = {
1967bdb4d100SCalvin Owens 	.readlink	= proc_pid_readlink,
19686b255391SAl Viro 	.get_link	= proc_map_files_get_link,
1969bdb4d100SCalvin Owens 	.setattr	= proc_setattr,
1970bdb4d100SCalvin Owens };
1971bdb4d100SCalvin Owens 
1972c52a47acSAl Viro static int
1973640708a2SPavel Emelyanov proc_map_files_instantiate(struct inode *dir, struct dentry *dentry,
1974640708a2SPavel Emelyanov 			   struct task_struct *task, const void *ptr)
1975640708a2SPavel Emelyanov {
19767b540d06SAl Viro 	fmode_t mode = (fmode_t)(unsigned long)ptr;
1977640708a2SPavel Emelyanov 	struct proc_inode *ei;
1978640708a2SPavel Emelyanov 	struct inode *inode;
1979640708a2SPavel Emelyanov 
1980640708a2SPavel Emelyanov 	inode = proc_pid_make_inode(dir->i_sb, task);
1981640708a2SPavel Emelyanov 	if (!inode)
1982c52a47acSAl Viro 		return -ENOENT;
1983640708a2SPavel Emelyanov 
1984640708a2SPavel Emelyanov 	ei = PROC_I(inode);
19856b255391SAl Viro 	ei->op.proc_get_link = map_files_get_link;
1986640708a2SPavel Emelyanov 
1987bdb4d100SCalvin Owens 	inode->i_op = &proc_map_files_link_inode_operations;
1988640708a2SPavel Emelyanov 	inode->i_size = 64;
1989640708a2SPavel Emelyanov 	inode->i_mode = S_IFLNK;
1990640708a2SPavel Emelyanov 
19917b540d06SAl Viro 	if (mode & FMODE_READ)
1992640708a2SPavel Emelyanov 		inode->i_mode |= S_IRUSR;
19937b540d06SAl Viro 	if (mode & FMODE_WRITE)
1994640708a2SPavel Emelyanov 		inode->i_mode |= S_IWUSR;
1995640708a2SPavel Emelyanov 
1996640708a2SPavel Emelyanov 	d_set_d_op(dentry, &tid_map_files_dentry_operations);
1997640708a2SPavel Emelyanov 	d_add(dentry, inode);
1998640708a2SPavel Emelyanov 
1999c52a47acSAl Viro 	return 0;
2000640708a2SPavel Emelyanov }
2001640708a2SPavel Emelyanov 
2002640708a2SPavel Emelyanov static struct dentry *proc_map_files_lookup(struct inode *dir,
200300cd8dd3SAl Viro 		struct dentry *dentry, unsigned int flags)
2004640708a2SPavel Emelyanov {
2005640708a2SPavel Emelyanov 	unsigned long vm_start, vm_end;
2006640708a2SPavel Emelyanov 	struct vm_area_struct *vma;
2007640708a2SPavel Emelyanov 	struct task_struct *task;
2008c52a47acSAl Viro 	int result;
2009640708a2SPavel Emelyanov 	struct mm_struct *mm;
2010640708a2SPavel Emelyanov 
2011c52a47acSAl Viro 	result = -ENOENT;
2012640708a2SPavel Emelyanov 	task = get_proc_task(dir);
2013640708a2SPavel Emelyanov 	if (!task)
2014640708a2SPavel Emelyanov 		goto out;
2015640708a2SPavel Emelyanov 
2016c52a47acSAl Viro 	result = -EACCES;
2017*caaee623SJann Horn 	if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
2018640708a2SPavel Emelyanov 		goto out_put_task;
2019640708a2SPavel Emelyanov 
2020c52a47acSAl Viro 	result = -ENOENT;
2021640708a2SPavel Emelyanov 	if (dname_to_vma_addr(dentry, &vm_start, &vm_end))
2022eb94cd96SCyrill Gorcunov 		goto out_put_task;
2023640708a2SPavel Emelyanov 
2024640708a2SPavel Emelyanov 	mm = get_task_mm(task);
2025640708a2SPavel Emelyanov 	if (!mm)
2026eb94cd96SCyrill Gorcunov 		goto out_put_task;
2027640708a2SPavel Emelyanov 
2028640708a2SPavel Emelyanov 	down_read(&mm->mmap_sem);
2029640708a2SPavel Emelyanov 	vma = find_exact_vma(mm, vm_start, vm_end);
2030640708a2SPavel Emelyanov 	if (!vma)
2031640708a2SPavel Emelyanov 		goto out_no_vma;
2032640708a2SPavel Emelyanov 
203305f56484SStanislav Kinsbursky 	if (vma->vm_file)
20347b540d06SAl Viro 		result = proc_map_files_instantiate(dir, dentry, task,
20357b540d06SAl Viro 				(void *)(unsigned long)vma->vm_file->f_mode);
2036640708a2SPavel Emelyanov 
2037640708a2SPavel Emelyanov out_no_vma:
2038640708a2SPavel Emelyanov 	up_read(&mm->mmap_sem);
2039640708a2SPavel Emelyanov 	mmput(mm);
2040640708a2SPavel Emelyanov out_put_task:
2041640708a2SPavel Emelyanov 	put_task_struct(task);
2042640708a2SPavel Emelyanov out:
2043c52a47acSAl Viro 	return ERR_PTR(result);
2044640708a2SPavel Emelyanov }
2045640708a2SPavel Emelyanov 
2046640708a2SPavel Emelyanov static const struct inode_operations proc_map_files_inode_operations = {
2047640708a2SPavel Emelyanov 	.lookup		= proc_map_files_lookup,
2048640708a2SPavel Emelyanov 	.permission	= proc_fd_permission,
2049640708a2SPavel Emelyanov 	.setattr	= proc_setattr,
2050640708a2SPavel Emelyanov };
2051640708a2SPavel Emelyanov 
2052640708a2SPavel Emelyanov static int
2053f0c3b509SAl Viro proc_map_files_readdir(struct file *file, struct dir_context *ctx)
2054640708a2SPavel Emelyanov {
2055640708a2SPavel Emelyanov 	struct vm_area_struct *vma;
2056640708a2SPavel Emelyanov 	struct task_struct *task;
2057640708a2SPavel Emelyanov 	struct mm_struct *mm;
2058f0c3b509SAl Viro 	unsigned long nr_files, pos, i;
2059f0c3b509SAl Viro 	struct flex_array *fa = NULL;
2060f0c3b509SAl Viro 	struct map_files_info info;
2061f0c3b509SAl Viro 	struct map_files_info *p;
2062640708a2SPavel Emelyanov 	int ret;
2063640708a2SPavel Emelyanov 
2064640708a2SPavel Emelyanov 	ret = -ENOENT;
2065f0c3b509SAl Viro 	task = get_proc_task(file_inode(file));
2066640708a2SPavel Emelyanov 	if (!task)
2067640708a2SPavel Emelyanov 		goto out;
2068640708a2SPavel Emelyanov 
2069640708a2SPavel Emelyanov 	ret = -EACCES;
2070*caaee623SJann Horn 	if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
2071640708a2SPavel Emelyanov 		goto out_put_task;
2072640708a2SPavel Emelyanov 
2073640708a2SPavel Emelyanov 	ret = 0;
2074f0c3b509SAl Viro 	if (!dir_emit_dots(file, ctx))
2075eb94cd96SCyrill Gorcunov 		goto out_put_task;
2076640708a2SPavel Emelyanov 
2077640708a2SPavel Emelyanov 	mm = get_task_mm(task);
2078640708a2SPavel Emelyanov 	if (!mm)
2079eb94cd96SCyrill Gorcunov 		goto out_put_task;
2080640708a2SPavel Emelyanov 	down_read(&mm->mmap_sem);
2081640708a2SPavel Emelyanov 
2082640708a2SPavel Emelyanov 	nr_files = 0;
2083640708a2SPavel Emelyanov 
2084640708a2SPavel Emelyanov 	/*
2085640708a2SPavel Emelyanov 	 * We need two passes here:
2086640708a2SPavel Emelyanov 	 *
2087640708a2SPavel Emelyanov 	 *  1) Collect vmas of mapped files with mmap_sem taken
2088640708a2SPavel Emelyanov 	 *  2) Release mmap_sem and instantiate entries
2089640708a2SPavel Emelyanov 	 *
2090640708a2SPavel Emelyanov 	 * otherwise we get lockdep complained, since filldir()
2091640708a2SPavel Emelyanov 	 * routine might require mmap_sem taken in might_fault().
2092640708a2SPavel Emelyanov 	 */
2093640708a2SPavel Emelyanov 
2094640708a2SPavel Emelyanov 	for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) {
2095f0c3b509SAl Viro 		if (vma->vm_file && ++pos > ctx->pos)
2096640708a2SPavel Emelyanov 			nr_files++;
2097640708a2SPavel Emelyanov 	}
2098640708a2SPavel Emelyanov 
2099640708a2SPavel Emelyanov 	if (nr_files) {
2100640708a2SPavel Emelyanov 		fa = flex_array_alloc(sizeof(info), nr_files,
2101640708a2SPavel Emelyanov 					GFP_KERNEL);
2102640708a2SPavel Emelyanov 		if (!fa || flex_array_prealloc(fa, 0, nr_files,
2103640708a2SPavel Emelyanov 						GFP_KERNEL)) {
2104640708a2SPavel Emelyanov 			ret = -ENOMEM;
2105640708a2SPavel Emelyanov 			if (fa)
2106640708a2SPavel Emelyanov 				flex_array_free(fa);
2107640708a2SPavel Emelyanov 			up_read(&mm->mmap_sem);
2108640708a2SPavel Emelyanov 			mmput(mm);
2109eb94cd96SCyrill Gorcunov 			goto out_put_task;
2110640708a2SPavel Emelyanov 		}
2111640708a2SPavel Emelyanov 		for (i = 0, vma = mm->mmap, pos = 2; vma;
2112640708a2SPavel Emelyanov 				vma = vma->vm_next) {
2113640708a2SPavel Emelyanov 			if (!vma->vm_file)
2114640708a2SPavel Emelyanov 				continue;
2115f0c3b509SAl Viro 			if (++pos <= ctx->pos)
2116640708a2SPavel Emelyanov 				continue;
2117640708a2SPavel Emelyanov 
21187b540d06SAl Viro 			info.mode = vma->vm_file->f_mode;
2119640708a2SPavel Emelyanov 			info.len = snprintf(info.name,
2120640708a2SPavel Emelyanov 					sizeof(info.name), "%lx-%lx",
2121640708a2SPavel Emelyanov 					vma->vm_start, vma->vm_end);
2122640708a2SPavel Emelyanov 			if (flex_array_put(fa, i++, &info, GFP_KERNEL))
2123640708a2SPavel Emelyanov 				BUG();
2124640708a2SPavel Emelyanov 		}
2125640708a2SPavel Emelyanov 	}
2126640708a2SPavel Emelyanov 	up_read(&mm->mmap_sem);
2127640708a2SPavel Emelyanov 
2128640708a2SPavel Emelyanov 	for (i = 0; i < nr_files; i++) {
2129640708a2SPavel Emelyanov 		p = flex_array_get(fa, i);
2130f0c3b509SAl Viro 		if (!proc_fill_cache(file, ctx,
2131640708a2SPavel Emelyanov 				      p->name, p->len,
2132640708a2SPavel Emelyanov 				      proc_map_files_instantiate,
21337b540d06SAl Viro 				      task,
2134f0c3b509SAl Viro 				      (void *)(unsigned long)p->mode))
2135640708a2SPavel Emelyanov 			break;
2136f0c3b509SAl Viro 		ctx->pos++;
2137640708a2SPavel Emelyanov 	}
2138640708a2SPavel Emelyanov 	if (fa)
2139640708a2SPavel Emelyanov 		flex_array_free(fa);
2140640708a2SPavel Emelyanov 	mmput(mm);
2141640708a2SPavel Emelyanov 
2142640708a2SPavel Emelyanov out_put_task:
2143640708a2SPavel Emelyanov 	put_task_struct(task);
2144640708a2SPavel Emelyanov out:
2145640708a2SPavel Emelyanov 	return ret;
2146640708a2SPavel Emelyanov }
2147640708a2SPavel Emelyanov 
2148640708a2SPavel Emelyanov static const struct file_operations proc_map_files_operations = {
2149640708a2SPavel Emelyanov 	.read		= generic_read_dir,
2150f0c3b509SAl Viro 	.iterate	= proc_map_files_readdir,
2151640708a2SPavel Emelyanov 	.llseek		= default_llseek,
2152640708a2SPavel Emelyanov };
2153640708a2SPavel Emelyanov 
215448f6a7a5SPavel Emelyanov struct timers_private {
215548f6a7a5SPavel Emelyanov 	struct pid *pid;
215648f6a7a5SPavel Emelyanov 	struct task_struct *task;
215748f6a7a5SPavel Emelyanov 	struct sighand_struct *sighand;
215857b8015eSPavel Emelyanov 	struct pid_namespace *ns;
215948f6a7a5SPavel Emelyanov 	unsigned long flags;
216048f6a7a5SPavel Emelyanov };
216148f6a7a5SPavel Emelyanov 
216248f6a7a5SPavel Emelyanov static void *timers_start(struct seq_file *m, loff_t *pos)
216348f6a7a5SPavel Emelyanov {
216448f6a7a5SPavel Emelyanov 	struct timers_private *tp = m->private;
216548f6a7a5SPavel Emelyanov 
216648f6a7a5SPavel Emelyanov 	tp->task = get_pid_task(tp->pid, PIDTYPE_PID);
216748f6a7a5SPavel Emelyanov 	if (!tp->task)
216848f6a7a5SPavel Emelyanov 		return ERR_PTR(-ESRCH);
216948f6a7a5SPavel Emelyanov 
217048f6a7a5SPavel Emelyanov 	tp->sighand = lock_task_sighand(tp->task, &tp->flags);
217148f6a7a5SPavel Emelyanov 	if (!tp->sighand)
217248f6a7a5SPavel Emelyanov 		return ERR_PTR(-ESRCH);
217348f6a7a5SPavel Emelyanov 
217448f6a7a5SPavel Emelyanov 	return seq_list_start(&tp->task->signal->posix_timers, *pos);
217548f6a7a5SPavel Emelyanov }
217648f6a7a5SPavel Emelyanov 
217748f6a7a5SPavel Emelyanov static void *timers_next(struct seq_file *m, void *v, loff_t *pos)
217848f6a7a5SPavel Emelyanov {
217948f6a7a5SPavel Emelyanov 	struct timers_private *tp = m->private;
218048f6a7a5SPavel Emelyanov 	return seq_list_next(v, &tp->task->signal->posix_timers, pos);
218148f6a7a5SPavel Emelyanov }
218248f6a7a5SPavel Emelyanov 
218348f6a7a5SPavel Emelyanov static void timers_stop(struct seq_file *m, void *v)
218448f6a7a5SPavel Emelyanov {
218548f6a7a5SPavel Emelyanov 	struct timers_private *tp = m->private;
218648f6a7a5SPavel Emelyanov 
218748f6a7a5SPavel Emelyanov 	if (tp->sighand) {
218848f6a7a5SPavel Emelyanov 		unlock_task_sighand(tp->task, &tp->flags);
218948f6a7a5SPavel Emelyanov 		tp->sighand = NULL;
219048f6a7a5SPavel Emelyanov 	}
219148f6a7a5SPavel Emelyanov 
219248f6a7a5SPavel Emelyanov 	if (tp->task) {
219348f6a7a5SPavel Emelyanov 		put_task_struct(tp->task);
219448f6a7a5SPavel Emelyanov 		tp->task = NULL;
219548f6a7a5SPavel Emelyanov 	}
219648f6a7a5SPavel Emelyanov }
219748f6a7a5SPavel Emelyanov 
219848f6a7a5SPavel Emelyanov static int show_timer(struct seq_file *m, void *v)
219948f6a7a5SPavel Emelyanov {
220048f6a7a5SPavel Emelyanov 	struct k_itimer *timer;
220157b8015eSPavel Emelyanov 	struct timers_private *tp = m->private;
220257b8015eSPavel Emelyanov 	int notify;
2203cedbccabSAlexey Dobriyan 	static const char * const nstr[] = {
220457b8015eSPavel Emelyanov 		[SIGEV_SIGNAL] = "signal",
220557b8015eSPavel Emelyanov 		[SIGEV_NONE] = "none",
220657b8015eSPavel Emelyanov 		[SIGEV_THREAD] = "thread",
220757b8015eSPavel Emelyanov 	};
220848f6a7a5SPavel Emelyanov 
220948f6a7a5SPavel Emelyanov 	timer = list_entry((struct list_head *)v, struct k_itimer, list);
221057b8015eSPavel Emelyanov 	notify = timer->it_sigev_notify;
221157b8015eSPavel Emelyanov 
221248f6a7a5SPavel Emelyanov 	seq_printf(m, "ID: %d\n", timer->it_id);
221325ce3191SJoe Perches 	seq_printf(m, "signal: %d/%p\n",
221425ce3191SJoe Perches 		   timer->sigq->info.si_signo,
221557b8015eSPavel Emelyanov 		   timer->sigq->info.si_value.sival_ptr);
221657b8015eSPavel Emelyanov 	seq_printf(m, "notify: %s/%s.%d\n",
221757b8015eSPavel Emelyanov 		   nstr[notify & ~SIGEV_THREAD_ID],
221857b8015eSPavel Emelyanov 		   (notify & SIGEV_THREAD_ID) ? "tid" : "pid",
221957b8015eSPavel Emelyanov 		   pid_nr_ns(timer->it_pid, tp->ns));
222015ef0298SPavel Tikhomirov 	seq_printf(m, "ClockID: %d\n", timer->it_clock);
222148f6a7a5SPavel Emelyanov 
222248f6a7a5SPavel Emelyanov 	return 0;
222348f6a7a5SPavel Emelyanov }
222448f6a7a5SPavel Emelyanov 
222548f6a7a5SPavel Emelyanov static const struct seq_operations proc_timers_seq_ops = {
222648f6a7a5SPavel Emelyanov 	.start	= timers_start,
222748f6a7a5SPavel Emelyanov 	.next	= timers_next,
222848f6a7a5SPavel Emelyanov 	.stop	= timers_stop,
222948f6a7a5SPavel Emelyanov 	.show	= show_timer,
223048f6a7a5SPavel Emelyanov };
223148f6a7a5SPavel Emelyanov 
223248f6a7a5SPavel Emelyanov static int proc_timers_open(struct inode *inode, struct file *file)
223348f6a7a5SPavel Emelyanov {
223448f6a7a5SPavel Emelyanov 	struct timers_private *tp;
223548f6a7a5SPavel Emelyanov 
223648f6a7a5SPavel Emelyanov 	tp = __seq_open_private(file, &proc_timers_seq_ops,
223748f6a7a5SPavel Emelyanov 			sizeof(struct timers_private));
223848f6a7a5SPavel Emelyanov 	if (!tp)
223948f6a7a5SPavel Emelyanov 		return -ENOMEM;
224048f6a7a5SPavel Emelyanov 
224148f6a7a5SPavel Emelyanov 	tp->pid = proc_pid(inode);
224257b8015eSPavel Emelyanov 	tp->ns = inode->i_sb->s_fs_info;
224348f6a7a5SPavel Emelyanov 	return 0;
224448f6a7a5SPavel Emelyanov }
224548f6a7a5SPavel Emelyanov 
224648f6a7a5SPavel Emelyanov static const struct file_operations proc_timers_operations = {
224748f6a7a5SPavel Emelyanov 	.open		= proc_timers_open,
224848f6a7a5SPavel Emelyanov 	.read		= seq_read,
224948f6a7a5SPavel Emelyanov 	.llseek		= seq_lseek,
225048f6a7a5SPavel Emelyanov 	.release	= seq_release_private,
225148f6a7a5SPavel Emelyanov };
2252640708a2SPavel Emelyanov 
2253c52a47acSAl Viro static int proc_pident_instantiate(struct inode *dir,
2254c5141e6dSEric Dumazet 	struct dentry *dentry, struct task_struct *task, const void *ptr)
2255444ceed8SEric W. Biederman {
2256c5141e6dSEric Dumazet 	const struct pid_entry *p = ptr;
2257444ceed8SEric W. Biederman 	struct inode *inode;
2258444ceed8SEric W. Biederman 	struct proc_inode *ei;
2259444ceed8SEric W. Biederman 
226061a28784SEric W. Biederman 	inode = proc_pid_make_inode(dir->i_sb, task);
2261444ceed8SEric W. Biederman 	if (!inode)
2262444ceed8SEric W. Biederman 		goto out;
2263444ceed8SEric W. Biederman 
2264444ceed8SEric W. Biederman 	ei = PROC_I(inode);
2265444ceed8SEric W. Biederman 	inode->i_mode = p->mode;
2266444ceed8SEric W. Biederman 	if (S_ISDIR(inode->i_mode))
2267bfe86848SMiklos Szeredi 		set_nlink(inode, 2);	/* Use getattr to fix if necessary */
2268444ceed8SEric W. Biederman 	if (p->iop)
2269444ceed8SEric W. Biederman 		inode->i_op = p->iop;
2270444ceed8SEric W. Biederman 	if (p->fop)
2271444ceed8SEric W. Biederman 		inode->i_fop = p->fop;
2272444ceed8SEric W. Biederman 	ei->op = p->op;
2273fb045adbSNick Piggin 	d_set_d_op(dentry, &pid_dentry_operations);
2274444ceed8SEric W. Biederman 	d_add(dentry, inode);
2275444ceed8SEric W. Biederman 	/* Close the race of the process dying before we return the dentry */
22760b728e19SAl Viro 	if (pid_revalidate(dentry, 0))
2277c52a47acSAl Viro 		return 0;
2278444ceed8SEric W. Biederman out:
2279c52a47acSAl Viro 	return -ENOENT;
2280444ceed8SEric W. Biederman }
2281444ceed8SEric W. Biederman 
22821da177e4SLinus Torvalds static struct dentry *proc_pident_lookup(struct inode *dir,
22831da177e4SLinus Torvalds 					 struct dentry *dentry,
2284c5141e6dSEric Dumazet 					 const struct pid_entry *ents,
22857bcd6b0eSEric W. Biederman 					 unsigned int nents)
22861da177e4SLinus Torvalds {
2287c52a47acSAl Viro 	int error;
228899f89551SEric W. Biederman 	struct task_struct *task = get_proc_task(dir);
2289c5141e6dSEric Dumazet 	const struct pid_entry *p, *last;
22901da177e4SLinus Torvalds 
2291c52a47acSAl Viro 	error = -ENOENT;
22921da177e4SLinus Torvalds 
229399f89551SEric W. Biederman 	if (!task)
229499f89551SEric W. Biederman 		goto out_no_task;
22951da177e4SLinus Torvalds 
229620cdc894SEric W. Biederman 	/*
229720cdc894SEric W. Biederman 	 * Yes, it does not scale. And it should not. Don't add
229820cdc894SEric W. Biederman 	 * new entries into /proc/<tgid>/ without very good reasons.
229920cdc894SEric W. Biederman 	 */
23007bcd6b0eSEric W. Biederman 	last = &ents[nents - 1];
23017bcd6b0eSEric W. Biederman 	for (p = ents; p <= last; p++) {
23021da177e4SLinus Torvalds 		if (p->len != dentry->d_name.len)
23031da177e4SLinus Torvalds 			continue;
23041da177e4SLinus Torvalds 		if (!memcmp(dentry->d_name.name, p->name, p->len))
23051da177e4SLinus Torvalds 			break;
23061da177e4SLinus Torvalds 	}
23077bcd6b0eSEric W. Biederman 	if (p > last)
23081da177e4SLinus Torvalds 		goto out;
23091da177e4SLinus Torvalds 
2310444ceed8SEric W. Biederman 	error = proc_pident_instantiate(dir, dentry, task, p);
23111da177e4SLinus Torvalds out:
231299f89551SEric W. Biederman 	put_task_struct(task);
231399f89551SEric W. Biederman out_no_task:
2314c52a47acSAl Viro 	return ERR_PTR(error);
23151da177e4SLinus Torvalds }
23161da177e4SLinus Torvalds 
2317f0c3b509SAl Viro static int proc_pident_readdir(struct file *file, struct dir_context *ctx,
2318c5141e6dSEric Dumazet 		const struct pid_entry *ents, unsigned int nents)
231928a6d671SEric W. Biederman {
2320f0c3b509SAl Viro 	struct task_struct *task = get_proc_task(file_inode(file));
2321f0c3b509SAl Viro 	const struct pid_entry *p;
232228a6d671SEric W. Biederman 
232328a6d671SEric W. Biederman 	if (!task)
2324f0c3b509SAl Viro 		return -ENOENT;
232528a6d671SEric W. Biederman 
2326f0c3b509SAl Viro 	if (!dir_emit_dots(file, ctx))
232728a6d671SEric W. Biederman 		goto out;
23281da177e4SLinus Torvalds 
2329f0c3b509SAl Viro 	if (ctx->pos >= nents + 2)
2330f0c3b509SAl Viro 		goto out;
2331f0c3b509SAl Viro 
2332f0c3b509SAl Viro 	for (p = ents + (ctx->pos - 2); p <= ents + nents - 1; p++) {
2333f0c3b509SAl Viro 		if (!proc_fill_cache(file, ctx, p->name, p->len,
2334f0c3b509SAl Viro 				proc_pident_instantiate, task, p))
2335f0c3b509SAl Viro 			break;
2336f0c3b509SAl Viro 		ctx->pos++;
2337f0c3b509SAl Viro 	}
233828a6d671SEric W. Biederman out:
233961a28784SEric W. Biederman 	put_task_struct(task);
2340f0c3b509SAl Viro 	return 0;
23411da177e4SLinus Torvalds }
23421da177e4SLinus Torvalds 
23431da177e4SLinus Torvalds #ifdef CONFIG_SECURITY
234428a6d671SEric W. Biederman static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
234528a6d671SEric W. Biederman 				  size_t count, loff_t *ppos)
234628a6d671SEric W. Biederman {
2347496ad9aaSAl Viro 	struct inode * inode = file_inode(file);
234804ff9708SAl Viro 	char *p = NULL;
234928a6d671SEric W. Biederman 	ssize_t length;
235028a6d671SEric W. Biederman 	struct task_struct *task = get_proc_task(inode);
235128a6d671SEric W. Biederman 
235228a6d671SEric W. Biederman 	if (!task)
235304ff9708SAl Viro 		return -ESRCH;
235428a6d671SEric W. Biederman 
235528a6d671SEric W. Biederman 	length = security_getprocattr(task,
23562fddfeefSJosef "Jeff" Sipek 				      (char*)file->f_path.dentry->d_name.name,
235704ff9708SAl Viro 				      &p);
235828a6d671SEric W. Biederman 	put_task_struct(task);
235904ff9708SAl Viro 	if (length > 0)
236004ff9708SAl Viro 		length = simple_read_from_buffer(buf, count, ppos, p, length);
236104ff9708SAl Viro 	kfree(p);
236228a6d671SEric W. Biederman 	return length;
236328a6d671SEric W. Biederman }
236428a6d671SEric W. Biederman 
236528a6d671SEric W. Biederman static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
236628a6d671SEric W. Biederman 				   size_t count, loff_t *ppos)
236728a6d671SEric W. Biederman {
2368496ad9aaSAl Viro 	struct inode * inode = file_inode(file);
2369bb646cdbSAl Viro 	void *page;
237028a6d671SEric W. Biederman 	ssize_t length;
237128a6d671SEric W. Biederman 	struct task_struct *task = get_proc_task(inode);
237228a6d671SEric W. Biederman 
237328a6d671SEric W. Biederman 	length = -ESRCH;
237428a6d671SEric W. Biederman 	if (!task)
237528a6d671SEric W. Biederman 		goto out_no_task;
237628a6d671SEric W. Biederman 	if (count > PAGE_SIZE)
237728a6d671SEric W. Biederman 		count = PAGE_SIZE;
237828a6d671SEric W. Biederman 
237928a6d671SEric W. Biederman 	/* No partial writes. */
238028a6d671SEric W. Biederman 	length = -EINVAL;
238128a6d671SEric W. Biederman 	if (*ppos != 0)
238228a6d671SEric W. Biederman 		goto out;
238328a6d671SEric W. Biederman 
2384bb646cdbSAl Viro 	page = memdup_user(buf, count);
2385bb646cdbSAl Viro 	if (IS_ERR(page)) {
2386bb646cdbSAl Viro 		length = PTR_ERR(page);
238728a6d671SEric W. Biederman 		goto out;
2388bb646cdbSAl Viro 	}
238928a6d671SEric W. Biederman 
2390107db7c7SDavid Howells 	/* Guard against adverse ptrace interaction */
23919b1bf12dSKOSAKI Motohiro 	length = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
2392107db7c7SDavid Howells 	if (length < 0)
2393107db7c7SDavid Howells 		goto out_free;
2394107db7c7SDavid Howells 
239528a6d671SEric W. Biederman 	length = security_setprocattr(task,
23962fddfeefSJosef "Jeff" Sipek 				      (char*)file->f_path.dentry->d_name.name,
2397bb646cdbSAl Viro 				      page, count);
23989b1bf12dSKOSAKI Motohiro 	mutex_unlock(&task->signal->cred_guard_mutex);
239928a6d671SEric W. Biederman out_free:
2400bb646cdbSAl Viro 	kfree(page);
240128a6d671SEric W. Biederman out:
240228a6d671SEric W. Biederman 	put_task_struct(task);
240328a6d671SEric W. Biederman out_no_task:
240428a6d671SEric W. Biederman 	return length;
240528a6d671SEric W. Biederman }
240628a6d671SEric W. Biederman 
240700977a59SArjan van de Ven static const struct file_operations proc_pid_attr_operations = {
240828a6d671SEric W. Biederman 	.read		= proc_pid_attr_read,
240928a6d671SEric W. Biederman 	.write		= proc_pid_attr_write,
241087df8424SArnd Bergmann 	.llseek		= generic_file_llseek,
241128a6d671SEric W. Biederman };
241228a6d671SEric W. Biederman 
2413c5141e6dSEric Dumazet static const struct pid_entry attr_dir_stuff[] = {
2414631f9c18SAlexey Dobriyan 	REG("current",    S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2415631f9c18SAlexey Dobriyan 	REG("prev",       S_IRUGO,	   proc_pid_attr_operations),
2416631f9c18SAlexey Dobriyan 	REG("exec",       S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2417631f9c18SAlexey Dobriyan 	REG("fscreate",   S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2418631f9c18SAlexey Dobriyan 	REG("keycreate",  S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2419631f9c18SAlexey Dobriyan 	REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
242028a6d671SEric W. Biederman };
242128a6d671SEric W. Biederman 
2422f0c3b509SAl Viro static int proc_attr_dir_readdir(struct file *file, struct dir_context *ctx)
24231da177e4SLinus Torvalds {
2424f0c3b509SAl Viro 	return proc_pident_readdir(file, ctx,
242572d9dcfcSEric W. Biederman 				   attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
24261da177e4SLinus Torvalds }
24271da177e4SLinus Torvalds 
242800977a59SArjan van de Ven static const struct file_operations proc_attr_dir_operations = {
24291da177e4SLinus Torvalds 	.read		= generic_read_dir,
2430f0c3b509SAl Viro 	.iterate	= proc_attr_dir_readdir,
24316038f373SArnd Bergmann 	.llseek		= default_llseek,
24321da177e4SLinus Torvalds };
24331da177e4SLinus Torvalds 
243472d9dcfcSEric W. Biederman static struct dentry *proc_attr_dir_lookup(struct inode *dir,
243500cd8dd3SAl Viro 				struct dentry *dentry, unsigned int flags)
24361da177e4SLinus Torvalds {
24377bcd6b0eSEric W. Biederman 	return proc_pident_lookup(dir, dentry,
24387bcd6b0eSEric W. Biederman 				  attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
24391da177e4SLinus Torvalds }
24401da177e4SLinus Torvalds 
2441c5ef1c42SArjan van de Ven static const struct inode_operations proc_attr_dir_inode_operations = {
244272d9dcfcSEric W. Biederman 	.lookup		= proc_attr_dir_lookup,
244399f89551SEric W. Biederman 	.getattr	= pid_getattr,
24446d76fa58SLinus Torvalds 	.setattr	= proc_setattr,
24451da177e4SLinus Torvalds };
24461da177e4SLinus Torvalds 
24471da177e4SLinus Torvalds #endif
24481da177e4SLinus Torvalds 
2449698ba7b5SChristoph Hellwig #ifdef CONFIG_ELF_CORE
24503cb4a0bbSKawai, Hidehiro static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
24513cb4a0bbSKawai, Hidehiro 					 size_t count, loff_t *ppos)
24523cb4a0bbSKawai, Hidehiro {
2453496ad9aaSAl Viro 	struct task_struct *task = get_proc_task(file_inode(file));
24543cb4a0bbSKawai, Hidehiro 	struct mm_struct *mm;
24553cb4a0bbSKawai, Hidehiro 	char buffer[PROC_NUMBUF];
24563cb4a0bbSKawai, Hidehiro 	size_t len;
24573cb4a0bbSKawai, Hidehiro 	int ret;
24583cb4a0bbSKawai, Hidehiro 
24593cb4a0bbSKawai, Hidehiro 	if (!task)
24603cb4a0bbSKawai, Hidehiro 		return -ESRCH;
24613cb4a0bbSKawai, Hidehiro 
24623cb4a0bbSKawai, Hidehiro 	ret = 0;
24633cb4a0bbSKawai, Hidehiro 	mm = get_task_mm(task);
24643cb4a0bbSKawai, Hidehiro 	if (mm) {
24653cb4a0bbSKawai, Hidehiro 		len = snprintf(buffer, sizeof(buffer), "%08lx\n",
24663cb4a0bbSKawai, Hidehiro 			       ((mm->flags & MMF_DUMP_FILTER_MASK) >>
24673cb4a0bbSKawai, Hidehiro 				MMF_DUMP_FILTER_SHIFT));
24683cb4a0bbSKawai, Hidehiro 		mmput(mm);
24693cb4a0bbSKawai, Hidehiro 		ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
24703cb4a0bbSKawai, Hidehiro 	}
24713cb4a0bbSKawai, Hidehiro 
24723cb4a0bbSKawai, Hidehiro 	put_task_struct(task);
24733cb4a0bbSKawai, Hidehiro 
24743cb4a0bbSKawai, Hidehiro 	return ret;
24753cb4a0bbSKawai, Hidehiro }
24763cb4a0bbSKawai, Hidehiro 
24773cb4a0bbSKawai, Hidehiro static ssize_t proc_coredump_filter_write(struct file *file,
24783cb4a0bbSKawai, Hidehiro 					  const char __user *buf,
24793cb4a0bbSKawai, Hidehiro 					  size_t count,
24803cb4a0bbSKawai, Hidehiro 					  loff_t *ppos)
24813cb4a0bbSKawai, Hidehiro {
24823cb4a0bbSKawai, Hidehiro 	struct task_struct *task;
24833cb4a0bbSKawai, Hidehiro 	struct mm_struct *mm;
24843cb4a0bbSKawai, Hidehiro 	unsigned int val;
24853cb4a0bbSKawai, Hidehiro 	int ret;
24863cb4a0bbSKawai, Hidehiro 	int i;
24873cb4a0bbSKawai, Hidehiro 	unsigned long mask;
24883cb4a0bbSKawai, Hidehiro 
2489774636e1SAlexey Dobriyan 	ret = kstrtouint_from_user(buf, count, 0, &val);
2490774636e1SAlexey Dobriyan 	if (ret < 0)
2491774636e1SAlexey Dobriyan 		return ret;
24923cb4a0bbSKawai, Hidehiro 
24933cb4a0bbSKawai, Hidehiro 	ret = -ESRCH;
2494496ad9aaSAl Viro 	task = get_proc_task(file_inode(file));
24953cb4a0bbSKawai, Hidehiro 	if (!task)
24963cb4a0bbSKawai, Hidehiro 		goto out_no_task;
24973cb4a0bbSKawai, Hidehiro 
24983cb4a0bbSKawai, Hidehiro 	mm = get_task_mm(task);
24993cb4a0bbSKawai, Hidehiro 	if (!mm)
25003cb4a0bbSKawai, Hidehiro 		goto out_no_mm;
250141a0c249SColin Ian King 	ret = 0;
25023cb4a0bbSKawai, Hidehiro 
25033cb4a0bbSKawai, Hidehiro 	for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
25043cb4a0bbSKawai, Hidehiro 		if (val & mask)
25053cb4a0bbSKawai, Hidehiro 			set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
25063cb4a0bbSKawai, Hidehiro 		else
25073cb4a0bbSKawai, Hidehiro 			clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
25083cb4a0bbSKawai, Hidehiro 	}
25093cb4a0bbSKawai, Hidehiro 
25103cb4a0bbSKawai, Hidehiro 	mmput(mm);
25113cb4a0bbSKawai, Hidehiro  out_no_mm:
25123cb4a0bbSKawai, Hidehiro 	put_task_struct(task);
25133cb4a0bbSKawai, Hidehiro  out_no_task:
2514774636e1SAlexey Dobriyan 	if (ret < 0)
25153cb4a0bbSKawai, Hidehiro 		return ret;
2516774636e1SAlexey Dobriyan 	return count;
25173cb4a0bbSKawai, Hidehiro }
25183cb4a0bbSKawai, Hidehiro 
25193cb4a0bbSKawai, Hidehiro static const struct file_operations proc_coredump_filter_operations = {
25203cb4a0bbSKawai, Hidehiro 	.read		= proc_coredump_filter_read,
25213cb4a0bbSKawai, Hidehiro 	.write		= proc_coredump_filter_write,
252287df8424SArnd Bergmann 	.llseek		= generic_file_llseek,
25233cb4a0bbSKawai, Hidehiro };
25243cb4a0bbSKawai, Hidehiro #endif
25253cb4a0bbSKawai, Hidehiro 
2526aba76fdbSAndrew Morton #ifdef CONFIG_TASK_IO_ACCOUNTING
252719aadc98SAlexey Dobriyan static int do_io_accounting(struct task_struct *task, struct seq_file *m, int whole)
2528aba76fdbSAndrew Morton {
2529940389b8SAndrea Righi 	struct task_io_accounting acct = task->ioac;
2530297c5d92SAndrea Righi 	unsigned long flags;
2531293eb1e7SVasiliy Kulikov 	int result;
2532297c5d92SAndrea Righi 
2533293eb1e7SVasiliy Kulikov 	result = mutex_lock_killable(&task->signal->cred_guard_mutex);
2534293eb1e7SVasiliy Kulikov 	if (result)
2535293eb1e7SVasiliy Kulikov 		return result;
2536293eb1e7SVasiliy Kulikov 
2537*caaee623SJann Horn 	if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) {
2538293eb1e7SVasiliy Kulikov 		result = -EACCES;
2539293eb1e7SVasiliy Kulikov 		goto out_unlock;
2540293eb1e7SVasiliy Kulikov 	}
25411d1221f3SVasiliy Kulikov 
25425995477aSAndrea Righi 	if (whole && lock_task_sighand(task, &flags)) {
2543b2d002dbSAndrea Righi 		struct task_struct *t = task;
2544297c5d92SAndrea Righi 
25455995477aSAndrea Righi 		task_io_accounting_add(&acct, &task->signal->ioac);
25465995477aSAndrea Righi 		while_each_thread(task, t)
25475995477aSAndrea Righi 			task_io_accounting_add(&acct, &t->ioac);
2548297c5d92SAndrea Righi 
2549297c5d92SAndrea Righi 		unlock_task_sighand(task, &flags);
2550297c5d92SAndrea Righi 	}
255125ce3191SJoe Perches 	seq_printf(m,
2552aba76fdbSAndrew Morton 		   "rchar: %llu\n"
2553aba76fdbSAndrew Morton 		   "wchar: %llu\n"
2554aba76fdbSAndrew Morton 		   "syscr: %llu\n"
2555aba76fdbSAndrew Morton 		   "syscw: %llu\n"
2556aba76fdbSAndrew Morton 		   "read_bytes: %llu\n"
2557aba76fdbSAndrew Morton 		   "write_bytes: %llu\n"
2558aba76fdbSAndrew Morton 		   "cancelled_write_bytes: %llu\n",
25597c44319dSAlexander Beregalov 		   (unsigned long long)acct.rchar,
25607c44319dSAlexander Beregalov 		   (unsigned long long)acct.wchar,
25617c44319dSAlexander Beregalov 		   (unsigned long long)acct.syscr,
25627c44319dSAlexander Beregalov 		   (unsigned long long)acct.syscw,
25637c44319dSAlexander Beregalov 		   (unsigned long long)acct.read_bytes,
25647c44319dSAlexander Beregalov 		   (unsigned long long)acct.write_bytes,
25657c44319dSAlexander Beregalov 		   (unsigned long long)acct.cancelled_write_bytes);
256625ce3191SJoe Perches 	result = 0;
256725ce3191SJoe Perches 
2568293eb1e7SVasiliy Kulikov out_unlock:
2569293eb1e7SVasiliy Kulikov 	mutex_unlock(&task->signal->cred_guard_mutex);
2570293eb1e7SVasiliy Kulikov 	return result;
2571aba76fdbSAndrew Morton }
2572297c5d92SAndrea Righi 
257319aadc98SAlexey Dobriyan static int proc_tid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
257419aadc98SAlexey Dobriyan 				  struct pid *pid, struct task_struct *task)
2575297c5d92SAndrea Righi {
257619aadc98SAlexey Dobriyan 	return do_io_accounting(task, m, 0);
2577297c5d92SAndrea Righi }
2578297c5d92SAndrea Righi 
257919aadc98SAlexey Dobriyan static int proc_tgid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
258019aadc98SAlexey Dobriyan 				   struct pid *pid, struct task_struct *task)
2581297c5d92SAndrea Righi {
258219aadc98SAlexey Dobriyan 	return do_io_accounting(task, m, 1);
2583297c5d92SAndrea Righi }
2584297c5d92SAndrea Righi #endif /* CONFIG_TASK_IO_ACCOUNTING */
2585aba76fdbSAndrew Morton 
258622d917d8SEric W. Biederman #ifdef CONFIG_USER_NS
258722d917d8SEric W. Biederman static int proc_id_map_open(struct inode *inode, struct file *file,
2588ccf94f1bSFabian Frederick 	const struct seq_operations *seq_ops)
258922d917d8SEric W. Biederman {
259022d917d8SEric W. Biederman 	struct user_namespace *ns = NULL;
259122d917d8SEric W. Biederman 	struct task_struct *task;
259222d917d8SEric W. Biederman 	struct seq_file *seq;
259322d917d8SEric W. Biederman 	int ret = -EINVAL;
259422d917d8SEric W. Biederman 
259522d917d8SEric W. Biederman 	task = get_proc_task(inode);
259622d917d8SEric W. Biederman 	if (task) {
259722d917d8SEric W. Biederman 		rcu_read_lock();
259822d917d8SEric W. Biederman 		ns = get_user_ns(task_cred_xxx(task, user_ns));
259922d917d8SEric W. Biederman 		rcu_read_unlock();
260022d917d8SEric W. Biederman 		put_task_struct(task);
260122d917d8SEric W. Biederman 	}
260222d917d8SEric W. Biederman 	if (!ns)
260322d917d8SEric W. Biederman 		goto err;
260422d917d8SEric W. Biederman 
260522d917d8SEric W. Biederman 	ret = seq_open(file, seq_ops);
260622d917d8SEric W. Biederman 	if (ret)
260722d917d8SEric W. Biederman 		goto err_put_ns;
260822d917d8SEric W. Biederman 
260922d917d8SEric W. Biederman 	seq = file->private_data;
261022d917d8SEric W. Biederman 	seq->private = ns;
261122d917d8SEric W. Biederman 
261222d917d8SEric W. Biederman 	return 0;
261322d917d8SEric W. Biederman err_put_ns:
261422d917d8SEric W. Biederman 	put_user_ns(ns);
261522d917d8SEric W. Biederman err:
261622d917d8SEric W. Biederman 	return ret;
261722d917d8SEric W. Biederman }
261822d917d8SEric W. Biederman 
261922d917d8SEric W. Biederman static int proc_id_map_release(struct inode *inode, struct file *file)
262022d917d8SEric W. Biederman {
262122d917d8SEric W. Biederman 	struct seq_file *seq = file->private_data;
262222d917d8SEric W. Biederman 	struct user_namespace *ns = seq->private;
262322d917d8SEric W. Biederman 	put_user_ns(ns);
262422d917d8SEric W. Biederman 	return seq_release(inode, file);
262522d917d8SEric W. Biederman }
262622d917d8SEric W. Biederman 
262722d917d8SEric W. Biederman static int proc_uid_map_open(struct inode *inode, struct file *file)
262822d917d8SEric W. Biederman {
262922d917d8SEric W. Biederman 	return proc_id_map_open(inode, file, &proc_uid_seq_operations);
263022d917d8SEric W. Biederman }
263122d917d8SEric W. Biederman 
263222d917d8SEric W. Biederman static int proc_gid_map_open(struct inode *inode, struct file *file)
263322d917d8SEric W. Biederman {
263422d917d8SEric W. Biederman 	return proc_id_map_open(inode, file, &proc_gid_seq_operations);
263522d917d8SEric W. Biederman }
263622d917d8SEric W. Biederman 
2637f76d207aSEric W. Biederman static int proc_projid_map_open(struct inode *inode, struct file *file)
2638f76d207aSEric W. Biederman {
2639f76d207aSEric W. Biederman 	return proc_id_map_open(inode, file, &proc_projid_seq_operations);
2640f76d207aSEric W. Biederman }
2641f76d207aSEric W. Biederman 
264222d917d8SEric W. Biederman static const struct file_operations proc_uid_map_operations = {
264322d917d8SEric W. Biederman 	.open		= proc_uid_map_open,
264422d917d8SEric W. Biederman 	.write		= proc_uid_map_write,
264522d917d8SEric W. Biederman 	.read		= seq_read,
264622d917d8SEric W. Biederman 	.llseek		= seq_lseek,
264722d917d8SEric W. Biederman 	.release	= proc_id_map_release,
264822d917d8SEric W. Biederman };
264922d917d8SEric W. Biederman 
265022d917d8SEric W. Biederman static const struct file_operations proc_gid_map_operations = {
265122d917d8SEric W. Biederman 	.open		= proc_gid_map_open,
265222d917d8SEric W. Biederman 	.write		= proc_gid_map_write,
265322d917d8SEric W. Biederman 	.read		= seq_read,
265422d917d8SEric W. Biederman 	.llseek		= seq_lseek,
265522d917d8SEric W. Biederman 	.release	= proc_id_map_release,
265622d917d8SEric W. Biederman };
2657f76d207aSEric W. Biederman 
2658f76d207aSEric W. Biederman static const struct file_operations proc_projid_map_operations = {
2659f76d207aSEric W. Biederman 	.open		= proc_projid_map_open,
2660f76d207aSEric W. Biederman 	.write		= proc_projid_map_write,
2661f76d207aSEric W. Biederman 	.read		= seq_read,
2662f76d207aSEric W. Biederman 	.llseek		= seq_lseek,
2663f76d207aSEric W. Biederman 	.release	= proc_id_map_release,
2664f76d207aSEric W. Biederman };
26659cc46516SEric W. Biederman 
26669cc46516SEric W. Biederman static int proc_setgroups_open(struct inode *inode, struct file *file)
26679cc46516SEric W. Biederman {
26689cc46516SEric W. Biederman 	struct user_namespace *ns = NULL;
26699cc46516SEric W. Biederman 	struct task_struct *task;
26709cc46516SEric W. Biederman 	int ret;
26719cc46516SEric W. Biederman 
26729cc46516SEric W. Biederman 	ret = -ESRCH;
26739cc46516SEric W. Biederman 	task = get_proc_task(inode);
26749cc46516SEric W. Biederman 	if (task) {
26759cc46516SEric W. Biederman 		rcu_read_lock();
26769cc46516SEric W. Biederman 		ns = get_user_ns(task_cred_xxx(task, user_ns));
26779cc46516SEric W. Biederman 		rcu_read_unlock();
26789cc46516SEric W. Biederman 		put_task_struct(task);
26799cc46516SEric W. Biederman 	}
26809cc46516SEric W. Biederman 	if (!ns)
26819cc46516SEric W. Biederman 		goto err;
26829cc46516SEric W. Biederman 
26839cc46516SEric W. Biederman 	if (file->f_mode & FMODE_WRITE) {
26849cc46516SEric W. Biederman 		ret = -EACCES;
26859cc46516SEric W. Biederman 		if (!ns_capable(ns, CAP_SYS_ADMIN))
26869cc46516SEric W. Biederman 			goto err_put_ns;
26879cc46516SEric W. Biederman 	}
26889cc46516SEric W. Biederman 
26899cc46516SEric W. Biederman 	ret = single_open(file, &proc_setgroups_show, ns);
26909cc46516SEric W. Biederman 	if (ret)
26919cc46516SEric W. Biederman 		goto err_put_ns;
26929cc46516SEric W. Biederman 
26939cc46516SEric W. Biederman 	return 0;
26949cc46516SEric W. Biederman err_put_ns:
26959cc46516SEric W. Biederman 	put_user_ns(ns);
26969cc46516SEric W. Biederman err:
26979cc46516SEric W. Biederman 	return ret;
26989cc46516SEric W. Biederman }
26999cc46516SEric W. Biederman 
27009cc46516SEric W. Biederman static int proc_setgroups_release(struct inode *inode, struct file *file)
27019cc46516SEric W. Biederman {
27029cc46516SEric W. Biederman 	struct seq_file *seq = file->private_data;
27039cc46516SEric W. Biederman 	struct user_namespace *ns = seq->private;
27049cc46516SEric W. Biederman 	int ret = single_release(inode, file);
27059cc46516SEric W. Biederman 	put_user_ns(ns);
27069cc46516SEric W. Biederman 	return ret;
27079cc46516SEric W. Biederman }
27089cc46516SEric W. Biederman 
27099cc46516SEric W. Biederman static const struct file_operations proc_setgroups_operations = {
27109cc46516SEric W. Biederman 	.open		= proc_setgroups_open,
27119cc46516SEric W. Biederman 	.write		= proc_setgroups_write,
27129cc46516SEric W. Biederman 	.read		= seq_read,
27139cc46516SEric W. Biederman 	.llseek		= seq_lseek,
27149cc46516SEric W. Biederman 	.release	= proc_setgroups_release,
27159cc46516SEric W. Biederman };
271622d917d8SEric W. Biederman #endif /* CONFIG_USER_NS */
271722d917d8SEric W. Biederman 
271847830723SKees Cook static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
271947830723SKees Cook 				struct pid *pid, struct task_struct *task)
272047830723SKees Cook {
2721a9712bc1SAl Viro 	int err = lock_trace(task);
2722a9712bc1SAl Viro 	if (!err) {
272347830723SKees Cook 		seq_printf(m, "%08x\n", task->personality);
2724a9712bc1SAl Viro 		unlock_trace(task);
2725a9712bc1SAl Viro 	}
2726a9712bc1SAl Viro 	return err;
272747830723SKees Cook }
272847830723SKees Cook 
2729801199ceSEric W. Biederman /*
273028a6d671SEric W. Biederman  * Thread groups
273128a6d671SEric W. Biederman  */
273200977a59SArjan van de Ven static const struct file_operations proc_task_operations;
2733c5ef1c42SArjan van de Ven static const struct inode_operations proc_task_inode_operations;
273420cdc894SEric W. Biederman 
2735c5141e6dSEric Dumazet static const struct pid_entry tgid_base_stuff[] = {
2736631f9c18SAlexey Dobriyan 	DIR("task",       S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2737631f9c18SAlexey Dobriyan 	DIR("fd",         S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2738640708a2SPavel Emelyanov 	DIR("map_files",  S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations),
2739631f9c18SAlexey Dobriyan 	DIR("fdinfo",     S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
27406b4e306aSEric W. Biederman 	DIR("ns",	  S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
2741b2211a36SAndrew Morton #ifdef CONFIG_NET
2742631f9c18SAlexey Dobriyan 	DIR("net",        S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
2743b2211a36SAndrew Morton #endif
2744631f9c18SAlexey Dobriyan 	REG("environ",    S_IRUSR, proc_environ_operations),
2745f9ea536eSAlexey Dobriyan 	ONE("auxv",       S_IRUSR, proc_pid_auxv),
2746631f9c18SAlexey Dobriyan 	ONE("status",     S_IRUGO, proc_pid_status),
274735a35046SDjalal Harouni 	ONE("personality", S_IRUSR, proc_pid_personality),
27481c963eb1SAlexey Dobriyan 	ONE("limits",	  S_IRUGO, proc_pid_limits),
274943ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG
2750631f9c18SAlexey Dobriyan 	REG("sched",      S_IRUGO|S_IWUSR, proc_pid_sched_operations),
275143ae34cbSIngo Molnar #endif
27525091faa4SMike Galbraith #ifdef CONFIG_SCHED_AUTOGROUP
27535091faa4SMike Galbraith 	REG("autogroup",  S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
27545091faa4SMike Galbraith #endif
27554614a696Sjohn stultz 	REG("comm",      S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
2756ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
275709d93bd6SAlexey Dobriyan 	ONE("syscall",    S_IRUSR, proc_pid_syscall),
2758ebcb6734SRoland McGrath #endif
2759c2c0bb44SAlexey Dobriyan 	REG("cmdline",    S_IRUGO, proc_pid_cmdline_ops),
2760631f9c18SAlexey Dobriyan 	ONE("stat",       S_IRUGO, proc_tgid_stat),
2761631f9c18SAlexey Dobriyan 	ONE("statm",      S_IRUGO, proc_pid_statm),
2762b7643757SSiddhesh Poyarekar 	REG("maps",       S_IRUGO, proc_pid_maps_operations),
276328a6d671SEric W. Biederman #ifdef CONFIG_NUMA
2764b7643757SSiddhesh Poyarekar 	REG("numa_maps",  S_IRUGO, proc_pid_numa_maps_operations),
276528a6d671SEric W. Biederman #endif
2766631f9c18SAlexey Dobriyan 	REG("mem",        S_IRUSR|S_IWUSR, proc_mem_operations),
2767631f9c18SAlexey Dobriyan 	LNK("cwd",        proc_cwd_link),
2768631f9c18SAlexey Dobriyan 	LNK("root",       proc_root_link),
2769631f9c18SAlexey Dobriyan 	LNK("exe",        proc_exe_link),
2770631f9c18SAlexey Dobriyan 	REG("mounts",     S_IRUGO, proc_mounts_operations),
2771631f9c18SAlexey Dobriyan 	REG("mountinfo",  S_IRUGO, proc_mountinfo_operations),
2772631f9c18SAlexey Dobriyan 	REG("mountstats", S_IRUSR, proc_mountstats_operations),
27731e883281SMatt Mackall #ifdef CONFIG_PROC_PAGE_MONITOR
2774631f9c18SAlexey Dobriyan 	REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2775b7643757SSiddhesh Poyarekar 	REG("smaps",      S_IRUGO, proc_pid_smaps_operations),
277632ed74a4SDjalal Harouni 	REG("pagemap",    S_IRUSR, proc_pagemap_operations),
277728a6d671SEric W. Biederman #endif
277828a6d671SEric W. Biederman #ifdef CONFIG_SECURITY
2779631f9c18SAlexey Dobriyan 	DIR("attr",       S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
278028a6d671SEric W. Biederman #endif
278128a6d671SEric W. Biederman #ifdef CONFIG_KALLSYMS
2782edfcd606SAlexey Dobriyan 	ONE("wchan",      S_IRUGO, proc_pid_wchan),
278328a6d671SEric W. Biederman #endif
27842ec220e2SKen Chen #ifdef CONFIG_STACKTRACE
278535a35046SDjalal Harouni 	ONE("stack",      S_IRUSR, proc_pid_stack),
278628a6d671SEric W. Biederman #endif
27875968ceceSNaveen N. Rao #ifdef CONFIG_SCHED_INFO
2788f6e826caSAlexey Dobriyan 	ONE("schedstat",  S_IRUGO, proc_pid_schedstat),
278928a6d671SEric W. Biederman #endif
27909745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP
2791631f9c18SAlexey Dobriyan 	REG("latency",  S_IRUGO, proc_lstats_operations),
27929745512cSArjan van de Ven #endif
27938793d854SPaul Menage #ifdef CONFIG_PROC_PID_CPUSET
279452de4779SZefan Li 	ONE("cpuset",     S_IRUGO, proc_cpuset_show),
279528a6d671SEric W. Biederman #endif
2796a424316cSPaul Menage #ifdef CONFIG_CGROUPS
2797006f4ac4SZefan Li 	ONE("cgroup",  S_IRUGO, proc_cgroup_show),
2798a424316cSPaul Menage #endif
27996ba51e37SAlexey Dobriyan 	ONE("oom_score",  S_IRUGO, proc_oom_score),
2800fa0cbbf1SDavid Rientjes 	REG("oom_adj",    S_IRUGO|S_IWUSR, proc_oom_adj_operations),
2801a63d83f4SDavid Rientjes 	REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
280228a6d671SEric W. Biederman #ifdef CONFIG_AUDITSYSCALL
2803631f9c18SAlexey Dobriyan 	REG("loginuid",   S_IWUSR|S_IRUGO, proc_loginuid_operations),
2804631f9c18SAlexey Dobriyan 	REG("sessionid",  S_IRUGO, proc_sessionid_operations),
280528a6d671SEric W. Biederman #endif
2806f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION
2807631f9c18SAlexey Dobriyan 	REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
2808f4f154fdSAkinobu Mita #endif
2809698ba7b5SChristoph Hellwig #ifdef CONFIG_ELF_CORE
2810631f9c18SAlexey Dobriyan 	REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
28113cb4a0bbSKawai, Hidehiro #endif
2812aba76fdbSAndrew Morton #ifdef CONFIG_TASK_IO_ACCOUNTING
281319aadc98SAlexey Dobriyan 	ONE("io",	S_IRUSR, proc_tgid_io_accounting),
2814aba76fdbSAndrew Morton #endif
2815f133eccaSChris Metcalf #ifdef CONFIG_HARDWALL
2816d962c144SAlexey Dobriyan 	ONE("hardwall",   S_IRUGO, proc_pid_hardwall),
2817f133eccaSChris Metcalf #endif
281822d917d8SEric W. Biederman #ifdef CONFIG_USER_NS
281922d917d8SEric W. Biederman 	REG("uid_map",    S_IRUGO|S_IWUSR, proc_uid_map_operations),
282022d917d8SEric W. Biederman 	REG("gid_map",    S_IRUGO|S_IWUSR, proc_gid_map_operations),
2821f76d207aSEric W. Biederman 	REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
28229cc46516SEric W. Biederman 	REG("setgroups",  S_IRUGO|S_IWUSR, proc_setgroups_operations),
282322d917d8SEric W. Biederman #endif
282448f6a7a5SPavel Emelyanov #ifdef CONFIG_CHECKPOINT_RESTORE
282548f6a7a5SPavel Emelyanov 	REG("timers",	  S_IRUGO, proc_timers_operations),
282648f6a7a5SPavel Emelyanov #endif
282728a6d671SEric W. Biederman };
282828a6d671SEric W. Biederman 
2829f0c3b509SAl Viro static int proc_tgid_base_readdir(struct file *file, struct dir_context *ctx)
283028a6d671SEric W. Biederman {
2831f0c3b509SAl Viro 	return proc_pident_readdir(file, ctx,
283228a6d671SEric W. Biederman 				   tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
283328a6d671SEric W. Biederman }
283428a6d671SEric W. Biederman 
283500977a59SArjan van de Ven static const struct file_operations proc_tgid_base_operations = {
283628a6d671SEric W. Biederman 	.read		= generic_read_dir,
2837f0c3b509SAl Viro 	.iterate	= proc_tgid_base_readdir,
28386038f373SArnd Bergmann 	.llseek		= default_llseek,
283928a6d671SEric W. Biederman };
284028a6d671SEric W. Biederman 
284100cd8dd3SAl Viro static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
284200cd8dd3SAl Viro {
28437bcd6b0eSEric W. Biederman 	return proc_pident_lookup(dir, dentry,
28447bcd6b0eSEric W. Biederman 				  tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
284528a6d671SEric W. Biederman }
284628a6d671SEric W. Biederman 
2847c5ef1c42SArjan van de Ven static const struct inode_operations proc_tgid_base_inode_operations = {
284828a6d671SEric W. Biederman 	.lookup		= proc_tgid_base_lookup,
284928a6d671SEric W. Biederman 	.getattr	= pid_getattr,
285028a6d671SEric W. Biederman 	.setattr	= proc_setattr,
28510499680aSVasiliy Kulikov 	.permission	= proc_pid_permission,
285228a6d671SEric W. Biederman };
285328a6d671SEric W. Biederman 
285460347f67SPavel Emelyanov static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
28551da177e4SLinus Torvalds {
285648e6484dSEric W. Biederman 	struct dentry *dentry, *leader, *dir;
28578578cea7SEric W. Biederman 	char buf[PROC_NUMBUF];
285848e6484dSEric W. Biederman 	struct qstr name;
28591da177e4SLinus Torvalds 
286048e6484dSEric W. Biederman 	name.name = buf;
286160347f67SPavel Emelyanov 	name.len = snprintf(buf, sizeof(buf), "%d", pid);
28624f522a24SAl Viro 	/* no ->d_hash() rejects on procfs */
286360347f67SPavel Emelyanov 	dentry = d_hash_and_lookup(mnt->mnt_root, &name);
286448e6484dSEric W. Biederman 	if (dentry) {
2865bbd51924SEric W. Biederman 		d_invalidate(dentry);
286648e6484dSEric W. Biederman 		dput(dentry);
28671da177e4SLinus Torvalds 	}
28681da177e4SLinus Torvalds 
2869c35a7f18SOleg Nesterov 	if (pid == tgid)
2870c35a7f18SOleg Nesterov 		return;
2871c35a7f18SOleg Nesterov 
287248e6484dSEric W. Biederman 	name.name = buf;
287360347f67SPavel Emelyanov 	name.len = snprintf(buf, sizeof(buf), "%d", tgid);
287460347f67SPavel Emelyanov 	leader = d_hash_and_lookup(mnt->mnt_root, &name);
287548e6484dSEric W. Biederman 	if (!leader)
287648e6484dSEric W. Biederman 		goto out;
287748e6484dSEric W. Biederman 
287848e6484dSEric W. Biederman 	name.name = "task";
287948e6484dSEric W. Biederman 	name.len = strlen(name.name);
288048e6484dSEric W. Biederman 	dir = d_hash_and_lookup(leader, &name);
288148e6484dSEric W. Biederman 	if (!dir)
288248e6484dSEric W. Biederman 		goto out_put_leader;
288348e6484dSEric W. Biederman 
288448e6484dSEric W. Biederman 	name.name = buf;
288560347f67SPavel Emelyanov 	name.len = snprintf(buf, sizeof(buf), "%d", pid);
288648e6484dSEric W. Biederman 	dentry = d_hash_and_lookup(dir, &name);
288748e6484dSEric W. Biederman 	if (dentry) {
2888bbd51924SEric W. Biederman 		d_invalidate(dentry);
288948e6484dSEric W. Biederman 		dput(dentry);
28901da177e4SLinus Torvalds 	}
289148e6484dSEric W. Biederman 
289248e6484dSEric W. Biederman 	dput(dir);
289348e6484dSEric W. Biederman out_put_leader:
289448e6484dSEric W. Biederman 	dput(leader);
289548e6484dSEric W. Biederman out:
289648e6484dSEric W. Biederman 	return;
28971da177e4SLinus Torvalds }
28981da177e4SLinus Torvalds 
28990895e91dSRandy Dunlap /**
29000895e91dSRandy Dunlap  * proc_flush_task -  Remove dcache entries for @task from the /proc dcache.
29010895e91dSRandy Dunlap  * @task: task that should be flushed.
29020895e91dSRandy Dunlap  *
29030895e91dSRandy Dunlap  * When flushing dentries from proc, one needs to flush them from global
290460347f67SPavel Emelyanov  * proc (proc_mnt) and from all the namespaces' procs this task was seen
29050895e91dSRandy Dunlap  * in. This call is supposed to do all of this job.
29060895e91dSRandy Dunlap  *
29070895e91dSRandy Dunlap  * Looks in the dcache for
29080895e91dSRandy Dunlap  * /proc/@pid
29090895e91dSRandy Dunlap  * /proc/@tgid/task/@pid
29100895e91dSRandy Dunlap  * if either directory is present flushes it and all of it'ts children
29110895e91dSRandy Dunlap  * from the dcache.
29120895e91dSRandy Dunlap  *
29130895e91dSRandy Dunlap  * It is safe and reasonable to cache /proc entries for a task until
29140895e91dSRandy Dunlap  * that task exits.  After that they just clog up the dcache with
29150895e91dSRandy Dunlap  * useless entries, possibly causing useful dcache entries to be
29160895e91dSRandy Dunlap  * flushed instead.  This routine is proved to flush those useless
29170895e91dSRandy Dunlap  * dcache entries at process exit time.
29180895e91dSRandy Dunlap  *
29190895e91dSRandy Dunlap  * NOTE: This routine is just an optimization so it does not guarantee
29200895e91dSRandy Dunlap  *       that no dcache entries will exist at process exit time it
29210895e91dSRandy Dunlap  *       just makes it very unlikely that any will persist.
292260347f67SPavel Emelyanov  */
292360347f67SPavel Emelyanov 
292460347f67SPavel Emelyanov void proc_flush_task(struct task_struct *task)
292560347f67SPavel Emelyanov {
29269fcc2d15SEric W. Biederman 	int i;
29279b4d1cbeSOleg Nesterov 	struct pid *pid, *tgid;
2928130f77ecSPavel Emelyanov 	struct upid *upid;
2929130f77ecSPavel Emelyanov 
2930130f77ecSPavel Emelyanov 	pid = task_pid(task);
2931130f77ecSPavel Emelyanov 	tgid = task_tgid(task);
29329fcc2d15SEric W. Biederman 
29339fcc2d15SEric W. Biederman 	for (i = 0; i <= pid->level; i++) {
2934130f77ecSPavel Emelyanov 		upid = &pid->numbers[i];
2935130f77ecSPavel Emelyanov 		proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
29369b4d1cbeSOleg Nesterov 					tgid->numbers[i].nr);
2937130f77ecSPavel Emelyanov 	}
293860347f67SPavel Emelyanov }
293960347f67SPavel Emelyanov 
2940c52a47acSAl Viro static int proc_pid_instantiate(struct inode *dir,
29419711ef99SAdrian Bunk 				   struct dentry * dentry,
2942c5141e6dSEric Dumazet 				   struct task_struct *task, const void *ptr)
2943444ceed8SEric W. Biederman {
2944444ceed8SEric W. Biederman 	struct inode *inode;
2945444ceed8SEric W. Biederman 
294661a28784SEric W. Biederman 	inode = proc_pid_make_inode(dir->i_sb, task);
2947444ceed8SEric W. Biederman 	if (!inode)
2948444ceed8SEric W. Biederman 		goto out;
2949444ceed8SEric W. Biederman 
2950444ceed8SEric W. Biederman 	inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2951444ceed8SEric W. Biederman 	inode->i_op = &proc_tgid_base_inode_operations;
2952444ceed8SEric W. Biederman 	inode->i_fop = &proc_tgid_base_operations;
2953444ceed8SEric W. Biederman 	inode->i_flags|=S_IMMUTABLE;
2954aed54175SVegard Nossum 
2955bfe86848SMiklos Szeredi 	set_nlink(inode, 2 + pid_entry_count_dirs(tgid_base_stuff,
2956bfe86848SMiklos Szeredi 						  ARRAY_SIZE(tgid_base_stuff)));
2957444ceed8SEric W. Biederman 
2958fb045adbSNick Piggin 	d_set_d_op(dentry, &pid_dentry_operations);
2959444ceed8SEric W. Biederman 
2960444ceed8SEric W. Biederman 	d_add(dentry, inode);
2961444ceed8SEric W. Biederman 	/* Close the race of the process dying before we return the dentry */
29620b728e19SAl Viro 	if (pid_revalidate(dentry, 0))
2963c52a47acSAl Viro 		return 0;
2964444ceed8SEric W. Biederman out:
2965c52a47acSAl Viro 	return -ENOENT;
2966444ceed8SEric W. Biederman }
2967444ceed8SEric W. Biederman 
296800cd8dd3SAl Viro struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
29691da177e4SLinus Torvalds {
2970335eb531SAlexey Dobriyan 	int result = -ENOENT;
29711da177e4SLinus Torvalds 	struct task_struct *task;
29721da177e4SLinus Torvalds 	unsigned tgid;
2973b488893aSPavel Emelyanov 	struct pid_namespace *ns;
29741da177e4SLinus Torvalds 
2975dbcdb504SAlexey Dobriyan 	tgid = name_to_int(&dentry->d_name);
29761da177e4SLinus Torvalds 	if (tgid == ~0U)
29771da177e4SLinus Torvalds 		goto out;
29781da177e4SLinus Torvalds 
2979b488893aSPavel Emelyanov 	ns = dentry->d_sb->s_fs_info;
2980de758734SEric W. Biederman 	rcu_read_lock();
2981b488893aSPavel Emelyanov 	task = find_task_by_pid_ns(tgid, ns);
29821da177e4SLinus Torvalds 	if (task)
29831da177e4SLinus Torvalds 		get_task_struct(task);
2984de758734SEric W. Biederman 	rcu_read_unlock();
29851da177e4SLinus Torvalds 	if (!task)
29861da177e4SLinus Torvalds 		goto out;
29871da177e4SLinus Torvalds 
2988444ceed8SEric W. Biederman 	result = proc_pid_instantiate(dir, dentry, task, NULL);
298948e6484dSEric W. Biederman 	put_task_struct(task);
29901da177e4SLinus Torvalds out:
2991c52a47acSAl Viro 	return ERR_PTR(result);
29921da177e4SLinus Torvalds }
29931da177e4SLinus Torvalds 
29941da177e4SLinus Torvalds /*
29950804ef4bSEric W. Biederman  * Find the first task with tgid >= tgid
29960bc58a91SEric W. Biederman  *
29971da177e4SLinus Torvalds  */
299819fd4bb2SEric W. Biederman struct tgid_iter {
299919fd4bb2SEric W. Biederman 	unsigned int tgid;
30000804ef4bSEric W. Biederman 	struct task_struct *task;
300119fd4bb2SEric W. Biederman };
300219fd4bb2SEric W. Biederman static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
300319fd4bb2SEric W. Biederman {
30040804ef4bSEric W. Biederman 	struct pid *pid;
30051da177e4SLinus Torvalds 
300619fd4bb2SEric W. Biederman 	if (iter.task)
300719fd4bb2SEric W. Biederman 		put_task_struct(iter.task);
30080804ef4bSEric W. Biederman 	rcu_read_lock();
30090804ef4bSEric W. Biederman retry:
301019fd4bb2SEric W. Biederman 	iter.task = NULL;
301119fd4bb2SEric W. Biederman 	pid = find_ge_pid(iter.tgid, ns);
30120804ef4bSEric W. Biederman 	if (pid) {
301319fd4bb2SEric W. Biederman 		iter.tgid = pid_nr_ns(pid, ns);
301419fd4bb2SEric W. Biederman 		iter.task = pid_task(pid, PIDTYPE_PID);
30150804ef4bSEric W. Biederman 		/* What we to know is if the pid we have find is the
30160804ef4bSEric W. Biederman 		 * pid of a thread_group_leader.  Testing for task
30170804ef4bSEric W. Biederman 		 * being a thread_group_leader is the obvious thing
30180804ef4bSEric W. Biederman 		 * todo but there is a window when it fails, due to
30190804ef4bSEric W. Biederman 		 * the pid transfer logic in de_thread.
30200804ef4bSEric W. Biederman 		 *
30210804ef4bSEric W. Biederman 		 * So we perform the straight forward test of seeing
30220804ef4bSEric W. Biederman 		 * if the pid we have found is the pid of a thread
30230804ef4bSEric W. Biederman 		 * group leader, and don't worry if the task we have
30240804ef4bSEric W. Biederman 		 * found doesn't happen to be a thread group leader.
30250804ef4bSEric W. Biederman 		 * As we don't care in the case of readdir.
30260bc58a91SEric W. Biederman 		 */
302719fd4bb2SEric W. Biederman 		if (!iter.task || !has_group_leader_pid(iter.task)) {
302819fd4bb2SEric W. Biederman 			iter.tgid += 1;
30290804ef4bSEric W. Biederman 			goto retry;
303019fd4bb2SEric W. Biederman 		}
303119fd4bb2SEric W. Biederman 		get_task_struct(iter.task);
30321da177e4SLinus Torvalds 	}
3033454cc105SEric W. Biederman 	rcu_read_unlock();
303419fd4bb2SEric W. Biederman 	return iter;
30351da177e4SLinus Torvalds }
30361da177e4SLinus Torvalds 
30370097875bSEric W. Biederman #define TGID_OFFSET (FIRST_PROCESS_ENTRY + 2)
30381da177e4SLinus Torvalds 
30391da177e4SLinus Torvalds /* for the /proc/ directory itself, after non-process stuff has been done */
3040f0c3b509SAl Viro int proc_pid_readdir(struct file *file, struct dir_context *ctx)
30411da177e4SLinus Torvalds {
304219fd4bb2SEric W. Biederman 	struct tgid_iter iter;
30433aa3377fSAl Viro 	struct pid_namespace *ns = file_inode(file)->i_sb->s_fs_info;
3044f0c3b509SAl Viro 	loff_t pos = ctx->pos;
30451da177e4SLinus Torvalds 
3046021ada7dSAl Viro 	if (pos >= PID_MAX_LIMIT + TGID_OFFSET)
3047f0c3b509SAl Viro 		return 0;
30481da177e4SLinus Torvalds 
30490097875bSEric W. Biederman 	if (pos == TGID_OFFSET - 2) {
30502b0143b5SDavid Howells 		struct inode *inode = d_inode(ns->proc_self);
3051db963164SAl Viro 		if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK))
3052f0c3b509SAl Viro 			return 0;
30530097875bSEric W. Biederman 		ctx->pos = pos = pos + 1;
3054021ada7dSAl Viro 	}
30550097875bSEric W. Biederman 	if (pos == TGID_OFFSET - 1) {
30562b0143b5SDavid Howells 		struct inode *inode = d_inode(ns->proc_thread_self);
30570097875bSEric W. Biederman 		if (!dir_emit(ctx, "thread-self", 11, inode->i_ino, DT_LNK))
30580097875bSEric W. Biederman 			return 0;
30590097875bSEric W. Biederman 		ctx->pos = pos = pos + 1;
30600097875bSEric W. Biederman 	}
30610097875bSEric W. Biederman 	iter.tgid = pos - TGID_OFFSET;
306219fd4bb2SEric W. Biederman 	iter.task = NULL;
306319fd4bb2SEric W. Biederman 	for (iter = next_tgid(ns, iter);
306419fd4bb2SEric W. Biederman 	     iter.task;
306519fd4bb2SEric W. Biederman 	     iter.tgid += 1, iter = next_tgid(ns, iter)) {
3066f0c3b509SAl Viro 		char name[PROC_NUMBUF];
3067f0c3b509SAl Viro 		int len;
3068f0c3b509SAl Viro 		if (!has_pid_permissions(ns, iter.task, 2))
3069f0c3b509SAl Viro 			continue;
30700499680aSVasiliy Kulikov 
3071f0c3b509SAl Viro 		len = snprintf(name, sizeof(name), "%d", iter.tgid);
3072f0c3b509SAl Viro 		ctx->pos = iter.tgid + TGID_OFFSET;
3073f0c3b509SAl Viro 		if (!proc_fill_cache(file, ctx, name, len,
3074f0c3b509SAl Viro 				     proc_pid_instantiate, iter.task, NULL)) {
307519fd4bb2SEric W. Biederman 			put_task_struct(iter.task);
3076f0c3b509SAl Viro 			return 0;
30771da177e4SLinus Torvalds 		}
30781da177e4SLinus Torvalds 	}
3079f0c3b509SAl Viro 	ctx->pos = PID_MAX_LIMIT + TGID_OFFSET;
30801da177e4SLinus Torvalds 	return 0;
30811da177e4SLinus Torvalds }
30821da177e4SLinus Torvalds 
30830bc58a91SEric W. Biederman /*
308428a6d671SEric W. Biederman  * Tasks
308528a6d671SEric W. Biederman  */
3086c5141e6dSEric Dumazet static const struct pid_entry tid_base_stuff[] = {
3087631f9c18SAlexey Dobriyan 	DIR("fd",        S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
30883835541dSJerome Marchand 	DIR("fdinfo",    S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
30896b4e306aSEric W. Biederman 	DIR("ns",	 S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
30906ba8ed79SEric W. Biederman #ifdef CONFIG_NET
30916ba8ed79SEric W. Biederman 	DIR("net",        S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
30926ba8ed79SEric W. Biederman #endif
3093631f9c18SAlexey Dobriyan 	REG("environ",   S_IRUSR, proc_environ_operations),
3094f9ea536eSAlexey Dobriyan 	ONE("auxv",      S_IRUSR, proc_pid_auxv),
3095631f9c18SAlexey Dobriyan 	ONE("status",    S_IRUGO, proc_pid_status),
309635a35046SDjalal Harouni 	ONE("personality", S_IRUSR, proc_pid_personality),
30971c963eb1SAlexey Dobriyan 	ONE("limits",	 S_IRUGO, proc_pid_limits),
309843ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG
3099631f9c18SAlexey Dobriyan 	REG("sched",     S_IRUGO|S_IWUSR, proc_pid_sched_operations),
310043ae34cbSIngo Molnar #endif
31014614a696Sjohn stultz 	REG("comm",      S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
3102ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
310309d93bd6SAlexey Dobriyan 	ONE("syscall",   S_IRUSR, proc_pid_syscall),
3104ebcb6734SRoland McGrath #endif
3105c2c0bb44SAlexey Dobriyan 	REG("cmdline",   S_IRUGO, proc_pid_cmdline_ops),
3106631f9c18SAlexey Dobriyan 	ONE("stat",      S_IRUGO, proc_tid_stat),
3107631f9c18SAlexey Dobriyan 	ONE("statm",     S_IRUGO, proc_pid_statm),
3108b7643757SSiddhesh Poyarekar 	REG("maps",      S_IRUGO, proc_tid_maps_operations),
31092e13ba54SIago López Galeiras #ifdef CONFIG_PROC_CHILDREN
311081841161SCyrill Gorcunov 	REG("children",  S_IRUGO, proc_tid_children_operations),
311181841161SCyrill Gorcunov #endif
311228a6d671SEric W. Biederman #ifdef CONFIG_NUMA
3113b7643757SSiddhesh Poyarekar 	REG("numa_maps", S_IRUGO, proc_tid_numa_maps_operations),
311428a6d671SEric W. Biederman #endif
3115631f9c18SAlexey Dobriyan 	REG("mem",       S_IRUSR|S_IWUSR, proc_mem_operations),
3116631f9c18SAlexey Dobriyan 	LNK("cwd",       proc_cwd_link),
3117631f9c18SAlexey Dobriyan 	LNK("root",      proc_root_link),
3118631f9c18SAlexey Dobriyan 	LNK("exe",       proc_exe_link),
3119631f9c18SAlexey Dobriyan 	REG("mounts",    S_IRUGO, proc_mounts_operations),
3120631f9c18SAlexey Dobriyan 	REG("mountinfo",  S_IRUGO, proc_mountinfo_operations),
31211e883281SMatt Mackall #ifdef CONFIG_PROC_PAGE_MONITOR
3122631f9c18SAlexey Dobriyan 	REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
3123b7643757SSiddhesh Poyarekar 	REG("smaps",     S_IRUGO, proc_tid_smaps_operations),
312432ed74a4SDjalal Harouni 	REG("pagemap",    S_IRUSR, proc_pagemap_operations),
312528a6d671SEric W. Biederman #endif
312628a6d671SEric W. Biederman #ifdef CONFIG_SECURITY
3127631f9c18SAlexey Dobriyan 	DIR("attr",      S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
312828a6d671SEric W. Biederman #endif
312928a6d671SEric W. Biederman #ifdef CONFIG_KALLSYMS
3130edfcd606SAlexey Dobriyan 	ONE("wchan",     S_IRUGO, proc_pid_wchan),
313128a6d671SEric W. Biederman #endif
31322ec220e2SKen Chen #ifdef CONFIG_STACKTRACE
313335a35046SDjalal Harouni 	ONE("stack",      S_IRUSR, proc_pid_stack),
313428a6d671SEric W. Biederman #endif
31355968ceceSNaveen N. Rao #ifdef CONFIG_SCHED_INFO
3136f6e826caSAlexey Dobriyan 	ONE("schedstat", S_IRUGO, proc_pid_schedstat),
313728a6d671SEric W. Biederman #endif
31389745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP
3139631f9c18SAlexey Dobriyan 	REG("latency",  S_IRUGO, proc_lstats_operations),
31409745512cSArjan van de Ven #endif
31418793d854SPaul Menage #ifdef CONFIG_PROC_PID_CPUSET
314252de4779SZefan Li 	ONE("cpuset",    S_IRUGO, proc_cpuset_show),
314328a6d671SEric W. Biederman #endif
3144a424316cSPaul Menage #ifdef CONFIG_CGROUPS
3145006f4ac4SZefan Li 	ONE("cgroup",  S_IRUGO, proc_cgroup_show),
3146a424316cSPaul Menage #endif
31476ba51e37SAlexey Dobriyan 	ONE("oom_score", S_IRUGO, proc_oom_score),
3148fa0cbbf1SDavid Rientjes 	REG("oom_adj",   S_IRUGO|S_IWUSR, proc_oom_adj_operations),
3149a63d83f4SDavid Rientjes 	REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
315028a6d671SEric W. Biederman #ifdef CONFIG_AUDITSYSCALL
3151631f9c18SAlexey Dobriyan 	REG("loginuid",  S_IWUSR|S_IRUGO, proc_loginuid_operations),
315226ec3c64SAl Viro 	REG("sessionid",  S_IRUGO, proc_sessionid_operations),
315328a6d671SEric W. Biederman #endif
3154f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION
3155631f9c18SAlexey Dobriyan 	REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
3156f4f154fdSAkinobu Mita #endif
3157297c5d92SAndrea Righi #ifdef CONFIG_TASK_IO_ACCOUNTING
315819aadc98SAlexey Dobriyan 	ONE("io",	S_IRUSR, proc_tid_io_accounting),
3159297c5d92SAndrea Righi #endif
3160f133eccaSChris Metcalf #ifdef CONFIG_HARDWALL
3161d962c144SAlexey Dobriyan 	ONE("hardwall",   S_IRUGO, proc_pid_hardwall),
3162f133eccaSChris Metcalf #endif
316322d917d8SEric W. Biederman #ifdef CONFIG_USER_NS
316422d917d8SEric W. Biederman 	REG("uid_map",    S_IRUGO|S_IWUSR, proc_uid_map_operations),
316522d917d8SEric W. Biederman 	REG("gid_map",    S_IRUGO|S_IWUSR, proc_gid_map_operations),
3166f76d207aSEric W. Biederman 	REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
31679cc46516SEric W. Biederman 	REG("setgroups",  S_IRUGO|S_IWUSR, proc_setgroups_operations),
316822d917d8SEric W. Biederman #endif
316928a6d671SEric W. Biederman };
317028a6d671SEric W. Biederman 
3171f0c3b509SAl Viro static int proc_tid_base_readdir(struct file *file, struct dir_context *ctx)
317228a6d671SEric W. Biederman {
3173f0c3b509SAl Viro 	return proc_pident_readdir(file, ctx,
317428a6d671SEric W. Biederman 				   tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
317528a6d671SEric W. Biederman }
317628a6d671SEric W. Biederman 
317700cd8dd3SAl Viro static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
317800cd8dd3SAl Viro {
31797bcd6b0eSEric W. Biederman 	return proc_pident_lookup(dir, dentry,
31807bcd6b0eSEric W. Biederman 				  tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
318128a6d671SEric W. Biederman }
318228a6d671SEric W. Biederman 
318300977a59SArjan van de Ven static const struct file_operations proc_tid_base_operations = {
318428a6d671SEric W. Biederman 	.read		= generic_read_dir,
3185f0c3b509SAl Viro 	.iterate	= proc_tid_base_readdir,
31866038f373SArnd Bergmann 	.llseek		= default_llseek,
318728a6d671SEric W. Biederman };
318828a6d671SEric W. Biederman 
3189c5ef1c42SArjan van de Ven static const struct inode_operations proc_tid_base_inode_operations = {
319028a6d671SEric W. Biederman 	.lookup		= proc_tid_base_lookup,
319128a6d671SEric W. Biederman 	.getattr	= pid_getattr,
319228a6d671SEric W. Biederman 	.setattr	= proc_setattr,
319328a6d671SEric W. Biederman };
319428a6d671SEric W. Biederman 
3195c52a47acSAl Viro static int proc_task_instantiate(struct inode *dir,
3196c5141e6dSEric Dumazet 	struct dentry *dentry, struct task_struct *task, const void *ptr)
3197444ceed8SEric W. Biederman {
3198444ceed8SEric W. Biederman 	struct inode *inode;
319961a28784SEric W. Biederman 	inode = proc_pid_make_inode(dir->i_sb, task);
3200444ceed8SEric W. Biederman 
3201444ceed8SEric W. Biederman 	if (!inode)
3202444ceed8SEric W. Biederman 		goto out;
3203444ceed8SEric W. Biederman 	inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3204444ceed8SEric W. Biederman 	inode->i_op = &proc_tid_base_inode_operations;
3205444ceed8SEric W. Biederman 	inode->i_fop = &proc_tid_base_operations;
3206444ceed8SEric W. Biederman 	inode->i_flags|=S_IMMUTABLE;
3207aed54175SVegard Nossum 
3208bfe86848SMiklos Szeredi 	set_nlink(inode, 2 + pid_entry_count_dirs(tid_base_stuff,
3209bfe86848SMiklos Szeredi 						  ARRAY_SIZE(tid_base_stuff)));
3210444ceed8SEric W. Biederman 
3211fb045adbSNick Piggin 	d_set_d_op(dentry, &pid_dentry_operations);
3212444ceed8SEric W. Biederman 
3213444ceed8SEric W. Biederman 	d_add(dentry, inode);
3214444ceed8SEric W. Biederman 	/* Close the race of the process dying before we return the dentry */
32150b728e19SAl Viro 	if (pid_revalidate(dentry, 0))
3216c52a47acSAl Viro 		return 0;
3217444ceed8SEric W. Biederman out:
3218c52a47acSAl Viro 	return -ENOENT;
3219444ceed8SEric W. Biederman }
3220444ceed8SEric W. Biederman 
322100cd8dd3SAl Viro static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
322228a6d671SEric W. Biederman {
3223c52a47acSAl Viro 	int result = -ENOENT;
322428a6d671SEric W. Biederman 	struct task_struct *task;
322528a6d671SEric W. Biederman 	struct task_struct *leader = get_proc_task(dir);
322628a6d671SEric W. Biederman 	unsigned tid;
3227b488893aSPavel Emelyanov 	struct pid_namespace *ns;
322828a6d671SEric W. Biederman 
322928a6d671SEric W. Biederman 	if (!leader)
323028a6d671SEric W. Biederman 		goto out_no_task;
323128a6d671SEric W. Biederman 
3232dbcdb504SAlexey Dobriyan 	tid = name_to_int(&dentry->d_name);
323328a6d671SEric W. Biederman 	if (tid == ~0U)
323428a6d671SEric W. Biederman 		goto out;
323528a6d671SEric W. Biederman 
3236b488893aSPavel Emelyanov 	ns = dentry->d_sb->s_fs_info;
323728a6d671SEric W. Biederman 	rcu_read_lock();
3238b488893aSPavel Emelyanov 	task = find_task_by_pid_ns(tid, ns);
323928a6d671SEric W. Biederman 	if (task)
324028a6d671SEric W. Biederman 		get_task_struct(task);
324128a6d671SEric W. Biederman 	rcu_read_unlock();
324228a6d671SEric W. Biederman 	if (!task)
324328a6d671SEric W. Biederman 		goto out;
3244bac0abd6SPavel Emelyanov 	if (!same_thread_group(leader, task))
324528a6d671SEric W. Biederman 		goto out_drop_task;
324628a6d671SEric W. Biederman 
3247444ceed8SEric W. Biederman 	result = proc_task_instantiate(dir, dentry, task, NULL);
324828a6d671SEric W. Biederman out_drop_task:
324928a6d671SEric W. Biederman 	put_task_struct(task);
325028a6d671SEric W. Biederman out:
325128a6d671SEric W. Biederman 	put_task_struct(leader);
325228a6d671SEric W. Biederman out_no_task:
3253c52a47acSAl Viro 	return ERR_PTR(result);
325428a6d671SEric W. Biederman }
325528a6d671SEric W. Biederman 
325628a6d671SEric W. Biederman /*
32570bc58a91SEric W. Biederman  * Find the first tid of a thread group to return to user space.
32580bc58a91SEric W. Biederman  *
32590bc58a91SEric W. Biederman  * Usually this is just the thread group leader, but if the users
32600bc58a91SEric W. Biederman  * buffer was too small or there was a seek into the middle of the
32610bc58a91SEric W. Biederman  * directory we have more work todo.
32620bc58a91SEric W. Biederman  *
32630bc58a91SEric W. Biederman  * In the case of a short read we start with find_task_by_pid.
32640bc58a91SEric W. Biederman  *
32650bc58a91SEric W. Biederman  * In the case of a seek we start with the leader and walk nr
32660bc58a91SEric W. Biederman  * threads past it.
32670bc58a91SEric W. Biederman  */
32689f6e963fSOleg Nesterov static struct task_struct *first_tid(struct pid *pid, int tid, loff_t f_pos,
32699f6e963fSOleg Nesterov 					struct pid_namespace *ns)
32700bc58a91SEric W. Biederman {
3271d855a4b7SOleg Nesterov 	struct task_struct *pos, *task;
32729f6e963fSOleg Nesterov 	unsigned long nr = f_pos;
32739f6e963fSOleg Nesterov 
32749f6e963fSOleg Nesterov 	if (nr != f_pos)	/* 32bit overflow? */
32759f6e963fSOleg Nesterov 		return NULL;
32760bc58a91SEric W. Biederman 
3277cc288738SEric W. Biederman 	rcu_read_lock();
3278d855a4b7SOleg Nesterov 	task = pid_task(pid, PIDTYPE_PID);
3279d855a4b7SOleg Nesterov 	if (!task)
3280d855a4b7SOleg Nesterov 		goto fail;
3281d855a4b7SOleg Nesterov 
3282d855a4b7SOleg Nesterov 	/* Attempt to start with the tid of a thread */
32839f6e963fSOleg Nesterov 	if (tid && nr) {
3284b488893aSPavel Emelyanov 		pos = find_task_by_pid_ns(tid, ns);
3285d855a4b7SOleg Nesterov 		if (pos && same_thread_group(pos, task))
3286a872ff0cSOleg Nesterov 			goto found;
32870bc58a91SEric W. Biederman 	}
32880bc58a91SEric W. Biederman 
32890bc58a91SEric W. Biederman 	/* If nr exceeds the number of threads there is nothing todo */
32909f6e963fSOleg Nesterov 	if (nr >= get_nr_threads(task))
3291c986c14aSOleg Nesterov 		goto fail;
3292a872ff0cSOleg Nesterov 
3293a872ff0cSOleg Nesterov 	/* If we haven't found our starting place yet start
3294a872ff0cSOleg Nesterov 	 * with the leader and walk nr threads forward.
3295a872ff0cSOleg Nesterov 	 */
3296d855a4b7SOleg Nesterov 	pos = task = task->group_leader;
3297c986c14aSOleg Nesterov 	do {
32989f6e963fSOleg Nesterov 		if (!nr--)
3299c986c14aSOleg Nesterov 			goto found;
3300d855a4b7SOleg Nesterov 	} while_each_thread(task, pos);
3301c986c14aSOleg Nesterov fail:
3302a872ff0cSOleg Nesterov 	pos = NULL;
3303a872ff0cSOleg Nesterov 	goto out;
3304a872ff0cSOleg Nesterov found:
3305a872ff0cSOleg Nesterov 	get_task_struct(pos);
3306a872ff0cSOleg Nesterov out:
3307cc288738SEric W. Biederman 	rcu_read_unlock();
33080bc58a91SEric W. Biederman 	return pos;
33090bc58a91SEric W. Biederman }
33100bc58a91SEric W. Biederman 
33110bc58a91SEric W. Biederman /*
33120bc58a91SEric W. Biederman  * Find the next thread in the thread list.
33130bc58a91SEric W. Biederman  * Return NULL if there is an error or no next thread.
33140bc58a91SEric W. Biederman  *
33150bc58a91SEric W. Biederman  * The reference to the input task_struct is released.
33160bc58a91SEric W. Biederman  */
33170bc58a91SEric W. Biederman static struct task_struct *next_tid(struct task_struct *start)
33180bc58a91SEric W. Biederman {
3319c1df7fb8SOleg Nesterov 	struct task_struct *pos = NULL;
3320cc288738SEric W. Biederman 	rcu_read_lock();
3321c1df7fb8SOleg Nesterov 	if (pid_alive(start)) {
33220bc58a91SEric W. Biederman 		pos = next_thread(start);
3323c1df7fb8SOleg Nesterov 		if (thread_group_leader(pos))
33240bc58a91SEric W. Biederman 			pos = NULL;
3325c1df7fb8SOleg Nesterov 		else
3326c1df7fb8SOleg Nesterov 			get_task_struct(pos);
3327c1df7fb8SOleg Nesterov 	}
3328cc288738SEric W. Biederman 	rcu_read_unlock();
33290bc58a91SEric W. Biederman 	put_task_struct(start);
33300bc58a91SEric W. Biederman 	return pos;
33310bc58a91SEric W. Biederman }
33320bc58a91SEric W. Biederman 
33331da177e4SLinus Torvalds /* for the /proc/TGID/task/ directories */
3334f0c3b509SAl Viro static int proc_task_readdir(struct file *file, struct dir_context *ctx)
33351da177e4SLinus Torvalds {
3336d855a4b7SOleg Nesterov 	struct inode *inode = file_inode(file);
3337d855a4b7SOleg Nesterov 	struct task_struct *task;
3338b488893aSPavel Emelyanov 	struct pid_namespace *ns;
3339f0c3b509SAl Viro 	int tid;
33401da177e4SLinus Torvalds 
3341d855a4b7SOleg Nesterov 	if (proc_inode_is_dead(inode))
3342f0c3b509SAl Viro 		return -ENOENT;
33431da177e4SLinus Torvalds 
3344f0c3b509SAl Viro 	if (!dir_emit_dots(file, ctx))
3345d855a4b7SOleg Nesterov 		return 0;
33461da177e4SLinus Torvalds 
33470bc58a91SEric W. Biederman 	/* f_version caches the tgid value that the last readdir call couldn't
33480bc58a91SEric W. Biederman 	 * return. lseek aka telldir automagically resets f_version to 0.
33490bc58a91SEric W. Biederman 	 */
33503aa3377fSAl Viro 	ns = inode->i_sb->s_fs_info;
3351f0c3b509SAl Viro 	tid = (int)file->f_version;
3352f0c3b509SAl Viro 	file->f_version = 0;
3353d855a4b7SOleg Nesterov 	for (task = first_tid(proc_pid(inode), tid, ctx->pos - 2, ns);
33540bc58a91SEric W. Biederman 	     task;
3355f0c3b509SAl Viro 	     task = next_tid(task), ctx->pos++) {
3356f0c3b509SAl Viro 		char name[PROC_NUMBUF];
3357f0c3b509SAl Viro 		int len;
3358b488893aSPavel Emelyanov 		tid = task_pid_nr_ns(task, ns);
3359f0c3b509SAl Viro 		len = snprintf(name, sizeof(name), "%d", tid);
3360f0c3b509SAl Viro 		if (!proc_fill_cache(file, ctx, name, len,
3361f0c3b509SAl Viro 				proc_task_instantiate, task, NULL)) {
33620bc58a91SEric W. Biederman 			/* returning this tgid failed, save it as the first
33630bc58a91SEric W. Biederman 			 * pid for the next readir call */
3364f0c3b509SAl Viro 			file->f_version = (u64)tid;
33650bc58a91SEric W. Biederman 			put_task_struct(task);
33661da177e4SLinus Torvalds 			break;
33670bc58a91SEric W. Biederman 		}
33681da177e4SLinus Torvalds 	}
3369d855a4b7SOleg Nesterov 
3370f0c3b509SAl Viro 	return 0;
33711da177e4SLinus Torvalds }
33726e66b52bSEric W. Biederman 
33736e66b52bSEric W. Biederman static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
33746e66b52bSEric W. Biederman {
33752b0143b5SDavid Howells 	struct inode *inode = d_inode(dentry);
337699f89551SEric W. Biederman 	struct task_struct *p = get_proc_task(inode);
33776e66b52bSEric W. Biederman 	generic_fillattr(inode, stat);
33786e66b52bSEric W. Biederman 
337999f89551SEric W. Biederman 	if (p) {
338099f89551SEric W. Biederman 		stat->nlink += get_nr_threads(p);
338199f89551SEric W. Biederman 		put_task_struct(p);
33826e66b52bSEric W. Biederman 	}
33836e66b52bSEric W. Biederman 
33846e66b52bSEric W. Biederman 	return 0;
33856e66b52bSEric W. Biederman }
338628a6d671SEric W. Biederman 
3387c5ef1c42SArjan van de Ven static const struct inode_operations proc_task_inode_operations = {
338828a6d671SEric W. Biederman 	.lookup		= proc_task_lookup,
338928a6d671SEric W. Biederman 	.getattr	= proc_task_getattr,
339028a6d671SEric W. Biederman 	.setattr	= proc_setattr,
33910499680aSVasiliy Kulikov 	.permission	= proc_pid_permission,
339228a6d671SEric W. Biederman };
339328a6d671SEric W. Biederman 
339400977a59SArjan van de Ven static const struct file_operations proc_task_operations = {
339528a6d671SEric W. Biederman 	.read		= generic_read_dir,
3396f0c3b509SAl Viro 	.iterate	= proc_task_readdir,
33976038f373SArnd Bergmann 	.llseek		= default_llseek,
339828a6d671SEric W. Biederman };
3399