blob: b1f6e62773d3bbcebb8e314a446e9097e1656dc0 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include "internal.h"
85
Eric W. Biederman0f2fe202006-06-26 00:25:46 -070086/* NOTE:
87 * Implementing inode permission operations in /proc is almost
88 * certainly an error. Permission checks need to happen during
89 * each system call not at open time. The reason is that most of
90 * what we wish to check for permissions in /proc varies at runtime.
91 *
92 * The classic example of a problem is opening file descriptors
93 * in /proc for a task before it execs a suid executable.
94 */
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096struct pid_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 char *name;
Eric Dumazetc5141e62007-05-08 00:26:15 -070098 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 mode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800100 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800101 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700102 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
Eric W. Biederman61a28782006-10-02 02:18:49 -0700105#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700106 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700107 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700108 .mode = MODE, \
109 .iop = IOP, \
110 .fop = FOP, \
111 .op = OP, \
112}
113
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300114#define DIR(NAME, MODE, iops, fops) \
115 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
116#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700117 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700118 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300119 { .proc_get_link = get_link } )
120#define REG(NAME, MODE, fops) \
121 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
122#define INF(NAME, MODE, read) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700123 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700124 NULL, &proc_info_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300125 { .proc_read = read } )
126#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800127 NOD(NAME, (S_IFREG|(MODE)), \
128 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300129 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Vegard Nossumaed54172008-06-05 22:46:53 -0700131/*
132 * Count the number of hardlinks for the pid_entry table, excluding the .
133 * and .. links.
134 */
135static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
136 unsigned int n)
137{
138 unsigned int i;
139 unsigned int count;
140
141 count = 0;
142 for (i = 0; i < n; ++i) {
143 if (S_ISDIR(entries[i].mode))
144 ++count;
145 }
146
147 return count;
148}
149
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000150static int get_fs_path(struct task_struct *task, struct path *path, bool root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct fs_struct *fs;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000153 int result = -ENOENT;
154
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700155 task_lock(task);
156 fs = task->fs;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000157 if (fs) {
158 read_lock(&fs->lock);
159 *path = root ? fs->root : fs->pwd;
160 path_get(path);
161 read_unlock(&fs->lock);
162 result = 0;
163 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700164 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000165 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700166}
167
Eric W. Biederman99f89552006-06-26 00:25:55 -0700168static int get_nr_threads(struct task_struct *tsk)
169{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700170 unsigned long flags;
171 int count = 0;
172
173 if (lock_task_sighand(tsk, &flags)) {
174 count = atomic_read(&tsk->signal->count);
175 unlock_task_sighand(tsk, &flags);
176 }
177 return count;
178}
179
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800180static int proc_cwd_link(struct inode *inode, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700181{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700182 struct task_struct *task = get_proc_task(inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700183 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700184
185 if (task) {
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000186 result = get_fs_path(task, path, 0);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700187 put_task_struct(task);
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return result;
190}
191
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800192static int proc_root_link(struct inode *inode, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700194 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700196
197 if (task) {
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000198 result = get_fs_path(task, path, 1);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700199 put_task_struct(task);
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return result;
202}
203
Roland McGrath638fa202008-04-29 01:01:38 -0700204/*
205 * Return zero if current may access user memory in @task, -error if not.
206 */
207static int check_mem_permission(struct task_struct *task)
208{
209 /*
210 * A task can always look at itself, in case it chooses
211 * to use system calls instead of load instructions.
212 */
213 if (task == current)
214 return 0;
215
216 /*
217 * If current is actively ptrace'ing, and would also be
218 * permitted to freshly attach with ptrace now, permit it.
219 */
Roland McGrath0d094ef2008-07-25 19:45:49 -0700220 if (task_is_stopped_or_traced(task)) {
221 int match;
222 rcu_read_lock();
223 match = (tracehook_tracer_task(task) == current);
224 rcu_read_unlock();
225 if (match && ptrace_may_access(task, PTRACE_MODE_ATTACH))
226 return 0;
227 }
Roland McGrath638fa202008-04-29 01:01:38 -0700228
229 /*
230 * Noone else is allowed.
231 */
232 return -EPERM;
233}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Al Viro831830b2008-01-02 14:09:57 +0000235struct mm_struct *mm_for_maps(struct task_struct *task)
236{
Oleg Nesterov704b8362009-07-10 03:27:40 +0200237 struct mm_struct *mm;
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200238
Oleg Nesterov704b8362009-07-10 03:27:40 +0200239 if (mutex_lock_killable(&task->cred_guard_mutex))
240 return NULL;
241
242 mm = get_task_mm(task);
243 if (mm && mm != current->mm &&
244 !ptrace_may_access(task, PTRACE_MODE_READ)) {
245 mmput(mm);
246 mm = NULL;
Oleg Nesterov13f0fea2009-06-23 21:25:32 +0200247 }
Oleg Nesterov704b8362009-07-10 03:27:40 +0200248 mutex_unlock(&task->cred_guard_mutex);
249
Al Viro831830b2008-01-02 14:09:57 +0000250 return mm;
Al Viro831830b2008-01-02 14:09:57 +0000251}
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253static int proc_pid_cmdline(struct task_struct *task, char * buffer)
254{
255 int res = 0;
256 unsigned int len;
257 struct mm_struct *mm = get_task_mm(task);
258 if (!mm)
259 goto out;
260 if (!mm->arg_end)
261 goto out_mm; /* Shh! No looking before we're done */
262
263 len = mm->arg_end - mm->arg_start;
264
265 if (len > PAGE_SIZE)
266 len = PAGE_SIZE;
267
268 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
269
270 // If the nul at the end of args has been overwritten, then
271 // assume application is using setproctitle(3).
272 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
273 len = strnlen(buffer, res);
274 if (len < res) {
275 res = len;
276 } else {
277 len = mm->env_end - mm->env_start;
278 if (len > PAGE_SIZE - res)
279 len = PAGE_SIZE - res;
280 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
281 res = strnlen(buffer, res);
282 }
283 }
284out_mm:
285 mmput(mm);
286out:
287 return res;
288}
289
290static int proc_pid_auxv(struct task_struct *task, char *buffer)
291{
292 int res = 0;
293 struct mm_struct *mm = get_task_mm(task);
294 if (mm) {
295 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300296 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300298 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 res = nwords * sizeof(mm->saved_auxv[0]);
300 if (res > PAGE_SIZE)
301 res = PAGE_SIZE;
302 memcpy(buffer, mm->saved_auxv, res);
303 mmput(mm);
304 }
305 return res;
306}
307
308
309#ifdef CONFIG_KALLSYMS
310/*
311 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
312 * Returns the resolved symbol. If that fails, simply return the address.
313 */
314static int proc_pid_wchan(struct task_struct *task, char *buffer)
315{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700316 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700317 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 wchan = get_wchan(task);
320
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700321 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600322 if (!ptrace_may_access(task, PTRACE_MODE_READ))
323 return 0;
324 else
325 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700326 else
327 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329#endif /* CONFIG_KALLSYMS */
330
Ken Chen2ec220e2008-11-10 11:26:08 +0300331#ifdef CONFIG_STACKTRACE
332
333#define MAX_STACK_TRACE_DEPTH 64
334
335static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
336 struct pid *pid, struct task_struct *task)
337{
338 struct stack_trace trace;
339 unsigned long *entries;
340 int i;
341
342 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
343 if (!entries)
344 return -ENOMEM;
345
346 trace.nr_entries = 0;
347 trace.max_entries = MAX_STACK_TRACE_DEPTH;
348 trace.entries = entries;
349 trace.skip = 0;
350 save_stack_trace_tsk(task, &trace);
351
352 for (i = 0; i < trace.nr_entries; i++) {
353 seq_printf(m, "[<%p>] %pS\n",
354 (void *)entries[i], (void *)entries[i]);
355 }
356 kfree(entries);
357
358 return 0;
359}
360#endif
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362#ifdef CONFIG_SCHEDSTATS
363/*
364 * Provides /proc/PID/schedstat
365 */
366static int proc_pid_schedstat(struct task_struct *task, char *buffer)
367{
Balbir Singh172ba842007-07-09 18:52:00 +0200368 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100369 (unsigned long long)task->se.sum_exec_runtime,
370 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200371 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373#endif
374
Arjan van de Ven97455122008-01-25 21:08:34 +0100375#ifdef CONFIG_LATENCYTOP
376static int lstats_show_proc(struct seq_file *m, void *v)
377{
378 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800379 struct inode *inode = m->private;
380 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100381
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800382 if (!task)
383 return -ESRCH;
384 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100385 for (i = 0; i < 32; i++) {
386 if (task->latency_record[i].backtrace[0]) {
387 int q;
388 seq_printf(m, "%i %li %li ",
389 task->latency_record[i].count,
390 task->latency_record[i].time,
391 task->latency_record[i].max);
392 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Hugh Dickins9c246242008-12-09 13:14:27 -0800393 char sym[KSYM_SYMBOL_LEN];
Arjan van de Ven97455122008-01-25 21:08:34 +0100394 char *c;
395 if (!task->latency_record[i].backtrace[q])
396 break;
397 if (task->latency_record[i].backtrace[q] == ULONG_MAX)
398 break;
399 sprint_symbol(sym, task->latency_record[i].backtrace[q]);
400 c = strchr(sym, '+');
401 if (c)
402 *c = 0;
403 seq_printf(m, "%s ", sym);
404 }
405 seq_printf(m, "\n");
406 }
407
408 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800409 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100410 return 0;
411}
412
413static int lstats_open(struct inode *inode, struct file *file)
414{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800415 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800416}
417
Arjan van de Ven97455122008-01-25 21:08:34 +0100418static ssize_t lstats_write(struct file *file, const char __user *buf,
419 size_t count, loff_t *offs)
420{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800421 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100422
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800423 if (!task)
424 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100425 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800426 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100427
428 return count;
429}
430
431static const struct file_operations proc_lstats_operations = {
432 .open = lstats_open,
433 .read = seq_read,
434 .write = lstats_write,
435 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800436 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100437};
438
439#endif
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/* The badness from the OOM killer */
442unsigned long badness(struct task_struct *p, unsigned long uptime);
443static int proc_oom_score(struct task_struct *task, char *buffer)
444{
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200445 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 struct timespec uptime;
447
448 do_posix_clock_monotonic_gettime(&uptime);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700449 read_lock(&tasklist_lock);
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200450 if (pid_alive(task))
451 points = badness(task, uptime.tv_sec);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700452 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return sprintf(buffer, "%lu\n", points);
454}
455
Neil Hormand85f50d2007-10-18 23:40:37 -0700456struct limit_names {
457 char *name;
458 char *unit;
459};
460
461static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700462 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700463 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
464 [RLIMIT_DATA] = {"Max data size", "bytes"},
465 [RLIMIT_STACK] = {"Max stack size", "bytes"},
466 [RLIMIT_CORE] = {"Max core file size", "bytes"},
467 [RLIMIT_RSS] = {"Max resident set", "bytes"},
468 [RLIMIT_NPROC] = {"Max processes", "processes"},
469 [RLIMIT_NOFILE] = {"Max open files", "files"},
470 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
471 [RLIMIT_AS] = {"Max address space", "bytes"},
472 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
473 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
474 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
475 [RLIMIT_NICE] = {"Max nice priority", NULL},
476 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800477 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700478};
479
480/* Display limits for a process */
481static int proc_pid_limits(struct task_struct *task, char *buffer)
482{
483 unsigned int i;
484 int count = 0;
485 unsigned long flags;
486 char *bufptr = buffer;
487
488 struct rlimit rlim[RLIM_NLIMITS];
489
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400490 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700491 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700492 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
493 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700494
495 /*
496 * print the file header
497 */
498 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
499 "Limit", "Soft Limit", "Hard Limit", "Units");
500
501 for (i = 0; i < RLIM_NLIMITS; i++) {
502 if (rlim[i].rlim_cur == RLIM_INFINITY)
503 count += sprintf(&bufptr[count], "%-25s %-20s ",
504 lnames[i].name, "unlimited");
505 else
506 count += sprintf(&bufptr[count], "%-25s %-20lu ",
507 lnames[i].name, rlim[i].rlim_cur);
508
509 if (rlim[i].rlim_max == RLIM_INFINITY)
510 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
511 else
512 count += sprintf(&bufptr[count], "%-20lu ",
513 rlim[i].rlim_max);
514
515 if (lnames[i].unit)
516 count += sprintf(&bufptr[count], "%-10s\n",
517 lnames[i].unit);
518 else
519 count += sprintf(&bufptr[count], "\n");
520 }
521
522 return count;
523}
524
Roland McGrathebcb6732008-07-25 19:46:00 -0700525#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
526static int proc_pid_syscall(struct task_struct *task, char *buffer)
527{
528 long nr;
529 unsigned long args[6], sp, pc;
530
531 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
532 return sprintf(buffer, "running\n");
533
534 if (nr < 0)
535 return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
536
537 return sprintf(buffer,
538 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
539 nr,
540 args[0], args[1], args[2], args[3], args[4], args[5],
541 sp, pc);
542}
543#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545/************************************************************************/
546/* Here the fs part begins */
547/************************************************************************/
548
549/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700550static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700552 struct task_struct *task;
553 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700554 /* Allow access to a task's file descriptors if it is us or we
555 * may use ptrace attach to the process and find out that
556 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700557 */
558 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700559 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400560 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700561 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700562 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700563 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700566static int proc_setattr(struct dentry *dentry, struct iattr *attr)
567{
568 int error;
569 struct inode *inode = dentry->d_inode;
570
571 if (attr->ia_valid & ATTR_MODE)
572 return -EPERM;
573
574 error = inode_change_ok(inode, attr);
John Johansen1e8123f2007-05-08 00:29:41 -0700575 if (!error)
576 error = inode_setattr(inode, attr);
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700577 return error;
578}
579
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800580static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700581 .setattr = proc_setattr,
582};
583
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100584static int mounts_open_common(struct inode *inode, struct file *file,
585 const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700587 struct task_struct *task = get_proc_task(inode);
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700588 struct nsproxy *nsp;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800589 struct mnt_namespace *ns = NULL;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100590 struct path root;
Al Viro5addc5d2005-11-07 17:15:49 -0500591 struct proc_mounts *p;
592 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Eric W. Biederman99f89552006-06-26 00:25:55 -0700594 if (task) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700595 rcu_read_lock();
596 nsp = task_nsproxy(task);
597 if (nsp) {
598 ns = nsp->mnt_ns;
Alexey Dobriyan863c4702007-01-26 00:56:53 -0800599 if (ns)
600 get_mnt_ns(ns);
601 }
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700602 rcu_read_unlock();
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000603 if (ns && get_fs_path(task, &root, 1) == 0)
604 ret = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700605 put_task_struct(task);
606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100608 if (!ns)
609 goto err;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000610 if (ret)
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100611 goto err_put_ns;
612
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100613 ret = -ENOMEM;
614 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
615 if (!p)
616 goto err_put_path;
617
618 file->private_data = &p->m;
619 ret = seq_open(file, op);
620 if (ret)
621 goto err_free;
622
623 p->m.private = p;
624 p->ns = ns;
625 p->root = root;
626 p->event = ns->event;
627
628 return 0;
629
630 err_free:
631 kfree(p);
632 err_put_path:
633 path_put(&root);
634 err_put_ns:
635 put_mnt_ns(ns);
636 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return ret;
638}
639
640static int mounts_release(struct inode *inode, struct file *file)
641{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100642 struct proc_mounts *p = file->private_data;
643 path_put(&p->root);
644 put_mnt_ns(p->ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return seq_release(inode, file);
646}
647
Al Viro5addc5d2005-11-07 17:15:49 -0500648static unsigned mounts_poll(struct file *file, poll_table *wait)
649{
650 struct proc_mounts *p = file->private_data;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900651 unsigned res = POLLIN | POLLRDNORM;
Al Viro5addc5d2005-11-07 17:15:49 -0500652
Al Viro9f5596a2010-02-05 00:40:25 -0500653 poll_wait(file, &p->ns->poll, wait);
654 if (mnt_had_events(p))
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900655 res |= POLLERR | POLLPRI;
Al Viro5addc5d2005-11-07 17:15:49 -0500656
657 return res;
658}
659
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100660static int mounts_open(struct inode *inode, struct file *file)
661{
662 return mounts_open_common(inode, file, &mounts_op);
663}
664
Arjan van de Ven00977a52007-02-12 00:55:34 -0800665static const struct file_operations proc_mounts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 .open = mounts_open,
667 .read = seq_read,
668 .llseek = seq_lseek,
669 .release = mounts_release,
Al Viro5addc5d2005-11-07 17:15:49 -0500670 .poll = mounts_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671};
672
Ram Pai2d4d4862008-03-27 13:06:25 +0100673static int mountinfo_open(struct inode *inode, struct file *file)
674{
675 return mounts_open_common(inode, file, &mountinfo_op);
676}
677
678static const struct file_operations proc_mountinfo_operations = {
679 .open = mountinfo_open,
680 .read = seq_read,
681 .llseek = seq_lseek,
682 .release = mounts_release,
683 .poll = mounts_poll,
684};
685
Chuck Leverb4629fe2006-03-20 13:44:12 -0500686static int mountstats_open(struct inode *inode, struct file *file)
687{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100688 return mounts_open_common(inode, file, &mountstats_op);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500689}
690
Arjan van de Ven00977a52007-02-12 00:55:34 -0800691static const struct file_operations proc_mountstats_operations = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500692 .open = mountstats_open,
693 .read = seq_read,
694 .llseek = seq_lseek,
695 .release = mounts_release,
696};
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
699
700static ssize_t proc_info_read(struct file * file, char __user * buf,
701 size_t count, loff_t *ppos)
702{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800703 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 unsigned long page;
705 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700706 struct task_struct *task = get_proc_task(inode);
707
708 length = -ESRCH;
709 if (!task)
710 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 if (count > PROC_BLOCK_SIZE)
713 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700714
715 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700716 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700717 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 length = PROC_I(inode)->op.proc_read(task, (char*)page);
720
721 if (length >= 0)
722 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
723 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700724out:
725 put_task_struct(task);
726out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return length;
728}
729
Arjan van de Ven00977a52007-02-12 00:55:34 -0800730static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 .read = proc_info_read,
732};
733
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800734static int proc_single_show(struct seq_file *m, void *v)
735{
736 struct inode *inode = m->private;
737 struct pid_namespace *ns;
738 struct pid *pid;
739 struct task_struct *task;
740 int ret;
741
742 ns = inode->i_sb->s_fs_info;
743 pid = proc_pid(inode);
744 task = get_pid_task(pid, PIDTYPE_PID);
745 if (!task)
746 return -ESRCH;
747
748 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
749
750 put_task_struct(task);
751 return ret;
752}
753
754static int proc_single_open(struct inode *inode, struct file *filp)
755{
756 int ret;
757 ret = single_open(filp, proc_single_show, NULL);
758 if (!ret) {
759 struct seq_file *m = filp->private_data;
760
761 m->private = inode;
762 }
763 return ret;
764}
765
766static const struct file_operations proc_single_file_operations = {
767 .open = proc_single_open,
768 .read = seq_read,
769 .llseek = seq_lseek,
770 .release = single_release,
771};
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773static int mem_open(struct inode* inode, struct file* file)
774{
775 file->private_data = (void*)((long)current->self_exec_id);
776 return 0;
777}
778
779static ssize_t mem_read(struct file * file, char __user * buf,
780 size_t count, loff_t *ppos)
781{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800782 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 char *page;
784 unsigned long src = *ppos;
785 int ret = -ESRCH;
786 struct mm_struct *mm;
787
Eric W. Biederman99f89552006-06-26 00:25:55 -0700788 if (!task)
789 goto out_no_task;
790
Roland McGrath638fa202008-04-29 01:01:38 -0700791 if (check_mem_permission(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 goto out;
793
794 ret = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700795 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (!page)
797 goto out;
798
799 ret = 0;
800
801 mm = get_task_mm(task);
802 if (!mm)
803 goto out_free;
804
805 ret = -EIO;
806
807 if (file->private_data != (void*)((long)current->self_exec_id))
808 goto out_put;
809
810 ret = 0;
811
812 while (count > 0) {
813 int this_len, retval;
814
815 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
816 retval = access_process_vm(task, src, page, this_len, 0);
Roland McGrath638fa202008-04-29 01:01:38 -0700817 if (!retval || check_mem_permission(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (!ret)
819 ret = -EIO;
820 break;
821 }
822
823 if (copy_to_user(buf, page, retval)) {
824 ret = -EFAULT;
825 break;
826 }
827
828 ret += retval;
829 src += retval;
830 buf += retval;
831 count -= retval;
832 }
833 *ppos = src;
834
835out_put:
836 mmput(mm);
837out_free:
838 free_page((unsigned long) page);
839out:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700840 put_task_struct(task);
841out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return ret;
843}
844
845#define mem_write NULL
846
847#ifndef mem_write
848/* This is a security hazard */
Glauber de Oliveira Costa63967fa2007-02-20 13:58:12 -0800849static ssize_t mem_write(struct file * file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 size_t count, loff_t *ppos)
851{
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700852 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 char *page;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800854 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 unsigned long dst = *ppos;
856
Eric W. Biederman99f89552006-06-26 00:25:55 -0700857 copied = -ESRCH;
858 if (!task)
859 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Roland McGrath638fa202008-04-29 01:01:38 -0700861 if (check_mem_permission(task))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700862 goto out;
863
864 copied = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700865 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (!page)
Eric W. Biederman99f89552006-06-26 00:25:55 -0700867 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700869 copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 while (count > 0) {
871 int this_len, retval;
872
873 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
874 if (copy_from_user(page, buf, this_len)) {
875 copied = -EFAULT;
876 break;
877 }
878 retval = access_process_vm(task, dst, page, this_len, 1);
879 if (!retval) {
880 if (!copied)
881 copied = -EIO;
882 break;
883 }
884 copied += retval;
885 buf += retval;
886 dst += retval;
887 count -= retval;
888 }
889 *ppos = dst;
890 free_page((unsigned long) page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700891out:
892 put_task_struct(task);
893out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return copied;
895}
896#endif
897
Matt Mackall85863e42008-02-04 22:29:04 -0800898loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 switch (orig) {
901 case 0:
902 file->f_pos = offset;
903 break;
904 case 1:
905 file->f_pos += offset;
906 break;
907 default:
908 return -EINVAL;
909 }
910 force_successful_syscall_return();
911 return file->f_pos;
912}
913
Arjan van de Ven00977a52007-02-12 00:55:34 -0800914static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 .llseek = mem_lseek,
916 .read = mem_read,
917 .write = mem_write,
918 .open = mem_open,
919};
920
James Pearson315e28c2007-10-16 23:30:17 -0700921static ssize_t environ_read(struct file *file, char __user *buf,
922 size_t count, loff_t *ppos)
923{
924 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
925 char *page;
926 unsigned long src = *ppos;
927 int ret = -ESRCH;
928 struct mm_struct *mm;
929
930 if (!task)
931 goto out_no_task;
932
Stephen Smalley006ebb42008-05-19 08:32:49 -0400933 if (!ptrace_may_access(task, PTRACE_MODE_READ))
James Pearson315e28c2007-10-16 23:30:17 -0700934 goto out;
935
936 ret = -ENOMEM;
937 page = (char *)__get_free_page(GFP_TEMPORARY);
938 if (!page)
939 goto out;
940
941 ret = 0;
942
943 mm = get_task_mm(task);
944 if (!mm)
945 goto out_free;
946
947 while (count > 0) {
948 int this_len, retval, max_len;
949
950 this_len = mm->env_end - (mm->env_start + src);
951
952 if (this_len <= 0)
953 break;
954
955 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
956 this_len = (this_len > max_len) ? max_len : this_len;
957
958 retval = access_process_vm(task, (mm->env_start + src),
959 page, this_len, 0);
960
961 if (retval <= 0) {
962 ret = retval;
963 break;
964 }
965
966 if (copy_to_user(buf, page, retval)) {
967 ret = -EFAULT;
968 break;
969 }
970
971 ret += retval;
972 src += retval;
973 buf += retval;
974 count -= retval;
975 }
976 *ppos = src;
977
978 mmput(mm);
979out_free:
980 free_page((unsigned long) page);
981out:
982 put_task_struct(task);
983out_no_task:
984 return ret;
985}
986
987static const struct file_operations proc_environ_operations = {
988 .read = environ_read,
989};
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991static ssize_t oom_adjust_read(struct file *file, char __user *buf,
992 size_t count, loff_t *ppos)
993{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800994 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700995 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 size_t len;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700997 int oom_adjust = OOM_DISABLE;
998 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Eric W. Biederman99f89552006-06-26 00:25:55 -07001000 if (!task)
1001 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001002
1003 if (lock_task_sighand(task, &flags)) {
1004 oom_adjust = task->signal->oom_adj;
1005 unlock_task_sighand(task, &flags);
1006 }
1007
Eric W. Biederman99f89552006-06-26 00:25:55 -07001008 put_task_struct(task);
1009
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001010 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001011
1012 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
1015static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
1016 size_t count, loff_t *ppos)
1017{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001018 struct task_struct *task;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001019 char buffer[PROC_NUMBUF];
1020 long oom_adjust;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001021 unsigned long flags;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001022 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001024 memset(buffer, 0, sizeof(buffer));
1025 if (count > sizeof(buffer) - 1)
1026 count = sizeof(buffer) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (copy_from_user(buffer, buf, count))
1028 return -EFAULT;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001029
1030 err = strict_strtol(strstrip(buffer), 0, &oom_adjust);
1031 if (err)
1032 return -EINVAL;
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07001033 if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) &&
1034 oom_adjust != OOM_DISABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return -EINVAL;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001036
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001037 task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001038 if (!task)
1039 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001040 if (!lock_task_sighand(task, &flags)) {
1041 put_task_struct(task);
1042 return -ESRCH;
1043 }
1044
1045 if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) {
1046 unlock_task_sighand(task, &flags);
Guillem Jover8fb4fc62006-12-06 20:32:24 -08001047 put_task_struct(task);
1048 return -EACCES;
1049 }
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001050
1051 task->signal->oom_adj = oom_adjust;
1052
1053 unlock_task_sighand(task, &flags);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001054 put_task_struct(task);
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001055
1056 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
Arjan van de Ven00977a52007-02-12 00:55:34 -08001059static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 .read = oom_adjust_read,
1061 .write = oom_adjust_write,
1062};
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064#ifdef CONFIG_AUDITSYSCALL
1065#define TMPBUFLEN 21
1066static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1067 size_t count, loff_t *ppos)
1068{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001069 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001070 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 ssize_t length;
1072 char tmpbuf[TMPBUFLEN];
1073
Eric W. Biederman99f89552006-06-26 00:25:55 -07001074 if (!task)
1075 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Al Viro0c11b942008-01-10 04:20:52 -05001077 audit_get_loginuid(task));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001078 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1080}
1081
1082static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1083 size_t count, loff_t *ppos)
1084{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001085 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 char *page, *tmp;
1087 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 uid_t loginuid;
1089
1090 if (!capable(CAP_AUDIT_CONTROL))
1091 return -EPERM;
1092
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001093 rcu_read_lock();
1094 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1095 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001097 }
1098 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Al Viroe0182902006-05-18 08:28:02 -04001100 if (count >= PAGE_SIZE)
1101 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 if (*ppos != 0) {
1104 /* No partial writes. */
1105 return -EINVAL;
1106 }
Mel Gormane12ba742007-10-16 01:25:52 -07001107 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (!page)
1109 return -ENOMEM;
1110 length = -EFAULT;
1111 if (copy_from_user(page, buf, count))
1112 goto out_free_page;
1113
Al Viroe0182902006-05-18 08:28:02 -04001114 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 loginuid = simple_strtoul(page, &tmp, 10);
1116 if (tmp == page) {
1117 length = -EINVAL;
1118 goto out_free_page;
1119
1120 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07001121 length = audit_set_loginuid(current, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (likely(length == 0))
1123 length = count;
1124
1125out_free_page:
1126 free_page((unsigned long) page);
1127 return length;
1128}
1129
Arjan van de Ven00977a52007-02-12 00:55:34 -08001130static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 .read = proc_loginuid_read,
1132 .write = proc_loginuid_write,
1133};
Eric Paris1e0bd752008-03-13 08:15:31 -04001134
1135static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1136 size_t count, loff_t *ppos)
1137{
1138 struct inode * inode = file->f_path.dentry->d_inode;
1139 struct task_struct *task = get_proc_task(inode);
1140 ssize_t length;
1141 char tmpbuf[TMPBUFLEN];
1142
1143 if (!task)
1144 return -ESRCH;
1145 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1146 audit_get_sessionid(task));
1147 put_task_struct(task);
1148 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1149}
1150
1151static const struct file_operations proc_sessionid_operations = {
1152 .read = proc_sessionid_read,
1153};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154#endif
1155
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001156#ifdef CONFIG_FAULT_INJECTION
1157static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1158 size_t count, loff_t *ppos)
1159{
1160 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1161 char buffer[PROC_NUMBUF];
1162 size_t len;
1163 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001164
1165 if (!task)
1166 return -ESRCH;
1167 make_it_fail = task->make_it_fail;
1168 put_task_struct(task);
1169
1170 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001171
1172 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001173}
1174
1175static ssize_t proc_fault_inject_write(struct file * file,
1176 const char __user * buf, size_t count, loff_t *ppos)
1177{
1178 struct task_struct *task;
1179 char buffer[PROC_NUMBUF], *end;
1180 int make_it_fail;
1181
1182 if (!capable(CAP_SYS_RESOURCE))
1183 return -EPERM;
1184 memset(buffer, 0, sizeof(buffer));
1185 if (count > sizeof(buffer) - 1)
1186 count = sizeof(buffer) - 1;
1187 if (copy_from_user(buffer, buf, count))
1188 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001189 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1190 if (*end)
1191 return -EINVAL;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001192 task = get_proc_task(file->f_dentry->d_inode);
1193 if (!task)
1194 return -ESRCH;
1195 task->make_it_fail = make_it_fail;
1196 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001197
1198 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001199}
1200
Arjan van de Ven00977a52007-02-12 00:55:34 -08001201static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001202 .read = proc_fault_inject_read,
1203 .write = proc_fault_inject_write,
1204};
1205#endif
1206
Arjan van de Ven97455122008-01-25 21:08:34 +01001207
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001208#ifdef CONFIG_SCHED_DEBUG
1209/*
1210 * Print out various scheduling related per-task fields:
1211 */
1212static int sched_show(struct seq_file *m, void *v)
1213{
1214 struct inode *inode = m->private;
1215 struct task_struct *p;
1216
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001217 p = get_proc_task(inode);
1218 if (!p)
1219 return -ESRCH;
1220 proc_sched_show_task(p, m);
1221
1222 put_task_struct(p);
1223
1224 return 0;
1225}
1226
1227static ssize_t
1228sched_write(struct file *file, const char __user *buf,
1229 size_t count, loff_t *offset)
1230{
1231 struct inode *inode = file->f_path.dentry->d_inode;
1232 struct task_struct *p;
1233
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001234 p = get_proc_task(inode);
1235 if (!p)
1236 return -ESRCH;
1237 proc_sched_set_task(p);
1238
1239 put_task_struct(p);
1240
1241 return count;
1242}
1243
1244static int sched_open(struct inode *inode, struct file *filp)
1245{
1246 int ret;
1247
1248 ret = single_open(filp, sched_show, NULL);
1249 if (!ret) {
1250 struct seq_file *m = filp->private_data;
1251
1252 m->private = inode;
1253 }
1254 return ret;
1255}
1256
1257static const struct file_operations proc_pid_sched_operations = {
1258 .open = sched_open,
1259 .read = seq_read,
1260 .write = sched_write,
1261 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001262 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001263};
1264
1265#endif
1266
john stultz4614a696b2009-12-14 18:00:05 -08001267static ssize_t comm_write(struct file *file, const char __user *buf,
1268 size_t count, loff_t *offset)
1269{
1270 struct inode *inode = file->f_path.dentry->d_inode;
1271 struct task_struct *p;
1272 char buffer[TASK_COMM_LEN];
1273
1274 memset(buffer, 0, sizeof(buffer));
1275 if (count > sizeof(buffer) - 1)
1276 count = sizeof(buffer) - 1;
1277 if (copy_from_user(buffer, buf, count))
1278 return -EFAULT;
1279
1280 p = get_proc_task(inode);
1281 if (!p)
1282 return -ESRCH;
1283
1284 if (same_thread_group(current, p))
1285 set_task_comm(p, buffer);
1286 else
1287 count = -EINVAL;
1288
1289 put_task_struct(p);
1290
1291 return count;
1292}
1293
1294static int comm_show(struct seq_file *m, void *v)
1295{
1296 struct inode *inode = m->private;
1297 struct task_struct *p;
1298
1299 p = get_proc_task(inode);
1300 if (!p)
1301 return -ESRCH;
1302
1303 task_lock(p);
1304 seq_printf(m, "%s\n", p->comm);
1305 task_unlock(p);
1306
1307 put_task_struct(p);
1308
1309 return 0;
1310}
1311
1312static int comm_open(struct inode *inode, struct file *filp)
1313{
1314 int ret;
1315
1316 ret = single_open(filp, comm_show, NULL);
1317 if (!ret) {
1318 struct seq_file *m = filp->private_data;
1319
1320 m->private = inode;
1321 }
1322 return ret;
1323}
1324
1325static const struct file_operations proc_pid_set_comm_operations = {
1326 .open = comm_open,
1327 .read = seq_read,
1328 .write = comm_write,
1329 .llseek = seq_lseek,
1330 .release = single_release,
1331};
1332
Matt Helsley925d1c42008-04-29 01:01:36 -07001333/*
1334 * We added or removed a vma mapping the executable. The vmas are only mapped
1335 * during exec and are not mapped with the mmap system call.
1336 * Callers must hold down_write() on the mm's mmap_sem for these
1337 */
1338void added_exe_file_vma(struct mm_struct *mm)
1339{
1340 mm->num_exe_file_vmas++;
1341}
1342
1343void removed_exe_file_vma(struct mm_struct *mm)
1344{
1345 mm->num_exe_file_vmas--;
1346 if ((mm->num_exe_file_vmas == 0) && mm->exe_file){
1347 fput(mm->exe_file);
1348 mm->exe_file = NULL;
1349 }
1350
1351}
1352
1353void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1354{
1355 if (new_exe_file)
1356 get_file(new_exe_file);
1357 if (mm->exe_file)
1358 fput(mm->exe_file);
1359 mm->exe_file = new_exe_file;
1360 mm->num_exe_file_vmas = 0;
1361}
1362
1363struct file *get_mm_exe_file(struct mm_struct *mm)
1364{
1365 struct file *exe_file;
1366
1367 /* We need mmap_sem to protect against races with removal of
1368 * VM_EXECUTABLE vmas */
1369 down_read(&mm->mmap_sem);
1370 exe_file = mm->exe_file;
1371 if (exe_file)
1372 get_file(exe_file);
1373 up_read(&mm->mmap_sem);
1374 return exe_file;
1375}
1376
1377void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm)
1378{
1379 /* It's safe to write the exe_file pointer without exe_file_lock because
1380 * this is called during fork when the task is not yet in /proc */
1381 newmm->exe_file = get_mm_exe_file(oldmm);
1382}
1383
1384static int proc_exe_link(struct inode *inode, struct path *exe_path)
1385{
1386 struct task_struct *task;
1387 struct mm_struct *mm;
1388 struct file *exe_file;
1389
1390 task = get_proc_task(inode);
1391 if (!task)
1392 return -ENOENT;
1393 mm = get_task_mm(task);
1394 put_task_struct(task);
1395 if (!mm)
1396 return -ENOENT;
1397 exe_file = get_mm_exe_file(mm);
1398 mmput(mm);
1399 if (exe_file) {
1400 *exe_path = exe_file->f_path;
1401 path_get(&exe_file->f_path);
1402 fput(exe_file);
1403 return 0;
1404 } else
1405 return -ENOENT;
1406}
1407
Al Viro008b1502005-08-20 00:17:39 +01001408static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 struct inode *inode = dentry->d_inode;
1411 int error = -EACCES;
1412
1413 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001414 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Eric W. Biederman778c1142006-06-26 00:25:58 -07001416 /* Are we allowed to snoop on the tasks file descriptors? */
1417 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001420 error = PROC_I(inode)->op.proc_get_link(inode, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421out:
Al Viro008b1502005-08-20 00:17:39 +01001422 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
1424
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001425static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Mel Gormane12ba742007-10-16 01:25:52 -07001427 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001428 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 int len;
1430
1431 if (!tmp)
1432 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001433
Jan Blunckcf28b482008-02-14 19:38:44 -08001434 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001435 len = PTR_ERR(pathname);
1436 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001438 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440 if (len > buflen)
1441 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001442 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 len = -EFAULT;
1444 out:
1445 free_page((unsigned long)tmp);
1446 return len;
1447}
1448
1449static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1450{
1451 int error = -EACCES;
1452 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001453 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Eric W. Biederman778c1142006-06-26 00:25:58 -07001455 /* Are we allowed to snoop on the tasks file descriptors? */
1456 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001459 error = PROC_I(inode)->op.proc_get_link(inode, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (error)
1461 goto out;
1462
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001463 error = do_proc_readlink(&path, buffer, buflen);
1464 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return error;
1467}
1468
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001469static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001471 .follow_link = proc_pid_follow_link,
1472 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473};
1474
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001475
1476/* building an inode */
1477
1478static int task_dumpable(struct task_struct *task)
1479{
1480 int dumpable = 0;
1481 struct mm_struct *mm;
1482
1483 task_lock(task);
1484 mm = task->mm;
1485 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001486 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001487 task_unlock(task);
1488 if(dumpable == 1)
1489 return 1;
1490 return 0;
1491}
1492
1493
Eric W. Biederman61a28782006-10-02 02:18:49 -07001494static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001495{
1496 struct inode * inode;
1497 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001498 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001499
1500 /* We need a new inode */
1501
1502 inode = new_inode(sb);
1503 if (!inode)
1504 goto out;
1505
1506 /* Common stuff */
1507 ei = PROC_I(inode);
1508 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001509 inode->i_op = &proc_def_inode_operations;
1510
1511 /*
1512 * grab the reference to task.
1513 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001514 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001515 if (!ei->pid)
1516 goto out_unlock;
1517
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001518 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001519 rcu_read_lock();
1520 cred = __task_cred(task);
1521 inode->i_uid = cred->euid;
1522 inode->i_gid = cred->egid;
1523 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001524 }
1525 security_task_to_inode(task, inode);
1526
1527out:
1528 return inode;
1529
1530out_unlock:
1531 iput(inode);
1532 return NULL;
1533}
1534
1535static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1536{
1537 struct inode *inode = dentry->d_inode;
1538 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001539 const struct cred *cred;
1540
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001541 generic_fillattr(inode, stat);
1542
1543 rcu_read_lock();
1544 stat->uid = 0;
1545 stat->gid = 0;
1546 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1547 if (task) {
1548 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1549 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001550 cred = __task_cred(task);
1551 stat->uid = cred->euid;
1552 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001553 }
1554 }
1555 rcu_read_unlock();
1556 return 0;
1557}
1558
1559/* dentry stuff */
1560
1561/*
1562 * Exceptional case: normally we are not allowed to unhash a busy
1563 * directory. In this case, however, we can do it - no aliasing problems
1564 * due to the way we treat inodes.
1565 *
1566 * Rewrite the inode's ownerships here because the owning task may have
1567 * performed a setuid(), etc.
1568 *
1569 * Before the /proc/pid/status file was created the only way to read
1570 * the effective uid of a /process was to stat /proc/pid. Reading
1571 * /proc/pid/status is slow enough that procps and other packages
1572 * kept stating /proc/pid. To keep the rules in /proc simple I have
1573 * made this apply to all per process world readable and executable
1574 * directories.
1575 */
1576static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1577{
1578 struct inode *inode = dentry->d_inode;
1579 struct task_struct *task = get_proc_task(inode);
David Howellsc69e8d92008-11-14 10:39:19 +11001580 const struct cred *cred;
1581
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001582 if (task) {
1583 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1584 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001585 rcu_read_lock();
1586 cred = __task_cred(task);
1587 inode->i_uid = cred->euid;
1588 inode->i_gid = cred->egid;
1589 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001590 } else {
1591 inode->i_uid = 0;
1592 inode->i_gid = 0;
1593 }
1594 inode->i_mode &= ~(S_ISUID | S_ISGID);
1595 security_task_to_inode(task, inode);
1596 put_task_struct(task);
1597 return 1;
1598 }
1599 d_drop(dentry);
1600 return 0;
1601}
1602
1603static int pid_delete_dentry(struct dentry * dentry)
1604{
1605 /* Is the task we represent dead?
1606 * If so, then don't put the dentry on the lru list,
1607 * kill it immediately.
1608 */
1609 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1610}
1611
Al Virod72f71e2009-02-20 05:58:47 +00001612static const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001613{
1614 .d_revalidate = pid_revalidate,
1615 .d_delete = pid_delete_dentry,
1616};
1617
1618/* Lookups */
1619
Eric Dumazetc5141e62007-05-08 00:26:15 -07001620typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
1621 struct task_struct *, const void *);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001622
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001623/*
1624 * Fill a directory entry.
1625 *
1626 * If possible create the dcache entry and derive our inode number and
1627 * file type from dcache entry.
1628 *
1629 * Since all of the proc inode numbers are dynamically generated, the inode
1630 * numbers do not exist until the inode is cache. This means creating the
1631 * the dcache entry in readdir is necessary to keep the inode numbers
1632 * reported by readdir in sync with the inode numbers reported
1633 * by stat.
1634 */
Eric W. Biederman61a28782006-10-02 02:18:49 -07001635static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1636 char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001637 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001638{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001639 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001640 struct inode *inode;
1641 struct qstr qname;
1642 ino_t ino = 0;
1643 unsigned type = DT_UNKNOWN;
1644
1645 qname.name = name;
1646 qname.len = len;
1647 qname.hash = full_name_hash(name, len);
1648
1649 child = d_lookup(dir, &qname);
1650 if (!child) {
1651 struct dentry *new;
1652 new = d_alloc(dir, &qname);
1653 if (new) {
1654 child = instantiate(dir->d_inode, new, task, ptr);
1655 if (child)
1656 dput(new);
1657 else
1658 child = new;
1659 }
1660 }
1661 if (!child || IS_ERR(child) || !child->d_inode)
1662 goto end_instantiate;
1663 inode = child->d_inode;
1664 if (inode) {
1665 ino = inode->i_ino;
1666 type = inode->i_mode >> 12;
1667 }
1668 dput(child);
1669end_instantiate:
1670 if (!ino)
1671 ino = find_inode_number(dir, &qname);
1672 if (!ino)
1673 ino = 1;
1674 return filldir(dirent, name, len, filp->f_pos, ino, type);
1675}
1676
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001677static unsigned name_to_int(struct dentry *dentry)
1678{
1679 const char *name = dentry->d_name.name;
1680 int len = dentry->d_name.len;
1681 unsigned n = 0;
1682
1683 if (len > 1 && *name == '0')
1684 goto out;
1685 while (len-- > 0) {
1686 unsigned c = *name++ - '0';
1687 if (c > 9)
1688 goto out;
1689 if (n >= (~0U-9)/10)
1690 goto out;
1691 n *= 10;
1692 n += c;
1693 }
1694 return n;
1695out:
1696 return ~0U;
1697}
1698
Miklos Szeredi27932742007-05-08 00:26:17 -07001699#define PROC_FDINFO_MAX 64
1700
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001701static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001702{
1703 struct task_struct *task = get_proc_task(inode);
1704 struct files_struct *files = NULL;
1705 struct file *file;
1706 int fd = proc_fd(inode);
1707
1708 if (task) {
1709 files = get_files_struct(task);
1710 put_task_struct(task);
1711 }
1712 if (files) {
1713 /*
1714 * We are not taking a ref to the file structure, so we must
1715 * hold ->file_lock.
1716 */
1717 spin_lock(&files->file_lock);
1718 file = fcheck_files(files, fd);
1719 if (file) {
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001720 if (path) {
1721 *path = file->f_path;
1722 path_get(&file->f_path);
1723 }
Miklos Szeredi27932742007-05-08 00:26:17 -07001724 if (info)
1725 snprintf(info, PROC_FDINFO_MAX,
1726 "pos:\t%lli\n"
1727 "flags:\t0%o\n",
1728 (long long) file->f_pos,
1729 file->f_flags);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001730 spin_unlock(&files->file_lock);
1731 put_files_struct(files);
1732 return 0;
1733 }
1734 spin_unlock(&files->file_lock);
1735 put_files_struct(files);
1736 }
1737 return -ENOENT;
1738}
1739
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001740static int proc_fd_link(struct inode *inode, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001741{
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001742 return proc_fd_info(inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001743}
1744
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001745static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1746{
1747 struct inode *inode = dentry->d_inode;
1748 struct task_struct *task = get_proc_task(inode);
1749 int fd = proc_fd(inode);
1750 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001751 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001752
1753 if (task) {
1754 files = get_files_struct(task);
1755 if (files) {
1756 rcu_read_lock();
1757 if (fcheck_files(files, fd)) {
1758 rcu_read_unlock();
1759 put_files_struct(files);
1760 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001761 rcu_read_lock();
1762 cred = __task_cred(task);
1763 inode->i_uid = cred->euid;
1764 inode->i_gid = cred->egid;
1765 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001766 } else {
1767 inode->i_uid = 0;
1768 inode->i_gid = 0;
1769 }
1770 inode->i_mode &= ~(S_ISUID | S_ISGID);
1771 security_task_to_inode(task, inode);
1772 put_task_struct(task);
1773 return 1;
1774 }
1775 rcu_read_unlock();
1776 put_files_struct(files);
1777 }
1778 put_task_struct(task);
1779 }
1780 d_drop(dentry);
1781 return 0;
1782}
1783
Al Virod72f71e2009-02-20 05:58:47 +00001784static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001785{
1786 .d_revalidate = tid_fd_revalidate,
1787 .d_delete = pid_delete_dentry,
1788};
1789
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001790static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001791 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001792{
Eric Dumazetc5141e62007-05-08 00:26:15 -07001793 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001794 struct file *file;
1795 struct files_struct *files;
1796 struct inode *inode;
1797 struct proc_inode *ei;
1798 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001799
Eric W. Biederman61a28782006-10-02 02:18:49 -07001800 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001801 if (!inode)
1802 goto out;
1803 ei = PROC_I(inode);
1804 ei->fd = fd;
1805 files = get_files_struct(task);
1806 if (!files)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001807 goto out_iput;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001808 inode->i_mode = S_IFLNK;
1809
1810 /*
1811 * We are not taking a ref to the file structure, so we must
1812 * hold ->file_lock.
1813 */
1814 spin_lock(&files->file_lock);
1815 file = fcheck_files(files, fd);
1816 if (!file)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001817 goto out_unlock;
Al Viroaeb5d722008-09-02 15:28:45 -04001818 if (file->f_mode & FMODE_READ)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001819 inode->i_mode |= S_IRUSR | S_IXUSR;
Al Viroaeb5d722008-09-02 15:28:45 -04001820 if (file->f_mode & FMODE_WRITE)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001821 inode->i_mode |= S_IWUSR | S_IXUSR;
1822 spin_unlock(&files->file_lock);
1823 put_files_struct(files);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001824
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001825 inode->i_op = &proc_pid_link_inode_operations;
1826 inode->i_size = 64;
1827 ei->op.proc_get_link = proc_fd_link;
1828 dentry->d_op = &tid_fd_dentry_operations;
1829 d_add(dentry, inode);
1830 /* Close the race of the process dying before we return the dentry */
1831 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001832 error = NULL;
1833
1834 out:
1835 return error;
1836out_unlock:
1837 spin_unlock(&files->file_lock);
1838 put_files_struct(files);
1839out_iput:
1840 iput(inode);
1841 goto out;
1842}
1843
Miklos Szeredi27932742007-05-08 00:26:17 -07001844static struct dentry *proc_lookupfd_common(struct inode *dir,
1845 struct dentry *dentry,
1846 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001847{
1848 struct task_struct *task = get_proc_task(dir);
1849 unsigned fd = name_to_int(dentry);
1850 struct dentry *result = ERR_PTR(-ENOENT);
1851
1852 if (!task)
1853 goto out_no_task;
1854 if (fd == ~0U)
1855 goto out;
1856
Miklos Szeredi27932742007-05-08 00:26:17 -07001857 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001858out:
1859 put_task_struct(task);
1860out_no_task:
1861 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001862}
1863
Miklos Szeredi27932742007-05-08 00:26:17 -07001864static int proc_readfd_common(struct file * filp, void * dirent,
1865 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001867 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07001868 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001869 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07001870 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 struct files_struct * files;
1873
1874 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001875 if (!p)
1876 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 fd = filp->f_pos;
1880 switch (fd) {
1881 case 0:
1882 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
1883 goto out;
1884 filp->f_pos++;
1885 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07001886 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
1888 goto out;
1889 filp->f_pos++;
1890 default:
1891 files = get_files_struct(p);
1892 if (!files)
1893 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001894 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04001896 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07001898 char name[PROC_NUMBUF];
1899 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 if (!fcheck_files(files, fd))
1902 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001903 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Miklos Szeredi27932742007-05-08 00:26:17 -07001905 len = snprintf(name, sizeof(name), "%d", fd);
1906 if (proc_fill_cache(filp, dirent, filldir,
1907 name, len, instantiate,
1908 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07001909 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 break;
1911 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001912 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001914 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 put_files_struct(files);
1916 }
1917out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07001918 put_task_struct(p);
1919out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 return retval;
1921}
1922
Miklos Szeredi27932742007-05-08 00:26:17 -07001923static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
1924 struct nameidata *nd)
1925{
1926 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
1927}
1928
1929static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
1930{
1931 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
1932}
1933
1934static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
1935 size_t len, loff_t *ppos)
1936{
1937 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001938 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07001939 if (!err)
1940 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
1941 return err;
1942}
1943
1944static const struct file_operations proc_fdinfo_file_operations = {
1945 .open = nonseekable_open,
1946 .read = proc_fdinfo_read,
1947};
1948
Arjan van de Ven00977a52007-02-12 00:55:34 -08001949static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 .read = generic_read_dir,
1951 .readdir = proc_readfd,
1952};
1953
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001955 * /proc/pid/fd needs a special permission handler so that a process can still
1956 * access /proc/self/fd after it has executed a setuid().
1957 */
Al Viroe6305c42008-07-15 21:03:57 -04001958static int proc_fd_permission(struct inode *inode, int mask)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001959{
1960 int rv;
1961
1962 rv = generic_permission(inode, mask, NULL);
1963 if (rv == 0)
1964 return 0;
1965 if (task_pid(current) == proc_pid(inode))
1966 rv = 0;
1967 return rv;
1968}
1969
1970/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 * proc directories can do almost nothing..
1972 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001973static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001975 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001976 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977};
1978
Miklos Szeredi27932742007-05-08 00:26:17 -07001979static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
1980 struct dentry *dentry, struct task_struct *task, const void *ptr)
1981{
1982 unsigned fd = *(unsigned *)ptr;
1983 struct inode *inode;
1984 struct proc_inode *ei;
1985 struct dentry *error = ERR_PTR(-ENOENT);
1986
1987 inode = proc_pid_make_inode(dir->i_sb, task);
1988 if (!inode)
1989 goto out;
1990 ei = PROC_I(inode);
1991 ei->fd = fd;
1992 inode->i_mode = S_IFREG | S_IRUSR;
1993 inode->i_fop = &proc_fdinfo_file_operations;
1994 dentry->d_op = &tid_fd_dentry_operations;
1995 d_add(dentry, inode);
1996 /* Close the race of the process dying before we return the dentry */
1997 if (tid_fd_revalidate(dentry, NULL))
1998 error = NULL;
1999
2000 out:
2001 return error;
2002}
2003
2004static struct dentry *proc_lookupfdinfo(struct inode *dir,
2005 struct dentry *dentry,
2006 struct nameidata *nd)
2007{
2008 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
2009}
2010
2011static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
2012{
2013 return proc_readfd_common(filp, dirent, filldir,
2014 proc_fdinfo_instantiate);
2015}
2016
2017static const struct file_operations proc_fdinfo_operations = {
2018 .read = generic_read_dir,
2019 .readdir = proc_readfdinfo,
2020};
2021
2022/*
2023 * proc directories can do almost nothing..
2024 */
2025static const struct inode_operations proc_fdinfo_inode_operations = {
2026 .lookup = proc_lookupfdinfo,
2027 .setattr = proc_setattr,
2028};
2029
2030
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002031static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002032 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002033{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002034 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002035 struct inode *inode;
2036 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07002037 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002038
Eric W. Biederman61a28782006-10-02 02:18:49 -07002039 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002040 if (!inode)
2041 goto out;
2042
2043 ei = PROC_I(inode);
2044 inode->i_mode = p->mode;
2045 if (S_ISDIR(inode->i_mode))
2046 inode->i_nlink = 2; /* Use getattr to fix if necessary */
2047 if (p->iop)
2048 inode->i_op = p->iop;
2049 if (p->fop)
2050 inode->i_fop = p->fop;
2051 ei->op = p->op;
2052 dentry->d_op = &pid_dentry_operations;
2053 d_add(dentry, inode);
2054 /* Close the race of the process dying before we return the dentry */
2055 if (pid_revalidate(dentry, NULL))
2056 error = NULL;
2057out:
2058 return error;
2059}
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061static struct dentry *proc_pident_lookup(struct inode *dir,
2062 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002063 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002064 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002066 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002067 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002068 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002070 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Eric W. Biederman99f89552006-06-26 00:25:55 -07002072 if (!task)
2073 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002075 /*
2076 * Yes, it does not scale. And it should not. Don't add
2077 * new entries into /proc/<tgid>/ without very good reasons.
2078 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002079 last = &ents[nents - 1];
2080 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 if (p->len != dentry->d_name.len)
2082 continue;
2083 if (!memcmp(dentry->d_name.name, p->name, p->len))
2084 break;
2085 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002086 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 goto out;
2088
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002089 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002091 put_task_struct(task);
2092out_no_task:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002093 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
Eric Dumazetc5141e62007-05-08 00:26:15 -07002096static int proc_pident_fill_cache(struct file *filp, void *dirent,
2097 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002098{
2099 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2100 proc_pident_instantiate, task, p);
2101}
2102
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002103static int proc_pident_readdir(struct file *filp,
2104 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002105 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002106{
2107 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002108 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002109 struct inode *inode = dentry->d_inode;
2110 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002111 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002112 ino_t ino;
2113 int ret;
2114
2115 ret = -ENOENT;
2116 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002117 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002118
2119 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002120 i = filp->f_pos;
2121 switch (i) {
2122 case 0:
2123 ino = inode->i_ino;
2124 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2125 goto out;
2126 i++;
2127 filp->f_pos++;
2128 /* fall through */
2129 case 1:
2130 ino = parent_ino(dentry);
2131 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2132 goto out;
2133 i++;
2134 filp->f_pos++;
2135 /* fall through */
2136 default:
2137 i -= 2;
2138 if (i >= nents) {
2139 ret = 1;
2140 goto out;
2141 }
2142 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002143 last = &ents[nents - 1];
2144 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002145 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002146 goto out;
2147 filp->f_pos++;
2148 p++;
2149 }
2150 }
2151
2152 ret = 1;
2153out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002154 put_task_struct(task);
2155out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002156 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157}
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002160static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2161 size_t count, loff_t *ppos)
2162{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002163 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002164 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002165 ssize_t length;
2166 struct task_struct *task = get_proc_task(inode);
2167
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002168 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002169 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002170
2171 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002172 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002173 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002174 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002175 if (length > 0)
2176 length = simple_read_from_buffer(buf, count, ppos, p, length);
2177 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002178 return length;
2179}
2180
2181static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2182 size_t count, loff_t *ppos)
2183{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002184 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002185 char *page;
2186 ssize_t length;
2187 struct task_struct *task = get_proc_task(inode);
2188
2189 length = -ESRCH;
2190 if (!task)
2191 goto out_no_task;
2192 if (count > PAGE_SIZE)
2193 count = PAGE_SIZE;
2194
2195 /* No partial writes. */
2196 length = -EINVAL;
2197 if (*ppos != 0)
2198 goto out;
2199
2200 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002201 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002202 if (!page)
2203 goto out;
2204
2205 length = -EFAULT;
2206 if (copy_from_user(page, buf, count))
2207 goto out_free;
2208
David Howells107db7c2009-05-08 13:55:27 +01002209 /* Guard against adverse ptrace interaction */
2210 length = mutex_lock_interruptible(&task->cred_guard_mutex);
2211 if (length < 0)
2212 goto out_free;
2213
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002214 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002215 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002216 (void*)page, count);
David Howells107db7c2009-05-08 13:55:27 +01002217 mutex_unlock(&task->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002218out_free:
2219 free_page((unsigned long) page);
2220out:
2221 put_task_struct(task);
2222out_no_task:
2223 return length;
2224}
2225
Arjan van de Ven00977a52007-02-12 00:55:34 -08002226static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002227 .read = proc_pid_attr_read,
2228 .write = proc_pid_attr_write,
2229};
2230
Eric Dumazetc5141e62007-05-08 00:26:15 -07002231static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002232 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2233 REG("prev", S_IRUGO, proc_pid_attr_operations),
2234 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2235 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2236 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2237 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002238};
2239
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002240static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 void * dirent, filldir_t filldir)
2242{
2243 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002244 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245}
2246
Arjan van de Ven00977a52007-02-12 00:55:34 -08002247static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002249 .readdir = proc_attr_dir_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250};
2251
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002252static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 struct dentry *dentry, struct nameidata *nd)
2254{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002255 return proc_pident_lookup(dir, dentry,
2256 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257}
2258
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002259static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002260 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002261 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002262 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263};
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265#endif
2266
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002267#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002268static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2269 size_t count, loff_t *ppos)
2270{
2271 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2272 struct mm_struct *mm;
2273 char buffer[PROC_NUMBUF];
2274 size_t len;
2275 int ret;
2276
2277 if (!task)
2278 return -ESRCH;
2279
2280 ret = 0;
2281 mm = get_task_mm(task);
2282 if (mm) {
2283 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2284 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2285 MMF_DUMP_FILTER_SHIFT));
2286 mmput(mm);
2287 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2288 }
2289
2290 put_task_struct(task);
2291
2292 return ret;
2293}
2294
2295static ssize_t proc_coredump_filter_write(struct file *file,
2296 const char __user *buf,
2297 size_t count,
2298 loff_t *ppos)
2299{
2300 struct task_struct *task;
2301 struct mm_struct *mm;
2302 char buffer[PROC_NUMBUF], *end;
2303 unsigned int val;
2304 int ret;
2305 int i;
2306 unsigned long mask;
2307
2308 ret = -EFAULT;
2309 memset(buffer, 0, sizeof(buffer));
2310 if (count > sizeof(buffer) - 1)
2311 count = sizeof(buffer) - 1;
2312 if (copy_from_user(buffer, buf, count))
2313 goto out_no_task;
2314
2315 ret = -EINVAL;
2316 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2317 if (*end == '\n')
2318 end++;
2319 if (end - buffer == 0)
2320 goto out_no_task;
2321
2322 ret = -ESRCH;
2323 task = get_proc_task(file->f_dentry->d_inode);
2324 if (!task)
2325 goto out_no_task;
2326
2327 ret = end - buffer;
2328 mm = get_task_mm(task);
2329 if (!mm)
2330 goto out_no_mm;
2331
2332 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2333 if (val & mask)
2334 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2335 else
2336 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2337 }
2338
2339 mmput(mm);
2340 out_no_mm:
2341 put_task_struct(task);
2342 out_no_task:
2343 return ret;
2344}
2345
2346static const struct file_operations proc_coredump_filter_operations = {
2347 .read = proc_coredump_filter_read,
2348 .write = proc_coredump_filter_write,
2349};
2350#endif
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352/*
2353 * /proc/self:
2354 */
2355static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2356 int buflen)
2357{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002358 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002359 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002360 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002361 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002362 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002363 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 return vfs_readlink(dentry,buffer,buflen,tmp);
2365}
2366
Al Viro008b1502005-08-20 00:17:39 +01002367static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002369 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002370 pid_t tgid = task_tgid_nr_ns(current, ns);
Al Viro7fee4862010-01-14 01:03:28 -05002371 char *name = ERR_PTR(-ENOENT);
2372 if (tgid) {
2373 name = __getname();
2374 if (!name)
2375 name = ERR_PTR(-ENOMEM);
2376 else
2377 sprintf(name, "%d", tgid);
2378 }
2379 nd_set_link(nd, name);
2380 return NULL;
2381}
2382
2383static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd,
2384 void *cookie)
2385{
2386 char *s = nd_get_link(nd);
2387 if (!IS_ERR(s))
2388 __putname(s);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002389}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002391static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 .readlink = proc_self_readlink,
2393 .follow_link = proc_self_follow_link,
Al Viro7fee4862010-01-14 01:03:28 -05002394 .put_link = proc_self_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395};
2396
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002397/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002398 * proc base
2399 *
2400 * These are the directory entries in the root directory of /proc
2401 * that properly belong to the /proc filesystem, as they describe
2402 * describe something that is process related.
2403 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002404static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002405 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002406 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002407};
2408
2409/*
2410 * Exceptional case: normally we are not allowed to unhash a busy
2411 * directory. In this case, however, we can do it - no aliasing problems
2412 * due to the way we treat inodes.
2413 */
2414static int proc_base_revalidate(struct dentry *dentry, struct nameidata *nd)
2415{
2416 struct inode *inode = dentry->d_inode;
2417 struct task_struct *task = get_proc_task(inode);
2418 if (task) {
2419 put_task_struct(task);
2420 return 1;
2421 }
2422 d_drop(dentry);
2423 return 0;
2424}
2425
Al Virod72f71e2009-02-20 05:58:47 +00002426static const struct dentry_operations proc_base_dentry_operations =
Eric W. Biederman801199c2006-10-02 02:18:48 -07002427{
2428 .d_revalidate = proc_base_revalidate,
2429 .d_delete = pid_delete_dentry,
2430};
2431
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002432static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002433 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002434{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002435 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002436 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002437 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002438 struct dentry *error = ERR_PTR(-EINVAL);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002439
2440 /* Allocate the inode */
2441 error = ERR_PTR(-ENOMEM);
2442 inode = new_inode(dir->i_sb);
2443 if (!inode)
2444 goto out;
2445
2446 /* Initialize the inode */
2447 ei = PROC_I(inode);
2448 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002449
2450 /*
2451 * grab the reference to the task.
2452 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07002453 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002454 if (!ei->pid)
2455 goto out_iput;
2456
Eric W. Biederman801199c2006-10-02 02:18:48 -07002457 inode->i_mode = p->mode;
2458 if (S_ISDIR(inode->i_mode))
2459 inode->i_nlink = 2;
2460 if (S_ISLNK(inode->i_mode))
2461 inode->i_size = 64;
2462 if (p->iop)
2463 inode->i_op = p->iop;
2464 if (p->fop)
2465 inode->i_fop = p->fop;
2466 ei->op = p->op;
2467 dentry->d_op = &proc_base_dentry_operations;
2468 d_add(dentry, inode);
2469 error = NULL;
2470out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002471 return error;
2472out_iput:
2473 iput(inode);
2474 goto out;
2475}
2476
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002477static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2478{
2479 struct dentry *error;
2480 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002481 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002482
2483 error = ERR_PTR(-ENOENT);
2484
2485 if (!task)
2486 goto out_no_task;
2487
2488 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002489 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2490 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002491 if (p->len != dentry->d_name.len)
2492 continue;
2493 if (!memcmp(dentry->d_name.name, p->name, p->len))
2494 break;
2495 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002496 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002497 goto out;
2498
2499 error = proc_base_instantiate(dir, dentry, task, p);
2500
2501out:
2502 put_task_struct(task);
2503out_no_task:
2504 return error;
2505}
2506
Eric Dumazetc5141e62007-05-08 00:26:15 -07002507static int proc_base_fill_cache(struct file *filp, void *dirent,
2508 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002509{
2510 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2511 proc_base_instantiate, task, p);
2512}
2513
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002514#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002515static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002516{
Andrea Righi940389b2008-07-28 00:48:12 +02002517 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002518 unsigned long flags;
Andrea Righi297c5d92008-07-25 01:48:49 -07002519
Andrea Righi59954772008-07-27 17:29:15 +02002520 if (whole && lock_task_sighand(task, &flags)) {
2521 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002522
Andrea Righi59954772008-07-27 17:29:15 +02002523 task_io_accounting_add(&acct, &task->signal->ioac);
2524 while_each_thread(task, t)
2525 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002526
Andrea Righi59954772008-07-27 17:29:15 +02002527 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002528 }
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002529 return sprintf(buffer,
2530 "rchar: %llu\n"
2531 "wchar: %llu\n"
2532 "syscr: %llu\n"
2533 "syscw: %llu\n"
2534 "read_bytes: %llu\n"
2535 "write_bytes: %llu\n"
2536 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002537 (unsigned long long)acct.rchar,
2538 (unsigned long long)acct.wchar,
2539 (unsigned long long)acct.syscr,
2540 (unsigned long long)acct.syscw,
2541 (unsigned long long)acct.read_bytes,
2542 (unsigned long long)acct.write_bytes,
2543 (unsigned long long)acct.cancelled_write_bytes);
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002544}
Andrea Righi297c5d92008-07-25 01:48:49 -07002545
2546static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2547{
2548 return do_io_accounting(task, buffer, 0);
2549}
2550
2551static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2552{
2553 return do_io_accounting(task, buffer, 1);
2554}
2555#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002556
Kees Cook47830722008-10-06 03:11:58 +04002557static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2558 struct pid *pid, struct task_struct *task)
2559{
2560 seq_printf(m, "%08x\n", task->personality);
2561 return 0;
2562}
2563
Eric W. Biederman801199c2006-10-02 02:18:48 -07002564/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002565 * Thread groups
2566 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002567static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002568static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002569
Eric Dumazetc5141e62007-05-08 00:26:15 -07002570static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002571 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2572 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2573 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002574#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002575 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002576#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002577 REG("environ", S_IRUSR, proc_environ_operations),
2578 INF("auxv", S_IRUSR, proc_pid_auxv),
2579 ONE("status", S_IRUGO, proc_pid_status),
2580 ONE("personality", S_IRUSR, proc_pid_personality),
2581 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002582#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002583 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002584#endif
john stultz4614a696b2009-12-14 18:00:05 -08002585 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002586#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002587 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002588#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002589 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2590 ONE("stat", S_IRUGO, proc_tgid_stat),
2591 ONE("statm", S_IRUGO, proc_pid_statm),
2592 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002593#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002594 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002595#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002596 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2597 LNK("cwd", proc_cwd_link),
2598 LNK("root", proc_root_link),
2599 LNK("exe", proc_exe_link),
2600 REG("mounts", S_IRUGO, proc_mounts_operations),
2601 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2602 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002603#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002604 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2605 REG("smaps", S_IRUGO, proc_smaps_operations),
2606 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002607#endif
2608#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002609 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002610#endif
2611#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002612 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002613#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002614#ifdef CONFIG_STACKTRACE
2615 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002616#endif
2617#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002618 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002619#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002620#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002621 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002622#endif
Paul Menage8793d852007-10-18 23:39:39 -07002623#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002624 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002625#endif
Paul Menagea4243162007-10-18 23:39:35 -07002626#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002627 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002628#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002629 INF("oom_score", S_IRUGO, proc_oom_score),
2630 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002631#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002632 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2633 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002634#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002635#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002636 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002637#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002638#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002639 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002640#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002641#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002642 INF("io", S_IRUGO, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002643#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002644};
2645
2646static int proc_tgid_base_readdir(struct file * filp,
2647 void * dirent, filldir_t filldir)
2648{
2649 return proc_pident_readdir(filp,dirent,filldir,
2650 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
2651}
2652
Arjan van de Ven00977a52007-02-12 00:55:34 -08002653static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002654 .read = generic_read_dir,
2655 .readdir = proc_tgid_base_readdir,
2656};
2657
2658static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002659 return proc_pident_lookup(dir, dentry,
2660 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002661}
2662
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002663static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002664 .lookup = proc_tgid_base_lookup,
2665 .getattr = pid_getattr,
2666 .setattr = proc_setattr,
2667};
2668
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002669static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002671 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002672 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002673 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Eric W. Biederman48e64842006-06-26 00:25:48 -07002675 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002676 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2677 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002678 if (dentry) {
Sukadev Bhattiprolu29f12ca2009-11-11 14:26:32 -08002679 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002680 d_drop(dentry);
2681 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 }
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", tgid);
2686 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002687 if (!leader)
2688 goto out;
2689
2690 name.name = "task";
2691 name.len = strlen(name.name);
2692 dir = d_hash_and_lookup(leader, &name);
2693 if (!dir)
2694 goto out_put_leader;
2695
2696 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002697 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002698 dentry = d_hash_and_lookup(dir, &name);
2699 if (dentry) {
2700 shrink_dcache_parent(dentry);
2701 d_drop(dentry);
2702 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002704
2705 dput(dir);
2706out_put_leader:
2707 dput(leader);
2708out:
2709 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710}
2711
Randy Dunlap0895e912007-10-21 21:00:10 -07002712/**
2713 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2714 * @task: task that should be flushed.
2715 *
2716 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002717 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002718 * in. This call is supposed to do all of this job.
2719 *
2720 * Looks in the dcache for
2721 * /proc/@pid
2722 * /proc/@tgid/task/@pid
2723 * if either directory is present flushes it and all of it'ts children
2724 * from the dcache.
2725 *
2726 * It is safe and reasonable to cache /proc entries for a task until
2727 * that task exits. After that they just clog up the dcache with
2728 * useless entries, possibly causing useful dcache entries to be
2729 * flushed instead. This routine is proved to flush those useless
2730 * dcache entries at process exit time.
2731 *
2732 * NOTE: This routine is just an optimization so it does not guarantee
2733 * that no dcache entries will exist at process exit time it
2734 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002735 */
2736
2737void proc_flush_task(struct task_struct *task)
2738{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002739 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002740 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002741 struct upid *upid;
2742
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002743 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002744 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002745
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002746 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002747 upid = &pid->numbers[i];
2748 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002749 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002750 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07002751
2752 upid = &pid->numbers[pid->level];
2753 if (upid->nr == 1)
2754 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002755}
2756
Adrian Bunk9711ef92006-12-06 20:38:31 -08002757static struct dentry *proc_pid_instantiate(struct inode *dir,
2758 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002759 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002760{
2761 struct dentry *error = ERR_PTR(-ENOENT);
2762 struct inode *inode;
2763
Eric W. Biederman61a28782006-10-02 02:18:49 -07002764 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002765 if (!inode)
2766 goto out;
2767
2768 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2769 inode->i_op = &proc_tgid_base_inode_operations;
2770 inode->i_fop = &proc_tgid_base_operations;
2771 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002772
2773 inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff,
2774 ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002775
2776 dentry->d_op = &pid_dentry_operations;
2777
2778 d_add(dentry, inode);
2779 /* Close the race of the process dying before we return the dentry */
2780 if (pid_revalidate(dentry, NULL))
2781 error = NULL;
2782out:
2783 return error;
2784}
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2787{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002788 struct dentry *result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002791 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
Eric W. Biederman801199c2006-10-02 02:18:48 -07002793 result = proc_base_lookup(dir, dentry);
2794 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
2795 goto out;
2796
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 tgid = name_to_int(dentry);
2798 if (tgid == ~0U)
2799 goto out;
2800
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002801 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07002802 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002803 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 if (task)
2805 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07002806 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 if (!task)
2808 goto out;
2809
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002810 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002811 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812out:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002813 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814}
2815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002817 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002818 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002820struct tgid_iter {
2821 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002822 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002823};
2824static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
2825{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002826 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002828 if (iter.task)
2829 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002830 rcu_read_lock();
2831retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002832 iter.task = NULL;
2833 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002834 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002835 iter.tgid = pid_nr_ns(pid, ns);
2836 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002837 /* What we to know is if the pid we have find is the
2838 * pid of a thread_group_leader. Testing for task
2839 * being a thread_group_leader is the obvious thing
2840 * todo but there is a window when it fails, due to
2841 * the pid transfer logic in de_thread.
2842 *
2843 * So we perform the straight forward test of seeing
2844 * if the pid we have found is the pid of a thread
2845 * group leader, and don't worry if the task we have
2846 * found doesn't happen to be a thread group leader.
2847 * As we don't care in the case of readdir.
2848 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002849 if (!iter.task || !has_group_leader_pid(iter.task)) {
2850 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002851 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002852 }
2853 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07002855 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002856 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857}
2858
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002859#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
Eric W. Biederman61a28782006-10-02 02:18:49 -07002861static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002862 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002863{
2864 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002865 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002866 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002867 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002868}
2869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870/* for the /proc/ directory itself, after non-process stuff has been done */
2871int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
2872{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002874 struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002875 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002876 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Eric W. Biederman61a28782006-10-02 02:18:49 -07002878 if (!reaper)
2879 goto out_no_task;
2880
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002881 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07002882 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07002883 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002884 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 }
2886
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002887 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002888 iter.task = NULL;
2889 iter.tgid = filp->f_pos - TGID_OFFSET;
2890 for (iter = next_tgid(ns, iter);
2891 iter.task;
2892 iter.tgid += 1, iter = next_tgid(ns, iter)) {
2893 filp->f_pos = iter.tgid + TGID_OFFSET;
2894 if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) {
2895 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002896 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002899 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
2900out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002901 put_task_struct(reaper);
2902out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 return 0;
2904}
2905
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002906/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002907 * Tasks
2908 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002909static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002910 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2911 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fd_operations),
2912 REG("environ", S_IRUSR, proc_environ_operations),
2913 INF("auxv", S_IRUSR, proc_pid_auxv),
2914 ONE("status", S_IRUGO, proc_pid_status),
2915 ONE("personality", S_IRUSR, proc_pid_personality),
2916 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002917#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002918 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002919#endif
john stultz4614a696b2009-12-14 18:00:05 -08002920 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002921#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002922 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002923#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002924 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2925 ONE("stat", S_IRUGO, proc_tid_stat),
2926 ONE("statm", S_IRUGO, proc_pid_statm),
2927 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002928#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002929 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002930#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002931 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2932 LNK("cwd", proc_cwd_link),
2933 LNK("root", proc_root_link),
2934 LNK("exe", proc_exe_link),
2935 REG("mounts", S_IRUGO, proc_mounts_operations),
2936 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002937#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002938 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2939 REG("smaps", S_IRUGO, proc_smaps_operations),
2940 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002941#endif
2942#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002943 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002944#endif
2945#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002946 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002947#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002948#ifdef CONFIG_STACKTRACE
2949 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002950#endif
2951#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002952 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002953#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002954#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002955 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002956#endif
Paul Menage8793d852007-10-18 23:39:39 -07002957#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002958 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002959#endif
Paul Menagea4243162007-10-18 23:39:35 -07002960#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002961 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002962#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002963 INF("oom_score", S_IRUGO, proc_oom_score),
2964 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002965#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002966 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2967 REG("sessionid", S_IRUSR, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002968#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002969#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002970 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002971#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07002972#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002973 INF("io", S_IRUGO, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07002974#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002975};
2976
2977static int proc_tid_base_readdir(struct file * filp,
2978 void * dirent, filldir_t filldir)
2979{
2980 return proc_pident_readdir(filp,dirent,filldir,
2981 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
2982}
2983
2984static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002985 return proc_pident_lookup(dir, dentry,
2986 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002987}
2988
Arjan van de Ven00977a52007-02-12 00:55:34 -08002989static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002990 .read = generic_read_dir,
2991 .readdir = proc_tid_base_readdir,
2992};
2993
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002994static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002995 .lookup = proc_tid_base_lookup,
2996 .getattr = pid_getattr,
2997 .setattr = proc_setattr,
2998};
2999
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003000static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003001 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003002{
3003 struct dentry *error = ERR_PTR(-ENOENT);
3004 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07003005 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003006
3007 if (!inode)
3008 goto out;
3009 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3010 inode->i_op = &proc_tid_base_inode_operations;
3011 inode->i_fop = &proc_tid_base_operations;
3012 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003013
3014 inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff,
3015 ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003016
3017 dentry->d_op = &pid_dentry_operations;
3018
3019 d_add(dentry, inode);
3020 /* Close the race of the process dying before we return the dentry */
3021 if (pid_revalidate(dentry, NULL))
3022 error = NULL;
3023out:
3024 return error;
3025}
3026
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003027static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3028{
3029 struct dentry *result = ERR_PTR(-ENOENT);
3030 struct task_struct *task;
3031 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003032 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003033 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003034
3035 if (!leader)
3036 goto out_no_task;
3037
3038 tid = name_to_int(dentry);
3039 if (tid == ~0U)
3040 goto out;
3041
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003042 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003043 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003044 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003045 if (task)
3046 get_task_struct(task);
3047 rcu_read_unlock();
3048 if (!task)
3049 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003050 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003051 goto out_drop_task;
3052
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003053 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003054out_drop_task:
3055 put_task_struct(task);
3056out:
3057 put_task_struct(leader);
3058out_no_task:
3059 return result;
3060}
3061
3062/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003063 * Find the first tid of a thread group to return to user space.
3064 *
3065 * Usually this is just the thread group leader, but if the users
3066 * buffer was too small or there was a seek into the middle of the
3067 * directory we have more work todo.
3068 *
3069 * In the case of a short read we start with find_task_by_pid.
3070 *
3071 * In the case of a seek we start with the leader and walk nr
3072 * threads past it.
3073 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07003074static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003075 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003076{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003077 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003078
Eric W. Biedermancc288732006-06-26 00:26:01 -07003079 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003080 /* Attempt to start with the pid of a thread */
3081 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003082 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003083 if (pos && (pos->group_leader == leader))
3084 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003085 }
3086
3087 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003088 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003089 if (nr && nr >= get_nr_threads(leader))
3090 goto out;
3091
3092 /* If we haven't found our starting place yet start
3093 * with the leader and walk nr threads forward.
3094 */
3095 for (pos = leader; nr > 0; --nr) {
3096 pos = next_thread(pos);
3097 if (pos == leader) {
3098 pos = NULL;
3099 goto out;
3100 }
3101 }
3102found:
3103 get_task_struct(pos);
3104out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003105 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003106 return pos;
3107}
3108
3109/*
3110 * Find the next thread in the thread list.
3111 * Return NULL if there is an error or no next thread.
3112 *
3113 * The reference to the input task_struct is released.
3114 */
3115static struct task_struct *next_tid(struct task_struct *start)
3116{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003117 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003118 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003119 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003120 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003121 if (thread_group_leader(pos))
3122 pos = NULL;
3123 else
3124 get_task_struct(pos);
3125 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003126 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003127 put_task_struct(start);
3128 return pos;
3129}
3130
Eric W. Biederman61a28782006-10-02 02:18:49 -07003131static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3132 struct task_struct *task, int tid)
3133{
3134 char name[PROC_NUMBUF];
3135 int len = snprintf(name, sizeof(name), "%d", tid);
3136 return proc_fill_cache(filp, dirent, filldir, name, len,
3137 proc_task_instantiate, task, NULL);
3138}
3139
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140/* for the /proc/TGID/task/ directories */
3141static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3142{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003143 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003145 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003146 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 int retval = -ENOENT;
3148 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003149 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003150 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003152 task = get_proc_task(inode);
3153 if (!task)
3154 goto out_no_task;
3155 rcu_read_lock();
3156 if (pid_alive(task)) {
3157 leader = task->group_leader;
3158 get_task_struct(leader);
3159 }
3160 rcu_read_unlock();
3161 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003162 if (!leader)
3163 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 retval = 0;
3165
Linus Torvaldsee568b22009-03-17 10:02:35 -07003166 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 case 0:
3168 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003169 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003171 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 /* fall through */
3173 case 1:
3174 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003175 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003177 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 /* fall through */
3179 }
3180
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003181 /* f_version caches the tgid value that the last readdir call couldn't
3182 * return. lseek aka telldir automagically resets f_version to 0.
3183 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003184 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003185 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003186 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003187 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003188 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003189 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003190 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003191 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003192 /* returning this tgid failed, save it as the first
3193 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003194 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003195 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 }
3199out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003200 put_task_struct(leader);
3201out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 return retval;
3203}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003204
3205static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3206{
3207 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003208 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003209 generic_fillattr(inode, stat);
3210
Eric W. Biederman99f89552006-06-26 00:25:55 -07003211 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003212 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003213 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003214 }
3215
3216 return 0;
3217}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003218
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003219static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003220 .lookup = proc_task_lookup,
3221 .getattr = proc_task_getattr,
3222 .setattr = proc_setattr,
3223};
3224
Arjan van de Ven00977a52007-02-12 00:55:34 -08003225static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003226 .read = generic_read_dir,
3227 .readdir = proc_task_readdir,
3228};