x86/xen: resume timer irqs early
[linux/fpc-iii.git] / fs / proc / base.c
blobc35eaa4049339cad466dd17317f1be328bc73779
1 /*
2 * linux/fs/proc/base.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
6 * proc base directory handling functions
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.
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>
24 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
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.
33 * Changelog:
34 * 21-Feb-2005
35 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
36 * Pud inclusion in the page table walking.
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.
43 * Simo Piiroinen <simo.piiroinen@nokia.com>:
44 * Smaps information related to shared, private, clean and dirty pages.
46 * Paul Mundt <paul.mundt@nokia.com>:
47 * Overall revision about smaps.
50 #include <asm/uaccess.h>
52 #include <linux/errno.h>
53 #include <linux/time.h>
54 #include <linux/proc_fs.h>
55 #include <linux/stat.h>
56 #include <linux/task_io_accounting_ops.h>
57 #include <linux/init.h>
58 #include <linux/capability.h>
59 #include <linux/file.h>
60 #include <linux/fdtable.h>
61 #include <linux/string.h>
62 #include <linux/seq_file.h>
63 #include <linux/namei.h>
64 #include <linux/mnt_namespace.h>
65 #include <linux/mm.h>
66 #include <linux/swap.h>
67 #include <linux/rcupdate.h>
68 #include <linux/kallsyms.h>
69 #include <linux/stacktrace.h>
70 #include <linux/resource.h>
71 #include <linux/module.h>
72 #include <linux/mount.h>
73 #include <linux/security.h>
74 #include <linux/ptrace.h>
75 #include <linux/tracehook.h>
76 #include <linux/printk.h>
77 #include <linux/cgroup.h>
78 #include <linux/cpuset.h>
79 #include <linux/audit.h>
80 #include <linux/poll.h>
81 #include <linux/nsproxy.h>
82 #include <linux/oom.h>
83 #include <linux/elf.h>
84 #include <linux/pid_namespace.h>
85 #include <linux/user_namespace.h>
86 #include <linux/fs_struct.h>
87 #include <linux/slab.h>
88 #include <linux/flex_array.h>
89 #include <linux/posix-timers.h>
90 #ifdef CONFIG_HARDWALL
91 #include <asm/hardwall.h>
92 #endif
93 #include <trace/events/oom.h>
94 #include "internal.h"
95 #include "fd.h"
97 /* NOTE:
98 * Implementing inode permission operations in /proc is almost
99 * certainly an error. Permission checks need to happen during
100 * each system call not at open time. The reason is that most of
101 * what we wish to check for permissions in /proc varies at runtime.
103 * The classic example of a problem is opening file descriptors
104 * in /proc for a task before it execs a suid executable.
107 struct pid_entry {
108 char *name;
109 int len;
110 umode_t mode;
111 const struct inode_operations *iop;
112 const struct file_operations *fop;
113 union proc_op op;
116 #define NOD(NAME, MODE, IOP, FOP, OP) { \
117 .name = (NAME), \
118 .len = sizeof(NAME) - 1, \
119 .mode = MODE, \
120 .iop = IOP, \
121 .fop = FOP, \
122 .op = OP, \
125 #define DIR(NAME, MODE, iops, fops) \
126 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
127 #define LNK(NAME, get_link) \
128 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
129 &proc_pid_link_inode_operations, NULL, \
130 { .proc_get_link = get_link } )
131 #define REG(NAME, MODE, fops) \
132 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
133 #define INF(NAME, MODE, read) \
134 NOD(NAME, (S_IFREG|(MODE)), \
135 NULL, &proc_info_file_operations, \
136 { .proc_read = read } )
137 #define ONE(NAME, MODE, show) \
138 NOD(NAME, (S_IFREG|(MODE)), \
139 NULL, &proc_single_file_operations, \
140 { .proc_show = show } )
143 * Count the number of hardlinks for the pid_entry table, excluding the .
144 * and .. links.
146 static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
147 unsigned int n)
149 unsigned int i;
150 unsigned int count;
152 count = 0;
153 for (i = 0; i < n; ++i) {
154 if (S_ISDIR(entries[i].mode))
155 ++count;
158 return count;
161 static int get_task_root(struct task_struct *task, struct path *root)
163 int result = -ENOENT;
165 task_lock(task);
166 if (task->fs) {
167 get_fs_root(task->fs, root);
168 result = 0;
170 task_unlock(task);
171 return result;
174 static int proc_cwd_link(struct dentry *dentry, struct path *path)
176 struct task_struct *task = get_proc_task(dentry->d_inode);
177 int result = -ENOENT;
179 if (task) {
180 task_lock(task);
181 if (task->fs) {
182 get_fs_pwd(task->fs, path);
183 result = 0;
185 task_unlock(task);
186 put_task_struct(task);
188 return result;
191 static int proc_root_link(struct dentry *dentry, struct path *path)
193 struct task_struct *task = get_proc_task(dentry->d_inode);
194 int result = -ENOENT;
196 if (task) {
197 result = get_task_root(task, path);
198 put_task_struct(task);
200 return result;
203 static int proc_pid_cmdline(struct task_struct *task, char * buffer)
205 int res = 0;
206 unsigned int len;
207 struct mm_struct *mm = get_task_mm(task);
208 if (!mm)
209 goto out;
210 if (!mm->arg_end)
211 goto out_mm; /* Shh! No looking before we're done */
213 len = mm->arg_end - mm->arg_start;
215 if (len > PAGE_SIZE)
216 len = PAGE_SIZE;
218 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
220 // If the nul at the end of args has been overwritten, then
221 // assume application is using setproctitle(3).
222 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
223 len = strnlen(buffer, res);
224 if (len < res) {
225 res = len;
226 } else {
227 len = mm->env_end - mm->env_start;
228 if (len > PAGE_SIZE - res)
229 len = PAGE_SIZE - res;
230 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
231 res = strnlen(buffer, res);
234 out_mm:
235 mmput(mm);
236 out:
237 return res;
240 static int proc_pid_auxv(struct task_struct *task, char *buffer)
242 struct mm_struct *mm = mm_access(task, PTRACE_MODE_READ);
243 int res = PTR_ERR(mm);
244 if (mm && !IS_ERR(mm)) {
245 unsigned int nwords = 0;
246 do {
247 nwords += 2;
248 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
249 res = nwords * sizeof(mm->saved_auxv[0]);
250 if (res > PAGE_SIZE)
251 res = PAGE_SIZE;
252 memcpy(buffer, mm->saved_auxv, res);
253 mmput(mm);
255 return res;
259 #ifdef CONFIG_KALLSYMS
261 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
262 * Returns the resolved symbol. If that fails, simply return the address.
264 static int proc_pid_wchan(struct task_struct *task, char *buffer)
266 unsigned long wchan;
267 char symname[KSYM_NAME_LEN];
269 wchan = get_wchan(task);
271 if (lookup_symbol_name(wchan, symname) < 0)
272 if (!ptrace_may_access(task, PTRACE_MODE_READ))
273 return 0;
274 else
275 return sprintf(buffer, "%lu", wchan);
276 else
277 return sprintf(buffer, "%s", symname);
279 #endif /* CONFIG_KALLSYMS */
281 static int lock_trace(struct task_struct *task)
283 int err = mutex_lock_killable(&task->signal->cred_guard_mutex);
284 if (err)
285 return err;
286 if (!ptrace_may_access(task, PTRACE_MODE_ATTACH)) {
287 mutex_unlock(&task->signal->cred_guard_mutex);
288 return -EPERM;
290 return 0;
293 static void unlock_trace(struct task_struct *task)
295 mutex_unlock(&task->signal->cred_guard_mutex);
298 #ifdef CONFIG_STACKTRACE
300 #define MAX_STACK_TRACE_DEPTH 64
302 static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
303 struct pid *pid, struct task_struct *task)
305 struct stack_trace trace;
306 unsigned long *entries;
307 int err;
308 int i;
310 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
311 if (!entries)
312 return -ENOMEM;
314 trace.nr_entries = 0;
315 trace.max_entries = MAX_STACK_TRACE_DEPTH;
316 trace.entries = entries;
317 trace.skip = 0;
319 err = lock_trace(task);
320 if (!err) {
321 save_stack_trace_tsk(task, &trace);
323 for (i = 0; i < trace.nr_entries; i++) {
324 seq_printf(m, "[<%pK>] %pS\n",
325 (void *)entries[i], (void *)entries[i]);
327 unlock_trace(task);
329 kfree(entries);
331 return err;
333 #endif
335 #ifdef CONFIG_SCHEDSTATS
337 * Provides /proc/PID/schedstat
339 static int proc_pid_schedstat(struct task_struct *task, char *buffer)
341 return sprintf(buffer, "%llu %llu %lu\n",
342 (unsigned long long)task->se.sum_exec_runtime,
343 (unsigned long long)task->sched_info.run_delay,
344 task->sched_info.pcount);
346 #endif
348 #ifdef CONFIG_LATENCYTOP
349 static int lstats_show_proc(struct seq_file *m, void *v)
351 int i;
352 struct inode *inode = m->private;
353 struct task_struct *task = get_proc_task(inode);
355 if (!task)
356 return -ESRCH;
357 seq_puts(m, "Latency Top version : v0.1\n");
358 for (i = 0; i < 32; i++) {
359 struct latency_record *lr = &task->latency_record[i];
360 if (lr->backtrace[0]) {
361 int q;
362 seq_printf(m, "%i %li %li",
363 lr->count, lr->time, lr->max);
364 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
365 unsigned long bt = lr->backtrace[q];
366 if (!bt)
367 break;
368 if (bt == ULONG_MAX)
369 break;
370 seq_printf(m, " %ps", (void *)bt);
372 seq_putc(m, '\n');
376 put_task_struct(task);
377 return 0;
380 static int lstats_open(struct inode *inode, struct file *file)
382 return single_open(file, lstats_show_proc, inode);
385 static ssize_t lstats_write(struct file *file, const char __user *buf,
386 size_t count, loff_t *offs)
388 struct task_struct *task = get_proc_task(file_inode(file));
390 if (!task)
391 return -ESRCH;
392 clear_all_latency_tracing(task);
393 put_task_struct(task);
395 return count;
398 static const struct file_operations proc_lstats_operations = {
399 .open = lstats_open,
400 .read = seq_read,
401 .write = lstats_write,
402 .llseek = seq_lseek,
403 .release = single_release,
406 #endif
408 #ifdef CONFIG_CGROUPS
409 static int cgroup_open(struct inode *inode, struct file *file)
411 struct pid *pid = PROC_I(inode)->pid;
412 return single_open(file, proc_cgroup_show, pid);
415 static const struct file_operations proc_cgroup_operations = {
416 .open = cgroup_open,
417 .read = seq_read,
418 .llseek = seq_lseek,
419 .release = single_release,
421 #endif
423 #ifdef CONFIG_PROC_PID_CPUSET
425 static int cpuset_open(struct inode *inode, struct file *file)
427 struct pid *pid = PROC_I(inode)->pid;
428 return single_open(file, proc_cpuset_show, pid);
431 static const struct file_operations proc_cpuset_operations = {
432 .open = cpuset_open,
433 .read = seq_read,
434 .llseek = seq_lseek,
435 .release = single_release,
437 #endif
439 static int proc_oom_score(struct task_struct *task, char *buffer)
441 unsigned long totalpages = totalram_pages + total_swap_pages;
442 unsigned long points = 0;
444 read_lock(&tasklist_lock);
445 if (pid_alive(task))
446 points = oom_badness(task, NULL, NULL, totalpages) *
447 1000 / totalpages;
448 read_unlock(&tasklist_lock);
449 return sprintf(buffer, "%lu\n", points);
452 struct limit_names {
453 char *name;
454 char *unit;
457 static const struct limit_names lnames[RLIM_NLIMITS] = {
458 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
459 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
460 [RLIMIT_DATA] = {"Max data size", "bytes"},
461 [RLIMIT_STACK] = {"Max stack size", "bytes"},
462 [RLIMIT_CORE] = {"Max core file size", "bytes"},
463 [RLIMIT_RSS] = {"Max resident set", "bytes"},
464 [RLIMIT_NPROC] = {"Max processes", "processes"},
465 [RLIMIT_NOFILE] = {"Max open files", "files"},
466 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
467 [RLIMIT_AS] = {"Max address space", "bytes"},
468 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
469 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
470 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
471 [RLIMIT_NICE] = {"Max nice priority", NULL},
472 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
473 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
476 /* Display limits for a process */
477 static int proc_pid_limits(struct task_struct *task, char *buffer)
479 unsigned int i;
480 int count = 0;
481 unsigned long flags;
482 char *bufptr = buffer;
484 struct rlimit rlim[RLIM_NLIMITS];
486 if (!lock_task_sighand(task, &flags))
487 return 0;
488 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
489 unlock_task_sighand(task, &flags);
492 * print the file header
494 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
495 "Limit", "Soft Limit", "Hard Limit", "Units");
497 for (i = 0; i < RLIM_NLIMITS; i++) {
498 if (rlim[i].rlim_cur == RLIM_INFINITY)
499 count += sprintf(&bufptr[count], "%-25s %-20s ",
500 lnames[i].name, "unlimited");
501 else
502 count += sprintf(&bufptr[count], "%-25s %-20lu ",
503 lnames[i].name, rlim[i].rlim_cur);
505 if (rlim[i].rlim_max == RLIM_INFINITY)
506 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
507 else
508 count += sprintf(&bufptr[count], "%-20lu ",
509 rlim[i].rlim_max);
511 if (lnames[i].unit)
512 count += sprintf(&bufptr[count], "%-10s\n",
513 lnames[i].unit);
514 else
515 count += sprintf(&bufptr[count], "\n");
518 return count;
521 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
522 static int proc_pid_syscall(struct task_struct *task, char *buffer)
524 long nr;
525 unsigned long args[6], sp, pc;
526 int res = lock_trace(task);
527 if (res)
528 return res;
530 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
531 res = sprintf(buffer, "running\n");
532 else if (nr < 0)
533 res = sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
534 else
535 res = sprintf(buffer,
536 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
538 args[0], args[1], args[2], args[3], args[4], args[5],
539 sp, pc);
540 unlock_trace(task);
541 return res;
543 #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
545 /************************************************************************/
546 /* Here the fs part begins */
547 /************************************************************************/
549 /* permission checks */
550 static int proc_fd_access_allowed(struct inode *inode)
552 struct task_struct *task;
553 int allowed = 0;
554 /* Allow access to a task's file descriptors if it is us or we
555 * may use ptrace attach to the process and find out that
556 * information.
558 task = get_proc_task(inode);
559 if (task) {
560 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
561 put_task_struct(task);
563 return allowed;
566 int proc_setattr(struct dentry *dentry, struct iattr *attr)
568 int error;
569 struct inode *inode = dentry->d_inode;
571 if (attr->ia_valid & ATTR_MODE)
572 return -EPERM;
574 error = inode_change_ok(inode, attr);
575 if (error)
576 return error;
578 setattr_copy(inode, attr);
579 mark_inode_dirty(inode);
580 return 0;
584 * May current process learn task's sched/cmdline info (for hide_pid_min=1)
585 * or euid/egid (for hide_pid_min=2)?
587 static bool has_pid_permissions(struct pid_namespace *pid,
588 struct task_struct *task,
589 int hide_pid_min)
591 if (pid->hide_pid < hide_pid_min)
592 return true;
593 if (in_group_p(pid->pid_gid))
594 return true;
595 return ptrace_may_access(task, PTRACE_MODE_READ);
599 static int proc_pid_permission(struct inode *inode, int mask)
601 struct pid_namespace *pid = inode->i_sb->s_fs_info;
602 struct task_struct *task;
603 bool has_perms;
605 task = get_proc_task(inode);
606 if (!task)
607 return -ESRCH;
608 has_perms = has_pid_permissions(pid, task, 1);
609 put_task_struct(task);
611 if (!has_perms) {
612 if (pid->hide_pid == 2) {
614 * Let's make getdents(), stat(), and open()
615 * consistent with each other. If a process
616 * may not stat() a file, it shouldn't be seen
617 * in procfs at all.
619 return -ENOENT;
622 return -EPERM;
624 return generic_permission(inode, mask);
629 static const struct inode_operations proc_def_inode_operations = {
630 .setattr = proc_setattr,
633 #define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
635 static ssize_t proc_info_read(struct file * file, char __user * buf,
636 size_t count, loff_t *ppos)
638 struct inode * inode = file_inode(file);
639 unsigned long page;
640 ssize_t length;
641 struct task_struct *task = get_proc_task(inode);
643 length = -ESRCH;
644 if (!task)
645 goto out_no_task;
647 if (count > PROC_BLOCK_SIZE)
648 count = PROC_BLOCK_SIZE;
650 length = -ENOMEM;
651 if (!(page = __get_free_page(GFP_TEMPORARY)))
652 goto out;
654 length = PROC_I(inode)->op.proc_read(task, (char*)page);
656 if (length >= 0)
657 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
658 free_page(page);
659 out:
660 put_task_struct(task);
661 out_no_task:
662 return length;
665 static const struct file_operations proc_info_file_operations = {
666 .read = proc_info_read,
667 .llseek = generic_file_llseek,
670 static int proc_single_show(struct seq_file *m, void *v)
672 struct inode *inode = m->private;
673 struct pid_namespace *ns;
674 struct pid *pid;
675 struct task_struct *task;
676 int ret;
678 ns = inode->i_sb->s_fs_info;
679 pid = proc_pid(inode);
680 task = get_pid_task(pid, PIDTYPE_PID);
681 if (!task)
682 return -ESRCH;
684 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
686 put_task_struct(task);
687 return ret;
690 static int proc_single_open(struct inode *inode, struct file *filp)
692 return single_open(filp, proc_single_show, inode);
695 static const struct file_operations proc_single_file_operations = {
696 .open = proc_single_open,
697 .read = seq_read,
698 .llseek = seq_lseek,
699 .release = single_release,
702 static int __mem_open(struct inode *inode, struct file *file, unsigned int mode)
704 struct task_struct *task = get_proc_task(file_inode(file));
705 struct mm_struct *mm;
707 if (!task)
708 return -ESRCH;
710 mm = mm_access(task, mode);
711 put_task_struct(task);
713 if (IS_ERR(mm))
714 return PTR_ERR(mm);
716 if (mm) {
717 /* ensure this mm_struct can't be freed */
718 atomic_inc(&mm->mm_count);
719 /* but do not pin its memory */
720 mmput(mm);
723 file->private_data = mm;
725 return 0;
728 static int mem_open(struct inode *inode, struct file *file)
730 int ret = __mem_open(inode, file, PTRACE_MODE_ATTACH);
732 /* OK to pass negative loff_t, we can catch out-of-range */
733 file->f_mode |= FMODE_UNSIGNED_OFFSET;
735 return ret;
738 static ssize_t mem_rw(struct file *file, char __user *buf,
739 size_t count, loff_t *ppos, int write)
741 struct mm_struct *mm = file->private_data;
742 unsigned long addr = *ppos;
743 ssize_t copied;
744 char *page;
746 if (!mm)
747 return 0;
749 page = (char *)__get_free_page(GFP_TEMPORARY);
750 if (!page)
751 return -ENOMEM;
753 copied = 0;
754 if (!atomic_inc_not_zero(&mm->mm_users))
755 goto free;
757 while (count > 0) {
758 int this_len = min_t(int, count, PAGE_SIZE);
760 if (write && copy_from_user(page, buf, this_len)) {
761 copied = -EFAULT;
762 break;
765 this_len = access_remote_vm(mm, addr, page, this_len, write);
766 if (!this_len) {
767 if (!copied)
768 copied = -EIO;
769 break;
772 if (!write && copy_to_user(buf, page, this_len)) {
773 copied = -EFAULT;
774 break;
777 buf += this_len;
778 addr += this_len;
779 copied += this_len;
780 count -= this_len;
782 *ppos = addr;
784 mmput(mm);
785 free:
786 free_page((unsigned long) page);
787 return copied;
790 static ssize_t mem_read(struct file *file, char __user *buf,
791 size_t count, loff_t *ppos)
793 return mem_rw(file, buf, count, ppos, 0);
796 static ssize_t mem_write(struct file *file, const char __user *buf,
797 size_t count, loff_t *ppos)
799 return mem_rw(file, (char __user*)buf, count, ppos, 1);
802 loff_t mem_lseek(struct file *file, loff_t offset, int orig)
804 switch (orig) {
805 case 0:
806 file->f_pos = offset;
807 break;
808 case 1:
809 file->f_pos += offset;
810 break;
811 default:
812 return -EINVAL;
814 force_successful_syscall_return();
815 return file->f_pos;
818 static int mem_release(struct inode *inode, struct file *file)
820 struct mm_struct *mm = file->private_data;
821 if (mm)
822 mmdrop(mm);
823 return 0;
826 static const struct file_operations proc_mem_operations = {
827 .llseek = mem_lseek,
828 .read = mem_read,
829 .write = mem_write,
830 .open = mem_open,
831 .release = mem_release,
834 static int environ_open(struct inode *inode, struct file *file)
836 return __mem_open(inode, file, PTRACE_MODE_READ);
839 static ssize_t environ_read(struct file *file, char __user *buf,
840 size_t count, loff_t *ppos)
842 char *page;
843 unsigned long src = *ppos;
844 int ret = 0;
845 struct mm_struct *mm = file->private_data;
847 if (!mm)
848 return 0;
850 page = (char *)__get_free_page(GFP_TEMPORARY);
851 if (!page)
852 return -ENOMEM;
854 ret = 0;
855 if (!atomic_inc_not_zero(&mm->mm_users))
856 goto free;
857 while (count > 0) {
858 size_t this_len, max_len;
859 int retval;
861 if (src >= (mm->env_end - mm->env_start))
862 break;
864 this_len = mm->env_end - (mm->env_start + src);
866 max_len = min_t(size_t, PAGE_SIZE, count);
867 this_len = min(max_len, this_len);
869 retval = access_remote_vm(mm, (mm->env_start + src),
870 page, this_len, 0);
872 if (retval <= 0) {
873 ret = retval;
874 break;
877 if (copy_to_user(buf, page, retval)) {
878 ret = -EFAULT;
879 break;
882 ret += retval;
883 src += retval;
884 buf += retval;
885 count -= retval;
887 *ppos = src;
888 mmput(mm);
890 free:
891 free_page((unsigned long) page);
892 return ret;
895 static const struct file_operations proc_environ_operations = {
896 .open = environ_open,
897 .read = environ_read,
898 .llseek = generic_file_llseek,
899 .release = mem_release,
902 static ssize_t oom_adj_read(struct file *file, char __user *buf, size_t count,
903 loff_t *ppos)
905 struct task_struct *task = get_proc_task(file_inode(file));
906 char buffer[PROC_NUMBUF];
907 int oom_adj = OOM_ADJUST_MIN;
908 size_t len;
909 unsigned long flags;
911 if (!task)
912 return -ESRCH;
913 if (lock_task_sighand(task, &flags)) {
914 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MAX)
915 oom_adj = OOM_ADJUST_MAX;
916 else
917 oom_adj = (task->signal->oom_score_adj * -OOM_DISABLE) /
918 OOM_SCORE_ADJ_MAX;
919 unlock_task_sighand(task, &flags);
921 put_task_struct(task);
922 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_adj);
923 return simple_read_from_buffer(buf, count, ppos, buffer, len);
926 static ssize_t oom_adj_write(struct file *file, const char __user *buf,
927 size_t count, loff_t *ppos)
929 struct task_struct *task;
930 char buffer[PROC_NUMBUF];
931 int oom_adj;
932 unsigned long flags;
933 int err;
935 memset(buffer, 0, sizeof(buffer));
936 if (count > sizeof(buffer) - 1)
937 count = sizeof(buffer) - 1;
938 if (copy_from_user(buffer, buf, count)) {
939 err = -EFAULT;
940 goto out;
943 err = kstrtoint(strstrip(buffer), 0, &oom_adj);
944 if (err)
945 goto out;
946 if ((oom_adj < OOM_ADJUST_MIN || oom_adj > OOM_ADJUST_MAX) &&
947 oom_adj != OOM_DISABLE) {
948 err = -EINVAL;
949 goto out;
952 task = get_proc_task(file_inode(file));
953 if (!task) {
954 err = -ESRCH;
955 goto out;
958 task_lock(task);
959 if (!task->mm) {
960 err = -EINVAL;
961 goto err_task_lock;
964 if (!lock_task_sighand(task, &flags)) {
965 err = -ESRCH;
966 goto err_task_lock;
970 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
971 * value is always attainable.
973 if (oom_adj == OOM_ADJUST_MAX)
974 oom_adj = OOM_SCORE_ADJ_MAX;
975 else
976 oom_adj = (oom_adj * OOM_SCORE_ADJ_MAX) / -OOM_DISABLE;
978 if (oom_adj < task->signal->oom_score_adj &&
979 !capable(CAP_SYS_RESOURCE)) {
980 err = -EACCES;
981 goto err_sighand;
985 * /proc/pid/oom_adj is provided for legacy purposes, ask users to use
986 * /proc/pid/oom_score_adj instead.
988 pr_warn_once("%s (%d): /proc/%d/oom_adj is deprecated, please use /proc/%d/oom_score_adj instead.\n",
989 current->comm, task_pid_nr(current), task_pid_nr(task),
990 task_pid_nr(task));
992 task->signal->oom_score_adj = oom_adj;
993 trace_oom_score_adj_update(task);
994 err_sighand:
995 unlock_task_sighand(task, &flags);
996 err_task_lock:
997 task_unlock(task);
998 put_task_struct(task);
999 out:
1000 return err < 0 ? err : count;
1003 static const struct file_operations proc_oom_adj_operations = {
1004 .read = oom_adj_read,
1005 .write = oom_adj_write,
1006 .llseek = generic_file_llseek,
1009 static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
1010 size_t count, loff_t *ppos)
1012 struct task_struct *task = get_proc_task(file_inode(file));
1013 char buffer[PROC_NUMBUF];
1014 short oom_score_adj = OOM_SCORE_ADJ_MIN;
1015 unsigned long flags;
1016 size_t len;
1018 if (!task)
1019 return -ESRCH;
1020 if (lock_task_sighand(task, &flags)) {
1021 oom_score_adj = task->signal->oom_score_adj;
1022 unlock_task_sighand(task, &flags);
1024 put_task_struct(task);
1025 len = snprintf(buffer, sizeof(buffer), "%hd\n", oom_score_adj);
1026 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1029 static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1030 size_t count, loff_t *ppos)
1032 struct task_struct *task;
1033 char buffer[PROC_NUMBUF];
1034 unsigned long flags;
1035 int oom_score_adj;
1036 int err;
1038 memset(buffer, 0, sizeof(buffer));
1039 if (count > sizeof(buffer) - 1)
1040 count = sizeof(buffer) - 1;
1041 if (copy_from_user(buffer, buf, count)) {
1042 err = -EFAULT;
1043 goto out;
1046 err = kstrtoint(strstrip(buffer), 0, &oom_score_adj);
1047 if (err)
1048 goto out;
1049 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
1050 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1051 err = -EINVAL;
1052 goto out;
1055 task = get_proc_task(file_inode(file));
1056 if (!task) {
1057 err = -ESRCH;
1058 goto out;
1061 task_lock(task);
1062 if (!task->mm) {
1063 err = -EINVAL;
1064 goto err_task_lock;
1067 if (!lock_task_sighand(task, &flags)) {
1068 err = -ESRCH;
1069 goto err_task_lock;
1072 if ((short)oom_score_adj < task->signal->oom_score_adj_min &&
1073 !capable(CAP_SYS_RESOURCE)) {
1074 err = -EACCES;
1075 goto err_sighand;
1078 task->signal->oom_score_adj = (short)oom_score_adj;
1079 if (has_capability_noaudit(current, CAP_SYS_RESOURCE))
1080 task->signal->oom_score_adj_min = (short)oom_score_adj;
1081 trace_oom_score_adj_update(task);
1083 err_sighand:
1084 unlock_task_sighand(task, &flags);
1085 err_task_lock:
1086 task_unlock(task);
1087 put_task_struct(task);
1088 out:
1089 return err < 0 ? err : count;
1092 static const struct file_operations proc_oom_score_adj_operations = {
1093 .read = oom_score_adj_read,
1094 .write = oom_score_adj_write,
1095 .llseek = default_llseek,
1098 #ifdef CONFIG_AUDITSYSCALL
1099 #define TMPBUFLEN 21
1100 static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1101 size_t count, loff_t *ppos)
1103 struct inode * inode = file_inode(file);
1104 struct task_struct *task = get_proc_task(inode);
1105 ssize_t length;
1106 char tmpbuf[TMPBUFLEN];
1108 if (!task)
1109 return -ESRCH;
1110 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1111 from_kuid(file->f_cred->user_ns,
1112 audit_get_loginuid(task)));
1113 put_task_struct(task);
1114 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1117 static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1118 size_t count, loff_t *ppos)
1120 struct inode * inode = file_inode(file);
1121 char *page, *tmp;
1122 ssize_t length;
1123 uid_t loginuid;
1124 kuid_t kloginuid;
1126 rcu_read_lock();
1127 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1128 rcu_read_unlock();
1129 return -EPERM;
1131 rcu_read_unlock();
1133 if (count >= PAGE_SIZE)
1134 count = PAGE_SIZE - 1;
1136 if (*ppos != 0) {
1137 /* No partial writes. */
1138 return -EINVAL;
1140 page = (char*)__get_free_page(GFP_TEMPORARY);
1141 if (!page)
1142 return -ENOMEM;
1143 length = -EFAULT;
1144 if (copy_from_user(page, buf, count))
1145 goto out_free_page;
1147 page[count] = '\0';
1148 loginuid = simple_strtoul(page, &tmp, 10);
1149 if (tmp == page) {
1150 length = -EINVAL;
1151 goto out_free_page;
1154 kloginuid = make_kuid(file->f_cred->user_ns, loginuid);
1155 if (!uid_valid(kloginuid)) {
1156 length = -EINVAL;
1157 goto out_free_page;
1160 length = audit_set_loginuid(kloginuid);
1161 if (likely(length == 0))
1162 length = count;
1164 out_free_page:
1165 free_page((unsigned long) page);
1166 return length;
1169 static const struct file_operations proc_loginuid_operations = {
1170 .read = proc_loginuid_read,
1171 .write = proc_loginuid_write,
1172 .llseek = generic_file_llseek,
1175 static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1176 size_t count, loff_t *ppos)
1178 struct inode * inode = file_inode(file);
1179 struct task_struct *task = get_proc_task(inode);
1180 ssize_t length;
1181 char tmpbuf[TMPBUFLEN];
1183 if (!task)
1184 return -ESRCH;
1185 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1186 audit_get_sessionid(task));
1187 put_task_struct(task);
1188 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1191 static const struct file_operations proc_sessionid_operations = {
1192 .read = proc_sessionid_read,
1193 .llseek = generic_file_llseek,
1195 #endif
1197 #ifdef CONFIG_FAULT_INJECTION
1198 static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1199 size_t count, loff_t *ppos)
1201 struct task_struct *task = get_proc_task(file_inode(file));
1202 char buffer[PROC_NUMBUF];
1203 size_t len;
1204 int make_it_fail;
1206 if (!task)
1207 return -ESRCH;
1208 make_it_fail = task->make_it_fail;
1209 put_task_struct(task);
1211 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
1213 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1216 static ssize_t proc_fault_inject_write(struct file * file,
1217 const char __user * buf, size_t count, loff_t *ppos)
1219 struct task_struct *task;
1220 char buffer[PROC_NUMBUF], *end;
1221 int make_it_fail;
1223 if (!capable(CAP_SYS_RESOURCE))
1224 return -EPERM;
1225 memset(buffer, 0, sizeof(buffer));
1226 if (count > sizeof(buffer) - 1)
1227 count = sizeof(buffer) - 1;
1228 if (copy_from_user(buffer, buf, count))
1229 return -EFAULT;
1230 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1231 if (*end)
1232 return -EINVAL;
1233 task = get_proc_task(file_inode(file));
1234 if (!task)
1235 return -ESRCH;
1236 task->make_it_fail = make_it_fail;
1237 put_task_struct(task);
1239 return count;
1242 static const struct file_operations proc_fault_inject_operations = {
1243 .read = proc_fault_inject_read,
1244 .write = proc_fault_inject_write,
1245 .llseek = generic_file_llseek,
1247 #endif
1250 #ifdef CONFIG_SCHED_DEBUG
1252 * Print out various scheduling related per-task fields:
1254 static int sched_show(struct seq_file *m, void *v)
1256 struct inode *inode = m->private;
1257 struct task_struct *p;
1259 p = get_proc_task(inode);
1260 if (!p)
1261 return -ESRCH;
1262 proc_sched_show_task(p, m);
1264 put_task_struct(p);
1266 return 0;
1269 static ssize_t
1270 sched_write(struct file *file, const char __user *buf,
1271 size_t count, loff_t *offset)
1273 struct inode *inode = file_inode(file);
1274 struct task_struct *p;
1276 p = get_proc_task(inode);
1277 if (!p)
1278 return -ESRCH;
1279 proc_sched_set_task(p);
1281 put_task_struct(p);
1283 return count;
1286 static int sched_open(struct inode *inode, struct file *filp)
1288 return single_open(filp, sched_show, inode);
1291 static const struct file_operations proc_pid_sched_operations = {
1292 .open = sched_open,
1293 .read = seq_read,
1294 .write = sched_write,
1295 .llseek = seq_lseek,
1296 .release = single_release,
1299 #endif
1301 #ifdef CONFIG_SCHED_AUTOGROUP
1303 * Print out autogroup related information:
1305 static int sched_autogroup_show(struct seq_file *m, void *v)
1307 struct inode *inode = m->private;
1308 struct task_struct *p;
1310 p = get_proc_task(inode);
1311 if (!p)
1312 return -ESRCH;
1313 proc_sched_autogroup_show_task(p, m);
1315 put_task_struct(p);
1317 return 0;
1320 static ssize_t
1321 sched_autogroup_write(struct file *file, const char __user *buf,
1322 size_t count, loff_t *offset)
1324 struct inode *inode = file_inode(file);
1325 struct task_struct *p;
1326 char buffer[PROC_NUMBUF];
1327 int nice;
1328 int err;
1330 memset(buffer, 0, sizeof(buffer));
1331 if (count > sizeof(buffer) - 1)
1332 count = sizeof(buffer) - 1;
1333 if (copy_from_user(buffer, buf, count))
1334 return -EFAULT;
1336 err = kstrtoint(strstrip(buffer), 0, &nice);
1337 if (err < 0)
1338 return err;
1340 p = get_proc_task(inode);
1341 if (!p)
1342 return -ESRCH;
1344 err = proc_sched_autogroup_set_nice(p, nice);
1345 if (err)
1346 count = err;
1348 put_task_struct(p);
1350 return count;
1353 static int sched_autogroup_open(struct inode *inode, struct file *filp)
1355 int ret;
1357 ret = single_open(filp, sched_autogroup_show, NULL);
1358 if (!ret) {
1359 struct seq_file *m = filp->private_data;
1361 m->private = inode;
1363 return ret;
1366 static const struct file_operations proc_pid_sched_autogroup_operations = {
1367 .open = sched_autogroup_open,
1368 .read = seq_read,
1369 .write = sched_autogroup_write,
1370 .llseek = seq_lseek,
1371 .release = single_release,
1374 #endif /* CONFIG_SCHED_AUTOGROUP */
1376 static ssize_t comm_write(struct file *file, const char __user *buf,
1377 size_t count, loff_t *offset)
1379 struct inode *inode = file_inode(file);
1380 struct task_struct *p;
1381 char buffer[TASK_COMM_LEN];
1382 const size_t maxlen = sizeof(buffer) - 1;
1384 memset(buffer, 0, sizeof(buffer));
1385 if (copy_from_user(buffer, buf, count > maxlen ? maxlen : count))
1386 return -EFAULT;
1388 p = get_proc_task(inode);
1389 if (!p)
1390 return -ESRCH;
1392 if (same_thread_group(current, p))
1393 set_task_comm(p, buffer);
1394 else
1395 count = -EINVAL;
1397 put_task_struct(p);
1399 return count;
1402 static int comm_show(struct seq_file *m, void *v)
1404 struct inode *inode = m->private;
1405 struct task_struct *p;
1407 p = get_proc_task(inode);
1408 if (!p)
1409 return -ESRCH;
1411 task_lock(p);
1412 seq_printf(m, "%s\n", p->comm);
1413 task_unlock(p);
1415 put_task_struct(p);
1417 return 0;
1420 static int comm_open(struct inode *inode, struct file *filp)
1422 return single_open(filp, comm_show, inode);
1425 static const struct file_operations proc_pid_set_comm_operations = {
1426 .open = comm_open,
1427 .read = seq_read,
1428 .write = comm_write,
1429 .llseek = seq_lseek,
1430 .release = single_release,
1433 static int proc_exe_link(struct dentry *dentry, struct path *exe_path)
1435 struct task_struct *task;
1436 struct mm_struct *mm;
1437 struct file *exe_file;
1439 task = get_proc_task(dentry->d_inode);
1440 if (!task)
1441 return -ENOENT;
1442 mm = get_task_mm(task);
1443 put_task_struct(task);
1444 if (!mm)
1445 return -ENOENT;
1446 exe_file = get_mm_exe_file(mm);
1447 mmput(mm);
1448 if (exe_file) {
1449 *exe_path = exe_file->f_path;
1450 path_get(&exe_file->f_path);
1451 fput(exe_file);
1452 return 0;
1453 } else
1454 return -ENOENT;
1457 static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
1459 struct inode *inode = dentry->d_inode;
1460 struct path path;
1461 int error = -EACCES;
1463 /* Are we allowed to snoop on the tasks file descriptors? */
1464 if (!proc_fd_access_allowed(inode))
1465 goto out;
1467 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
1468 if (error)
1469 goto out;
1471 nd_jump_link(nd, &path);
1472 return NULL;
1473 out:
1474 return ERR_PTR(error);
1477 static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
1479 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
1480 char *pathname;
1481 int len;
1483 if (!tmp)
1484 return -ENOMEM;
1486 pathname = d_path(path, tmp, PAGE_SIZE);
1487 len = PTR_ERR(pathname);
1488 if (IS_ERR(pathname))
1489 goto out;
1490 len = tmp + PAGE_SIZE - 1 - pathname;
1492 if (len > buflen)
1493 len = buflen;
1494 if (copy_to_user(buffer, pathname, len))
1495 len = -EFAULT;
1496 out:
1497 free_page((unsigned long)tmp);
1498 return len;
1501 static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1503 int error = -EACCES;
1504 struct inode *inode = dentry->d_inode;
1505 struct path path;
1507 /* Are we allowed to snoop on the tasks file descriptors? */
1508 if (!proc_fd_access_allowed(inode))
1509 goto out;
1511 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
1512 if (error)
1513 goto out;
1515 error = do_proc_readlink(&path, buffer, buflen);
1516 path_put(&path);
1517 out:
1518 return error;
1521 const struct inode_operations proc_pid_link_inode_operations = {
1522 .readlink = proc_pid_readlink,
1523 .follow_link = proc_pid_follow_link,
1524 .setattr = proc_setattr,
1528 /* building an inode */
1530 struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
1532 struct inode * inode;
1533 struct proc_inode *ei;
1534 const struct cred *cred;
1536 /* We need a new inode */
1538 inode = new_inode(sb);
1539 if (!inode)
1540 goto out;
1542 /* Common stuff */
1543 ei = PROC_I(inode);
1544 inode->i_ino = get_next_ino();
1545 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
1546 inode->i_op = &proc_def_inode_operations;
1549 * grab the reference to task.
1551 ei->pid = get_task_pid(task, PIDTYPE_PID);
1552 if (!ei->pid)
1553 goto out_unlock;
1555 if (task_dumpable(task)) {
1556 rcu_read_lock();
1557 cred = __task_cred(task);
1558 inode->i_uid = cred->euid;
1559 inode->i_gid = cred->egid;
1560 rcu_read_unlock();
1562 security_task_to_inode(task, inode);
1564 out:
1565 return inode;
1567 out_unlock:
1568 iput(inode);
1569 return NULL;
1572 int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1574 struct inode *inode = dentry->d_inode;
1575 struct task_struct *task;
1576 const struct cred *cred;
1577 struct pid_namespace *pid = dentry->d_sb->s_fs_info;
1579 generic_fillattr(inode, stat);
1581 rcu_read_lock();
1582 stat->uid = GLOBAL_ROOT_UID;
1583 stat->gid = GLOBAL_ROOT_GID;
1584 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1585 if (task) {
1586 if (!has_pid_permissions(pid, task, 2)) {
1587 rcu_read_unlock();
1589 * This doesn't prevent learning whether PID exists,
1590 * it only makes getattr() consistent with readdir().
1592 return -ENOENT;
1594 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1595 task_dumpable(task)) {
1596 cred = __task_cred(task);
1597 stat->uid = cred->euid;
1598 stat->gid = cred->egid;
1601 rcu_read_unlock();
1602 return 0;
1605 /* dentry stuff */
1608 * Exceptional case: normally we are not allowed to unhash a busy
1609 * directory. In this case, however, we can do it - no aliasing problems
1610 * due to the way we treat inodes.
1612 * Rewrite the inode's ownerships here because the owning task may have
1613 * performed a setuid(), etc.
1615 * Before the /proc/pid/status file was created the only way to read
1616 * the effective uid of a /process was to stat /proc/pid. Reading
1617 * /proc/pid/status is slow enough that procps and other packages
1618 * kept stating /proc/pid. To keep the rules in /proc simple I have
1619 * made this apply to all per process world readable and executable
1620 * directories.
1622 int pid_revalidate(struct dentry *dentry, unsigned int flags)
1624 struct inode *inode;
1625 struct task_struct *task;
1626 const struct cred *cred;
1628 if (flags & LOOKUP_RCU)
1629 return -ECHILD;
1631 inode = dentry->d_inode;
1632 task = get_proc_task(inode);
1634 if (task) {
1635 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1636 task_dumpable(task)) {
1637 rcu_read_lock();
1638 cred = __task_cred(task);
1639 inode->i_uid = cred->euid;
1640 inode->i_gid = cred->egid;
1641 rcu_read_unlock();
1642 } else {
1643 inode->i_uid = GLOBAL_ROOT_UID;
1644 inode->i_gid = GLOBAL_ROOT_GID;
1646 inode->i_mode &= ~(S_ISUID | S_ISGID);
1647 security_task_to_inode(task, inode);
1648 put_task_struct(task);
1649 return 1;
1651 d_drop(dentry);
1652 return 0;
1655 int pid_delete_dentry(const struct dentry *dentry)
1657 /* Is the task we represent dead?
1658 * If so, then don't put the dentry on the lru list,
1659 * kill it immediately.
1661 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1664 const struct dentry_operations pid_dentry_operations =
1666 .d_revalidate = pid_revalidate,
1667 .d_delete = pid_delete_dentry,
1670 /* Lookups */
1673 * Fill a directory entry.
1675 * If possible create the dcache entry and derive our inode number and
1676 * file type from dcache entry.
1678 * Since all of the proc inode numbers are dynamically generated, the inode
1679 * numbers do not exist until the inode is cache. This means creating the
1680 * the dcache entry in readdir is necessary to keep the inode numbers
1681 * reported by readdir in sync with the inode numbers reported
1682 * by stat.
1684 bool proc_fill_cache(struct file *file, struct dir_context *ctx,
1685 const char *name, int len,
1686 instantiate_t instantiate, struct task_struct *task, const void *ptr)
1688 struct dentry *child, *dir = file->f_path.dentry;
1689 struct qstr qname = QSTR_INIT(name, len);
1690 struct inode *inode;
1691 unsigned type;
1692 ino_t ino;
1694 child = d_hash_and_lookup(dir, &qname);
1695 if (!child) {
1696 child = d_alloc(dir, &qname);
1697 if (!child)
1698 goto end_instantiate;
1699 if (instantiate(dir->d_inode, child, task, ptr) < 0) {
1700 dput(child);
1701 goto end_instantiate;
1704 inode = child->d_inode;
1705 ino = inode->i_ino;
1706 type = inode->i_mode >> 12;
1707 dput(child);
1708 return dir_emit(ctx, name, len, ino, type);
1710 end_instantiate:
1711 return dir_emit(ctx, name, len, 1, DT_UNKNOWN);
1714 #ifdef CONFIG_CHECKPOINT_RESTORE
1717 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1718 * which represent vma start and end addresses.
1720 static int dname_to_vma_addr(struct dentry *dentry,
1721 unsigned long *start, unsigned long *end)
1723 if (sscanf(dentry->d_name.name, "%lx-%lx", start, end) != 2)
1724 return -EINVAL;
1726 return 0;
1729 static int map_files_d_revalidate(struct dentry *dentry, unsigned int flags)
1731 unsigned long vm_start, vm_end;
1732 bool exact_vma_exists = false;
1733 struct mm_struct *mm = NULL;
1734 struct task_struct *task;
1735 const struct cred *cred;
1736 struct inode *inode;
1737 int status = 0;
1739 if (flags & LOOKUP_RCU)
1740 return -ECHILD;
1742 if (!capable(CAP_SYS_ADMIN)) {
1743 status = -EPERM;
1744 goto out_notask;
1747 inode = dentry->d_inode;
1748 task = get_proc_task(inode);
1749 if (!task)
1750 goto out_notask;
1752 mm = mm_access(task, PTRACE_MODE_READ);
1753 if (IS_ERR_OR_NULL(mm))
1754 goto out;
1756 if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) {
1757 down_read(&mm->mmap_sem);
1758 exact_vma_exists = !!find_exact_vma(mm, vm_start, vm_end);
1759 up_read(&mm->mmap_sem);
1762 mmput(mm);
1764 if (exact_vma_exists) {
1765 if (task_dumpable(task)) {
1766 rcu_read_lock();
1767 cred = __task_cred(task);
1768 inode->i_uid = cred->euid;
1769 inode->i_gid = cred->egid;
1770 rcu_read_unlock();
1771 } else {
1772 inode->i_uid = GLOBAL_ROOT_UID;
1773 inode->i_gid = GLOBAL_ROOT_GID;
1775 security_task_to_inode(task, inode);
1776 status = 1;
1779 out:
1780 put_task_struct(task);
1782 out_notask:
1783 if (status <= 0)
1784 d_drop(dentry);
1786 return status;
1789 static const struct dentry_operations tid_map_files_dentry_operations = {
1790 .d_revalidate = map_files_d_revalidate,
1791 .d_delete = pid_delete_dentry,
1794 static int proc_map_files_get_link(struct dentry *dentry, struct path *path)
1796 unsigned long vm_start, vm_end;
1797 struct vm_area_struct *vma;
1798 struct task_struct *task;
1799 struct mm_struct *mm;
1800 int rc;
1802 rc = -ENOENT;
1803 task = get_proc_task(dentry->d_inode);
1804 if (!task)
1805 goto out;
1807 mm = get_task_mm(task);
1808 put_task_struct(task);
1809 if (!mm)
1810 goto out;
1812 rc = dname_to_vma_addr(dentry, &vm_start, &vm_end);
1813 if (rc)
1814 goto out_mmput;
1816 rc = -ENOENT;
1817 down_read(&mm->mmap_sem);
1818 vma = find_exact_vma(mm, vm_start, vm_end);
1819 if (vma && vma->vm_file) {
1820 *path = vma->vm_file->f_path;
1821 path_get(path);
1822 rc = 0;
1824 up_read(&mm->mmap_sem);
1826 out_mmput:
1827 mmput(mm);
1828 out:
1829 return rc;
1832 struct map_files_info {
1833 fmode_t mode;
1834 unsigned long len;
1835 unsigned char name[4*sizeof(long)+2]; /* max: %lx-%lx\0 */
1838 static int
1839 proc_map_files_instantiate(struct inode *dir, struct dentry *dentry,
1840 struct task_struct *task, const void *ptr)
1842 fmode_t mode = (fmode_t)(unsigned long)ptr;
1843 struct proc_inode *ei;
1844 struct inode *inode;
1846 inode = proc_pid_make_inode(dir->i_sb, task);
1847 if (!inode)
1848 return -ENOENT;
1850 ei = PROC_I(inode);
1851 ei->op.proc_get_link = proc_map_files_get_link;
1853 inode->i_op = &proc_pid_link_inode_operations;
1854 inode->i_size = 64;
1855 inode->i_mode = S_IFLNK;
1857 if (mode & FMODE_READ)
1858 inode->i_mode |= S_IRUSR;
1859 if (mode & FMODE_WRITE)
1860 inode->i_mode |= S_IWUSR;
1862 d_set_d_op(dentry, &tid_map_files_dentry_operations);
1863 d_add(dentry, inode);
1865 return 0;
1868 static struct dentry *proc_map_files_lookup(struct inode *dir,
1869 struct dentry *dentry, unsigned int flags)
1871 unsigned long vm_start, vm_end;
1872 struct vm_area_struct *vma;
1873 struct task_struct *task;
1874 int result;
1875 struct mm_struct *mm;
1877 result = -EPERM;
1878 if (!capable(CAP_SYS_ADMIN))
1879 goto out;
1881 result = -ENOENT;
1882 task = get_proc_task(dir);
1883 if (!task)
1884 goto out;
1886 result = -EACCES;
1887 if (!ptrace_may_access(task, PTRACE_MODE_READ))
1888 goto out_put_task;
1890 result = -ENOENT;
1891 if (dname_to_vma_addr(dentry, &vm_start, &vm_end))
1892 goto out_put_task;
1894 mm = get_task_mm(task);
1895 if (!mm)
1896 goto out_put_task;
1898 down_read(&mm->mmap_sem);
1899 vma = find_exact_vma(mm, vm_start, vm_end);
1900 if (!vma)
1901 goto out_no_vma;
1903 if (vma->vm_file)
1904 result = proc_map_files_instantiate(dir, dentry, task,
1905 (void *)(unsigned long)vma->vm_file->f_mode);
1907 out_no_vma:
1908 up_read(&mm->mmap_sem);
1909 mmput(mm);
1910 out_put_task:
1911 put_task_struct(task);
1912 out:
1913 return ERR_PTR(result);
1916 static const struct inode_operations proc_map_files_inode_operations = {
1917 .lookup = proc_map_files_lookup,
1918 .permission = proc_fd_permission,
1919 .setattr = proc_setattr,
1922 static int
1923 proc_map_files_readdir(struct file *file, struct dir_context *ctx)
1925 struct vm_area_struct *vma;
1926 struct task_struct *task;
1927 struct mm_struct *mm;
1928 unsigned long nr_files, pos, i;
1929 struct flex_array *fa = NULL;
1930 struct map_files_info info;
1931 struct map_files_info *p;
1932 int ret;
1934 ret = -EPERM;
1935 if (!capable(CAP_SYS_ADMIN))
1936 goto out;
1938 ret = -ENOENT;
1939 task = get_proc_task(file_inode(file));
1940 if (!task)
1941 goto out;
1943 ret = -EACCES;
1944 if (!ptrace_may_access(task, PTRACE_MODE_READ))
1945 goto out_put_task;
1947 ret = 0;
1948 if (!dir_emit_dots(file, ctx))
1949 goto out_put_task;
1951 mm = get_task_mm(task);
1952 if (!mm)
1953 goto out_put_task;
1954 down_read(&mm->mmap_sem);
1956 nr_files = 0;
1959 * We need two passes here:
1961 * 1) Collect vmas of mapped files with mmap_sem taken
1962 * 2) Release mmap_sem and instantiate entries
1964 * otherwise we get lockdep complained, since filldir()
1965 * routine might require mmap_sem taken in might_fault().
1968 for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) {
1969 if (vma->vm_file && ++pos > ctx->pos)
1970 nr_files++;
1973 if (nr_files) {
1974 fa = flex_array_alloc(sizeof(info), nr_files,
1975 GFP_KERNEL);
1976 if (!fa || flex_array_prealloc(fa, 0, nr_files,
1977 GFP_KERNEL)) {
1978 ret = -ENOMEM;
1979 if (fa)
1980 flex_array_free(fa);
1981 up_read(&mm->mmap_sem);
1982 mmput(mm);
1983 goto out_put_task;
1985 for (i = 0, vma = mm->mmap, pos = 2; vma;
1986 vma = vma->vm_next) {
1987 if (!vma->vm_file)
1988 continue;
1989 if (++pos <= ctx->pos)
1990 continue;
1992 info.mode = vma->vm_file->f_mode;
1993 info.len = snprintf(info.name,
1994 sizeof(info.name), "%lx-%lx",
1995 vma->vm_start, vma->vm_end);
1996 if (flex_array_put(fa, i++, &info, GFP_KERNEL))
1997 BUG();
2000 up_read(&mm->mmap_sem);
2002 for (i = 0; i < nr_files; i++) {
2003 p = flex_array_get(fa, i);
2004 if (!proc_fill_cache(file, ctx,
2005 p->name, p->len,
2006 proc_map_files_instantiate,
2007 task,
2008 (void *)(unsigned long)p->mode))
2009 break;
2010 ctx->pos++;
2012 if (fa)
2013 flex_array_free(fa);
2014 mmput(mm);
2016 out_put_task:
2017 put_task_struct(task);
2018 out:
2019 return ret;
2022 static const struct file_operations proc_map_files_operations = {
2023 .read = generic_read_dir,
2024 .iterate = proc_map_files_readdir,
2025 .llseek = default_llseek,
2028 struct timers_private {
2029 struct pid *pid;
2030 struct task_struct *task;
2031 struct sighand_struct *sighand;
2032 struct pid_namespace *ns;
2033 unsigned long flags;
2036 static void *timers_start(struct seq_file *m, loff_t *pos)
2038 struct timers_private *tp = m->private;
2040 tp->task = get_pid_task(tp->pid, PIDTYPE_PID);
2041 if (!tp->task)
2042 return ERR_PTR(-ESRCH);
2044 tp->sighand = lock_task_sighand(tp->task, &tp->flags);
2045 if (!tp->sighand)
2046 return ERR_PTR(-ESRCH);
2048 return seq_list_start(&tp->task->signal->posix_timers, *pos);
2051 static void *timers_next(struct seq_file *m, void *v, loff_t *pos)
2053 struct timers_private *tp = m->private;
2054 return seq_list_next(v, &tp->task->signal->posix_timers, pos);
2057 static void timers_stop(struct seq_file *m, void *v)
2059 struct timers_private *tp = m->private;
2061 if (tp->sighand) {
2062 unlock_task_sighand(tp->task, &tp->flags);
2063 tp->sighand = NULL;
2066 if (tp->task) {
2067 put_task_struct(tp->task);
2068 tp->task = NULL;
2072 static int show_timer(struct seq_file *m, void *v)
2074 struct k_itimer *timer;
2075 struct timers_private *tp = m->private;
2076 int notify;
2077 static char *nstr[] = {
2078 [SIGEV_SIGNAL] = "signal",
2079 [SIGEV_NONE] = "none",
2080 [SIGEV_THREAD] = "thread",
2083 timer = list_entry((struct list_head *)v, struct k_itimer, list);
2084 notify = timer->it_sigev_notify;
2086 seq_printf(m, "ID: %d\n", timer->it_id);
2087 seq_printf(m, "signal: %d/%p\n", timer->sigq->info.si_signo,
2088 timer->sigq->info.si_value.sival_ptr);
2089 seq_printf(m, "notify: %s/%s.%d\n",
2090 nstr[notify & ~SIGEV_THREAD_ID],
2091 (notify & SIGEV_THREAD_ID) ? "tid" : "pid",
2092 pid_nr_ns(timer->it_pid, tp->ns));
2093 seq_printf(m, "ClockID: %d\n", timer->it_clock);
2095 return 0;
2098 static const struct seq_operations proc_timers_seq_ops = {
2099 .start = timers_start,
2100 .next = timers_next,
2101 .stop = timers_stop,
2102 .show = show_timer,
2105 static int proc_timers_open(struct inode *inode, struct file *file)
2107 struct timers_private *tp;
2109 tp = __seq_open_private(file, &proc_timers_seq_ops,
2110 sizeof(struct timers_private));
2111 if (!tp)
2112 return -ENOMEM;
2114 tp->pid = proc_pid(inode);
2115 tp->ns = inode->i_sb->s_fs_info;
2116 return 0;
2119 static const struct file_operations proc_timers_operations = {
2120 .open = proc_timers_open,
2121 .read = seq_read,
2122 .llseek = seq_lseek,
2123 .release = seq_release_private,
2125 #endif /* CONFIG_CHECKPOINT_RESTORE */
2127 static int proc_pident_instantiate(struct inode *dir,
2128 struct dentry *dentry, struct task_struct *task, const void *ptr)
2130 const struct pid_entry *p = ptr;
2131 struct inode *inode;
2132 struct proc_inode *ei;
2134 inode = proc_pid_make_inode(dir->i_sb, task);
2135 if (!inode)
2136 goto out;
2138 ei = PROC_I(inode);
2139 inode->i_mode = p->mode;
2140 if (S_ISDIR(inode->i_mode))
2141 set_nlink(inode, 2); /* Use getattr to fix if necessary */
2142 if (p->iop)
2143 inode->i_op = p->iop;
2144 if (p->fop)
2145 inode->i_fop = p->fop;
2146 ei->op = p->op;
2147 d_set_d_op(dentry, &pid_dentry_operations);
2148 d_add(dentry, inode);
2149 /* Close the race of the process dying before we return the dentry */
2150 if (pid_revalidate(dentry, 0))
2151 return 0;
2152 out:
2153 return -ENOENT;
2156 static struct dentry *proc_pident_lookup(struct inode *dir,
2157 struct dentry *dentry,
2158 const struct pid_entry *ents,
2159 unsigned int nents)
2161 int error;
2162 struct task_struct *task = get_proc_task(dir);
2163 const struct pid_entry *p, *last;
2165 error = -ENOENT;
2167 if (!task)
2168 goto out_no_task;
2171 * Yes, it does not scale. And it should not. Don't add
2172 * new entries into /proc/<tgid>/ without very good reasons.
2174 last = &ents[nents - 1];
2175 for (p = ents; p <= last; p++) {
2176 if (p->len != dentry->d_name.len)
2177 continue;
2178 if (!memcmp(dentry->d_name.name, p->name, p->len))
2179 break;
2181 if (p > last)
2182 goto out;
2184 error = proc_pident_instantiate(dir, dentry, task, p);
2185 out:
2186 put_task_struct(task);
2187 out_no_task:
2188 return ERR_PTR(error);
2191 static int proc_pident_readdir(struct file *file, struct dir_context *ctx,
2192 const struct pid_entry *ents, unsigned int nents)
2194 struct task_struct *task = get_proc_task(file_inode(file));
2195 const struct pid_entry *p;
2197 if (!task)
2198 return -ENOENT;
2200 if (!dir_emit_dots(file, ctx))
2201 goto out;
2203 if (ctx->pos >= nents + 2)
2204 goto out;
2206 for (p = ents + (ctx->pos - 2); p <= ents + nents - 1; p++) {
2207 if (!proc_fill_cache(file, ctx, p->name, p->len,
2208 proc_pident_instantiate, task, p))
2209 break;
2210 ctx->pos++;
2212 out:
2213 put_task_struct(task);
2214 return 0;
2217 #ifdef CONFIG_SECURITY
2218 static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2219 size_t count, loff_t *ppos)
2221 struct inode * inode = file_inode(file);
2222 char *p = NULL;
2223 ssize_t length;
2224 struct task_struct *task = get_proc_task(inode);
2226 if (!task)
2227 return -ESRCH;
2229 length = security_getprocattr(task,
2230 (char*)file->f_path.dentry->d_name.name,
2231 &p);
2232 put_task_struct(task);
2233 if (length > 0)
2234 length = simple_read_from_buffer(buf, count, ppos, p, length);
2235 kfree(p);
2236 return length;
2239 static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2240 size_t count, loff_t *ppos)
2242 struct inode * inode = file_inode(file);
2243 char *page;
2244 ssize_t length;
2245 struct task_struct *task = get_proc_task(inode);
2247 length = -ESRCH;
2248 if (!task)
2249 goto out_no_task;
2250 if (count > PAGE_SIZE)
2251 count = PAGE_SIZE;
2253 /* No partial writes. */
2254 length = -EINVAL;
2255 if (*ppos != 0)
2256 goto out;
2258 length = -ENOMEM;
2259 page = (char*)__get_free_page(GFP_TEMPORARY);
2260 if (!page)
2261 goto out;
2263 length = -EFAULT;
2264 if (copy_from_user(page, buf, count))
2265 goto out_free;
2267 /* Guard against adverse ptrace interaction */
2268 length = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
2269 if (length < 0)
2270 goto out_free;
2272 length = security_setprocattr(task,
2273 (char*)file->f_path.dentry->d_name.name,
2274 (void*)page, count);
2275 mutex_unlock(&task->signal->cred_guard_mutex);
2276 out_free:
2277 free_page((unsigned long) page);
2278 out:
2279 put_task_struct(task);
2280 out_no_task:
2281 return length;
2284 static const struct file_operations proc_pid_attr_operations = {
2285 .read = proc_pid_attr_read,
2286 .write = proc_pid_attr_write,
2287 .llseek = generic_file_llseek,
2290 static const struct pid_entry attr_dir_stuff[] = {
2291 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2292 REG("prev", S_IRUGO, proc_pid_attr_operations),
2293 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2294 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2295 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2296 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2299 static int proc_attr_dir_readdir(struct file *file, struct dir_context *ctx)
2301 return proc_pident_readdir(file, ctx,
2302 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
2305 static const struct file_operations proc_attr_dir_operations = {
2306 .read = generic_read_dir,
2307 .iterate = proc_attr_dir_readdir,
2308 .llseek = default_llseek,
2311 static struct dentry *proc_attr_dir_lookup(struct inode *dir,
2312 struct dentry *dentry, unsigned int flags)
2314 return proc_pident_lookup(dir, dentry,
2315 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
2318 static const struct inode_operations proc_attr_dir_inode_operations = {
2319 .lookup = proc_attr_dir_lookup,
2320 .getattr = pid_getattr,
2321 .setattr = proc_setattr,
2324 #endif
2326 #ifdef CONFIG_ELF_CORE
2327 static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2328 size_t count, loff_t *ppos)
2330 struct task_struct *task = get_proc_task(file_inode(file));
2331 struct mm_struct *mm;
2332 char buffer[PROC_NUMBUF];
2333 size_t len;
2334 int ret;
2336 if (!task)
2337 return -ESRCH;
2339 ret = 0;
2340 mm = get_task_mm(task);
2341 if (mm) {
2342 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2343 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2344 MMF_DUMP_FILTER_SHIFT));
2345 mmput(mm);
2346 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2349 put_task_struct(task);
2351 return ret;
2354 static ssize_t proc_coredump_filter_write(struct file *file,
2355 const char __user *buf,
2356 size_t count,
2357 loff_t *ppos)
2359 struct task_struct *task;
2360 struct mm_struct *mm;
2361 char buffer[PROC_NUMBUF], *end;
2362 unsigned int val;
2363 int ret;
2364 int i;
2365 unsigned long mask;
2367 ret = -EFAULT;
2368 memset(buffer, 0, sizeof(buffer));
2369 if (count > sizeof(buffer) - 1)
2370 count = sizeof(buffer) - 1;
2371 if (copy_from_user(buffer, buf, count))
2372 goto out_no_task;
2374 ret = -EINVAL;
2375 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2376 if (*end == '\n')
2377 end++;
2378 if (end - buffer == 0)
2379 goto out_no_task;
2381 ret = -ESRCH;
2382 task = get_proc_task(file_inode(file));
2383 if (!task)
2384 goto out_no_task;
2386 ret = end - buffer;
2387 mm = get_task_mm(task);
2388 if (!mm)
2389 goto out_no_mm;
2391 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2392 if (val & mask)
2393 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2394 else
2395 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2398 mmput(mm);
2399 out_no_mm:
2400 put_task_struct(task);
2401 out_no_task:
2402 return ret;
2405 static const struct file_operations proc_coredump_filter_operations = {
2406 .read = proc_coredump_filter_read,
2407 .write = proc_coredump_filter_write,
2408 .llseek = generic_file_llseek,
2410 #endif
2412 #ifdef CONFIG_TASK_IO_ACCOUNTING
2413 static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
2415 struct task_io_accounting acct = task->ioac;
2416 unsigned long flags;
2417 int result;
2419 result = mutex_lock_killable(&task->signal->cred_guard_mutex);
2420 if (result)
2421 return result;
2423 if (!ptrace_may_access(task, PTRACE_MODE_READ)) {
2424 result = -EACCES;
2425 goto out_unlock;
2428 if (whole && lock_task_sighand(task, &flags)) {
2429 struct task_struct *t = task;
2431 task_io_accounting_add(&acct, &task->signal->ioac);
2432 while_each_thread(task, t)
2433 task_io_accounting_add(&acct, &t->ioac);
2435 unlock_task_sighand(task, &flags);
2437 result = sprintf(buffer,
2438 "rchar: %llu\n"
2439 "wchar: %llu\n"
2440 "syscr: %llu\n"
2441 "syscw: %llu\n"
2442 "read_bytes: %llu\n"
2443 "write_bytes: %llu\n"
2444 "cancelled_write_bytes: %llu\n",
2445 (unsigned long long)acct.rchar,
2446 (unsigned long long)acct.wchar,
2447 (unsigned long long)acct.syscr,
2448 (unsigned long long)acct.syscw,
2449 (unsigned long long)acct.read_bytes,
2450 (unsigned long long)acct.write_bytes,
2451 (unsigned long long)acct.cancelled_write_bytes);
2452 out_unlock:
2453 mutex_unlock(&task->signal->cred_guard_mutex);
2454 return result;
2457 static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2459 return do_io_accounting(task, buffer, 0);
2462 static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2464 return do_io_accounting(task, buffer, 1);
2466 #endif /* CONFIG_TASK_IO_ACCOUNTING */
2468 #ifdef CONFIG_USER_NS
2469 static int proc_id_map_open(struct inode *inode, struct file *file,
2470 struct seq_operations *seq_ops)
2472 struct user_namespace *ns = NULL;
2473 struct task_struct *task;
2474 struct seq_file *seq;
2475 int ret = -EINVAL;
2477 task = get_proc_task(inode);
2478 if (task) {
2479 rcu_read_lock();
2480 ns = get_user_ns(task_cred_xxx(task, user_ns));
2481 rcu_read_unlock();
2482 put_task_struct(task);
2484 if (!ns)
2485 goto err;
2487 ret = seq_open(file, seq_ops);
2488 if (ret)
2489 goto err_put_ns;
2491 seq = file->private_data;
2492 seq->private = ns;
2494 return 0;
2495 err_put_ns:
2496 put_user_ns(ns);
2497 err:
2498 return ret;
2501 static int proc_id_map_release(struct inode *inode, struct file *file)
2503 struct seq_file *seq = file->private_data;
2504 struct user_namespace *ns = seq->private;
2505 put_user_ns(ns);
2506 return seq_release(inode, file);
2509 static int proc_uid_map_open(struct inode *inode, struct file *file)
2511 return proc_id_map_open(inode, file, &proc_uid_seq_operations);
2514 static int proc_gid_map_open(struct inode *inode, struct file *file)
2516 return proc_id_map_open(inode, file, &proc_gid_seq_operations);
2519 static int proc_projid_map_open(struct inode *inode, struct file *file)
2521 return proc_id_map_open(inode, file, &proc_projid_seq_operations);
2524 static const struct file_operations proc_uid_map_operations = {
2525 .open = proc_uid_map_open,
2526 .write = proc_uid_map_write,
2527 .read = seq_read,
2528 .llseek = seq_lseek,
2529 .release = proc_id_map_release,
2532 static const struct file_operations proc_gid_map_operations = {
2533 .open = proc_gid_map_open,
2534 .write = proc_gid_map_write,
2535 .read = seq_read,
2536 .llseek = seq_lseek,
2537 .release = proc_id_map_release,
2540 static const struct file_operations proc_projid_map_operations = {
2541 .open = proc_projid_map_open,
2542 .write = proc_projid_map_write,
2543 .read = seq_read,
2544 .llseek = seq_lseek,
2545 .release = proc_id_map_release,
2547 #endif /* CONFIG_USER_NS */
2549 static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2550 struct pid *pid, struct task_struct *task)
2552 int err = lock_trace(task);
2553 if (!err) {
2554 seq_printf(m, "%08x\n", task->personality);
2555 unlock_trace(task);
2557 return err;
2561 * Thread groups
2563 static const struct file_operations proc_task_operations;
2564 static const struct inode_operations proc_task_inode_operations;
2566 static const struct pid_entry tgid_base_stuff[] = {
2567 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2568 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2569 #ifdef CONFIG_CHECKPOINT_RESTORE
2570 DIR("map_files", S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations),
2571 #endif
2572 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
2573 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
2574 #ifdef CONFIG_NET
2575 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
2576 #endif
2577 REG("environ", S_IRUSR, proc_environ_operations),
2578 INF("auxv", S_IRUSR, proc_pid_auxv),
2579 ONE("status", S_IRUGO, proc_pid_status),
2580 ONE("personality", S_IRUGO, proc_pid_personality),
2581 INF("limits", S_IRUGO, proc_pid_limits),
2582 #ifdef CONFIG_SCHED_DEBUG
2583 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
2584 #endif
2585 #ifdef CONFIG_SCHED_AUTOGROUP
2586 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
2587 #endif
2588 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
2589 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
2590 INF("syscall", S_IRUGO, proc_pid_syscall),
2591 #endif
2592 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2593 ONE("stat", S_IRUGO, proc_tgid_stat),
2594 ONE("statm", S_IRUGO, proc_pid_statm),
2595 REG("maps", S_IRUGO, proc_pid_maps_operations),
2596 #ifdef CONFIG_NUMA
2597 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
2598 #endif
2599 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2600 LNK("cwd", proc_cwd_link),
2601 LNK("root", proc_root_link),
2602 LNK("exe", proc_exe_link),
2603 REG("mounts", S_IRUGO, proc_mounts_operations),
2604 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2605 REG("mountstats", S_IRUSR, proc_mountstats_operations),
2606 #ifdef CONFIG_PROC_PAGE_MONITOR
2607 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2608 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
2609 REG("pagemap", S_IRUGO, proc_pagemap_operations),
2610 #endif
2611 #ifdef CONFIG_SECURITY
2612 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
2613 #endif
2614 #ifdef CONFIG_KALLSYMS
2615 INF("wchan", S_IRUGO, proc_pid_wchan),
2616 #endif
2617 #ifdef CONFIG_STACKTRACE
2618 ONE("stack", S_IRUGO, proc_pid_stack),
2619 #endif
2620 #ifdef CONFIG_SCHEDSTATS
2621 INF("schedstat", S_IRUGO, proc_pid_schedstat),
2622 #endif
2623 #ifdef CONFIG_LATENCYTOP
2624 REG("latency", S_IRUGO, proc_lstats_operations),
2625 #endif
2626 #ifdef CONFIG_PROC_PID_CPUSET
2627 REG("cpuset", S_IRUGO, proc_cpuset_operations),
2628 #endif
2629 #ifdef CONFIG_CGROUPS
2630 REG("cgroup", S_IRUGO, proc_cgroup_operations),
2631 #endif
2632 INF("oom_score", S_IRUGO, proc_oom_score),
2633 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
2634 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
2635 #ifdef CONFIG_AUDITSYSCALL
2636 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2637 REG("sessionid", S_IRUGO, proc_sessionid_operations),
2638 #endif
2639 #ifdef CONFIG_FAULT_INJECTION
2640 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
2641 #endif
2642 #ifdef CONFIG_ELF_CORE
2643 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
2644 #endif
2645 #ifdef CONFIG_TASK_IO_ACCOUNTING
2646 INF("io", S_IRUSR, proc_tgid_io_accounting),
2647 #endif
2648 #ifdef CONFIG_HARDWALL
2649 INF("hardwall", S_IRUGO, proc_pid_hardwall),
2650 #endif
2651 #ifdef CONFIG_USER_NS
2652 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
2653 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
2654 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
2655 #endif
2656 #ifdef CONFIG_CHECKPOINT_RESTORE
2657 REG("timers", S_IRUGO, proc_timers_operations),
2658 #endif
2661 static int proc_tgid_base_readdir(struct file *file, struct dir_context *ctx)
2663 return proc_pident_readdir(file, ctx,
2664 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
2667 static const struct file_operations proc_tgid_base_operations = {
2668 .read = generic_read_dir,
2669 .iterate = proc_tgid_base_readdir,
2670 .llseek = default_llseek,
2673 static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
2675 return proc_pident_lookup(dir, dentry,
2676 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
2679 static const struct inode_operations proc_tgid_base_inode_operations = {
2680 .lookup = proc_tgid_base_lookup,
2681 .getattr = pid_getattr,
2682 .setattr = proc_setattr,
2683 .permission = proc_pid_permission,
2686 static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
2688 struct dentry *dentry, *leader, *dir;
2689 char buf[PROC_NUMBUF];
2690 struct qstr name;
2692 name.name = buf;
2693 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2694 /* no ->d_hash() rejects on procfs */
2695 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
2696 if (dentry) {
2697 shrink_dcache_parent(dentry);
2698 d_drop(dentry);
2699 dput(dentry);
2702 name.name = buf;
2703 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2704 leader = d_hash_and_lookup(mnt->mnt_root, &name);
2705 if (!leader)
2706 goto out;
2708 name.name = "task";
2709 name.len = strlen(name.name);
2710 dir = d_hash_and_lookup(leader, &name);
2711 if (!dir)
2712 goto out_put_leader;
2714 name.name = buf;
2715 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2716 dentry = d_hash_and_lookup(dir, &name);
2717 if (dentry) {
2718 shrink_dcache_parent(dentry);
2719 d_drop(dentry);
2720 dput(dentry);
2723 dput(dir);
2724 out_put_leader:
2725 dput(leader);
2726 out:
2727 return;
2731 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2732 * @task: task that should be flushed.
2734 * When flushing dentries from proc, one needs to flush them from global
2735 * proc (proc_mnt) and from all the namespaces' procs this task was seen
2736 * in. This call is supposed to do all of this job.
2738 * Looks in the dcache for
2739 * /proc/@pid
2740 * /proc/@tgid/task/@pid
2741 * if either directory is present flushes it and all of it'ts children
2742 * from the dcache.
2744 * It is safe and reasonable to cache /proc entries for a task until
2745 * that task exits. After that they just clog up the dcache with
2746 * useless entries, possibly causing useful dcache entries to be
2747 * flushed instead. This routine is proved to flush those useless
2748 * dcache entries at process exit time.
2750 * NOTE: This routine is just an optimization so it does not guarantee
2751 * that no dcache entries will exist at process exit time it
2752 * just makes it very unlikely that any will persist.
2755 void proc_flush_task(struct task_struct *task)
2757 int i;
2758 struct pid *pid, *tgid;
2759 struct upid *upid;
2761 pid = task_pid(task);
2762 tgid = task_tgid(task);
2764 for (i = 0; i <= pid->level; i++) {
2765 upid = &pid->numbers[i];
2766 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
2767 tgid->numbers[i].nr);
2771 static int proc_pid_instantiate(struct inode *dir,
2772 struct dentry * dentry,
2773 struct task_struct *task, const void *ptr)
2775 struct inode *inode;
2777 inode = proc_pid_make_inode(dir->i_sb, task);
2778 if (!inode)
2779 goto out;
2781 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2782 inode->i_op = &proc_tgid_base_inode_operations;
2783 inode->i_fop = &proc_tgid_base_operations;
2784 inode->i_flags|=S_IMMUTABLE;
2786 set_nlink(inode, 2 + pid_entry_count_dirs(tgid_base_stuff,
2787 ARRAY_SIZE(tgid_base_stuff)));
2789 d_set_d_op(dentry, &pid_dentry_operations);
2791 d_add(dentry, inode);
2792 /* Close the race of the process dying before we return the dentry */
2793 if (pid_revalidate(dentry, 0))
2794 return 0;
2795 out:
2796 return -ENOENT;
2799 struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
2801 int result = 0;
2802 struct task_struct *task;
2803 unsigned tgid;
2804 struct pid_namespace *ns;
2806 tgid = name_to_int(dentry);
2807 if (tgid == ~0U)
2808 goto out;
2810 ns = dentry->d_sb->s_fs_info;
2811 rcu_read_lock();
2812 task = find_task_by_pid_ns(tgid, ns);
2813 if (task)
2814 get_task_struct(task);
2815 rcu_read_unlock();
2816 if (!task)
2817 goto out;
2819 result = proc_pid_instantiate(dir, dentry, task, NULL);
2820 put_task_struct(task);
2821 out:
2822 return ERR_PTR(result);
2826 * Find the first task with tgid >= tgid
2829 struct tgid_iter {
2830 unsigned int tgid;
2831 struct task_struct *task;
2833 static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
2835 struct pid *pid;
2837 if (iter.task)
2838 put_task_struct(iter.task);
2839 rcu_read_lock();
2840 retry:
2841 iter.task = NULL;
2842 pid = find_ge_pid(iter.tgid, ns);
2843 if (pid) {
2844 iter.tgid = pid_nr_ns(pid, ns);
2845 iter.task = pid_task(pid, PIDTYPE_PID);
2846 /* What we to know is if the pid we have find is the
2847 * pid of a thread_group_leader. Testing for task
2848 * being a thread_group_leader is the obvious thing
2849 * todo but there is a window when it fails, due to
2850 * the pid transfer logic in de_thread.
2852 * So we perform the straight forward test of seeing
2853 * if the pid we have found is the pid of a thread
2854 * group leader, and don't worry if the task we have
2855 * found doesn't happen to be a thread group leader.
2856 * As we don't care in the case of readdir.
2858 if (!iter.task || !has_group_leader_pid(iter.task)) {
2859 iter.tgid += 1;
2860 goto retry;
2862 get_task_struct(iter.task);
2864 rcu_read_unlock();
2865 return iter;
2868 #define TGID_OFFSET (FIRST_PROCESS_ENTRY + 1)
2870 /* for the /proc/ directory itself, after non-process stuff has been done */
2871 int proc_pid_readdir(struct file *file, struct dir_context *ctx)
2873 struct tgid_iter iter;
2874 struct pid_namespace *ns = file->f_dentry->d_sb->s_fs_info;
2875 loff_t pos = ctx->pos;
2877 if (pos >= PID_MAX_LIMIT + TGID_OFFSET)
2878 return 0;
2880 if (pos == TGID_OFFSET - 1) {
2881 struct inode *inode = ns->proc_self->d_inode;
2882 if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK))
2883 return 0;
2884 iter.tgid = 0;
2885 } else {
2886 iter.tgid = pos - TGID_OFFSET;
2888 iter.task = NULL;
2889 for (iter = next_tgid(ns, iter);
2890 iter.task;
2891 iter.tgid += 1, iter = next_tgid(ns, iter)) {
2892 char name[PROC_NUMBUF];
2893 int len;
2894 if (!has_pid_permissions(ns, iter.task, 2))
2895 continue;
2897 len = snprintf(name, sizeof(name), "%d", iter.tgid);
2898 ctx->pos = iter.tgid + TGID_OFFSET;
2899 if (!proc_fill_cache(file, ctx, name, len,
2900 proc_pid_instantiate, iter.task, NULL)) {
2901 put_task_struct(iter.task);
2902 return 0;
2905 ctx->pos = PID_MAX_LIMIT + TGID_OFFSET;
2906 return 0;
2910 * Tasks
2912 static const struct pid_entry tid_base_stuff[] = {
2913 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2914 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
2915 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
2916 REG("environ", S_IRUSR, proc_environ_operations),
2917 INF("auxv", S_IRUSR, proc_pid_auxv),
2918 ONE("status", S_IRUGO, proc_pid_status),
2919 ONE("personality", S_IRUGO, proc_pid_personality),
2920 INF("limits", S_IRUGO, proc_pid_limits),
2921 #ifdef CONFIG_SCHED_DEBUG
2922 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
2923 #endif
2924 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
2925 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
2926 INF("syscall", S_IRUGO, proc_pid_syscall),
2927 #endif
2928 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2929 ONE("stat", S_IRUGO, proc_tid_stat),
2930 ONE("statm", S_IRUGO, proc_pid_statm),
2931 REG("maps", S_IRUGO, proc_tid_maps_operations),
2932 #ifdef CONFIG_CHECKPOINT_RESTORE
2933 REG("children", S_IRUGO, proc_tid_children_operations),
2934 #endif
2935 #ifdef CONFIG_NUMA
2936 REG("numa_maps", S_IRUGO, proc_tid_numa_maps_operations),
2937 #endif
2938 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2939 LNK("cwd", proc_cwd_link),
2940 LNK("root", proc_root_link),
2941 LNK("exe", proc_exe_link),
2942 REG("mounts", S_IRUGO, proc_mounts_operations),
2943 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2944 #ifdef CONFIG_PROC_PAGE_MONITOR
2945 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2946 REG("smaps", S_IRUGO, proc_tid_smaps_operations),
2947 REG("pagemap", S_IRUGO, proc_pagemap_operations),
2948 #endif
2949 #ifdef CONFIG_SECURITY
2950 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
2951 #endif
2952 #ifdef CONFIG_KALLSYMS
2953 INF("wchan", S_IRUGO, proc_pid_wchan),
2954 #endif
2955 #ifdef CONFIG_STACKTRACE
2956 ONE("stack", S_IRUGO, proc_pid_stack),
2957 #endif
2958 #ifdef CONFIG_SCHEDSTATS
2959 INF("schedstat", S_IRUGO, proc_pid_schedstat),
2960 #endif
2961 #ifdef CONFIG_LATENCYTOP
2962 REG("latency", S_IRUGO, proc_lstats_operations),
2963 #endif
2964 #ifdef CONFIG_PROC_PID_CPUSET
2965 REG("cpuset", S_IRUGO, proc_cpuset_operations),
2966 #endif
2967 #ifdef CONFIG_CGROUPS
2968 REG("cgroup", S_IRUGO, proc_cgroup_operations),
2969 #endif
2970 INF("oom_score", S_IRUGO, proc_oom_score),
2971 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
2972 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
2973 #ifdef CONFIG_AUDITSYSCALL
2974 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2975 REG("sessionid", S_IRUGO, proc_sessionid_operations),
2976 #endif
2977 #ifdef CONFIG_FAULT_INJECTION
2978 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
2979 #endif
2980 #ifdef CONFIG_TASK_IO_ACCOUNTING
2981 INF("io", S_IRUSR, proc_tid_io_accounting),
2982 #endif
2983 #ifdef CONFIG_HARDWALL
2984 INF("hardwall", S_IRUGO, proc_pid_hardwall),
2985 #endif
2986 #ifdef CONFIG_USER_NS
2987 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
2988 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
2989 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
2990 #endif
2993 static int proc_tid_base_readdir(struct file *file, struct dir_context *ctx)
2995 return proc_pident_readdir(file, ctx,
2996 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
2999 static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
3001 return proc_pident_lookup(dir, dentry,
3002 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
3005 static const struct file_operations proc_tid_base_operations = {
3006 .read = generic_read_dir,
3007 .iterate = proc_tid_base_readdir,
3008 .llseek = default_llseek,
3011 static const struct inode_operations proc_tid_base_inode_operations = {
3012 .lookup = proc_tid_base_lookup,
3013 .getattr = pid_getattr,
3014 .setattr = proc_setattr,
3017 static int proc_task_instantiate(struct inode *dir,
3018 struct dentry *dentry, struct task_struct *task, const void *ptr)
3020 struct inode *inode;
3021 inode = proc_pid_make_inode(dir->i_sb, task);
3023 if (!inode)
3024 goto out;
3025 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3026 inode->i_op = &proc_tid_base_inode_operations;
3027 inode->i_fop = &proc_tid_base_operations;
3028 inode->i_flags|=S_IMMUTABLE;
3030 set_nlink(inode, 2 + pid_entry_count_dirs(tid_base_stuff,
3031 ARRAY_SIZE(tid_base_stuff)));
3033 d_set_d_op(dentry, &pid_dentry_operations);
3035 d_add(dentry, inode);
3036 /* Close the race of the process dying before we return the dentry */
3037 if (pid_revalidate(dentry, 0))
3038 return 0;
3039 out:
3040 return -ENOENT;
3043 static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
3045 int result = -ENOENT;
3046 struct task_struct *task;
3047 struct task_struct *leader = get_proc_task(dir);
3048 unsigned tid;
3049 struct pid_namespace *ns;
3051 if (!leader)
3052 goto out_no_task;
3054 tid = name_to_int(dentry);
3055 if (tid == ~0U)
3056 goto out;
3058 ns = dentry->d_sb->s_fs_info;
3059 rcu_read_lock();
3060 task = find_task_by_pid_ns(tid, ns);
3061 if (task)
3062 get_task_struct(task);
3063 rcu_read_unlock();
3064 if (!task)
3065 goto out;
3066 if (!same_thread_group(leader, task))
3067 goto out_drop_task;
3069 result = proc_task_instantiate(dir, dentry, task, NULL);
3070 out_drop_task:
3071 put_task_struct(task);
3072 out:
3073 put_task_struct(leader);
3074 out_no_task:
3075 return ERR_PTR(result);
3079 * Find the first tid of a thread group to return to user space.
3081 * Usually this is just the thread group leader, but if the users
3082 * buffer was too small or there was a seek into the middle of the
3083 * directory we have more work todo.
3085 * In the case of a short read we start with find_task_by_pid.
3087 * In the case of a seek we start with the leader and walk nr
3088 * threads past it.
3090 static struct task_struct *first_tid(struct task_struct *leader,
3091 int tid, int nr, struct pid_namespace *ns)
3093 struct task_struct *pos;
3095 rcu_read_lock();
3096 /* Attempt to start with the pid of a thread */
3097 if (tid && (nr > 0)) {
3098 pos = find_task_by_pid_ns(tid, ns);
3099 if (pos && (pos->group_leader == leader))
3100 goto found;
3103 /* If nr exceeds the number of threads there is nothing todo */
3104 pos = NULL;
3105 if (nr && nr >= get_nr_threads(leader))
3106 goto out;
3108 /* If we haven't found our starting place yet start
3109 * with the leader and walk nr threads forward.
3111 for (pos = leader; nr > 0; --nr) {
3112 pos = next_thread(pos);
3113 if (pos == leader) {
3114 pos = NULL;
3115 goto out;
3118 found:
3119 get_task_struct(pos);
3120 out:
3121 rcu_read_unlock();
3122 return pos;
3126 * Find the next thread in the thread list.
3127 * Return NULL if there is an error or no next thread.
3129 * The reference to the input task_struct is released.
3131 static struct task_struct *next_tid(struct task_struct *start)
3133 struct task_struct *pos = NULL;
3134 rcu_read_lock();
3135 if (pid_alive(start)) {
3136 pos = next_thread(start);
3137 if (thread_group_leader(pos))
3138 pos = NULL;
3139 else
3140 get_task_struct(pos);
3142 rcu_read_unlock();
3143 put_task_struct(start);
3144 return pos;
3147 /* for the /proc/TGID/task/ directories */
3148 static int proc_task_readdir(struct file *file, struct dir_context *ctx)
3150 struct task_struct *leader = NULL;
3151 struct task_struct *task = get_proc_task(file_inode(file));
3152 struct pid_namespace *ns;
3153 int tid;
3155 if (!task)
3156 return -ENOENT;
3157 rcu_read_lock();
3158 if (pid_alive(task)) {
3159 leader = task->group_leader;
3160 get_task_struct(leader);
3162 rcu_read_unlock();
3163 put_task_struct(task);
3164 if (!leader)
3165 return -ENOENT;
3167 if (!dir_emit_dots(file, ctx))
3168 goto out;
3170 /* f_version caches the tgid value that the last readdir call couldn't
3171 * return. lseek aka telldir automagically resets f_version to 0.
3173 ns = file->f_dentry->d_sb->s_fs_info;
3174 tid = (int)file->f_version;
3175 file->f_version = 0;
3176 for (task = first_tid(leader, tid, ctx->pos - 2, ns);
3177 task;
3178 task = next_tid(task), ctx->pos++) {
3179 char name[PROC_NUMBUF];
3180 int len;
3181 tid = task_pid_nr_ns(task, ns);
3182 len = snprintf(name, sizeof(name), "%d", tid);
3183 if (!proc_fill_cache(file, ctx, name, len,
3184 proc_task_instantiate, task, NULL)) {
3185 /* returning this tgid failed, save it as the first
3186 * pid for the next readir call */
3187 file->f_version = (u64)tid;
3188 put_task_struct(task);
3189 break;
3192 out:
3193 put_task_struct(leader);
3194 return 0;
3197 static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3199 struct inode *inode = dentry->d_inode;
3200 struct task_struct *p = get_proc_task(inode);
3201 generic_fillattr(inode, stat);
3203 if (p) {
3204 stat->nlink += get_nr_threads(p);
3205 put_task_struct(p);
3208 return 0;
3211 static const struct inode_operations proc_task_inode_operations = {
3212 .lookup = proc_task_lookup,
3213 .getattr = proc_task_getattr,
3214 .setattr = proc_setattr,
3215 .permission = proc_pid_permission,
3218 static const struct file_operations proc_task_operations = {
3219 .read = generic_read_dir,
3220 .iterate = proc_task_readdir,
3221 .llseek = default_llseek,