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