blob: c7f9f23449dc402a16ff1b36eb817fe63f02a779 [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>
Dipankar Sarmab8359962005-09-09 13:04:14 -070066#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/kallsyms.h>
Ken Chen2ec220e2008-11-10 11:26:08 +030068#include <linux/stacktrace.h>
Neil Hormand85f50d2007-10-18 23:40:37 -070069#include <linux/resource.h>
Kees Cook5096add2007-05-08 00:26:04 -070070#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/mount.h>
72#include <linux/security.h>
73#include <linux/ptrace.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070074#include <linux/tracehook.h>
Paul Menagea4243162007-10-18 23:39:35 -070075#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/cpuset.h>
77#include <linux/audit.h>
Al Viro5addc5d2005-11-07 17:15:49 -050078#include <linux/poll.h>
Serge E. Hallyn1651e142006-10-02 02:18:08 -070079#include <linux/nsproxy.h>
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -070080#include <linux/oom.h>
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -070081#include <linux/elf.h>
Pavel Emelyanov60347f62007-10-18 23:40:03 -070082#include <linux/pid_namespace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040083#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090084#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include "internal.h"
86
Eric W. Biederman0f2fe202006-06-26 00:25:46 -070087/* NOTE:
88 * Implementing inode permission operations in /proc is almost
89 * certainly an error. Permission checks need to happen during
90 * each system call not at open time. The reason is that most of
91 * what we wish to check for permissions in /proc varies at runtime.
92 *
93 * The classic example of a problem is opening file descriptors
94 * in /proc for a task before it execs a suid executable.
95 */
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097struct pid_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 char *name;
Eric Dumazetc5141e62007-05-08 00:26:15 -070099 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 mode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800101 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800102 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700103 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
Eric W. Biederman61a28782006-10-02 02:18:49 -0700106#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700107 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700108 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700109 .mode = MODE, \
110 .iop = IOP, \
111 .fop = FOP, \
112 .op = OP, \
113}
114
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300115#define DIR(NAME, MODE, iops, fops) \
116 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
117#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700118 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700119 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300120 { .proc_get_link = get_link } )
121#define REG(NAME, MODE, fops) \
122 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
123#define INF(NAME, MODE, read) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700124 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700125 NULL, &proc_info_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300126 { .proc_read = read } )
127#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800128 NOD(NAME, (S_IFREG|(MODE)), \
129 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300130 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Vegard Nossumaed54172008-06-05 22:46:53 -0700132/*
133 * Count the number of hardlinks for the pid_entry table, excluding the .
134 * and .. links.
135 */
136static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
137 unsigned int n)
138{
139 unsigned int i;
140 unsigned int count;
141
142 count = 0;
143 for (i = 0; i < n; ++i) {
144 if (S_ISDIR(entries[i].mode))
145 ++count;
146 }
147
148 return count;
149}
150
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000151static int get_fs_path(struct task_struct *task, struct path *path, bool root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 struct fs_struct *fs;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000154 int result = -ENOENT;
155
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700156 task_lock(task);
157 fs = task->fs;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000158 if (fs) {
159 read_lock(&fs->lock);
160 *path = root ? fs->root : fs->pwd;
161 path_get(path);
162 read_unlock(&fs->lock);
163 result = 0;
164 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700165 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000166 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700167}
168
Eric W. Biederman99f89552006-06-26 00:25:55 -0700169static int get_nr_threads(struct task_struct *tsk)
170{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700171 unsigned long flags;
172 int count = 0;
173
174 if (lock_task_sighand(tsk, &flags)) {
175 count = atomic_read(&tsk->signal->count);
176 unlock_task_sighand(tsk, &flags);
177 }
178 return count;
179}
180
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800181static int proc_cwd_link(struct inode *inode, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700182{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700183 struct task_struct *task = get_proc_task(inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700184 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700185
186 if (task) {
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000187 result = get_fs_path(task, path, 0);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700188 put_task_struct(task);
189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return result;
191}
192
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800193static int proc_root_link(struct inode *inode, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700195 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700197
198 if (task) {
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000199 result = get_fs_path(task, path, 1);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700200 put_task_struct(task);
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return result;
203}
204
Roland McGrath638fa202008-04-29 01:01:38 -0700205/*
206 * Return zero if current may access user memory in @task, -error if not.
207 */
208static int check_mem_permission(struct task_struct *task)
209{
210 /*
211 * A task can always look at itself, in case it chooses
212 * to use system calls instead of load instructions.
213 */
214 if (task == current)
215 return 0;
216
217 /*
218 * If current is actively ptrace'ing, and would also be
219 * permitted to freshly attach with ptrace now, permit it.
220 */
Roland McGrath0d094ef2008-07-25 19:45:49 -0700221 if (task_is_stopped_or_traced(task)) {
222 int match;
223 rcu_read_lock();
224 match = (tracehook_tracer_task(task) == current);
225 rcu_read_unlock();
226 if (match && ptrace_may_access(task, PTRACE_MODE_ATTACH))
227 return 0;
228 }
Roland McGrath638fa202008-04-29 01:01:38 -0700229
230 /*
231 * Noone else is allowed.
232 */
233 return -EPERM;
234}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Al Viro831830b2008-01-02 14:09:57 +0000236struct mm_struct *mm_for_maps(struct task_struct *task)
237{
Oleg Nesterov704b8362009-07-10 03:27:40 +0200238 struct mm_struct *mm;
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200239
Oleg Nesterov704b8362009-07-10 03:27:40 +0200240 if (mutex_lock_killable(&task->cred_guard_mutex))
241 return NULL;
242
243 mm = get_task_mm(task);
244 if (mm && mm != current->mm &&
245 !ptrace_may_access(task, PTRACE_MODE_READ)) {
246 mmput(mm);
247 mm = NULL;
Oleg Nesterov13f0fea2009-06-23 21:25:32 +0200248 }
Oleg Nesterov704b8362009-07-10 03:27:40 +0200249 mutex_unlock(&task->cred_guard_mutex);
250
Al Viro831830b2008-01-02 14:09:57 +0000251 return mm;
Al Viro831830b2008-01-02 14:09:57 +0000252}
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254static int proc_pid_cmdline(struct task_struct *task, char * buffer)
255{
256 int res = 0;
257 unsigned int len;
258 struct mm_struct *mm = get_task_mm(task);
259 if (!mm)
260 goto out;
261 if (!mm->arg_end)
262 goto out_mm; /* Shh! No looking before we're done */
263
264 len = mm->arg_end - mm->arg_start;
265
266 if (len > PAGE_SIZE)
267 len = PAGE_SIZE;
268
269 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
270
271 // If the nul at the end of args has been overwritten, then
272 // assume application is using setproctitle(3).
273 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
274 len = strnlen(buffer, res);
275 if (len < res) {
276 res = len;
277 } else {
278 len = mm->env_end - mm->env_start;
279 if (len > PAGE_SIZE - res)
280 len = PAGE_SIZE - res;
281 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
282 res = strnlen(buffer, res);
283 }
284 }
285out_mm:
286 mmput(mm);
287out:
288 return res;
289}
290
291static int proc_pid_auxv(struct task_struct *task, char *buffer)
292{
293 int res = 0;
294 struct mm_struct *mm = get_task_mm(task);
295 if (mm) {
296 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300297 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300299 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 res = nwords * sizeof(mm->saved_auxv[0]);
301 if (res > PAGE_SIZE)
302 res = PAGE_SIZE;
303 memcpy(buffer, mm->saved_auxv, res);
304 mmput(mm);
305 }
306 return res;
307}
308
309
310#ifdef CONFIG_KALLSYMS
311/*
312 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
313 * Returns the resolved symbol. If that fails, simply return the address.
314 */
315static int proc_pid_wchan(struct task_struct *task, char *buffer)
316{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700317 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700318 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 wchan = get_wchan(task);
321
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700322 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600323 if (!ptrace_may_access(task, PTRACE_MODE_READ))
324 return 0;
325 else
326 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700327 else
328 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330#endif /* CONFIG_KALLSYMS */
331
Ken Chen2ec220e2008-11-10 11:26:08 +0300332#ifdef CONFIG_STACKTRACE
333
334#define MAX_STACK_TRACE_DEPTH 64
335
336static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
337 struct pid *pid, struct task_struct *task)
338{
339 struct stack_trace trace;
340 unsigned long *entries;
341 int i;
342
343 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
344 if (!entries)
345 return -ENOMEM;
346
347 trace.nr_entries = 0;
348 trace.max_entries = MAX_STACK_TRACE_DEPTH;
349 trace.entries = entries;
350 trace.skip = 0;
351 save_stack_trace_tsk(task, &trace);
352
353 for (i = 0; i < trace.nr_entries; i++) {
354 seq_printf(m, "[<%p>] %pS\n",
355 (void *)entries[i], (void *)entries[i]);
356 }
357 kfree(entries);
358
359 return 0;
360}
361#endif
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363#ifdef CONFIG_SCHEDSTATS
364/*
365 * Provides /proc/PID/schedstat
366 */
367static int proc_pid_schedstat(struct task_struct *task, char *buffer)
368{
Balbir Singh172ba842007-07-09 18:52:00 +0200369 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100370 (unsigned long long)task->se.sum_exec_runtime,
371 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200372 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374#endif
375
Arjan van de Ven97455122008-01-25 21:08:34 +0100376#ifdef CONFIG_LATENCYTOP
377static int lstats_show_proc(struct seq_file *m, void *v)
378{
379 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800380 struct inode *inode = m->private;
381 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100382
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800383 if (!task)
384 return -ESRCH;
385 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100386 for (i = 0; i < 32; i++) {
387 if (task->latency_record[i].backtrace[0]) {
388 int q;
389 seq_printf(m, "%i %li %li ",
390 task->latency_record[i].count,
391 task->latency_record[i].time,
392 task->latency_record[i].max);
393 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Hugh Dickins9c246242008-12-09 13:14:27 -0800394 char sym[KSYM_SYMBOL_LEN];
Arjan van de Ven97455122008-01-25 21:08:34 +0100395 char *c;
396 if (!task->latency_record[i].backtrace[q])
397 break;
398 if (task->latency_record[i].backtrace[q] == ULONG_MAX)
399 break;
400 sprint_symbol(sym, task->latency_record[i].backtrace[q]);
401 c = strchr(sym, '+');
402 if (c)
403 *c = 0;
404 seq_printf(m, "%s ", sym);
405 }
406 seq_printf(m, "\n");
407 }
408
409 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800410 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100411 return 0;
412}
413
414static int lstats_open(struct inode *inode, struct file *file)
415{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800416 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800417}
418
Arjan van de Ven97455122008-01-25 21:08:34 +0100419static ssize_t lstats_write(struct file *file, const char __user *buf,
420 size_t count, loff_t *offs)
421{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800422 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100423
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800424 if (!task)
425 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100426 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800427 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100428
429 return count;
430}
431
432static const struct file_operations proc_lstats_operations = {
433 .open = lstats_open,
434 .read = seq_read,
435 .write = lstats_write,
436 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800437 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100438};
439
440#endif
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442/* The badness from the OOM killer */
443unsigned long badness(struct task_struct *p, unsigned long uptime);
444static int proc_oom_score(struct task_struct *task, char *buffer)
445{
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200446 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct timespec uptime;
448
449 do_posix_clock_monotonic_gettime(&uptime);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700450 read_lock(&tasklist_lock);
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200451 if (pid_alive(task))
452 points = badness(task, uptime.tv_sec);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700453 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return sprintf(buffer, "%lu\n", points);
455}
456
Neil Hormand85f50d2007-10-18 23:40:37 -0700457struct limit_names {
458 char *name;
459 char *unit;
460};
461
462static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700463 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700464 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
465 [RLIMIT_DATA] = {"Max data size", "bytes"},
466 [RLIMIT_STACK] = {"Max stack size", "bytes"},
467 [RLIMIT_CORE] = {"Max core file size", "bytes"},
468 [RLIMIT_RSS] = {"Max resident set", "bytes"},
469 [RLIMIT_NPROC] = {"Max processes", "processes"},
470 [RLIMIT_NOFILE] = {"Max open files", "files"},
471 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
472 [RLIMIT_AS] = {"Max address space", "bytes"},
473 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
474 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
475 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
476 [RLIMIT_NICE] = {"Max nice priority", NULL},
477 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800478 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700479};
480
481/* Display limits for a process */
482static int proc_pid_limits(struct task_struct *task, char *buffer)
483{
484 unsigned int i;
485 int count = 0;
486 unsigned long flags;
487 char *bufptr = buffer;
488
489 struct rlimit rlim[RLIM_NLIMITS];
490
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400491 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700492 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700493 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
494 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700495
496 /*
497 * print the file header
498 */
499 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
500 "Limit", "Soft Limit", "Hard Limit", "Units");
501
502 for (i = 0; i < RLIM_NLIMITS; i++) {
503 if (rlim[i].rlim_cur == RLIM_INFINITY)
504 count += sprintf(&bufptr[count], "%-25s %-20s ",
505 lnames[i].name, "unlimited");
506 else
507 count += sprintf(&bufptr[count], "%-25s %-20lu ",
508 lnames[i].name, rlim[i].rlim_cur);
509
510 if (rlim[i].rlim_max == RLIM_INFINITY)
511 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
512 else
513 count += sprintf(&bufptr[count], "%-20lu ",
514 rlim[i].rlim_max);
515
516 if (lnames[i].unit)
517 count += sprintf(&bufptr[count], "%-10s\n",
518 lnames[i].unit);
519 else
520 count += sprintf(&bufptr[count], "\n");
521 }
522
523 return count;
524}
525
Roland McGrathebcb6732008-07-25 19:46:00 -0700526#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
527static int proc_pid_syscall(struct task_struct *task, char *buffer)
528{
529 long nr;
530 unsigned long args[6], sp, pc;
531
532 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
533 return sprintf(buffer, "running\n");
534
535 if (nr < 0)
536 return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
537
538 return sprintf(buffer,
539 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
540 nr,
541 args[0], args[1], args[2], args[3], args[4], args[5],
542 sp, pc);
543}
544#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/************************************************************************/
547/* Here the fs part begins */
548/************************************************************************/
549
550/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700551static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700553 struct task_struct *task;
554 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700555 /* Allow access to a task's file descriptors if it is us or we
556 * may use ptrace attach to the process and find out that
557 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700558 */
559 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700560 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400561 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700562 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700563 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700564 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700567static int proc_setattr(struct dentry *dentry, struct iattr *attr)
568{
569 int error;
570 struct inode *inode = dentry->d_inode;
571
572 if (attr->ia_valid & ATTR_MODE)
573 return -EPERM;
574
575 error = inode_change_ok(inode, attr);
John Johansen1e8123f2007-05-08 00:29:41 -0700576 if (!error)
577 error = inode_setattr(inode, attr);
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700578 return error;
579}
580
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800581static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700582 .setattr = proc_setattr,
583};
584
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100585static int mounts_open_common(struct inode *inode, struct file *file,
586 const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700588 struct task_struct *task = get_proc_task(inode);
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700589 struct nsproxy *nsp;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800590 struct mnt_namespace *ns = NULL;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100591 struct path root;
Al Viro5addc5d2005-11-07 17:15:49 -0500592 struct proc_mounts *p;
593 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Eric W. Biederman99f89552006-06-26 00:25:55 -0700595 if (task) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700596 rcu_read_lock();
597 nsp = task_nsproxy(task);
598 if (nsp) {
599 ns = nsp->mnt_ns;
Alexey Dobriyan863c4702007-01-26 00:56:53 -0800600 if (ns)
601 get_mnt_ns(ns);
602 }
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700603 rcu_read_unlock();
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000604 if (ns && get_fs_path(task, &root, 1) == 0)
605 ret = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700606 put_task_struct(task);
607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100609 if (!ns)
610 goto err;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000611 if (ret)
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100612 goto err_put_ns;
613
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100614 ret = -ENOMEM;
615 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
616 if (!p)
617 goto err_put_path;
618
619 file->private_data = &p->m;
620 ret = seq_open(file, op);
621 if (ret)
622 goto err_free;
623
624 p->m.private = p;
625 p->ns = ns;
626 p->root = root;
627 p->event = ns->event;
628
629 return 0;
630
631 err_free:
632 kfree(p);
633 err_put_path:
634 path_put(&root);
635 err_put_ns:
636 put_mnt_ns(ns);
637 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return ret;
639}
640
641static int mounts_release(struct inode *inode, struct file *file)
642{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100643 struct proc_mounts *p = file->private_data;
644 path_put(&p->root);
645 put_mnt_ns(p->ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return seq_release(inode, file);
647}
648
Al Viro5addc5d2005-11-07 17:15:49 -0500649static unsigned mounts_poll(struct file *file, poll_table *wait)
650{
651 struct proc_mounts *p = file->private_data;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900652 unsigned res = POLLIN | POLLRDNORM;
Al Viro5addc5d2005-11-07 17:15:49 -0500653
Al Viro9f5596a2010-02-05 00:40:25 -0500654 poll_wait(file, &p->ns->poll, wait);
655 if (mnt_had_events(p))
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900656 res |= POLLERR | POLLPRI;
Al Viro5addc5d2005-11-07 17:15:49 -0500657
658 return res;
659}
660
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100661static int mounts_open(struct inode *inode, struct file *file)
662{
663 return mounts_open_common(inode, file, &mounts_op);
664}
665
Arjan van de Ven00977a52007-02-12 00:55:34 -0800666static const struct file_operations proc_mounts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 .open = mounts_open,
668 .read = seq_read,
669 .llseek = seq_lseek,
670 .release = mounts_release,
Al Viro5addc5d2005-11-07 17:15:49 -0500671 .poll = mounts_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672};
673
Ram Pai2d4d4862008-03-27 13:06:25 +0100674static int mountinfo_open(struct inode *inode, struct file *file)
675{
676 return mounts_open_common(inode, file, &mountinfo_op);
677}
678
679static const struct file_operations proc_mountinfo_operations = {
680 .open = mountinfo_open,
681 .read = seq_read,
682 .llseek = seq_lseek,
683 .release = mounts_release,
684 .poll = mounts_poll,
685};
686
Chuck Leverb4629fe2006-03-20 13:44:12 -0500687static int mountstats_open(struct inode *inode, struct file *file)
688{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100689 return mounts_open_common(inode, file, &mountstats_op);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500690}
691
Arjan van de Ven00977a52007-02-12 00:55:34 -0800692static const struct file_operations proc_mountstats_operations = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500693 .open = mountstats_open,
694 .read = seq_read,
695 .llseek = seq_lseek,
696 .release = mounts_release,
697};
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
700
701static ssize_t proc_info_read(struct file * file, char __user * buf,
702 size_t count, loff_t *ppos)
703{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800704 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 unsigned long page;
706 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700707 struct task_struct *task = get_proc_task(inode);
708
709 length = -ESRCH;
710 if (!task)
711 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 if (count > PROC_BLOCK_SIZE)
714 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700715
716 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700717 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700718 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 length = PROC_I(inode)->op.proc_read(task, (char*)page);
721
722 if (length >= 0)
723 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
724 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700725out:
726 put_task_struct(task);
727out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return length;
729}
730
Arjan van de Ven00977a52007-02-12 00:55:34 -0800731static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 .read = proc_info_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100733 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734};
735
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800736static int proc_single_show(struct seq_file *m, void *v)
737{
738 struct inode *inode = m->private;
739 struct pid_namespace *ns;
740 struct pid *pid;
741 struct task_struct *task;
742 int ret;
743
744 ns = inode->i_sb->s_fs_info;
745 pid = proc_pid(inode);
746 task = get_pid_task(pid, PIDTYPE_PID);
747 if (!task)
748 return -ESRCH;
749
750 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
751
752 put_task_struct(task);
753 return ret;
754}
755
756static int proc_single_open(struct inode *inode, struct file *filp)
757{
758 int ret;
759 ret = single_open(filp, proc_single_show, NULL);
760 if (!ret) {
761 struct seq_file *m = filp->private_data;
762
763 m->private = inode;
764 }
765 return ret;
766}
767
768static const struct file_operations proc_single_file_operations = {
769 .open = proc_single_open,
770 .read = seq_read,
771 .llseek = seq_lseek,
772 .release = single_release,
773};
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775static int mem_open(struct inode* inode, struct file* file)
776{
777 file->private_data = (void*)((long)current->self_exec_id);
778 return 0;
779}
780
781static ssize_t mem_read(struct file * file, char __user * buf,
782 size_t count, loff_t *ppos)
783{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800784 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 char *page;
786 unsigned long src = *ppos;
787 int ret = -ESRCH;
788 struct mm_struct *mm;
789
Eric W. Biederman99f89552006-06-26 00:25:55 -0700790 if (!task)
791 goto out_no_task;
792
Roland McGrath638fa202008-04-29 01:01:38 -0700793 if (check_mem_permission(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 goto out;
795
796 ret = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700797 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (!page)
799 goto out;
800
801 ret = 0;
802
803 mm = get_task_mm(task);
804 if (!mm)
805 goto out_free;
806
807 ret = -EIO;
808
809 if (file->private_data != (void*)((long)current->self_exec_id))
810 goto out_put;
811
812 ret = 0;
813
814 while (count > 0) {
815 int this_len, retval;
816
817 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
818 retval = access_process_vm(task, src, page, this_len, 0);
Roland McGrath638fa202008-04-29 01:01:38 -0700819 if (!retval || check_mem_permission(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (!ret)
821 ret = -EIO;
822 break;
823 }
824
825 if (copy_to_user(buf, page, retval)) {
826 ret = -EFAULT;
827 break;
828 }
829
830 ret += retval;
831 src += retval;
832 buf += retval;
833 count -= retval;
834 }
835 *ppos = src;
836
837out_put:
838 mmput(mm);
839out_free:
840 free_page((unsigned long) page);
841out:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700842 put_task_struct(task);
843out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return ret;
845}
846
847#define mem_write NULL
848
849#ifndef mem_write
850/* This is a security hazard */
Glauber de Oliveira Costa63967fa2007-02-20 13:58:12 -0800851static ssize_t mem_write(struct file * file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 size_t count, loff_t *ppos)
853{
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700854 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 char *page;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800856 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 unsigned long dst = *ppos;
858
Eric W. Biederman99f89552006-06-26 00:25:55 -0700859 copied = -ESRCH;
860 if (!task)
861 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Roland McGrath638fa202008-04-29 01:01:38 -0700863 if (check_mem_permission(task))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700864 goto out;
865
866 copied = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700867 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (!page)
Eric W. Biederman99f89552006-06-26 00:25:55 -0700869 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700871 copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 while (count > 0) {
873 int this_len, retval;
874
875 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
876 if (copy_from_user(page, buf, this_len)) {
877 copied = -EFAULT;
878 break;
879 }
880 retval = access_process_vm(task, dst, page, this_len, 1);
881 if (!retval) {
882 if (!copied)
883 copied = -EIO;
884 break;
885 }
886 copied += retval;
887 buf += retval;
888 dst += retval;
889 count -= retval;
890 }
891 *ppos = dst;
892 free_page((unsigned long) page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700893out:
894 put_task_struct(task);
895out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return copied;
897}
898#endif
899
Matt Mackall85863e42008-02-04 22:29:04 -0800900loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 switch (orig) {
903 case 0:
904 file->f_pos = offset;
905 break;
906 case 1:
907 file->f_pos += offset;
908 break;
909 default:
910 return -EINVAL;
911 }
912 force_successful_syscall_return();
913 return file->f_pos;
914}
915
Arjan van de Ven00977a52007-02-12 00:55:34 -0800916static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 .llseek = mem_lseek,
918 .read = mem_read,
919 .write = mem_write,
920 .open = mem_open,
921};
922
James Pearson315e28c2007-10-16 23:30:17 -0700923static ssize_t environ_read(struct file *file, char __user *buf,
924 size_t count, loff_t *ppos)
925{
926 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
927 char *page;
928 unsigned long src = *ppos;
929 int ret = -ESRCH;
930 struct mm_struct *mm;
931
932 if (!task)
933 goto out_no_task;
934
Stephen Smalley006ebb42008-05-19 08:32:49 -0400935 if (!ptrace_may_access(task, PTRACE_MODE_READ))
James Pearson315e28c2007-10-16 23:30:17 -0700936 goto out;
937
938 ret = -ENOMEM;
939 page = (char *)__get_free_page(GFP_TEMPORARY);
940 if (!page)
941 goto out;
942
943 ret = 0;
944
945 mm = get_task_mm(task);
946 if (!mm)
947 goto out_free;
948
949 while (count > 0) {
950 int this_len, retval, max_len;
951
952 this_len = mm->env_end - (mm->env_start + src);
953
954 if (this_len <= 0)
955 break;
956
957 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
958 this_len = (this_len > max_len) ? max_len : this_len;
959
960 retval = access_process_vm(task, (mm->env_start + src),
961 page, this_len, 0);
962
963 if (retval <= 0) {
964 ret = retval;
965 break;
966 }
967
968 if (copy_to_user(buf, page, retval)) {
969 ret = -EFAULT;
970 break;
971 }
972
973 ret += retval;
974 src += retval;
975 buf += retval;
976 count -= retval;
977 }
978 *ppos = src;
979
980 mmput(mm);
981out_free:
982 free_page((unsigned long) page);
983out:
984 put_task_struct(task);
985out_no_task:
986 return ret;
987}
988
989static const struct file_operations proc_environ_operations = {
990 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100991 .llseek = generic_file_llseek,
James Pearson315e28c2007-10-16 23:30:17 -0700992};
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994static ssize_t oom_adjust_read(struct file *file, char __user *buf,
995 size_t count, loff_t *ppos)
996{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800997 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700998 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 size_t len;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001000 int oom_adjust = OOM_DISABLE;
1001 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Eric W. Biederman99f89552006-06-26 00:25:55 -07001003 if (!task)
1004 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001005
1006 if (lock_task_sighand(task, &flags)) {
1007 oom_adjust = task->signal->oom_adj;
1008 unlock_task_sighand(task, &flags);
1009 }
1010
Eric W. Biederman99f89552006-06-26 00:25:55 -07001011 put_task_struct(task);
1012
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001013 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001014
1015 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
1018static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
1019 size_t count, loff_t *ppos)
1020{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001021 struct task_struct *task;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001022 char buffer[PROC_NUMBUF];
1023 long oom_adjust;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001024 unsigned long flags;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001025 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001027 memset(buffer, 0, sizeof(buffer));
1028 if (count > sizeof(buffer) - 1)
1029 count = sizeof(buffer) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (copy_from_user(buffer, buf, count))
1031 return -EFAULT;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001032
1033 err = strict_strtol(strstrip(buffer), 0, &oom_adjust);
1034 if (err)
1035 return -EINVAL;
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07001036 if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) &&
1037 oom_adjust != OOM_DISABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return -EINVAL;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001039
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001040 task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001041 if (!task)
1042 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001043 if (!lock_task_sighand(task, &flags)) {
1044 put_task_struct(task);
1045 return -ESRCH;
1046 }
1047
1048 if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) {
1049 unlock_task_sighand(task, &flags);
Guillem Jover8fb4fc62006-12-06 20:32:24 -08001050 put_task_struct(task);
1051 return -EACCES;
1052 }
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001053
1054 task->signal->oom_adj = oom_adjust;
1055
1056 unlock_task_sighand(task, &flags);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001057 put_task_struct(task);
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001058
1059 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060}
1061
Arjan van de Ven00977a52007-02-12 00:55:34 -08001062static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 .read = oom_adjust_read,
1064 .write = oom_adjust_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001065 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066};
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068#ifdef CONFIG_AUDITSYSCALL
1069#define TMPBUFLEN 21
1070static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1071 size_t count, loff_t *ppos)
1072{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001073 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001074 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 ssize_t length;
1076 char tmpbuf[TMPBUFLEN];
1077
Eric W. Biederman99f89552006-06-26 00:25:55 -07001078 if (!task)
1079 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Al Viro0c11b942008-01-10 04:20:52 -05001081 audit_get_loginuid(task));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001082 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1084}
1085
1086static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1087 size_t count, loff_t *ppos)
1088{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001089 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 char *page, *tmp;
1091 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 uid_t loginuid;
1093
1094 if (!capable(CAP_AUDIT_CONTROL))
1095 return -EPERM;
1096
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001097 rcu_read_lock();
1098 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1099 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001101 }
1102 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Al Viroe0182902006-05-18 08:28:02 -04001104 if (count >= PAGE_SIZE)
1105 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 if (*ppos != 0) {
1108 /* No partial writes. */
1109 return -EINVAL;
1110 }
Mel Gormane12ba742007-10-16 01:25:52 -07001111 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (!page)
1113 return -ENOMEM;
1114 length = -EFAULT;
1115 if (copy_from_user(page, buf, count))
1116 goto out_free_page;
1117
Al Viroe0182902006-05-18 08:28:02 -04001118 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 loginuid = simple_strtoul(page, &tmp, 10);
1120 if (tmp == page) {
1121 length = -EINVAL;
1122 goto out_free_page;
1123
1124 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07001125 length = audit_set_loginuid(current, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (likely(length == 0))
1127 length = count;
1128
1129out_free_page:
1130 free_page((unsigned long) page);
1131 return length;
1132}
1133
Arjan van de Ven00977a52007-02-12 00:55:34 -08001134static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 .read = proc_loginuid_read,
1136 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001137 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138};
Eric Paris1e0bd752008-03-13 08:15:31 -04001139
1140static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1141 size_t count, loff_t *ppos)
1142{
1143 struct inode * inode = file->f_path.dentry->d_inode;
1144 struct task_struct *task = get_proc_task(inode);
1145 ssize_t length;
1146 char tmpbuf[TMPBUFLEN];
1147
1148 if (!task)
1149 return -ESRCH;
1150 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1151 audit_get_sessionid(task));
1152 put_task_struct(task);
1153 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1154}
1155
1156static const struct file_operations proc_sessionid_operations = {
1157 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001158 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001159};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160#endif
1161
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001162#ifdef CONFIG_FAULT_INJECTION
1163static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1164 size_t count, loff_t *ppos)
1165{
1166 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1167 char buffer[PROC_NUMBUF];
1168 size_t len;
1169 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001170
1171 if (!task)
1172 return -ESRCH;
1173 make_it_fail = task->make_it_fail;
1174 put_task_struct(task);
1175
1176 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001177
1178 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001179}
1180
1181static ssize_t proc_fault_inject_write(struct file * file,
1182 const char __user * buf, size_t count, loff_t *ppos)
1183{
1184 struct task_struct *task;
1185 char buffer[PROC_NUMBUF], *end;
1186 int make_it_fail;
1187
1188 if (!capable(CAP_SYS_RESOURCE))
1189 return -EPERM;
1190 memset(buffer, 0, sizeof(buffer));
1191 if (count > sizeof(buffer) - 1)
1192 count = sizeof(buffer) - 1;
1193 if (copy_from_user(buffer, buf, count))
1194 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001195 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1196 if (*end)
1197 return -EINVAL;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001198 task = get_proc_task(file->f_dentry->d_inode);
1199 if (!task)
1200 return -ESRCH;
1201 task->make_it_fail = make_it_fail;
1202 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001203
1204 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001205}
1206
Arjan van de Ven00977a52007-02-12 00:55:34 -08001207static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001208 .read = proc_fault_inject_read,
1209 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001210 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001211};
1212#endif
1213
Arjan van de Ven97455122008-01-25 21:08:34 +01001214
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001215#ifdef CONFIG_SCHED_DEBUG
1216/*
1217 * Print out various scheduling related per-task fields:
1218 */
1219static int sched_show(struct seq_file *m, void *v)
1220{
1221 struct inode *inode = m->private;
1222 struct task_struct *p;
1223
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001224 p = get_proc_task(inode);
1225 if (!p)
1226 return -ESRCH;
1227 proc_sched_show_task(p, m);
1228
1229 put_task_struct(p);
1230
1231 return 0;
1232}
1233
1234static ssize_t
1235sched_write(struct file *file, const char __user *buf,
1236 size_t count, loff_t *offset)
1237{
1238 struct inode *inode = file->f_path.dentry->d_inode;
1239 struct task_struct *p;
1240
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001241 p = get_proc_task(inode);
1242 if (!p)
1243 return -ESRCH;
1244 proc_sched_set_task(p);
1245
1246 put_task_struct(p);
1247
1248 return count;
1249}
1250
1251static int sched_open(struct inode *inode, struct file *filp)
1252{
1253 int ret;
1254
1255 ret = single_open(filp, sched_show, NULL);
1256 if (!ret) {
1257 struct seq_file *m = filp->private_data;
1258
1259 m->private = inode;
1260 }
1261 return ret;
1262}
1263
1264static const struct file_operations proc_pid_sched_operations = {
1265 .open = sched_open,
1266 .read = seq_read,
1267 .write = sched_write,
1268 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001269 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001270};
1271
1272#endif
1273
john stultz4614a696b2009-12-14 18:00:05 -08001274static ssize_t comm_write(struct file *file, const char __user *buf,
1275 size_t count, loff_t *offset)
1276{
1277 struct inode *inode = file->f_path.dentry->d_inode;
1278 struct task_struct *p;
1279 char buffer[TASK_COMM_LEN];
1280
1281 memset(buffer, 0, sizeof(buffer));
1282 if (count > sizeof(buffer) - 1)
1283 count = sizeof(buffer) - 1;
1284 if (copy_from_user(buffer, buf, count))
1285 return -EFAULT;
1286
1287 p = get_proc_task(inode);
1288 if (!p)
1289 return -ESRCH;
1290
1291 if (same_thread_group(current, p))
1292 set_task_comm(p, buffer);
1293 else
1294 count = -EINVAL;
1295
1296 put_task_struct(p);
1297
1298 return count;
1299}
1300
1301static int comm_show(struct seq_file *m, void *v)
1302{
1303 struct inode *inode = m->private;
1304 struct task_struct *p;
1305
1306 p = get_proc_task(inode);
1307 if (!p)
1308 return -ESRCH;
1309
1310 task_lock(p);
1311 seq_printf(m, "%s\n", p->comm);
1312 task_unlock(p);
1313
1314 put_task_struct(p);
1315
1316 return 0;
1317}
1318
1319static int comm_open(struct inode *inode, struct file *filp)
1320{
1321 int ret;
1322
1323 ret = single_open(filp, comm_show, NULL);
1324 if (!ret) {
1325 struct seq_file *m = filp->private_data;
1326
1327 m->private = inode;
1328 }
1329 return ret;
1330}
1331
1332static const struct file_operations proc_pid_set_comm_operations = {
1333 .open = comm_open,
1334 .read = seq_read,
1335 .write = comm_write,
1336 .llseek = seq_lseek,
1337 .release = single_release,
1338};
1339
Matt Helsley925d1c42008-04-29 01:01:36 -07001340/*
1341 * We added or removed a vma mapping the executable. The vmas are only mapped
1342 * during exec and are not mapped with the mmap system call.
1343 * Callers must hold down_write() on the mm's mmap_sem for these
1344 */
1345void added_exe_file_vma(struct mm_struct *mm)
1346{
1347 mm->num_exe_file_vmas++;
1348}
1349
1350void removed_exe_file_vma(struct mm_struct *mm)
1351{
1352 mm->num_exe_file_vmas--;
1353 if ((mm->num_exe_file_vmas == 0) && mm->exe_file){
1354 fput(mm->exe_file);
1355 mm->exe_file = NULL;
1356 }
1357
1358}
1359
1360void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1361{
1362 if (new_exe_file)
1363 get_file(new_exe_file);
1364 if (mm->exe_file)
1365 fput(mm->exe_file);
1366 mm->exe_file = new_exe_file;
1367 mm->num_exe_file_vmas = 0;
1368}
1369
1370struct file *get_mm_exe_file(struct mm_struct *mm)
1371{
1372 struct file *exe_file;
1373
1374 /* We need mmap_sem to protect against races with removal of
1375 * VM_EXECUTABLE vmas */
1376 down_read(&mm->mmap_sem);
1377 exe_file = mm->exe_file;
1378 if (exe_file)
1379 get_file(exe_file);
1380 up_read(&mm->mmap_sem);
1381 return exe_file;
1382}
1383
1384void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm)
1385{
1386 /* It's safe to write the exe_file pointer without exe_file_lock because
1387 * this is called during fork when the task is not yet in /proc */
1388 newmm->exe_file = get_mm_exe_file(oldmm);
1389}
1390
1391static int proc_exe_link(struct inode *inode, struct path *exe_path)
1392{
1393 struct task_struct *task;
1394 struct mm_struct *mm;
1395 struct file *exe_file;
1396
1397 task = get_proc_task(inode);
1398 if (!task)
1399 return -ENOENT;
1400 mm = get_task_mm(task);
1401 put_task_struct(task);
1402 if (!mm)
1403 return -ENOENT;
1404 exe_file = get_mm_exe_file(mm);
1405 mmput(mm);
1406 if (exe_file) {
1407 *exe_path = exe_file->f_path;
1408 path_get(&exe_file->f_path);
1409 fput(exe_file);
1410 return 0;
1411 } else
1412 return -ENOENT;
1413}
1414
Al Viro008b1502005-08-20 00:17:39 +01001415static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
1417 struct inode *inode = dentry->d_inode;
1418 int error = -EACCES;
1419
1420 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001421 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Eric W. Biederman778c1142006-06-26 00:25:58 -07001423 /* Are we allowed to snoop on the tasks file descriptors? */
1424 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001427 error = PROC_I(inode)->op.proc_get_link(inode, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428out:
Al Viro008b1502005-08-20 00:17:39 +01001429 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001432static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
Mel Gormane12ba742007-10-16 01:25:52 -07001434 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001435 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 int len;
1437
1438 if (!tmp)
1439 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001440
Jan Blunckcf28b482008-02-14 19:38:44 -08001441 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001442 len = PTR_ERR(pathname);
1443 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001445 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 if (len > buflen)
1448 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001449 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 len = -EFAULT;
1451 out:
1452 free_page((unsigned long)tmp);
1453 return len;
1454}
1455
1456static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1457{
1458 int error = -EACCES;
1459 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001460 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Eric W. Biederman778c1142006-06-26 00:25:58 -07001462 /* Are we allowed to snoop on the tasks file descriptors? */
1463 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001466 error = PROC_I(inode)->op.proc_get_link(inode, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 if (error)
1468 goto out;
1469
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001470 error = do_proc_readlink(&path, buffer, buflen);
1471 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 return error;
1474}
1475
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001476static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001478 .follow_link = proc_pid_follow_link,
1479 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480};
1481
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001482
1483/* building an inode */
1484
1485static int task_dumpable(struct task_struct *task)
1486{
1487 int dumpable = 0;
1488 struct mm_struct *mm;
1489
1490 task_lock(task);
1491 mm = task->mm;
1492 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001493 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001494 task_unlock(task);
1495 if(dumpable == 1)
1496 return 1;
1497 return 0;
1498}
1499
1500
Eric W. Biederman61a28782006-10-02 02:18:49 -07001501static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001502{
1503 struct inode * inode;
1504 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001505 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001506
1507 /* We need a new inode */
1508
1509 inode = new_inode(sb);
1510 if (!inode)
1511 goto out;
1512
1513 /* Common stuff */
1514 ei = PROC_I(inode);
1515 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001516 inode->i_op = &proc_def_inode_operations;
1517
1518 /*
1519 * grab the reference to task.
1520 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001521 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001522 if (!ei->pid)
1523 goto out_unlock;
1524
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001525 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001526 rcu_read_lock();
1527 cred = __task_cred(task);
1528 inode->i_uid = cred->euid;
1529 inode->i_gid = cred->egid;
1530 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001531 }
1532 security_task_to_inode(task, inode);
1533
1534out:
1535 return inode;
1536
1537out_unlock:
1538 iput(inode);
1539 return NULL;
1540}
1541
1542static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1543{
1544 struct inode *inode = dentry->d_inode;
1545 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001546 const struct cred *cred;
1547
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001548 generic_fillattr(inode, stat);
1549
1550 rcu_read_lock();
1551 stat->uid = 0;
1552 stat->gid = 0;
1553 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1554 if (task) {
1555 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1556 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001557 cred = __task_cred(task);
1558 stat->uid = cred->euid;
1559 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001560 }
1561 }
1562 rcu_read_unlock();
1563 return 0;
1564}
1565
1566/* dentry stuff */
1567
1568/*
1569 * Exceptional case: normally we are not allowed to unhash a busy
1570 * directory. In this case, however, we can do it - no aliasing problems
1571 * due to the way we treat inodes.
1572 *
1573 * Rewrite the inode's ownerships here because the owning task may have
1574 * performed a setuid(), etc.
1575 *
1576 * Before the /proc/pid/status file was created the only way to read
1577 * the effective uid of a /process was to stat /proc/pid. Reading
1578 * /proc/pid/status is slow enough that procps and other packages
1579 * kept stating /proc/pid. To keep the rules in /proc simple I have
1580 * made this apply to all per process world readable and executable
1581 * directories.
1582 */
1583static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1584{
1585 struct inode *inode = dentry->d_inode;
1586 struct task_struct *task = get_proc_task(inode);
David Howellsc69e8d92008-11-14 10:39:19 +11001587 const struct cred *cred;
1588
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001589 if (task) {
1590 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1591 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001592 rcu_read_lock();
1593 cred = __task_cred(task);
1594 inode->i_uid = cred->euid;
1595 inode->i_gid = cred->egid;
1596 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001597 } else {
1598 inode->i_uid = 0;
1599 inode->i_gid = 0;
1600 }
1601 inode->i_mode &= ~(S_ISUID | S_ISGID);
1602 security_task_to_inode(task, inode);
1603 put_task_struct(task);
1604 return 1;
1605 }
1606 d_drop(dentry);
1607 return 0;
1608}
1609
1610static int pid_delete_dentry(struct dentry * dentry)
1611{
1612 /* Is the task we represent dead?
1613 * If so, then don't put the dentry on the lru list,
1614 * kill it immediately.
1615 */
1616 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1617}
1618
Al Virod72f71e2009-02-20 05:58:47 +00001619static const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001620{
1621 .d_revalidate = pid_revalidate,
1622 .d_delete = pid_delete_dentry,
1623};
1624
1625/* Lookups */
1626
Eric Dumazetc5141e62007-05-08 00:26:15 -07001627typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
1628 struct task_struct *, const void *);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001629
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001630/*
1631 * Fill a directory entry.
1632 *
1633 * If possible create the dcache entry and derive our inode number and
1634 * file type from dcache entry.
1635 *
1636 * Since all of the proc inode numbers are dynamically generated, the inode
1637 * numbers do not exist until the inode is cache. This means creating the
1638 * the dcache entry in readdir is necessary to keep the inode numbers
1639 * reported by readdir in sync with the inode numbers reported
1640 * by stat.
1641 */
Eric W. Biederman61a28782006-10-02 02:18:49 -07001642static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1643 char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001644 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001645{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001646 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001647 struct inode *inode;
1648 struct qstr qname;
1649 ino_t ino = 0;
1650 unsigned type = DT_UNKNOWN;
1651
1652 qname.name = name;
1653 qname.len = len;
1654 qname.hash = full_name_hash(name, len);
1655
1656 child = d_lookup(dir, &qname);
1657 if (!child) {
1658 struct dentry *new;
1659 new = d_alloc(dir, &qname);
1660 if (new) {
1661 child = instantiate(dir->d_inode, new, task, ptr);
1662 if (child)
1663 dput(new);
1664 else
1665 child = new;
1666 }
1667 }
1668 if (!child || IS_ERR(child) || !child->d_inode)
1669 goto end_instantiate;
1670 inode = child->d_inode;
1671 if (inode) {
1672 ino = inode->i_ino;
1673 type = inode->i_mode >> 12;
1674 }
1675 dput(child);
1676end_instantiate:
1677 if (!ino)
1678 ino = find_inode_number(dir, &qname);
1679 if (!ino)
1680 ino = 1;
1681 return filldir(dirent, name, len, filp->f_pos, ino, type);
1682}
1683
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001684static unsigned name_to_int(struct dentry *dentry)
1685{
1686 const char *name = dentry->d_name.name;
1687 int len = dentry->d_name.len;
1688 unsigned n = 0;
1689
1690 if (len > 1 && *name == '0')
1691 goto out;
1692 while (len-- > 0) {
1693 unsigned c = *name++ - '0';
1694 if (c > 9)
1695 goto out;
1696 if (n >= (~0U-9)/10)
1697 goto out;
1698 n *= 10;
1699 n += c;
1700 }
1701 return n;
1702out:
1703 return ~0U;
1704}
1705
Miklos Szeredi27932742007-05-08 00:26:17 -07001706#define PROC_FDINFO_MAX 64
1707
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001708static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001709{
1710 struct task_struct *task = get_proc_task(inode);
1711 struct files_struct *files = NULL;
1712 struct file *file;
1713 int fd = proc_fd(inode);
1714
1715 if (task) {
1716 files = get_files_struct(task);
1717 put_task_struct(task);
1718 }
1719 if (files) {
1720 /*
1721 * We are not taking a ref to the file structure, so we must
1722 * hold ->file_lock.
1723 */
1724 spin_lock(&files->file_lock);
1725 file = fcheck_files(files, fd);
1726 if (file) {
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001727 if (path) {
1728 *path = file->f_path;
1729 path_get(&file->f_path);
1730 }
Miklos Szeredi27932742007-05-08 00:26:17 -07001731 if (info)
1732 snprintf(info, PROC_FDINFO_MAX,
1733 "pos:\t%lli\n"
1734 "flags:\t0%o\n",
1735 (long long) file->f_pos,
1736 file->f_flags);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001737 spin_unlock(&files->file_lock);
1738 put_files_struct(files);
1739 return 0;
1740 }
1741 spin_unlock(&files->file_lock);
1742 put_files_struct(files);
1743 }
1744 return -ENOENT;
1745}
1746
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001747static int proc_fd_link(struct inode *inode, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001748{
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001749 return proc_fd_info(inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001750}
1751
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001752static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1753{
1754 struct inode *inode = dentry->d_inode;
1755 struct task_struct *task = get_proc_task(inode);
1756 int fd = proc_fd(inode);
1757 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001758 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001759
1760 if (task) {
1761 files = get_files_struct(task);
1762 if (files) {
1763 rcu_read_lock();
1764 if (fcheck_files(files, fd)) {
1765 rcu_read_unlock();
1766 put_files_struct(files);
1767 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001768 rcu_read_lock();
1769 cred = __task_cred(task);
1770 inode->i_uid = cred->euid;
1771 inode->i_gid = cred->egid;
1772 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001773 } else {
1774 inode->i_uid = 0;
1775 inode->i_gid = 0;
1776 }
1777 inode->i_mode &= ~(S_ISUID | S_ISGID);
1778 security_task_to_inode(task, inode);
1779 put_task_struct(task);
1780 return 1;
1781 }
1782 rcu_read_unlock();
1783 put_files_struct(files);
1784 }
1785 put_task_struct(task);
1786 }
1787 d_drop(dentry);
1788 return 0;
1789}
1790
Al Virod72f71e2009-02-20 05:58:47 +00001791static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001792{
1793 .d_revalidate = tid_fd_revalidate,
1794 .d_delete = pid_delete_dentry,
1795};
1796
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001797static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001798 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001799{
Eric Dumazetc5141e62007-05-08 00:26:15 -07001800 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001801 struct file *file;
1802 struct files_struct *files;
1803 struct inode *inode;
1804 struct proc_inode *ei;
1805 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001806
Eric W. Biederman61a28782006-10-02 02:18:49 -07001807 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001808 if (!inode)
1809 goto out;
1810 ei = PROC_I(inode);
1811 ei->fd = fd;
1812 files = get_files_struct(task);
1813 if (!files)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001814 goto out_iput;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001815 inode->i_mode = S_IFLNK;
1816
1817 /*
1818 * We are not taking a ref to the file structure, so we must
1819 * hold ->file_lock.
1820 */
1821 spin_lock(&files->file_lock);
1822 file = fcheck_files(files, fd);
1823 if (!file)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001824 goto out_unlock;
Al Viroaeb5d722008-09-02 15:28:45 -04001825 if (file->f_mode & FMODE_READ)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001826 inode->i_mode |= S_IRUSR | S_IXUSR;
Al Viroaeb5d722008-09-02 15:28:45 -04001827 if (file->f_mode & FMODE_WRITE)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001828 inode->i_mode |= S_IWUSR | S_IXUSR;
1829 spin_unlock(&files->file_lock);
1830 put_files_struct(files);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001831
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001832 inode->i_op = &proc_pid_link_inode_operations;
1833 inode->i_size = 64;
1834 ei->op.proc_get_link = proc_fd_link;
1835 dentry->d_op = &tid_fd_dentry_operations;
1836 d_add(dentry, inode);
1837 /* Close the race of the process dying before we return the dentry */
1838 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001839 error = NULL;
1840
1841 out:
1842 return error;
1843out_unlock:
1844 spin_unlock(&files->file_lock);
1845 put_files_struct(files);
1846out_iput:
1847 iput(inode);
1848 goto out;
1849}
1850
Miklos Szeredi27932742007-05-08 00:26:17 -07001851static struct dentry *proc_lookupfd_common(struct inode *dir,
1852 struct dentry *dentry,
1853 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001854{
1855 struct task_struct *task = get_proc_task(dir);
1856 unsigned fd = name_to_int(dentry);
1857 struct dentry *result = ERR_PTR(-ENOENT);
1858
1859 if (!task)
1860 goto out_no_task;
1861 if (fd == ~0U)
1862 goto out;
1863
Miklos Szeredi27932742007-05-08 00:26:17 -07001864 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001865out:
1866 put_task_struct(task);
1867out_no_task:
1868 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001869}
1870
Miklos Szeredi27932742007-05-08 00:26:17 -07001871static int proc_readfd_common(struct file * filp, void * dirent,
1872 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001874 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07001875 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001876 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07001877 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 struct files_struct * files;
1880
1881 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001882 if (!p)
1883 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 fd = filp->f_pos;
1887 switch (fd) {
1888 case 0:
1889 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
1890 goto out;
1891 filp->f_pos++;
1892 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07001893 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
1895 goto out;
1896 filp->f_pos++;
1897 default:
1898 files = get_files_struct(p);
1899 if (!files)
1900 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001901 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04001903 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07001905 char name[PROC_NUMBUF];
1906 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 if (!fcheck_files(files, fd))
1909 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001910 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Miklos Szeredi27932742007-05-08 00:26:17 -07001912 len = snprintf(name, sizeof(name), "%d", fd);
1913 if (proc_fill_cache(filp, dirent, filldir,
1914 name, len, instantiate,
1915 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07001916 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 break;
1918 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001919 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001921 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 put_files_struct(files);
1923 }
1924out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07001925 put_task_struct(p);
1926out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return retval;
1928}
1929
Miklos Szeredi27932742007-05-08 00:26:17 -07001930static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
1931 struct nameidata *nd)
1932{
1933 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
1934}
1935
1936static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
1937{
1938 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
1939}
1940
1941static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
1942 size_t len, loff_t *ppos)
1943{
1944 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001945 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07001946 if (!err)
1947 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
1948 return err;
1949}
1950
1951static const struct file_operations proc_fdinfo_file_operations = {
Arnd Bergmann87df8422010-03-17 23:06:02 +01001952 .open = nonseekable_open,
Miklos Szeredi27932742007-05-08 00:26:17 -07001953 .read = proc_fdinfo_read,
1954};
1955
Arjan van de Ven00977a52007-02-12 00:55:34 -08001956static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 .read = generic_read_dir,
1958 .readdir = proc_readfd,
1959};
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001962 * /proc/pid/fd needs a special permission handler so that a process can still
1963 * access /proc/self/fd after it has executed a setuid().
1964 */
Al Viroe6305c42008-07-15 21:03:57 -04001965static int proc_fd_permission(struct inode *inode, int mask)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001966{
1967 int rv;
1968
1969 rv = generic_permission(inode, mask, NULL);
1970 if (rv == 0)
1971 return 0;
1972 if (task_pid(current) == proc_pid(inode))
1973 rv = 0;
1974 return rv;
1975}
1976
1977/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 * proc directories can do almost nothing..
1979 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001980static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001982 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001983 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984};
1985
Miklos Szeredi27932742007-05-08 00:26:17 -07001986static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
1987 struct dentry *dentry, struct task_struct *task, const void *ptr)
1988{
1989 unsigned fd = *(unsigned *)ptr;
1990 struct inode *inode;
1991 struct proc_inode *ei;
1992 struct dentry *error = ERR_PTR(-ENOENT);
1993
1994 inode = proc_pid_make_inode(dir->i_sb, task);
1995 if (!inode)
1996 goto out;
1997 ei = PROC_I(inode);
1998 ei->fd = fd;
1999 inode->i_mode = S_IFREG | S_IRUSR;
2000 inode->i_fop = &proc_fdinfo_file_operations;
2001 dentry->d_op = &tid_fd_dentry_operations;
2002 d_add(dentry, inode);
2003 /* Close the race of the process dying before we return the dentry */
2004 if (tid_fd_revalidate(dentry, NULL))
2005 error = NULL;
2006
2007 out:
2008 return error;
2009}
2010
2011static struct dentry *proc_lookupfdinfo(struct inode *dir,
2012 struct dentry *dentry,
2013 struct nameidata *nd)
2014{
2015 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
2016}
2017
2018static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
2019{
2020 return proc_readfd_common(filp, dirent, filldir,
2021 proc_fdinfo_instantiate);
2022}
2023
2024static const struct file_operations proc_fdinfo_operations = {
2025 .read = generic_read_dir,
2026 .readdir = proc_readfdinfo,
2027};
2028
2029/*
2030 * proc directories can do almost nothing..
2031 */
2032static const struct inode_operations proc_fdinfo_inode_operations = {
2033 .lookup = proc_lookupfdinfo,
2034 .setattr = proc_setattr,
2035};
2036
2037
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002038static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002039 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002040{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002041 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002042 struct inode *inode;
2043 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07002044 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002045
Eric W. Biederman61a28782006-10-02 02:18:49 -07002046 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002047 if (!inode)
2048 goto out;
2049
2050 ei = PROC_I(inode);
2051 inode->i_mode = p->mode;
2052 if (S_ISDIR(inode->i_mode))
2053 inode->i_nlink = 2; /* Use getattr to fix if necessary */
2054 if (p->iop)
2055 inode->i_op = p->iop;
2056 if (p->fop)
2057 inode->i_fop = p->fop;
2058 ei->op = p->op;
2059 dentry->d_op = &pid_dentry_operations;
2060 d_add(dentry, inode);
2061 /* Close the race of the process dying before we return the dentry */
2062 if (pid_revalidate(dentry, NULL))
2063 error = NULL;
2064out:
2065 return error;
2066}
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068static struct dentry *proc_pident_lookup(struct inode *dir,
2069 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002070 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002071 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002073 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002074 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002075 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002077 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Eric W. Biederman99f89552006-06-26 00:25:55 -07002079 if (!task)
2080 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002082 /*
2083 * Yes, it does not scale. And it should not. Don't add
2084 * new entries into /proc/<tgid>/ without very good reasons.
2085 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002086 last = &ents[nents - 1];
2087 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 if (p->len != dentry->d_name.len)
2089 continue;
2090 if (!memcmp(dentry->d_name.name, p->name, p->len))
2091 break;
2092 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002093 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 goto out;
2095
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002096 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002098 put_task_struct(task);
2099out_no_task:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002100 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
Eric Dumazetc5141e62007-05-08 00:26:15 -07002103static int proc_pident_fill_cache(struct file *filp, void *dirent,
2104 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002105{
2106 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2107 proc_pident_instantiate, task, p);
2108}
2109
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002110static int proc_pident_readdir(struct file *filp,
2111 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002112 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002113{
2114 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002115 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002116 struct inode *inode = dentry->d_inode;
2117 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002118 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002119 ino_t ino;
2120 int ret;
2121
2122 ret = -ENOENT;
2123 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002124 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002125
2126 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002127 i = filp->f_pos;
2128 switch (i) {
2129 case 0:
2130 ino = inode->i_ino;
2131 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2132 goto out;
2133 i++;
2134 filp->f_pos++;
2135 /* fall through */
2136 case 1:
2137 ino = parent_ino(dentry);
2138 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2139 goto out;
2140 i++;
2141 filp->f_pos++;
2142 /* fall through */
2143 default:
2144 i -= 2;
2145 if (i >= nents) {
2146 ret = 1;
2147 goto out;
2148 }
2149 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002150 last = &ents[nents - 1];
2151 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002152 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002153 goto out;
2154 filp->f_pos++;
2155 p++;
2156 }
2157 }
2158
2159 ret = 1;
2160out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002161 put_task_struct(task);
2162out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002163 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164}
2165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002167static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2168 size_t count, loff_t *ppos)
2169{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002170 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002171 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002172 ssize_t length;
2173 struct task_struct *task = get_proc_task(inode);
2174
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002175 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002176 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002177
2178 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002179 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002180 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002181 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002182 if (length > 0)
2183 length = simple_read_from_buffer(buf, count, ppos, p, length);
2184 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002185 return length;
2186}
2187
2188static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2189 size_t count, loff_t *ppos)
2190{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002191 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002192 char *page;
2193 ssize_t length;
2194 struct task_struct *task = get_proc_task(inode);
2195
2196 length = -ESRCH;
2197 if (!task)
2198 goto out_no_task;
2199 if (count > PAGE_SIZE)
2200 count = PAGE_SIZE;
2201
2202 /* No partial writes. */
2203 length = -EINVAL;
2204 if (*ppos != 0)
2205 goto out;
2206
2207 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002208 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002209 if (!page)
2210 goto out;
2211
2212 length = -EFAULT;
2213 if (copy_from_user(page, buf, count))
2214 goto out_free;
2215
David Howells107db7c2009-05-08 13:55:27 +01002216 /* Guard against adverse ptrace interaction */
2217 length = mutex_lock_interruptible(&task->cred_guard_mutex);
2218 if (length < 0)
2219 goto out_free;
2220
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002221 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002222 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002223 (void*)page, count);
David Howells107db7c2009-05-08 13:55:27 +01002224 mutex_unlock(&task->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002225out_free:
2226 free_page((unsigned long) page);
2227out:
2228 put_task_struct(task);
2229out_no_task:
2230 return length;
2231}
2232
Arjan van de Ven00977a52007-02-12 00:55:34 -08002233static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002234 .read = proc_pid_attr_read,
2235 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002236 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002237};
2238
Eric Dumazetc5141e62007-05-08 00:26:15 -07002239static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002240 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2241 REG("prev", S_IRUGO, proc_pid_attr_operations),
2242 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2243 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2244 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2245 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002246};
2247
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002248static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 void * dirent, filldir_t filldir)
2250{
2251 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002252 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
2254
Arjan van de Ven00977a52007-02-12 00:55:34 -08002255static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002257 .readdir = proc_attr_dir_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258};
2259
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002260static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 struct dentry *dentry, struct nameidata *nd)
2262{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002263 return proc_pident_lookup(dir, dentry,
2264 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002267static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002268 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002269 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002270 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271};
2272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273#endif
2274
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002275#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002276static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2277 size_t count, loff_t *ppos)
2278{
2279 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2280 struct mm_struct *mm;
2281 char buffer[PROC_NUMBUF];
2282 size_t len;
2283 int ret;
2284
2285 if (!task)
2286 return -ESRCH;
2287
2288 ret = 0;
2289 mm = get_task_mm(task);
2290 if (mm) {
2291 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2292 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2293 MMF_DUMP_FILTER_SHIFT));
2294 mmput(mm);
2295 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2296 }
2297
2298 put_task_struct(task);
2299
2300 return ret;
2301}
2302
2303static ssize_t proc_coredump_filter_write(struct file *file,
2304 const char __user *buf,
2305 size_t count,
2306 loff_t *ppos)
2307{
2308 struct task_struct *task;
2309 struct mm_struct *mm;
2310 char buffer[PROC_NUMBUF], *end;
2311 unsigned int val;
2312 int ret;
2313 int i;
2314 unsigned long mask;
2315
2316 ret = -EFAULT;
2317 memset(buffer, 0, sizeof(buffer));
2318 if (count > sizeof(buffer) - 1)
2319 count = sizeof(buffer) - 1;
2320 if (copy_from_user(buffer, buf, count))
2321 goto out_no_task;
2322
2323 ret = -EINVAL;
2324 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2325 if (*end == '\n')
2326 end++;
2327 if (end - buffer == 0)
2328 goto out_no_task;
2329
2330 ret = -ESRCH;
2331 task = get_proc_task(file->f_dentry->d_inode);
2332 if (!task)
2333 goto out_no_task;
2334
2335 ret = end - buffer;
2336 mm = get_task_mm(task);
2337 if (!mm)
2338 goto out_no_mm;
2339
2340 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2341 if (val & mask)
2342 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2343 else
2344 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2345 }
2346
2347 mmput(mm);
2348 out_no_mm:
2349 put_task_struct(task);
2350 out_no_task:
2351 return ret;
2352}
2353
2354static const struct file_operations proc_coredump_filter_operations = {
2355 .read = proc_coredump_filter_read,
2356 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002357 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002358};
2359#endif
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361/*
2362 * /proc/self:
2363 */
2364static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2365 int buflen)
2366{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002367 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002368 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002369 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002370 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002371 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002372 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 return vfs_readlink(dentry,buffer,buflen,tmp);
2374}
2375
Al Viro008b1502005-08-20 00:17:39 +01002376static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002378 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002379 pid_t tgid = task_tgid_nr_ns(current, ns);
Al Viro7fee4862010-01-14 01:03:28 -05002380 char *name = ERR_PTR(-ENOENT);
2381 if (tgid) {
2382 name = __getname();
2383 if (!name)
2384 name = ERR_PTR(-ENOMEM);
2385 else
2386 sprintf(name, "%d", tgid);
2387 }
2388 nd_set_link(nd, name);
2389 return NULL;
2390}
2391
2392static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd,
2393 void *cookie)
2394{
2395 char *s = nd_get_link(nd);
2396 if (!IS_ERR(s))
2397 __putname(s);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002398}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002400static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 .readlink = proc_self_readlink,
2402 .follow_link = proc_self_follow_link,
Al Viro7fee4862010-01-14 01:03:28 -05002403 .put_link = proc_self_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404};
2405
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002406/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002407 * proc base
2408 *
2409 * These are the directory entries in the root directory of /proc
2410 * that properly belong to the /proc filesystem, as they describe
2411 * describe something that is process related.
2412 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002413static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002414 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002415 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002416};
2417
2418/*
2419 * Exceptional case: normally we are not allowed to unhash a busy
2420 * directory. In this case, however, we can do it - no aliasing problems
2421 * due to the way we treat inodes.
2422 */
2423static int proc_base_revalidate(struct dentry *dentry, struct nameidata *nd)
2424{
2425 struct inode *inode = dentry->d_inode;
2426 struct task_struct *task = get_proc_task(inode);
2427 if (task) {
2428 put_task_struct(task);
2429 return 1;
2430 }
2431 d_drop(dentry);
2432 return 0;
2433}
2434
Al Virod72f71e2009-02-20 05:58:47 +00002435static const struct dentry_operations proc_base_dentry_operations =
Eric W. Biederman801199c2006-10-02 02:18:48 -07002436{
2437 .d_revalidate = proc_base_revalidate,
2438 .d_delete = pid_delete_dentry,
2439};
2440
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002441static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002442 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002443{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002444 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002445 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002446 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002447 struct dentry *error = ERR_PTR(-EINVAL);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002448
2449 /* Allocate the inode */
2450 error = ERR_PTR(-ENOMEM);
2451 inode = new_inode(dir->i_sb);
2452 if (!inode)
2453 goto out;
2454
2455 /* Initialize the inode */
2456 ei = PROC_I(inode);
2457 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002458
2459 /*
2460 * grab the reference to the task.
2461 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07002462 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002463 if (!ei->pid)
2464 goto out_iput;
2465
Eric W. Biederman801199c2006-10-02 02:18:48 -07002466 inode->i_mode = p->mode;
2467 if (S_ISDIR(inode->i_mode))
2468 inode->i_nlink = 2;
2469 if (S_ISLNK(inode->i_mode))
2470 inode->i_size = 64;
2471 if (p->iop)
2472 inode->i_op = p->iop;
2473 if (p->fop)
2474 inode->i_fop = p->fop;
2475 ei->op = p->op;
2476 dentry->d_op = &proc_base_dentry_operations;
2477 d_add(dentry, inode);
2478 error = NULL;
2479out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002480 return error;
2481out_iput:
2482 iput(inode);
2483 goto out;
2484}
2485
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002486static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2487{
2488 struct dentry *error;
2489 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002490 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002491
2492 error = ERR_PTR(-ENOENT);
2493
2494 if (!task)
2495 goto out_no_task;
2496
2497 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002498 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2499 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002500 if (p->len != dentry->d_name.len)
2501 continue;
2502 if (!memcmp(dentry->d_name.name, p->name, p->len))
2503 break;
2504 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002505 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002506 goto out;
2507
2508 error = proc_base_instantiate(dir, dentry, task, p);
2509
2510out:
2511 put_task_struct(task);
2512out_no_task:
2513 return error;
2514}
2515
Eric Dumazetc5141e62007-05-08 00:26:15 -07002516static int proc_base_fill_cache(struct file *filp, void *dirent,
2517 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002518{
2519 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2520 proc_base_instantiate, task, p);
2521}
2522
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002523#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002524static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002525{
Andrea Righi940389b2008-07-28 00:48:12 +02002526 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002527 unsigned long flags;
Andrea Righi297c5d92008-07-25 01:48:49 -07002528
Andrea Righi59954772008-07-27 17:29:15 +02002529 if (whole && lock_task_sighand(task, &flags)) {
2530 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002531
Andrea Righi59954772008-07-27 17:29:15 +02002532 task_io_accounting_add(&acct, &task->signal->ioac);
2533 while_each_thread(task, t)
2534 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002535
Andrea Righi59954772008-07-27 17:29:15 +02002536 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002537 }
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002538 return sprintf(buffer,
2539 "rchar: %llu\n"
2540 "wchar: %llu\n"
2541 "syscr: %llu\n"
2542 "syscw: %llu\n"
2543 "read_bytes: %llu\n"
2544 "write_bytes: %llu\n"
2545 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002546 (unsigned long long)acct.rchar,
2547 (unsigned long long)acct.wchar,
2548 (unsigned long long)acct.syscr,
2549 (unsigned long long)acct.syscw,
2550 (unsigned long long)acct.read_bytes,
2551 (unsigned long long)acct.write_bytes,
2552 (unsigned long long)acct.cancelled_write_bytes);
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002553}
Andrea Righi297c5d92008-07-25 01:48:49 -07002554
2555static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2556{
2557 return do_io_accounting(task, buffer, 0);
2558}
2559
2560static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2561{
2562 return do_io_accounting(task, buffer, 1);
2563}
2564#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002565
Kees Cook47830722008-10-06 03:11:58 +04002566static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2567 struct pid *pid, struct task_struct *task)
2568{
2569 seq_printf(m, "%08x\n", task->personality);
2570 return 0;
2571}
2572
Eric W. Biederman801199c2006-10-02 02:18:48 -07002573/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002574 * Thread groups
2575 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002576static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002577static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002578
Eric Dumazetc5141e62007-05-08 00:26:15 -07002579static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002580 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2581 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2582 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002583#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002584 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002585#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002586 REG("environ", S_IRUSR, proc_environ_operations),
2587 INF("auxv", S_IRUSR, proc_pid_auxv),
2588 ONE("status", S_IRUGO, proc_pid_status),
2589 ONE("personality", S_IRUSR, proc_pid_personality),
2590 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002591#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002592 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002593#endif
john stultz4614a696b2009-12-14 18:00:05 -08002594 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002595#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002596 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002597#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002598 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2599 ONE("stat", S_IRUGO, proc_tgid_stat),
2600 ONE("statm", S_IRUGO, proc_pid_statm),
2601 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002602#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002603 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002604#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002605 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2606 LNK("cwd", proc_cwd_link),
2607 LNK("root", proc_root_link),
2608 LNK("exe", proc_exe_link),
2609 REG("mounts", S_IRUGO, proc_mounts_operations),
2610 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2611 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002612#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002613 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2614 REG("smaps", S_IRUGO, proc_smaps_operations),
2615 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002616#endif
2617#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002618 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002619#endif
2620#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002621 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002622#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002623#ifdef CONFIG_STACKTRACE
2624 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002625#endif
2626#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002627 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002628#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002629#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002630 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002631#endif
Paul Menage8793d852007-10-18 23:39:39 -07002632#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002633 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002634#endif
Paul Menagea4243162007-10-18 23:39:35 -07002635#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002636 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002637#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002638 INF("oom_score", S_IRUGO, proc_oom_score),
2639 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002640#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002641 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2642 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002643#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002644#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002645 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002646#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002647#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002648 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002649#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002650#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002651 INF("io", S_IRUGO, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002652#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002653};
2654
2655static int proc_tgid_base_readdir(struct file * filp,
2656 void * dirent, filldir_t filldir)
2657{
2658 return proc_pident_readdir(filp,dirent,filldir,
2659 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
2660}
2661
Arjan van de Ven00977a52007-02-12 00:55:34 -08002662static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002663 .read = generic_read_dir,
2664 .readdir = proc_tgid_base_readdir,
2665};
2666
2667static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002668 return proc_pident_lookup(dir, dentry,
2669 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002670}
2671
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002672static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002673 .lookup = proc_tgid_base_lookup,
2674 .getattr = pid_getattr,
2675 .setattr = proc_setattr,
2676};
2677
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002678static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002680 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002681 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002682 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
Eric W. Biederman48e64842006-06-26 00:25:48 -07002684 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002685 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2686 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002687 if (dentry) {
Sukadev Bhattiprolu29f12ca2009-11-11 14:26:32 -08002688 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002689 d_drop(dentry);
2690 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Eric W. Biederman48e64842006-06-26 00:25:48 -07002693 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002694 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2695 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002696 if (!leader)
2697 goto out;
2698
2699 name.name = "task";
2700 name.len = strlen(name.name);
2701 dir = d_hash_and_lookup(leader, &name);
2702 if (!dir)
2703 goto out_put_leader;
2704
2705 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002706 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002707 dentry = d_hash_and_lookup(dir, &name);
2708 if (dentry) {
2709 shrink_dcache_parent(dentry);
2710 d_drop(dentry);
2711 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002713
2714 dput(dir);
2715out_put_leader:
2716 dput(leader);
2717out:
2718 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719}
2720
Randy Dunlap0895e912007-10-21 21:00:10 -07002721/**
2722 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2723 * @task: task that should be flushed.
2724 *
2725 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002726 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002727 * in. This call is supposed to do all of this job.
2728 *
2729 * Looks in the dcache for
2730 * /proc/@pid
2731 * /proc/@tgid/task/@pid
2732 * if either directory is present flushes it and all of it'ts children
2733 * from the dcache.
2734 *
2735 * It is safe and reasonable to cache /proc entries for a task until
2736 * that task exits. After that they just clog up the dcache with
2737 * useless entries, possibly causing useful dcache entries to be
2738 * flushed instead. This routine is proved to flush those useless
2739 * dcache entries at process exit time.
2740 *
2741 * NOTE: This routine is just an optimization so it does not guarantee
2742 * that no dcache entries will exist at process exit time it
2743 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002744 */
2745
2746void proc_flush_task(struct task_struct *task)
2747{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002748 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002749 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002750 struct upid *upid;
2751
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002752 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002753 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002754
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002755 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002756 upid = &pid->numbers[i];
2757 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002758 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002759 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07002760
2761 upid = &pid->numbers[pid->level];
2762 if (upid->nr == 1)
2763 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002764}
2765
Adrian Bunk9711ef92006-12-06 20:38:31 -08002766static struct dentry *proc_pid_instantiate(struct inode *dir,
2767 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002768 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002769{
2770 struct dentry *error = ERR_PTR(-ENOENT);
2771 struct inode *inode;
2772
Eric W. Biederman61a28782006-10-02 02:18:49 -07002773 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002774 if (!inode)
2775 goto out;
2776
2777 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2778 inode->i_op = &proc_tgid_base_inode_operations;
2779 inode->i_fop = &proc_tgid_base_operations;
2780 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002781
2782 inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff,
2783 ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002784
2785 dentry->d_op = &pid_dentry_operations;
2786
2787 d_add(dentry, inode);
2788 /* Close the race of the process dying before we return the dentry */
2789 if (pid_revalidate(dentry, NULL))
2790 error = NULL;
2791out:
2792 return error;
2793}
2794
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2796{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002797 struct dentry *result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002800 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Eric W. Biederman801199c2006-10-02 02:18:48 -07002802 result = proc_base_lookup(dir, dentry);
2803 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
2804 goto out;
2805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 tgid = name_to_int(dentry);
2807 if (tgid == ~0U)
2808 goto out;
2809
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002810 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07002811 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002812 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 if (task)
2814 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07002815 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 if (!task)
2817 goto out;
2818
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002819 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002820 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821out:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002822 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
2824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002826 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002827 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002829struct tgid_iter {
2830 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002831 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002832};
2833static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
2834{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002835 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002837 if (iter.task)
2838 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002839 rcu_read_lock();
2840retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002841 iter.task = NULL;
2842 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002843 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002844 iter.tgid = pid_nr_ns(pid, ns);
2845 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002846 /* What we to know is if the pid we have find is the
2847 * pid of a thread_group_leader. Testing for task
2848 * being a thread_group_leader is the obvious thing
2849 * todo but there is a window when it fails, due to
2850 * the pid transfer logic in de_thread.
2851 *
2852 * So we perform the straight forward test of seeing
2853 * if the pid we have found is the pid of a thread
2854 * group leader, and don't worry if the task we have
2855 * found doesn't happen to be a thread group leader.
2856 * As we don't care in the case of readdir.
2857 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002858 if (!iter.task || !has_group_leader_pid(iter.task)) {
2859 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002860 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002861 }
2862 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07002864 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002865 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866}
2867
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002868#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Eric W. Biederman61a28782006-10-02 02:18:49 -07002870static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002871 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002872{
2873 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002874 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002875 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002876 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002877}
2878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879/* for the /proc/ directory itself, after non-process stuff has been done */
2880int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
2881{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002883 struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002884 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002885 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Eric W. Biederman61a28782006-10-02 02:18:49 -07002887 if (!reaper)
2888 goto out_no_task;
2889
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002890 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07002891 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07002892 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002893 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 }
2895
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002896 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002897 iter.task = NULL;
2898 iter.tgid = filp->f_pos - TGID_OFFSET;
2899 for (iter = next_tgid(ns, iter);
2900 iter.task;
2901 iter.tgid += 1, iter = next_tgid(ns, iter)) {
2902 filp->f_pos = iter.tgid + TGID_OFFSET;
2903 if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) {
2904 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002905 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002908 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
2909out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002910 put_task_struct(reaper);
2911out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 return 0;
2913}
2914
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002915/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002916 * Tasks
2917 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002918static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002919 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07002920 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002921 REG("environ", S_IRUSR, proc_environ_operations),
2922 INF("auxv", S_IRUSR, proc_pid_auxv),
2923 ONE("status", S_IRUGO, proc_pid_status),
2924 ONE("personality", S_IRUSR, proc_pid_personality),
2925 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002926#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002927 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002928#endif
john stultz4614a696b2009-12-14 18:00:05 -08002929 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002930#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002931 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002932#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002933 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2934 ONE("stat", S_IRUGO, proc_tid_stat),
2935 ONE("statm", S_IRUGO, proc_pid_statm),
2936 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002937#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002938 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002939#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002940 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2941 LNK("cwd", proc_cwd_link),
2942 LNK("root", proc_root_link),
2943 LNK("exe", proc_exe_link),
2944 REG("mounts", S_IRUGO, proc_mounts_operations),
2945 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002946#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002947 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2948 REG("smaps", S_IRUGO, proc_smaps_operations),
2949 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002950#endif
2951#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002952 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002953#endif
2954#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002955 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002956#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002957#ifdef CONFIG_STACKTRACE
2958 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002959#endif
2960#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002961 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002962#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002963#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002964 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002965#endif
Paul Menage8793d852007-10-18 23:39:39 -07002966#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002967 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002968#endif
Paul Menagea4243162007-10-18 23:39:35 -07002969#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002970 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002971#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002972 INF("oom_score", S_IRUGO, proc_oom_score),
2973 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002974#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002975 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2976 REG("sessionid", S_IRUSR, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002977#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002978#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002979 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002980#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07002981#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002982 INF("io", S_IRUGO, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07002983#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002984};
2985
2986static int proc_tid_base_readdir(struct file * filp,
2987 void * dirent, filldir_t filldir)
2988{
2989 return proc_pident_readdir(filp,dirent,filldir,
2990 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
2991}
2992
2993static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002994 return proc_pident_lookup(dir, dentry,
2995 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002996}
2997
Arjan van de Ven00977a52007-02-12 00:55:34 -08002998static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002999 .read = generic_read_dir,
3000 .readdir = proc_tid_base_readdir,
3001};
3002
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003003static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003004 .lookup = proc_tid_base_lookup,
3005 .getattr = pid_getattr,
3006 .setattr = proc_setattr,
3007};
3008
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003009static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003010 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003011{
3012 struct dentry *error = ERR_PTR(-ENOENT);
3013 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07003014 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003015
3016 if (!inode)
3017 goto out;
3018 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3019 inode->i_op = &proc_tid_base_inode_operations;
3020 inode->i_fop = &proc_tid_base_operations;
3021 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003022
3023 inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff,
3024 ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003025
3026 dentry->d_op = &pid_dentry_operations;
3027
3028 d_add(dentry, inode);
3029 /* Close the race of the process dying before we return the dentry */
3030 if (pid_revalidate(dentry, NULL))
3031 error = NULL;
3032out:
3033 return error;
3034}
3035
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003036static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3037{
3038 struct dentry *result = ERR_PTR(-ENOENT);
3039 struct task_struct *task;
3040 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003041 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003042 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003043
3044 if (!leader)
3045 goto out_no_task;
3046
3047 tid = name_to_int(dentry);
3048 if (tid == ~0U)
3049 goto out;
3050
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003051 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003052 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003053 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003054 if (task)
3055 get_task_struct(task);
3056 rcu_read_unlock();
3057 if (!task)
3058 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003059 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003060 goto out_drop_task;
3061
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003062 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003063out_drop_task:
3064 put_task_struct(task);
3065out:
3066 put_task_struct(leader);
3067out_no_task:
3068 return result;
3069}
3070
3071/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003072 * Find the first tid of a thread group to return to user space.
3073 *
3074 * Usually this is just the thread group leader, but if the users
3075 * buffer was too small or there was a seek into the middle of the
3076 * directory we have more work todo.
3077 *
3078 * In the case of a short read we start with find_task_by_pid.
3079 *
3080 * In the case of a seek we start with the leader and walk nr
3081 * threads past it.
3082 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07003083static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003084 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003085{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003086 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003087
Eric W. Biedermancc288732006-06-26 00:26:01 -07003088 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003089 /* Attempt to start with the pid of a thread */
3090 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003091 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003092 if (pos && (pos->group_leader == leader))
3093 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003094 }
3095
3096 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003097 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003098 if (nr && nr >= get_nr_threads(leader))
3099 goto out;
3100
3101 /* If we haven't found our starting place yet start
3102 * with the leader and walk nr threads forward.
3103 */
3104 for (pos = leader; nr > 0; --nr) {
3105 pos = next_thread(pos);
3106 if (pos == leader) {
3107 pos = NULL;
3108 goto out;
3109 }
3110 }
3111found:
3112 get_task_struct(pos);
3113out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003114 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003115 return pos;
3116}
3117
3118/*
3119 * Find the next thread in the thread list.
3120 * Return NULL if there is an error or no next thread.
3121 *
3122 * The reference to the input task_struct is released.
3123 */
3124static struct task_struct *next_tid(struct task_struct *start)
3125{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003126 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003127 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003128 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003129 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003130 if (thread_group_leader(pos))
3131 pos = NULL;
3132 else
3133 get_task_struct(pos);
3134 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003135 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003136 put_task_struct(start);
3137 return pos;
3138}
3139
Eric W. Biederman61a28782006-10-02 02:18:49 -07003140static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3141 struct task_struct *task, int tid)
3142{
3143 char name[PROC_NUMBUF];
3144 int len = snprintf(name, sizeof(name), "%d", tid);
3145 return proc_fill_cache(filp, dirent, filldir, name, len,
3146 proc_task_instantiate, task, NULL);
3147}
3148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149/* for the /proc/TGID/task/ directories */
3150static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3151{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003152 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003154 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003155 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 int retval = -ENOENT;
3157 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003158 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003159 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003161 task = get_proc_task(inode);
3162 if (!task)
3163 goto out_no_task;
3164 rcu_read_lock();
3165 if (pid_alive(task)) {
3166 leader = task->group_leader;
3167 get_task_struct(leader);
3168 }
3169 rcu_read_unlock();
3170 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003171 if (!leader)
3172 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 retval = 0;
3174
Linus Torvaldsee568b22009-03-17 10:02:35 -07003175 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 case 0:
3177 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003178 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003180 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 /* fall through */
3182 case 1:
3183 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003184 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003186 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 /* fall through */
3188 }
3189
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003190 /* f_version caches the tgid value that the last readdir call couldn't
3191 * return. lseek aka telldir automagically resets f_version to 0.
3192 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003193 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003194 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003195 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003196 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003197 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003198 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003199 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003200 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003201 /* returning this tgid failed, save it as the first
3202 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003203 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003204 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 }
3208out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003209 put_task_struct(leader);
3210out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 return retval;
3212}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003213
3214static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3215{
3216 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003217 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003218 generic_fillattr(inode, stat);
3219
Eric W. Biederman99f89552006-06-26 00:25:55 -07003220 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003221 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003222 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003223 }
3224
3225 return 0;
3226}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003227
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003228static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003229 .lookup = proc_task_lookup,
3230 .getattr = proc_task_getattr,
3231 .setattr = proc_setattr,
3232};
3233
Arjan van de Ven00977a52007-02-12 00:55:34 -08003234static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003235 .read = generic_read_dir,
3236 .readdir = proc_task_readdir,
3237};