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.
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.
35 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
36 * Pud inclusion in the page table walking.
40 * 10LE Instituto Nokia de Tecnologia - INdT:
41 * A better way to walks through the page table as suggested by Hugh Dickins.
44 * Smaps information related to shared, private, clean and dirty pages.
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>
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>
93 #include <trace/events/oom.h>
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.
111 const struct inode_operations *iop;
112 const struct file_operations *fop;
116 #define NOD(NAME, MODE, IOP, FOP, OP) { \
118 .len = sizeof(NAME) - 1, \
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 .
146 static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
153 for (i = 0; i < n; ++i) {
154 if (S_ISDIR(entries[i].mode))
161 static int get_task_root(struct task_struct *task, struct path *root)
163 int result = -ENOENT;
167 get_fs_root(task->fs, root);
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;
182 get_fs_pwd(task->fs, path);
186 put_task_struct(task);
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;
197 result = get_task_root(task, path);
198 put_task_struct(task);
203 static int proc_pid_cmdline(struct task_struct *task, char * buffer)
207 struct mm_struct *mm = get_task_mm(task);
211 goto out_mm; /* Shh! No looking before we're done */
213 len = mm->arg_end - mm->arg_start;
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);
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);
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;
248 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
249 res = nwords * sizeof(mm->saved_auxv[0]);
252 memcpy(buffer, mm->saved_auxv, 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)
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))
275 return sprintf(buffer, "%lu", wchan);
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);
286 if (!ptrace_may_access(task, PTRACE_MODE_ATTACH)) {
287 mutex_unlock(&task->signal->cred_guard_mutex);
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;
310 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
314 trace.nr_entries = 0;
315 trace.max_entries = MAX_STACK_TRACE_DEPTH;
316 trace.entries = entries;
319 err = lock_trace(task);
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]);
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);
348 #ifdef CONFIG_LATENCYTOP
349 static int lstats_show_proc(struct seq_file *m, void *v)
352 struct inode *inode = m->private;
353 struct task_struct *task = get_proc_task(inode);
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]) {
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];
370 seq_printf(m, " %ps", (void *)bt);
376 put_task_struct(task);
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));
392 clear_all_latency_tracing(task);
393 put_task_struct(task);
398 static const struct file_operations proc_lstats_operations = {
401 .write = lstats_write,
403 .release = single_release,
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 = {
419 .release = single_release,
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 = {
435 .release = single_release,
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);
446 points = oom_badness(task, NULL, NULL, totalpages) *
448 read_unlock(&tasklist_lock);
449 return sprintf(buffer, "%lu\n", points);
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)
482 char *bufptr = buffer;
484 struct rlimit rlim[RLIM_NLIMITS];
486 if (!lock_task_sighand(task, &flags))
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");
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");
508 count += sprintf(&bufptr[count], "%-20lu ",
512 count += sprintf(&bufptr[count], "%-10s\n",
515 count += sprintf(&bufptr[count], "\n");
521 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
522 static int proc_pid_syscall(struct task_struct *task, char *buffer)
525 unsigned long args[6], sp, pc;
526 int res = lock_trace(task);
530 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
531 res = sprintf(buffer, "running\n");
533 res = sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
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],
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;
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
558 task = get_proc_task(inode);
560 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
561 put_task_struct(task);
566 int proc_setattr(struct dentry *dentry, struct iattr *attr)
569 struct inode *inode = dentry->d_inode;
571 if (attr->ia_valid & ATTR_MODE)
574 error = inode_change_ok(inode, attr);
578 setattr_copy(inode, attr);
579 mark_inode_dirty(inode);
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,
591 if (pid->hide_pid < hide_pid_min)
593 if (in_group_p(pid->pid_gid))
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;
605 task = get_proc_task(inode);
608 has_perms = has_pid_permissions(pid, task, 1);
609 put_task_struct(task);
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
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);
641 struct task_struct *task = get_proc_task(inode);
647 if (count > PROC_BLOCK_SIZE)
648 count = PROC_BLOCK_SIZE;
651 if (!(page = __get_free_page(GFP_TEMPORARY)))
654 length = PROC_I(inode)->op.proc_read(task, (char*)page);
657 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
660 put_task_struct(task);
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;
675 struct task_struct *task;
678 ns = inode->i_sb->s_fs_info;
679 pid = proc_pid(inode);
680 task = get_pid_task(pid, PIDTYPE_PID);
684 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
686 put_task_struct(task);
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,
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;
710 mm = mm_access(task, mode);
711 put_task_struct(task);
717 /* ensure this mm_struct can't be freed */
718 atomic_inc(&mm->mm_count);
719 /* but do not pin its memory */
723 file->private_data = mm;
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;
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;
749 page = (char *)__get_free_page(GFP_TEMPORARY);
754 if (!atomic_inc_not_zero(&mm->mm_users))
758 int this_len = min_t(int, count, PAGE_SIZE);
760 if (write && copy_from_user(page, buf, this_len)) {
765 this_len = access_remote_vm(mm, addr, page, this_len, write);
772 if (!write && copy_to_user(buf, page, this_len)) {
786 free_page((unsigned long) page);
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)
806 file->f_pos = offset;
809 file->f_pos += offset;
814 force_successful_syscall_return();
818 static int mem_release(struct inode *inode, struct file *file)
820 struct mm_struct *mm = file->private_data;
826 static const struct file_operations proc_mem_operations = {
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)
843 unsigned long src = *ppos;
845 struct mm_struct *mm = file->private_data;
850 page = (char *)__get_free_page(GFP_TEMPORARY);
855 if (!atomic_inc_not_zero(&mm->mm_users))
858 size_t this_len, max_len;
861 if (src >= (mm->env_end - mm->env_start))
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),
877 if (copy_to_user(buf, page, retval)) {
891 free_page((unsigned long) page);
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,
905 struct task_struct *task = get_proc_task(file_inode(file));
906 char buffer[PROC_NUMBUF];
907 int oom_adj = OOM_ADJUST_MIN;
913 if (lock_task_sighand(task, &flags)) {
914 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MAX)
915 oom_adj = OOM_ADJUST_MAX;
917 oom_adj = (task->signal->oom_score_adj * -OOM_DISABLE) /
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];
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)) {
943 err = kstrtoint(strstrip(buffer), 0, &oom_adj);
946 if ((oom_adj < OOM_ADJUST_MIN || oom_adj > OOM_ADJUST_MAX) &&
947 oom_adj != OOM_DISABLE) {
952 task = get_proc_task(file_inode(file));
964 if (!lock_task_sighand(task, &flags)) {
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;
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)) {
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),
992 task->signal->oom_score_adj = oom_adj;
993 trace_oom_score_adj_update(task);
995 unlock_task_sighand(task, &flags);
998 put_task_struct(task);
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;
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;
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)) {
1046 err = kstrtoint(strstrip(buffer), 0, &oom_score_adj);
1049 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
1050 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1055 task = get_proc_task(file_inode(file));
1067 if (!lock_task_sighand(task, &flags)) {
1072 if ((short)oom_score_adj < task->signal->oom_score_adj_min &&
1073 !capable(CAP_SYS_RESOURCE)) {
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);
1084 unlock_task_sighand(task, &flags);
1087 put_task_struct(task);
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);
1106 char tmpbuf[TMPBUFLEN];
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);
1127 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1133 if (count >= PAGE_SIZE)
1134 count = PAGE_SIZE - 1;
1137 /* No partial writes. */
1140 page = (char*)__get_free_page(GFP_TEMPORARY);
1144 if (copy_from_user(page, buf, count))
1148 loginuid = simple_strtoul(page, &tmp, 10);
1155 /* is userspace tring to explicitly UNSET the loginuid? */
1156 if (loginuid == AUDIT_UID_UNSET) {
1157 kloginuid = INVALID_UID;
1159 kloginuid = make_kuid(file->f_cred->user_ns, loginuid);
1160 if (!uid_valid(kloginuid)) {
1166 length = audit_set_loginuid(kloginuid);
1167 if (likely(length == 0))
1171 free_page((unsigned long) page);
1175 static const struct file_operations proc_loginuid_operations = {
1176 .read = proc_loginuid_read,
1177 .write = proc_loginuid_write,
1178 .llseek = generic_file_llseek,
1181 static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1182 size_t count, loff_t *ppos)
1184 struct inode * inode = file_inode(file);
1185 struct task_struct *task = get_proc_task(inode);
1187 char tmpbuf[TMPBUFLEN];
1191 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1192 audit_get_sessionid(task));
1193 put_task_struct(task);
1194 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1197 static const struct file_operations proc_sessionid_operations = {
1198 .read = proc_sessionid_read,
1199 .llseek = generic_file_llseek,
1203 #ifdef CONFIG_FAULT_INJECTION
1204 static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1205 size_t count, loff_t *ppos)
1207 struct task_struct *task = get_proc_task(file_inode(file));
1208 char buffer[PROC_NUMBUF];
1214 make_it_fail = task->make_it_fail;
1215 put_task_struct(task);
1217 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
1219 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1222 static ssize_t proc_fault_inject_write(struct file * file,
1223 const char __user * buf, size_t count, loff_t *ppos)
1225 struct task_struct *task;
1226 char buffer[PROC_NUMBUF], *end;
1229 if (!capable(CAP_SYS_RESOURCE))
1231 memset(buffer, 0, sizeof(buffer));
1232 if (count > sizeof(buffer) - 1)
1233 count = sizeof(buffer) - 1;
1234 if (copy_from_user(buffer, buf, count))
1236 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1239 task = get_proc_task(file_inode(file));
1242 task->make_it_fail = make_it_fail;
1243 put_task_struct(task);
1248 static const struct file_operations proc_fault_inject_operations = {
1249 .read = proc_fault_inject_read,
1250 .write = proc_fault_inject_write,
1251 .llseek = generic_file_llseek,
1256 #ifdef CONFIG_SCHED_DEBUG
1258 * Print out various scheduling related per-task fields:
1260 static int sched_show(struct seq_file *m, void *v)
1262 struct inode *inode = m->private;
1263 struct task_struct *p;
1265 p = get_proc_task(inode);
1268 proc_sched_show_task(p, m);
1276 sched_write(struct file *file, const char __user *buf,
1277 size_t count, loff_t *offset)
1279 struct inode *inode = file_inode(file);
1280 struct task_struct *p;
1282 p = get_proc_task(inode);
1285 proc_sched_set_task(p);
1292 static int sched_open(struct inode *inode, struct file *filp)
1294 return single_open(filp, sched_show, inode);
1297 static const struct file_operations proc_pid_sched_operations = {
1300 .write = sched_write,
1301 .llseek = seq_lseek,
1302 .release = single_release,
1307 #ifdef CONFIG_SCHED_AUTOGROUP
1309 * Print out autogroup related information:
1311 static int sched_autogroup_show(struct seq_file *m, void *v)
1313 struct inode *inode = m->private;
1314 struct task_struct *p;
1316 p = get_proc_task(inode);
1319 proc_sched_autogroup_show_task(p, m);
1327 sched_autogroup_write(struct file *file, const char __user *buf,
1328 size_t count, loff_t *offset)
1330 struct inode *inode = file_inode(file);
1331 struct task_struct *p;
1332 char buffer[PROC_NUMBUF];
1336 memset(buffer, 0, sizeof(buffer));
1337 if (count > sizeof(buffer) - 1)
1338 count = sizeof(buffer) - 1;
1339 if (copy_from_user(buffer, buf, count))
1342 err = kstrtoint(strstrip(buffer), 0, &nice);
1346 p = get_proc_task(inode);
1350 err = proc_sched_autogroup_set_nice(p, nice);
1359 static int sched_autogroup_open(struct inode *inode, struct file *filp)
1363 ret = single_open(filp, sched_autogroup_show, NULL);
1365 struct seq_file *m = filp->private_data;
1372 static const struct file_operations proc_pid_sched_autogroup_operations = {
1373 .open = sched_autogroup_open,
1375 .write = sched_autogroup_write,
1376 .llseek = seq_lseek,
1377 .release = single_release,
1380 #endif /* CONFIG_SCHED_AUTOGROUP */
1382 static ssize_t comm_write(struct file *file, const char __user *buf,
1383 size_t count, loff_t *offset)
1385 struct inode *inode = file_inode(file);
1386 struct task_struct *p;
1387 char buffer[TASK_COMM_LEN];
1388 const size_t maxlen = sizeof(buffer) - 1;
1390 memset(buffer, 0, sizeof(buffer));
1391 if (copy_from_user(buffer, buf, count > maxlen ? maxlen : count))
1394 p = get_proc_task(inode);
1398 if (same_thread_group(current, p))
1399 set_task_comm(p, buffer);
1408 static int comm_show(struct seq_file *m, void *v)
1410 struct inode *inode = m->private;
1411 struct task_struct *p;
1413 p = get_proc_task(inode);
1418 seq_printf(m, "%s\n", p->comm);
1426 static int comm_open(struct inode *inode, struct file *filp)
1428 return single_open(filp, comm_show, inode);
1431 static const struct file_operations proc_pid_set_comm_operations = {
1434 .write = comm_write,
1435 .llseek = seq_lseek,
1436 .release = single_release,
1439 static int proc_exe_link(struct dentry *dentry, struct path *exe_path)
1441 struct task_struct *task;
1442 struct mm_struct *mm;
1443 struct file *exe_file;
1445 task = get_proc_task(dentry->d_inode);
1448 mm = get_task_mm(task);
1449 put_task_struct(task);
1452 exe_file = get_mm_exe_file(mm);
1455 *exe_path = exe_file->f_path;
1456 path_get(&exe_file->f_path);
1463 static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
1465 struct inode *inode = dentry->d_inode;
1467 int error = -EACCES;
1469 /* Are we allowed to snoop on the tasks file descriptors? */
1470 if (!proc_fd_access_allowed(inode))
1473 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
1477 nd_jump_link(nd, &path);
1480 return ERR_PTR(error);
1483 static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
1485 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
1492 pathname = d_path(path, tmp, PAGE_SIZE);
1493 len = PTR_ERR(pathname);
1494 if (IS_ERR(pathname))
1496 len = tmp + PAGE_SIZE - 1 - pathname;
1500 if (copy_to_user(buffer, pathname, len))
1503 free_page((unsigned long)tmp);
1507 static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1509 int error = -EACCES;
1510 struct inode *inode = dentry->d_inode;
1513 /* Are we allowed to snoop on the tasks file descriptors? */
1514 if (!proc_fd_access_allowed(inode))
1517 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
1521 error = do_proc_readlink(&path, buffer, buflen);
1527 const struct inode_operations proc_pid_link_inode_operations = {
1528 .readlink = proc_pid_readlink,
1529 .follow_link = proc_pid_follow_link,
1530 .setattr = proc_setattr,
1534 /* building an inode */
1536 struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
1538 struct inode * inode;
1539 struct proc_inode *ei;
1540 const struct cred *cred;
1542 /* We need a new inode */
1544 inode = new_inode(sb);
1550 inode->i_ino = get_next_ino();
1551 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
1552 inode->i_op = &proc_def_inode_operations;
1555 * grab the reference to task.
1557 ei->pid = get_task_pid(task, PIDTYPE_PID);
1561 if (task_dumpable(task)) {
1563 cred = __task_cred(task);
1564 inode->i_uid = cred->euid;
1565 inode->i_gid = cred->egid;
1568 security_task_to_inode(task, inode);
1578 int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1580 struct inode *inode = dentry->d_inode;
1581 struct task_struct *task;
1582 const struct cred *cred;
1583 struct pid_namespace *pid = dentry->d_sb->s_fs_info;
1585 generic_fillattr(inode, stat);
1588 stat->uid = GLOBAL_ROOT_UID;
1589 stat->gid = GLOBAL_ROOT_GID;
1590 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1592 if (!has_pid_permissions(pid, task, 2)) {
1595 * This doesn't prevent learning whether PID exists,
1596 * it only makes getattr() consistent with readdir().
1600 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1601 task_dumpable(task)) {
1602 cred = __task_cred(task);
1603 stat->uid = cred->euid;
1604 stat->gid = cred->egid;
1614 * Exceptional case: normally we are not allowed to unhash a busy
1615 * directory. In this case, however, we can do it - no aliasing problems
1616 * due to the way we treat inodes.
1618 * Rewrite the inode's ownerships here because the owning task may have
1619 * performed a setuid(), etc.
1621 * Before the /proc/pid/status file was created the only way to read
1622 * the effective uid of a /process was to stat /proc/pid. Reading
1623 * /proc/pid/status is slow enough that procps and other packages
1624 * kept stating /proc/pid. To keep the rules in /proc simple I have
1625 * made this apply to all per process world readable and executable
1628 int pid_revalidate(struct dentry *dentry, unsigned int flags)
1630 struct inode *inode;
1631 struct task_struct *task;
1632 const struct cred *cred;
1634 if (flags & LOOKUP_RCU)
1637 inode = dentry->d_inode;
1638 task = get_proc_task(inode);
1641 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1642 task_dumpable(task)) {
1644 cred = __task_cred(task);
1645 inode->i_uid = cred->euid;
1646 inode->i_gid = cred->egid;
1649 inode->i_uid = GLOBAL_ROOT_UID;
1650 inode->i_gid = GLOBAL_ROOT_GID;
1652 inode->i_mode &= ~(S_ISUID | S_ISGID);
1653 security_task_to_inode(task, inode);
1654 put_task_struct(task);
1661 static inline bool proc_inode_is_dead(struct inode *inode)
1663 return !proc_pid(inode)->tasks[PIDTYPE_PID].first;
1666 int pid_delete_dentry(const struct dentry *dentry)
1668 /* Is the task we represent dead?
1669 * If so, then don't put the dentry on the lru list,
1670 * kill it immediately.
1672 return proc_inode_is_dead(dentry->d_inode);
1675 const struct dentry_operations pid_dentry_operations =
1677 .d_revalidate = pid_revalidate,
1678 .d_delete = pid_delete_dentry,
1684 * Fill a directory entry.
1686 * If possible create the dcache entry and derive our inode number and
1687 * file type from dcache entry.
1689 * Since all of the proc inode numbers are dynamically generated, the inode
1690 * numbers do not exist until the inode is cache. This means creating the
1691 * the dcache entry in readdir is necessary to keep the inode numbers
1692 * reported by readdir in sync with the inode numbers reported
1695 bool proc_fill_cache(struct file *file, struct dir_context *ctx,
1696 const char *name, int len,
1697 instantiate_t instantiate, struct task_struct *task, const void *ptr)
1699 struct dentry *child, *dir = file->f_path.dentry;
1700 struct qstr qname = QSTR_INIT(name, len);
1701 struct inode *inode;
1705 child = d_hash_and_lookup(dir, &qname);
1707 child = d_alloc(dir, &qname);
1709 goto end_instantiate;
1710 if (instantiate(dir->d_inode, child, task, ptr) < 0) {
1712 goto end_instantiate;
1715 inode = child->d_inode;
1717 type = inode->i_mode >> 12;
1719 return dir_emit(ctx, name, len, ino, type);
1722 return dir_emit(ctx, name, len, 1, DT_UNKNOWN);
1725 #ifdef CONFIG_CHECKPOINT_RESTORE
1728 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1729 * which represent vma start and end addresses.
1731 static int dname_to_vma_addr(struct dentry *dentry,
1732 unsigned long *start, unsigned long *end)
1734 if (sscanf(dentry->d_name.name, "%lx-%lx", start, end) != 2)
1740 static int map_files_d_revalidate(struct dentry *dentry, unsigned int flags)
1742 unsigned long vm_start, vm_end;
1743 bool exact_vma_exists = false;
1744 struct mm_struct *mm = NULL;
1745 struct task_struct *task;
1746 const struct cred *cred;
1747 struct inode *inode;
1750 if (flags & LOOKUP_RCU)
1753 if (!capable(CAP_SYS_ADMIN)) {
1758 inode = dentry->d_inode;
1759 task = get_proc_task(inode);
1763 mm = mm_access(task, PTRACE_MODE_READ);
1764 if (IS_ERR_OR_NULL(mm))
1767 if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) {
1768 down_read(&mm->mmap_sem);
1769 exact_vma_exists = !!find_exact_vma(mm, vm_start, vm_end);
1770 up_read(&mm->mmap_sem);
1775 if (exact_vma_exists) {
1776 if (task_dumpable(task)) {
1778 cred = __task_cred(task);
1779 inode->i_uid = cred->euid;
1780 inode->i_gid = cred->egid;
1783 inode->i_uid = GLOBAL_ROOT_UID;
1784 inode->i_gid = GLOBAL_ROOT_GID;
1786 security_task_to_inode(task, inode);
1791 put_task_struct(task);
1800 static const struct dentry_operations tid_map_files_dentry_operations = {
1801 .d_revalidate = map_files_d_revalidate,
1802 .d_delete = pid_delete_dentry,
1805 static int proc_map_files_get_link(struct dentry *dentry, struct path *path)
1807 unsigned long vm_start, vm_end;
1808 struct vm_area_struct *vma;
1809 struct task_struct *task;
1810 struct mm_struct *mm;
1814 task = get_proc_task(dentry->d_inode);
1818 mm = get_task_mm(task);
1819 put_task_struct(task);
1823 rc = dname_to_vma_addr(dentry, &vm_start, &vm_end);
1828 down_read(&mm->mmap_sem);
1829 vma = find_exact_vma(mm, vm_start, vm_end);
1830 if (vma && vma->vm_file) {
1831 *path = vma->vm_file->f_path;
1835 up_read(&mm->mmap_sem);
1843 struct map_files_info {
1846 unsigned char name[4*sizeof(long)+2]; /* max: %lx-%lx\0 */
1850 proc_map_files_instantiate(struct inode *dir, struct dentry *dentry,
1851 struct task_struct *task, const void *ptr)
1853 fmode_t mode = (fmode_t)(unsigned long)ptr;
1854 struct proc_inode *ei;
1855 struct inode *inode;
1857 inode = proc_pid_make_inode(dir->i_sb, task);
1862 ei->op.proc_get_link = proc_map_files_get_link;
1864 inode->i_op = &proc_pid_link_inode_operations;
1866 inode->i_mode = S_IFLNK;
1868 if (mode & FMODE_READ)
1869 inode->i_mode |= S_IRUSR;
1870 if (mode & FMODE_WRITE)
1871 inode->i_mode |= S_IWUSR;
1873 d_set_d_op(dentry, &tid_map_files_dentry_operations);
1874 d_add(dentry, inode);
1879 static struct dentry *proc_map_files_lookup(struct inode *dir,
1880 struct dentry *dentry, unsigned int flags)
1882 unsigned long vm_start, vm_end;
1883 struct vm_area_struct *vma;
1884 struct task_struct *task;
1886 struct mm_struct *mm;
1889 if (!capable(CAP_SYS_ADMIN))
1893 task = get_proc_task(dir);
1898 if (!ptrace_may_access(task, PTRACE_MODE_READ))
1902 if (dname_to_vma_addr(dentry, &vm_start, &vm_end))
1905 mm = get_task_mm(task);
1909 down_read(&mm->mmap_sem);
1910 vma = find_exact_vma(mm, vm_start, vm_end);
1915 result = proc_map_files_instantiate(dir, dentry, task,
1916 (void *)(unsigned long)vma->vm_file->f_mode);
1919 up_read(&mm->mmap_sem);
1922 put_task_struct(task);
1924 return ERR_PTR(result);
1927 static const struct inode_operations proc_map_files_inode_operations = {
1928 .lookup = proc_map_files_lookup,
1929 .permission = proc_fd_permission,
1930 .setattr = proc_setattr,
1934 proc_map_files_readdir(struct file *file, struct dir_context *ctx)
1936 struct vm_area_struct *vma;
1937 struct task_struct *task;
1938 struct mm_struct *mm;
1939 unsigned long nr_files, pos, i;
1940 struct flex_array *fa = NULL;
1941 struct map_files_info info;
1942 struct map_files_info *p;
1946 if (!capable(CAP_SYS_ADMIN))
1950 task = get_proc_task(file_inode(file));
1955 if (!ptrace_may_access(task, PTRACE_MODE_READ))
1959 if (!dir_emit_dots(file, ctx))
1962 mm = get_task_mm(task);
1965 down_read(&mm->mmap_sem);
1970 * We need two passes here:
1972 * 1) Collect vmas of mapped files with mmap_sem taken
1973 * 2) Release mmap_sem and instantiate entries
1975 * otherwise we get lockdep complained, since filldir()
1976 * routine might require mmap_sem taken in might_fault().
1979 for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) {
1980 if (vma->vm_file && ++pos > ctx->pos)
1985 fa = flex_array_alloc(sizeof(info), nr_files,
1987 if (!fa || flex_array_prealloc(fa, 0, nr_files,
1991 flex_array_free(fa);
1992 up_read(&mm->mmap_sem);
1996 for (i = 0, vma = mm->mmap, pos = 2; vma;
1997 vma = vma->vm_next) {
2000 if (++pos <= ctx->pos)
2003 info.mode = vma->vm_file->f_mode;
2004 info.len = snprintf(info.name,
2005 sizeof(info.name), "%lx-%lx",
2006 vma->vm_start, vma->vm_end);
2007 if (flex_array_put(fa, i++, &info, GFP_KERNEL))
2011 up_read(&mm->mmap_sem);
2013 for (i = 0; i < nr_files; i++) {
2014 p = flex_array_get(fa, i);
2015 if (!proc_fill_cache(file, ctx,
2017 proc_map_files_instantiate,
2019 (void *)(unsigned long)p->mode))
2024 flex_array_free(fa);
2028 put_task_struct(task);
2033 static const struct file_operations proc_map_files_operations = {
2034 .read = generic_read_dir,
2035 .iterate = proc_map_files_readdir,
2036 .llseek = default_llseek,
2039 struct timers_private {
2041 struct task_struct *task;
2042 struct sighand_struct *sighand;
2043 struct pid_namespace *ns;
2044 unsigned long flags;
2047 static void *timers_start(struct seq_file *m, loff_t *pos)
2049 struct timers_private *tp = m->private;
2051 tp->task = get_pid_task(tp->pid, PIDTYPE_PID);
2053 return ERR_PTR(-ESRCH);
2055 tp->sighand = lock_task_sighand(tp->task, &tp->flags);
2057 return ERR_PTR(-ESRCH);
2059 return seq_list_start(&tp->task->signal->posix_timers, *pos);
2062 static void *timers_next(struct seq_file *m, void *v, loff_t *pos)
2064 struct timers_private *tp = m->private;
2065 return seq_list_next(v, &tp->task->signal->posix_timers, pos);
2068 static void timers_stop(struct seq_file *m, void *v)
2070 struct timers_private *tp = m->private;
2073 unlock_task_sighand(tp->task, &tp->flags);
2078 put_task_struct(tp->task);
2083 static int show_timer(struct seq_file *m, void *v)
2085 struct k_itimer *timer;
2086 struct timers_private *tp = m->private;
2088 static char *nstr[] = {
2089 [SIGEV_SIGNAL] = "signal",
2090 [SIGEV_NONE] = "none",
2091 [SIGEV_THREAD] = "thread",
2094 timer = list_entry((struct list_head *)v, struct k_itimer, list);
2095 notify = timer->it_sigev_notify;
2097 seq_printf(m, "ID: %d\n", timer->it_id);
2098 seq_printf(m, "signal: %d/%p\n", timer->sigq->info.si_signo,
2099 timer->sigq->info.si_value.sival_ptr);
2100 seq_printf(m, "notify: %s/%s.%d\n",
2101 nstr[notify & ~SIGEV_THREAD_ID],
2102 (notify & SIGEV_THREAD_ID) ? "tid" : "pid",
2103 pid_nr_ns(timer->it_pid, tp->ns));
2104 seq_printf(m, "ClockID: %d\n", timer->it_clock);
2109 static const struct seq_operations proc_timers_seq_ops = {
2110 .start = timers_start,
2111 .next = timers_next,
2112 .stop = timers_stop,
2116 static int proc_timers_open(struct inode *inode, struct file *file)
2118 struct timers_private *tp;
2120 tp = __seq_open_private(file, &proc_timers_seq_ops,
2121 sizeof(struct timers_private));
2125 tp->pid = proc_pid(inode);
2126 tp->ns = inode->i_sb->s_fs_info;
2130 static const struct file_operations proc_timers_operations = {
2131 .open = proc_timers_open,
2133 .llseek = seq_lseek,
2134 .release = seq_release_private,
2136 #endif /* CONFIG_CHECKPOINT_RESTORE */
2138 static int proc_pident_instantiate(struct inode *dir,
2139 struct dentry *dentry, struct task_struct *task, const void *ptr)
2141 const struct pid_entry *p = ptr;
2142 struct inode *inode;
2143 struct proc_inode *ei;
2145 inode = proc_pid_make_inode(dir->i_sb, task);
2150 inode->i_mode = p->mode;
2151 if (S_ISDIR(inode->i_mode))
2152 set_nlink(inode, 2); /* Use getattr to fix if necessary */
2154 inode->i_op = p->iop;
2156 inode->i_fop = p->fop;
2158 d_set_d_op(dentry, &pid_dentry_operations);
2159 d_add(dentry, inode);
2160 /* Close the race of the process dying before we return the dentry */
2161 if (pid_revalidate(dentry, 0))
2167 static struct dentry *proc_pident_lookup(struct inode *dir,
2168 struct dentry *dentry,
2169 const struct pid_entry *ents,
2173 struct task_struct *task = get_proc_task(dir);
2174 const struct pid_entry *p, *last;
2182 * Yes, it does not scale. And it should not. Don't add
2183 * new entries into /proc/<tgid>/ without very good reasons.
2185 last = &ents[nents - 1];
2186 for (p = ents; p <= last; p++) {
2187 if (p->len != dentry->d_name.len)
2189 if (!memcmp(dentry->d_name.name, p->name, p->len))
2195 error = proc_pident_instantiate(dir, dentry, task, p);
2197 put_task_struct(task);
2199 return ERR_PTR(error);
2202 static int proc_pident_readdir(struct file *file, struct dir_context *ctx,
2203 const struct pid_entry *ents, unsigned int nents)
2205 struct task_struct *task = get_proc_task(file_inode(file));
2206 const struct pid_entry *p;
2211 if (!dir_emit_dots(file, ctx))
2214 if (ctx->pos >= nents + 2)
2217 for (p = ents + (ctx->pos - 2); p <= ents + nents - 1; p++) {
2218 if (!proc_fill_cache(file, ctx, p->name, p->len,
2219 proc_pident_instantiate, task, p))
2224 put_task_struct(task);
2228 #ifdef CONFIG_SECURITY
2229 static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2230 size_t count, loff_t *ppos)
2232 struct inode * inode = file_inode(file);
2235 struct task_struct *task = get_proc_task(inode);
2240 length = security_getprocattr(task,
2241 (char*)file->f_path.dentry->d_name.name,
2243 put_task_struct(task);
2245 length = simple_read_from_buffer(buf, count, ppos, p, length);
2250 static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2251 size_t count, loff_t *ppos)
2253 struct inode * inode = file_inode(file);
2256 struct task_struct *task = get_proc_task(inode);
2261 if (count > PAGE_SIZE)
2264 /* No partial writes. */
2270 page = (char*)__get_free_page(GFP_TEMPORARY);
2275 if (copy_from_user(page, buf, count))
2278 /* Guard against adverse ptrace interaction */
2279 length = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
2283 length = security_setprocattr(task,
2284 (char*)file->f_path.dentry->d_name.name,
2285 (void*)page, count);
2286 mutex_unlock(&task->signal->cred_guard_mutex);
2288 free_page((unsigned long) page);
2290 put_task_struct(task);
2295 static const struct file_operations proc_pid_attr_operations = {
2296 .read = proc_pid_attr_read,
2297 .write = proc_pid_attr_write,
2298 .llseek = generic_file_llseek,
2301 static const struct pid_entry attr_dir_stuff[] = {
2302 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2303 REG("prev", S_IRUGO, proc_pid_attr_operations),
2304 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2305 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2306 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2307 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2310 static int proc_attr_dir_readdir(struct file *file, struct dir_context *ctx)
2312 return proc_pident_readdir(file, ctx,
2313 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
2316 static const struct file_operations proc_attr_dir_operations = {
2317 .read = generic_read_dir,
2318 .iterate = proc_attr_dir_readdir,
2319 .llseek = default_llseek,
2322 static struct dentry *proc_attr_dir_lookup(struct inode *dir,
2323 struct dentry *dentry, unsigned int flags)
2325 return proc_pident_lookup(dir, dentry,
2326 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
2329 static const struct inode_operations proc_attr_dir_inode_operations = {
2330 .lookup = proc_attr_dir_lookup,
2331 .getattr = pid_getattr,
2332 .setattr = proc_setattr,
2337 #ifdef CONFIG_ELF_CORE
2338 static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2339 size_t count, loff_t *ppos)
2341 struct task_struct *task = get_proc_task(file_inode(file));
2342 struct mm_struct *mm;
2343 char buffer[PROC_NUMBUF];
2351 mm = get_task_mm(task);
2353 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2354 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2355 MMF_DUMP_FILTER_SHIFT));
2357 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2360 put_task_struct(task);
2365 static ssize_t proc_coredump_filter_write(struct file *file,
2366 const char __user *buf,
2370 struct task_struct *task;
2371 struct mm_struct *mm;
2372 char buffer[PROC_NUMBUF], *end;
2379 memset(buffer, 0, sizeof(buffer));
2380 if (count > sizeof(buffer) - 1)
2381 count = sizeof(buffer) - 1;
2382 if (copy_from_user(buffer, buf, count))
2386 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2389 if (end - buffer == 0)
2393 task = get_proc_task(file_inode(file));
2398 mm = get_task_mm(task);
2402 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2404 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2406 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2411 put_task_struct(task);
2416 static const struct file_operations proc_coredump_filter_operations = {
2417 .read = proc_coredump_filter_read,
2418 .write = proc_coredump_filter_write,
2419 .llseek = generic_file_llseek,
2423 #ifdef CONFIG_TASK_IO_ACCOUNTING
2424 static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
2426 struct task_io_accounting acct = task->ioac;
2427 unsigned long flags;
2430 result = mutex_lock_killable(&task->signal->cred_guard_mutex);
2434 if (!ptrace_may_access(task, PTRACE_MODE_READ)) {
2439 if (whole && lock_task_sighand(task, &flags)) {
2440 struct task_struct *t = task;
2442 task_io_accounting_add(&acct, &task->signal->ioac);
2443 while_each_thread(task, t)
2444 task_io_accounting_add(&acct, &t->ioac);
2446 unlock_task_sighand(task, &flags);
2448 result = sprintf(buffer,
2453 "read_bytes: %llu\n"
2454 "write_bytes: %llu\n"
2455 "cancelled_write_bytes: %llu\n",
2456 (unsigned long long)acct.rchar,
2457 (unsigned long long)acct.wchar,
2458 (unsigned long long)acct.syscr,
2459 (unsigned long long)acct.syscw,
2460 (unsigned long long)acct.read_bytes,
2461 (unsigned long long)acct.write_bytes,
2462 (unsigned long long)acct.cancelled_write_bytes);
2464 mutex_unlock(&task->signal->cred_guard_mutex);
2468 static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2470 return do_io_accounting(task, buffer, 0);
2473 static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2475 return do_io_accounting(task, buffer, 1);
2477 #endif /* CONFIG_TASK_IO_ACCOUNTING */
2479 #ifdef CONFIG_USER_NS
2480 static int proc_id_map_open(struct inode *inode, struct file *file,
2481 struct seq_operations *seq_ops)
2483 struct user_namespace *ns = NULL;
2484 struct task_struct *task;
2485 struct seq_file *seq;
2488 task = get_proc_task(inode);
2491 ns = get_user_ns(task_cred_xxx(task, user_ns));
2493 put_task_struct(task);
2498 ret = seq_open(file, seq_ops);
2502 seq = file->private_data;
2512 static int proc_id_map_release(struct inode *inode, struct file *file)
2514 struct seq_file *seq = file->private_data;
2515 struct user_namespace *ns = seq->private;
2517 return seq_release(inode, file);
2520 static int proc_uid_map_open(struct inode *inode, struct file *file)
2522 return proc_id_map_open(inode, file, &proc_uid_seq_operations);
2525 static int proc_gid_map_open(struct inode *inode, struct file *file)
2527 return proc_id_map_open(inode, file, &proc_gid_seq_operations);
2530 static int proc_projid_map_open(struct inode *inode, struct file *file)
2532 return proc_id_map_open(inode, file, &proc_projid_seq_operations);
2535 static const struct file_operations proc_uid_map_operations = {
2536 .open = proc_uid_map_open,
2537 .write = proc_uid_map_write,
2539 .llseek = seq_lseek,
2540 .release = proc_id_map_release,
2543 static const struct file_operations proc_gid_map_operations = {
2544 .open = proc_gid_map_open,
2545 .write = proc_gid_map_write,
2547 .llseek = seq_lseek,
2548 .release = proc_id_map_release,
2551 static const struct file_operations proc_projid_map_operations = {
2552 .open = proc_projid_map_open,
2553 .write = proc_projid_map_write,
2555 .llseek = seq_lseek,
2556 .release = proc_id_map_release,
2558 #endif /* CONFIG_USER_NS */
2560 static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2561 struct pid *pid, struct task_struct *task)
2563 int err = lock_trace(task);
2565 seq_printf(m, "%08x\n", task->personality);
2574 static const struct file_operations proc_task_operations;
2575 static const struct inode_operations proc_task_inode_operations;
2577 static const struct pid_entry tgid_base_stuff[] = {
2578 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2579 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2580 #ifdef CONFIG_CHECKPOINT_RESTORE
2581 DIR("map_files", S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations),
2583 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
2584 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
2586 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
2588 REG("environ", S_IRUSR, proc_environ_operations),
2589 INF("auxv", S_IRUSR, proc_pid_auxv),
2590 ONE("status", S_IRUGO, proc_pid_status),
2591 ONE("personality", S_IRUGO, proc_pid_personality),
2592 INF("limits", S_IRUGO, proc_pid_limits),
2593 #ifdef CONFIG_SCHED_DEBUG
2594 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
2596 #ifdef CONFIG_SCHED_AUTOGROUP
2597 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
2599 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
2600 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
2601 INF("syscall", S_IRUGO, proc_pid_syscall),
2603 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2604 ONE("stat", S_IRUGO, proc_tgid_stat),
2605 ONE("statm", S_IRUGO, proc_pid_statm),
2606 REG("maps", S_IRUGO, proc_pid_maps_operations),
2608 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
2610 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2611 LNK("cwd", proc_cwd_link),
2612 LNK("root", proc_root_link),
2613 LNK("exe", proc_exe_link),
2614 REG("mounts", S_IRUGO, proc_mounts_operations),
2615 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2616 REG("mountstats", S_IRUSR, proc_mountstats_operations),
2617 #ifdef CONFIG_PROC_PAGE_MONITOR
2618 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2619 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
2620 REG("pagemap", S_IRUGO, proc_pagemap_operations),
2622 #ifdef CONFIG_SECURITY
2623 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
2625 #ifdef CONFIG_KALLSYMS
2626 INF("wchan", S_IRUGO, proc_pid_wchan),
2628 #ifdef CONFIG_STACKTRACE
2629 ONE("stack", S_IRUGO, proc_pid_stack),
2631 #ifdef CONFIG_SCHEDSTATS
2632 INF("schedstat", S_IRUGO, proc_pid_schedstat),
2634 #ifdef CONFIG_LATENCYTOP
2635 REG("latency", S_IRUGO, proc_lstats_operations),
2637 #ifdef CONFIG_PROC_PID_CPUSET
2638 REG("cpuset", S_IRUGO, proc_cpuset_operations),
2640 #ifdef CONFIG_CGROUPS
2641 REG("cgroup", S_IRUGO, proc_cgroup_operations),
2643 INF("oom_score", S_IRUGO, proc_oom_score),
2644 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
2645 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
2646 #ifdef CONFIG_AUDITSYSCALL
2647 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2648 REG("sessionid", S_IRUGO, proc_sessionid_operations),
2650 #ifdef CONFIG_FAULT_INJECTION
2651 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
2653 #ifdef CONFIG_ELF_CORE
2654 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
2656 #ifdef CONFIG_TASK_IO_ACCOUNTING
2657 INF("io", S_IRUSR, proc_tgid_io_accounting),
2659 #ifdef CONFIG_HARDWALL
2660 INF("hardwall", S_IRUGO, proc_pid_hardwall),
2662 #ifdef CONFIG_USER_NS
2663 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
2664 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
2665 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
2667 #ifdef CONFIG_CHECKPOINT_RESTORE
2668 REG("timers", S_IRUGO, proc_timers_operations),
2672 static int proc_tgid_base_readdir(struct file *file, struct dir_context *ctx)
2674 return proc_pident_readdir(file, ctx,
2675 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
2678 static const struct file_operations proc_tgid_base_operations = {
2679 .read = generic_read_dir,
2680 .iterate = proc_tgid_base_readdir,
2681 .llseek = default_llseek,
2684 static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
2686 return proc_pident_lookup(dir, dentry,
2687 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
2690 static const struct inode_operations proc_tgid_base_inode_operations = {
2691 .lookup = proc_tgid_base_lookup,
2692 .getattr = pid_getattr,
2693 .setattr = proc_setattr,
2694 .permission = proc_pid_permission,
2697 static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
2699 struct dentry *dentry, *leader, *dir;
2700 char buf[PROC_NUMBUF];
2704 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2705 /* no ->d_hash() rejects on procfs */
2706 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
2708 shrink_dcache_parent(dentry);
2714 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2715 leader = d_hash_and_lookup(mnt->mnt_root, &name);
2720 name.len = strlen(name.name);
2721 dir = d_hash_and_lookup(leader, &name);
2723 goto out_put_leader;
2726 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2727 dentry = d_hash_and_lookup(dir, &name);
2729 shrink_dcache_parent(dentry);
2742 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2743 * @task: task that should be flushed.
2745 * When flushing dentries from proc, one needs to flush them from global
2746 * proc (proc_mnt) and from all the namespaces' procs this task was seen
2747 * in. This call is supposed to do all of this job.
2749 * Looks in the dcache for
2751 * /proc/@tgid/task/@pid
2752 * if either directory is present flushes it and all of it'ts children
2755 * It is safe and reasonable to cache /proc entries for a task until
2756 * that task exits. After that they just clog up the dcache with
2757 * useless entries, possibly causing useful dcache entries to be
2758 * flushed instead. This routine is proved to flush those useless
2759 * dcache entries at process exit time.
2761 * NOTE: This routine is just an optimization so it does not guarantee
2762 * that no dcache entries will exist at process exit time it
2763 * just makes it very unlikely that any will persist.
2766 void proc_flush_task(struct task_struct *task)
2769 struct pid *pid, *tgid;
2772 pid = task_pid(task);
2773 tgid = task_tgid(task);
2775 for (i = 0; i <= pid->level; i++) {
2776 upid = &pid->numbers[i];
2777 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
2778 tgid->numbers[i].nr);
2782 static int proc_pid_instantiate(struct inode *dir,
2783 struct dentry * dentry,
2784 struct task_struct *task, const void *ptr)
2786 struct inode *inode;
2788 inode = proc_pid_make_inode(dir->i_sb, task);
2792 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2793 inode->i_op = &proc_tgid_base_inode_operations;
2794 inode->i_fop = &proc_tgid_base_operations;
2795 inode->i_flags|=S_IMMUTABLE;
2797 set_nlink(inode, 2 + pid_entry_count_dirs(tgid_base_stuff,
2798 ARRAY_SIZE(tgid_base_stuff)));
2800 d_set_d_op(dentry, &pid_dentry_operations);
2802 d_add(dentry, inode);
2803 /* Close the race of the process dying before we return the dentry */
2804 if (pid_revalidate(dentry, 0))
2810 struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
2813 struct task_struct *task;
2815 struct pid_namespace *ns;
2817 tgid = name_to_int(dentry);
2821 ns = dentry->d_sb->s_fs_info;
2823 task = find_task_by_pid_ns(tgid, ns);
2825 get_task_struct(task);
2830 result = proc_pid_instantiate(dir, dentry, task, NULL);
2831 put_task_struct(task);
2833 return ERR_PTR(result);
2837 * Find the first task with tgid >= tgid
2842 struct task_struct *task;
2844 static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
2849 put_task_struct(iter.task);
2853 pid = find_ge_pid(iter.tgid, ns);
2855 iter.tgid = pid_nr_ns(pid, ns);
2856 iter.task = pid_task(pid, PIDTYPE_PID);
2857 /* What we to know is if the pid we have find is the
2858 * pid of a thread_group_leader. Testing for task
2859 * being a thread_group_leader is the obvious thing
2860 * todo but there is a window when it fails, due to
2861 * the pid transfer logic in de_thread.
2863 * So we perform the straight forward test of seeing
2864 * if the pid we have found is the pid of a thread
2865 * group leader, and don't worry if the task we have
2866 * found doesn't happen to be a thread group leader.
2867 * As we don't care in the case of readdir.
2869 if (!iter.task || !has_group_leader_pid(iter.task)) {
2873 get_task_struct(iter.task);
2879 #define TGID_OFFSET (FIRST_PROCESS_ENTRY + 1)
2881 /* for the /proc/ directory itself, after non-process stuff has been done */
2882 int proc_pid_readdir(struct file *file, struct dir_context *ctx)
2884 struct tgid_iter iter;
2885 struct pid_namespace *ns = file->f_dentry->d_sb->s_fs_info;
2886 loff_t pos = ctx->pos;
2888 if (pos >= PID_MAX_LIMIT + TGID_OFFSET)
2891 if (pos == TGID_OFFSET - 1) {
2892 struct inode *inode = ns->proc_self->d_inode;
2893 if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK))
2897 iter.tgid = pos - TGID_OFFSET;
2900 for (iter = next_tgid(ns, iter);
2902 iter.tgid += 1, iter = next_tgid(ns, iter)) {
2903 char name[PROC_NUMBUF];
2905 if (!has_pid_permissions(ns, iter.task, 2))
2908 len = snprintf(name, sizeof(name), "%d", iter.tgid);
2909 ctx->pos = iter.tgid + TGID_OFFSET;
2910 if (!proc_fill_cache(file, ctx, name, len,
2911 proc_pid_instantiate, iter.task, NULL)) {
2912 put_task_struct(iter.task);
2916 ctx->pos = PID_MAX_LIMIT + TGID_OFFSET;
2923 static const struct pid_entry tid_base_stuff[] = {
2924 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2925 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
2926 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
2927 REG("environ", S_IRUSR, proc_environ_operations),
2928 INF("auxv", S_IRUSR, proc_pid_auxv),
2929 ONE("status", S_IRUGO, proc_pid_status),
2930 ONE("personality", S_IRUGO, proc_pid_personality),
2931 INF("limits", S_IRUGO, proc_pid_limits),
2932 #ifdef CONFIG_SCHED_DEBUG
2933 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
2935 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
2936 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
2937 INF("syscall", S_IRUGO, proc_pid_syscall),
2939 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2940 ONE("stat", S_IRUGO, proc_tid_stat),
2941 ONE("statm", S_IRUGO, proc_pid_statm),
2942 REG("maps", S_IRUGO, proc_tid_maps_operations),
2943 #ifdef CONFIG_CHECKPOINT_RESTORE
2944 REG("children", S_IRUGO, proc_tid_children_operations),
2947 REG("numa_maps", S_IRUGO, proc_tid_numa_maps_operations),
2949 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2950 LNK("cwd", proc_cwd_link),
2951 LNK("root", proc_root_link),
2952 LNK("exe", proc_exe_link),
2953 REG("mounts", S_IRUGO, proc_mounts_operations),
2954 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2955 #ifdef CONFIG_PROC_PAGE_MONITOR
2956 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2957 REG("smaps", S_IRUGO, proc_tid_smaps_operations),
2958 REG("pagemap", S_IRUGO, proc_pagemap_operations),
2960 #ifdef CONFIG_SECURITY
2961 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
2963 #ifdef CONFIG_KALLSYMS
2964 INF("wchan", S_IRUGO, proc_pid_wchan),
2966 #ifdef CONFIG_STACKTRACE
2967 ONE("stack", S_IRUGO, proc_pid_stack),
2969 #ifdef CONFIG_SCHEDSTATS
2970 INF("schedstat", S_IRUGO, proc_pid_schedstat),
2972 #ifdef CONFIG_LATENCYTOP
2973 REG("latency", S_IRUGO, proc_lstats_operations),
2975 #ifdef CONFIG_PROC_PID_CPUSET
2976 REG("cpuset", S_IRUGO, proc_cpuset_operations),
2978 #ifdef CONFIG_CGROUPS
2979 REG("cgroup", S_IRUGO, proc_cgroup_operations),
2981 INF("oom_score", S_IRUGO, proc_oom_score),
2982 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
2983 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
2984 #ifdef CONFIG_AUDITSYSCALL
2985 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2986 REG("sessionid", S_IRUGO, proc_sessionid_operations),
2988 #ifdef CONFIG_FAULT_INJECTION
2989 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
2991 #ifdef CONFIG_TASK_IO_ACCOUNTING
2992 INF("io", S_IRUSR, proc_tid_io_accounting),
2994 #ifdef CONFIG_HARDWALL
2995 INF("hardwall", S_IRUGO, proc_pid_hardwall),
2997 #ifdef CONFIG_USER_NS
2998 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
2999 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
3000 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
3004 static int proc_tid_base_readdir(struct file *file, struct dir_context *ctx)
3006 return proc_pident_readdir(file, ctx,
3007 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
3010 static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
3012 return proc_pident_lookup(dir, dentry,
3013 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
3016 static const struct file_operations proc_tid_base_operations = {
3017 .read = generic_read_dir,
3018 .iterate = proc_tid_base_readdir,
3019 .llseek = default_llseek,
3022 static const struct inode_operations proc_tid_base_inode_operations = {
3023 .lookup = proc_tid_base_lookup,
3024 .getattr = pid_getattr,
3025 .setattr = proc_setattr,
3028 static int proc_task_instantiate(struct inode *dir,
3029 struct dentry *dentry, struct task_struct *task, const void *ptr)
3031 struct inode *inode;
3032 inode = proc_pid_make_inode(dir->i_sb, task);
3036 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3037 inode->i_op = &proc_tid_base_inode_operations;
3038 inode->i_fop = &proc_tid_base_operations;
3039 inode->i_flags|=S_IMMUTABLE;
3041 set_nlink(inode, 2 + pid_entry_count_dirs(tid_base_stuff,
3042 ARRAY_SIZE(tid_base_stuff)));
3044 d_set_d_op(dentry, &pid_dentry_operations);
3046 d_add(dentry, inode);
3047 /* Close the race of the process dying before we return the dentry */
3048 if (pid_revalidate(dentry, 0))
3054 static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
3056 int result = -ENOENT;
3057 struct task_struct *task;
3058 struct task_struct *leader = get_proc_task(dir);
3060 struct pid_namespace *ns;
3065 tid = name_to_int(dentry);
3069 ns = dentry->d_sb->s_fs_info;
3071 task = find_task_by_pid_ns(tid, ns);
3073 get_task_struct(task);
3077 if (!same_thread_group(leader, task))
3080 result = proc_task_instantiate(dir, dentry, task, NULL);
3082 put_task_struct(task);
3084 put_task_struct(leader);
3086 return ERR_PTR(result);
3090 * Find the first tid of a thread group to return to user space.
3092 * Usually this is just the thread group leader, but if the users
3093 * buffer was too small or there was a seek into the middle of the
3094 * directory we have more work todo.
3096 * In the case of a short read we start with find_task_by_pid.
3098 * In the case of a seek we start with the leader and walk nr
3101 static struct task_struct *first_tid(struct pid *pid, int tid, loff_t f_pos,
3102 struct pid_namespace *ns)
3104 struct task_struct *pos, *task;
3105 unsigned long nr = f_pos;
3107 if (nr != f_pos) /* 32bit overflow? */
3111 task = pid_task(pid, PIDTYPE_PID);
3115 /* Attempt to start with the tid of a thread */
3117 pos = find_task_by_pid_ns(tid, ns);
3118 if (pos && same_thread_group(pos, task))
3122 /* If nr exceeds the number of threads there is nothing todo */
3123 if (nr >= get_nr_threads(task))
3126 /* If we haven't found our starting place yet start
3127 * with the leader and walk nr threads forward.
3129 pos = task = task->group_leader;
3133 } while_each_thread(task, pos);
3138 get_task_struct(pos);
3145 * Find the next thread in the thread list.
3146 * Return NULL if there is an error or no next thread.
3148 * The reference to the input task_struct is released.
3150 static struct task_struct *next_tid(struct task_struct *start)
3152 struct task_struct *pos = NULL;
3154 if (pid_alive(start)) {
3155 pos = next_thread(start);
3156 if (thread_group_leader(pos))
3159 get_task_struct(pos);
3162 put_task_struct(start);
3166 /* for the /proc/TGID/task/ directories */
3167 static int proc_task_readdir(struct file *file, struct dir_context *ctx)
3169 struct inode *inode = file_inode(file);
3170 struct task_struct *task;
3171 struct pid_namespace *ns;
3174 if (proc_inode_is_dead(inode))
3177 if (!dir_emit_dots(file, ctx))
3180 /* f_version caches the tgid value that the last readdir call couldn't
3181 * return. lseek aka telldir automagically resets f_version to 0.
3183 ns = file->f_dentry->d_sb->s_fs_info;
3184 tid = (int)file->f_version;
3185 file->f_version = 0;
3186 for (task = first_tid(proc_pid(inode), tid, ctx->pos - 2, ns);
3188 task = next_tid(task), ctx->pos++) {
3189 char name[PROC_NUMBUF];
3191 tid = task_pid_nr_ns(task, ns);
3192 len = snprintf(name, sizeof(name), "%d", tid);
3193 if (!proc_fill_cache(file, ctx, name, len,
3194 proc_task_instantiate, task, NULL)) {
3195 /* returning this tgid failed, save it as the first
3196 * pid for the next readir call */
3197 file->f_version = (u64)tid;
3198 put_task_struct(task);
3206 static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3208 struct inode *inode = dentry->d_inode;
3209 struct task_struct *p = get_proc_task(inode);
3210 generic_fillattr(inode, stat);
3213 stat->nlink += get_nr_threads(p);
3220 static const struct inode_operations proc_task_inode_operations = {
3221 .lookup = proc_task_lookup,
3222 .getattr = proc_task_getattr,
3223 .setattr = proc_setattr,
3224 .permission = proc_pid_permission,
3227 static const struct file_operations proc_task_operations = {
3228 .read = generic_read_dir,
3229 .iterate = proc_task_readdir,
3230 .llseek = default_llseek,