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