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