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