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