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