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