blob: 336b79803e82a105c012da8d16be28212cd0c4ed [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Line070ad42005-09-03 15:55:10 -070014 *
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 Torvalds1da177e2005-04-16 15:20:36 -070048 */
49
50#include <asm/uaccess.h>
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/errno.h>
53#include <linux/time.h>
54#include <linux/proc_fs.h>
55#include <linux/stat.h>
Andrea Righi59954772008-07-27 17:29:15 +020056#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/init.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080058#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040060#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/string.h>
62#include <linux/seq_file.h>
63#include <linux/namei.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080064#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/mm.h>
David Rientjesa63d83f2010-08-09 17:19:46 -070066#include <linux/swap.h>
Dipankar Sarmab8359962005-09-09 13:04:14 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/kallsyms.h>
Ken Chen2ec220e2008-11-10 11:26:08 +030069#include <linux/stacktrace.h>
Neil Hormand85f50d2007-10-18 23:40:37 -070070#include <linux/resource.h>
Kees Cook5096add2007-05-08 00:26:04 -070071#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/mount.h>
73#include <linux/security.h>
74#include <linux/ptrace.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070075#include <linux/tracehook.h>
Paul Menagea4243162007-10-18 23:39:35 -070076#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/cpuset.h>
78#include <linux/audit.h>
Al Viro5addc5d2005-11-07 17:15:49 -050079#include <linux/poll.h>
Serge E. Hallyn1651e142006-10-02 02:18:08 -070080#include <linux/nsproxy.h>
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -070081#include <linux/oom.h>
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -070082#include <linux/elf.h>
Pavel Emelyanov60347f62007-10-18 23:40:03 -070083#include <linux/pid_namespace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040084#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090085#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include "internal.h"
87
Eric W. Biederman0f2fe202006-06-26 00:25:46 -070088/* 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 Torvalds1da177e2005-04-16 15:20:36 -070098struct pid_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 char *name;
Eric Dumazetc5141e62007-05-08 00:26:15 -0700100 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 mode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800102 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800103 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700104 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
Eric W. Biederman61a28782006-10-02 02:18:49 -0700107#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700108 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700109 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700110 .mode = MODE, \
111 .iop = IOP, \
112 .fop = FOP, \
113 .op = OP, \
114}
115
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300116#define DIR(NAME, MODE, iops, fops) \
117 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
118#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700119 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700120 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300121 { .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. Biederman61a28782006-10-02 02:18:49 -0700125 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700126 NULL, &proc_info_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300127 { .proc_read = read } )
128#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800129 NOD(NAME, (S_IFREG|(MODE)), \
130 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300131 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Vegard Nossumaed54172008-06-05 22:46:53 -0700133/*
134 * Count the number of hardlinks for the pid_entry table, excluding the .
135 * and .. links.
136 */
137static 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 Szeredif7ad3c62010-08-10 11:41:36 +0200152static int get_task_root(struct task_struct *task, struct path *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000154 int result = -ENOENT;
155
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700156 task_lock(task);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200157 if (task->fs) {
158 get_fs_root(task->fs, root);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000159 result = 0;
160 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700161 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000162 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700163}
164
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800165static int proc_cwd_link(struct inode *inode, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700166{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700167 struct task_struct *task = get_proc_task(inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700168 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700169
170 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200171 task_lock(task);
172 if (task->fs) {
173 get_fs_pwd(task->fs, path);
174 result = 0;
175 }
176 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700177 put_task_struct(task);
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return result;
180}
181
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800182static int proc_root_link(struct inode *inode, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700184 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700186
187 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200188 result = get_task_root(task, path);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700189 put_task_struct(task);
190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return result;
192}
193
Roland McGrath638fa2022008-04-29 01:01:38 -0700194/*
195 * Return zero if current may access user memory in @task, -error if not.
196 */
197static 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 McGrath0d094ef2008-07-25 19:45:49 -0700210 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 McGrath638fa2022008-04-29 01:01:38 -0700218
219 /*
220 * Noone else is allowed.
221 */
222 return -EPERM;
223}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Al Viro831830b2008-01-02 14:09:57 +0000225struct mm_struct *mm_for_maps(struct task_struct *task)
226{
Oleg Nesterov704b8362009-07-10 03:27:40 +0200227 struct mm_struct *mm;
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200228
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -0700229 if (mutex_lock_killable(&task->signal->cred_guard_mutex))
Oleg Nesterov704b8362009-07-10 03:27:40 +0200230 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 Nesterov13f0fea2009-06-23 21:25:32 +0200237 }
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -0700238 mutex_unlock(&task->signal->cred_guard_mutex);
Oleg Nesterov704b8362009-07-10 03:27:40 +0200239
Al Viro831830b2008-01-02 14:09:57 +0000240 return mm;
Al Viro831830b2008-01-02 14:09:57 +0000241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static 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 }
274out_mm:
275 mmput(mm);
276out:
277 return res;
278}
279
280static 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 Ederdfe6b7d2008-12-30 18:49:13 +0300286 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300288 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 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 */
304static int proc_pid_wchan(struct task_struct *task, char *buffer)
305{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700306 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700307 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 wchan = get_wchan(task);
310
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700311 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600312 if (!ptrace_may_access(task, PTRACE_MODE_READ))
313 return 0;
314 else
315 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700316 else
317 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319#endif /* CONFIG_KALLSYMS */
320
Ken Chen2ec220e2008-11-10 11:26:08 +0300321#ifdef CONFIG_STACKTRACE
322
323#define MAX_STACK_TRACE_DEPTH 64
324
325static 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 Torvalds1da177e2005-04-16 15:20:36 -0700352#ifdef CONFIG_SCHEDSTATS
353/*
354 * Provides /proc/PID/schedstat
355 */
356static int proc_pid_schedstat(struct task_struct *task, char *buffer)
357{
Balbir Singh172ba842007-07-09 18:52:00 +0200358 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100359 (unsigned long long)task->se.sum_exec_runtime,
360 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200361 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363#endif
364
Arjan van de Ven97455122008-01-25 21:08:34 +0100365#ifdef CONFIG_LATENCYTOP
366static int lstats_show_proc(struct seq_file *m, void *v)
367{
368 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800369 struct inode *inode = m->private;
370 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100371
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800372 if (!task)
373 return -ESRCH;
374 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100375 for (i = 0; i < 32; i++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800376 struct latency_record *lr = &task->latency_record[i];
377 if (lr->backtrace[0]) {
Arjan van de Ven97455122008-01-25 21:08:34 +0100378 int q;
Joe Perches34e49d42011-01-12 17:00:30 -0800379 seq_printf(m, "%i %li %li",
380 lr->count, lr->time, lr->max);
Arjan van de Ven97455122008-01-25 21:08:34 +0100381 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800382 unsigned long bt = lr->backtrace[q];
383 if (!bt)
Arjan van de Ven97455122008-01-25 21:08:34 +0100384 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800385 if (bt == ULONG_MAX)
Arjan van de Ven97455122008-01-25 21:08:34 +0100386 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800387 seq_printf(m, " %ps", (void *)bt);
Arjan van de Ven97455122008-01-25 21:08:34 +0100388 }
389 seq_printf(m, "\n");
390 }
391
392 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800393 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100394 return 0;
395}
396
397static int lstats_open(struct inode *inode, struct file *file)
398{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800399 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800400}
401
Arjan van de Ven97455122008-01-25 21:08:34 +0100402static ssize_t lstats_write(struct file *file, const char __user *buf,
403 size_t count, loff_t *offs)
404{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800405 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100406
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800407 if (!task)
408 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100409 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800410 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100411
412 return count;
413}
414
415static const struct file_operations proc_lstats_operations = {
416 .open = lstats_open,
417 .read = seq_read,
418 .write = lstats_write,
419 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800420 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100421};
422
423#endif
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425static int proc_oom_score(struct task_struct *task, char *buffer)
426{
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200427 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700429 read_lock(&tasklist_lock);
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200430 if (pid_alive(task))
David Rientjesa63d83f2010-08-09 17:19:46 -0700431 points = oom_badness(task, NULL, NULL,
432 totalram_pages + total_swap_pages);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700433 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return sprintf(buffer, "%lu\n", points);
435}
436
Neil Hormand85f50d2007-10-18 23:40:37 -0700437struct limit_names {
438 char *name;
439 char *unit;
440};
441
442static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700443 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700444 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
445 [RLIMIT_DATA] = {"Max data size", "bytes"},
446 [RLIMIT_STACK] = {"Max stack size", "bytes"},
447 [RLIMIT_CORE] = {"Max core file size", "bytes"},
448 [RLIMIT_RSS] = {"Max resident set", "bytes"},
449 [RLIMIT_NPROC] = {"Max processes", "processes"},
450 [RLIMIT_NOFILE] = {"Max open files", "files"},
451 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
452 [RLIMIT_AS] = {"Max address space", "bytes"},
453 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
454 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
455 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
456 [RLIMIT_NICE] = {"Max nice priority", NULL},
457 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800458 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700459};
460
461/* Display limits for a process */
462static int proc_pid_limits(struct task_struct *task, char *buffer)
463{
464 unsigned int i;
465 int count = 0;
466 unsigned long flags;
467 char *bufptr = buffer;
468
469 struct rlimit rlim[RLIM_NLIMITS];
470
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400471 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700472 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700473 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
474 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700475
476 /*
477 * print the file header
478 */
479 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
480 "Limit", "Soft Limit", "Hard Limit", "Units");
481
482 for (i = 0; i < RLIM_NLIMITS; i++) {
483 if (rlim[i].rlim_cur == RLIM_INFINITY)
484 count += sprintf(&bufptr[count], "%-25s %-20s ",
485 lnames[i].name, "unlimited");
486 else
487 count += sprintf(&bufptr[count], "%-25s %-20lu ",
488 lnames[i].name, rlim[i].rlim_cur);
489
490 if (rlim[i].rlim_max == RLIM_INFINITY)
491 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
492 else
493 count += sprintf(&bufptr[count], "%-20lu ",
494 rlim[i].rlim_max);
495
496 if (lnames[i].unit)
497 count += sprintf(&bufptr[count], "%-10s\n",
498 lnames[i].unit);
499 else
500 count += sprintf(&bufptr[count], "\n");
501 }
502
503 return count;
504}
505
Roland McGrathebcb6732008-07-25 19:46:00 -0700506#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
507static int proc_pid_syscall(struct task_struct *task, char *buffer)
508{
509 long nr;
510 unsigned long args[6], sp, pc;
511
512 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
513 return sprintf(buffer, "running\n");
514
515 if (nr < 0)
516 return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
517
518 return sprintf(buffer,
519 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
520 nr,
521 args[0], args[1], args[2], args[3], args[4], args[5],
522 sp, pc);
523}
524#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526/************************************************************************/
527/* Here the fs part begins */
528/************************************************************************/
529
530/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700531static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700533 struct task_struct *task;
534 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700535 /* Allow access to a task's file descriptors if it is us or we
536 * may use ptrace attach to the process and find out that
537 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700538 */
539 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700540 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400541 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700542 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700543 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700544 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700547static int proc_setattr(struct dentry *dentry, struct iattr *attr)
548{
549 int error;
550 struct inode *inode = dentry->d_inode;
551
552 if (attr->ia_valid & ATTR_MODE)
553 return -EPERM;
554
555 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200556 if (error)
557 return error;
558
559 if ((attr->ia_valid & ATTR_SIZE) &&
560 attr->ia_size != i_size_read(inode)) {
561 error = vmtruncate(inode, attr->ia_size);
562 if (error)
563 return error;
564 }
565
566 setattr_copy(inode, attr);
567 mark_inode_dirty(inode);
568 return 0;
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700569}
570
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800571static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700572 .setattr = proc_setattr,
573};
574
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100575static int mounts_open_common(struct inode *inode, struct file *file,
576 const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700578 struct task_struct *task = get_proc_task(inode);
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700579 struct nsproxy *nsp;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800580 struct mnt_namespace *ns = NULL;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100581 struct path root;
Al Viro5addc5d2005-11-07 17:15:49 -0500582 struct proc_mounts *p;
583 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Eric W. Biederman99f89552006-06-26 00:25:55 -0700585 if (task) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700586 rcu_read_lock();
587 nsp = task_nsproxy(task);
588 if (nsp) {
589 ns = nsp->mnt_ns;
Alexey Dobriyan863c4702007-01-26 00:56:53 -0800590 if (ns)
591 get_mnt_ns(ns);
592 }
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700593 rcu_read_unlock();
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200594 if (ns && get_task_root(task, &root) == 0)
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000595 ret = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700596 put_task_struct(task);
597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100599 if (!ns)
600 goto err;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000601 if (ret)
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100602 goto err_put_ns;
603
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100604 ret = -ENOMEM;
605 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
606 if (!p)
607 goto err_put_path;
608
609 file->private_data = &p->m;
610 ret = seq_open(file, op);
611 if (ret)
612 goto err_free;
613
614 p->m.private = p;
615 p->ns = ns;
616 p->root = root;
617 p->event = ns->event;
618
619 return 0;
620
621 err_free:
622 kfree(p);
623 err_put_path:
624 path_put(&root);
625 err_put_ns:
626 put_mnt_ns(ns);
627 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return ret;
629}
630
631static int mounts_release(struct inode *inode, struct file *file)
632{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100633 struct proc_mounts *p = file->private_data;
634 path_put(&p->root);
635 put_mnt_ns(p->ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return seq_release(inode, file);
637}
638
Al Viro5addc5d2005-11-07 17:15:49 -0500639static unsigned mounts_poll(struct file *file, poll_table *wait)
640{
641 struct proc_mounts *p = file->private_data;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900642 unsigned res = POLLIN | POLLRDNORM;
Al Viro5addc5d2005-11-07 17:15:49 -0500643
Al Viro9f5596a2010-02-05 00:40:25 -0500644 poll_wait(file, &p->ns->poll, wait);
645 if (mnt_had_events(p))
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900646 res |= POLLERR | POLLPRI;
Al Viro5addc5d2005-11-07 17:15:49 -0500647
648 return res;
649}
650
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100651static int mounts_open(struct inode *inode, struct file *file)
652{
653 return mounts_open_common(inode, file, &mounts_op);
654}
655
Arjan van de Ven00977a52007-02-12 00:55:34 -0800656static const struct file_operations proc_mounts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 .open = mounts_open,
658 .read = seq_read,
659 .llseek = seq_lseek,
660 .release = mounts_release,
Al Viro5addc5d2005-11-07 17:15:49 -0500661 .poll = mounts_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662};
663
Ram Pai2d4d4862008-03-27 13:06:25 +0100664static int mountinfo_open(struct inode *inode, struct file *file)
665{
666 return mounts_open_common(inode, file, &mountinfo_op);
667}
668
669static const struct file_operations proc_mountinfo_operations = {
670 .open = mountinfo_open,
671 .read = seq_read,
672 .llseek = seq_lseek,
673 .release = mounts_release,
674 .poll = mounts_poll,
675};
676
Chuck Leverb4629fe2006-03-20 13:44:12 -0500677static int mountstats_open(struct inode *inode, struct file *file)
678{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100679 return mounts_open_common(inode, file, &mountstats_op);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500680}
681
Arjan van de Ven00977a52007-02-12 00:55:34 -0800682static const struct file_operations proc_mountstats_operations = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500683 .open = mountstats_open,
684 .read = seq_read,
685 .llseek = seq_lseek,
686 .release = mounts_release,
687};
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
690
691static ssize_t proc_info_read(struct file * file, char __user * buf,
692 size_t count, loff_t *ppos)
693{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800694 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 unsigned long page;
696 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700697 struct task_struct *task = get_proc_task(inode);
698
699 length = -ESRCH;
700 if (!task)
701 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 if (count > PROC_BLOCK_SIZE)
704 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700705
706 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700707 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700708 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 length = PROC_I(inode)->op.proc_read(task, (char*)page);
711
712 if (length >= 0)
713 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
714 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700715out:
716 put_task_struct(task);
717out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return length;
719}
720
Arjan van de Ven00977a52007-02-12 00:55:34 -0800721static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 .read = proc_info_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100723 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724};
725
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800726static int proc_single_show(struct seq_file *m, void *v)
727{
728 struct inode *inode = m->private;
729 struct pid_namespace *ns;
730 struct pid *pid;
731 struct task_struct *task;
732 int ret;
733
734 ns = inode->i_sb->s_fs_info;
735 pid = proc_pid(inode);
736 task = get_pid_task(pid, PIDTYPE_PID);
737 if (!task)
738 return -ESRCH;
739
740 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
741
742 put_task_struct(task);
743 return ret;
744}
745
746static int proc_single_open(struct inode *inode, struct file *filp)
747{
748 int ret;
749 ret = single_open(filp, proc_single_show, NULL);
750 if (!ret) {
751 struct seq_file *m = filp->private_data;
752
753 m->private = inode;
754 }
755 return ret;
756}
757
758static const struct file_operations proc_single_file_operations = {
759 .open = proc_single_open,
760 .read = seq_read,
761 .llseek = seq_lseek,
762 .release = single_release,
763};
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765static int mem_open(struct inode* inode, struct file* file)
766{
767 file->private_data = (void*)((long)current->self_exec_id);
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700768 /* OK to pass negative loff_t, we can catch out-of-range */
769 file->f_mode |= FMODE_UNSIGNED_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return 0;
771}
772
773static ssize_t mem_read(struct file * file, char __user * buf,
774 size_t count, loff_t *ppos)
775{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800776 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 char *page;
778 unsigned long src = *ppos;
779 int ret = -ESRCH;
780 struct mm_struct *mm;
781
Eric W. Biederman99f89552006-06-26 00:25:55 -0700782 if (!task)
783 goto out_no_task;
784
Roland McGrath638fa2022008-04-29 01:01:38 -0700785 if (check_mem_permission(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 goto out;
787
788 ret = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700789 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (!page)
791 goto out;
792
793 ret = 0;
794
795 mm = get_task_mm(task);
796 if (!mm)
797 goto out_free;
798
799 ret = -EIO;
800
801 if (file->private_data != (void*)((long)current->self_exec_id))
802 goto out_put;
803
804 ret = 0;
805
806 while (count > 0) {
807 int this_len, retval;
808
809 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
810 retval = access_process_vm(task, src, page, this_len, 0);
Roland McGrath638fa2022008-04-29 01:01:38 -0700811 if (!retval || check_mem_permission(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (!ret)
813 ret = -EIO;
814 break;
815 }
816
817 if (copy_to_user(buf, page, retval)) {
818 ret = -EFAULT;
819 break;
820 }
821
822 ret += retval;
823 src += retval;
824 buf += retval;
825 count -= retval;
826 }
827 *ppos = src;
828
829out_put:
830 mmput(mm);
831out_free:
832 free_page((unsigned long) page);
833out:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700834 put_task_struct(task);
835out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return ret;
837}
838
839#define mem_write NULL
840
841#ifndef mem_write
842/* This is a security hazard */
Glauber de Oliveira Costa63967fa2007-02-20 13:58:12 -0800843static ssize_t mem_write(struct file * file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 size_t count, loff_t *ppos)
845{
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700846 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 char *page;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800848 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 unsigned long dst = *ppos;
850
Eric W. Biederman99f89552006-06-26 00:25:55 -0700851 copied = -ESRCH;
852 if (!task)
853 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Roland McGrath638fa2022008-04-29 01:01:38 -0700855 if (check_mem_permission(task))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700856 goto out;
857
858 copied = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700859 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (!page)
Eric W. Biederman99f89552006-06-26 00:25:55 -0700861 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700863 copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 while (count > 0) {
865 int this_len, retval;
866
867 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
868 if (copy_from_user(page, buf, this_len)) {
869 copied = -EFAULT;
870 break;
871 }
872 retval = access_process_vm(task, dst, page, this_len, 1);
873 if (!retval) {
874 if (!copied)
875 copied = -EIO;
876 break;
877 }
878 copied += retval;
879 buf += retval;
880 dst += retval;
881 count -= retval;
882 }
883 *ppos = dst;
884 free_page((unsigned long) page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700885out:
886 put_task_struct(task);
887out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return copied;
889}
890#endif
891
Matt Mackall85863e42008-02-04 22:29:04 -0800892loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894 switch (orig) {
895 case 0:
896 file->f_pos = offset;
897 break;
898 case 1:
899 file->f_pos += offset;
900 break;
901 default:
902 return -EINVAL;
903 }
904 force_successful_syscall_return();
905 return file->f_pos;
906}
907
Arjan van de Ven00977a52007-02-12 00:55:34 -0800908static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 .llseek = mem_lseek,
910 .read = mem_read,
911 .write = mem_write,
912 .open = mem_open,
913};
914
James Pearson315e28c2007-10-16 23:30:17 -0700915static ssize_t environ_read(struct file *file, char __user *buf,
916 size_t count, loff_t *ppos)
917{
918 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
919 char *page;
920 unsigned long src = *ppos;
921 int ret = -ESRCH;
922 struct mm_struct *mm;
923
924 if (!task)
925 goto out_no_task;
926
Stephen Smalley006ebb42008-05-19 08:32:49 -0400927 if (!ptrace_may_access(task, PTRACE_MODE_READ))
James Pearson315e28c2007-10-16 23:30:17 -0700928 goto out;
929
930 ret = -ENOMEM;
931 page = (char *)__get_free_page(GFP_TEMPORARY);
932 if (!page)
933 goto out;
934
935 ret = 0;
936
937 mm = get_task_mm(task);
938 if (!mm)
939 goto out_free;
940
941 while (count > 0) {
942 int this_len, retval, max_len;
943
944 this_len = mm->env_end - (mm->env_start + src);
945
946 if (this_len <= 0)
947 break;
948
949 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
950 this_len = (this_len > max_len) ? max_len : this_len;
951
952 retval = access_process_vm(task, (mm->env_start + src),
953 page, this_len, 0);
954
955 if (retval <= 0) {
956 ret = retval;
957 break;
958 }
959
960 if (copy_to_user(buf, page, retval)) {
961 ret = -EFAULT;
962 break;
963 }
964
965 ret += retval;
966 src += retval;
967 buf += retval;
968 count -= retval;
969 }
970 *ppos = src;
971
972 mmput(mm);
973out_free:
974 free_page((unsigned long) page);
975out:
976 put_task_struct(task);
977out_no_task:
978 return ret;
979}
980
981static const struct file_operations proc_environ_operations = {
982 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100983 .llseek = generic_file_llseek,
James Pearson315e28c2007-10-16 23:30:17 -0700984};
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986static ssize_t oom_adjust_read(struct file *file, char __user *buf,
987 size_t count, loff_t *ppos)
988{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800989 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700990 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 size_t len;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700992 int oom_adjust = OOM_DISABLE;
993 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Eric W. Biederman99f89552006-06-26 00:25:55 -0700995 if (!task)
996 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700997
998 if (lock_task_sighand(task, &flags)) {
999 oom_adjust = task->signal->oom_adj;
1000 unlock_task_sighand(task, &flags);
1001 }
1002
Eric W. Biederman99f89552006-06-26 00:25:55 -07001003 put_task_struct(task);
1004
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001005 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001006
1007 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
1010static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
1011 size_t count, loff_t *ppos)
1012{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001013 struct task_struct *task;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001014 char buffer[PROC_NUMBUF];
1015 long oom_adjust;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001016 unsigned long flags;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001017 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001019 memset(buffer, 0, sizeof(buffer));
1020 if (count > sizeof(buffer) - 1)
1021 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001022 if (copy_from_user(buffer, buf, count)) {
1023 err = -EFAULT;
1024 goto out;
1025 }
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001026
1027 err = strict_strtol(strstrip(buffer), 0, &oom_adjust);
1028 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001029 goto out;
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07001030 if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) &&
David Rientjes723548b2010-10-26 14:21:25 -07001031 oom_adjust != OOM_DISABLE) {
1032 err = -EINVAL;
1033 goto out;
1034 }
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001035
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001036 task = get_proc_task(file->f_path.dentry->d_inode);
David Rientjes723548b2010-10-26 14:21:25 -07001037 if (!task) {
1038 err = -ESRCH;
1039 goto out;
1040 }
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001041
Ying Han3d5992d2010-10-26 14:21:23 -07001042 task_lock(task);
1043 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -07001044 err = -EINVAL;
1045 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -07001046 }
1047
David Rientjesd19d5472010-10-26 14:21:26 -07001048 if (!lock_task_sighand(task, &flags)) {
1049 err = -ESRCH;
1050 goto err_task_lock;
1051 }
1052
1053 if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) {
1054 err = -EACCES;
1055 goto err_sighand;
1056 }
1057
Ying Han3d5992d2010-10-26 14:21:23 -07001058 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 Rientjes51b1bd22010-08-09 17:19:47 -07001065 /*
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 Motohiro28b83c52009-09-21 17:03:13 -07001073 task->signal->oom_adj = oom_adjust;
David Rientjesa63d83f2010-08-09 17:19:46 -07001074 /*
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;
David Rientjes723548b2010-10-26 14:21:25 -07001083err_sighand:
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001084 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001085err_task_lock:
1086 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001087 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001088out:
1089 return err < 0 ? err : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
Arjan van de Ven00977a52007-02-12 00:55:34 -08001092static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 .read = oom_adjust_read,
1094 .write = oom_adjust_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001095 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096};
1097
David Rientjesa63d83f2010-08-09 17:19:46 -07001098static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
1099 size_t count, loff_t *ppos)
1100{
1101 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
1102 char buffer[PROC_NUMBUF];
1103 int oom_score_adj = OOM_SCORE_ADJ_MIN;
1104 unsigned long flags;
1105 size_t len;
1106
1107 if (!task)
1108 return -ESRCH;
1109 if (lock_task_sighand(task, &flags)) {
1110 oom_score_adj = task->signal->oom_score_adj;
1111 unlock_task_sighand(task, &flags);
1112 }
1113 put_task_struct(task);
1114 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_score_adj);
1115 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1116}
1117
1118static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1119 size_t count, loff_t *ppos)
1120{
1121 struct task_struct *task;
1122 char buffer[PROC_NUMBUF];
1123 unsigned long flags;
1124 long oom_score_adj;
1125 int err;
1126
1127 memset(buffer, 0, sizeof(buffer));
1128 if (count > sizeof(buffer) - 1)
1129 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001130 if (copy_from_user(buffer, buf, count)) {
1131 err = -EFAULT;
1132 goto out;
1133 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001134
1135 err = strict_strtol(strstrip(buffer), 0, &oom_score_adj);
1136 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001137 goto out;
David Rientjesa63d83f2010-08-09 17:19:46 -07001138 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
David Rientjes723548b2010-10-26 14:21:25 -07001139 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1140 err = -EINVAL;
1141 goto out;
1142 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001143
1144 task = get_proc_task(file->f_path.dentry->d_inode);
David Rientjes723548b2010-10-26 14:21:25 -07001145 if (!task) {
1146 err = -ESRCH;
1147 goto out;
1148 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001149
Ying Han3d5992d2010-10-26 14:21:23 -07001150 task_lock(task);
1151 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -07001152 err = -EINVAL;
1153 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -07001154 }
David Rientjesd19d5472010-10-26 14:21:26 -07001155
1156 if (!lock_task_sighand(task, &flags)) {
1157 err = -ESRCH;
1158 goto err_task_lock;
1159 }
1160
1161 if (oom_score_adj < task->signal->oom_score_adj &&
1162 !capable(CAP_SYS_RESOURCE)) {
1163 err = -EACCES;
1164 goto err_sighand;
1165 }
1166
Ying Han3d5992d2010-10-26 14:21:23 -07001167 if (oom_score_adj != task->signal->oom_score_adj) {
1168 if (oom_score_adj == OOM_SCORE_ADJ_MIN)
1169 atomic_inc(&task->mm->oom_disable_count);
1170 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN)
1171 atomic_dec(&task->mm->oom_disable_count);
1172 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001173 task->signal->oom_score_adj = oom_score_adj;
1174 /*
1175 * Scale /proc/pid/oom_adj appropriately ensuring that OOM_DISABLE is
1176 * always attainable.
1177 */
1178 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN)
1179 task->signal->oom_adj = OOM_DISABLE;
1180 else
1181 task->signal->oom_adj = (oom_score_adj * OOM_ADJUST_MAX) /
1182 OOM_SCORE_ADJ_MAX;
David Rientjes723548b2010-10-26 14:21:25 -07001183err_sighand:
David Rientjesa63d83f2010-08-09 17:19:46 -07001184 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001185err_task_lock:
1186 task_unlock(task);
David Rientjesa63d83f2010-08-09 17:19:46 -07001187 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001188out:
1189 return err < 0 ? err : count;
David Rientjesa63d83f2010-08-09 17:19:46 -07001190}
1191
1192static const struct file_operations proc_oom_score_adj_operations = {
1193 .read = oom_score_adj_read,
1194 .write = oom_score_adj_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001195 .llseek = default_llseek,
David Rientjesa63d83f2010-08-09 17:19:46 -07001196};
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198#ifdef CONFIG_AUDITSYSCALL
1199#define TMPBUFLEN 21
1200static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1201 size_t count, loff_t *ppos)
1202{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001203 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001204 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 ssize_t length;
1206 char tmpbuf[TMPBUFLEN];
1207
Eric W. Biederman99f89552006-06-26 00:25:55 -07001208 if (!task)
1209 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Al Viro0c11b942008-01-10 04:20:52 -05001211 audit_get_loginuid(task));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001212 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1214}
1215
1216static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1217 size_t count, loff_t *ppos)
1218{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001219 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 char *page, *tmp;
1221 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 uid_t loginuid;
1223
1224 if (!capable(CAP_AUDIT_CONTROL))
1225 return -EPERM;
1226
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001227 rcu_read_lock();
1228 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1229 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001231 }
1232 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Al Viroe0182902006-05-18 08:28:02 -04001234 if (count >= PAGE_SIZE)
1235 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 if (*ppos != 0) {
1238 /* No partial writes. */
1239 return -EINVAL;
1240 }
Mel Gormane12ba742007-10-16 01:25:52 -07001241 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (!page)
1243 return -ENOMEM;
1244 length = -EFAULT;
1245 if (copy_from_user(page, buf, count))
1246 goto out_free_page;
1247
Al Viroe0182902006-05-18 08:28:02 -04001248 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 loginuid = simple_strtoul(page, &tmp, 10);
1250 if (tmp == page) {
1251 length = -EINVAL;
1252 goto out_free_page;
1253
1254 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07001255 length = audit_set_loginuid(current, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (likely(length == 0))
1257 length = count;
1258
1259out_free_page:
1260 free_page((unsigned long) page);
1261 return length;
1262}
1263
Arjan van de Ven00977a52007-02-12 00:55:34 -08001264static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 .read = proc_loginuid_read,
1266 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001267 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268};
Eric Paris1e0bd752008-03-13 08:15:31 -04001269
1270static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1271 size_t count, loff_t *ppos)
1272{
1273 struct inode * inode = file->f_path.dentry->d_inode;
1274 struct task_struct *task = get_proc_task(inode);
1275 ssize_t length;
1276 char tmpbuf[TMPBUFLEN];
1277
1278 if (!task)
1279 return -ESRCH;
1280 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1281 audit_get_sessionid(task));
1282 put_task_struct(task);
1283 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1284}
1285
1286static const struct file_operations proc_sessionid_operations = {
1287 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001288 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001289};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290#endif
1291
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001292#ifdef CONFIG_FAULT_INJECTION
1293static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1294 size_t count, loff_t *ppos)
1295{
1296 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1297 char buffer[PROC_NUMBUF];
1298 size_t len;
1299 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001300
1301 if (!task)
1302 return -ESRCH;
1303 make_it_fail = task->make_it_fail;
1304 put_task_struct(task);
1305
1306 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001307
1308 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001309}
1310
1311static ssize_t proc_fault_inject_write(struct file * file,
1312 const char __user * buf, size_t count, loff_t *ppos)
1313{
1314 struct task_struct *task;
1315 char buffer[PROC_NUMBUF], *end;
1316 int make_it_fail;
1317
1318 if (!capable(CAP_SYS_RESOURCE))
1319 return -EPERM;
1320 memset(buffer, 0, sizeof(buffer));
1321 if (count > sizeof(buffer) - 1)
1322 count = sizeof(buffer) - 1;
1323 if (copy_from_user(buffer, buf, count))
1324 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001325 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1326 if (*end)
1327 return -EINVAL;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001328 task = get_proc_task(file->f_dentry->d_inode);
1329 if (!task)
1330 return -ESRCH;
1331 task->make_it_fail = make_it_fail;
1332 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001333
1334 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001335}
1336
Arjan van de Ven00977a52007-02-12 00:55:34 -08001337static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001338 .read = proc_fault_inject_read,
1339 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001340 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001341};
1342#endif
1343
Arjan van de Ven97455122008-01-25 21:08:34 +01001344
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001345#ifdef CONFIG_SCHED_DEBUG
1346/*
1347 * Print out various scheduling related per-task fields:
1348 */
1349static int sched_show(struct seq_file *m, void *v)
1350{
1351 struct inode *inode = m->private;
1352 struct task_struct *p;
1353
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001354 p = get_proc_task(inode);
1355 if (!p)
1356 return -ESRCH;
1357 proc_sched_show_task(p, m);
1358
1359 put_task_struct(p);
1360
1361 return 0;
1362}
1363
1364static ssize_t
1365sched_write(struct file *file, const char __user *buf,
1366 size_t count, loff_t *offset)
1367{
1368 struct inode *inode = file->f_path.dentry->d_inode;
1369 struct task_struct *p;
1370
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001371 p = get_proc_task(inode);
1372 if (!p)
1373 return -ESRCH;
1374 proc_sched_set_task(p);
1375
1376 put_task_struct(p);
1377
1378 return count;
1379}
1380
1381static int sched_open(struct inode *inode, struct file *filp)
1382{
1383 int ret;
1384
1385 ret = single_open(filp, sched_show, NULL);
1386 if (!ret) {
1387 struct seq_file *m = filp->private_data;
1388
1389 m->private = inode;
1390 }
1391 return ret;
1392}
1393
1394static const struct file_operations proc_pid_sched_operations = {
1395 .open = sched_open,
1396 .read = seq_read,
1397 .write = sched_write,
1398 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001399 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001400};
1401
1402#endif
1403
Mike Galbraith5091faa2010-11-30 14:18:03 +01001404#ifdef CONFIG_SCHED_AUTOGROUP
1405/*
1406 * Print out autogroup related information:
1407 */
1408static int sched_autogroup_show(struct seq_file *m, void *v)
1409{
1410 struct inode *inode = m->private;
1411 struct task_struct *p;
1412
1413 p = get_proc_task(inode);
1414 if (!p)
1415 return -ESRCH;
1416 proc_sched_autogroup_show_task(p, m);
1417
1418 put_task_struct(p);
1419
1420 return 0;
1421}
1422
1423static ssize_t
1424sched_autogroup_write(struct file *file, const char __user *buf,
1425 size_t count, loff_t *offset)
1426{
1427 struct inode *inode = file->f_path.dentry->d_inode;
1428 struct task_struct *p;
1429 char buffer[PROC_NUMBUF];
1430 long nice;
1431 int err;
1432
1433 memset(buffer, 0, sizeof(buffer));
1434 if (count > sizeof(buffer) - 1)
1435 count = sizeof(buffer) - 1;
1436 if (copy_from_user(buffer, buf, count))
1437 return -EFAULT;
1438
1439 err = strict_strtol(strstrip(buffer), 0, &nice);
1440 if (err)
1441 return -EINVAL;
1442
1443 p = get_proc_task(inode);
1444 if (!p)
1445 return -ESRCH;
1446
1447 err = nice;
1448 err = proc_sched_autogroup_set_nice(p, &err);
1449 if (err)
1450 count = err;
1451
1452 put_task_struct(p);
1453
1454 return count;
1455}
1456
1457static int sched_autogroup_open(struct inode *inode, struct file *filp)
1458{
1459 int ret;
1460
1461 ret = single_open(filp, sched_autogroup_show, NULL);
1462 if (!ret) {
1463 struct seq_file *m = filp->private_data;
1464
1465 m->private = inode;
1466 }
1467 return ret;
1468}
1469
1470static const struct file_operations proc_pid_sched_autogroup_operations = {
1471 .open = sched_autogroup_open,
1472 .read = seq_read,
1473 .write = sched_autogroup_write,
1474 .llseek = seq_lseek,
1475 .release = single_release,
1476};
1477
1478#endif /* CONFIG_SCHED_AUTOGROUP */
1479
john stultz4614a696b2009-12-14 18:00:05 -08001480static ssize_t comm_write(struct file *file, const char __user *buf,
1481 size_t count, loff_t *offset)
1482{
1483 struct inode *inode = file->f_path.dentry->d_inode;
1484 struct task_struct *p;
1485 char buffer[TASK_COMM_LEN];
1486
1487 memset(buffer, 0, sizeof(buffer));
1488 if (count > sizeof(buffer) - 1)
1489 count = sizeof(buffer) - 1;
1490 if (copy_from_user(buffer, buf, count))
1491 return -EFAULT;
1492
1493 p = get_proc_task(inode);
1494 if (!p)
1495 return -ESRCH;
1496
1497 if (same_thread_group(current, p))
1498 set_task_comm(p, buffer);
1499 else
1500 count = -EINVAL;
1501
1502 put_task_struct(p);
1503
1504 return count;
1505}
1506
1507static int comm_show(struct seq_file *m, void *v)
1508{
1509 struct inode *inode = m->private;
1510 struct task_struct *p;
1511
1512 p = get_proc_task(inode);
1513 if (!p)
1514 return -ESRCH;
1515
1516 task_lock(p);
1517 seq_printf(m, "%s\n", p->comm);
1518 task_unlock(p);
1519
1520 put_task_struct(p);
1521
1522 return 0;
1523}
1524
1525static int comm_open(struct inode *inode, struct file *filp)
1526{
1527 int ret;
1528
1529 ret = single_open(filp, comm_show, NULL);
1530 if (!ret) {
1531 struct seq_file *m = filp->private_data;
1532
1533 m->private = inode;
1534 }
1535 return ret;
1536}
1537
1538static const struct file_operations proc_pid_set_comm_operations = {
1539 .open = comm_open,
1540 .read = seq_read,
1541 .write = comm_write,
1542 .llseek = seq_lseek,
1543 .release = single_release,
1544};
1545
Matt Helsley925d1c42008-04-29 01:01:36 -07001546/*
1547 * We added or removed a vma mapping the executable. The vmas are only mapped
1548 * during exec and are not mapped with the mmap system call.
1549 * Callers must hold down_write() on the mm's mmap_sem for these
1550 */
1551void added_exe_file_vma(struct mm_struct *mm)
1552{
1553 mm->num_exe_file_vmas++;
1554}
1555
1556void removed_exe_file_vma(struct mm_struct *mm)
1557{
1558 mm->num_exe_file_vmas--;
1559 if ((mm->num_exe_file_vmas == 0) && mm->exe_file){
1560 fput(mm->exe_file);
1561 mm->exe_file = NULL;
1562 }
1563
1564}
1565
1566void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1567{
1568 if (new_exe_file)
1569 get_file(new_exe_file);
1570 if (mm->exe_file)
1571 fput(mm->exe_file);
1572 mm->exe_file = new_exe_file;
1573 mm->num_exe_file_vmas = 0;
1574}
1575
1576struct file *get_mm_exe_file(struct mm_struct *mm)
1577{
1578 struct file *exe_file;
1579
1580 /* We need mmap_sem to protect against races with removal of
1581 * VM_EXECUTABLE vmas */
1582 down_read(&mm->mmap_sem);
1583 exe_file = mm->exe_file;
1584 if (exe_file)
1585 get_file(exe_file);
1586 up_read(&mm->mmap_sem);
1587 return exe_file;
1588}
1589
1590void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm)
1591{
1592 /* It's safe to write the exe_file pointer without exe_file_lock because
1593 * this is called during fork when the task is not yet in /proc */
1594 newmm->exe_file = get_mm_exe_file(oldmm);
1595}
1596
1597static int proc_exe_link(struct inode *inode, struct path *exe_path)
1598{
1599 struct task_struct *task;
1600 struct mm_struct *mm;
1601 struct file *exe_file;
1602
1603 task = get_proc_task(inode);
1604 if (!task)
1605 return -ENOENT;
1606 mm = get_task_mm(task);
1607 put_task_struct(task);
1608 if (!mm)
1609 return -ENOENT;
1610 exe_file = get_mm_exe_file(mm);
1611 mmput(mm);
1612 if (exe_file) {
1613 *exe_path = exe_file->f_path;
1614 path_get(&exe_file->f_path);
1615 fput(exe_file);
1616 return 0;
1617 } else
1618 return -ENOENT;
1619}
1620
Al Viro008b1502005-08-20 00:17:39 +01001621static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
1623 struct inode *inode = dentry->d_inode;
1624 int error = -EACCES;
1625
1626 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001627 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Eric W. Biederman778c1142006-06-26 00:25:58 -07001629 /* Are we allowed to snoop on the tasks file descriptors? */
1630 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001633 error = PROC_I(inode)->op.proc_get_link(inode, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634out:
Al Viro008b1502005-08-20 00:17:39 +01001635 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001638static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
Mel Gormane12ba742007-10-16 01:25:52 -07001640 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001641 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 int len;
1643
1644 if (!tmp)
1645 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001646
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001647 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001648 len = PTR_ERR(pathname);
1649 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001651 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653 if (len > buflen)
1654 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001655 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 len = -EFAULT;
1657 out:
1658 free_page((unsigned long)tmp);
1659 return len;
1660}
1661
1662static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1663{
1664 int error = -EACCES;
1665 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001666 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Eric W. Biederman778c1142006-06-26 00:25:58 -07001668 /* Are we allowed to snoop on the tasks file descriptors? */
1669 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001672 error = PROC_I(inode)->op.proc_get_link(inode, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 if (error)
1674 goto out;
1675
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001676 error = do_proc_readlink(&path, buffer, buflen);
1677 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 return error;
1680}
1681
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001682static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001684 .follow_link = proc_pid_follow_link,
1685 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686};
1687
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001688
1689/* building an inode */
1690
1691static int task_dumpable(struct task_struct *task)
1692{
1693 int dumpable = 0;
1694 struct mm_struct *mm;
1695
1696 task_lock(task);
1697 mm = task->mm;
1698 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001699 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001700 task_unlock(task);
1701 if(dumpable == 1)
1702 return 1;
1703 return 0;
1704}
1705
1706
Eric W. Biederman61a28782006-10-02 02:18:49 -07001707static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001708{
1709 struct inode * inode;
1710 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001711 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001712
1713 /* We need a new inode */
1714
1715 inode = new_inode(sb);
1716 if (!inode)
1717 goto out;
1718
1719 /* Common stuff */
1720 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001721 inode->i_ino = get_next_ino();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001722 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001723 inode->i_op = &proc_def_inode_operations;
1724
1725 /*
1726 * grab the reference to task.
1727 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001728 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001729 if (!ei->pid)
1730 goto out_unlock;
1731
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001732 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001733 rcu_read_lock();
1734 cred = __task_cred(task);
1735 inode->i_uid = cred->euid;
1736 inode->i_gid = cred->egid;
1737 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001738 }
1739 security_task_to_inode(task, inode);
1740
1741out:
1742 return inode;
1743
1744out_unlock:
1745 iput(inode);
1746 return NULL;
1747}
1748
1749static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1750{
1751 struct inode *inode = dentry->d_inode;
1752 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001753 const struct cred *cred;
1754
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001755 generic_fillattr(inode, stat);
1756
1757 rcu_read_lock();
1758 stat->uid = 0;
1759 stat->gid = 0;
1760 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1761 if (task) {
1762 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1763 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001764 cred = __task_cred(task);
1765 stat->uid = cred->euid;
1766 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001767 }
1768 }
1769 rcu_read_unlock();
1770 return 0;
1771}
1772
1773/* dentry stuff */
1774
1775/*
1776 * Exceptional case: normally we are not allowed to unhash a busy
1777 * directory. In this case, however, we can do it - no aliasing problems
1778 * due to the way we treat inodes.
1779 *
1780 * Rewrite the inode's ownerships here because the owning task may have
1781 * performed a setuid(), etc.
1782 *
1783 * Before the /proc/pid/status file was created the only way to read
1784 * the effective uid of a /process was to stat /proc/pid. Reading
1785 * /proc/pid/status is slow enough that procps and other packages
1786 * kept stating /proc/pid. To keep the rules in /proc simple I have
1787 * made this apply to all per process world readable and executable
1788 * directories.
1789 */
1790static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1791{
Nick Piggin34286d62011-01-07 17:49:57 +11001792 struct inode *inode;
1793 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001794 const struct cred *cred;
1795
Nick Piggin34286d62011-01-07 17:49:57 +11001796 if (nd && nd->flags & LOOKUP_RCU)
1797 return -ECHILD;
1798
1799 inode = dentry->d_inode;
1800 task = get_proc_task(inode);
1801
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001802 if (task) {
1803 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1804 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001805 rcu_read_lock();
1806 cred = __task_cred(task);
1807 inode->i_uid = cred->euid;
1808 inode->i_gid = cred->egid;
1809 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001810 } else {
1811 inode->i_uid = 0;
1812 inode->i_gid = 0;
1813 }
1814 inode->i_mode &= ~(S_ISUID | S_ISGID);
1815 security_task_to_inode(task, inode);
1816 put_task_struct(task);
1817 return 1;
1818 }
1819 d_drop(dentry);
1820 return 0;
1821}
1822
Nick Pigginfe15ce42011-01-07 17:49:23 +11001823static int pid_delete_dentry(const struct dentry * dentry)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001824{
1825 /* Is the task we represent dead?
1826 * If so, then don't put the dentry on the lru list,
1827 * kill it immediately.
1828 */
1829 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1830}
1831
Al Virod72f71e2009-02-20 05:58:47 +00001832static const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001833{
1834 .d_revalidate = pid_revalidate,
1835 .d_delete = pid_delete_dentry,
1836};
1837
1838/* Lookups */
1839
Eric Dumazetc5141e62007-05-08 00:26:15 -07001840typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
1841 struct task_struct *, const void *);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001842
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001843/*
1844 * Fill a directory entry.
1845 *
1846 * If possible create the dcache entry and derive our inode number and
1847 * file type from dcache entry.
1848 *
1849 * Since all of the proc inode numbers are dynamically generated, the inode
1850 * numbers do not exist until the inode is cache. This means creating the
1851 * the dcache entry in readdir is necessary to keep the inode numbers
1852 * reported by readdir in sync with the inode numbers reported
1853 * by stat.
1854 */
Eric W. Biederman61a28782006-10-02 02:18:49 -07001855static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1856 char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001857 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001858{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001859 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001860 struct inode *inode;
1861 struct qstr qname;
1862 ino_t ino = 0;
1863 unsigned type = DT_UNKNOWN;
1864
1865 qname.name = name;
1866 qname.len = len;
1867 qname.hash = full_name_hash(name, len);
1868
1869 child = d_lookup(dir, &qname);
1870 if (!child) {
1871 struct dentry *new;
1872 new = d_alloc(dir, &qname);
1873 if (new) {
1874 child = instantiate(dir->d_inode, new, task, ptr);
1875 if (child)
1876 dput(new);
1877 else
1878 child = new;
1879 }
1880 }
1881 if (!child || IS_ERR(child) || !child->d_inode)
1882 goto end_instantiate;
1883 inode = child->d_inode;
1884 if (inode) {
1885 ino = inode->i_ino;
1886 type = inode->i_mode >> 12;
1887 }
1888 dput(child);
1889end_instantiate:
1890 if (!ino)
1891 ino = find_inode_number(dir, &qname);
1892 if (!ino)
1893 ino = 1;
1894 return filldir(dirent, name, len, filp->f_pos, ino, type);
1895}
1896
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001897static unsigned name_to_int(struct dentry *dentry)
1898{
1899 const char *name = dentry->d_name.name;
1900 int len = dentry->d_name.len;
1901 unsigned n = 0;
1902
1903 if (len > 1 && *name == '0')
1904 goto out;
1905 while (len-- > 0) {
1906 unsigned c = *name++ - '0';
1907 if (c > 9)
1908 goto out;
1909 if (n >= (~0U-9)/10)
1910 goto out;
1911 n *= 10;
1912 n += c;
1913 }
1914 return n;
1915out:
1916 return ~0U;
1917}
1918
Miklos Szeredi27932742007-05-08 00:26:17 -07001919#define PROC_FDINFO_MAX 64
1920
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001921static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001922{
1923 struct task_struct *task = get_proc_task(inode);
1924 struct files_struct *files = NULL;
1925 struct file *file;
1926 int fd = proc_fd(inode);
1927
1928 if (task) {
1929 files = get_files_struct(task);
1930 put_task_struct(task);
1931 }
1932 if (files) {
1933 /*
1934 * We are not taking a ref to the file structure, so we must
1935 * hold ->file_lock.
1936 */
1937 spin_lock(&files->file_lock);
1938 file = fcheck_files(files, fd);
1939 if (file) {
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001940 if (path) {
1941 *path = file->f_path;
1942 path_get(&file->f_path);
1943 }
Miklos Szeredi27932742007-05-08 00:26:17 -07001944 if (info)
1945 snprintf(info, PROC_FDINFO_MAX,
1946 "pos:\t%lli\n"
1947 "flags:\t0%o\n",
1948 (long long) file->f_pos,
1949 file->f_flags);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001950 spin_unlock(&files->file_lock);
1951 put_files_struct(files);
1952 return 0;
1953 }
1954 spin_unlock(&files->file_lock);
1955 put_files_struct(files);
1956 }
1957 return -ENOENT;
1958}
1959
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001960static int proc_fd_link(struct inode *inode, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001961{
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001962 return proc_fd_info(inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001963}
1964
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001965static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1966{
Nick Piggin34286d62011-01-07 17:49:57 +11001967 struct inode *inode;
1968 struct task_struct *task;
1969 int fd;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001970 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001971 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001972
Nick Piggin34286d62011-01-07 17:49:57 +11001973 if (nd && nd->flags & LOOKUP_RCU)
1974 return -ECHILD;
1975
1976 inode = dentry->d_inode;
1977 task = get_proc_task(inode);
1978 fd = proc_fd(inode);
1979
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001980 if (task) {
1981 files = get_files_struct(task);
1982 if (files) {
1983 rcu_read_lock();
1984 if (fcheck_files(files, fd)) {
1985 rcu_read_unlock();
1986 put_files_struct(files);
1987 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001988 rcu_read_lock();
1989 cred = __task_cred(task);
1990 inode->i_uid = cred->euid;
1991 inode->i_gid = cred->egid;
1992 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001993 } else {
1994 inode->i_uid = 0;
1995 inode->i_gid = 0;
1996 }
1997 inode->i_mode &= ~(S_ISUID | S_ISGID);
1998 security_task_to_inode(task, inode);
1999 put_task_struct(task);
2000 return 1;
2001 }
2002 rcu_read_unlock();
2003 put_files_struct(files);
2004 }
2005 put_task_struct(task);
2006 }
2007 d_drop(dentry);
2008 return 0;
2009}
2010
Al Virod72f71e2009-02-20 05:58:47 +00002011static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002012{
2013 .d_revalidate = tid_fd_revalidate,
2014 .d_delete = pid_delete_dentry,
2015};
2016
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002017static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002018 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002019{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002020 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002021 struct file *file;
2022 struct files_struct *files;
2023 struct inode *inode;
2024 struct proc_inode *ei;
2025 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002026
Eric W. Biederman61a28782006-10-02 02:18:49 -07002027 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002028 if (!inode)
2029 goto out;
2030 ei = PROC_I(inode);
2031 ei->fd = fd;
2032 files = get_files_struct(task);
2033 if (!files)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002034 goto out_iput;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002035 inode->i_mode = S_IFLNK;
2036
2037 /*
2038 * We are not taking a ref to the file structure, so we must
2039 * hold ->file_lock.
2040 */
2041 spin_lock(&files->file_lock);
2042 file = fcheck_files(files, fd);
2043 if (!file)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002044 goto out_unlock;
Al Viroaeb5d722008-09-02 15:28:45 -04002045 if (file->f_mode & FMODE_READ)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002046 inode->i_mode |= S_IRUSR | S_IXUSR;
Al Viroaeb5d722008-09-02 15:28:45 -04002047 if (file->f_mode & FMODE_WRITE)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002048 inode->i_mode |= S_IWUSR | S_IXUSR;
2049 spin_unlock(&files->file_lock);
2050 put_files_struct(files);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002051
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002052 inode->i_op = &proc_pid_link_inode_operations;
2053 inode->i_size = 64;
2054 ei->op.proc_get_link = proc_fd_link;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002055 d_set_d_op(dentry, &tid_fd_dentry_operations);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002056 d_add(dentry, inode);
2057 /* Close the race of the process dying before we return the dentry */
2058 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002059 error = NULL;
2060
2061 out:
2062 return error;
2063out_unlock:
2064 spin_unlock(&files->file_lock);
2065 put_files_struct(files);
2066out_iput:
2067 iput(inode);
2068 goto out;
2069}
2070
Miklos Szeredi27932742007-05-08 00:26:17 -07002071static struct dentry *proc_lookupfd_common(struct inode *dir,
2072 struct dentry *dentry,
2073 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002074{
2075 struct task_struct *task = get_proc_task(dir);
2076 unsigned fd = name_to_int(dentry);
2077 struct dentry *result = ERR_PTR(-ENOENT);
2078
2079 if (!task)
2080 goto out_no_task;
2081 if (fd == ~0U)
2082 goto out;
2083
Miklos Szeredi27932742007-05-08 00:26:17 -07002084 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002085out:
2086 put_task_struct(task);
2087out_no_task:
2088 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002089}
2090
Miklos Szeredi27932742007-05-08 00:26:17 -07002091static int proc_readfd_common(struct file * filp, void * dirent,
2092 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002094 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07002095 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002096 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07002097 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 struct files_struct * files;
2100
2101 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002102 if (!p)
2103 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106 fd = filp->f_pos;
2107 switch (fd) {
2108 case 0:
2109 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
2110 goto out;
2111 filp->f_pos++;
2112 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07002113 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
2115 goto out;
2116 filp->f_pos++;
2117 default:
2118 files = get_files_struct(p);
2119 if (!files)
2120 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07002121 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04002123 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07002125 char name[PROC_NUMBUF];
2126 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128 if (!fcheck_files(files, fd))
2129 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07002130 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Miklos Szeredi27932742007-05-08 00:26:17 -07002132 len = snprintf(name, sizeof(name), "%d", fd);
2133 if (proc_fill_cache(filp, dirent, filldir,
2134 name, len, instantiate,
2135 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07002136 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 break;
2138 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07002139 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07002141 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 put_files_struct(files);
2143 }
2144out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002145 put_task_struct(p);
2146out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 return retval;
2148}
2149
Miklos Szeredi27932742007-05-08 00:26:17 -07002150static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
2151 struct nameidata *nd)
2152{
2153 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
2154}
2155
2156static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
2157{
2158 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
2159}
2160
2161static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
2162 size_t len, loff_t *ppos)
2163{
2164 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08002165 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07002166 if (!err)
2167 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
2168 return err;
2169}
2170
2171static const struct file_operations proc_fdinfo_file_operations = {
Arnd Bergmann87df8422010-03-17 23:06:02 +01002172 .open = nonseekable_open,
Miklos Szeredi27932742007-05-08 00:26:17 -07002173 .read = proc_fdinfo_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002174 .llseek = no_llseek,
Miklos Szeredi27932742007-05-08 00:26:17 -07002175};
2176
Arjan van de Ven00977a52007-02-12 00:55:34 -08002177static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 .read = generic_read_dir,
2179 .readdir = proc_readfd,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002180 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181};
2182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002184 * /proc/pid/fd needs a special permission handler so that a process can still
2185 * access /proc/self/fd after it has executed a setuid().
2186 */
Nick Pigginb74c79e2011-01-07 17:49:58 +11002187static int proc_fd_permission(struct inode *inode, int mask, unsigned int flags)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002188{
2189 int rv;
2190
Nick Pigginb74c79e2011-01-07 17:49:58 +11002191 if (flags & IPERM_FLAG_RCU)
2192 return -ECHILD;
2193 rv = generic_permission(inode, mask, flags, NULL);
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002194 if (rv == 0)
2195 return 0;
2196 if (task_pid(current) == proc_pid(inode))
2197 rv = 0;
2198 return rv;
2199}
2200
2201/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 * proc directories can do almost nothing..
2203 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002204static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002206 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002207 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208};
2209
Miklos Szeredi27932742007-05-08 00:26:17 -07002210static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
2211 struct dentry *dentry, struct task_struct *task, const void *ptr)
2212{
2213 unsigned fd = *(unsigned *)ptr;
2214 struct inode *inode;
2215 struct proc_inode *ei;
2216 struct dentry *error = ERR_PTR(-ENOENT);
2217
2218 inode = proc_pid_make_inode(dir->i_sb, task);
2219 if (!inode)
2220 goto out;
2221 ei = PROC_I(inode);
2222 ei->fd = fd;
2223 inode->i_mode = S_IFREG | S_IRUSR;
2224 inode->i_fop = &proc_fdinfo_file_operations;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002225 d_set_d_op(dentry, &tid_fd_dentry_operations);
Miklos Szeredi27932742007-05-08 00:26:17 -07002226 d_add(dentry, inode);
2227 /* Close the race of the process dying before we return the dentry */
2228 if (tid_fd_revalidate(dentry, NULL))
2229 error = NULL;
2230
2231 out:
2232 return error;
2233}
2234
2235static struct dentry *proc_lookupfdinfo(struct inode *dir,
2236 struct dentry *dentry,
2237 struct nameidata *nd)
2238{
2239 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
2240}
2241
2242static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
2243{
2244 return proc_readfd_common(filp, dirent, filldir,
2245 proc_fdinfo_instantiate);
2246}
2247
2248static const struct file_operations proc_fdinfo_operations = {
2249 .read = generic_read_dir,
2250 .readdir = proc_readfdinfo,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002251 .llseek = default_llseek,
Miklos Szeredi27932742007-05-08 00:26:17 -07002252};
2253
2254/*
2255 * proc directories can do almost nothing..
2256 */
2257static const struct inode_operations proc_fdinfo_inode_operations = {
2258 .lookup = proc_lookupfdinfo,
2259 .setattr = proc_setattr,
2260};
2261
2262
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002263static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002264 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002265{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002266 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002267 struct inode *inode;
2268 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07002269 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002270
Eric W. Biederman61a28782006-10-02 02:18:49 -07002271 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002272 if (!inode)
2273 goto out;
2274
2275 ei = PROC_I(inode);
2276 inode->i_mode = p->mode;
2277 if (S_ISDIR(inode->i_mode))
2278 inode->i_nlink = 2; /* Use getattr to fix if necessary */
2279 if (p->iop)
2280 inode->i_op = p->iop;
2281 if (p->fop)
2282 inode->i_fop = p->fop;
2283 ei->op = p->op;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002284 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002285 d_add(dentry, inode);
2286 /* Close the race of the process dying before we return the dentry */
2287 if (pid_revalidate(dentry, NULL))
2288 error = NULL;
2289out:
2290 return error;
2291}
2292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293static struct dentry *proc_pident_lookup(struct inode *dir,
2294 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002295 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002296 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002298 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002299 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002300 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002302 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Eric W. Biederman99f89552006-06-26 00:25:55 -07002304 if (!task)
2305 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002307 /*
2308 * Yes, it does not scale. And it should not. Don't add
2309 * new entries into /proc/<tgid>/ without very good reasons.
2310 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002311 last = &ents[nents - 1];
2312 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 if (p->len != dentry->d_name.len)
2314 continue;
2315 if (!memcmp(dentry->d_name.name, p->name, p->len))
2316 break;
2317 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002318 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 goto out;
2320
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002321 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002323 put_task_struct(task);
2324out_no_task:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002325 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326}
2327
Eric Dumazetc5141e62007-05-08 00:26:15 -07002328static int proc_pident_fill_cache(struct file *filp, void *dirent,
2329 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002330{
2331 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2332 proc_pident_instantiate, task, p);
2333}
2334
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002335static int proc_pident_readdir(struct file *filp,
2336 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002337 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002338{
2339 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002340 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002341 struct inode *inode = dentry->d_inode;
2342 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002343 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002344 ino_t ino;
2345 int ret;
2346
2347 ret = -ENOENT;
2348 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002349 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002350
2351 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002352 i = filp->f_pos;
2353 switch (i) {
2354 case 0:
2355 ino = inode->i_ino;
2356 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2357 goto out;
2358 i++;
2359 filp->f_pos++;
2360 /* fall through */
2361 case 1:
2362 ino = parent_ino(dentry);
2363 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2364 goto out;
2365 i++;
2366 filp->f_pos++;
2367 /* fall through */
2368 default:
2369 i -= 2;
2370 if (i >= nents) {
2371 ret = 1;
2372 goto out;
2373 }
2374 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002375 last = &ents[nents - 1];
2376 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002377 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002378 goto out;
2379 filp->f_pos++;
2380 p++;
2381 }
2382 }
2383
2384 ret = 1;
2385out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002386 put_task_struct(task);
2387out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002388 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389}
2390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002392static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2393 size_t count, loff_t *ppos)
2394{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002395 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002396 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002397 ssize_t length;
2398 struct task_struct *task = get_proc_task(inode);
2399
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002400 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002401 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002402
2403 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002404 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002405 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002406 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002407 if (length > 0)
2408 length = simple_read_from_buffer(buf, count, ppos, p, length);
2409 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002410 return length;
2411}
2412
2413static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2414 size_t count, loff_t *ppos)
2415{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002416 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002417 char *page;
2418 ssize_t length;
2419 struct task_struct *task = get_proc_task(inode);
2420
2421 length = -ESRCH;
2422 if (!task)
2423 goto out_no_task;
2424 if (count > PAGE_SIZE)
2425 count = PAGE_SIZE;
2426
2427 /* No partial writes. */
2428 length = -EINVAL;
2429 if (*ppos != 0)
2430 goto out;
2431
2432 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002433 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002434 if (!page)
2435 goto out;
2436
2437 length = -EFAULT;
2438 if (copy_from_user(page, buf, count))
2439 goto out_free;
2440
David Howells107db7c2009-05-08 13:55:27 +01002441 /* Guard against adverse ptrace interaction */
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002442 length = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
David Howells107db7c2009-05-08 13:55:27 +01002443 if (length < 0)
2444 goto out_free;
2445
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002446 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002447 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002448 (void*)page, count);
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002449 mutex_unlock(&task->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002450out_free:
2451 free_page((unsigned long) page);
2452out:
2453 put_task_struct(task);
2454out_no_task:
2455 return length;
2456}
2457
Arjan van de Ven00977a52007-02-12 00:55:34 -08002458static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002459 .read = proc_pid_attr_read,
2460 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002461 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002462};
2463
Eric Dumazetc5141e62007-05-08 00:26:15 -07002464static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002465 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2466 REG("prev", S_IRUGO, proc_pid_attr_operations),
2467 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2468 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2469 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2470 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002471};
2472
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002473static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 void * dirent, filldir_t filldir)
2475{
2476 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002477 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
2479
Arjan van de Ven00977a52007-02-12 00:55:34 -08002480static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002482 .readdir = proc_attr_dir_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002483 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484};
2485
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002486static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 struct dentry *dentry, struct nameidata *nd)
2488{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002489 return proc_pident_lookup(dir, dentry,
2490 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002493static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002494 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002495 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002496 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497};
2498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499#endif
2500
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002501#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002502static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2503 size_t count, loff_t *ppos)
2504{
2505 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2506 struct mm_struct *mm;
2507 char buffer[PROC_NUMBUF];
2508 size_t len;
2509 int ret;
2510
2511 if (!task)
2512 return -ESRCH;
2513
2514 ret = 0;
2515 mm = get_task_mm(task);
2516 if (mm) {
2517 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2518 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2519 MMF_DUMP_FILTER_SHIFT));
2520 mmput(mm);
2521 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2522 }
2523
2524 put_task_struct(task);
2525
2526 return ret;
2527}
2528
2529static ssize_t proc_coredump_filter_write(struct file *file,
2530 const char __user *buf,
2531 size_t count,
2532 loff_t *ppos)
2533{
2534 struct task_struct *task;
2535 struct mm_struct *mm;
2536 char buffer[PROC_NUMBUF], *end;
2537 unsigned int val;
2538 int ret;
2539 int i;
2540 unsigned long mask;
2541
2542 ret = -EFAULT;
2543 memset(buffer, 0, sizeof(buffer));
2544 if (count > sizeof(buffer) - 1)
2545 count = sizeof(buffer) - 1;
2546 if (copy_from_user(buffer, buf, count))
2547 goto out_no_task;
2548
2549 ret = -EINVAL;
2550 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2551 if (*end == '\n')
2552 end++;
2553 if (end - buffer == 0)
2554 goto out_no_task;
2555
2556 ret = -ESRCH;
2557 task = get_proc_task(file->f_dentry->d_inode);
2558 if (!task)
2559 goto out_no_task;
2560
2561 ret = end - buffer;
2562 mm = get_task_mm(task);
2563 if (!mm)
2564 goto out_no_mm;
2565
2566 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2567 if (val & mask)
2568 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2569 else
2570 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2571 }
2572
2573 mmput(mm);
2574 out_no_mm:
2575 put_task_struct(task);
2576 out_no_task:
2577 return ret;
2578}
2579
2580static const struct file_operations proc_coredump_filter_operations = {
2581 .read = proc_coredump_filter_read,
2582 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002583 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002584};
2585#endif
2586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587/*
2588 * /proc/self:
2589 */
2590static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2591 int buflen)
2592{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002593 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002594 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002595 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002596 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002597 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002598 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 return vfs_readlink(dentry,buffer,buflen,tmp);
2600}
2601
Al Viro008b1502005-08-20 00:17:39 +01002602static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002604 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002605 pid_t tgid = task_tgid_nr_ns(current, ns);
Al Viro7fee4862010-01-14 01:03:28 -05002606 char *name = ERR_PTR(-ENOENT);
2607 if (tgid) {
2608 name = __getname();
2609 if (!name)
2610 name = ERR_PTR(-ENOMEM);
2611 else
2612 sprintf(name, "%d", tgid);
2613 }
2614 nd_set_link(nd, name);
2615 return NULL;
2616}
2617
2618static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd,
2619 void *cookie)
2620{
2621 char *s = nd_get_link(nd);
2622 if (!IS_ERR(s))
2623 __putname(s);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002624}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002626static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 .readlink = proc_self_readlink,
2628 .follow_link = proc_self_follow_link,
Al Viro7fee4862010-01-14 01:03:28 -05002629 .put_link = proc_self_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630};
2631
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002632/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002633 * proc base
2634 *
2635 * These are the directory entries in the root directory of /proc
2636 * that properly belong to the /proc filesystem, as they describe
2637 * describe something that is process related.
2638 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002639static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002640 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002641 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002642};
2643
2644/*
2645 * Exceptional case: normally we are not allowed to unhash a busy
2646 * directory. In this case, however, we can do it - no aliasing problems
2647 * due to the way we treat inodes.
2648 */
2649static int proc_base_revalidate(struct dentry *dentry, struct nameidata *nd)
2650{
Nick Piggin34286d62011-01-07 17:49:57 +11002651 struct inode *inode;
2652 struct task_struct *task;
2653
2654 if (nd->flags & LOOKUP_RCU)
2655 return -ECHILD;
2656
2657 inode = dentry->d_inode;
2658 task = get_proc_task(inode);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002659 if (task) {
2660 put_task_struct(task);
2661 return 1;
2662 }
2663 d_drop(dentry);
2664 return 0;
2665}
2666
Al Virod72f71e2009-02-20 05:58:47 +00002667static const struct dentry_operations proc_base_dentry_operations =
Eric W. Biederman801199c2006-10-02 02:18:48 -07002668{
2669 .d_revalidate = proc_base_revalidate,
2670 .d_delete = pid_delete_dentry,
2671};
2672
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002673static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002674 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002675{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002676 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002677 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002678 struct proc_inode *ei;
Dan Carpenter73d36462010-05-26 14:43:25 -07002679 struct dentry *error;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002680
2681 /* Allocate the inode */
2682 error = ERR_PTR(-ENOMEM);
2683 inode = new_inode(dir->i_sb);
2684 if (!inode)
2685 goto out;
2686
2687 /* Initialize the inode */
2688 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04002689 inode->i_ino = get_next_ino();
Eric W. Biederman801199c2006-10-02 02:18:48 -07002690 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002691
2692 /*
2693 * grab the reference to the task.
2694 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07002695 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002696 if (!ei->pid)
2697 goto out_iput;
2698
Eric W. Biederman801199c2006-10-02 02:18:48 -07002699 inode->i_mode = p->mode;
2700 if (S_ISDIR(inode->i_mode))
2701 inode->i_nlink = 2;
2702 if (S_ISLNK(inode->i_mode))
2703 inode->i_size = 64;
2704 if (p->iop)
2705 inode->i_op = p->iop;
2706 if (p->fop)
2707 inode->i_fop = p->fop;
2708 ei->op = p->op;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002709 d_set_d_op(dentry, &proc_base_dentry_operations);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002710 d_add(dentry, inode);
2711 error = NULL;
2712out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002713 return error;
2714out_iput:
2715 iput(inode);
2716 goto out;
2717}
2718
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002719static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2720{
2721 struct dentry *error;
2722 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002723 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002724
2725 error = ERR_PTR(-ENOENT);
2726
2727 if (!task)
2728 goto out_no_task;
2729
2730 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002731 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2732 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002733 if (p->len != dentry->d_name.len)
2734 continue;
2735 if (!memcmp(dentry->d_name.name, p->name, p->len))
2736 break;
2737 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002738 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002739 goto out;
2740
2741 error = proc_base_instantiate(dir, dentry, task, p);
2742
2743out:
2744 put_task_struct(task);
2745out_no_task:
2746 return error;
2747}
2748
Eric Dumazetc5141e62007-05-08 00:26:15 -07002749static int proc_base_fill_cache(struct file *filp, void *dirent,
2750 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002751{
2752 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2753 proc_base_instantiate, task, p);
2754}
2755
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002756#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002757static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002758{
Andrea Righi940389b2008-07-28 00:48:12 +02002759 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002760 unsigned long flags;
Andrea Righi297c5d92008-07-25 01:48:49 -07002761
Andrea Righi59954772008-07-27 17:29:15 +02002762 if (whole && lock_task_sighand(task, &flags)) {
2763 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002764
Andrea Righi59954772008-07-27 17:29:15 +02002765 task_io_accounting_add(&acct, &task->signal->ioac);
2766 while_each_thread(task, t)
2767 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002768
Andrea Righi59954772008-07-27 17:29:15 +02002769 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002770 }
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002771 return sprintf(buffer,
2772 "rchar: %llu\n"
2773 "wchar: %llu\n"
2774 "syscr: %llu\n"
2775 "syscw: %llu\n"
2776 "read_bytes: %llu\n"
2777 "write_bytes: %llu\n"
2778 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002779 (unsigned long long)acct.rchar,
2780 (unsigned long long)acct.wchar,
2781 (unsigned long long)acct.syscr,
2782 (unsigned long long)acct.syscw,
2783 (unsigned long long)acct.read_bytes,
2784 (unsigned long long)acct.write_bytes,
2785 (unsigned long long)acct.cancelled_write_bytes);
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002786}
Andrea Righi297c5d92008-07-25 01:48:49 -07002787
2788static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2789{
2790 return do_io_accounting(task, buffer, 0);
2791}
2792
2793static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2794{
2795 return do_io_accounting(task, buffer, 1);
2796}
2797#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002798
Kees Cook47830722008-10-06 03:11:58 +04002799static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2800 struct pid *pid, struct task_struct *task)
2801{
2802 seq_printf(m, "%08x\n", task->personality);
2803 return 0;
2804}
2805
Eric W. Biederman801199c2006-10-02 02:18:48 -07002806/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002807 * Thread groups
2808 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002809static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002810static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002811
Eric Dumazetc5141e62007-05-08 00:26:15 -07002812static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002813 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2814 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2815 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002816#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002817 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002818#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002819 REG("environ", S_IRUSR, proc_environ_operations),
2820 INF("auxv", S_IRUSR, proc_pid_auxv),
2821 ONE("status", S_IRUGO, proc_pid_status),
2822 ONE("personality", S_IRUSR, proc_pid_personality),
Jiri Olsa3036e7b2010-09-30 15:15:33 -07002823 INF("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002824#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002825 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002826#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01002827#ifdef CONFIG_SCHED_AUTOGROUP
2828 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
2829#endif
john stultz4614a696b2009-12-14 18:00:05 -08002830 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002831#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002832 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002833#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002834 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2835 ONE("stat", S_IRUGO, proc_tgid_stat),
2836 ONE("statm", S_IRUGO, proc_pid_statm),
2837 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002838#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002839 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002840#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002841 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2842 LNK("cwd", proc_cwd_link),
2843 LNK("root", proc_root_link),
2844 LNK("exe", proc_exe_link),
2845 REG("mounts", S_IRUGO, proc_mounts_operations),
2846 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2847 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002848#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002849 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2850 REG("smaps", S_IRUGO, proc_smaps_operations),
2851 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002852#endif
2853#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002854 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002855#endif
2856#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002857 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002858#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002859#ifdef CONFIG_STACKTRACE
2860 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002861#endif
2862#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002863 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002864#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002865#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002866 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002867#endif
Paul Menage8793d852007-10-18 23:39:39 -07002868#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002869 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002870#endif
Paul Menagea4243162007-10-18 23:39:35 -07002871#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002872 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002873#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002874 INF("oom_score", S_IRUGO, proc_oom_score),
2875 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07002876 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002877#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002878 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2879 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002880#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002881#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002882 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002883#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002884#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002885 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002886#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002887#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002888 INF("io", S_IRUGO, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002889#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002890};
2891
2892static int proc_tgid_base_readdir(struct file * filp,
2893 void * dirent, filldir_t filldir)
2894{
2895 return proc_pident_readdir(filp,dirent,filldir,
2896 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
2897}
2898
Arjan van de Ven00977a52007-02-12 00:55:34 -08002899static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002900 .read = generic_read_dir,
2901 .readdir = proc_tgid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002902 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002903};
2904
2905static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002906 return proc_pident_lookup(dir, dentry,
2907 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002908}
2909
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002910static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002911 .lookup = proc_tgid_base_lookup,
2912 .getattr = pid_getattr,
2913 .setattr = proc_setattr,
2914};
2915
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002916static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002918 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002919 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002920 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Eric W. Biederman48e64842006-06-26 00:25:48 -07002922 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002923 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2924 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002925 if (dentry) {
Sukadev Bhattiprolu29f12ca2009-11-11 14:26:32 -08002926 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002927 d_drop(dentry);
2928 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Eric W. Biederman48e64842006-06-26 00:25:48 -07002931 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002932 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2933 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002934 if (!leader)
2935 goto out;
2936
2937 name.name = "task";
2938 name.len = strlen(name.name);
2939 dir = d_hash_and_lookup(leader, &name);
2940 if (!dir)
2941 goto out_put_leader;
2942
2943 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002944 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002945 dentry = d_hash_and_lookup(dir, &name);
2946 if (dentry) {
2947 shrink_dcache_parent(dentry);
2948 d_drop(dentry);
2949 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002951
2952 dput(dir);
2953out_put_leader:
2954 dput(leader);
2955out:
2956 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957}
2958
Randy Dunlap0895e912007-10-21 21:00:10 -07002959/**
2960 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2961 * @task: task that should be flushed.
2962 *
2963 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002964 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002965 * in. This call is supposed to do all of this job.
2966 *
2967 * Looks in the dcache for
2968 * /proc/@pid
2969 * /proc/@tgid/task/@pid
2970 * if either directory is present flushes it and all of it'ts children
2971 * from the dcache.
2972 *
2973 * It is safe and reasonable to cache /proc entries for a task until
2974 * that task exits. After that they just clog up the dcache with
2975 * useless entries, possibly causing useful dcache entries to be
2976 * flushed instead. This routine is proved to flush those useless
2977 * dcache entries at process exit time.
2978 *
2979 * NOTE: This routine is just an optimization so it does not guarantee
2980 * that no dcache entries will exist at process exit time it
2981 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002982 */
2983
2984void proc_flush_task(struct task_struct *task)
2985{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002986 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002987 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002988 struct upid *upid;
2989
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002990 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002991 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002992
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002993 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002994 upid = &pid->numbers[i];
2995 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002996 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002997 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07002998
2999 upid = &pid->numbers[pid->level];
3000 if (upid->nr == 1)
3001 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003002}
3003
Adrian Bunk9711ef92006-12-06 20:38:31 -08003004static struct dentry *proc_pid_instantiate(struct inode *dir,
3005 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003006 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003007{
3008 struct dentry *error = ERR_PTR(-ENOENT);
3009 struct inode *inode;
3010
Eric W. Biederman61a28782006-10-02 02:18:49 -07003011 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003012 if (!inode)
3013 goto out;
3014
3015 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3016 inode->i_op = &proc_tgid_base_inode_operations;
3017 inode->i_fop = &proc_tgid_base_operations;
3018 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003019
3020 inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff,
3021 ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003022
Nick Pigginfb045ad2011-01-07 17:49:55 +11003023 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003024
3025 d_add(dentry, inode);
3026 /* Close the race of the process dying before we return the dentry */
3027 if (pid_revalidate(dentry, NULL))
3028 error = NULL;
3029out:
3030 return error;
3031}
3032
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3034{
Dan Carpenter73d36462010-05-26 14:43:25 -07003035 struct dentry *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003038 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
Eric W. Biederman801199c2006-10-02 02:18:48 -07003040 result = proc_base_lookup(dir, dentry);
3041 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
3042 goto out;
3043
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 tgid = name_to_int(dentry);
3045 if (tgid == ~0U)
3046 goto out;
3047
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003048 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07003049 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003050 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 if (task)
3052 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07003053 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 if (!task)
3055 goto out;
3056
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003057 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003058 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059out:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07003060 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061}
3062
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003064 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003065 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003067struct tgid_iter {
3068 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003069 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003070};
3071static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
3072{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003073 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003075 if (iter.task)
3076 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003077 rcu_read_lock();
3078retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003079 iter.task = NULL;
3080 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003081 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003082 iter.tgid = pid_nr_ns(pid, ns);
3083 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003084 /* What we to know is if the pid we have find is the
3085 * pid of a thread_group_leader. Testing for task
3086 * being a thread_group_leader is the obvious thing
3087 * todo but there is a window when it fails, due to
3088 * the pid transfer logic in de_thread.
3089 *
3090 * So we perform the straight forward test of seeing
3091 * if the pid we have found is the pid of a thread
3092 * group leader, and don't worry if the task we have
3093 * found doesn't happen to be a thread group leader.
3094 * As we don't care in the case of readdir.
3095 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003096 if (!iter.task || !has_group_leader_pid(iter.task)) {
3097 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003098 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003099 }
3100 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07003102 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003103 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104}
3105
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003106#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Eric W. Biederman61a28782006-10-02 02:18:49 -07003108static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003109 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07003110{
3111 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003112 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003113 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003114 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003115}
3116
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117/* for the /proc/ directory itself, after non-process stuff has been done */
3118int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
3119{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003121 struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003122 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003123 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Eric W. Biederman61a28782006-10-02 02:18:49 -07003125 if (!reaper)
3126 goto out_no_task;
3127
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003128 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07003129 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07003130 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07003131 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 }
3133
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003134 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003135 iter.task = NULL;
3136 iter.tgid = filp->f_pos - TGID_OFFSET;
3137 for (iter = next_tgid(ns, iter);
3138 iter.task;
3139 iter.tgid += 1, iter = next_tgid(ns, iter)) {
3140 filp->f_pos = iter.tgid + TGID_OFFSET;
3141 if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) {
3142 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003143 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003146 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
3147out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07003148 put_task_struct(reaper);
3149out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 return 0;
3151}
3152
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003153/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003154 * Tasks
3155 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07003156static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003157 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07003158 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003159 REG("environ", S_IRUSR, proc_environ_operations),
3160 INF("auxv", S_IRUSR, proc_pid_auxv),
3161 ONE("status", S_IRUGO, proc_pid_status),
3162 ONE("personality", S_IRUSR, proc_pid_personality),
Jiri Olsa3036e7b2010-09-30 15:15:33 -07003163 INF("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003164#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003165 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003166#endif
john stultz4614a696b2009-12-14 18:00:05 -08003167 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07003168#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003169 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003170#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003171 INF("cmdline", S_IRUGO, proc_pid_cmdline),
3172 ONE("stat", S_IRUGO, proc_tid_stat),
3173 ONE("statm", S_IRUGO, proc_pid_statm),
3174 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003175#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003176 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003177#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003178 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3179 LNK("cwd", proc_cwd_link),
3180 LNK("root", proc_root_link),
3181 LNK("exe", proc_exe_link),
3182 REG("mounts", S_IRUGO, proc_mounts_operations),
3183 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003184#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003185 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
3186 REG("smaps", S_IRUGO, proc_smaps_operations),
3187 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003188#endif
3189#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003190 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003191#endif
3192#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003193 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003194#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003195#ifdef CONFIG_STACKTRACE
3196 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003197#endif
3198#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003199 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003200#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003201#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003202 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003203#endif
Paul Menage8793d852007-10-18 23:39:39 -07003204#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003205 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003206#endif
Paul Menagea4243162007-10-18 23:39:35 -07003207#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003208 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07003209#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003210 INF("oom_score", S_IRUGO, proc_oom_score),
3211 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003212 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003213#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003214 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
3215 REG("sessionid", S_IRUSR, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003216#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003217#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003218 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003219#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07003220#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003221 INF("io", S_IRUGO, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07003222#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003223};
3224
3225static int proc_tid_base_readdir(struct file * filp,
3226 void * dirent, filldir_t filldir)
3227{
3228 return proc_pident_readdir(filp,dirent,filldir,
3229 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
3230}
3231
3232static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003233 return proc_pident_lookup(dir, dentry,
3234 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003235}
3236
Arjan van de Ven00977a52007-02-12 00:55:34 -08003237static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003238 .read = generic_read_dir,
3239 .readdir = proc_tid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003240 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003241};
3242
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003243static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003244 .lookup = proc_tid_base_lookup,
3245 .getattr = pid_getattr,
3246 .setattr = proc_setattr,
3247};
3248
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003249static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003250 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003251{
3252 struct dentry *error = ERR_PTR(-ENOENT);
3253 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07003254 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003255
3256 if (!inode)
3257 goto out;
3258 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3259 inode->i_op = &proc_tid_base_inode_operations;
3260 inode->i_fop = &proc_tid_base_operations;
3261 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003262
3263 inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff,
3264 ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003265
Nick Pigginfb045ad2011-01-07 17:49:55 +11003266 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003267
3268 d_add(dentry, inode);
3269 /* Close the race of the process dying before we return the dentry */
3270 if (pid_revalidate(dentry, NULL))
3271 error = NULL;
3272out:
3273 return error;
3274}
3275
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003276static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3277{
3278 struct dentry *result = ERR_PTR(-ENOENT);
3279 struct task_struct *task;
3280 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003281 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003282 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003283
3284 if (!leader)
3285 goto out_no_task;
3286
3287 tid = name_to_int(dentry);
3288 if (tid == ~0U)
3289 goto out;
3290
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003291 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003292 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003293 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003294 if (task)
3295 get_task_struct(task);
3296 rcu_read_unlock();
3297 if (!task)
3298 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003299 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003300 goto out_drop_task;
3301
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003302 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003303out_drop_task:
3304 put_task_struct(task);
3305out:
3306 put_task_struct(leader);
3307out_no_task:
3308 return result;
3309}
3310
3311/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003312 * Find the first tid of a thread group to return to user space.
3313 *
3314 * Usually this is just the thread group leader, but if the users
3315 * buffer was too small or there was a seek into the middle of the
3316 * directory we have more work todo.
3317 *
3318 * In the case of a short read we start with find_task_by_pid.
3319 *
3320 * In the case of a seek we start with the leader and walk nr
3321 * threads past it.
3322 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07003323static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003324 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003325{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003326 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003327
Eric W. Biedermancc288732006-06-26 00:26:01 -07003328 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003329 /* Attempt to start with the pid of a thread */
3330 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003331 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003332 if (pos && (pos->group_leader == leader))
3333 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003334 }
3335
3336 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003337 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003338 if (nr && nr >= get_nr_threads(leader))
3339 goto out;
3340
3341 /* If we haven't found our starting place yet start
3342 * with the leader and walk nr threads forward.
3343 */
3344 for (pos = leader; nr > 0; --nr) {
3345 pos = next_thread(pos);
3346 if (pos == leader) {
3347 pos = NULL;
3348 goto out;
3349 }
3350 }
3351found:
3352 get_task_struct(pos);
3353out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003354 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003355 return pos;
3356}
3357
3358/*
3359 * Find the next thread in the thread list.
3360 * Return NULL if there is an error or no next thread.
3361 *
3362 * The reference to the input task_struct is released.
3363 */
3364static struct task_struct *next_tid(struct task_struct *start)
3365{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003366 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003367 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003368 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003369 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003370 if (thread_group_leader(pos))
3371 pos = NULL;
3372 else
3373 get_task_struct(pos);
3374 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003375 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003376 put_task_struct(start);
3377 return pos;
3378}
3379
Eric W. Biederman61a28782006-10-02 02:18:49 -07003380static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3381 struct task_struct *task, int tid)
3382{
3383 char name[PROC_NUMBUF];
3384 int len = snprintf(name, sizeof(name), "%d", tid);
3385 return proc_fill_cache(filp, dirent, filldir, name, len,
3386 proc_task_instantiate, task, NULL);
3387}
3388
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389/* for the /proc/TGID/task/ directories */
3390static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3391{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003392 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003394 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003395 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 int retval = -ENOENT;
3397 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003398 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003399 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003401 task = get_proc_task(inode);
3402 if (!task)
3403 goto out_no_task;
3404 rcu_read_lock();
3405 if (pid_alive(task)) {
3406 leader = task->group_leader;
3407 get_task_struct(leader);
3408 }
3409 rcu_read_unlock();
3410 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003411 if (!leader)
3412 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 retval = 0;
3414
Linus Torvaldsee568b22009-03-17 10:02:35 -07003415 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 case 0:
3417 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003418 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003420 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 /* fall through */
3422 case 1:
3423 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003424 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003426 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 /* fall through */
3428 }
3429
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003430 /* f_version caches the tgid value that the last readdir call couldn't
3431 * return. lseek aka telldir automagically resets f_version to 0.
3432 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003433 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003434 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003435 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003436 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003437 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003438 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003439 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003440 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003441 /* returning this tgid failed, save it as the first
3442 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003443 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003444 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 }
3448out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003449 put_task_struct(leader);
3450out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 return retval;
3452}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003453
3454static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3455{
3456 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003457 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003458 generic_fillattr(inode, stat);
3459
Eric W. Biederman99f89552006-06-26 00:25:55 -07003460 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003461 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003462 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003463 }
3464
3465 return 0;
3466}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003467
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003468static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003469 .lookup = proc_task_lookup,
3470 .getattr = proc_task_getattr,
3471 .setattr = proc_setattr,
3472};
3473
Arjan van de Ven00977a52007-02-12 00:55:34 -08003474static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003475 .read = generic_read_dir,
3476 .readdir = proc_task_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003477 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003478};