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