| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  *  linux/fs/proc/base.c | 
 | 3 |  * | 
 | 4 |  *  Copyright (C) 1991, 1992 Linus Torvalds | 
 | 5 |  * | 
 | 6 |  *  proc base directory handling functions | 
 | 7 |  * | 
 | 8 |  *  1999, Al Viro. Rewritten. Now it covers the whole per-process part. | 
 | 9 |  *  Instead of using magical inumbers to determine the kind of object | 
 | 10 |  *  we allocate and fill in-core inodes upon lookup. They don't even | 
 | 11 |  *  go into icache. We cache the reference to task_struct upon lookup too. | 
 | 12 |  *  Eventually it should become a filesystem in its own. We don't use the | 
 | 13 |  *  rest of procfs anymore. | 
| Mauricio Lin | e070ad4 | 2005-09-03 15:55:10 -0700 | [diff] [blame] | 14 |  * | 
 | 15 |  * | 
 | 16 |  *  Changelog: | 
 | 17 |  *  17-Jan-2005 | 
 | 18 |  *  Allan Bezerra | 
 | 19 |  *  Bruna Moreira <bruna.moreira@indt.org.br> | 
 | 20 |  *  Edjard Mota <edjard.mota@indt.org.br> | 
 | 21 |  *  Ilias Biris <ilias.biris@indt.org.br> | 
 | 22 |  *  Mauricio Lin <mauricio.lin@indt.org.br> | 
 | 23 |  * | 
 | 24 |  *  Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT | 
 | 25 |  * | 
 | 26 |  *  A new process specific entry (smaps) included in /proc. It shows the | 
 | 27 |  *  size of rss for each memory area. The maps entry lacks information | 
 | 28 |  *  about physical memory size (rss) for each mapped file, i.e., | 
 | 29 |  *  rss information for executables and library files. | 
 | 30 |  *  This additional information is useful for any tools that need to know | 
 | 31 |  *  about physical memory consumption for a process specific library. | 
 | 32 |  * | 
 | 33 |  *  Changelog: | 
 | 34 |  *  21-Feb-2005 | 
 | 35 |  *  Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT | 
 | 36 |  *  Pud inclusion in the page table walking. | 
 | 37 |  * | 
 | 38 |  *  ChangeLog: | 
 | 39 |  *  10-Mar-2005 | 
 | 40 |  *  10LE Instituto Nokia de Tecnologia - INdT: | 
 | 41 |  *  A better way to walks through the page table as suggested by Hugh Dickins. | 
 | 42 |  * | 
 | 43 |  *  Simo Piiroinen <simo.piiroinen@nokia.com>: | 
 | 44 |  *  Smaps information related to shared, private, clean and dirty pages. | 
 | 45 |  * | 
 | 46 |  *  Paul Mundt <paul.mundt@nokia.com>: | 
 | 47 |  *  Overall revision about smaps. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 |  */ | 
 | 49 |  | 
 | 50 | #include <asm/uaccess.h> | 
 | 51 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <linux/errno.h> | 
 | 53 | #include <linux/time.h> | 
 | 54 | #include <linux/proc_fs.h> | 
 | 55 | #include <linux/stat.h> | 
| Andrea Righi | 5995477 | 2008-07-27 17:29:15 +0200 | [diff] [blame] | 56 | #include <linux/task_io_accounting_ops.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #include <linux/init.h> | 
| Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 58 | #include <linux/capability.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #include <linux/file.h> | 
| Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 60 | #include <linux/fdtable.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <linux/string.h> | 
 | 62 | #include <linux/seq_file.h> | 
 | 63 | #include <linux/namei.h> | 
| Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 64 | #include <linux/mnt_namespace.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #include <linux/mm.h> | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 66 | #include <linux/swap.h> | 
| Dipankar Sarma | b835996 | 2005-09-09 13:04:14 -0700 | [diff] [blame] | 67 | #include <linux/rcupdate.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #include <linux/kallsyms.h> | 
| Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 69 | #include <linux/stacktrace.h> | 
| Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 70 | #include <linux/resource.h> | 
| Kees Cook | 5096add | 2007-05-08 00:26:04 -0700 | [diff] [blame] | 71 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #include <linux/mount.h> | 
 | 73 | #include <linux/security.h> | 
 | 74 | #include <linux/ptrace.h> | 
| Roland McGrath | 0d094ef | 2008-07-25 19:45:49 -0700 | [diff] [blame] | 75 | #include <linux/tracehook.h> | 
| Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 76 | #include <linux/cgroup.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | #include <linux/cpuset.h> | 
 | 78 | #include <linux/audit.h> | 
| Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 79 | #include <linux/poll.h> | 
| Serge E. Hallyn | 1651e14 | 2006-10-02 02:18:08 -0700 | [diff] [blame] | 80 | #include <linux/nsproxy.h> | 
| Alexey Dobriyan | 8ac773b | 2006-10-19 23:28:32 -0700 | [diff] [blame] | 81 | #include <linux/oom.h> | 
| Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 82 | #include <linux/elf.h> | 
| Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 83 | #include <linux/pid_namespace.h> | 
| Al Viro | 5ad4e53 | 2009-03-29 19:50:06 -0400 | [diff] [blame] | 84 | #include <linux/fs_struct.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 85 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | #include "internal.h" | 
 | 87 |  | 
| Eric W. Biederman | 0f2fe20 | 2006-06-26 00:25:46 -0700 | [diff] [blame] | 88 | /* NOTE: | 
 | 89 |  *	Implementing inode permission operations in /proc is almost | 
 | 90 |  *	certainly an error.  Permission checks need to happen during | 
 | 91 |  *	each system call not at open time.  The reason is that most of | 
 | 92 |  *	what we wish to check for permissions in /proc varies at runtime. | 
 | 93 |  * | 
 | 94 |  *	The classic example of a problem is opening file descriptors | 
 | 95 |  *	in /proc for a task before it execs a suid executable. | 
 | 96 |  */ | 
 | 97 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | struct pid_entry { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | 	char *name; | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 100 | 	int len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | 	mode_t mode; | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 102 | 	const struct inode_operations *iop; | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 103 | 	const struct file_operations *fop; | 
| Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 104 | 	union proc_op op; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | }; | 
 | 106 |  | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 107 | #define NOD(NAME, MODE, IOP, FOP, OP) {			\ | 
| Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 108 | 	.name = (NAME),					\ | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 109 | 	.len  = sizeof(NAME) - 1,			\ | 
| Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 110 | 	.mode = MODE,					\ | 
 | 111 | 	.iop  = IOP,					\ | 
 | 112 | 	.fop  = FOP,					\ | 
 | 113 | 	.op   = OP,					\ | 
 | 114 | } | 
 | 115 |  | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 116 | #define DIR(NAME, MODE, iops, fops)	\ | 
 | 117 | 	NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} ) | 
 | 118 | #define LNK(NAME, get_link)					\ | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 119 | 	NOD(NAME, (S_IFLNK|S_IRWXUGO),				\ | 
| Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 120 | 		&proc_pid_link_inode_operations, NULL,		\ | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 121 | 		{ .proc_get_link = get_link } ) | 
 | 122 | #define REG(NAME, MODE, fops)				\ | 
 | 123 | 	NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {}) | 
 | 124 | #define INF(NAME, MODE, read)				\ | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 125 | 	NOD(NAME, (S_IFREG|(MODE)), 			\ | 
| Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 126 | 		NULL, &proc_info_file_operations,	\ | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 127 | 		{ .proc_read = read } ) | 
 | 128 | #define ONE(NAME, MODE, show)				\ | 
| Eric W. Biederman | be61408 | 2008-02-08 04:18:30 -0800 | [diff] [blame] | 129 | 	NOD(NAME, (S_IFREG|(MODE)), 			\ | 
 | 130 | 		NULL, &proc_single_file_operations,	\ | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 131 | 		{ .proc_show = show } ) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 |  | 
| Vegard Nossum | aed5417 | 2008-06-05 22:46:53 -0700 | [diff] [blame] | 133 | /* | 
 | 134 |  * Count the number of hardlinks for the pid_entry table, excluding the . | 
 | 135 |  * and .. links. | 
 | 136 |  */ | 
 | 137 | static unsigned int pid_entry_count_dirs(const struct pid_entry *entries, | 
 | 138 | 	unsigned int n) | 
 | 139 | { | 
 | 140 | 	unsigned int i; | 
 | 141 | 	unsigned int count; | 
 | 142 |  | 
 | 143 | 	count = 0; | 
 | 144 | 	for (i = 0; i < n; ++i) { | 
 | 145 | 		if (S_ISDIR(entries[i].mode)) | 
 | 146 | 			++count; | 
 | 147 | 	} | 
 | 148 |  | 
 | 149 | 	return count; | 
 | 150 | } | 
 | 151 |  | 
| Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 152 | static int get_task_root(struct task_struct *task, struct path *root) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | { | 
| Hugh Dickins | 7c2c7d9 | 2009-03-28 23:21:27 +0000 | [diff] [blame] | 154 | 	int result = -ENOENT; | 
 | 155 |  | 
| Miklos Szeredi | 0494f6e | 2005-09-06 15:18:22 -0700 | [diff] [blame] | 156 | 	task_lock(task); | 
| Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 157 | 	if (task->fs) { | 
 | 158 | 		get_fs_root(task->fs, root); | 
| Hugh Dickins | 7c2c7d9 | 2009-03-28 23:21:27 +0000 | [diff] [blame] | 159 | 		result = 0; | 
 | 160 | 	} | 
| Miklos Szeredi | 0494f6e | 2005-09-06 15:18:22 -0700 | [diff] [blame] | 161 | 	task_unlock(task); | 
| Hugh Dickins | 7c2c7d9 | 2009-03-28 23:21:27 +0000 | [diff] [blame] | 162 | 	return result; | 
| Miklos Szeredi | 0494f6e | 2005-09-06 15:18:22 -0700 | [diff] [blame] | 163 | } | 
 | 164 |  | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 165 | static int proc_cwd_link(struct inode *inode, struct path *path) | 
| Miklos Szeredi | 0494f6e | 2005-09-06 15:18:22 -0700 | [diff] [blame] | 166 | { | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 167 | 	struct task_struct *task = get_proc_task(inode); | 
| Miklos Szeredi | 0494f6e | 2005-09-06 15:18:22 -0700 | [diff] [blame] | 168 | 	int result = -ENOENT; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 169 |  | 
 | 170 | 	if (task) { | 
| Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 171 | 		task_lock(task); | 
 | 172 | 		if (task->fs) { | 
 | 173 | 			get_fs_pwd(task->fs, path); | 
 | 174 | 			result = 0; | 
 | 175 | 		} | 
 | 176 | 		task_unlock(task); | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 177 | 		put_task_struct(task); | 
 | 178 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | 	return result; | 
 | 180 | } | 
 | 181 |  | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 182 | static int proc_root_link(struct inode *inode, struct path *path) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 184 | 	struct task_struct *task = get_proc_task(inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | 	int result = -ENOENT; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 186 |  | 
 | 187 | 	if (task) { | 
| Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 188 | 		result = get_task_root(task, path); | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 189 | 		put_task_struct(task); | 
 | 190 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | 	return result; | 
 | 192 | } | 
 | 193 |  | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 194 | static struct mm_struct *__check_mem_permission(struct task_struct *task) | 
| Roland McGrath | 638fa20 | 2008-04-29 01:01:38 -0700 | [diff] [blame] | 195 | { | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 196 | 	struct mm_struct *mm; | 
 | 197 |  | 
 | 198 | 	mm = get_task_mm(task); | 
 | 199 | 	if (!mm) | 
 | 200 | 		return ERR_PTR(-EINVAL); | 
 | 201 |  | 
| Roland McGrath | 638fa20 | 2008-04-29 01:01:38 -0700 | [diff] [blame] | 202 | 	/* | 
 | 203 | 	 * A task can always look at itself, in case it chooses | 
 | 204 | 	 * to use system calls instead of load instructions. | 
 | 205 | 	 */ | 
 | 206 | 	if (task == current) | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 207 | 		return mm; | 
| Roland McGrath | 638fa20 | 2008-04-29 01:01:38 -0700 | [diff] [blame] | 208 |  | 
 | 209 | 	/* | 
 | 210 | 	 * If current is actively ptrace'ing, and would also be | 
 | 211 | 	 * permitted to freshly attach with ptrace now, permit it. | 
 | 212 | 	 */ | 
| Roland McGrath | 0d094ef | 2008-07-25 19:45:49 -0700 | [diff] [blame] | 213 | 	if (task_is_stopped_or_traced(task)) { | 
 | 214 | 		int match; | 
 | 215 | 		rcu_read_lock(); | 
 | 216 | 		match = (tracehook_tracer_task(task) == current); | 
 | 217 | 		rcu_read_unlock(); | 
 | 218 | 		if (match && ptrace_may_access(task, PTRACE_MODE_ATTACH)) | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 219 | 			return mm; | 
| Roland McGrath | 0d094ef | 2008-07-25 19:45:49 -0700 | [diff] [blame] | 220 | 	} | 
| Roland McGrath | 638fa20 | 2008-04-29 01:01:38 -0700 | [diff] [blame] | 221 |  | 
 | 222 | 	/* | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 223 | 	 * No one else is allowed. | 
| Roland McGrath | 638fa20 | 2008-04-29 01:01:38 -0700 | [diff] [blame] | 224 | 	 */ | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 225 | 	mmput(mm); | 
 | 226 | 	return ERR_PTR(-EPERM); | 
| Roland McGrath | 638fa20 | 2008-04-29 01:01:38 -0700 | [diff] [blame] | 227 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 |  | 
| Stephen Wilson | 18f661b | 2011-03-13 15:49:22 -0400 | [diff] [blame] | 229 | /* | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 230 |  * If current may access user memory in @task return a reference to the | 
 | 231 |  * corresponding mm, otherwise ERR_PTR. | 
| Stephen Wilson | 18f661b | 2011-03-13 15:49:22 -0400 | [diff] [blame] | 232 |  */ | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 233 | static struct mm_struct *check_mem_permission(struct task_struct *task) | 
| Stephen Wilson | 18f661b | 2011-03-13 15:49:22 -0400 | [diff] [blame] | 234 | { | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 235 | 	struct mm_struct *mm; | 
| Stephen Wilson | 18f661b | 2011-03-13 15:49:22 -0400 | [diff] [blame] | 236 | 	int err; | 
 | 237 |  | 
 | 238 | 	/* | 
 | 239 | 	 * Avoid racing if task exec's as we might get a new mm but validate | 
 | 240 | 	 * against old credentials. | 
 | 241 | 	 */ | 
 | 242 | 	err = mutex_lock_killable(&task->signal->cred_guard_mutex); | 
 | 243 | 	if (err) | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 244 | 		return ERR_PTR(err); | 
| Stephen Wilson | 18f661b | 2011-03-13 15:49:22 -0400 | [diff] [blame] | 245 |  | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 246 | 	mm = __check_mem_permission(task); | 
| Stephen Wilson | 18f661b | 2011-03-13 15:49:22 -0400 | [diff] [blame] | 247 | 	mutex_unlock(&task->signal->cred_guard_mutex); | 
 | 248 |  | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 249 | 	return mm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } | 
 | 251 |  | 
| Al Viro | 831830b | 2008-01-02 14:09:57 +0000 | [diff] [blame] | 252 | struct mm_struct *mm_for_maps(struct task_struct *task) | 
 | 253 | { | 
| Oleg Nesterov | 704b836 | 2009-07-10 03:27:40 +0200 | [diff] [blame] | 254 | 	struct mm_struct *mm; | 
| Al Viro | ec6fd8a | 2011-02-15 22:22:54 -0500 | [diff] [blame] | 255 | 	int err; | 
| Oleg Nesterov | 00f89d2 | 2009-07-10 03:27:38 +0200 | [diff] [blame] | 256 |  | 
| Al Viro | ec6fd8a | 2011-02-15 22:22:54 -0500 | [diff] [blame] | 257 | 	err =  mutex_lock_killable(&task->signal->cred_guard_mutex); | 
 | 258 | 	if (err) | 
 | 259 | 		return ERR_PTR(err); | 
| Oleg Nesterov | 704b836 | 2009-07-10 03:27:40 +0200 | [diff] [blame] | 260 |  | 
 | 261 | 	mm = get_task_mm(task); | 
 | 262 | 	if (mm && mm != current->mm && | 
 | 263 | 			!ptrace_may_access(task, PTRACE_MODE_READ)) { | 
 | 264 | 		mmput(mm); | 
| Al Viro | ec6fd8a | 2011-02-15 22:22:54 -0500 | [diff] [blame] | 265 | 		mm = ERR_PTR(-EACCES); | 
| Oleg Nesterov | 13f0fea | 2009-06-23 21:25:32 +0200 | [diff] [blame] | 266 | 	} | 
| KOSAKI Motohiro | 9b1bf12 | 2010-10-27 15:34:08 -0700 | [diff] [blame] | 267 | 	mutex_unlock(&task->signal->cred_guard_mutex); | 
| Oleg Nesterov | 704b836 | 2009-07-10 03:27:40 +0200 | [diff] [blame] | 268 |  | 
| Al Viro | 831830b | 2008-01-02 14:09:57 +0000 | [diff] [blame] | 269 | 	return mm; | 
| Al Viro | 831830b | 2008-01-02 14:09:57 +0000 | [diff] [blame] | 270 | } | 
 | 271 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | static int proc_pid_cmdline(struct task_struct *task, char * buffer) | 
 | 273 | { | 
 | 274 | 	int res = 0; | 
 | 275 | 	unsigned int len; | 
 | 276 | 	struct mm_struct *mm = get_task_mm(task); | 
 | 277 | 	if (!mm) | 
 | 278 | 		goto out; | 
 | 279 | 	if (!mm->arg_end) | 
 | 280 | 		goto out_mm;	/* Shh! No looking before we're done */ | 
 | 281 |  | 
 | 282 |  	len = mm->arg_end - mm->arg_start; | 
 | 283 |   | 
 | 284 | 	if (len > PAGE_SIZE) | 
 | 285 | 		len = PAGE_SIZE; | 
 | 286 |   | 
 | 287 | 	res = access_process_vm(task, mm->arg_start, buffer, len, 0); | 
 | 288 |  | 
 | 289 | 	// If the nul at the end of args has been overwritten, then | 
 | 290 | 	// assume application is using setproctitle(3). | 
 | 291 | 	if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) { | 
 | 292 | 		len = strnlen(buffer, res); | 
 | 293 | 		if (len < res) { | 
 | 294 | 		    res = len; | 
 | 295 | 		} else { | 
 | 296 | 			len = mm->env_end - mm->env_start; | 
 | 297 | 			if (len > PAGE_SIZE - res) | 
 | 298 | 				len = PAGE_SIZE - res; | 
 | 299 | 			res += access_process_vm(task, mm->env_start, buffer+res, len, 0); | 
 | 300 | 			res = strnlen(buffer, res); | 
 | 301 | 		} | 
 | 302 | 	} | 
 | 303 | out_mm: | 
 | 304 | 	mmput(mm); | 
 | 305 | out: | 
 | 306 | 	return res; | 
 | 307 | } | 
 | 308 |  | 
 | 309 | static int proc_pid_auxv(struct task_struct *task, char *buffer) | 
 | 310 | { | 
| Al Viro | 2fadaef | 2011-02-15 22:52:11 -0500 | [diff] [blame] | 311 | 	struct mm_struct *mm = mm_for_maps(task); | 
 | 312 | 	int res = PTR_ERR(mm); | 
 | 313 | 	if (mm && !IS_ERR(mm)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | 		unsigned int nwords = 0; | 
| Hannes Eder | dfe6b7d | 2008-12-30 18:49:13 +0300 | [diff] [blame] | 315 | 		do { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | 			nwords += 2; | 
| Hannes Eder | dfe6b7d | 2008-12-30 18:49:13 +0300 | [diff] [blame] | 317 | 		} while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | 		res = nwords * sizeof(mm->saved_auxv[0]); | 
 | 319 | 		if (res > PAGE_SIZE) | 
 | 320 | 			res = PAGE_SIZE; | 
 | 321 | 		memcpy(buffer, mm->saved_auxv, res); | 
 | 322 | 		mmput(mm); | 
 | 323 | 	} | 
 | 324 | 	return res; | 
 | 325 | } | 
 | 326 |  | 
 | 327 |  | 
 | 328 | #ifdef CONFIG_KALLSYMS | 
 | 329 | /* | 
 | 330 |  * Provides a wchan file via kallsyms in a proper one-value-per-file format. | 
 | 331 |  * Returns the resolved symbol.  If that fails, simply return the address. | 
 | 332 |  */ | 
 | 333 | static int proc_pid_wchan(struct task_struct *task, char *buffer) | 
 | 334 | { | 
| Alexey Dobriyan | ffb4512 | 2007-05-08 00:28:41 -0700 | [diff] [blame] | 335 | 	unsigned long wchan; | 
| Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 336 | 	char symname[KSYM_NAME_LEN]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 |  | 
 | 338 | 	wchan = get_wchan(task); | 
 | 339 |  | 
| Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 340 | 	if (lookup_symbol_name(wchan, symname) < 0) | 
| Jake Edge | f83ce3e | 2009-05-04 12:51:14 -0600 | [diff] [blame] | 341 | 		if (!ptrace_may_access(task, PTRACE_MODE_READ)) | 
 | 342 | 			return 0; | 
 | 343 | 		else | 
 | 344 | 			return sprintf(buffer, "%lu", wchan); | 
| Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 345 | 	else | 
 | 346 | 		return sprintf(buffer, "%s", symname); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | } | 
 | 348 | #endif /* CONFIG_KALLSYMS */ | 
 | 349 |  | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 350 | static int lock_trace(struct task_struct *task) | 
 | 351 | { | 
 | 352 | 	int err = mutex_lock_killable(&task->signal->cred_guard_mutex); | 
 | 353 | 	if (err) | 
 | 354 | 		return err; | 
 | 355 | 	if (!ptrace_may_access(task, PTRACE_MODE_ATTACH)) { | 
 | 356 | 		mutex_unlock(&task->signal->cred_guard_mutex); | 
 | 357 | 		return -EPERM; | 
 | 358 | 	} | 
 | 359 | 	return 0; | 
 | 360 | } | 
 | 361 |  | 
 | 362 | static void unlock_trace(struct task_struct *task) | 
 | 363 | { | 
 | 364 | 	mutex_unlock(&task->signal->cred_guard_mutex); | 
 | 365 | } | 
 | 366 |  | 
| Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 367 | #ifdef CONFIG_STACKTRACE | 
 | 368 |  | 
 | 369 | #define MAX_STACK_TRACE_DEPTH	64 | 
 | 370 |  | 
 | 371 | static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns, | 
 | 372 | 			  struct pid *pid, struct task_struct *task) | 
 | 373 | { | 
 | 374 | 	struct stack_trace trace; | 
 | 375 | 	unsigned long *entries; | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 376 | 	int err; | 
| Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 377 | 	int i; | 
 | 378 |  | 
 | 379 | 	entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL); | 
 | 380 | 	if (!entries) | 
 | 381 | 		return -ENOMEM; | 
 | 382 |  | 
 | 383 | 	trace.nr_entries	= 0; | 
 | 384 | 	trace.max_entries	= MAX_STACK_TRACE_DEPTH; | 
 | 385 | 	trace.entries		= entries; | 
 | 386 | 	trace.skip		= 0; | 
| Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 387 |  | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 388 | 	err = lock_trace(task); | 
 | 389 | 	if (!err) { | 
 | 390 | 		save_stack_trace_tsk(task, &trace); | 
 | 391 |  | 
 | 392 | 		for (i = 0; i < trace.nr_entries; i++) { | 
| Linus Torvalds | b81a618 | 2011-03-23 20:51:42 -0700 | [diff] [blame] | 393 | 			seq_printf(m, "[<%pK>] %pS\n", | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 394 | 				   (void *)entries[i], (void *)entries[i]); | 
 | 395 | 		} | 
 | 396 | 		unlock_trace(task); | 
| Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 397 | 	} | 
 | 398 | 	kfree(entries); | 
 | 399 |  | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 400 | 	return err; | 
| Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 401 | } | 
 | 402 | #endif | 
 | 403 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | #ifdef CONFIG_SCHEDSTATS | 
 | 405 | /* | 
 | 406 |  * Provides /proc/PID/schedstat | 
 | 407 |  */ | 
 | 408 | static int proc_pid_schedstat(struct task_struct *task, char *buffer) | 
 | 409 | { | 
| Balbir Singh | 172ba84 | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 410 | 	return sprintf(buffer, "%llu %llu %lu\n", | 
| Ingo Molnar | 826e08b | 2008-12-22 07:37:41 +0100 | [diff] [blame] | 411 | 			(unsigned long long)task->se.sum_exec_runtime, | 
 | 412 | 			(unsigned long long)task->sched_info.run_delay, | 
| Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 413 | 			task->sched_info.pcount); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | } | 
 | 415 | #endif | 
 | 416 |  | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 417 | #ifdef CONFIG_LATENCYTOP | 
 | 418 | static int lstats_show_proc(struct seq_file *m, void *v) | 
 | 419 | { | 
 | 420 | 	int i; | 
| Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 421 | 	struct inode *inode = m->private; | 
 | 422 | 	struct task_struct *task = get_proc_task(inode); | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 423 |  | 
| Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 424 | 	if (!task) | 
 | 425 | 		return -ESRCH; | 
 | 426 | 	seq_puts(m, "Latency Top version : v0.1\n"); | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 427 | 	for (i = 0; i < 32; i++) { | 
| Joe Perches | 34e49d4 | 2011-01-12 17:00:30 -0800 | [diff] [blame] | 428 | 		struct latency_record *lr = &task->latency_record[i]; | 
 | 429 | 		if (lr->backtrace[0]) { | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 430 | 			int q; | 
| Joe Perches | 34e49d4 | 2011-01-12 17:00:30 -0800 | [diff] [blame] | 431 | 			seq_printf(m, "%i %li %li", | 
 | 432 | 				   lr->count, lr->time, lr->max); | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 433 | 			for (q = 0; q < LT_BACKTRACEDEPTH; q++) { | 
| Joe Perches | 34e49d4 | 2011-01-12 17:00:30 -0800 | [diff] [blame] | 434 | 				unsigned long bt = lr->backtrace[q]; | 
 | 435 | 				if (!bt) | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 436 | 					break; | 
| Joe Perches | 34e49d4 | 2011-01-12 17:00:30 -0800 | [diff] [blame] | 437 | 				if (bt == ULONG_MAX) | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 438 | 					break; | 
| Joe Perches | 34e49d4 | 2011-01-12 17:00:30 -0800 | [diff] [blame] | 439 | 				seq_printf(m, " %ps", (void *)bt); | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 440 | 			} | 
| Alexey Dobriyan | 9d6de12 | 2011-01-12 17:00:32 -0800 | [diff] [blame] | 441 | 			seq_putc(m, '\n'); | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 442 | 		} | 
 | 443 |  | 
 | 444 | 	} | 
| Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 445 | 	put_task_struct(task); | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 446 | 	return 0; | 
 | 447 | } | 
 | 448 |  | 
 | 449 | static int lstats_open(struct inode *inode, struct file *file) | 
 | 450 | { | 
| Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 451 | 	return single_open(file, lstats_show_proc, inode); | 
| Hiroshi Shimamoto | d6643d1 | 2008-02-14 10:27:00 -0800 | [diff] [blame] | 452 | } | 
 | 453 |  | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 454 | static ssize_t lstats_write(struct file *file, const char __user *buf, | 
 | 455 | 			    size_t count, loff_t *offs) | 
 | 456 | { | 
| Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 457 | 	struct task_struct *task = get_proc_task(file->f_dentry->d_inode); | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 458 |  | 
| Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 459 | 	if (!task) | 
 | 460 | 		return -ESRCH; | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 461 | 	clear_all_latency_tracing(task); | 
| Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 462 | 	put_task_struct(task); | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 463 |  | 
 | 464 | 	return count; | 
 | 465 | } | 
 | 466 |  | 
 | 467 | static const struct file_operations proc_lstats_operations = { | 
 | 468 | 	.open		= lstats_open, | 
 | 469 | 	.read		= seq_read, | 
 | 470 | 	.write		= lstats_write, | 
 | 471 | 	.llseek		= seq_lseek, | 
| Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 472 | 	.release	= single_release, | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 473 | }; | 
 | 474 |  | 
 | 475 | #endif | 
 | 476 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | static int proc_oom_score(struct task_struct *task, char *buffer) | 
 | 478 | { | 
| Oleg Nesterov | b95c35e | 2010-04-01 15:13:57 +0200 | [diff] [blame] | 479 | 	unsigned long points = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 |  | 
| Alexey Dobriyan | 19c5d45 | 2007-05-08 00:26:46 -0700 | [diff] [blame] | 481 | 	read_lock(&tasklist_lock); | 
| Oleg Nesterov | b95c35e | 2010-04-01 15:13:57 +0200 | [diff] [blame] | 482 | 	if (pid_alive(task)) | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 483 | 		points = oom_badness(task, NULL, NULL, | 
 | 484 | 					totalram_pages + total_swap_pages); | 
| Alexey Dobriyan | 19c5d45 | 2007-05-08 00:26:46 -0700 | [diff] [blame] | 485 | 	read_unlock(&tasklist_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | 	return sprintf(buffer, "%lu\n", points); | 
 | 487 | } | 
 | 488 |  | 
| Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 489 | struct limit_names { | 
 | 490 | 	char *name; | 
 | 491 | 	char *unit; | 
 | 492 | }; | 
 | 493 |  | 
 | 494 | static const struct limit_names lnames[RLIM_NLIMITS] = { | 
| Kees Cook | cff4edb | 2009-09-22 16:45:32 -0700 | [diff] [blame] | 495 | 	[RLIMIT_CPU] = {"Max cpu time", "seconds"}, | 
| Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 496 | 	[RLIMIT_FSIZE] = {"Max file size", "bytes"}, | 
 | 497 | 	[RLIMIT_DATA] = {"Max data size", "bytes"}, | 
 | 498 | 	[RLIMIT_STACK] = {"Max stack size", "bytes"}, | 
 | 499 | 	[RLIMIT_CORE] = {"Max core file size", "bytes"}, | 
 | 500 | 	[RLIMIT_RSS] = {"Max resident set", "bytes"}, | 
 | 501 | 	[RLIMIT_NPROC] = {"Max processes", "processes"}, | 
 | 502 | 	[RLIMIT_NOFILE] = {"Max open files", "files"}, | 
 | 503 | 	[RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"}, | 
 | 504 | 	[RLIMIT_AS] = {"Max address space", "bytes"}, | 
 | 505 | 	[RLIMIT_LOCKS] = {"Max file locks", "locks"}, | 
 | 506 | 	[RLIMIT_SIGPENDING] = {"Max pending signals", "signals"}, | 
 | 507 | 	[RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"}, | 
 | 508 | 	[RLIMIT_NICE] = {"Max nice priority", NULL}, | 
 | 509 | 	[RLIMIT_RTPRIO] = {"Max realtime priority", NULL}, | 
| Eugene Teo | 8808117 | 2008-02-23 15:23:52 -0800 | [diff] [blame] | 510 | 	[RLIMIT_RTTIME] = {"Max realtime timeout", "us"}, | 
| Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 511 | }; | 
 | 512 |  | 
 | 513 | /* Display limits for a process */ | 
 | 514 | static int proc_pid_limits(struct task_struct *task, char *buffer) | 
 | 515 | { | 
 | 516 | 	unsigned int i; | 
 | 517 | 	int count = 0; | 
 | 518 | 	unsigned long flags; | 
 | 519 | 	char *bufptr = buffer; | 
 | 520 |  | 
 | 521 | 	struct rlimit rlim[RLIM_NLIMITS]; | 
 | 522 |  | 
| Lai Jiangshan | a6bebbc | 2008-10-05 00:51:15 +0400 | [diff] [blame] | 523 | 	if (!lock_task_sighand(task, &flags)) | 
| Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 524 | 		return 0; | 
| Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 525 | 	memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS); | 
 | 526 | 	unlock_task_sighand(task, &flags); | 
| Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 527 |  | 
 | 528 | 	/* | 
 | 529 | 	 * print the file header | 
 | 530 | 	 */ | 
 | 531 | 	count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n", | 
 | 532 | 			"Limit", "Soft Limit", "Hard Limit", "Units"); | 
 | 533 |  | 
 | 534 | 	for (i = 0; i < RLIM_NLIMITS; i++) { | 
 | 535 | 		if (rlim[i].rlim_cur == RLIM_INFINITY) | 
 | 536 | 			count += sprintf(&bufptr[count], "%-25s %-20s ", | 
 | 537 | 					 lnames[i].name, "unlimited"); | 
 | 538 | 		else | 
 | 539 | 			count += sprintf(&bufptr[count], "%-25s %-20lu ", | 
 | 540 | 					 lnames[i].name, rlim[i].rlim_cur); | 
 | 541 |  | 
 | 542 | 		if (rlim[i].rlim_max == RLIM_INFINITY) | 
 | 543 | 			count += sprintf(&bufptr[count], "%-20s ", "unlimited"); | 
 | 544 | 		else | 
 | 545 | 			count += sprintf(&bufptr[count], "%-20lu ", | 
 | 546 | 					 rlim[i].rlim_max); | 
 | 547 |  | 
 | 548 | 		if (lnames[i].unit) | 
 | 549 | 			count += sprintf(&bufptr[count], "%-10s\n", | 
 | 550 | 					 lnames[i].unit); | 
 | 551 | 		else | 
 | 552 | 			count += sprintf(&bufptr[count], "\n"); | 
 | 553 | 	} | 
 | 554 |  | 
 | 555 | 	return count; | 
 | 556 | } | 
 | 557 |  | 
| Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 558 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK | 
 | 559 | static int proc_pid_syscall(struct task_struct *task, char *buffer) | 
 | 560 | { | 
 | 561 | 	long nr; | 
 | 562 | 	unsigned long args[6], sp, pc; | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 563 | 	int res = lock_trace(task); | 
 | 564 | 	if (res) | 
 | 565 | 		return res; | 
| Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 566 |  | 
 | 567 | 	if (task_current_syscall(task, &nr, args, 6, &sp, &pc)) | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 568 | 		res = sprintf(buffer, "running\n"); | 
 | 569 | 	else if (nr < 0) | 
 | 570 | 		res = sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc); | 
 | 571 | 	else | 
 | 572 | 		res = sprintf(buffer, | 
| Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 573 | 		       "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n", | 
 | 574 | 		       nr, | 
 | 575 | 		       args[0], args[1], args[2], args[3], args[4], args[5], | 
 | 576 | 		       sp, pc); | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 577 | 	unlock_trace(task); | 
 | 578 | 	return res; | 
| Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 579 | } | 
 | 580 | #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */ | 
 | 581 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | /************************************************************************/ | 
 | 583 | /*                       Here the fs part begins                        */ | 
 | 584 | /************************************************************************/ | 
 | 585 |  | 
 | 586 | /* permission checks */ | 
| Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 587 | static int proc_fd_access_allowed(struct inode *inode) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | { | 
| Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 589 | 	struct task_struct *task; | 
 | 590 | 	int allowed = 0; | 
| Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 591 | 	/* Allow access to a task's file descriptors if it is us or we | 
 | 592 | 	 * may use ptrace attach to the process and find out that | 
 | 593 | 	 * information. | 
| Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 594 | 	 */ | 
 | 595 | 	task = get_proc_task(inode); | 
| Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 596 | 	if (task) { | 
| Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 597 | 		allowed = ptrace_may_access(task, PTRACE_MODE_READ); | 
| Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 598 | 		put_task_struct(task); | 
| Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 599 | 	} | 
| Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 600 | 	return allowed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | } | 
 | 602 |  | 
| Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 603 | static int proc_setattr(struct dentry *dentry, struct iattr *attr) | 
 | 604 | { | 
 | 605 | 	int error; | 
 | 606 | 	struct inode *inode = dentry->d_inode; | 
 | 607 |  | 
 | 608 | 	if (attr->ia_valid & ATTR_MODE) | 
 | 609 | 		return -EPERM; | 
 | 610 |  | 
 | 611 | 	error = inode_change_ok(inode, attr); | 
| Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 612 | 	if (error) | 
 | 613 | 		return error; | 
 | 614 |  | 
 | 615 | 	if ((attr->ia_valid & ATTR_SIZE) && | 
 | 616 | 	    attr->ia_size != i_size_read(inode)) { | 
 | 617 | 		error = vmtruncate(inode, attr->ia_size); | 
 | 618 | 		if (error) | 
 | 619 | 			return error; | 
 | 620 | 	} | 
 | 621 |  | 
 | 622 | 	setattr_copy(inode, attr); | 
 | 623 | 	mark_inode_dirty(inode); | 
 | 624 | 	return 0; | 
| Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 625 | } | 
 | 626 |  | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 627 | static const struct inode_operations proc_def_inode_operations = { | 
| Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 628 | 	.setattr	= proc_setattr, | 
 | 629 | }; | 
 | 630 |  | 
| Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 631 | static int mounts_open_common(struct inode *inode, struct file *file, | 
 | 632 | 			      const struct seq_operations *op) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | { | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 634 | 	struct task_struct *task = get_proc_task(inode); | 
| Pavel Emelyanov | cf7b708 | 2007-10-18 23:39:54 -0700 | [diff] [blame] | 635 | 	struct nsproxy *nsp; | 
| Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 636 | 	struct mnt_namespace *ns = NULL; | 
| Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 637 | 	struct path root; | 
| Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 638 | 	struct proc_mounts *p; | 
 | 639 | 	int ret = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 |  | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 641 | 	if (task) { | 
| Pavel Emelyanov | cf7b708 | 2007-10-18 23:39:54 -0700 | [diff] [blame] | 642 | 		rcu_read_lock(); | 
 | 643 | 		nsp = task_nsproxy(task); | 
 | 644 | 		if (nsp) { | 
 | 645 | 			ns = nsp->mnt_ns; | 
| Alexey Dobriyan | 863c470 | 2007-01-26 00:56:53 -0800 | [diff] [blame] | 646 | 			if (ns) | 
 | 647 | 				get_mnt_ns(ns); | 
 | 648 | 		} | 
| Pavel Emelyanov | cf7b708 | 2007-10-18 23:39:54 -0700 | [diff] [blame] | 649 | 		rcu_read_unlock(); | 
| Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 650 | 		if (ns && get_task_root(task, &root) == 0) | 
| Hugh Dickins | 7c2c7d9 | 2009-03-28 23:21:27 +0000 | [diff] [blame] | 651 | 			ret = 0; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 652 | 		put_task_struct(task); | 
 | 653 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 |  | 
| Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 655 | 	if (!ns) | 
 | 656 | 		goto err; | 
| Hugh Dickins | 7c2c7d9 | 2009-03-28 23:21:27 +0000 | [diff] [blame] | 657 | 	if (ret) | 
| Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 658 | 		goto err_put_ns; | 
 | 659 |  | 
| Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 660 | 	ret = -ENOMEM; | 
 | 661 | 	p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL); | 
 | 662 | 	if (!p) | 
 | 663 | 		goto err_put_path; | 
 | 664 |  | 
 | 665 | 	file->private_data = &p->m; | 
 | 666 | 	ret = seq_open(file, op); | 
 | 667 | 	if (ret) | 
 | 668 | 		goto err_free; | 
 | 669 |  | 
 | 670 | 	p->m.private = p; | 
 | 671 | 	p->ns = ns; | 
 | 672 | 	p->root = root; | 
 | 673 | 	p->event = ns->event; | 
 | 674 |  | 
 | 675 | 	return 0; | 
 | 676 |  | 
 | 677 |  err_free: | 
 | 678 | 	kfree(p); | 
 | 679 |  err_put_path: | 
 | 680 | 	path_put(&root); | 
 | 681 |  err_put_ns: | 
 | 682 | 	put_mnt_ns(ns); | 
 | 683 |  err: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | 	return ret; | 
 | 685 | } | 
 | 686 |  | 
 | 687 | static int mounts_release(struct inode *inode, struct file *file) | 
 | 688 | { | 
| Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 689 | 	struct proc_mounts *p = file->private_data; | 
 | 690 | 	path_put(&p->root); | 
 | 691 | 	put_mnt_ns(p->ns); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | 	return seq_release(inode, file); | 
 | 693 | } | 
 | 694 |  | 
| Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 695 | static unsigned mounts_poll(struct file *file, poll_table *wait) | 
 | 696 | { | 
 | 697 | 	struct proc_mounts *p = file->private_data; | 
| KOSAKI Motohiro | 31b0709 | 2009-04-09 13:57:59 +0900 | [diff] [blame] | 698 | 	unsigned res = POLLIN | POLLRDNORM; | 
| Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 699 |  | 
| Al Viro | 9f5596a | 2010-02-05 00:40:25 -0500 | [diff] [blame] | 700 | 	poll_wait(file, &p->ns->poll, wait); | 
 | 701 | 	if (mnt_had_events(p)) | 
| KOSAKI Motohiro | 31b0709 | 2009-04-09 13:57:59 +0900 | [diff] [blame] | 702 | 		res |= POLLERR | POLLPRI; | 
| Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 703 |  | 
 | 704 | 	return res; | 
 | 705 | } | 
 | 706 |  | 
| Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 707 | static int mounts_open(struct inode *inode, struct file *file) | 
 | 708 | { | 
 | 709 | 	return mounts_open_common(inode, file, &mounts_op); | 
 | 710 | } | 
 | 711 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 712 | static const struct file_operations proc_mounts_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | 	.open		= mounts_open, | 
 | 714 | 	.read		= seq_read, | 
 | 715 | 	.llseek		= seq_lseek, | 
 | 716 | 	.release	= mounts_release, | 
| Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 717 | 	.poll		= mounts_poll, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | }; | 
 | 719 |  | 
| Ram Pai | 2d4d486 | 2008-03-27 13:06:25 +0100 | [diff] [blame] | 720 | static int mountinfo_open(struct inode *inode, struct file *file) | 
 | 721 | { | 
 | 722 | 	return mounts_open_common(inode, file, &mountinfo_op); | 
 | 723 | } | 
 | 724 |  | 
 | 725 | static const struct file_operations proc_mountinfo_operations = { | 
 | 726 | 	.open		= mountinfo_open, | 
 | 727 | 	.read		= seq_read, | 
 | 728 | 	.llseek		= seq_lseek, | 
 | 729 | 	.release	= mounts_release, | 
 | 730 | 	.poll		= mounts_poll, | 
 | 731 | }; | 
 | 732 |  | 
| Chuck Lever | b4629fe | 2006-03-20 13:44:12 -0500 | [diff] [blame] | 733 | static int mountstats_open(struct inode *inode, struct file *file) | 
 | 734 | { | 
| Miklos Szeredi | a1a2c40 | 2008-03-27 13:06:24 +0100 | [diff] [blame] | 735 | 	return mounts_open_common(inode, file, &mountstats_op); | 
| Chuck Lever | b4629fe | 2006-03-20 13:44:12 -0500 | [diff] [blame] | 736 | } | 
 | 737 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 738 | static const struct file_operations proc_mountstats_operations = { | 
| Chuck Lever | b4629fe | 2006-03-20 13:44:12 -0500 | [diff] [blame] | 739 | 	.open		= mountstats_open, | 
 | 740 | 	.read		= seq_read, | 
 | 741 | 	.llseek		= seq_lseek, | 
 | 742 | 	.release	= mounts_release, | 
 | 743 | }; | 
 | 744 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | #define PROC_BLOCK_SIZE	(3*1024)		/* 4K page size but our output routines use some slack for overruns */ | 
 | 746 |  | 
 | 747 | static ssize_t proc_info_read(struct file * file, char __user * buf, | 
 | 748 | 			  size_t count, loff_t *ppos) | 
 | 749 | { | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 750 | 	struct inode * inode = file->f_path.dentry->d_inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | 	unsigned long page; | 
 | 752 | 	ssize_t length; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 753 | 	struct task_struct *task = get_proc_task(inode); | 
 | 754 |  | 
 | 755 | 	length = -ESRCH; | 
 | 756 | 	if (!task) | 
 | 757 | 		goto out_no_task; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 |  | 
 | 759 | 	if (count > PROC_BLOCK_SIZE) | 
 | 760 | 		count = PROC_BLOCK_SIZE; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 761 |  | 
 | 762 | 	length = -ENOMEM; | 
| Mel Gorman | e12ba74 | 2007-10-16 01:25:52 -0700 | [diff] [blame] | 763 | 	if (!(page = __get_free_page(GFP_TEMPORARY))) | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 764 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 |  | 
 | 766 | 	length = PROC_I(inode)->op.proc_read(task, (char*)page); | 
 | 767 |  | 
 | 768 | 	if (length >= 0) | 
 | 769 | 		length = simple_read_from_buffer(buf, count, ppos, (char *)page, length); | 
 | 770 | 	free_page(page); | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 771 | out: | 
 | 772 | 	put_task_struct(task); | 
 | 773 | out_no_task: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | 	return length; | 
 | 775 | } | 
 | 776 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 777 | static const struct file_operations proc_info_file_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | 	.read		= proc_info_read, | 
| Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 779 | 	.llseek		= generic_file_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | }; | 
 | 781 |  | 
| Eric W. Biederman | be61408 | 2008-02-08 04:18:30 -0800 | [diff] [blame] | 782 | static int proc_single_show(struct seq_file *m, void *v) | 
 | 783 | { | 
 | 784 | 	struct inode *inode = m->private; | 
 | 785 | 	struct pid_namespace *ns; | 
 | 786 | 	struct pid *pid; | 
 | 787 | 	struct task_struct *task; | 
 | 788 | 	int ret; | 
 | 789 |  | 
 | 790 | 	ns = inode->i_sb->s_fs_info; | 
 | 791 | 	pid = proc_pid(inode); | 
 | 792 | 	task = get_pid_task(pid, PIDTYPE_PID); | 
 | 793 | 	if (!task) | 
 | 794 | 		return -ESRCH; | 
 | 795 |  | 
 | 796 | 	ret = PROC_I(inode)->op.proc_show(m, ns, pid, task); | 
 | 797 |  | 
 | 798 | 	put_task_struct(task); | 
 | 799 | 	return ret; | 
 | 800 | } | 
 | 801 |  | 
 | 802 | static int proc_single_open(struct inode *inode, struct file *filp) | 
 | 803 | { | 
| Jovi Zhang | c6a3405 | 2011-01-12 17:00:34 -0800 | [diff] [blame] | 804 | 	return single_open(filp, proc_single_show, inode); | 
| Eric W. Biederman | be61408 | 2008-02-08 04:18:30 -0800 | [diff] [blame] | 805 | } | 
 | 806 |  | 
 | 807 | static const struct file_operations proc_single_file_operations = { | 
 | 808 | 	.open		= proc_single_open, | 
 | 809 | 	.read		= seq_read, | 
 | 810 | 	.llseek		= seq_lseek, | 
 | 811 | 	.release	= single_release, | 
 | 812 | }; | 
 | 813 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | static int mem_open(struct inode* inode, struct file* file) | 
 | 815 | { | 
 | 816 | 	file->private_data = (void*)((long)current->self_exec_id); | 
| KAMEZAWA Hiroyuki | 4a3956c | 2010-10-01 14:20:22 -0700 | [diff] [blame] | 817 | 	/* OK to pass negative loff_t, we can catch out-of-range */ | 
 | 818 | 	file->f_mode |= FMODE_UNSIGNED_OFFSET; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | 	return 0; | 
 | 820 | } | 
 | 821 |  | 
 | 822 | static ssize_t mem_read(struct file * file, char __user * buf, | 
 | 823 | 			size_t count, loff_t *ppos) | 
 | 824 | { | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 825 | 	struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | 	char *page; | 
 | 827 | 	unsigned long src = *ppos; | 
 | 828 | 	int ret = -ESRCH; | 
 | 829 | 	struct mm_struct *mm; | 
 | 830 |  | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 831 | 	if (!task) | 
 | 832 | 		goto out_no_task; | 
 | 833 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | 	ret = -ENOMEM; | 
| Mel Gorman | e12ba74 | 2007-10-16 01:25:52 -0700 | [diff] [blame] | 835 | 	page = (char *)__get_free_page(GFP_TEMPORARY); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | 	if (!page) | 
 | 837 | 		goto out; | 
 | 838 |  | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 839 | 	mm = check_mem_permission(task); | 
 | 840 | 	ret = PTR_ERR(mm); | 
 | 841 | 	if (IS_ERR(mm)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | 		goto out_free; | 
 | 843 |  | 
 | 844 | 	ret = -EIO; | 
 | 845 |   | 
 | 846 | 	if (file->private_data != (void*)((long)current->self_exec_id)) | 
 | 847 | 		goto out_put; | 
 | 848 |  | 
 | 849 | 	ret = 0; | 
 | 850 |   | 
 | 851 | 	while (count > 0) { | 
 | 852 | 		int this_len, retval; | 
 | 853 |  | 
 | 854 | 		this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 855 | 		retval = access_remote_vm(mm, src, page, this_len, 0); | 
 | 856 | 		if (!retval) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | 			if (!ret) | 
 | 858 | 				ret = -EIO; | 
 | 859 | 			break; | 
 | 860 | 		} | 
 | 861 |  | 
 | 862 | 		if (copy_to_user(buf, page, retval)) { | 
 | 863 | 			ret = -EFAULT; | 
 | 864 | 			break; | 
 | 865 | 		} | 
 | 866 |   | 
 | 867 | 		ret += retval; | 
 | 868 | 		src += retval; | 
 | 869 | 		buf += retval; | 
 | 870 | 		count -= retval; | 
 | 871 | 	} | 
 | 872 | 	*ppos = src; | 
 | 873 |  | 
 | 874 | out_put: | 
 | 875 | 	mmput(mm); | 
 | 876 | out_free: | 
 | 877 | 	free_page((unsigned long) page); | 
 | 878 | out: | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 879 | 	put_task_struct(task); | 
 | 880 | out_no_task: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | 	return ret; | 
 | 882 | } | 
 | 883 |  | 
| Glauber de Oliveira Costa | 63967fa | 2007-02-20 13:58:12 -0800 | [diff] [blame] | 884 | static ssize_t mem_write(struct file * file, const char __user *buf, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | 			 size_t count, loff_t *ppos) | 
 | 886 | { | 
| Frederik Deweerdt | f7ca54f | 2006-09-29 02:01:02 -0700 | [diff] [blame] | 887 | 	int copied; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | 	char *page; | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 889 | 	struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | 	unsigned long dst = *ppos; | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 891 | 	struct mm_struct *mm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 |  | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 893 | 	copied = -ESRCH; | 
 | 894 | 	if (!task) | 
 | 895 | 		goto out_no_task; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 |  | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 897 | 	mm = check_mem_permission(task); | 
 | 898 | 	copied = PTR_ERR(mm); | 
 | 899 | 	if (IS_ERR(mm)) | 
 | 900 | 		goto out_task; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 901 |  | 
| Stephen Wilson | 26947f8 | 2011-03-13 15:49:21 -0400 | [diff] [blame] | 902 | 	copied = -EIO; | 
 | 903 | 	if (file->private_data != (void *)((long)current->self_exec_id)) | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 904 | 		goto out_mm; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 905 |  | 
 | 906 | 	copied = -ENOMEM; | 
| Mel Gorman | e12ba74 | 2007-10-16 01:25:52 -0700 | [diff] [blame] | 907 | 	page = (char *)__get_free_page(GFP_TEMPORARY); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | 	if (!page) | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 909 | 		goto out_mm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 |  | 
| Frederik Deweerdt | f7ca54f | 2006-09-29 02:01:02 -0700 | [diff] [blame] | 911 | 	copied = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | 	while (count > 0) { | 
 | 913 | 		int this_len, retval; | 
 | 914 |  | 
 | 915 | 		this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; | 
 | 916 | 		if (copy_from_user(page, buf, this_len)) { | 
 | 917 | 			copied = -EFAULT; | 
 | 918 | 			break; | 
 | 919 | 		} | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 920 | 		retval = access_remote_vm(mm, dst, page, this_len, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | 		if (!retval) { | 
 | 922 | 			if (!copied) | 
 | 923 | 				copied = -EIO; | 
 | 924 | 			break; | 
 | 925 | 		} | 
 | 926 | 		copied += retval; | 
 | 927 | 		buf += retval; | 
 | 928 | 		dst += retval; | 
 | 929 | 		count -= retval;			 | 
 | 930 | 	} | 
 | 931 | 	*ppos = dst; | 
 | 932 | 	free_page((unsigned long) page); | 
| Stephen Wilson | 8b0db9d | 2011-03-13 15:49:23 -0400 | [diff] [blame] | 933 | out_mm: | 
 | 934 | 	mmput(mm); | 
 | 935 | out_task: | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 936 | 	put_task_struct(task); | 
 | 937 | out_no_task: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | 	return copied; | 
 | 939 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 |  | 
| Matt Mackall | 85863e4 | 2008-02-04 22:29:04 -0800 | [diff] [blame] | 941 | loff_t mem_lseek(struct file *file, loff_t offset, int orig) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | { | 
 | 943 | 	switch (orig) { | 
 | 944 | 	case 0: | 
 | 945 | 		file->f_pos = offset; | 
 | 946 | 		break; | 
 | 947 | 	case 1: | 
 | 948 | 		file->f_pos += offset; | 
 | 949 | 		break; | 
 | 950 | 	default: | 
 | 951 | 		return -EINVAL; | 
 | 952 | 	} | 
 | 953 | 	force_successful_syscall_return(); | 
 | 954 | 	return file->f_pos; | 
 | 955 | } | 
 | 956 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 957 | static const struct file_operations proc_mem_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | 	.llseek		= mem_lseek, | 
 | 959 | 	.read		= mem_read, | 
 | 960 | 	.write		= mem_write, | 
 | 961 | 	.open		= mem_open, | 
 | 962 | }; | 
 | 963 |  | 
| James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 964 | static ssize_t environ_read(struct file *file, char __user *buf, | 
 | 965 | 			size_t count, loff_t *ppos) | 
 | 966 | { | 
 | 967 | 	struct task_struct *task = get_proc_task(file->f_dentry->d_inode); | 
 | 968 | 	char *page; | 
 | 969 | 	unsigned long src = *ppos; | 
 | 970 | 	int ret = -ESRCH; | 
 | 971 | 	struct mm_struct *mm; | 
 | 972 |  | 
 | 973 | 	if (!task) | 
 | 974 | 		goto out_no_task; | 
 | 975 |  | 
| James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 976 | 	ret = -ENOMEM; | 
 | 977 | 	page = (char *)__get_free_page(GFP_TEMPORARY); | 
 | 978 | 	if (!page) | 
 | 979 | 		goto out; | 
 | 980 |  | 
| James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 981 |  | 
| Al Viro | d6f64b8 | 2011-02-15 22:26:01 -0500 | [diff] [blame] | 982 | 	mm = mm_for_maps(task); | 
 | 983 | 	ret = PTR_ERR(mm); | 
 | 984 | 	if (!mm || IS_ERR(mm)) | 
| James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 985 | 		goto out_free; | 
 | 986 |  | 
| Al Viro | d6f64b8 | 2011-02-15 22:26:01 -0500 | [diff] [blame] | 987 | 	ret = 0; | 
| James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 988 | 	while (count > 0) { | 
 | 989 | 		int this_len, retval, max_len; | 
 | 990 |  | 
 | 991 | 		this_len = mm->env_end - (mm->env_start + src); | 
 | 992 |  | 
 | 993 | 		if (this_len <= 0) | 
 | 994 | 			break; | 
 | 995 |  | 
 | 996 | 		max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; | 
 | 997 | 		this_len = (this_len > max_len) ? max_len : this_len; | 
 | 998 |  | 
 | 999 | 		retval = access_process_vm(task, (mm->env_start + src), | 
 | 1000 | 			page, this_len, 0); | 
 | 1001 |  | 
 | 1002 | 		if (retval <= 0) { | 
 | 1003 | 			ret = retval; | 
 | 1004 | 			break; | 
 | 1005 | 		} | 
 | 1006 |  | 
 | 1007 | 		if (copy_to_user(buf, page, retval)) { | 
 | 1008 | 			ret = -EFAULT; | 
 | 1009 | 			break; | 
 | 1010 | 		} | 
 | 1011 |  | 
 | 1012 | 		ret += retval; | 
 | 1013 | 		src += retval; | 
 | 1014 | 		buf += retval; | 
 | 1015 | 		count -= retval; | 
 | 1016 | 	} | 
 | 1017 | 	*ppos = src; | 
 | 1018 |  | 
 | 1019 | 	mmput(mm); | 
 | 1020 | out_free: | 
 | 1021 | 	free_page((unsigned long) page); | 
 | 1022 | out: | 
 | 1023 | 	put_task_struct(task); | 
 | 1024 | out_no_task: | 
 | 1025 | 	return ret; | 
 | 1026 | } | 
 | 1027 |  | 
 | 1028 | static const struct file_operations proc_environ_operations = { | 
 | 1029 | 	.read		= environ_read, | 
| Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 1030 | 	.llseek		= generic_file_llseek, | 
| James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 1031 | }; | 
 | 1032 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | static ssize_t oom_adjust_read(struct file *file, char __user *buf, | 
 | 1034 | 				size_t count, loff_t *ppos) | 
 | 1035 | { | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 1036 | 	struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); | 
| Eric W. Biederman | 8578cea | 2006-06-26 00:25:54 -0700 | [diff] [blame] | 1037 | 	char buffer[PROC_NUMBUF]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | 	size_t len; | 
| KOSAKI Motohiro | 28b83c5 | 2009-09-21 17:03:13 -0700 | [diff] [blame] | 1039 | 	int oom_adjust = OOM_DISABLE; | 
 | 1040 | 	unsigned long flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 |  | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1042 | 	if (!task) | 
 | 1043 | 		return -ESRCH; | 
| KOSAKI Motohiro | 28b83c5 | 2009-09-21 17:03:13 -0700 | [diff] [blame] | 1044 |  | 
 | 1045 | 	if (lock_task_sighand(task, &flags)) { | 
 | 1046 | 		oom_adjust = task->signal->oom_adj; | 
 | 1047 | 		unlock_task_sighand(task, &flags); | 
 | 1048 | 	} | 
 | 1049 |  | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1050 | 	put_task_struct(task); | 
 | 1051 |  | 
| Eric W. Biederman | 8578cea | 2006-06-26 00:25:54 -0700 | [diff] [blame] | 1052 | 	len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust); | 
| Akinobu Mita | 0c28f28 | 2007-05-08 00:31:41 -0700 | [diff] [blame] | 1053 |  | 
 | 1054 | 	return simple_read_from_buffer(buf, count, ppos, buffer, len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | } | 
 | 1056 |  | 
 | 1057 | static ssize_t oom_adjust_write(struct file *file, const char __user *buf, | 
 | 1058 | 				size_t count, loff_t *ppos) | 
 | 1059 | { | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1060 | 	struct task_struct *task; | 
| KOSAKI Motohiro | 5d863b8 | 2009-09-21 17:03:16 -0700 | [diff] [blame] | 1061 | 	char buffer[PROC_NUMBUF]; | 
 | 1062 | 	long oom_adjust; | 
| KOSAKI Motohiro | 28b83c5 | 2009-09-21 17:03:13 -0700 | [diff] [blame] | 1063 | 	unsigned long flags; | 
| KOSAKI Motohiro | 5d863b8 | 2009-09-21 17:03:16 -0700 | [diff] [blame] | 1064 | 	int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 |  | 
| Eric W. Biederman | 8578cea | 2006-06-26 00:25:54 -0700 | [diff] [blame] | 1066 | 	memset(buffer, 0, sizeof(buffer)); | 
 | 1067 | 	if (count > sizeof(buffer) - 1) | 
 | 1068 | 		count = sizeof(buffer) - 1; | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1069 | 	if (copy_from_user(buffer, buf, count)) { | 
 | 1070 | 		err = -EFAULT; | 
 | 1071 | 		goto out; | 
 | 1072 | 	} | 
| KOSAKI Motohiro | 5d863b8 | 2009-09-21 17:03:16 -0700 | [diff] [blame] | 1073 |  | 
 | 1074 | 	err = strict_strtol(strstrip(buffer), 0, &oom_adjust); | 
 | 1075 | 	if (err) | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1076 | 		goto out; | 
| Alexey Dobriyan | 8ac773b | 2006-10-19 23:28:32 -0700 | [diff] [blame] | 1077 | 	if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) && | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1078 | 	     oom_adjust != OOM_DISABLE) { | 
 | 1079 | 		err = -EINVAL; | 
 | 1080 | 		goto out; | 
 | 1081 | 	} | 
| KOSAKI Motohiro | 5d863b8 | 2009-09-21 17:03:16 -0700 | [diff] [blame] | 1082 |  | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 1083 | 	task = get_proc_task(file->f_path.dentry->d_inode); | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1084 | 	if (!task) { | 
 | 1085 | 		err = -ESRCH; | 
 | 1086 | 		goto out; | 
 | 1087 | 	} | 
| KOSAKI Motohiro | 28b83c5 | 2009-09-21 17:03:13 -0700 | [diff] [blame] | 1088 |  | 
| Ying Han | 3d5992d | 2010-10-26 14:21:23 -0700 | [diff] [blame] | 1089 | 	task_lock(task); | 
 | 1090 | 	if (!task->mm) { | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1091 | 		err = -EINVAL; | 
 | 1092 | 		goto err_task_lock; | 
| Ying Han | 3d5992d | 2010-10-26 14:21:23 -0700 | [diff] [blame] | 1093 | 	} | 
 | 1094 |  | 
| David Rientjes | d19d547 | 2010-10-26 14:21:26 -0700 | [diff] [blame] | 1095 | 	if (!lock_task_sighand(task, &flags)) { | 
 | 1096 | 		err = -ESRCH; | 
 | 1097 | 		goto err_task_lock; | 
 | 1098 | 	} | 
 | 1099 |  | 
 | 1100 | 	if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) { | 
 | 1101 | 		err = -EACCES; | 
 | 1102 | 		goto err_sighand; | 
 | 1103 | 	} | 
 | 1104 |  | 
| Ying Han | 3d5992d | 2010-10-26 14:21:23 -0700 | [diff] [blame] | 1105 | 	if (oom_adjust != task->signal->oom_adj) { | 
 | 1106 | 		if (oom_adjust == OOM_DISABLE) | 
 | 1107 | 			atomic_inc(&task->mm->oom_disable_count); | 
 | 1108 | 		if (task->signal->oom_adj == OOM_DISABLE) | 
 | 1109 | 			atomic_dec(&task->mm->oom_disable_count); | 
 | 1110 | 	} | 
 | 1111 |  | 
| David Rientjes | 51b1bd2 | 2010-08-09 17:19:47 -0700 | [diff] [blame] | 1112 | 	/* | 
 | 1113 | 	 * Warn that /proc/pid/oom_adj is deprecated, see | 
 | 1114 | 	 * Documentation/feature-removal-schedule.txt. | 
 | 1115 | 	 */ | 
 | 1116 | 	printk_once(KERN_WARNING "%s (%d): /proc/%d/oom_adj is deprecated, " | 
 | 1117 | 			"please use /proc/%d/oom_score_adj instead.\n", | 
 | 1118 | 			current->comm, task_pid_nr(current), | 
 | 1119 | 			task_pid_nr(task), task_pid_nr(task)); | 
| KOSAKI Motohiro | 28b83c5 | 2009-09-21 17:03:13 -0700 | [diff] [blame] | 1120 | 	task->signal->oom_adj = oom_adjust; | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1121 | 	/* | 
 | 1122 | 	 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum | 
 | 1123 | 	 * value is always attainable. | 
 | 1124 | 	 */ | 
 | 1125 | 	if (task->signal->oom_adj == OOM_ADJUST_MAX) | 
 | 1126 | 		task->signal->oom_score_adj = OOM_SCORE_ADJ_MAX; | 
 | 1127 | 	else | 
 | 1128 | 		task->signal->oom_score_adj = (oom_adjust * OOM_SCORE_ADJ_MAX) / | 
 | 1129 | 								-OOM_DISABLE; | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1130 | err_sighand: | 
| KOSAKI Motohiro | 28b83c5 | 2009-09-21 17:03:13 -0700 | [diff] [blame] | 1131 | 	unlock_task_sighand(task, &flags); | 
| David Rientjes | d19d547 | 2010-10-26 14:21:26 -0700 | [diff] [blame] | 1132 | err_task_lock: | 
 | 1133 | 	task_unlock(task); | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1134 | 	put_task_struct(task); | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1135 | out: | 
 | 1136 | 	return err < 0 ? err : count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | } | 
 | 1138 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 1139 | static const struct file_operations proc_oom_adjust_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | 	.read		= oom_adjust_read, | 
 | 1141 | 	.write		= oom_adjust_write, | 
| Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 1142 | 	.llseek		= generic_file_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | }; | 
 | 1144 |  | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1145 | static ssize_t oom_score_adj_read(struct file *file, char __user *buf, | 
 | 1146 | 					size_t count, loff_t *ppos) | 
 | 1147 | { | 
 | 1148 | 	struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); | 
 | 1149 | 	char buffer[PROC_NUMBUF]; | 
 | 1150 | 	int oom_score_adj = OOM_SCORE_ADJ_MIN; | 
 | 1151 | 	unsigned long flags; | 
 | 1152 | 	size_t len; | 
 | 1153 |  | 
 | 1154 | 	if (!task) | 
 | 1155 | 		return -ESRCH; | 
 | 1156 | 	if (lock_task_sighand(task, &flags)) { | 
 | 1157 | 		oom_score_adj = task->signal->oom_score_adj; | 
 | 1158 | 		unlock_task_sighand(task, &flags); | 
 | 1159 | 	} | 
 | 1160 | 	put_task_struct(task); | 
 | 1161 | 	len = snprintf(buffer, sizeof(buffer), "%d\n", oom_score_adj); | 
 | 1162 | 	return simple_read_from_buffer(buf, count, ppos, buffer, len); | 
 | 1163 | } | 
 | 1164 |  | 
 | 1165 | static ssize_t oom_score_adj_write(struct file *file, const char __user *buf, | 
 | 1166 | 					size_t count, loff_t *ppos) | 
 | 1167 | { | 
 | 1168 | 	struct task_struct *task; | 
 | 1169 | 	char buffer[PROC_NUMBUF]; | 
 | 1170 | 	unsigned long flags; | 
 | 1171 | 	long oom_score_adj; | 
 | 1172 | 	int err; | 
 | 1173 |  | 
 | 1174 | 	memset(buffer, 0, sizeof(buffer)); | 
 | 1175 | 	if (count > sizeof(buffer) - 1) | 
 | 1176 | 		count = sizeof(buffer) - 1; | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1177 | 	if (copy_from_user(buffer, buf, count)) { | 
 | 1178 | 		err = -EFAULT; | 
 | 1179 | 		goto out; | 
 | 1180 | 	} | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1181 |  | 
 | 1182 | 	err = strict_strtol(strstrip(buffer), 0, &oom_score_adj); | 
 | 1183 | 	if (err) | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1184 | 		goto out; | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1185 | 	if (oom_score_adj < OOM_SCORE_ADJ_MIN || | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1186 | 			oom_score_adj > OOM_SCORE_ADJ_MAX) { | 
 | 1187 | 		err = -EINVAL; | 
 | 1188 | 		goto out; | 
 | 1189 | 	} | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1190 |  | 
 | 1191 | 	task = get_proc_task(file->f_path.dentry->d_inode); | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1192 | 	if (!task) { | 
 | 1193 | 		err = -ESRCH; | 
 | 1194 | 		goto out; | 
 | 1195 | 	} | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1196 |  | 
| Ying Han | 3d5992d | 2010-10-26 14:21:23 -0700 | [diff] [blame] | 1197 | 	task_lock(task); | 
 | 1198 | 	if (!task->mm) { | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1199 | 		err = -EINVAL; | 
 | 1200 | 		goto err_task_lock; | 
| Ying Han | 3d5992d | 2010-10-26 14:21:23 -0700 | [diff] [blame] | 1201 | 	} | 
| David Rientjes | d19d547 | 2010-10-26 14:21:26 -0700 | [diff] [blame] | 1202 |  | 
 | 1203 | 	if (!lock_task_sighand(task, &flags)) { | 
 | 1204 | 		err = -ESRCH; | 
 | 1205 | 		goto err_task_lock; | 
 | 1206 | 	} | 
 | 1207 |  | 
| Mandeep Singh Baines | dabb16f | 2011-01-13 15:46:05 -0800 | [diff] [blame] | 1208 | 	if (oom_score_adj < task->signal->oom_score_adj_min && | 
| David Rientjes | d19d547 | 2010-10-26 14:21:26 -0700 | [diff] [blame] | 1209 | 			!capable(CAP_SYS_RESOURCE)) { | 
 | 1210 | 		err = -EACCES; | 
 | 1211 | 		goto err_sighand; | 
 | 1212 | 	} | 
 | 1213 |  | 
| Ying Han | 3d5992d | 2010-10-26 14:21:23 -0700 | [diff] [blame] | 1214 | 	if (oom_score_adj != task->signal->oom_score_adj) { | 
 | 1215 | 		if (oom_score_adj == OOM_SCORE_ADJ_MIN) | 
 | 1216 | 			atomic_inc(&task->mm->oom_disable_count); | 
 | 1217 | 		if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) | 
 | 1218 | 			atomic_dec(&task->mm->oom_disable_count); | 
 | 1219 | 	} | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1220 | 	task->signal->oom_score_adj = oom_score_adj; | 
| Mandeep Singh Baines | dabb16f | 2011-01-13 15:46:05 -0800 | [diff] [blame] | 1221 | 	if (has_capability_noaudit(current, CAP_SYS_RESOURCE)) | 
 | 1222 | 		task->signal->oom_score_adj_min = oom_score_adj; | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1223 | 	/* | 
 | 1224 | 	 * Scale /proc/pid/oom_adj appropriately ensuring that OOM_DISABLE is | 
 | 1225 | 	 * always attainable. | 
 | 1226 | 	 */ | 
 | 1227 | 	if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) | 
 | 1228 | 		task->signal->oom_adj = OOM_DISABLE; | 
 | 1229 | 	else | 
 | 1230 | 		task->signal->oom_adj = (oom_score_adj * OOM_ADJUST_MAX) / | 
 | 1231 | 							OOM_SCORE_ADJ_MAX; | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1232 | err_sighand: | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1233 | 	unlock_task_sighand(task, &flags); | 
| David Rientjes | d19d547 | 2010-10-26 14:21:26 -0700 | [diff] [blame] | 1234 | err_task_lock: | 
 | 1235 | 	task_unlock(task); | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1236 | 	put_task_struct(task); | 
| David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1237 | out: | 
 | 1238 | 	return err < 0 ? err : count; | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1239 | } | 
 | 1240 |  | 
 | 1241 | static const struct file_operations proc_oom_score_adj_operations = { | 
 | 1242 | 	.read		= oom_score_adj_read, | 
 | 1243 | 	.write		= oom_score_adj_write, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 1244 | 	.llseek		= default_llseek, | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1245 | }; | 
 | 1246 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | #ifdef CONFIG_AUDITSYSCALL | 
 | 1248 | #define TMPBUFLEN 21 | 
 | 1249 | static ssize_t proc_loginuid_read(struct file * file, char __user * buf, | 
 | 1250 | 				  size_t count, loff_t *ppos) | 
 | 1251 | { | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 1252 | 	struct inode * inode = file->f_path.dentry->d_inode; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1253 | 	struct task_struct *task = get_proc_task(inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | 	ssize_t length; | 
 | 1255 | 	char tmpbuf[TMPBUFLEN]; | 
 | 1256 |  | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1257 | 	if (!task) | 
 | 1258 | 		return -ESRCH; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | 	length = scnprintf(tmpbuf, TMPBUFLEN, "%u", | 
| Al Viro | 0c11b94 | 2008-01-10 04:20:52 -0500 | [diff] [blame] | 1260 | 				audit_get_loginuid(task)); | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1261 | 	put_task_struct(task); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | 	return simple_read_from_buffer(buf, count, ppos, tmpbuf, length); | 
 | 1263 | } | 
 | 1264 |  | 
 | 1265 | static ssize_t proc_loginuid_write(struct file * file, const char __user * buf, | 
 | 1266 | 				   size_t count, loff_t *ppos) | 
 | 1267 | { | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 1268 | 	struct inode * inode = file->f_path.dentry->d_inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | 	char *page, *tmp; | 
 | 1270 | 	ssize_t length; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | 	uid_t loginuid; | 
 | 1272 |  | 
 | 1273 | 	if (!capable(CAP_AUDIT_CONTROL)) | 
 | 1274 | 		return -EPERM; | 
 | 1275 |  | 
| Paul E. McKenney | 7dc5215 | 2010-02-22 17:04:52 -0800 | [diff] [blame] | 1276 | 	rcu_read_lock(); | 
 | 1277 | 	if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) { | 
 | 1278 | 		rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | 		return -EPERM; | 
| Paul E. McKenney | 7dc5215 | 2010-02-22 17:04:52 -0800 | [diff] [blame] | 1280 | 	} | 
 | 1281 | 	rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 |  | 
| Al Viro | e018290 | 2006-05-18 08:28:02 -0400 | [diff] [blame] | 1283 | 	if (count >= PAGE_SIZE) | 
 | 1284 | 		count = PAGE_SIZE - 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 |  | 
 | 1286 | 	if (*ppos != 0) { | 
 | 1287 | 		/* No partial writes. */ | 
 | 1288 | 		return -EINVAL; | 
 | 1289 | 	} | 
| Mel Gorman | e12ba74 | 2007-10-16 01:25:52 -0700 | [diff] [blame] | 1290 | 	page = (char*)__get_free_page(GFP_TEMPORARY); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | 	if (!page) | 
 | 1292 | 		return -ENOMEM; | 
 | 1293 | 	length = -EFAULT; | 
 | 1294 | 	if (copy_from_user(page, buf, count)) | 
 | 1295 | 		goto out_free_page; | 
 | 1296 |  | 
| Al Viro | e018290 | 2006-05-18 08:28:02 -0400 | [diff] [blame] | 1297 | 	page[count] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | 	loginuid = simple_strtoul(page, &tmp, 10); | 
 | 1299 | 	if (tmp == page) { | 
 | 1300 | 		length = -EINVAL; | 
 | 1301 | 		goto out_free_page; | 
 | 1302 |  | 
 | 1303 | 	} | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1304 | 	length = audit_set_loginuid(current, loginuid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | 	if (likely(length == 0)) | 
 | 1306 | 		length = count; | 
 | 1307 |  | 
 | 1308 | out_free_page: | 
 | 1309 | 	free_page((unsigned long) page); | 
 | 1310 | 	return length; | 
 | 1311 | } | 
 | 1312 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 1313 | static const struct file_operations proc_loginuid_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | 	.read		= proc_loginuid_read, | 
 | 1315 | 	.write		= proc_loginuid_write, | 
| Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 1316 | 	.llseek		= generic_file_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | }; | 
| Eric Paris | 1e0bd75 | 2008-03-13 08:15:31 -0400 | [diff] [blame] | 1318 |  | 
 | 1319 | static ssize_t proc_sessionid_read(struct file * file, char __user * buf, | 
 | 1320 | 				  size_t count, loff_t *ppos) | 
 | 1321 | { | 
 | 1322 | 	struct inode * inode = file->f_path.dentry->d_inode; | 
 | 1323 | 	struct task_struct *task = get_proc_task(inode); | 
 | 1324 | 	ssize_t length; | 
 | 1325 | 	char tmpbuf[TMPBUFLEN]; | 
 | 1326 |  | 
 | 1327 | 	if (!task) | 
 | 1328 | 		return -ESRCH; | 
 | 1329 | 	length = scnprintf(tmpbuf, TMPBUFLEN, "%u", | 
 | 1330 | 				audit_get_sessionid(task)); | 
 | 1331 | 	put_task_struct(task); | 
 | 1332 | 	return simple_read_from_buffer(buf, count, ppos, tmpbuf, length); | 
 | 1333 | } | 
 | 1334 |  | 
 | 1335 | static const struct file_operations proc_sessionid_operations = { | 
 | 1336 | 	.read		= proc_sessionid_read, | 
| Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 1337 | 	.llseek		= generic_file_llseek, | 
| Eric Paris | 1e0bd75 | 2008-03-13 08:15:31 -0400 | [diff] [blame] | 1338 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | #endif | 
 | 1340 |  | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1341 | #ifdef CONFIG_FAULT_INJECTION | 
 | 1342 | static ssize_t proc_fault_inject_read(struct file * file, char __user * buf, | 
 | 1343 | 				      size_t count, loff_t *ppos) | 
 | 1344 | { | 
 | 1345 | 	struct task_struct *task = get_proc_task(file->f_dentry->d_inode); | 
 | 1346 | 	char buffer[PROC_NUMBUF]; | 
 | 1347 | 	size_t len; | 
 | 1348 | 	int make_it_fail; | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1349 |  | 
 | 1350 | 	if (!task) | 
 | 1351 | 		return -ESRCH; | 
 | 1352 | 	make_it_fail = task->make_it_fail; | 
 | 1353 | 	put_task_struct(task); | 
 | 1354 |  | 
 | 1355 | 	len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail); | 
| Akinobu Mita | 0c28f28 | 2007-05-08 00:31:41 -0700 | [diff] [blame] | 1356 |  | 
 | 1357 | 	return simple_read_from_buffer(buf, count, ppos, buffer, len); | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1358 | } | 
 | 1359 |  | 
 | 1360 | static ssize_t proc_fault_inject_write(struct file * file, | 
 | 1361 | 			const char __user * buf, size_t count, loff_t *ppos) | 
 | 1362 | { | 
 | 1363 | 	struct task_struct *task; | 
 | 1364 | 	char buffer[PROC_NUMBUF], *end; | 
 | 1365 | 	int make_it_fail; | 
 | 1366 |  | 
 | 1367 | 	if (!capable(CAP_SYS_RESOURCE)) | 
 | 1368 | 		return -EPERM; | 
 | 1369 | 	memset(buffer, 0, sizeof(buffer)); | 
 | 1370 | 	if (count > sizeof(buffer) - 1) | 
 | 1371 | 		count = sizeof(buffer) - 1; | 
 | 1372 | 	if (copy_from_user(buffer, buf, count)) | 
 | 1373 | 		return -EFAULT; | 
| Vincent Li | cba8aaf | 2009-09-22 16:45:38 -0700 | [diff] [blame] | 1374 | 	make_it_fail = simple_strtol(strstrip(buffer), &end, 0); | 
 | 1375 | 	if (*end) | 
 | 1376 | 		return -EINVAL; | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1377 | 	task = get_proc_task(file->f_dentry->d_inode); | 
 | 1378 | 	if (!task) | 
 | 1379 | 		return -ESRCH; | 
 | 1380 | 	task->make_it_fail = make_it_fail; | 
 | 1381 | 	put_task_struct(task); | 
| Vincent Li | cba8aaf | 2009-09-22 16:45:38 -0700 | [diff] [blame] | 1382 |  | 
 | 1383 | 	return count; | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1384 | } | 
 | 1385 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 1386 | static const struct file_operations proc_fault_inject_operations = { | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1387 | 	.read		= proc_fault_inject_read, | 
 | 1388 | 	.write		= proc_fault_inject_write, | 
| Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 1389 | 	.llseek		= generic_file_llseek, | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1390 | }; | 
 | 1391 | #endif | 
 | 1392 |  | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 1393 |  | 
| Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1394 | #ifdef CONFIG_SCHED_DEBUG | 
 | 1395 | /* | 
 | 1396 |  * Print out various scheduling related per-task fields: | 
 | 1397 |  */ | 
 | 1398 | static int sched_show(struct seq_file *m, void *v) | 
 | 1399 | { | 
 | 1400 | 	struct inode *inode = m->private; | 
 | 1401 | 	struct task_struct *p; | 
 | 1402 |  | 
| Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1403 | 	p = get_proc_task(inode); | 
 | 1404 | 	if (!p) | 
 | 1405 | 		return -ESRCH; | 
 | 1406 | 	proc_sched_show_task(p, m); | 
 | 1407 |  | 
 | 1408 | 	put_task_struct(p); | 
 | 1409 |  | 
 | 1410 | 	return 0; | 
 | 1411 | } | 
 | 1412 |  | 
 | 1413 | static ssize_t | 
 | 1414 | sched_write(struct file *file, const char __user *buf, | 
 | 1415 | 	    size_t count, loff_t *offset) | 
 | 1416 | { | 
 | 1417 | 	struct inode *inode = file->f_path.dentry->d_inode; | 
 | 1418 | 	struct task_struct *p; | 
 | 1419 |  | 
| Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1420 | 	p = get_proc_task(inode); | 
 | 1421 | 	if (!p) | 
 | 1422 | 		return -ESRCH; | 
 | 1423 | 	proc_sched_set_task(p); | 
 | 1424 |  | 
 | 1425 | 	put_task_struct(p); | 
 | 1426 |  | 
 | 1427 | 	return count; | 
 | 1428 | } | 
 | 1429 |  | 
 | 1430 | static int sched_open(struct inode *inode, struct file *filp) | 
 | 1431 | { | 
| Jovi Zhang | c6a3405 | 2011-01-12 17:00:34 -0800 | [diff] [blame] | 1432 | 	return single_open(filp, sched_show, inode); | 
| Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1433 | } | 
 | 1434 |  | 
 | 1435 | static const struct file_operations proc_pid_sched_operations = { | 
 | 1436 | 	.open		= sched_open, | 
 | 1437 | 	.read		= seq_read, | 
 | 1438 | 	.write		= sched_write, | 
 | 1439 | 	.llseek		= seq_lseek, | 
| Alexey Dobriyan | 5ea473a | 2007-07-31 00:38:50 -0700 | [diff] [blame] | 1440 | 	.release	= single_release, | 
| Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1441 | }; | 
 | 1442 |  | 
 | 1443 | #endif | 
 | 1444 |  | 
| Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 1445 | #ifdef CONFIG_SCHED_AUTOGROUP | 
 | 1446 | /* | 
 | 1447 |  * Print out autogroup related information: | 
 | 1448 |  */ | 
 | 1449 | static int sched_autogroup_show(struct seq_file *m, void *v) | 
 | 1450 | { | 
 | 1451 | 	struct inode *inode = m->private; | 
 | 1452 | 	struct task_struct *p; | 
 | 1453 |  | 
 | 1454 | 	p = get_proc_task(inode); | 
 | 1455 | 	if (!p) | 
 | 1456 | 		return -ESRCH; | 
 | 1457 | 	proc_sched_autogroup_show_task(p, m); | 
 | 1458 |  | 
 | 1459 | 	put_task_struct(p); | 
 | 1460 |  | 
 | 1461 | 	return 0; | 
 | 1462 | } | 
 | 1463 |  | 
 | 1464 | static ssize_t | 
 | 1465 | sched_autogroup_write(struct file *file, const char __user *buf, | 
 | 1466 | 	    size_t count, loff_t *offset) | 
 | 1467 | { | 
 | 1468 | 	struct inode *inode = file->f_path.dentry->d_inode; | 
 | 1469 | 	struct task_struct *p; | 
 | 1470 | 	char buffer[PROC_NUMBUF]; | 
 | 1471 | 	long nice; | 
 | 1472 | 	int err; | 
 | 1473 |  | 
 | 1474 | 	memset(buffer, 0, sizeof(buffer)); | 
 | 1475 | 	if (count > sizeof(buffer) - 1) | 
 | 1476 | 		count = sizeof(buffer) - 1; | 
 | 1477 | 	if (copy_from_user(buffer, buf, count)) | 
 | 1478 | 		return -EFAULT; | 
 | 1479 |  | 
 | 1480 | 	err = strict_strtol(strstrip(buffer), 0, &nice); | 
 | 1481 | 	if (err) | 
 | 1482 | 		return -EINVAL; | 
 | 1483 |  | 
 | 1484 | 	p = get_proc_task(inode); | 
 | 1485 | 	if (!p) | 
 | 1486 | 		return -ESRCH; | 
 | 1487 |  | 
 | 1488 | 	err = nice; | 
 | 1489 | 	err = proc_sched_autogroup_set_nice(p, &err); | 
 | 1490 | 	if (err) | 
 | 1491 | 		count = err; | 
 | 1492 |  | 
 | 1493 | 	put_task_struct(p); | 
 | 1494 |  | 
 | 1495 | 	return count; | 
 | 1496 | } | 
 | 1497 |  | 
 | 1498 | static int sched_autogroup_open(struct inode *inode, struct file *filp) | 
 | 1499 | { | 
 | 1500 | 	int ret; | 
 | 1501 |  | 
 | 1502 | 	ret = single_open(filp, sched_autogroup_show, NULL); | 
 | 1503 | 	if (!ret) { | 
 | 1504 | 		struct seq_file *m = filp->private_data; | 
 | 1505 |  | 
 | 1506 | 		m->private = inode; | 
 | 1507 | 	} | 
 | 1508 | 	return ret; | 
 | 1509 | } | 
 | 1510 |  | 
 | 1511 | static const struct file_operations proc_pid_sched_autogroup_operations = { | 
 | 1512 | 	.open		= sched_autogroup_open, | 
 | 1513 | 	.read		= seq_read, | 
 | 1514 | 	.write		= sched_autogroup_write, | 
 | 1515 | 	.llseek		= seq_lseek, | 
 | 1516 | 	.release	= single_release, | 
 | 1517 | }; | 
 | 1518 |  | 
 | 1519 | #endif /* CONFIG_SCHED_AUTOGROUP */ | 
 | 1520 |  | 
| john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 1521 | static ssize_t comm_write(struct file *file, const char __user *buf, | 
 | 1522 | 				size_t count, loff_t *offset) | 
 | 1523 | { | 
 | 1524 | 	struct inode *inode = file->f_path.dentry->d_inode; | 
 | 1525 | 	struct task_struct *p; | 
 | 1526 | 	char buffer[TASK_COMM_LEN]; | 
 | 1527 |  | 
 | 1528 | 	memset(buffer, 0, sizeof(buffer)); | 
 | 1529 | 	if (count > sizeof(buffer) - 1) | 
 | 1530 | 		count = sizeof(buffer) - 1; | 
 | 1531 | 	if (copy_from_user(buffer, buf, count)) | 
 | 1532 | 		return -EFAULT; | 
 | 1533 |  | 
 | 1534 | 	p = get_proc_task(inode); | 
 | 1535 | 	if (!p) | 
 | 1536 | 		return -ESRCH; | 
 | 1537 |  | 
 | 1538 | 	if (same_thread_group(current, p)) | 
 | 1539 | 		set_task_comm(p, buffer); | 
 | 1540 | 	else | 
 | 1541 | 		count = -EINVAL; | 
 | 1542 |  | 
 | 1543 | 	put_task_struct(p); | 
 | 1544 |  | 
 | 1545 | 	return count; | 
 | 1546 | } | 
 | 1547 |  | 
 | 1548 | static int comm_show(struct seq_file *m, void *v) | 
 | 1549 | { | 
 | 1550 | 	struct inode *inode = m->private; | 
 | 1551 | 	struct task_struct *p; | 
 | 1552 |  | 
 | 1553 | 	p = get_proc_task(inode); | 
 | 1554 | 	if (!p) | 
 | 1555 | 		return -ESRCH; | 
 | 1556 |  | 
 | 1557 | 	task_lock(p); | 
 | 1558 | 	seq_printf(m, "%s\n", p->comm); | 
 | 1559 | 	task_unlock(p); | 
 | 1560 |  | 
 | 1561 | 	put_task_struct(p); | 
 | 1562 |  | 
 | 1563 | 	return 0; | 
 | 1564 | } | 
 | 1565 |  | 
 | 1566 | static int comm_open(struct inode *inode, struct file *filp) | 
 | 1567 | { | 
| Jovi Zhang | c6a3405 | 2011-01-12 17:00:34 -0800 | [diff] [blame] | 1568 | 	return single_open(filp, comm_show, inode); | 
| john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 1569 | } | 
 | 1570 |  | 
 | 1571 | static const struct file_operations proc_pid_set_comm_operations = { | 
 | 1572 | 	.open		= comm_open, | 
 | 1573 | 	.read		= seq_read, | 
 | 1574 | 	.write		= comm_write, | 
 | 1575 | 	.llseek		= seq_lseek, | 
 | 1576 | 	.release	= single_release, | 
 | 1577 | }; | 
 | 1578 |  | 
| Matt Helsley | 925d1c4 | 2008-04-29 01:01:36 -0700 | [diff] [blame] | 1579 | /* | 
 | 1580 |  * We added or removed a vma mapping the executable. The vmas are only mapped | 
 | 1581 |  * during exec and are not mapped with the mmap system call. | 
 | 1582 |  * Callers must hold down_write() on the mm's mmap_sem for these | 
 | 1583 |  */ | 
 | 1584 | void added_exe_file_vma(struct mm_struct *mm) | 
 | 1585 | { | 
 | 1586 | 	mm->num_exe_file_vmas++; | 
 | 1587 | } | 
 | 1588 |  | 
 | 1589 | void removed_exe_file_vma(struct mm_struct *mm) | 
 | 1590 | { | 
 | 1591 | 	mm->num_exe_file_vmas--; | 
 | 1592 | 	if ((mm->num_exe_file_vmas == 0) && mm->exe_file){ | 
 | 1593 | 		fput(mm->exe_file); | 
 | 1594 | 		mm->exe_file = NULL; | 
 | 1595 | 	} | 
 | 1596 |  | 
 | 1597 | } | 
 | 1598 |  | 
 | 1599 | void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) | 
 | 1600 | { | 
 | 1601 | 	if (new_exe_file) | 
 | 1602 | 		get_file(new_exe_file); | 
 | 1603 | 	if (mm->exe_file) | 
 | 1604 | 		fput(mm->exe_file); | 
 | 1605 | 	mm->exe_file = new_exe_file; | 
 | 1606 | 	mm->num_exe_file_vmas = 0; | 
 | 1607 | } | 
 | 1608 |  | 
 | 1609 | struct file *get_mm_exe_file(struct mm_struct *mm) | 
 | 1610 | { | 
 | 1611 | 	struct file *exe_file; | 
 | 1612 |  | 
 | 1613 | 	/* We need mmap_sem to protect against races with removal of | 
 | 1614 | 	 * VM_EXECUTABLE vmas */ | 
 | 1615 | 	down_read(&mm->mmap_sem); | 
 | 1616 | 	exe_file = mm->exe_file; | 
 | 1617 | 	if (exe_file) | 
 | 1618 | 		get_file(exe_file); | 
 | 1619 | 	up_read(&mm->mmap_sem); | 
 | 1620 | 	return exe_file; | 
 | 1621 | } | 
 | 1622 |  | 
 | 1623 | void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm) | 
 | 1624 | { | 
 | 1625 | 	/* It's safe to write the exe_file pointer without exe_file_lock because | 
 | 1626 | 	 * this is called during fork when the task is not yet in /proc */ | 
 | 1627 | 	newmm->exe_file = get_mm_exe_file(oldmm); | 
 | 1628 | } | 
 | 1629 |  | 
 | 1630 | static int proc_exe_link(struct inode *inode, struct path *exe_path) | 
 | 1631 | { | 
 | 1632 | 	struct task_struct *task; | 
 | 1633 | 	struct mm_struct *mm; | 
 | 1634 | 	struct file *exe_file; | 
 | 1635 |  | 
 | 1636 | 	task = get_proc_task(inode); | 
 | 1637 | 	if (!task) | 
 | 1638 | 		return -ENOENT; | 
 | 1639 | 	mm = get_task_mm(task); | 
 | 1640 | 	put_task_struct(task); | 
 | 1641 | 	if (!mm) | 
 | 1642 | 		return -ENOENT; | 
 | 1643 | 	exe_file = get_mm_exe_file(mm); | 
 | 1644 | 	mmput(mm); | 
 | 1645 | 	if (exe_file) { | 
 | 1646 | 		*exe_path = exe_file->f_path; | 
 | 1647 | 		path_get(&exe_file->f_path); | 
 | 1648 | 		fput(exe_file); | 
 | 1649 | 		return 0; | 
 | 1650 | 	} else | 
 | 1651 | 		return -ENOENT; | 
 | 1652 | } | 
 | 1653 |  | 
| Al Viro | 008b150 | 2005-08-20 00:17:39 +0100 | [diff] [blame] | 1654 | static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | { | 
 | 1656 | 	struct inode *inode = dentry->d_inode; | 
 | 1657 | 	int error = -EACCES; | 
 | 1658 |  | 
 | 1659 | 	/* We don't need a base pointer in the /proc filesystem */ | 
| Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 1660 | 	path_put(&nd->path); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 |  | 
| Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 1662 | 	/* Are we allowed to snoop on the tasks file descriptors? */ | 
 | 1663 | 	if (!proc_fd_access_allowed(inode)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 |  | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1666 | 	error = PROC_I(inode)->op.proc_get_link(inode, &nd->path); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | out: | 
| Al Viro | 008b150 | 2005-08-20 00:17:39 +0100 | [diff] [blame] | 1668 | 	return ERR_PTR(error); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | } | 
 | 1670 |  | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1671 | static int do_proc_readlink(struct path *path, char __user *buffer, int buflen) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | { | 
| Mel Gorman | e12ba74 | 2007-10-16 01:25:52 -0700 | [diff] [blame] | 1673 | 	char *tmp = (char*)__get_free_page(GFP_TEMPORARY); | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1674 | 	char *pathname; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | 	int len; | 
 | 1676 |  | 
 | 1677 | 	if (!tmp) | 
 | 1678 | 		return -ENOMEM; | 
| Akinobu Mita | 0c28f28 | 2007-05-08 00:31:41 -0700 | [diff] [blame] | 1679 |  | 
| Eric W. Biederman | 7b2a69b | 2010-12-05 15:51:21 -0800 | [diff] [blame] | 1680 | 	pathname = d_path(path, tmp, PAGE_SIZE); | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1681 | 	len = PTR_ERR(pathname); | 
 | 1682 | 	if (IS_ERR(pathname)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | 		goto out; | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1684 | 	len = tmp + PAGE_SIZE - 1 - pathname; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 |  | 
 | 1686 | 	if (len > buflen) | 
 | 1687 | 		len = buflen; | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1688 | 	if (copy_to_user(buffer, pathname, len)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | 		len = -EFAULT; | 
 | 1690 |  out: | 
 | 1691 | 	free_page((unsigned long)tmp); | 
 | 1692 | 	return len; | 
 | 1693 | } | 
 | 1694 |  | 
 | 1695 | static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen) | 
 | 1696 | { | 
 | 1697 | 	int error = -EACCES; | 
 | 1698 | 	struct inode *inode = dentry->d_inode; | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1699 | 	struct path path; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 |  | 
| Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 1701 | 	/* Are we allowed to snoop on the tasks file descriptors? */ | 
 | 1702 | 	if (!proc_fd_access_allowed(inode)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 |  | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1705 | 	error = PROC_I(inode)->op.proc_get_link(inode, &path); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | 	if (error) | 
 | 1707 | 		goto out; | 
 | 1708 |  | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1709 | 	error = do_proc_readlink(&path, buffer, buflen); | 
 | 1710 | 	path_put(&path); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | 	return error; | 
 | 1713 | } | 
 | 1714 |  | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 1715 | static const struct inode_operations proc_pid_link_inode_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | 	.readlink	= proc_pid_readlink, | 
| Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 1717 | 	.follow_link	= proc_pid_follow_link, | 
 | 1718 | 	.setattr	= proc_setattr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | }; | 
 | 1720 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1721 |  | 
 | 1722 | /* building an inode */ | 
 | 1723 |  | 
 | 1724 | static int task_dumpable(struct task_struct *task) | 
 | 1725 | { | 
 | 1726 | 	int dumpable = 0; | 
 | 1727 | 	struct mm_struct *mm; | 
 | 1728 |  | 
 | 1729 | 	task_lock(task); | 
 | 1730 | 	mm = task->mm; | 
 | 1731 | 	if (mm) | 
| Kawai, Hidehiro | 6c5d523 | 2007-07-19 01:48:27 -0700 | [diff] [blame] | 1732 | 		dumpable = get_dumpable(mm); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1733 | 	task_unlock(task); | 
 | 1734 | 	if(dumpable == 1) | 
 | 1735 | 		return 1; | 
 | 1736 | 	return 0; | 
 | 1737 | } | 
 | 1738 |  | 
 | 1739 |  | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 1740 | static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task) | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1741 | { | 
 | 1742 | 	struct inode * inode; | 
 | 1743 | 	struct proc_inode *ei; | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1744 | 	const struct cred *cred; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1745 |  | 
 | 1746 | 	/* We need a new inode */ | 
 | 1747 |  | 
 | 1748 | 	inode = new_inode(sb); | 
 | 1749 | 	if (!inode) | 
 | 1750 | 		goto out; | 
 | 1751 |  | 
 | 1752 | 	/* Common stuff */ | 
 | 1753 | 	ei = PROC_I(inode); | 
| Christoph Hellwig | 85fe402 | 2010-10-23 11:19:54 -0400 | [diff] [blame] | 1754 | 	inode->i_ino = get_next_ino(); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1755 | 	inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1756 | 	inode->i_op = &proc_def_inode_operations; | 
 | 1757 |  | 
 | 1758 | 	/* | 
 | 1759 | 	 * grab the reference to task. | 
 | 1760 | 	 */ | 
| Oleg Nesterov | 1a657f7 | 2006-10-02 02:18:59 -0700 | [diff] [blame] | 1761 | 	ei->pid = get_task_pid(task, PIDTYPE_PID); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1762 | 	if (!ei->pid) | 
 | 1763 | 		goto out_unlock; | 
 | 1764 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1765 | 	if (task_dumpable(task)) { | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1766 | 		rcu_read_lock(); | 
 | 1767 | 		cred = __task_cred(task); | 
 | 1768 | 		inode->i_uid = cred->euid; | 
 | 1769 | 		inode->i_gid = cred->egid; | 
 | 1770 | 		rcu_read_unlock(); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1771 | 	} | 
 | 1772 | 	security_task_to_inode(task, inode); | 
 | 1773 |  | 
 | 1774 | out: | 
 | 1775 | 	return inode; | 
 | 1776 |  | 
 | 1777 | out_unlock: | 
 | 1778 | 	iput(inode); | 
 | 1779 | 	return NULL; | 
 | 1780 | } | 
 | 1781 |  | 
 | 1782 | static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) | 
 | 1783 | { | 
 | 1784 | 	struct inode *inode = dentry->d_inode; | 
 | 1785 | 	struct task_struct *task; | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1786 | 	const struct cred *cred; | 
 | 1787 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1788 | 	generic_fillattr(inode, stat); | 
 | 1789 |  | 
 | 1790 | 	rcu_read_lock(); | 
 | 1791 | 	stat->uid = 0; | 
 | 1792 | 	stat->gid = 0; | 
 | 1793 | 	task = pid_task(proc_pid(inode), PIDTYPE_PID); | 
 | 1794 | 	if (task) { | 
 | 1795 | 		if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) || | 
 | 1796 | 		    task_dumpable(task)) { | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1797 | 			cred = __task_cred(task); | 
 | 1798 | 			stat->uid = cred->euid; | 
 | 1799 | 			stat->gid = cred->egid; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1800 | 		} | 
 | 1801 | 	} | 
 | 1802 | 	rcu_read_unlock(); | 
 | 1803 | 	return 0; | 
 | 1804 | } | 
 | 1805 |  | 
 | 1806 | /* dentry stuff */ | 
 | 1807 |  | 
 | 1808 | /* | 
 | 1809 |  *	Exceptional case: normally we are not allowed to unhash a busy | 
 | 1810 |  * directory. In this case, however, we can do it - no aliasing problems | 
 | 1811 |  * due to the way we treat inodes. | 
 | 1812 |  * | 
 | 1813 |  * Rewrite the inode's ownerships here because the owning task may have | 
 | 1814 |  * performed a setuid(), etc. | 
 | 1815 |  * | 
 | 1816 |  * Before the /proc/pid/status file was created the only way to read | 
 | 1817 |  * the effective uid of a /process was to stat /proc/pid.  Reading | 
 | 1818 |  * /proc/pid/status is slow enough that procps and other packages | 
 | 1819 |  * kept stating /proc/pid.  To keep the rules in /proc simple I have | 
 | 1820 |  * made this apply to all per process world readable and executable | 
 | 1821 |  * directories. | 
 | 1822 |  */ | 
 | 1823 | static int pid_revalidate(struct dentry *dentry, struct nameidata *nd) | 
 | 1824 | { | 
| Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 1825 | 	struct inode *inode; | 
 | 1826 | 	struct task_struct *task; | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1827 | 	const struct cred *cred; | 
 | 1828 |  | 
| Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 1829 | 	if (nd && nd->flags & LOOKUP_RCU) | 
 | 1830 | 		return -ECHILD; | 
 | 1831 |  | 
 | 1832 | 	inode = dentry->d_inode; | 
 | 1833 | 	task = get_proc_task(inode); | 
 | 1834 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1835 | 	if (task) { | 
 | 1836 | 		if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) || | 
 | 1837 | 		    task_dumpable(task)) { | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1838 | 			rcu_read_lock(); | 
 | 1839 | 			cred = __task_cred(task); | 
 | 1840 | 			inode->i_uid = cred->euid; | 
 | 1841 | 			inode->i_gid = cred->egid; | 
 | 1842 | 			rcu_read_unlock(); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1843 | 		} else { | 
 | 1844 | 			inode->i_uid = 0; | 
 | 1845 | 			inode->i_gid = 0; | 
 | 1846 | 		} | 
 | 1847 | 		inode->i_mode &= ~(S_ISUID | S_ISGID); | 
 | 1848 | 		security_task_to_inode(task, inode); | 
 | 1849 | 		put_task_struct(task); | 
 | 1850 | 		return 1; | 
 | 1851 | 	} | 
 | 1852 | 	d_drop(dentry); | 
 | 1853 | 	return 0; | 
 | 1854 | } | 
 | 1855 |  | 
| Nick Piggin | fe15ce4 | 2011-01-07 17:49:23 +1100 | [diff] [blame] | 1856 | static int pid_delete_dentry(const struct dentry * dentry) | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1857 | { | 
 | 1858 | 	/* Is the task we represent dead? | 
 | 1859 | 	 * If so, then don't put the dentry on the lru list, | 
 | 1860 | 	 * kill it immediately. | 
 | 1861 | 	 */ | 
 | 1862 | 	return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first; | 
 | 1863 | } | 
 | 1864 |  | 
| Al Viro | d72f71e | 2009-02-20 05:58:47 +0000 | [diff] [blame] | 1865 | static const struct dentry_operations pid_dentry_operations = | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1866 | { | 
 | 1867 | 	.d_revalidate	= pid_revalidate, | 
 | 1868 | 	.d_delete	= pid_delete_dentry, | 
 | 1869 | }; | 
 | 1870 |  | 
 | 1871 | /* Lookups */ | 
 | 1872 |  | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 1873 | typedef struct dentry *instantiate_t(struct inode *, struct dentry *, | 
 | 1874 | 				struct task_struct *, const void *); | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 1875 |  | 
| Eric W. Biederman | 1c0d04c | 2006-10-02 02:18:57 -0700 | [diff] [blame] | 1876 | /* | 
 | 1877 |  * Fill a directory entry. | 
 | 1878 |  * | 
 | 1879 |  * If possible create the dcache entry and derive our inode number and | 
 | 1880 |  * file type from dcache entry. | 
 | 1881 |  * | 
 | 1882 |  * Since all of the proc inode numbers are dynamically generated, the inode | 
 | 1883 |  * numbers do not exist until the inode is cache.  This means creating the | 
 | 1884 |  * the dcache entry in readdir is necessary to keep the inode numbers | 
 | 1885 |  * reported by readdir in sync with the inode numbers reported | 
 | 1886 |  * by stat. | 
 | 1887 |  */ | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 1888 | static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir, | 
 | 1889 | 	char *name, int len, | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 1890 | 	instantiate_t instantiate, struct task_struct *task, const void *ptr) | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 1891 | { | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 1892 | 	struct dentry *child, *dir = filp->f_path.dentry; | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 1893 | 	struct inode *inode; | 
 | 1894 | 	struct qstr qname; | 
 | 1895 | 	ino_t ino = 0; | 
 | 1896 | 	unsigned type = DT_UNKNOWN; | 
 | 1897 |  | 
 | 1898 | 	qname.name = name; | 
 | 1899 | 	qname.len  = len; | 
 | 1900 | 	qname.hash = full_name_hash(name, len); | 
 | 1901 |  | 
 | 1902 | 	child = d_lookup(dir, &qname); | 
 | 1903 | 	if (!child) { | 
 | 1904 | 		struct dentry *new; | 
 | 1905 | 		new = d_alloc(dir, &qname); | 
 | 1906 | 		if (new) { | 
 | 1907 | 			child = instantiate(dir->d_inode, new, task, ptr); | 
 | 1908 | 			if (child) | 
 | 1909 | 				dput(new); | 
 | 1910 | 			else | 
 | 1911 | 				child = new; | 
 | 1912 | 		} | 
 | 1913 | 	} | 
 | 1914 | 	if (!child || IS_ERR(child) || !child->d_inode) | 
 | 1915 | 		goto end_instantiate; | 
 | 1916 | 	inode = child->d_inode; | 
 | 1917 | 	if (inode) { | 
 | 1918 | 		ino = inode->i_ino; | 
 | 1919 | 		type = inode->i_mode >> 12; | 
 | 1920 | 	} | 
 | 1921 | 	dput(child); | 
 | 1922 | end_instantiate: | 
 | 1923 | 	if (!ino) | 
 | 1924 | 		ino = find_inode_number(dir, &qname); | 
 | 1925 | 	if (!ino) | 
 | 1926 | 		ino = 1; | 
 | 1927 | 	return filldir(dirent, name, len, filp->f_pos, ino, type); | 
 | 1928 | } | 
 | 1929 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1930 | static unsigned name_to_int(struct dentry *dentry) | 
 | 1931 | { | 
 | 1932 | 	const char *name = dentry->d_name.name; | 
 | 1933 | 	int len = dentry->d_name.len; | 
 | 1934 | 	unsigned n = 0; | 
 | 1935 |  | 
 | 1936 | 	if (len > 1 && *name == '0') | 
 | 1937 | 		goto out; | 
 | 1938 | 	while (len-- > 0) { | 
 | 1939 | 		unsigned c = *name++ - '0'; | 
 | 1940 | 		if (c > 9) | 
 | 1941 | 			goto out; | 
 | 1942 | 		if (n >= (~0U-9)/10) | 
 | 1943 | 			goto out; | 
 | 1944 | 		n *= 10; | 
 | 1945 | 		n += c; | 
 | 1946 | 	} | 
 | 1947 | 	return n; | 
 | 1948 | out: | 
 | 1949 | 	return ~0U; | 
 | 1950 | } | 
 | 1951 |  | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 1952 | #define PROC_FDINFO_MAX 64 | 
 | 1953 |  | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1954 | static int proc_fd_info(struct inode *inode, struct path *path, char *info) | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1955 | { | 
 | 1956 | 	struct task_struct *task = get_proc_task(inode); | 
 | 1957 | 	struct files_struct *files = NULL; | 
 | 1958 | 	struct file *file; | 
 | 1959 | 	int fd = proc_fd(inode); | 
 | 1960 |  | 
 | 1961 | 	if (task) { | 
 | 1962 | 		files = get_files_struct(task); | 
 | 1963 | 		put_task_struct(task); | 
 | 1964 | 	} | 
 | 1965 | 	if (files) { | 
 | 1966 | 		/* | 
 | 1967 | 		 * We are not taking a ref to the file structure, so we must | 
 | 1968 | 		 * hold ->file_lock. | 
 | 1969 | 		 */ | 
 | 1970 | 		spin_lock(&files->file_lock); | 
 | 1971 | 		file = fcheck_files(files, fd); | 
 | 1972 | 		if (file) { | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1973 | 			if (path) { | 
 | 1974 | 				*path = file->f_path; | 
 | 1975 | 				path_get(&file->f_path); | 
 | 1976 | 			} | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 1977 | 			if (info) | 
 | 1978 | 				snprintf(info, PROC_FDINFO_MAX, | 
 | 1979 | 					 "pos:\t%lli\n" | 
 | 1980 | 					 "flags:\t0%o\n", | 
 | 1981 | 					 (long long) file->f_pos, | 
 | 1982 | 					 file->f_flags); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1983 | 			spin_unlock(&files->file_lock); | 
 | 1984 | 			put_files_struct(files); | 
 | 1985 | 			return 0; | 
 | 1986 | 		} | 
 | 1987 | 		spin_unlock(&files->file_lock); | 
 | 1988 | 		put_files_struct(files); | 
 | 1989 | 	} | 
 | 1990 | 	return -ENOENT; | 
 | 1991 | } | 
 | 1992 |  | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1993 | static int proc_fd_link(struct inode *inode, struct path *path) | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 1994 | { | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1995 | 	return proc_fd_info(inode, path, NULL); | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 1996 | } | 
 | 1997 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1998 | static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd) | 
 | 1999 | { | 
| Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 2000 | 	struct inode *inode; | 
 | 2001 | 	struct task_struct *task; | 
 | 2002 | 	int fd; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2003 | 	struct files_struct *files; | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2004 | 	const struct cred *cred; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2005 |  | 
| Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 2006 | 	if (nd && nd->flags & LOOKUP_RCU) | 
 | 2007 | 		return -ECHILD; | 
 | 2008 |  | 
 | 2009 | 	inode = dentry->d_inode; | 
 | 2010 | 	task = get_proc_task(inode); | 
 | 2011 | 	fd = proc_fd(inode); | 
 | 2012 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2013 | 	if (task) { | 
 | 2014 | 		files = get_files_struct(task); | 
 | 2015 | 		if (files) { | 
 | 2016 | 			rcu_read_lock(); | 
 | 2017 | 			if (fcheck_files(files, fd)) { | 
 | 2018 | 				rcu_read_unlock(); | 
 | 2019 | 				put_files_struct(files); | 
 | 2020 | 				if (task_dumpable(task)) { | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2021 | 					rcu_read_lock(); | 
 | 2022 | 					cred = __task_cred(task); | 
 | 2023 | 					inode->i_uid = cred->euid; | 
 | 2024 | 					inode->i_gid = cred->egid; | 
 | 2025 | 					rcu_read_unlock(); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2026 | 				} else { | 
 | 2027 | 					inode->i_uid = 0; | 
 | 2028 | 					inode->i_gid = 0; | 
 | 2029 | 				} | 
 | 2030 | 				inode->i_mode &= ~(S_ISUID | S_ISGID); | 
 | 2031 | 				security_task_to_inode(task, inode); | 
 | 2032 | 				put_task_struct(task); | 
 | 2033 | 				return 1; | 
 | 2034 | 			} | 
 | 2035 | 			rcu_read_unlock(); | 
 | 2036 | 			put_files_struct(files); | 
 | 2037 | 		} | 
 | 2038 | 		put_task_struct(task); | 
 | 2039 | 	} | 
 | 2040 | 	d_drop(dentry); | 
 | 2041 | 	return 0; | 
 | 2042 | } | 
 | 2043 |  | 
| Al Viro | d72f71e | 2009-02-20 05:58:47 +0000 | [diff] [blame] | 2044 | static const struct dentry_operations tid_fd_dentry_operations = | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2045 | { | 
 | 2046 | 	.d_revalidate	= tid_fd_revalidate, | 
 | 2047 | 	.d_delete	= pid_delete_dentry, | 
 | 2048 | }; | 
 | 2049 |  | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2050 | static struct dentry *proc_fd_instantiate(struct inode *dir, | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2051 | 	struct dentry *dentry, struct task_struct *task, const void *ptr) | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2052 | { | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2053 | 	unsigned fd = *(const unsigned *)ptr; | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2054 | 	struct file *file; | 
 | 2055 | 	struct files_struct *files; | 
 | 2056 |  	struct inode *inode; | 
 | 2057 |  	struct proc_inode *ei; | 
 | 2058 | 	struct dentry *error = ERR_PTR(-ENOENT); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2059 |  | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2060 | 	inode = proc_pid_make_inode(dir->i_sb, task); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2061 | 	if (!inode) | 
 | 2062 | 		goto out; | 
 | 2063 | 	ei = PROC_I(inode); | 
 | 2064 | 	ei->fd = fd; | 
 | 2065 | 	files = get_files_struct(task); | 
 | 2066 | 	if (!files) | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2067 | 		goto out_iput; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2068 | 	inode->i_mode = S_IFLNK; | 
 | 2069 |  | 
 | 2070 | 	/* | 
 | 2071 | 	 * We are not taking a ref to the file structure, so we must | 
 | 2072 | 	 * hold ->file_lock. | 
 | 2073 | 	 */ | 
 | 2074 | 	spin_lock(&files->file_lock); | 
 | 2075 | 	file = fcheck_files(files, fd); | 
 | 2076 | 	if (!file) | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2077 | 		goto out_unlock; | 
| Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 2078 | 	if (file->f_mode & FMODE_READ) | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2079 | 		inode->i_mode |= S_IRUSR | S_IXUSR; | 
| Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 2080 | 	if (file->f_mode & FMODE_WRITE) | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2081 | 		inode->i_mode |= S_IWUSR | S_IXUSR; | 
 | 2082 | 	spin_unlock(&files->file_lock); | 
 | 2083 | 	put_files_struct(files); | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2084 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2085 | 	inode->i_op = &proc_pid_link_inode_operations; | 
 | 2086 | 	inode->i_size = 64; | 
 | 2087 | 	ei->op.proc_get_link = proc_fd_link; | 
| Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 2088 | 	d_set_d_op(dentry, &tid_fd_dentry_operations); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2089 | 	d_add(dentry, inode); | 
 | 2090 | 	/* Close the race of the process dying before we return the dentry */ | 
 | 2091 | 	if (tid_fd_revalidate(dentry, NULL)) | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2092 | 		error = NULL; | 
 | 2093 |  | 
 | 2094 |  out: | 
 | 2095 | 	return error; | 
 | 2096 | out_unlock: | 
 | 2097 | 	spin_unlock(&files->file_lock); | 
 | 2098 | 	put_files_struct(files); | 
 | 2099 | out_iput: | 
 | 2100 | 	iput(inode); | 
 | 2101 | 	goto out; | 
 | 2102 | } | 
 | 2103 |  | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2104 | static struct dentry *proc_lookupfd_common(struct inode *dir, | 
 | 2105 | 					   struct dentry *dentry, | 
 | 2106 | 					   instantiate_t instantiate) | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2107 | { | 
 | 2108 | 	struct task_struct *task = get_proc_task(dir); | 
 | 2109 | 	unsigned fd = name_to_int(dentry); | 
 | 2110 | 	struct dentry *result = ERR_PTR(-ENOENT); | 
 | 2111 |  | 
 | 2112 | 	if (!task) | 
 | 2113 | 		goto out_no_task; | 
 | 2114 | 	if (fd == ~0U) | 
 | 2115 | 		goto out; | 
 | 2116 |  | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2117 | 	result = instantiate(dir, dentry, task, &fd); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2118 | out: | 
 | 2119 | 	put_task_struct(task); | 
 | 2120 | out_no_task: | 
 | 2121 | 	return result; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2122 | } | 
 | 2123 |  | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2124 | static int proc_readfd_common(struct file * filp, void * dirent, | 
 | 2125 | 			      filldir_t filldir, instantiate_t instantiate) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2126 | { | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 2127 | 	struct dentry *dentry = filp->f_path.dentry; | 
| Eric W. Biederman | 5634708 | 2006-06-26 00:25:40 -0700 | [diff] [blame] | 2128 | 	struct inode *inode = dentry->d_inode; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2129 | 	struct task_struct *p = get_proc_task(inode); | 
| Pavel Emelyanov | 457c251 | 2007-10-18 23:40:43 -0700 | [diff] [blame] | 2130 | 	unsigned int fd, ino; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | 	int retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | 	struct files_struct * files; | 
 | 2133 |  | 
 | 2134 | 	retval = -ENOENT; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2135 | 	if (!p) | 
 | 2136 | 		goto out_no_task; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | 	retval = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 |  | 
 | 2139 | 	fd = filp->f_pos; | 
 | 2140 | 	switch (fd) { | 
 | 2141 | 		case 0: | 
 | 2142 | 			if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0) | 
 | 2143 | 				goto out; | 
 | 2144 | 			filp->f_pos++; | 
 | 2145 | 		case 1: | 
| Eric W. Biederman | 5634708 | 2006-06-26 00:25:40 -0700 | [diff] [blame] | 2146 | 			ino = parent_ino(dentry); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2147 | 			if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0) | 
 | 2148 | 				goto out; | 
 | 2149 | 			filp->f_pos++; | 
 | 2150 | 		default: | 
 | 2151 | 			files = get_files_struct(p); | 
 | 2152 | 			if (!files) | 
 | 2153 | 				goto out; | 
| Dipankar Sarma | b835996 | 2005-09-09 13:04:14 -0700 | [diff] [blame] | 2154 | 			rcu_read_lock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | 			for (fd = filp->f_pos-2; | 
| Al Viro | 9b4f526 | 2008-04-22 01:32:44 -0400 | [diff] [blame] | 2156 | 			     fd < files_fdtable(files)->max_fds; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | 			     fd++, filp->f_pos++) { | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2158 | 				char name[PROC_NUMBUF]; | 
 | 2159 | 				int len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 |  | 
 | 2161 | 				if (!fcheck_files(files, fd)) | 
 | 2162 | 					continue; | 
| Dipankar Sarma | b835996 | 2005-09-09 13:04:14 -0700 | [diff] [blame] | 2163 | 				rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 |  | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2165 | 				len = snprintf(name, sizeof(name), "%d", fd); | 
 | 2166 | 				if (proc_fill_cache(filp, dirent, filldir, | 
 | 2167 | 						    name, len, instantiate, | 
 | 2168 | 						    p, &fd) < 0) { | 
| Dipankar Sarma | b835996 | 2005-09-09 13:04:14 -0700 | [diff] [blame] | 2169 | 					rcu_read_lock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2170 | 					break; | 
 | 2171 | 				} | 
| Dipankar Sarma | b835996 | 2005-09-09 13:04:14 -0700 | [diff] [blame] | 2172 | 				rcu_read_lock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | 			} | 
| Dipankar Sarma | b835996 | 2005-09-09 13:04:14 -0700 | [diff] [blame] | 2174 | 			rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | 			put_files_struct(files); | 
 | 2176 | 	} | 
 | 2177 | out: | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2178 | 	put_task_struct(p); | 
 | 2179 | out_no_task: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | 	return retval; | 
 | 2181 | } | 
 | 2182 |  | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2183 | static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry, | 
 | 2184 | 				    struct nameidata *nd) | 
 | 2185 | { | 
 | 2186 | 	return proc_lookupfd_common(dir, dentry, proc_fd_instantiate); | 
 | 2187 | } | 
 | 2188 |  | 
 | 2189 | static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir) | 
 | 2190 | { | 
 | 2191 | 	return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate); | 
 | 2192 | } | 
 | 2193 |  | 
 | 2194 | static ssize_t proc_fdinfo_read(struct file *file, char __user *buf, | 
 | 2195 | 				      size_t len, loff_t *ppos) | 
 | 2196 | { | 
 | 2197 | 	char tmp[PROC_FDINFO_MAX]; | 
| Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 2198 | 	int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp); | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2199 | 	if (!err) | 
 | 2200 | 		err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp)); | 
 | 2201 | 	return err; | 
 | 2202 | } | 
 | 2203 |  | 
 | 2204 | static const struct file_operations proc_fdinfo_file_operations = { | 
| Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 2205 | 	.open           = nonseekable_open, | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2206 | 	.read		= proc_fdinfo_read, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 2207 | 	.llseek		= no_llseek, | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2208 | }; | 
 | 2209 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 2210 | static const struct file_operations proc_fd_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | 	.read		= generic_read_dir, | 
 | 2212 | 	.readdir	= proc_readfd, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 2213 | 	.llseek		= default_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | }; | 
 | 2215 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | /* | 
| Alexey Dobriyan | 8948e11 | 2007-05-08 00:23:35 -0700 | [diff] [blame] | 2217 |  * /proc/pid/fd needs a special permission handler so that a process can still | 
 | 2218 |  * access /proc/self/fd after it has executed a setuid(). | 
 | 2219 |  */ | 
| Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 2220 | static int proc_fd_permission(struct inode *inode, int mask, unsigned int flags) | 
| Alexey Dobriyan | 8948e11 | 2007-05-08 00:23:35 -0700 | [diff] [blame] | 2221 | { | 
 | 2222 | 	int rv; | 
 | 2223 |  | 
| Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 2224 | 	if (flags & IPERM_FLAG_RCU) | 
 | 2225 | 		return -ECHILD; | 
 | 2226 | 	rv = generic_permission(inode, mask, flags, NULL); | 
| Alexey Dobriyan | 8948e11 | 2007-05-08 00:23:35 -0700 | [diff] [blame] | 2227 | 	if (rv == 0) | 
 | 2228 | 		return 0; | 
 | 2229 | 	if (task_pid(current) == proc_pid(inode)) | 
 | 2230 | 		rv = 0; | 
 | 2231 | 	return rv; | 
 | 2232 | } | 
 | 2233 |  | 
 | 2234 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2235 |  * proc directories can do almost nothing.. | 
 | 2236 |  */ | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 2237 | static const struct inode_operations proc_fd_inode_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | 	.lookup		= proc_lookupfd, | 
| Alexey Dobriyan | 8948e11 | 2007-05-08 00:23:35 -0700 | [diff] [blame] | 2239 | 	.permission	= proc_fd_permission, | 
| Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 2240 | 	.setattr	= proc_setattr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | }; | 
 | 2242 |  | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2243 | static struct dentry *proc_fdinfo_instantiate(struct inode *dir, | 
 | 2244 | 	struct dentry *dentry, struct task_struct *task, const void *ptr) | 
 | 2245 | { | 
 | 2246 | 	unsigned fd = *(unsigned *)ptr; | 
 | 2247 |  	struct inode *inode; | 
 | 2248 |  	struct proc_inode *ei; | 
 | 2249 | 	struct dentry *error = ERR_PTR(-ENOENT); | 
 | 2250 |  | 
 | 2251 | 	inode = proc_pid_make_inode(dir->i_sb, task); | 
 | 2252 | 	if (!inode) | 
 | 2253 | 		goto out; | 
 | 2254 | 	ei = PROC_I(inode); | 
 | 2255 | 	ei->fd = fd; | 
 | 2256 | 	inode->i_mode = S_IFREG | S_IRUSR; | 
 | 2257 | 	inode->i_fop = &proc_fdinfo_file_operations; | 
| Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 2258 | 	d_set_d_op(dentry, &tid_fd_dentry_operations); | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2259 | 	d_add(dentry, inode); | 
 | 2260 | 	/* Close the race of the process dying before we return the dentry */ | 
 | 2261 | 	if (tid_fd_revalidate(dentry, NULL)) | 
 | 2262 | 		error = NULL; | 
 | 2263 |  | 
 | 2264 |  out: | 
 | 2265 | 	return error; | 
 | 2266 | } | 
 | 2267 |  | 
 | 2268 | static struct dentry *proc_lookupfdinfo(struct inode *dir, | 
 | 2269 | 					struct dentry *dentry, | 
 | 2270 | 					struct nameidata *nd) | 
 | 2271 | { | 
 | 2272 | 	return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate); | 
 | 2273 | } | 
 | 2274 |  | 
 | 2275 | static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir) | 
 | 2276 | { | 
 | 2277 | 	return proc_readfd_common(filp, dirent, filldir, | 
 | 2278 | 				  proc_fdinfo_instantiate); | 
 | 2279 | } | 
 | 2280 |  | 
 | 2281 | static const struct file_operations proc_fdinfo_operations = { | 
 | 2282 | 	.read		= generic_read_dir, | 
 | 2283 | 	.readdir	= proc_readfdinfo, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 2284 | 	.llseek		= default_llseek, | 
| Miklos Szeredi | 2793274 | 2007-05-08 00:26:17 -0700 | [diff] [blame] | 2285 | }; | 
 | 2286 |  | 
 | 2287 | /* | 
 | 2288 |  * proc directories can do almost nothing.. | 
 | 2289 |  */ | 
 | 2290 | static const struct inode_operations proc_fdinfo_inode_operations = { | 
 | 2291 | 	.lookup		= proc_lookupfdinfo, | 
 | 2292 | 	.setattr	= proc_setattr, | 
 | 2293 | }; | 
 | 2294 |  | 
 | 2295 |  | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2296 | static struct dentry *proc_pident_instantiate(struct inode *dir, | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2297 | 	struct dentry *dentry, struct task_struct *task, const void *ptr) | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2298 | { | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2299 | 	const struct pid_entry *p = ptr; | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2300 | 	struct inode *inode; | 
 | 2301 | 	struct proc_inode *ei; | 
| KOSAKI Motohiro | bd6daba | 2009-05-28 14:34:21 -0700 | [diff] [blame] | 2302 | 	struct dentry *error = ERR_PTR(-ENOENT); | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2303 |  | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2304 | 	inode = proc_pid_make_inode(dir->i_sb, task); | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2305 | 	if (!inode) | 
 | 2306 | 		goto out; | 
 | 2307 |  | 
 | 2308 | 	ei = PROC_I(inode); | 
 | 2309 | 	inode->i_mode = p->mode; | 
 | 2310 | 	if (S_ISDIR(inode->i_mode)) | 
 | 2311 | 		inode->i_nlink = 2;	/* Use getattr to fix if necessary */ | 
 | 2312 | 	if (p->iop) | 
 | 2313 | 		inode->i_op = p->iop; | 
 | 2314 | 	if (p->fop) | 
 | 2315 | 		inode->i_fop = p->fop; | 
 | 2316 | 	ei->op = p->op; | 
| Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 2317 | 	d_set_d_op(dentry, &pid_dentry_operations); | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2318 | 	d_add(dentry, inode); | 
 | 2319 | 	/* Close the race of the process dying before we return the dentry */ | 
 | 2320 | 	if (pid_revalidate(dentry, NULL)) | 
 | 2321 | 		error = NULL; | 
 | 2322 | out: | 
 | 2323 | 	return error; | 
 | 2324 | } | 
 | 2325 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | static struct dentry *proc_pident_lookup(struct inode *dir,  | 
 | 2327 | 					 struct dentry *dentry, | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2328 | 					 const struct pid_entry *ents, | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 2329 | 					 unsigned int nents) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2330 | { | 
| Eric W. Biederman | cd6a3ce | 2006-06-26 00:25:49 -0700 | [diff] [blame] | 2331 | 	struct dentry *error; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2332 | 	struct task_struct *task = get_proc_task(dir); | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2333 | 	const struct pid_entry *p, *last; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2334 |  | 
| Eric W. Biederman | cd6a3ce | 2006-06-26 00:25:49 -0700 | [diff] [blame] | 2335 | 	error = ERR_PTR(-ENOENT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 |  | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2337 | 	if (!task) | 
 | 2338 | 		goto out_no_task; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 |  | 
| Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 2340 | 	/* | 
 | 2341 | 	 * Yes, it does not scale. And it should not. Don't add | 
 | 2342 | 	 * new entries into /proc/<tgid>/ without very good reasons. | 
 | 2343 | 	 */ | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 2344 | 	last = &ents[nents - 1]; | 
 | 2345 | 	for (p = ents; p <= last; p++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | 		if (p->len != dentry->d_name.len) | 
 | 2347 | 			continue; | 
 | 2348 | 		if (!memcmp(dentry->d_name.name, p->name, p->len)) | 
 | 2349 | 			break; | 
 | 2350 | 	} | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 2351 | 	if (p > last) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2352 | 		goto out; | 
 | 2353 |  | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2354 | 	error = proc_pident_instantiate(dir, dentry, task, p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2355 | out: | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2356 | 	put_task_struct(task); | 
 | 2357 | out_no_task: | 
| Eric W. Biederman | cd6a3ce | 2006-06-26 00:25:49 -0700 | [diff] [blame] | 2358 | 	return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | } | 
 | 2360 |  | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2361 | static int proc_pident_fill_cache(struct file *filp, void *dirent, | 
 | 2362 | 	filldir_t filldir, struct task_struct *task, const struct pid_entry *p) | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2363 | { | 
 | 2364 | 	return proc_fill_cache(filp, dirent, filldir, p->name, p->len, | 
 | 2365 | 				proc_pident_instantiate, task, p); | 
 | 2366 | } | 
 | 2367 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2368 | static int proc_pident_readdir(struct file *filp, | 
 | 2369 | 		void *dirent, filldir_t filldir, | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2370 | 		const struct pid_entry *ents, unsigned int nents) | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2371 | { | 
 | 2372 | 	int i; | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 2373 | 	struct dentry *dentry = filp->f_path.dentry; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2374 | 	struct inode *inode = dentry->d_inode; | 
 | 2375 | 	struct task_struct *task = get_proc_task(inode); | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2376 | 	const struct pid_entry *p, *last; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2377 | 	ino_t ino; | 
 | 2378 | 	int ret; | 
 | 2379 |  | 
 | 2380 | 	ret = -ENOENT; | 
 | 2381 | 	if (!task) | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2382 | 		goto out_no_task; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2383 |  | 
 | 2384 | 	ret = 0; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2385 | 	i = filp->f_pos; | 
 | 2386 | 	switch (i) { | 
 | 2387 | 	case 0: | 
 | 2388 | 		ino = inode->i_ino; | 
 | 2389 | 		if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0) | 
 | 2390 | 			goto out; | 
 | 2391 | 		i++; | 
 | 2392 | 		filp->f_pos++; | 
 | 2393 | 		/* fall through */ | 
 | 2394 | 	case 1: | 
 | 2395 | 		ino = parent_ino(dentry); | 
 | 2396 | 		if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0) | 
 | 2397 | 			goto out; | 
 | 2398 | 		i++; | 
 | 2399 | 		filp->f_pos++; | 
 | 2400 | 		/* fall through */ | 
 | 2401 | 	default: | 
 | 2402 | 		i -= 2; | 
 | 2403 | 		if (i >= nents) { | 
 | 2404 | 			ret = 1; | 
 | 2405 | 			goto out; | 
 | 2406 | 		} | 
 | 2407 | 		p = ents + i; | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 2408 | 		last = &ents[nents - 1]; | 
 | 2409 | 		while (p <= last) { | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2410 | 			if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0) | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2411 | 				goto out; | 
 | 2412 | 			filp->f_pos++; | 
 | 2413 | 			p++; | 
 | 2414 | 		} | 
 | 2415 | 	} | 
 | 2416 |  | 
 | 2417 | 	ret = 1; | 
 | 2418 | out: | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2419 | 	put_task_struct(task); | 
 | 2420 | out_no_task: | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2421 | 	return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | } | 
 | 2423 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2424 | #ifdef CONFIG_SECURITY | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2425 | static ssize_t proc_pid_attr_read(struct file * file, char __user * buf, | 
 | 2426 | 				  size_t count, loff_t *ppos) | 
 | 2427 | { | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 2428 | 	struct inode * inode = file->f_path.dentry->d_inode; | 
| Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 2429 | 	char *p = NULL; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2430 | 	ssize_t length; | 
 | 2431 | 	struct task_struct *task = get_proc_task(inode); | 
 | 2432 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2433 | 	if (!task) | 
| Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 2434 | 		return -ESRCH; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2435 |  | 
 | 2436 | 	length = security_getprocattr(task, | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 2437 | 				      (char*)file->f_path.dentry->d_name.name, | 
| Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 2438 | 				      &p); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2439 | 	put_task_struct(task); | 
| Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 2440 | 	if (length > 0) | 
 | 2441 | 		length = simple_read_from_buffer(buf, count, ppos, p, length); | 
 | 2442 | 	kfree(p); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2443 | 	return length; | 
 | 2444 | } | 
 | 2445 |  | 
 | 2446 | static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf, | 
 | 2447 | 				   size_t count, loff_t *ppos) | 
 | 2448 | { | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 2449 | 	struct inode * inode = file->f_path.dentry->d_inode; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2450 | 	char *page; | 
 | 2451 | 	ssize_t length; | 
 | 2452 | 	struct task_struct *task = get_proc_task(inode); | 
 | 2453 |  | 
 | 2454 | 	length = -ESRCH; | 
 | 2455 | 	if (!task) | 
 | 2456 | 		goto out_no_task; | 
 | 2457 | 	if (count > PAGE_SIZE) | 
 | 2458 | 		count = PAGE_SIZE; | 
 | 2459 |  | 
 | 2460 | 	/* No partial writes. */ | 
 | 2461 | 	length = -EINVAL; | 
 | 2462 | 	if (*ppos != 0) | 
 | 2463 | 		goto out; | 
 | 2464 |  | 
 | 2465 | 	length = -ENOMEM; | 
| Mel Gorman | e12ba74 | 2007-10-16 01:25:52 -0700 | [diff] [blame] | 2466 | 	page = (char*)__get_free_page(GFP_TEMPORARY); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2467 | 	if (!page) | 
 | 2468 | 		goto out; | 
 | 2469 |  | 
 | 2470 | 	length = -EFAULT; | 
 | 2471 | 	if (copy_from_user(page, buf, count)) | 
 | 2472 | 		goto out_free; | 
 | 2473 |  | 
| David Howells | 107db7c | 2009-05-08 13:55:27 +0100 | [diff] [blame] | 2474 | 	/* Guard against adverse ptrace interaction */ | 
| KOSAKI Motohiro | 9b1bf12 | 2010-10-27 15:34:08 -0700 | [diff] [blame] | 2475 | 	length = mutex_lock_interruptible(&task->signal->cred_guard_mutex); | 
| David Howells | 107db7c | 2009-05-08 13:55:27 +0100 | [diff] [blame] | 2476 | 	if (length < 0) | 
 | 2477 | 		goto out_free; | 
 | 2478 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2479 | 	length = security_setprocattr(task, | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 2480 | 				      (char*)file->f_path.dentry->d_name.name, | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2481 | 				      (void*)page, count); | 
| KOSAKI Motohiro | 9b1bf12 | 2010-10-27 15:34:08 -0700 | [diff] [blame] | 2482 | 	mutex_unlock(&task->signal->cred_guard_mutex); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2483 | out_free: | 
 | 2484 | 	free_page((unsigned long) page); | 
 | 2485 | out: | 
 | 2486 | 	put_task_struct(task); | 
 | 2487 | out_no_task: | 
 | 2488 | 	return length; | 
 | 2489 | } | 
 | 2490 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 2491 | static const struct file_operations proc_pid_attr_operations = { | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2492 | 	.read		= proc_pid_attr_read, | 
 | 2493 | 	.write		= proc_pid_attr_write, | 
| Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 2494 | 	.llseek		= generic_file_llseek, | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2495 | }; | 
 | 2496 |  | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2497 | static const struct pid_entry attr_dir_stuff[] = { | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2498 | 	REG("current",    S_IRUGO|S_IWUGO, proc_pid_attr_operations), | 
 | 2499 | 	REG("prev",       S_IRUGO,	   proc_pid_attr_operations), | 
 | 2500 | 	REG("exec",       S_IRUGO|S_IWUGO, proc_pid_attr_operations), | 
 | 2501 | 	REG("fscreate",   S_IRUGO|S_IWUGO, proc_pid_attr_operations), | 
 | 2502 | 	REG("keycreate",  S_IRUGO|S_IWUGO, proc_pid_attr_operations), | 
 | 2503 | 	REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2504 | }; | 
 | 2505 |  | 
| Eric W. Biederman | 72d9dcf | 2006-10-02 02:18:50 -0700 | [diff] [blame] | 2506 | static int proc_attr_dir_readdir(struct file * filp, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2507 | 			     void * dirent, filldir_t filldir) | 
 | 2508 | { | 
 | 2509 | 	return proc_pident_readdir(filp,dirent,filldir, | 
| Eric W. Biederman | 72d9dcf | 2006-10-02 02:18:50 -0700 | [diff] [blame] | 2510 | 				   attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2511 | } | 
 | 2512 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 2513 | static const struct file_operations proc_attr_dir_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | 	.read		= generic_read_dir, | 
| Eric W. Biederman | 72d9dcf | 2006-10-02 02:18:50 -0700 | [diff] [blame] | 2515 | 	.readdir	= proc_attr_dir_readdir, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 2516 | 	.llseek		= default_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2517 | }; | 
 | 2518 |  | 
| Eric W. Biederman | 72d9dcf | 2006-10-02 02:18:50 -0700 | [diff] [blame] | 2519 | static struct dentry *proc_attr_dir_lookup(struct inode *dir, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2520 | 				struct dentry *dentry, struct nameidata *nd) | 
 | 2521 | { | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 2522 | 	return proc_pident_lookup(dir, dentry, | 
 | 2523 | 				  attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2524 | } | 
 | 2525 |  | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 2526 | static const struct inode_operations proc_attr_dir_inode_operations = { | 
| Eric W. Biederman | 72d9dcf | 2006-10-02 02:18:50 -0700 | [diff] [blame] | 2527 | 	.lookup		= proc_attr_dir_lookup, | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2528 | 	.getattr	= pid_getattr, | 
| Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 2529 | 	.setattr	= proc_setattr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2530 | }; | 
 | 2531 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2532 | #endif | 
 | 2533 |  | 
| Christoph Hellwig | 698ba7b | 2009-12-15 16:47:37 -0800 | [diff] [blame] | 2534 | #ifdef CONFIG_ELF_CORE | 
| Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2535 | static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf, | 
 | 2536 | 					 size_t count, loff_t *ppos) | 
 | 2537 | { | 
 | 2538 | 	struct task_struct *task = get_proc_task(file->f_dentry->d_inode); | 
 | 2539 | 	struct mm_struct *mm; | 
 | 2540 | 	char buffer[PROC_NUMBUF]; | 
 | 2541 | 	size_t len; | 
 | 2542 | 	int ret; | 
 | 2543 |  | 
 | 2544 | 	if (!task) | 
 | 2545 | 		return -ESRCH; | 
 | 2546 |  | 
 | 2547 | 	ret = 0; | 
 | 2548 | 	mm = get_task_mm(task); | 
 | 2549 | 	if (mm) { | 
 | 2550 | 		len = snprintf(buffer, sizeof(buffer), "%08lx\n", | 
 | 2551 | 			       ((mm->flags & MMF_DUMP_FILTER_MASK) >> | 
 | 2552 | 				MMF_DUMP_FILTER_SHIFT)); | 
 | 2553 | 		mmput(mm); | 
 | 2554 | 		ret = simple_read_from_buffer(buf, count, ppos, buffer, len); | 
 | 2555 | 	} | 
 | 2556 |  | 
 | 2557 | 	put_task_struct(task); | 
 | 2558 |  | 
 | 2559 | 	return ret; | 
 | 2560 | } | 
 | 2561 |  | 
 | 2562 | static ssize_t proc_coredump_filter_write(struct file *file, | 
 | 2563 | 					  const char __user *buf, | 
 | 2564 | 					  size_t count, | 
 | 2565 | 					  loff_t *ppos) | 
 | 2566 | { | 
 | 2567 | 	struct task_struct *task; | 
 | 2568 | 	struct mm_struct *mm; | 
 | 2569 | 	char buffer[PROC_NUMBUF], *end; | 
 | 2570 | 	unsigned int val; | 
 | 2571 | 	int ret; | 
 | 2572 | 	int i; | 
 | 2573 | 	unsigned long mask; | 
 | 2574 |  | 
 | 2575 | 	ret = -EFAULT; | 
 | 2576 | 	memset(buffer, 0, sizeof(buffer)); | 
 | 2577 | 	if (count > sizeof(buffer) - 1) | 
 | 2578 | 		count = sizeof(buffer) - 1; | 
 | 2579 | 	if (copy_from_user(buffer, buf, count)) | 
 | 2580 | 		goto out_no_task; | 
 | 2581 |  | 
 | 2582 | 	ret = -EINVAL; | 
 | 2583 | 	val = (unsigned int)simple_strtoul(buffer, &end, 0); | 
 | 2584 | 	if (*end == '\n') | 
 | 2585 | 		end++; | 
 | 2586 | 	if (end - buffer == 0) | 
 | 2587 | 		goto out_no_task; | 
 | 2588 |  | 
 | 2589 | 	ret = -ESRCH; | 
 | 2590 | 	task = get_proc_task(file->f_dentry->d_inode); | 
 | 2591 | 	if (!task) | 
 | 2592 | 		goto out_no_task; | 
 | 2593 |  | 
 | 2594 | 	ret = end - buffer; | 
 | 2595 | 	mm = get_task_mm(task); | 
 | 2596 | 	if (!mm) | 
 | 2597 | 		goto out_no_mm; | 
 | 2598 |  | 
 | 2599 | 	for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) { | 
 | 2600 | 		if (val & mask) | 
 | 2601 | 			set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags); | 
 | 2602 | 		else | 
 | 2603 | 			clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags); | 
 | 2604 | 	} | 
 | 2605 |  | 
 | 2606 | 	mmput(mm); | 
 | 2607 |  out_no_mm: | 
 | 2608 | 	put_task_struct(task); | 
 | 2609 |  out_no_task: | 
 | 2610 | 	return ret; | 
 | 2611 | } | 
 | 2612 |  | 
 | 2613 | static const struct file_operations proc_coredump_filter_operations = { | 
 | 2614 | 	.read		= proc_coredump_filter_read, | 
 | 2615 | 	.write		= proc_coredump_filter_write, | 
| Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 2616 | 	.llseek		= generic_file_llseek, | 
| Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2617 | }; | 
 | 2618 | #endif | 
 | 2619 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2620 | /* | 
 | 2621 |  * /proc/self: | 
 | 2622 |  */ | 
 | 2623 | static int proc_self_readlink(struct dentry *dentry, char __user *buffer, | 
 | 2624 | 			      int buflen) | 
 | 2625 | { | 
| Eric W. Biederman | 488e5bc | 2008-02-08 04:18:34 -0800 | [diff] [blame] | 2626 | 	struct pid_namespace *ns = dentry->d_sb->s_fs_info; | 
| Andrew Morton | b55fcb2 | 2008-02-08 15:00:43 -0800 | [diff] [blame] | 2627 | 	pid_t tgid = task_tgid_nr_ns(current, ns); | 
| Eric W. Biederman | 8578cea | 2006-06-26 00:25:54 -0700 | [diff] [blame] | 2628 | 	char tmp[PROC_NUMBUF]; | 
| Andrew Morton | b55fcb2 | 2008-02-08 15:00:43 -0800 | [diff] [blame] | 2629 | 	if (!tgid) | 
| Eric W. Biederman | 488e5bc | 2008-02-08 04:18:34 -0800 | [diff] [blame] | 2630 | 		return -ENOENT; | 
| Andrew Morton | b55fcb2 | 2008-02-08 15:00:43 -0800 | [diff] [blame] | 2631 | 	sprintf(tmp, "%d", tgid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2632 | 	return vfs_readlink(dentry,buffer,buflen,tmp); | 
 | 2633 | } | 
 | 2634 |  | 
| Al Viro | 008b150 | 2005-08-20 00:17:39 +0100 | [diff] [blame] | 2635 | static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2636 | { | 
| Eric W. Biederman | 488e5bc | 2008-02-08 04:18:34 -0800 | [diff] [blame] | 2637 | 	struct pid_namespace *ns = dentry->d_sb->s_fs_info; | 
| Andrew Morton | b55fcb2 | 2008-02-08 15:00:43 -0800 | [diff] [blame] | 2638 | 	pid_t tgid = task_tgid_nr_ns(current, ns); | 
| Al Viro | 7fee486 | 2010-01-14 01:03:28 -0500 | [diff] [blame] | 2639 | 	char *name = ERR_PTR(-ENOENT); | 
 | 2640 | 	if (tgid) { | 
 | 2641 | 		name = __getname(); | 
 | 2642 | 		if (!name) | 
 | 2643 | 			name = ERR_PTR(-ENOMEM); | 
 | 2644 | 		else | 
 | 2645 | 			sprintf(name, "%d", tgid); | 
 | 2646 | 	} | 
 | 2647 | 	nd_set_link(nd, name); | 
 | 2648 | 	return NULL; | 
 | 2649 | } | 
 | 2650 |  | 
 | 2651 | static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd, | 
 | 2652 | 				void *cookie) | 
 | 2653 | { | 
 | 2654 | 	char *s = nd_get_link(nd); | 
 | 2655 | 	if (!IS_ERR(s)) | 
 | 2656 | 		__putname(s); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2657 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2658 |  | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 2659 | static const struct inode_operations proc_self_inode_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2660 | 	.readlink	= proc_self_readlink, | 
 | 2661 | 	.follow_link	= proc_self_follow_link, | 
| Al Viro | 7fee486 | 2010-01-14 01:03:28 -0500 | [diff] [blame] | 2662 | 	.put_link	= proc_self_put_link, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2663 | }; | 
 | 2664 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2665 | /* | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2666 |  * proc base | 
 | 2667 |  * | 
 | 2668 |  * These are the directory entries in the root directory of /proc | 
 | 2669 |  * that properly belong to the /proc filesystem, as they describe | 
 | 2670 |  * describe something that is process related. | 
 | 2671 |  */ | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2672 | static const struct pid_entry proc_base_stuff[] = { | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2673 | 	NOD("self", S_IFLNK|S_IRWXUGO, | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2674 | 		&proc_self_inode_operations, NULL, {}), | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2675 | }; | 
 | 2676 |  | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2677 | static struct dentry *proc_base_instantiate(struct inode *dir, | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2678 | 	struct dentry *dentry, struct task_struct *task, const void *ptr) | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2679 | { | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2680 | 	const struct pid_entry *p = ptr; | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2681 | 	struct inode *inode; | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2682 | 	struct proc_inode *ei; | 
| Dan Carpenter | 73d3646 | 2010-05-26 14:43:25 -0700 | [diff] [blame] | 2683 | 	struct dentry *error; | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2684 |  | 
 | 2685 | 	/* Allocate the inode */ | 
 | 2686 | 	error = ERR_PTR(-ENOMEM); | 
 | 2687 | 	inode = new_inode(dir->i_sb); | 
 | 2688 | 	if (!inode) | 
 | 2689 | 		goto out; | 
 | 2690 |  | 
 | 2691 | 	/* Initialize the inode */ | 
 | 2692 | 	ei = PROC_I(inode); | 
| Christoph Hellwig | 85fe402 | 2010-10-23 11:19:54 -0400 | [diff] [blame] | 2693 | 	inode->i_ino = get_next_ino(); | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2694 | 	inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2695 |  | 
 | 2696 | 	/* | 
 | 2697 | 	 * grab the reference to the task. | 
 | 2698 | 	 */ | 
| Oleg Nesterov | 1a657f7 | 2006-10-02 02:18:59 -0700 | [diff] [blame] | 2699 | 	ei->pid = get_task_pid(task, PIDTYPE_PID); | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2700 | 	if (!ei->pid) | 
 | 2701 | 		goto out_iput; | 
 | 2702 |  | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2703 | 	inode->i_mode = p->mode; | 
 | 2704 | 	if (S_ISDIR(inode->i_mode)) | 
 | 2705 | 		inode->i_nlink = 2; | 
 | 2706 | 	if (S_ISLNK(inode->i_mode)) | 
 | 2707 | 		inode->i_size = 64; | 
 | 2708 | 	if (p->iop) | 
 | 2709 | 		inode->i_op = p->iop; | 
 | 2710 | 	if (p->fop) | 
 | 2711 | 		inode->i_fop = p->fop; | 
 | 2712 | 	ei->op = p->op; | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2713 | 	d_add(dentry, inode); | 
 | 2714 | 	error = NULL; | 
 | 2715 | out: | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2716 | 	return error; | 
 | 2717 | out_iput: | 
 | 2718 | 	iput(inode); | 
 | 2719 | 	goto out; | 
 | 2720 | } | 
 | 2721 |  | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2722 | static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry) | 
 | 2723 | { | 
 | 2724 | 	struct dentry *error; | 
 | 2725 | 	struct task_struct *task = get_proc_task(dir); | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2726 | 	const struct pid_entry *p, *last; | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2727 |  | 
 | 2728 | 	error = ERR_PTR(-ENOENT); | 
 | 2729 |  | 
 | 2730 | 	if (!task) | 
 | 2731 | 		goto out_no_task; | 
 | 2732 |  | 
 | 2733 | 	/* Lookup the directory entry */ | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 2734 | 	last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1]; | 
 | 2735 | 	for (p = proc_base_stuff; p <= last; p++) { | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2736 | 		if (p->len != dentry->d_name.len) | 
 | 2737 | 			continue; | 
 | 2738 | 		if (!memcmp(dentry->d_name.name, p->name, p->len)) | 
 | 2739 | 			break; | 
 | 2740 | 	} | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 2741 | 	if (p > last) | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2742 | 		goto out; | 
 | 2743 |  | 
 | 2744 | 	error = proc_base_instantiate(dir, dentry, task, p); | 
 | 2745 |  | 
 | 2746 | out: | 
 | 2747 | 	put_task_struct(task); | 
 | 2748 | out_no_task: | 
 | 2749 | 	return error; | 
 | 2750 | } | 
 | 2751 |  | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2752 | static int proc_base_fill_cache(struct file *filp, void *dirent, | 
 | 2753 | 	filldir_t filldir, struct task_struct *task, const struct pid_entry *p) | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2754 | { | 
 | 2755 | 	return proc_fill_cache(filp, dirent, filldir, p->name, p->len, | 
 | 2756 | 				proc_base_instantiate, task, p); | 
 | 2757 | } | 
 | 2758 |  | 
| Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 2759 | #ifdef CONFIG_TASK_IO_ACCOUNTING | 
| Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2760 | static int do_io_accounting(struct task_struct *task, char *buffer, int whole) | 
| Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 2761 | { | 
| Andrea Righi | 940389b | 2008-07-28 00:48:12 +0200 | [diff] [blame] | 2762 | 	struct task_io_accounting acct = task->ioac; | 
| Andrea Righi | 5995477 | 2008-07-27 17:29:15 +0200 | [diff] [blame] | 2763 | 	unsigned long flags; | 
| Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2764 |  | 
| Andrea Righi | 5995477 | 2008-07-27 17:29:15 +0200 | [diff] [blame] | 2765 | 	if (whole && lock_task_sighand(task, &flags)) { | 
 | 2766 | 		struct task_struct *t = task; | 
| Andrea Righi | b2d002d | 2008-07-26 15:22:27 -0700 | [diff] [blame] | 2767 |  | 
| Andrea Righi | 5995477 | 2008-07-27 17:29:15 +0200 | [diff] [blame] | 2768 | 		task_io_accounting_add(&acct, &task->signal->ioac); | 
 | 2769 | 		while_each_thread(task, t) | 
 | 2770 | 			task_io_accounting_add(&acct, &t->ioac); | 
| Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2771 |  | 
| Andrea Righi | 5995477 | 2008-07-27 17:29:15 +0200 | [diff] [blame] | 2772 | 		unlock_task_sighand(task, &flags); | 
| Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2773 | 	} | 
| Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 2774 | 	return sprintf(buffer, | 
 | 2775 | 			"rchar: %llu\n" | 
 | 2776 | 			"wchar: %llu\n" | 
 | 2777 | 			"syscr: %llu\n" | 
 | 2778 | 			"syscw: %llu\n" | 
 | 2779 | 			"read_bytes: %llu\n" | 
 | 2780 | 			"write_bytes: %llu\n" | 
 | 2781 | 			"cancelled_write_bytes: %llu\n", | 
| Alexander Beregalov | 7c44319 | 2008-08-05 13:01:34 -0700 | [diff] [blame] | 2782 | 			(unsigned long long)acct.rchar, | 
 | 2783 | 			(unsigned long long)acct.wchar, | 
 | 2784 | 			(unsigned long long)acct.syscr, | 
 | 2785 | 			(unsigned long long)acct.syscw, | 
 | 2786 | 			(unsigned long long)acct.read_bytes, | 
 | 2787 | 			(unsigned long long)acct.write_bytes, | 
 | 2788 | 			(unsigned long long)acct.cancelled_write_bytes); | 
| Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 2789 | } | 
| Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2790 |  | 
 | 2791 | static int proc_tid_io_accounting(struct task_struct *task, char *buffer) | 
 | 2792 | { | 
 | 2793 | 	return do_io_accounting(task, buffer, 0); | 
 | 2794 | } | 
 | 2795 |  | 
 | 2796 | static int proc_tgid_io_accounting(struct task_struct *task, char *buffer) | 
 | 2797 | { | 
 | 2798 | 	return do_io_accounting(task, buffer, 1); | 
 | 2799 | } | 
 | 2800 | #endif /* CONFIG_TASK_IO_ACCOUNTING */ | 
| Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 2801 |  | 
| Kees Cook | 4783072 | 2008-10-06 03:11:58 +0400 | [diff] [blame] | 2802 | static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns, | 
 | 2803 | 				struct pid *pid, struct task_struct *task) | 
 | 2804 | { | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 2805 | 	int err = lock_trace(task); | 
 | 2806 | 	if (!err) { | 
 | 2807 | 		seq_printf(m, "%08x\n", task->personality); | 
 | 2808 | 		unlock_trace(task); | 
 | 2809 | 	} | 
 | 2810 | 	return err; | 
| Kees Cook | 4783072 | 2008-10-06 03:11:58 +0400 | [diff] [blame] | 2811 | } | 
 | 2812 |  | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 2813 | /* | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2814 |  * Thread groups | 
 | 2815 |  */ | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 2816 | static const struct file_operations proc_task_operations; | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 2817 | static const struct inode_operations proc_task_inode_operations; | 
| Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 2818 |  | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2819 | static const struct pid_entry tgid_base_stuff[] = { | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2820 | 	DIR("task",       S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations), | 
 | 2821 | 	DIR("fd",         S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations), | 
 | 2822 | 	DIR("fdinfo",     S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations), | 
| Andrew Morton | b2211a3 | 2008-03-11 18:03:35 -0700 | [diff] [blame] | 2823 | #ifdef CONFIG_NET | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2824 | 	DIR("net",        S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations), | 
| Andrew Morton | b2211a3 | 2008-03-11 18:03:35 -0700 | [diff] [blame] | 2825 | #endif | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2826 | 	REG("environ",    S_IRUSR, proc_environ_operations), | 
 | 2827 | 	INF("auxv",       S_IRUSR, proc_pid_auxv), | 
 | 2828 | 	ONE("status",     S_IRUGO, proc_pid_status), | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 2829 | 	ONE("personality", S_IRUGO, proc_pid_personality), | 
| Jiri Olsa | 3036e7b | 2010-09-30 15:15:33 -0700 | [diff] [blame] | 2830 | 	INF("limits",	  S_IRUGO, proc_pid_limits), | 
| Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 2831 | #ifdef CONFIG_SCHED_DEBUG | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2832 | 	REG("sched",      S_IRUGO|S_IWUSR, proc_pid_sched_operations), | 
| Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 2833 | #endif | 
| Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 2834 | #ifdef CONFIG_SCHED_AUTOGROUP | 
 | 2835 | 	REG("autogroup",  S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations), | 
 | 2836 | #endif | 
| john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 2837 | 	REG("comm",      S_IRUGO|S_IWUSR, proc_pid_set_comm_operations), | 
| Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 2838 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 2839 | 	INF("syscall",    S_IRUGO, proc_pid_syscall), | 
| Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 2840 | #endif | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2841 | 	INF("cmdline",    S_IRUGO, proc_pid_cmdline), | 
 | 2842 | 	ONE("stat",       S_IRUGO, proc_tgid_stat), | 
 | 2843 | 	ONE("statm",      S_IRUGO, proc_pid_statm), | 
 | 2844 | 	REG("maps",       S_IRUGO, proc_maps_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2845 | #ifdef CONFIG_NUMA | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2846 | 	REG("numa_maps",  S_IRUGO, proc_numa_maps_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2847 | #endif | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2848 | 	REG("mem",        S_IRUSR|S_IWUSR, proc_mem_operations), | 
 | 2849 | 	LNK("cwd",        proc_cwd_link), | 
 | 2850 | 	LNK("root",       proc_root_link), | 
 | 2851 | 	LNK("exe",        proc_exe_link), | 
 | 2852 | 	REG("mounts",     S_IRUGO, proc_mounts_operations), | 
 | 2853 | 	REG("mountinfo",  S_IRUGO, proc_mountinfo_operations), | 
 | 2854 | 	REG("mountstats", S_IRUSR, proc_mountstats_operations), | 
| Matt Mackall | 1e88328 | 2008-02-04 22:29:07 -0800 | [diff] [blame] | 2855 | #ifdef CONFIG_PROC_PAGE_MONITOR | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2856 | 	REG("clear_refs", S_IWUSR, proc_clear_refs_operations), | 
 | 2857 | 	REG("smaps",      S_IRUGO, proc_smaps_operations), | 
| Al Viro | ca6b0bf | 2011-02-15 22:04:37 -0500 | [diff] [blame] | 2858 | 	REG("pagemap",    S_IRUGO, proc_pagemap_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2859 | #endif | 
 | 2860 | #ifdef CONFIG_SECURITY | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2861 | 	DIR("attr",       S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2862 | #endif | 
 | 2863 | #ifdef CONFIG_KALLSYMS | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2864 | 	INF("wchan",      S_IRUGO, proc_pid_wchan), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2865 | #endif | 
| Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 2866 | #ifdef CONFIG_STACKTRACE | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 2867 | 	ONE("stack",      S_IRUGO, proc_pid_stack), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2868 | #endif | 
 | 2869 | #ifdef CONFIG_SCHEDSTATS | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2870 | 	INF("schedstat",  S_IRUGO, proc_pid_schedstat), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2871 | #endif | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 2872 | #ifdef CONFIG_LATENCYTOP | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2873 | 	REG("latency",  S_IRUGO, proc_lstats_operations), | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 2874 | #endif | 
| Paul Menage | 8793d85 | 2007-10-18 23:39:39 -0700 | [diff] [blame] | 2875 | #ifdef CONFIG_PROC_PID_CPUSET | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2876 | 	REG("cpuset",     S_IRUGO, proc_cpuset_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2877 | #endif | 
| Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 2878 | #ifdef CONFIG_CGROUPS | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2879 | 	REG("cgroup",  S_IRUGO, proc_cgroup_operations), | 
| Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 2880 | #endif | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2881 | 	INF("oom_score",  S_IRUGO, proc_oom_score), | 
 | 2882 | 	REG("oom_adj",    S_IRUGO|S_IWUSR, proc_oom_adjust_operations), | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 2883 | 	REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2884 | #ifdef CONFIG_AUDITSYSCALL | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2885 | 	REG("loginuid",   S_IWUSR|S_IRUGO, proc_loginuid_operations), | 
 | 2886 | 	REG("sessionid",  S_IRUGO, proc_sessionid_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2887 | #endif | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 2888 | #ifdef CONFIG_FAULT_INJECTION | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2889 | 	REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 2890 | #endif | 
| Christoph Hellwig | 698ba7b | 2009-12-15 16:47:37 -0800 | [diff] [blame] | 2891 | #ifdef CONFIG_ELF_CORE | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2892 | 	REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations), | 
| Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2893 | #endif | 
| Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 2894 | #ifdef CONFIG_TASK_IO_ACCOUNTING | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 2895 | 	INF("io",	S_IRUGO, proc_tgid_io_accounting), | 
| Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 2896 | #endif | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2897 | }; | 
 | 2898 |  | 
 | 2899 | static int proc_tgid_base_readdir(struct file * filp, | 
 | 2900 | 			     void * dirent, filldir_t filldir) | 
 | 2901 | { | 
 | 2902 | 	return proc_pident_readdir(filp,dirent,filldir, | 
 | 2903 | 				   tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff)); | 
 | 2904 | } | 
 | 2905 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 2906 | static const struct file_operations proc_tgid_base_operations = { | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2907 | 	.read		= generic_read_dir, | 
 | 2908 | 	.readdir	= proc_tgid_base_readdir, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 2909 | 	.llseek		= default_llseek, | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2910 | }; | 
 | 2911 |  | 
 | 2912 | static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){ | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 2913 | 	return proc_pident_lookup(dir, dentry, | 
 | 2914 | 				  tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff)); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2915 | } | 
 | 2916 |  | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 2917 | static const struct inode_operations proc_tgid_base_inode_operations = { | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2918 | 	.lookup		= proc_tgid_base_lookup, | 
 | 2919 | 	.getattr	= pid_getattr, | 
 | 2920 | 	.setattr	= proc_setattr, | 
 | 2921 | }; | 
 | 2922 |  | 
| Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 2923 | static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | { | 
| Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 2925 | 	struct dentry *dentry, *leader, *dir; | 
| Eric W. Biederman | 8578cea | 2006-06-26 00:25:54 -0700 | [diff] [blame] | 2926 | 	char buf[PROC_NUMBUF]; | 
| Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 2927 | 	struct qstr name; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 |  | 
| Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 2929 | 	name.name = buf; | 
| Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 2930 | 	name.len = snprintf(buf, sizeof(buf), "%d", pid); | 
 | 2931 | 	dentry = d_hash_and_lookup(mnt->mnt_root, &name); | 
| Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 2932 | 	if (dentry) { | 
| Sukadev Bhattiprolu | 29f12ca | 2009-11-11 14:26:32 -0800 | [diff] [blame] | 2933 | 		shrink_dcache_parent(dentry); | 
| Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 2934 | 		d_drop(dentry); | 
 | 2935 | 		dput(dentry); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2936 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 |  | 
| Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 2938 | 	name.name = buf; | 
| Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 2939 | 	name.len = snprintf(buf, sizeof(buf), "%d", tgid); | 
 | 2940 | 	leader = d_hash_and_lookup(mnt->mnt_root, &name); | 
| Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 2941 | 	if (!leader) | 
 | 2942 | 		goto out; | 
 | 2943 |  | 
 | 2944 | 	name.name = "task"; | 
 | 2945 | 	name.len = strlen(name.name); | 
 | 2946 | 	dir = d_hash_and_lookup(leader, &name); | 
 | 2947 | 	if (!dir) | 
 | 2948 | 		goto out_put_leader; | 
 | 2949 |  | 
 | 2950 | 	name.name = buf; | 
| Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 2951 | 	name.len = snprintf(buf, sizeof(buf), "%d", pid); | 
| Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 2952 | 	dentry = d_hash_and_lookup(dir, &name); | 
 | 2953 | 	if (dentry) { | 
 | 2954 | 		shrink_dcache_parent(dentry); | 
 | 2955 | 		d_drop(dentry); | 
 | 2956 | 		dput(dentry); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | 	} | 
| Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 2958 |  | 
 | 2959 | 	dput(dir); | 
 | 2960 | out_put_leader: | 
 | 2961 | 	dput(leader); | 
 | 2962 | out: | 
 | 2963 | 	return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2964 | } | 
 | 2965 |  | 
| Randy Dunlap | 0895e91 | 2007-10-21 21:00:10 -0700 | [diff] [blame] | 2966 | /** | 
 | 2967 |  * proc_flush_task -  Remove dcache entries for @task from the /proc dcache. | 
 | 2968 |  * @task: task that should be flushed. | 
 | 2969 |  * | 
 | 2970 |  * When flushing dentries from proc, one needs to flush them from global | 
| Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 2971 |  * proc (proc_mnt) and from all the namespaces' procs this task was seen | 
| Randy Dunlap | 0895e91 | 2007-10-21 21:00:10 -0700 | [diff] [blame] | 2972 |  * in. This call is supposed to do all of this job. | 
 | 2973 |  * | 
 | 2974 |  * Looks in the dcache for | 
 | 2975 |  * /proc/@pid | 
 | 2976 |  * /proc/@tgid/task/@pid | 
 | 2977 |  * if either directory is present flushes it and all of it'ts children | 
 | 2978 |  * from the dcache. | 
 | 2979 |  * | 
 | 2980 |  * It is safe and reasonable to cache /proc entries for a task until | 
 | 2981 |  * that task exits.  After that they just clog up the dcache with | 
 | 2982 |  * useless entries, possibly causing useful dcache entries to be | 
 | 2983 |  * flushed instead.  This routine is proved to flush those useless | 
 | 2984 |  * dcache entries at process exit time. | 
 | 2985 |  * | 
 | 2986 |  * NOTE: This routine is just an optimization so it does not guarantee | 
 | 2987 |  *       that no dcache entries will exist at process exit time it | 
 | 2988 |  *       just makes it very unlikely that any will persist. | 
| Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 2989 |  */ | 
 | 2990 |  | 
 | 2991 | void proc_flush_task(struct task_struct *task) | 
 | 2992 | { | 
| Eric W. Biederman | 9fcc2d1 | 2007-11-14 17:00:07 -0800 | [diff] [blame] | 2993 | 	int i; | 
| Oleg Nesterov | 9b4d1cbe | 2009-09-22 16:45:34 -0700 | [diff] [blame] | 2994 | 	struct pid *pid, *tgid; | 
| Pavel Emelyanov | 130f77e | 2007-10-18 23:40:11 -0700 | [diff] [blame] | 2995 | 	struct upid *upid; | 
 | 2996 |  | 
| Pavel Emelyanov | 130f77e | 2007-10-18 23:40:11 -0700 | [diff] [blame] | 2997 | 	pid = task_pid(task); | 
| Oleg Nesterov | 9b4d1cbe | 2009-09-22 16:45:34 -0700 | [diff] [blame] | 2998 | 	tgid = task_tgid(task); | 
| Pavel Emelyanov | 130f77e | 2007-10-18 23:40:11 -0700 | [diff] [blame] | 2999 |  | 
| Eric W. Biederman | 9fcc2d1 | 2007-11-14 17:00:07 -0800 | [diff] [blame] | 3000 | 	for (i = 0; i <= pid->level; i++) { | 
| Pavel Emelyanov | 130f77e | 2007-10-18 23:40:11 -0700 | [diff] [blame] | 3001 | 		upid = &pid->numbers[i]; | 
 | 3002 | 		proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr, | 
| Oleg Nesterov | 9b4d1cbe | 2009-09-22 16:45:34 -0700 | [diff] [blame] | 3003 | 					tgid->numbers[i].nr); | 
| Pavel Emelyanov | 130f77e | 2007-10-18 23:40:11 -0700 | [diff] [blame] | 3004 | 	} | 
| Pavel Emelyanov | 6f4e643 | 2007-10-18 23:40:11 -0700 | [diff] [blame] | 3005 |  | 
 | 3006 | 	upid = &pid->numbers[pid->level]; | 
 | 3007 | 	if (upid->nr == 1) | 
 | 3008 | 		pid_ns_release_proc(upid->ns); | 
| Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 3009 | } | 
 | 3010 |  | 
| Adrian Bunk | 9711ef9 | 2006-12-06 20:38:31 -0800 | [diff] [blame] | 3011 | static struct dentry *proc_pid_instantiate(struct inode *dir, | 
 | 3012 | 					   struct dentry * dentry, | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 3013 | 					   struct task_struct *task, const void *ptr) | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3014 | { | 
 | 3015 | 	struct dentry *error = ERR_PTR(-ENOENT); | 
 | 3016 | 	struct inode *inode; | 
 | 3017 |  | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3018 | 	inode = proc_pid_make_inode(dir->i_sb, task); | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3019 | 	if (!inode) | 
 | 3020 | 		goto out; | 
 | 3021 |  | 
 | 3022 | 	inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO; | 
 | 3023 | 	inode->i_op = &proc_tgid_base_inode_operations; | 
 | 3024 | 	inode->i_fop = &proc_tgid_base_operations; | 
 | 3025 | 	inode->i_flags|=S_IMMUTABLE; | 
| Vegard Nossum | aed5417 | 2008-06-05 22:46:53 -0700 | [diff] [blame] | 3026 |  | 
 | 3027 | 	inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff, | 
 | 3028 | 		ARRAY_SIZE(tgid_base_stuff)); | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3029 |  | 
| Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 3030 | 	d_set_d_op(dentry, &pid_dentry_operations); | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3031 |  | 
 | 3032 | 	d_add(dentry, inode); | 
 | 3033 | 	/* Close the race of the process dying before we return the dentry */ | 
 | 3034 | 	if (pid_revalidate(dentry, NULL)) | 
 | 3035 | 		error = NULL; | 
 | 3036 | out: | 
 | 3037 | 	return error; | 
 | 3038 | } | 
 | 3039 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3040 | struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd) | 
 | 3041 | { | 
| Dan Carpenter | 73d3646 | 2010-05-26 14:43:25 -0700 | [diff] [blame] | 3042 | 	struct dentry *result; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3043 | 	struct task_struct *task; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3044 | 	unsigned tgid; | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3045 | 	struct pid_namespace *ns; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3046 |  | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 3047 | 	result = proc_base_lookup(dir, dentry); | 
 | 3048 | 	if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT) | 
 | 3049 | 		goto out; | 
 | 3050 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3051 | 	tgid = name_to_int(dentry); | 
 | 3052 | 	if (tgid == ~0U) | 
 | 3053 | 		goto out; | 
 | 3054 |  | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3055 | 	ns = dentry->d_sb->s_fs_info; | 
| Eric W. Biederman | de75873 | 2006-06-26 00:25:51 -0700 | [diff] [blame] | 3056 | 	rcu_read_lock(); | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3057 | 	task = find_task_by_pid_ns(tgid, ns); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3058 | 	if (task) | 
 | 3059 | 		get_task_struct(task); | 
| Eric W. Biederman | de75873 | 2006-06-26 00:25:51 -0700 | [diff] [blame] | 3060 | 	rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3061 | 	if (!task) | 
 | 3062 | 		goto out; | 
 | 3063 |  | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3064 | 	result = proc_pid_instantiate(dir, dentry, task, NULL); | 
| Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 3065 | 	put_task_struct(task); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3066 | out: | 
| Eric W. Biederman | cd6a3ce | 2006-06-26 00:25:49 -0700 | [diff] [blame] | 3067 | 	return result; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3068 | } | 
 | 3069 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3070 | /* | 
| Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3071 |  * Find the first task with tgid >= tgid | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3072 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3073 |  */ | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3074 | struct tgid_iter { | 
 | 3075 | 	unsigned int tgid; | 
| Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3076 | 	struct task_struct *task; | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3077 | }; | 
 | 3078 | static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter) | 
 | 3079 | { | 
| Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3080 | 	struct pid *pid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3081 |  | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3082 | 	if (iter.task) | 
 | 3083 | 		put_task_struct(iter.task); | 
| Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3084 | 	rcu_read_lock(); | 
 | 3085 | retry: | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3086 | 	iter.task = NULL; | 
 | 3087 | 	pid = find_ge_pid(iter.tgid, ns); | 
| Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3088 | 	if (pid) { | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3089 | 		iter.tgid = pid_nr_ns(pid, ns); | 
 | 3090 | 		iter.task = pid_task(pid, PIDTYPE_PID); | 
| Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3091 | 		/* What we to know is if the pid we have find is the | 
 | 3092 | 		 * pid of a thread_group_leader.  Testing for task | 
 | 3093 | 		 * being a thread_group_leader is the obvious thing | 
 | 3094 | 		 * todo but there is a window when it fails, due to | 
 | 3095 | 		 * the pid transfer logic in de_thread. | 
 | 3096 | 		 * | 
 | 3097 | 		 * So we perform the straight forward test of seeing | 
 | 3098 | 		 * if the pid we have found is the pid of a thread | 
 | 3099 | 		 * group leader, and don't worry if the task we have | 
 | 3100 | 		 * found doesn't happen to be a thread group leader. | 
 | 3101 | 		 * As we don't care in the case of readdir. | 
 | 3102 | 		 */ | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3103 | 		if (!iter.task || !has_group_leader_pid(iter.task)) { | 
 | 3104 | 			iter.tgid += 1; | 
| Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3105 | 			goto retry; | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3106 | 		} | 
 | 3107 | 		get_task_struct(iter.task); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3108 | 	} | 
| Eric W. Biederman | 454cc10 | 2006-06-26 00:25:51 -0700 | [diff] [blame] | 3109 | 	rcu_read_unlock(); | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3110 | 	return iter; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 | } | 
 | 3112 |  | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 3113 | #define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3114 |  | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3115 | static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir, | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3116 | 	struct tgid_iter iter) | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3117 | { | 
 | 3118 | 	char name[PROC_NUMBUF]; | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3119 | 	int len = snprintf(name, sizeof(name), "%d", iter.tgid); | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3120 | 	return proc_fill_cache(filp, dirent, filldir, name, len, | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3121 | 				proc_pid_instantiate, iter.task, NULL); | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3122 | } | 
 | 3123 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3124 | /* for the /proc/ directory itself, after non-process stuff has been done */ | 
 | 3125 | int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir) | 
 | 3126 | { | 
| Linus Torvalds | d8bdc59 | 2011-04-18 10:36:54 -0700 | [diff] [blame] | 3127 | 	unsigned int nr; | 
 | 3128 | 	struct task_struct *reaper; | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3129 | 	struct tgid_iter iter; | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3130 | 	struct pid_namespace *ns; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3131 |  | 
| Linus Torvalds | d8bdc59 | 2011-04-18 10:36:54 -0700 | [diff] [blame] | 3132 | 	if (filp->f_pos >= PID_MAX_LIMIT + TGID_OFFSET) | 
 | 3133 | 		goto out_no_task; | 
 | 3134 | 	nr = filp->f_pos - FIRST_PROCESS_ENTRY; | 
 | 3135 |  | 
 | 3136 | 	reaper = get_proc_task(filp->f_path.dentry->d_inode); | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3137 | 	if (!reaper) | 
 | 3138 | 		goto out_no_task; | 
 | 3139 |  | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 3140 | 	for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) { | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 3141 | 		const struct pid_entry *p = &proc_base_stuff[nr]; | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3142 | 		if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0) | 
| Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 3143 | 			goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3144 | 	} | 
 | 3145 |  | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3146 | 	ns = filp->f_dentry->d_sb->s_fs_info; | 
| Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3147 | 	iter.task = NULL; | 
 | 3148 | 	iter.tgid = filp->f_pos - TGID_OFFSET; | 
 | 3149 | 	for (iter = next_tgid(ns, iter); | 
 | 3150 | 	     iter.task; | 
 | 3151 | 	     iter.tgid += 1, iter = next_tgid(ns, iter)) { | 
 | 3152 | 		filp->f_pos = iter.tgid + TGID_OFFSET; | 
 | 3153 | 		if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) { | 
 | 3154 | 			put_task_struct(iter.task); | 
| Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3155 | 			goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3156 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3157 | 	} | 
| Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3158 | 	filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET; | 
 | 3159 | out: | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3160 | 	put_task_struct(reaper); | 
 | 3161 | out_no_task: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3162 | 	return 0; | 
 | 3163 | } | 
 | 3164 |  | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3165 | /* | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3166 |  * Tasks | 
 | 3167 |  */ | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 3168 | static const struct pid_entry tid_base_stuff[] = { | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3169 | 	DIR("fd",        S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations), | 
| Jerome Marchand | 3835541 | 2010-04-27 13:13:06 -0700 | [diff] [blame] | 3170 | 	DIR("fdinfo",    S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations), | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3171 | 	REG("environ",   S_IRUSR, proc_environ_operations), | 
 | 3172 | 	INF("auxv",      S_IRUSR, proc_pid_auxv), | 
 | 3173 | 	ONE("status",    S_IRUGO, proc_pid_status), | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 3174 | 	ONE("personality", S_IRUGO, proc_pid_personality), | 
| Jiri Olsa | 3036e7b | 2010-09-30 15:15:33 -0700 | [diff] [blame] | 3175 | 	INF("limits",	 S_IRUGO, proc_pid_limits), | 
| Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 3176 | #ifdef CONFIG_SCHED_DEBUG | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3177 | 	REG("sched",     S_IRUGO|S_IWUSR, proc_pid_sched_operations), | 
| Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 3178 | #endif | 
| john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 3179 | 	REG("comm",      S_IRUGO|S_IWUSR, proc_pid_set_comm_operations), | 
| Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 3180 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 3181 | 	INF("syscall",   S_IRUGO, proc_pid_syscall), | 
| Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 3182 | #endif | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3183 | 	INF("cmdline",   S_IRUGO, proc_pid_cmdline), | 
 | 3184 | 	ONE("stat",      S_IRUGO, proc_tid_stat), | 
 | 3185 | 	ONE("statm",     S_IRUGO, proc_pid_statm), | 
 | 3186 | 	REG("maps",      S_IRUGO, proc_maps_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3187 | #ifdef CONFIG_NUMA | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3188 | 	REG("numa_maps", S_IRUGO, proc_numa_maps_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3189 | #endif | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3190 | 	REG("mem",       S_IRUSR|S_IWUSR, proc_mem_operations), | 
 | 3191 | 	LNK("cwd",       proc_cwd_link), | 
 | 3192 | 	LNK("root",      proc_root_link), | 
 | 3193 | 	LNK("exe",       proc_exe_link), | 
 | 3194 | 	REG("mounts",    S_IRUGO, proc_mounts_operations), | 
 | 3195 | 	REG("mountinfo",  S_IRUGO, proc_mountinfo_operations), | 
| Matt Mackall | 1e88328 | 2008-02-04 22:29:07 -0800 | [diff] [blame] | 3196 | #ifdef CONFIG_PROC_PAGE_MONITOR | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3197 | 	REG("clear_refs", S_IWUSR, proc_clear_refs_operations), | 
 | 3198 | 	REG("smaps",     S_IRUGO, proc_smaps_operations), | 
| Al Viro | ca6b0bf | 2011-02-15 22:04:37 -0500 | [diff] [blame] | 3199 | 	REG("pagemap",    S_IRUGO, proc_pagemap_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3200 | #endif | 
 | 3201 | #ifdef CONFIG_SECURITY | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3202 | 	DIR("attr",      S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3203 | #endif | 
 | 3204 | #ifdef CONFIG_KALLSYMS | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3205 | 	INF("wchan",     S_IRUGO, proc_pid_wchan), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3206 | #endif | 
| Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 3207 | #ifdef CONFIG_STACKTRACE | 
| Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 3208 | 	ONE("stack",      S_IRUGO, proc_pid_stack), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3209 | #endif | 
 | 3210 | #ifdef CONFIG_SCHEDSTATS | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3211 | 	INF("schedstat", S_IRUGO, proc_pid_schedstat), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3212 | #endif | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3213 | #ifdef CONFIG_LATENCYTOP | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3214 | 	REG("latency",  S_IRUGO, proc_lstats_operations), | 
| Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3215 | #endif | 
| Paul Menage | 8793d85 | 2007-10-18 23:39:39 -0700 | [diff] [blame] | 3216 | #ifdef CONFIG_PROC_PID_CPUSET | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3217 | 	REG("cpuset",    S_IRUGO, proc_cpuset_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3218 | #endif | 
| Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 3219 | #ifdef CONFIG_CGROUPS | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3220 | 	REG("cgroup",  S_IRUGO, proc_cgroup_operations), | 
| Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 3221 | #endif | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3222 | 	INF("oom_score", S_IRUGO, proc_oom_score), | 
 | 3223 | 	REG("oom_adj",   S_IRUGO|S_IWUSR, proc_oom_adjust_operations), | 
| David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 3224 | 	REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3225 | #ifdef CONFIG_AUDITSYSCALL | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3226 | 	REG("loginuid",  S_IWUSR|S_IRUGO, proc_loginuid_operations), | 
| Al Viro | 26ec3c6 | 2011-02-15 21:24:05 -0500 | [diff] [blame] | 3227 | 	REG("sessionid",  S_IRUGO, proc_sessionid_operations), | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3228 | #endif | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 3229 | #ifdef CONFIG_FAULT_INJECTION | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3230 | 	REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), | 
| Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 3231 | #endif | 
| Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 3232 | #ifdef CONFIG_TASK_IO_ACCOUNTING | 
| Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3233 | 	INF("io",	S_IRUGO, proc_tid_io_accounting), | 
| Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 3234 | #endif | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3235 | }; | 
 | 3236 |  | 
 | 3237 | static int proc_tid_base_readdir(struct file * filp, | 
 | 3238 | 			     void * dirent, filldir_t filldir) | 
 | 3239 | { | 
 | 3240 | 	return proc_pident_readdir(filp,dirent,filldir, | 
 | 3241 | 				   tid_base_stuff,ARRAY_SIZE(tid_base_stuff)); | 
 | 3242 | } | 
 | 3243 |  | 
 | 3244 | static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){ | 
| Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 3245 | 	return proc_pident_lookup(dir, dentry, | 
 | 3246 | 				  tid_base_stuff, ARRAY_SIZE(tid_base_stuff)); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3247 | } | 
 | 3248 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 3249 | static const struct file_operations proc_tid_base_operations = { | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3250 | 	.read		= generic_read_dir, | 
 | 3251 | 	.readdir	= proc_tid_base_readdir, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 3252 | 	.llseek		= default_llseek, | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3253 | }; | 
 | 3254 |  | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 3255 | static const struct inode_operations proc_tid_base_inode_operations = { | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3256 | 	.lookup		= proc_tid_base_lookup, | 
 | 3257 | 	.getattr	= pid_getattr, | 
 | 3258 | 	.setattr	= proc_setattr, | 
 | 3259 | }; | 
 | 3260 |  | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3261 | static struct dentry *proc_task_instantiate(struct inode *dir, | 
| Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 3262 | 	struct dentry *dentry, struct task_struct *task, const void *ptr) | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3263 | { | 
 | 3264 | 	struct dentry *error = ERR_PTR(-ENOENT); | 
 | 3265 | 	struct inode *inode; | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3266 | 	inode = proc_pid_make_inode(dir->i_sb, task); | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3267 |  | 
 | 3268 | 	if (!inode) | 
 | 3269 | 		goto out; | 
 | 3270 | 	inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO; | 
 | 3271 | 	inode->i_op = &proc_tid_base_inode_operations; | 
 | 3272 | 	inode->i_fop = &proc_tid_base_operations; | 
 | 3273 | 	inode->i_flags|=S_IMMUTABLE; | 
| Vegard Nossum | aed5417 | 2008-06-05 22:46:53 -0700 | [diff] [blame] | 3274 |  | 
 | 3275 | 	inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff, | 
 | 3276 | 		ARRAY_SIZE(tid_base_stuff)); | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3277 |  | 
| Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 3278 | 	d_set_d_op(dentry, &pid_dentry_operations); | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3279 |  | 
 | 3280 | 	d_add(dentry, inode); | 
 | 3281 | 	/* Close the race of the process dying before we return the dentry */ | 
 | 3282 | 	if (pid_revalidate(dentry, NULL)) | 
 | 3283 | 		error = NULL; | 
 | 3284 | out: | 
 | 3285 | 	return error; | 
 | 3286 | } | 
 | 3287 |  | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3288 | static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd) | 
 | 3289 | { | 
 | 3290 | 	struct dentry *result = ERR_PTR(-ENOENT); | 
 | 3291 | 	struct task_struct *task; | 
 | 3292 | 	struct task_struct *leader = get_proc_task(dir); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3293 | 	unsigned tid; | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3294 | 	struct pid_namespace *ns; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3295 |  | 
 | 3296 | 	if (!leader) | 
 | 3297 | 		goto out_no_task; | 
 | 3298 |  | 
 | 3299 | 	tid = name_to_int(dentry); | 
 | 3300 | 	if (tid == ~0U) | 
 | 3301 | 		goto out; | 
 | 3302 |  | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3303 | 	ns = dentry->d_sb->s_fs_info; | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3304 | 	rcu_read_lock(); | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3305 | 	task = find_task_by_pid_ns(tid, ns); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3306 | 	if (task) | 
 | 3307 | 		get_task_struct(task); | 
 | 3308 | 	rcu_read_unlock(); | 
 | 3309 | 	if (!task) | 
 | 3310 | 		goto out; | 
| Pavel Emelyanov | bac0abd | 2007-10-18 23:40:18 -0700 | [diff] [blame] | 3311 | 	if (!same_thread_group(leader, task)) | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3312 | 		goto out_drop_task; | 
 | 3313 |  | 
| Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3314 | 	result = proc_task_instantiate(dir, dentry, task, NULL); | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3315 | out_drop_task: | 
 | 3316 | 	put_task_struct(task); | 
 | 3317 | out: | 
 | 3318 | 	put_task_struct(leader); | 
 | 3319 | out_no_task: | 
 | 3320 | 	return result; | 
 | 3321 | } | 
 | 3322 |  | 
 | 3323 | /* | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3324 |  * Find the first tid of a thread group to return to user space. | 
 | 3325 |  * | 
 | 3326 |  * Usually this is just the thread group leader, but if the users | 
 | 3327 |  * buffer was too small or there was a seek into the middle of the | 
 | 3328 |  * directory we have more work todo. | 
 | 3329 |  * | 
 | 3330 |  * In the case of a short read we start with find_task_by_pid. | 
 | 3331 |  * | 
 | 3332 |  * In the case of a seek we start with the leader and walk nr | 
 | 3333 |  * threads past it. | 
 | 3334 |  */ | 
| Eric W. Biederman | cc28873 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3335 | static struct task_struct *first_tid(struct task_struct *leader, | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3336 | 		int tid, int nr, struct pid_namespace *ns) | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3337 | { | 
| Oleg Nesterov | a872ff0 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3338 | 	struct task_struct *pos; | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3339 |  | 
| Eric W. Biederman | cc28873 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3340 | 	rcu_read_lock(); | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3341 | 	/* Attempt to start with the pid of a thread */ | 
 | 3342 | 	if (tid && (nr > 0)) { | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3343 | 		pos = find_task_by_pid_ns(tid, ns); | 
| Oleg Nesterov | a872ff0 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3344 | 		if (pos && (pos->group_leader == leader)) | 
 | 3345 | 			goto found; | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3346 | 	} | 
 | 3347 |  | 
 | 3348 | 	/* If nr exceeds the number of threads there is nothing todo */ | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3349 | 	pos = NULL; | 
| Oleg Nesterov | a872ff0 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3350 | 	if (nr && nr >= get_nr_threads(leader)) | 
 | 3351 | 		goto out; | 
 | 3352 |  | 
 | 3353 | 	/* If we haven't found our starting place yet start | 
 | 3354 | 	 * with the leader and walk nr threads forward. | 
 | 3355 | 	 */ | 
 | 3356 | 	for (pos = leader; nr > 0; --nr) { | 
 | 3357 | 		pos = next_thread(pos); | 
 | 3358 | 		if (pos == leader) { | 
 | 3359 | 			pos = NULL; | 
 | 3360 | 			goto out; | 
 | 3361 | 		} | 
 | 3362 | 	} | 
 | 3363 | found: | 
 | 3364 | 	get_task_struct(pos); | 
 | 3365 | out: | 
| Eric W. Biederman | cc28873 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3366 | 	rcu_read_unlock(); | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3367 | 	return pos; | 
 | 3368 | } | 
 | 3369 |  | 
 | 3370 | /* | 
 | 3371 |  * Find the next thread in the thread list. | 
 | 3372 |  * Return NULL if there is an error or no next thread. | 
 | 3373 |  * | 
 | 3374 |  * The reference to the input task_struct is released. | 
 | 3375 |  */ | 
 | 3376 | static struct task_struct *next_tid(struct task_struct *start) | 
 | 3377 | { | 
| Oleg Nesterov | c1df7fb | 2006-06-26 00:26:02 -0700 | [diff] [blame] | 3378 | 	struct task_struct *pos = NULL; | 
| Eric W. Biederman | cc28873 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3379 | 	rcu_read_lock(); | 
| Oleg Nesterov | c1df7fb | 2006-06-26 00:26:02 -0700 | [diff] [blame] | 3380 | 	if (pid_alive(start)) { | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3381 | 		pos = next_thread(start); | 
| Oleg Nesterov | c1df7fb | 2006-06-26 00:26:02 -0700 | [diff] [blame] | 3382 | 		if (thread_group_leader(pos)) | 
 | 3383 | 			pos = NULL; | 
 | 3384 | 		else | 
 | 3385 | 			get_task_struct(pos); | 
 | 3386 | 	} | 
| Eric W. Biederman | cc28873 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3387 | 	rcu_read_unlock(); | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3388 | 	put_task_struct(start); | 
 | 3389 | 	return pos; | 
 | 3390 | } | 
 | 3391 |  | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3392 | static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir, | 
 | 3393 | 	struct task_struct *task, int tid) | 
 | 3394 | { | 
 | 3395 | 	char name[PROC_NUMBUF]; | 
 | 3396 | 	int len = snprintf(name, sizeof(name), "%d", tid); | 
 | 3397 | 	return proc_fill_cache(filp, dirent, filldir, name, len, | 
 | 3398 | 				proc_task_instantiate, task, NULL); | 
 | 3399 | } | 
 | 3400 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3401 | /* for the /proc/TGID/task/ directories */ | 
 | 3402 | static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir) | 
 | 3403 | { | 
| Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 3404 | 	struct dentry *dentry = filp->f_path.dentry; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3405 | 	struct inode *inode = dentry->d_inode; | 
| Guillaume Chazarain | 7d89524 | 2007-01-31 23:48:14 -0800 | [diff] [blame] | 3406 | 	struct task_struct *leader = NULL; | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3407 | 	struct task_struct *task; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3408 | 	int retval = -ENOENT; | 
 | 3409 | 	ino_t ino; | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3410 | 	int tid; | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3411 | 	struct pid_namespace *ns; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3412 |  | 
| Guillaume Chazarain | 7d89524 | 2007-01-31 23:48:14 -0800 | [diff] [blame] | 3413 | 	task = get_proc_task(inode); | 
 | 3414 | 	if (!task) | 
 | 3415 | 		goto out_no_task; | 
 | 3416 | 	rcu_read_lock(); | 
 | 3417 | 	if (pid_alive(task)) { | 
 | 3418 | 		leader = task->group_leader; | 
 | 3419 | 		get_task_struct(leader); | 
 | 3420 | 	} | 
 | 3421 | 	rcu_read_unlock(); | 
 | 3422 | 	put_task_struct(task); | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 3423 | 	if (!leader) | 
 | 3424 | 		goto out_no_task; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3425 | 	retval = 0; | 
 | 3426 |  | 
| Linus Torvalds | ee568b2 | 2009-03-17 10:02:35 -0700 | [diff] [blame] | 3427 | 	switch ((unsigned long)filp->f_pos) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3428 | 	case 0: | 
 | 3429 | 		ino = inode->i_ino; | 
| Zhang Le | ee6f779 | 2009-03-16 14:44:31 +0800 | [diff] [blame] | 3430 | 		if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3431 | 			goto out; | 
| Zhang Le | ee6f779 | 2009-03-16 14:44:31 +0800 | [diff] [blame] | 3432 | 		filp->f_pos++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3433 | 		/* fall through */ | 
 | 3434 | 	case 1: | 
 | 3435 | 		ino = parent_ino(dentry); | 
| Zhang Le | ee6f779 | 2009-03-16 14:44:31 +0800 | [diff] [blame] | 3436 | 		if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3437 | 			goto out; | 
| Zhang Le | ee6f779 | 2009-03-16 14:44:31 +0800 | [diff] [blame] | 3438 | 		filp->f_pos++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3439 | 		/* fall through */ | 
 | 3440 | 	} | 
 | 3441 |  | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3442 | 	/* f_version caches the tgid value that the last readdir call couldn't | 
 | 3443 | 	 * return. lseek aka telldir automagically resets f_version to 0. | 
 | 3444 | 	 */ | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3445 | 	ns = filp->f_dentry->d_sb->s_fs_info; | 
| Mathieu Desnoyers | 2b47c36 | 2007-10-16 23:27:21 -0700 | [diff] [blame] | 3446 | 	tid = (int)filp->f_version; | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3447 | 	filp->f_version = 0; | 
| Zhang Le | ee6f779 | 2009-03-16 14:44:31 +0800 | [diff] [blame] | 3448 | 	for (task = first_tid(leader, tid, filp->f_pos - 2, ns); | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3449 | 	     task; | 
| Zhang Le | ee6f779 | 2009-03-16 14:44:31 +0800 | [diff] [blame] | 3450 | 	     task = next_tid(task), filp->f_pos++) { | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3451 | 		tid = task_pid_nr_ns(task, ns); | 
| Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3452 | 		if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) { | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3453 | 			/* returning this tgid failed, save it as the first | 
 | 3454 | 			 * pid for the next readir call */ | 
| Mathieu Desnoyers | 2b47c36 | 2007-10-16 23:27:21 -0700 | [diff] [blame] | 3455 | 			filp->f_version = (u64)tid; | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3456 | 			put_task_struct(task); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3457 | 			break; | 
| Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3458 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3459 | 	} | 
 | 3460 | out: | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 3461 | 	put_task_struct(leader); | 
 | 3462 | out_no_task: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3463 | 	return retval; | 
 | 3464 | } | 
| Eric W. Biederman | 6e66b52 | 2006-06-26 00:25:47 -0700 | [diff] [blame] | 3465 |  | 
 | 3466 | static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) | 
 | 3467 | { | 
 | 3468 | 	struct inode *inode = dentry->d_inode; | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 3469 | 	struct task_struct *p = get_proc_task(inode); | 
| Eric W. Biederman | 6e66b52 | 2006-06-26 00:25:47 -0700 | [diff] [blame] | 3470 | 	generic_fillattr(inode, stat); | 
 | 3471 |  | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 3472 | 	if (p) { | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 3473 | 		stat->nlink += get_nr_threads(p); | 
| Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 3474 | 		put_task_struct(p); | 
| Eric W. Biederman | 6e66b52 | 2006-06-26 00:25:47 -0700 | [diff] [blame] | 3475 | 	} | 
 | 3476 |  | 
 | 3477 | 	return 0; | 
 | 3478 | } | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3479 |  | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 3480 | static const struct inode_operations proc_task_inode_operations = { | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3481 | 	.lookup		= proc_task_lookup, | 
 | 3482 | 	.getattr	= proc_task_getattr, | 
 | 3483 | 	.setattr	= proc_setattr, | 
 | 3484 | }; | 
 | 3485 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 3486 | static const struct file_operations proc_task_operations = { | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3487 | 	.read		= generic_read_dir, | 
 | 3488 | 	.readdir	= proc_task_readdir, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 3489 | 	.llseek		= default_llseek, | 
| Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3490 | }; |