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