1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 1991, 1992 Linus Torvalds
7 * proc base directory handling functions
9 * 1999, Al Viro. Rewritten. Now it covers the whole per-process part.
10 * Instead of using magical inumbers to determine the kind of object
11 * we allocate and fill in-core inodes upon lookup. They don't even
12 * go into icache. We cache the reference to task_struct upon lookup too.
13 * Eventually it should become a filesystem in its own. We don't use the
14 * rest of procfs anymore.
20 * Bruna Moreira <bruna.moreira@indt.org.br>
21 * Edjard Mota <edjard.mota@indt.org.br>
22 * Ilias Biris <ilias.biris@indt.org.br>
23 * Mauricio Lin <mauricio.lin@indt.org.br>
25 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
27 * A new process specific entry (smaps) included in /proc. It shows the
28 * size of rss for each memory area. The maps entry lacks information
29 * about physical memory size (rss) for each mapped file, i.e.,
30 * rss information for executables and library files.
31 * This additional information is useful for any tools that need to know
32 * about physical memory consumption for a process specific library.
36 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
37 * Pud inclusion in the page table walking.
41 * 10LE Instituto Nokia de Tecnologia - INdT:
42 * A better way to walks through the page table as suggested by Hugh Dickins.
44 * Simo Piiroinen <simo.piiroinen@nokia.com>:
45 * Smaps information related to shared, private, clean and dirty pages.
47 * Paul Mundt <paul.mundt@nokia.com>:
48 * Overall revision about smaps.
51 #include <linux/uaccess.h>
53 #include <linux/errno.h>
54 #include <linux/time.h>
55 #include <linux/proc_fs.h>
56 #include <linux/stat.h>
57 #include <linux/task_io_accounting_ops.h>
58 #include <linux/init.h>
59 #include <linux/capability.h>
60 #include <linux/file.h>
61 #include <linux/fdtable.h>
62 #include <linux/generic-radix-tree.h>
63 #include <linux/string.h>
64 #include <linux/seq_file.h>
65 #include <linux/namei.h>
66 #include <linux/mnt_namespace.h>
68 #include <linux/swap.h>
69 #include <linux/rcupdate.h>
70 #include <linux/kallsyms.h>
71 #include <linux/stacktrace.h>
72 #include <linux/resource.h>
73 #include <linux/module.h>
74 #include <linux/mount.h>
75 #include <linux/security.h>
76 #include <linux/ptrace.h>
77 #include <linux/tracehook.h>
78 #include <linux/printk.h>
79 #include <linux/cache.h>
80 #include <linux/cgroup.h>
81 #include <linux/cpuset.h>
82 #include <linux/audit.h>
83 #include <linux/poll.h>
84 #include <linux/nsproxy.h>
85 #include <linux/oom.h>
86 #include <linux/elf.h>
87 #include <linux/pid_namespace.h>
88 #include <linux/user_namespace.h>
89 #include <linux/fs_struct.h>
90 #include <linux/slab.h>
91 #include <linux/sched/autogroup.h>
92 #include <linux/sched/mm.h>
93 #include <linux/sched/coredump.h>
94 #include <linux/sched/debug.h>
95 #include <linux/sched/stat.h>
96 #include <linux/posix-timers.h>
97 #include <trace/events/oom.h>
101 #include "../../lib/kstrtox.h"
104 * Implementing inode permission operations in /proc is almost
105 * certainly an error. Permission checks need to happen during
106 * each system call not at open time. The reason is that most of
107 * what we wish to check for permissions in /proc varies at runtime.
109 * The classic example of a problem is opening file descriptors
110 * in /proc for a task before it execs a suid executable.
113 static u8 nlink_tid __ro_after_init
;
114 static u8 nlink_tgid __ro_after_init
;
120 const struct inode_operations
*iop
;
121 const struct file_operations
*fop
;
125 #define NOD(NAME, MODE, IOP, FOP, OP) { \
127 .len = sizeof(NAME) - 1, \
134 #define DIR(NAME, MODE, iops, fops) \
135 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
136 #define LNK(NAME, get_link) \
137 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
138 &proc_pid_link_inode_operations, NULL, \
139 { .proc_get_link = get_link } )
140 #define REG(NAME, MODE, fops) \
141 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
142 #define ONE(NAME, MODE, show) \
143 NOD(NAME, (S_IFREG|(MODE)), \
144 NULL, &proc_single_file_operations, \
145 { .proc_show = show } )
146 #define ATTR(LSM, NAME, MODE) \
147 NOD(NAME, (S_IFREG|(MODE)), \
148 NULL, &proc_pid_attr_operations, \
152 * Count the number of hardlinks for the pid_entry table, excluding the .
155 static unsigned int __init
pid_entry_nlink(const struct pid_entry
*entries
,
162 for (i
= 0; i
< n
; ++i
) {
163 if (S_ISDIR(entries
[i
].mode
))
170 static int get_task_root(struct task_struct
*task
, struct path
*root
)
172 int result
= -ENOENT
;
176 get_fs_root(task
->fs
, root
);
183 static int proc_cwd_link(struct dentry
*dentry
, struct path
*path
)
185 struct task_struct
*task
= get_proc_task(d_inode(dentry
));
186 int result
= -ENOENT
;
191 get_fs_pwd(task
->fs
, path
);
195 put_task_struct(task
);
200 static int proc_root_link(struct dentry
*dentry
, struct path
*path
)
202 struct task_struct
*task
= get_proc_task(d_inode(dentry
));
203 int result
= -ENOENT
;
206 result
= get_task_root(task
, path
);
207 put_task_struct(task
);
213 * If the user used setproctitle(), we just get the string from
214 * user space at arg_start, and limit it to a maximum of one page.
216 static ssize_t
get_mm_proctitle(struct mm_struct
*mm
, char __user
*buf
,
217 size_t count
, unsigned long pos
,
218 unsigned long arg_start
)
223 if (pos
>= PAGE_SIZE
)
226 page
= (char *)__get_free_page(GFP_KERNEL
);
231 got
= access_remote_vm(mm
, arg_start
, page
, PAGE_SIZE
, FOLL_ANON
);
233 int len
= strnlen(page
, got
);
235 /* Include the NUL character if it was found */
243 len
-= copy_to_user(buf
, page
+pos
, len
);
249 free_page((unsigned long)page
);
253 static ssize_t
get_mm_cmdline(struct mm_struct
*mm
, char __user
*buf
,
254 size_t count
, loff_t
*ppos
)
256 unsigned long arg_start
, arg_end
, env_start
, env_end
;
257 unsigned long pos
, len
;
260 /* Check if process spawned far enough to have cmdline. */
264 spin_lock(&mm
->arg_lock
);
265 arg_start
= mm
->arg_start
;
266 arg_end
= mm
->arg_end
;
267 env_start
= mm
->env_start
;
268 env_end
= mm
->env_end
;
269 spin_unlock(&mm
->arg_lock
);
271 if (arg_start
>= arg_end
)
275 * We allow setproctitle() to overwrite the argument
276 * strings, and overflow past the original end. But
277 * only when it overflows into the environment area.
279 if (env_start
!= arg_end
|| env_end
< env_start
)
280 env_start
= env_end
= arg_end
;
281 len
= env_end
- arg_start
;
283 /* We're not going to care if "*ppos" has high bits set */
287 if (count
> len
- pos
)
293 * Magical special case: if the argv[] end byte is not
294 * zero, the user has overwritten it with setproctitle(3).
296 * Possible future enhancement: do this only once when
297 * pos is 0, and set a flag in the 'struct file'.
299 if (access_remote_vm(mm
, arg_end
-1, &c
, 1, FOLL_ANON
) == 1 && c
)
300 return get_mm_proctitle(mm
, buf
, count
, pos
, arg_start
);
303 * For the non-setproctitle() case we limit things strictly
304 * to the [arg_start, arg_end[ range.
307 if (pos
< arg_start
|| pos
>= arg_end
)
309 if (count
> arg_end
- pos
)
310 count
= arg_end
- pos
;
312 page
= (char *)__get_free_page(GFP_KERNEL
);
319 size_t size
= min_t(size_t, PAGE_SIZE
, count
);
321 got
= access_remote_vm(mm
, pos
, page
, size
, FOLL_ANON
);
324 got
-= copy_to_user(buf
, page
, got
);
325 if (unlikely(!got
)) {
336 free_page((unsigned long)page
);
340 static ssize_t
get_task_cmdline(struct task_struct
*tsk
, char __user
*buf
,
341 size_t count
, loff_t
*pos
)
343 struct mm_struct
*mm
;
346 mm
= get_task_mm(tsk
);
350 ret
= get_mm_cmdline(mm
, buf
, count
, pos
);
355 static ssize_t
proc_pid_cmdline_read(struct file
*file
, char __user
*buf
,
356 size_t count
, loff_t
*pos
)
358 struct task_struct
*tsk
;
363 tsk
= get_proc_task(file_inode(file
));
366 ret
= get_task_cmdline(tsk
, buf
, count
, pos
);
367 put_task_struct(tsk
);
373 static const struct file_operations proc_pid_cmdline_ops
= {
374 .read
= proc_pid_cmdline_read
,
375 .llseek
= generic_file_llseek
,
378 #ifdef CONFIG_KALLSYMS
380 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
381 * Returns the resolved symbol. If that fails, simply return the address.
383 static int proc_pid_wchan(struct seq_file
*m
, struct pid_namespace
*ns
,
384 struct pid
*pid
, struct task_struct
*task
)
387 char symname
[KSYM_NAME_LEN
];
389 if (!ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
))
392 wchan
= get_wchan(task
);
393 if (wchan
&& !lookup_symbol_name(wchan
, symname
)) {
394 seq_puts(m
, symname
);
402 #endif /* CONFIG_KALLSYMS */
404 static int lock_trace(struct task_struct
*task
)
406 int err
= mutex_lock_killable(&task
->signal
->cred_guard_mutex
);
409 if (!ptrace_may_access(task
, PTRACE_MODE_ATTACH_FSCREDS
)) {
410 mutex_unlock(&task
->signal
->cred_guard_mutex
);
416 static void unlock_trace(struct task_struct
*task
)
418 mutex_unlock(&task
->signal
->cred_guard_mutex
);
421 #ifdef CONFIG_STACKTRACE
423 #define MAX_STACK_TRACE_DEPTH 64
425 static int proc_pid_stack(struct seq_file
*m
, struct pid_namespace
*ns
,
426 struct pid
*pid
, struct task_struct
*task
)
428 unsigned long *entries
;
432 * The ability to racily run the kernel stack unwinder on a running task
433 * and then observe the unwinder output is scary; while it is useful for
434 * debugging kernel issues, it can also allow an attacker to leak kernel
436 * Doing this in a manner that is at least safe from races would require
437 * some work to ensure that the remote task can not be scheduled; and
438 * even then, this would still expose the unwinder as local attack
440 * Therefore, this interface is restricted to root.
442 if (!file_ns_capable(m
->file
, &init_user_ns
, CAP_SYS_ADMIN
))
445 entries
= kmalloc_array(MAX_STACK_TRACE_DEPTH
, sizeof(*entries
),
450 err
= lock_trace(task
);
452 unsigned int i
, nr_entries
;
454 nr_entries
= stack_trace_save_tsk(task
, entries
,
455 MAX_STACK_TRACE_DEPTH
, 0);
457 for (i
= 0; i
< nr_entries
; i
++) {
458 seq_printf(m
, "[<0>] %pB\n", (void *)entries
[i
]);
469 #ifdef CONFIG_SCHED_INFO
471 * Provides /proc/PID/schedstat
473 static int proc_pid_schedstat(struct seq_file
*m
, struct pid_namespace
*ns
,
474 struct pid
*pid
, struct task_struct
*task
)
476 if (unlikely(!sched_info_on()))
477 seq_puts(m
, "0 0 0\n");
479 seq_printf(m
, "%llu %llu %lu\n",
480 (unsigned long long)task
->se
.sum_exec_runtime
,
481 (unsigned long long)task
->sched_info
.run_delay
,
482 task
->sched_info
.pcount
);
488 #ifdef CONFIG_LATENCYTOP
489 static int lstats_show_proc(struct seq_file
*m
, void *v
)
492 struct inode
*inode
= m
->private;
493 struct task_struct
*task
= get_proc_task(inode
);
497 seq_puts(m
, "Latency Top version : v0.1\n");
498 for (i
= 0; i
< LT_SAVECOUNT
; i
++) {
499 struct latency_record
*lr
= &task
->latency_record
[i
];
500 if (lr
->backtrace
[0]) {
502 seq_printf(m
, "%i %li %li",
503 lr
->count
, lr
->time
, lr
->max
);
504 for (q
= 0; q
< LT_BACKTRACEDEPTH
; q
++) {
505 unsigned long bt
= lr
->backtrace
[q
];
509 seq_printf(m
, " %ps", (void *)bt
);
515 put_task_struct(task
);
519 static int lstats_open(struct inode
*inode
, struct file
*file
)
521 return single_open(file
, lstats_show_proc
, inode
);
524 static ssize_t
lstats_write(struct file
*file
, const char __user
*buf
,
525 size_t count
, loff_t
*offs
)
527 struct task_struct
*task
= get_proc_task(file_inode(file
));
531 clear_tsk_latency_tracing(task
);
532 put_task_struct(task
);
537 static const struct file_operations proc_lstats_operations
= {
540 .write
= lstats_write
,
542 .release
= single_release
,
547 static int proc_oom_score(struct seq_file
*m
, struct pid_namespace
*ns
,
548 struct pid
*pid
, struct task_struct
*task
)
550 unsigned long totalpages
= totalram_pages() + total_swap_pages
;
551 unsigned long points
= 0;
553 points
= oom_badness(task
, totalpages
) * 1000 / totalpages
;
554 seq_printf(m
, "%lu\n", points
);
564 static const struct limit_names lnames
[RLIM_NLIMITS
] = {
565 [RLIMIT_CPU
] = {"Max cpu time", "seconds"},
566 [RLIMIT_FSIZE
] = {"Max file size", "bytes"},
567 [RLIMIT_DATA
] = {"Max data size", "bytes"},
568 [RLIMIT_STACK
] = {"Max stack size", "bytes"},
569 [RLIMIT_CORE
] = {"Max core file size", "bytes"},
570 [RLIMIT_RSS
] = {"Max resident set", "bytes"},
571 [RLIMIT_NPROC
] = {"Max processes", "processes"},
572 [RLIMIT_NOFILE
] = {"Max open files", "files"},
573 [RLIMIT_MEMLOCK
] = {"Max locked memory", "bytes"},
574 [RLIMIT_AS
] = {"Max address space", "bytes"},
575 [RLIMIT_LOCKS
] = {"Max file locks", "locks"},
576 [RLIMIT_SIGPENDING
] = {"Max pending signals", "signals"},
577 [RLIMIT_MSGQUEUE
] = {"Max msgqueue size", "bytes"},
578 [RLIMIT_NICE
] = {"Max nice priority", NULL
},
579 [RLIMIT_RTPRIO
] = {"Max realtime priority", NULL
},
580 [RLIMIT_RTTIME
] = {"Max realtime timeout", "us"},
583 /* Display limits for a process */
584 static int proc_pid_limits(struct seq_file
*m
, struct pid_namespace
*ns
,
585 struct pid
*pid
, struct task_struct
*task
)
590 struct rlimit rlim
[RLIM_NLIMITS
];
592 if (!lock_task_sighand(task
, &flags
))
594 memcpy(rlim
, task
->signal
->rlim
, sizeof(struct rlimit
) * RLIM_NLIMITS
);
595 unlock_task_sighand(task
, &flags
);
598 * print the file header
605 for (i
= 0; i
< RLIM_NLIMITS
; i
++) {
606 if (rlim
[i
].rlim_cur
== RLIM_INFINITY
)
607 seq_printf(m
, "%-25s %-20s ",
608 lnames
[i
].name
, "unlimited");
610 seq_printf(m
, "%-25s %-20lu ",
611 lnames
[i
].name
, rlim
[i
].rlim_cur
);
613 if (rlim
[i
].rlim_max
== RLIM_INFINITY
)
614 seq_printf(m
, "%-20s ", "unlimited");
616 seq_printf(m
, "%-20lu ", rlim
[i
].rlim_max
);
619 seq_printf(m
, "%-10s\n", lnames
[i
].unit
);
627 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
628 static int proc_pid_syscall(struct seq_file
*m
, struct pid_namespace
*ns
,
629 struct pid
*pid
, struct task_struct
*task
)
631 struct syscall_info info
;
632 u64
*args
= &info
.data
.args
[0];
635 res
= lock_trace(task
);
639 if (task_current_syscall(task
, &info
))
640 seq_puts(m
, "running\n");
641 else if (info
.data
.nr
< 0)
642 seq_printf(m
, "%d 0x%llx 0x%llx\n",
643 info
.data
.nr
, info
.sp
, info
.data
.instruction_pointer
);
646 "%d 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx\n",
648 args
[0], args
[1], args
[2], args
[3], args
[4], args
[5],
649 info
.sp
, info
.data
.instruction_pointer
);
654 #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
656 /************************************************************************/
657 /* Here the fs part begins */
658 /************************************************************************/
660 /* permission checks */
661 static int proc_fd_access_allowed(struct inode
*inode
)
663 struct task_struct
*task
;
665 /* Allow access to a task's file descriptors if it is us or we
666 * may use ptrace attach to the process and find out that
669 task
= get_proc_task(inode
);
671 allowed
= ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
);
672 put_task_struct(task
);
677 int proc_setattr(struct dentry
*dentry
, struct iattr
*attr
)
680 struct inode
*inode
= d_inode(dentry
);
682 if (attr
->ia_valid
& ATTR_MODE
)
685 error
= setattr_prepare(dentry
, attr
);
689 setattr_copy(inode
, attr
);
690 mark_inode_dirty(inode
);
695 * May current process learn task's sched/cmdline info (for hide_pid_min=1)
696 * or euid/egid (for hide_pid_min=2)?
698 static bool has_pid_permissions(struct pid_namespace
*pid
,
699 struct task_struct
*task
,
702 if (pid
->hide_pid
< hide_pid_min
)
704 if (in_group_p(pid
->pid_gid
))
706 return ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
);
710 static int proc_pid_permission(struct inode
*inode
, int mask
)
712 struct pid_namespace
*pid
= proc_pid_ns(inode
);
713 struct task_struct
*task
;
716 task
= get_proc_task(inode
);
719 has_perms
= has_pid_permissions(pid
, task
, HIDEPID_NO_ACCESS
);
720 put_task_struct(task
);
723 if (pid
->hide_pid
== HIDEPID_INVISIBLE
) {
725 * Let's make getdents(), stat(), and open()
726 * consistent with each other. If a process
727 * may not stat() a file, it shouldn't be seen
735 return generic_permission(inode
, mask
);
740 static const struct inode_operations proc_def_inode_operations
= {
741 .setattr
= proc_setattr
,
744 static int proc_single_show(struct seq_file
*m
, void *v
)
746 struct inode
*inode
= m
->private;
747 struct pid_namespace
*ns
= proc_pid_ns(inode
);
748 struct pid
*pid
= proc_pid(inode
);
749 struct task_struct
*task
;
752 task
= get_pid_task(pid
, PIDTYPE_PID
);
756 ret
= PROC_I(inode
)->op
.proc_show(m
, ns
, pid
, task
);
758 put_task_struct(task
);
762 static int proc_single_open(struct inode
*inode
, struct file
*filp
)
764 return single_open(filp
, proc_single_show
, inode
);
767 static const struct file_operations proc_single_file_operations
= {
768 .open
= proc_single_open
,
771 .release
= single_release
,
775 struct mm_struct
*proc_mem_open(struct inode
*inode
, unsigned int mode
)
777 struct task_struct
*task
= get_proc_task(inode
);
778 struct mm_struct
*mm
= ERR_PTR(-ESRCH
);
781 mm
= mm_access(task
, mode
| PTRACE_MODE_FSCREDS
);
782 put_task_struct(task
);
784 if (!IS_ERR_OR_NULL(mm
)) {
785 /* ensure this mm_struct can't be freed */
787 /* but do not pin its memory */
795 static int __mem_open(struct inode
*inode
, struct file
*file
, unsigned int mode
)
797 struct mm_struct
*mm
= proc_mem_open(inode
, mode
);
802 file
->private_data
= mm
;
806 static int mem_open(struct inode
*inode
, struct file
*file
)
808 int ret
= __mem_open(inode
, file
, PTRACE_MODE_ATTACH
);
810 /* OK to pass negative loff_t, we can catch out-of-range */
811 file
->f_mode
|= FMODE_UNSIGNED_OFFSET
;
816 static ssize_t
mem_rw(struct file
*file
, char __user
*buf
,
817 size_t count
, loff_t
*ppos
, int write
)
819 struct mm_struct
*mm
= file
->private_data
;
820 unsigned long addr
= *ppos
;
828 page
= (char *)__get_free_page(GFP_KERNEL
);
833 if (!mmget_not_zero(mm
))
836 flags
= FOLL_FORCE
| (write
? FOLL_WRITE
: 0);
839 int this_len
= min_t(int, count
, PAGE_SIZE
);
841 if (write
&& copy_from_user(page
, buf
, this_len
)) {
846 this_len
= access_remote_vm(mm
, addr
, page
, this_len
, flags
);
853 if (!write
&& copy_to_user(buf
, page
, this_len
)) {
867 free_page((unsigned long) page
);
871 static ssize_t
mem_read(struct file
*file
, char __user
*buf
,
872 size_t count
, loff_t
*ppos
)
874 return mem_rw(file
, buf
, count
, ppos
, 0);
877 static ssize_t
mem_write(struct file
*file
, const char __user
*buf
,
878 size_t count
, loff_t
*ppos
)
880 return mem_rw(file
, (char __user
*)buf
, count
, ppos
, 1);
883 loff_t
mem_lseek(struct file
*file
, loff_t offset
, int orig
)
887 file
->f_pos
= offset
;
890 file
->f_pos
+= offset
;
895 force_successful_syscall_return();
899 static int mem_release(struct inode
*inode
, struct file
*file
)
901 struct mm_struct
*mm
= file
->private_data
;
907 static const struct file_operations proc_mem_operations
= {
912 .release
= mem_release
,
915 static int environ_open(struct inode
*inode
, struct file
*file
)
917 return __mem_open(inode
, file
, PTRACE_MODE_READ
);
920 static ssize_t
environ_read(struct file
*file
, char __user
*buf
,
921 size_t count
, loff_t
*ppos
)
924 unsigned long src
= *ppos
;
926 struct mm_struct
*mm
= file
->private_data
;
927 unsigned long env_start
, env_end
;
929 /* Ensure the process spawned far enough to have an environment. */
930 if (!mm
|| !mm
->env_end
)
933 page
= (char *)__get_free_page(GFP_KERNEL
);
938 if (!mmget_not_zero(mm
))
941 spin_lock(&mm
->arg_lock
);
942 env_start
= mm
->env_start
;
943 env_end
= mm
->env_end
;
944 spin_unlock(&mm
->arg_lock
);
947 size_t this_len
, max_len
;
950 if (src
>= (env_end
- env_start
))
953 this_len
= env_end
- (env_start
+ src
);
955 max_len
= min_t(size_t, PAGE_SIZE
, count
);
956 this_len
= min(max_len
, this_len
);
958 retval
= access_remote_vm(mm
, (env_start
+ src
), page
, this_len
, FOLL_ANON
);
965 if (copy_to_user(buf
, page
, retval
)) {
979 free_page((unsigned long) page
);
983 static const struct file_operations proc_environ_operations
= {
984 .open
= environ_open
,
985 .read
= environ_read
,
986 .llseek
= generic_file_llseek
,
987 .release
= mem_release
,
990 static int auxv_open(struct inode
*inode
, struct file
*file
)
992 return __mem_open(inode
, file
, PTRACE_MODE_READ_FSCREDS
);
995 static ssize_t
auxv_read(struct file
*file
, char __user
*buf
,
996 size_t count
, loff_t
*ppos
)
998 struct mm_struct
*mm
= file
->private_data
;
999 unsigned int nwords
= 0;
1005 } while (mm
->saved_auxv
[nwords
- 2] != 0); /* AT_NULL */
1006 return simple_read_from_buffer(buf
, count
, ppos
, mm
->saved_auxv
,
1007 nwords
* sizeof(mm
->saved_auxv
[0]));
1010 static const struct file_operations proc_auxv_operations
= {
1013 .llseek
= generic_file_llseek
,
1014 .release
= mem_release
,
1017 static ssize_t
oom_adj_read(struct file
*file
, char __user
*buf
, size_t count
,
1020 struct task_struct
*task
= get_proc_task(file_inode(file
));
1021 char buffer
[PROC_NUMBUF
];
1022 int oom_adj
= OOM_ADJUST_MIN
;
1027 if (task
->signal
->oom_score_adj
== OOM_SCORE_ADJ_MAX
)
1028 oom_adj
= OOM_ADJUST_MAX
;
1030 oom_adj
= (task
->signal
->oom_score_adj
* -OOM_DISABLE
) /
1032 put_task_struct(task
);
1033 len
= snprintf(buffer
, sizeof(buffer
), "%d\n", oom_adj
);
1034 return simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
1037 static int __set_oom_adj(struct file
*file
, int oom_adj
, bool legacy
)
1039 static DEFINE_MUTEX(oom_adj_mutex
);
1040 struct mm_struct
*mm
= NULL
;
1041 struct task_struct
*task
;
1044 task
= get_proc_task(file_inode(file
));
1048 mutex_lock(&oom_adj_mutex
);
1050 if (oom_adj
< task
->signal
->oom_score_adj
&&
1051 !capable(CAP_SYS_RESOURCE
)) {
1056 * /proc/pid/oom_adj is provided for legacy purposes, ask users to use
1057 * /proc/pid/oom_score_adj instead.
1059 pr_warn_once("%s (%d): /proc/%d/oom_adj is deprecated, please use /proc/%d/oom_score_adj instead.\n",
1060 current
->comm
, task_pid_nr(current
), task_pid_nr(task
),
1063 if ((short)oom_adj
< task
->signal
->oom_score_adj_min
&&
1064 !capable(CAP_SYS_RESOURCE
)) {
1071 * Make sure we will check other processes sharing the mm if this is
1072 * not vfrok which wants its own oom_score_adj.
1073 * pin the mm so it doesn't go away and get reused after task_unlock
1075 if (!task
->vfork_done
) {
1076 struct task_struct
*p
= find_lock_task_mm(task
);
1079 if (atomic_read(&p
->mm
->mm_users
) > 1) {
1087 task
->signal
->oom_score_adj
= oom_adj
;
1088 if (!legacy
&& has_capability_noaudit(current
, CAP_SYS_RESOURCE
))
1089 task
->signal
->oom_score_adj_min
= (short)oom_adj
;
1090 trace_oom_score_adj_update(task
);
1093 struct task_struct
*p
;
1096 for_each_process(p
) {
1097 if (same_thread_group(task
, p
))
1100 /* do not touch kernel threads or the global init */
1101 if (p
->flags
& PF_KTHREAD
|| is_global_init(p
))
1105 if (!p
->vfork_done
&& process_shares_mm(p
, mm
)) {
1106 p
->signal
->oom_score_adj
= oom_adj
;
1107 if (!legacy
&& has_capability_noaudit(current
, CAP_SYS_RESOURCE
))
1108 p
->signal
->oom_score_adj_min
= (short)oom_adj
;
1116 mutex_unlock(&oom_adj_mutex
);
1117 put_task_struct(task
);
1122 * /proc/pid/oom_adj exists solely for backwards compatibility with previous
1123 * kernels. The effective policy is defined by oom_score_adj, which has a
1124 * different scale: oom_adj grew exponentially and oom_score_adj grows linearly.
1125 * Values written to oom_adj are simply mapped linearly to oom_score_adj.
1126 * Processes that become oom disabled via oom_adj will still be oom disabled
1127 * with this implementation.
1129 * oom_adj cannot be removed since existing userspace binaries use it.
1131 static ssize_t
oom_adj_write(struct file
*file
, const char __user
*buf
,
1132 size_t count
, loff_t
*ppos
)
1134 char buffer
[PROC_NUMBUF
];
1138 memset(buffer
, 0, sizeof(buffer
));
1139 if (count
> sizeof(buffer
) - 1)
1140 count
= sizeof(buffer
) - 1;
1141 if (copy_from_user(buffer
, buf
, count
)) {
1146 err
= kstrtoint(strstrip(buffer
), 0, &oom_adj
);
1149 if ((oom_adj
< OOM_ADJUST_MIN
|| oom_adj
> OOM_ADJUST_MAX
) &&
1150 oom_adj
!= OOM_DISABLE
) {
1156 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
1157 * value is always attainable.
1159 if (oom_adj
== OOM_ADJUST_MAX
)
1160 oom_adj
= OOM_SCORE_ADJ_MAX
;
1162 oom_adj
= (oom_adj
* OOM_SCORE_ADJ_MAX
) / -OOM_DISABLE
;
1164 err
= __set_oom_adj(file
, oom_adj
, true);
1166 return err
< 0 ? err
: count
;
1169 static const struct file_operations proc_oom_adj_operations
= {
1170 .read
= oom_adj_read
,
1171 .write
= oom_adj_write
,
1172 .llseek
= generic_file_llseek
,
1175 static ssize_t
oom_score_adj_read(struct file
*file
, char __user
*buf
,
1176 size_t count
, loff_t
*ppos
)
1178 struct task_struct
*task
= get_proc_task(file_inode(file
));
1179 char buffer
[PROC_NUMBUF
];
1180 short oom_score_adj
= OOM_SCORE_ADJ_MIN
;
1185 oom_score_adj
= task
->signal
->oom_score_adj
;
1186 put_task_struct(task
);
1187 len
= snprintf(buffer
, sizeof(buffer
), "%hd\n", oom_score_adj
);
1188 return simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
1191 static ssize_t
oom_score_adj_write(struct file
*file
, const char __user
*buf
,
1192 size_t count
, loff_t
*ppos
)
1194 char buffer
[PROC_NUMBUF
];
1198 memset(buffer
, 0, sizeof(buffer
));
1199 if (count
> sizeof(buffer
) - 1)
1200 count
= sizeof(buffer
) - 1;
1201 if (copy_from_user(buffer
, buf
, count
)) {
1206 err
= kstrtoint(strstrip(buffer
), 0, &oom_score_adj
);
1209 if (oom_score_adj
< OOM_SCORE_ADJ_MIN
||
1210 oom_score_adj
> OOM_SCORE_ADJ_MAX
) {
1215 err
= __set_oom_adj(file
, oom_score_adj
, false);
1217 return err
< 0 ? err
: count
;
1220 static const struct file_operations proc_oom_score_adj_operations
= {
1221 .read
= oom_score_adj_read
,
1222 .write
= oom_score_adj_write
,
1223 .llseek
= default_llseek
,
1227 #define TMPBUFLEN 11
1228 static ssize_t
proc_loginuid_read(struct file
* file
, char __user
* buf
,
1229 size_t count
, loff_t
*ppos
)
1231 struct inode
* inode
= file_inode(file
);
1232 struct task_struct
*task
= get_proc_task(inode
);
1234 char tmpbuf
[TMPBUFLEN
];
1238 length
= scnprintf(tmpbuf
, TMPBUFLEN
, "%u",
1239 from_kuid(file
->f_cred
->user_ns
,
1240 audit_get_loginuid(task
)));
1241 put_task_struct(task
);
1242 return simple_read_from_buffer(buf
, count
, ppos
, tmpbuf
, length
);
1245 static ssize_t
proc_loginuid_write(struct file
* file
, const char __user
* buf
,
1246 size_t count
, loff_t
*ppos
)
1248 struct inode
* inode
= file_inode(file
);
1254 if (current
!= pid_task(proc_pid(inode
), PIDTYPE_PID
)) {
1261 /* No partial writes. */
1265 rv
= kstrtou32_from_user(buf
, count
, 10, &loginuid
);
1269 /* is userspace tring to explicitly UNSET the loginuid? */
1270 if (loginuid
== AUDIT_UID_UNSET
) {
1271 kloginuid
= INVALID_UID
;
1273 kloginuid
= make_kuid(file
->f_cred
->user_ns
, loginuid
);
1274 if (!uid_valid(kloginuid
))
1278 rv
= audit_set_loginuid(kloginuid
);
1284 static const struct file_operations proc_loginuid_operations
= {
1285 .read
= proc_loginuid_read
,
1286 .write
= proc_loginuid_write
,
1287 .llseek
= generic_file_llseek
,
1290 static ssize_t
proc_sessionid_read(struct file
* file
, char __user
* buf
,
1291 size_t count
, loff_t
*ppos
)
1293 struct inode
* inode
= file_inode(file
);
1294 struct task_struct
*task
= get_proc_task(inode
);
1296 char tmpbuf
[TMPBUFLEN
];
1300 length
= scnprintf(tmpbuf
, TMPBUFLEN
, "%u",
1301 audit_get_sessionid(task
));
1302 put_task_struct(task
);
1303 return simple_read_from_buffer(buf
, count
, ppos
, tmpbuf
, length
);
1306 static const struct file_operations proc_sessionid_operations
= {
1307 .read
= proc_sessionid_read
,
1308 .llseek
= generic_file_llseek
,
1312 #ifdef CONFIG_FAULT_INJECTION
1313 static ssize_t
proc_fault_inject_read(struct file
* file
, char __user
* buf
,
1314 size_t count
, loff_t
*ppos
)
1316 struct task_struct
*task
= get_proc_task(file_inode(file
));
1317 char buffer
[PROC_NUMBUF
];
1323 make_it_fail
= task
->make_it_fail
;
1324 put_task_struct(task
);
1326 len
= snprintf(buffer
, sizeof(buffer
), "%i\n", make_it_fail
);
1328 return simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
1331 static ssize_t
proc_fault_inject_write(struct file
* file
,
1332 const char __user
* buf
, size_t count
, loff_t
*ppos
)
1334 struct task_struct
*task
;
1335 char buffer
[PROC_NUMBUF
];
1339 if (!capable(CAP_SYS_RESOURCE
))
1341 memset(buffer
, 0, sizeof(buffer
));
1342 if (count
> sizeof(buffer
) - 1)
1343 count
= sizeof(buffer
) - 1;
1344 if (copy_from_user(buffer
, buf
, count
))
1346 rv
= kstrtoint(strstrip(buffer
), 0, &make_it_fail
);
1349 if (make_it_fail
< 0 || make_it_fail
> 1)
1352 task
= get_proc_task(file_inode(file
));
1355 task
->make_it_fail
= make_it_fail
;
1356 put_task_struct(task
);
1361 static const struct file_operations proc_fault_inject_operations
= {
1362 .read
= proc_fault_inject_read
,
1363 .write
= proc_fault_inject_write
,
1364 .llseek
= generic_file_llseek
,
1367 static ssize_t
proc_fail_nth_write(struct file
*file
, const char __user
*buf
,
1368 size_t count
, loff_t
*ppos
)
1370 struct task_struct
*task
;
1374 err
= kstrtouint_from_user(buf
, count
, 0, &n
);
1378 task
= get_proc_task(file_inode(file
));
1382 put_task_struct(task
);
1387 static ssize_t
proc_fail_nth_read(struct file
*file
, char __user
*buf
,
1388 size_t count
, loff_t
*ppos
)
1390 struct task_struct
*task
;
1391 char numbuf
[PROC_NUMBUF
];
1394 task
= get_proc_task(file_inode(file
));
1397 len
= snprintf(numbuf
, sizeof(numbuf
), "%u\n", task
->fail_nth
);
1398 put_task_struct(task
);
1399 return simple_read_from_buffer(buf
, count
, ppos
, numbuf
, len
);
1402 static const struct file_operations proc_fail_nth_operations
= {
1403 .read
= proc_fail_nth_read
,
1404 .write
= proc_fail_nth_write
,
1409 #ifdef CONFIG_SCHED_DEBUG
1411 * Print out various scheduling related per-task fields:
1413 static int sched_show(struct seq_file
*m
, void *v
)
1415 struct inode
*inode
= m
->private;
1416 struct pid_namespace
*ns
= proc_pid_ns(inode
);
1417 struct task_struct
*p
;
1419 p
= get_proc_task(inode
);
1422 proc_sched_show_task(p
, ns
, m
);
1430 sched_write(struct file
*file
, const char __user
*buf
,
1431 size_t count
, loff_t
*offset
)
1433 struct inode
*inode
= file_inode(file
);
1434 struct task_struct
*p
;
1436 p
= get_proc_task(inode
);
1439 proc_sched_set_task(p
);
1446 static int sched_open(struct inode
*inode
, struct file
*filp
)
1448 return single_open(filp
, sched_show
, inode
);
1451 static const struct file_operations proc_pid_sched_operations
= {
1454 .write
= sched_write
,
1455 .llseek
= seq_lseek
,
1456 .release
= single_release
,
1461 #ifdef CONFIG_SCHED_AUTOGROUP
1463 * Print out autogroup related information:
1465 static int sched_autogroup_show(struct seq_file
*m
, void *v
)
1467 struct inode
*inode
= m
->private;
1468 struct task_struct
*p
;
1470 p
= get_proc_task(inode
);
1473 proc_sched_autogroup_show_task(p
, m
);
1481 sched_autogroup_write(struct file
*file
, const char __user
*buf
,
1482 size_t count
, loff_t
*offset
)
1484 struct inode
*inode
= file_inode(file
);
1485 struct task_struct
*p
;
1486 char buffer
[PROC_NUMBUF
];
1490 memset(buffer
, 0, sizeof(buffer
));
1491 if (count
> sizeof(buffer
) - 1)
1492 count
= sizeof(buffer
) - 1;
1493 if (copy_from_user(buffer
, buf
, count
))
1496 err
= kstrtoint(strstrip(buffer
), 0, &nice
);
1500 p
= get_proc_task(inode
);
1504 err
= proc_sched_autogroup_set_nice(p
, nice
);
1513 static int sched_autogroup_open(struct inode
*inode
, struct file
*filp
)
1517 ret
= single_open(filp
, sched_autogroup_show
, NULL
);
1519 struct seq_file
*m
= filp
->private_data
;
1526 static const struct file_operations proc_pid_sched_autogroup_operations
= {
1527 .open
= sched_autogroup_open
,
1529 .write
= sched_autogroup_write
,
1530 .llseek
= seq_lseek
,
1531 .release
= single_release
,
1534 #endif /* CONFIG_SCHED_AUTOGROUP */
1536 static ssize_t
comm_write(struct file
*file
, const char __user
*buf
,
1537 size_t count
, loff_t
*offset
)
1539 struct inode
*inode
= file_inode(file
);
1540 struct task_struct
*p
;
1541 char buffer
[TASK_COMM_LEN
];
1542 const size_t maxlen
= sizeof(buffer
) - 1;
1544 memset(buffer
, 0, sizeof(buffer
));
1545 if (copy_from_user(buffer
, buf
, count
> maxlen
? maxlen
: count
))
1548 p
= get_proc_task(inode
);
1552 if (same_thread_group(current
, p
))
1553 set_task_comm(p
, buffer
);
1562 static int comm_show(struct seq_file
*m
, void *v
)
1564 struct inode
*inode
= m
->private;
1565 struct task_struct
*p
;
1567 p
= get_proc_task(inode
);
1571 proc_task_name(m
, p
, false);
1579 static int comm_open(struct inode
*inode
, struct file
*filp
)
1581 return single_open(filp
, comm_show
, inode
);
1584 static const struct file_operations proc_pid_set_comm_operations
= {
1587 .write
= comm_write
,
1588 .llseek
= seq_lseek
,
1589 .release
= single_release
,
1592 static int proc_exe_link(struct dentry
*dentry
, struct path
*exe_path
)
1594 struct task_struct
*task
;
1595 struct file
*exe_file
;
1597 task
= get_proc_task(d_inode(dentry
));
1600 exe_file
= get_task_exe_file(task
);
1601 put_task_struct(task
);
1603 *exe_path
= exe_file
->f_path
;
1604 path_get(&exe_file
->f_path
);
1611 static const char *proc_pid_get_link(struct dentry
*dentry
,
1612 struct inode
*inode
,
1613 struct delayed_call
*done
)
1616 int error
= -EACCES
;
1619 return ERR_PTR(-ECHILD
);
1621 /* Are we allowed to snoop on the tasks file descriptors? */
1622 if (!proc_fd_access_allowed(inode
))
1625 error
= PROC_I(inode
)->op
.proc_get_link(dentry
, &path
);
1629 nd_jump_link(&path
);
1632 return ERR_PTR(error
);
1635 static int do_proc_readlink(struct path
*path
, char __user
*buffer
, int buflen
)
1637 char *tmp
= (char *)__get_free_page(GFP_KERNEL
);
1644 pathname
= d_path(path
, tmp
, PAGE_SIZE
);
1645 len
= PTR_ERR(pathname
);
1646 if (IS_ERR(pathname
))
1648 len
= tmp
+ PAGE_SIZE
- 1 - pathname
;
1652 if (copy_to_user(buffer
, pathname
, len
))
1655 free_page((unsigned long)tmp
);
1659 static int proc_pid_readlink(struct dentry
* dentry
, char __user
* buffer
, int buflen
)
1661 int error
= -EACCES
;
1662 struct inode
*inode
= d_inode(dentry
);
1665 /* Are we allowed to snoop on the tasks file descriptors? */
1666 if (!proc_fd_access_allowed(inode
))
1669 error
= PROC_I(inode
)->op
.proc_get_link(dentry
, &path
);
1673 error
= do_proc_readlink(&path
, buffer
, buflen
);
1679 const struct inode_operations proc_pid_link_inode_operations
= {
1680 .readlink
= proc_pid_readlink
,
1681 .get_link
= proc_pid_get_link
,
1682 .setattr
= proc_setattr
,
1686 /* building an inode */
1688 void task_dump_owner(struct task_struct
*task
, umode_t mode
,
1689 kuid_t
*ruid
, kgid_t
*rgid
)
1691 /* Depending on the state of dumpable compute who should own a
1692 * proc file for a task.
1694 const struct cred
*cred
;
1698 if (unlikely(task
->flags
& PF_KTHREAD
)) {
1699 *ruid
= GLOBAL_ROOT_UID
;
1700 *rgid
= GLOBAL_ROOT_GID
;
1704 /* Default to the tasks effective ownership */
1706 cred
= __task_cred(task
);
1712 * Before the /proc/pid/status file was created the only way to read
1713 * the effective uid of a /process was to stat /proc/pid. Reading
1714 * /proc/pid/status is slow enough that procps and other packages
1715 * kept stating /proc/pid. To keep the rules in /proc simple I have
1716 * made this apply to all per process world readable and executable
1719 if (mode
!= (S_IFDIR
|S_IRUGO
|S_IXUGO
)) {
1720 struct mm_struct
*mm
;
1723 /* Make non-dumpable tasks owned by some root */
1725 if (get_dumpable(mm
) != SUID_DUMP_USER
) {
1726 struct user_namespace
*user_ns
= mm
->user_ns
;
1728 uid
= make_kuid(user_ns
, 0);
1729 if (!uid_valid(uid
))
1730 uid
= GLOBAL_ROOT_UID
;
1732 gid
= make_kgid(user_ns
, 0);
1733 if (!gid_valid(gid
))
1734 gid
= GLOBAL_ROOT_GID
;
1737 uid
= GLOBAL_ROOT_UID
;
1738 gid
= GLOBAL_ROOT_GID
;
1746 struct inode
*proc_pid_make_inode(struct super_block
* sb
,
1747 struct task_struct
*task
, umode_t mode
)
1749 struct inode
* inode
;
1750 struct proc_inode
*ei
;
1752 /* We need a new inode */
1754 inode
= new_inode(sb
);
1760 inode
->i_mode
= mode
;
1761 inode
->i_ino
= get_next_ino();
1762 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= current_time(inode
);
1763 inode
->i_op
= &proc_def_inode_operations
;
1766 * grab the reference to task.
1768 ei
->pid
= get_task_pid(task
, PIDTYPE_PID
);
1772 task_dump_owner(task
, 0, &inode
->i_uid
, &inode
->i_gid
);
1773 security_task_to_inode(task
, inode
);
1783 int pid_getattr(const struct path
*path
, struct kstat
*stat
,
1784 u32 request_mask
, unsigned int query_flags
)
1786 struct inode
*inode
= d_inode(path
->dentry
);
1787 struct pid_namespace
*pid
= proc_pid_ns(inode
);
1788 struct task_struct
*task
;
1790 generic_fillattr(inode
, stat
);
1792 stat
->uid
= GLOBAL_ROOT_UID
;
1793 stat
->gid
= GLOBAL_ROOT_GID
;
1795 task
= pid_task(proc_pid(inode
), PIDTYPE_PID
);
1797 if (!has_pid_permissions(pid
, task
, HIDEPID_INVISIBLE
)) {
1800 * This doesn't prevent learning whether PID exists,
1801 * it only makes getattr() consistent with readdir().
1805 task_dump_owner(task
, inode
->i_mode
, &stat
->uid
, &stat
->gid
);
1814 * Set <pid>/... inode ownership (can change due to setuid(), etc.)
1816 void pid_update_inode(struct task_struct
*task
, struct inode
*inode
)
1818 task_dump_owner(task
, inode
->i_mode
, &inode
->i_uid
, &inode
->i_gid
);
1820 inode
->i_mode
&= ~(S_ISUID
| S_ISGID
);
1821 security_task_to_inode(task
, inode
);
1825 * Rewrite the inode's ownerships here because the owning task may have
1826 * performed a setuid(), etc.
1829 static int pid_revalidate(struct dentry
*dentry
, unsigned int flags
)
1831 struct inode
*inode
;
1832 struct task_struct
*task
;
1834 if (flags
& LOOKUP_RCU
)
1837 inode
= d_inode(dentry
);
1838 task
= get_proc_task(inode
);
1841 pid_update_inode(task
, inode
);
1842 put_task_struct(task
);
1848 static inline bool proc_inode_is_dead(struct inode
*inode
)
1850 return !proc_pid(inode
)->tasks
[PIDTYPE_PID
].first
;
1853 int pid_delete_dentry(const struct dentry
*dentry
)
1855 /* Is the task we represent dead?
1856 * If so, then don't put the dentry on the lru list,
1857 * kill it immediately.
1859 return proc_inode_is_dead(d_inode(dentry
));
1862 const struct dentry_operations pid_dentry_operations
=
1864 .d_revalidate
= pid_revalidate
,
1865 .d_delete
= pid_delete_dentry
,
1871 * Fill a directory entry.
1873 * If possible create the dcache entry and derive our inode number and
1874 * file type from dcache entry.
1876 * Since all of the proc inode numbers are dynamically generated, the inode
1877 * numbers do not exist until the inode is cache. This means creating the
1878 * the dcache entry in readdir is necessary to keep the inode numbers
1879 * reported by readdir in sync with the inode numbers reported
1882 bool proc_fill_cache(struct file
*file
, struct dir_context
*ctx
,
1883 const char *name
, unsigned int len
,
1884 instantiate_t instantiate
, struct task_struct
*task
, const void *ptr
)
1886 struct dentry
*child
, *dir
= file
->f_path
.dentry
;
1887 struct qstr qname
= QSTR_INIT(name
, len
);
1888 struct inode
*inode
;
1889 unsigned type
= DT_UNKNOWN
;
1892 child
= d_hash_and_lookup(dir
, &qname
);
1894 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq
);
1895 child
= d_alloc_parallel(dir
, &qname
, &wq
);
1897 goto end_instantiate
;
1898 if (d_in_lookup(child
)) {
1900 res
= instantiate(child
, task
, ptr
);
1901 d_lookup_done(child
);
1902 if (unlikely(res
)) {
1906 goto end_instantiate
;
1910 inode
= d_inode(child
);
1912 type
= inode
->i_mode
>> 12;
1915 return dir_emit(ctx
, name
, len
, ino
, type
);
1919 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1920 * which represent vma start and end addresses.
1922 static int dname_to_vma_addr(struct dentry
*dentry
,
1923 unsigned long *start
, unsigned long *end
)
1925 const char *str
= dentry
->d_name
.name
;
1926 unsigned long long sval
, eval
;
1929 if (str
[0] == '0' && str
[1] != '-')
1931 len
= _parse_integer(str
, 16, &sval
);
1932 if (len
& KSTRTOX_OVERFLOW
)
1934 if (sval
!= (unsigned long)sval
)
1942 if (str
[0] == '0' && str
[1])
1944 len
= _parse_integer(str
, 16, &eval
);
1945 if (len
& KSTRTOX_OVERFLOW
)
1947 if (eval
!= (unsigned long)eval
)
1960 static int map_files_d_revalidate(struct dentry
*dentry
, unsigned int flags
)
1962 unsigned long vm_start
, vm_end
;
1963 bool exact_vma_exists
= false;
1964 struct mm_struct
*mm
= NULL
;
1965 struct task_struct
*task
;
1966 struct inode
*inode
;
1969 if (flags
& LOOKUP_RCU
)
1972 inode
= d_inode(dentry
);
1973 task
= get_proc_task(inode
);
1977 mm
= mm_access(task
, PTRACE_MODE_READ_FSCREDS
);
1978 if (IS_ERR_OR_NULL(mm
))
1981 if (!dname_to_vma_addr(dentry
, &vm_start
, &vm_end
)) {
1982 status
= down_read_killable(&mm
->mmap_sem
);
1984 exact_vma_exists
= !!find_exact_vma(mm
, vm_start
,
1986 up_read(&mm
->mmap_sem
);
1992 if (exact_vma_exists
) {
1993 task_dump_owner(task
, 0, &inode
->i_uid
, &inode
->i_gid
);
1995 security_task_to_inode(task
, inode
);
2000 put_task_struct(task
);
2006 static const struct dentry_operations tid_map_files_dentry_operations
= {
2007 .d_revalidate
= map_files_d_revalidate
,
2008 .d_delete
= pid_delete_dentry
,
2011 static int map_files_get_link(struct dentry
*dentry
, struct path
*path
)
2013 unsigned long vm_start
, vm_end
;
2014 struct vm_area_struct
*vma
;
2015 struct task_struct
*task
;
2016 struct mm_struct
*mm
;
2020 task
= get_proc_task(d_inode(dentry
));
2024 mm
= get_task_mm(task
);
2025 put_task_struct(task
);
2029 rc
= dname_to_vma_addr(dentry
, &vm_start
, &vm_end
);
2033 rc
= down_read_killable(&mm
->mmap_sem
);
2038 vma
= find_exact_vma(mm
, vm_start
, vm_end
);
2039 if (vma
&& vma
->vm_file
) {
2040 *path
= vma
->vm_file
->f_path
;
2044 up_read(&mm
->mmap_sem
);
2052 struct map_files_info
{
2053 unsigned long start
;
2059 * Only allow CAP_SYS_ADMIN to follow the links, due to concerns about how the
2060 * symlinks may be used to bypass permissions on ancestor directories in the
2061 * path to the file in question.
2064 proc_map_files_get_link(struct dentry
*dentry
,
2065 struct inode
*inode
,
2066 struct delayed_call
*done
)
2068 if (!capable(CAP_SYS_ADMIN
))
2069 return ERR_PTR(-EPERM
);
2071 return proc_pid_get_link(dentry
, inode
, done
);
2075 * Identical to proc_pid_link_inode_operations except for get_link()
2077 static const struct inode_operations proc_map_files_link_inode_operations
= {
2078 .readlink
= proc_pid_readlink
,
2079 .get_link
= proc_map_files_get_link
,
2080 .setattr
= proc_setattr
,
2083 static struct dentry
*
2084 proc_map_files_instantiate(struct dentry
*dentry
,
2085 struct task_struct
*task
, const void *ptr
)
2087 fmode_t mode
= (fmode_t
)(unsigned long)ptr
;
2088 struct proc_inode
*ei
;
2089 struct inode
*inode
;
2091 inode
= proc_pid_make_inode(dentry
->d_sb
, task
, S_IFLNK
|
2092 ((mode
& FMODE_READ
) ? S_IRUSR
: 0) |
2093 ((mode
& FMODE_WRITE
) ? S_IWUSR
: 0));
2095 return ERR_PTR(-ENOENT
);
2098 ei
->op
.proc_get_link
= map_files_get_link
;
2100 inode
->i_op
= &proc_map_files_link_inode_operations
;
2103 d_set_d_op(dentry
, &tid_map_files_dentry_operations
);
2104 return d_splice_alias(inode
, dentry
);
2107 static struct dentry
*proc_map_files_lookup(struct inode
*dir
,
2108 struct dentry
*dentry
, unsigned int flags
)
2110 unsigned long vm_start
, vm_end
;
2111 struct vm_area_struct
*vma
;
2112 struct task_struct
*task
;
2113 struct dentry
*result
;
2114 struct mm_struct
*mm
;
2116 result
= ERR_PTR(-ENOENT
);
2117 task
= get_proc_task(dir
);
2121 result
= ERR_PTR(-EACCES
);
2122 if (!ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
))
2125 result
= ERR_PTR(-ENOENT
);
2126 if (dname_to_vma_addr(dentry
, &vm_start
, &vm_end
))
2129 mm
= get_task_mm(task
);
2133 result
= ERR_PTR(-EINTR
);
2134 if (down_read_killable(&mm
->mmap_sem
))
2137 result
= ERR_PTR(-ENOENT
);
2138 vma
= find_exact_vma(mm
, vm_start
, vm_end
);
2143 result
= proc_map_files_instantiate(dentry
, task
,
2144 (void *)(unsigned long)vma
->vm_file
->f_mode
);
2147 up_read(&mm
->mmap_sem
);
2151 put_task_struct(task
);
2156 static const struct inode_operations proc_map_files_inode_operations
= {
2157 .lookup
= proc_map_files_lookup
,
2158 .permission
= proc_fd_permission
,
2159 .setattr
= proc_setattr
,
2163 proc_map_files_readdir(struct file
*file
, struct dir_context
*ctx
)
2165 struct vm_area_struct
*vma
;
2166 struct task_struct
*task
;
2167 struct mm_struct
*mm
;
2168 unsigned long nr_files
, pos
, i
;
2169 GENRADIX(struct map_files_info
) fa
;
2170 struct map_files_info
*p
;
2176 task
= get_proc_task(file_inode(file
));
2181 if (!ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
))
2185 if (!dir_emit_dots(file
, ctx
))
2188 mm
= get_task_mm(task
);
2192 ret
= down_read_killable(&mm
->mmap_sem
);
2201 * We need two passes here:
2203 * 1) Collect vmas of mapped files with mmap_sem taken
2204 * 2) Release mmap_sem and instantiate entries
2206 * otherwise we get lockdep complained, since filldir()
2207 * routine might require mmap_sem taken in might_fault().
2210 for (vma
= mm
->mmap
, pos
= 2; vma
; vma
= vma
->vm_next
) {
2213 if (++pos
<= ctx
->pos
)
2216 p
= genradix_ptr_alloc(&fa
, nr_files
++, GFP_KERNEL
);
2219 up_read(&mm
->mmap_sem
);
2224 p
->start
= vma
->vm_start
;
2225 p
->end
= vma
->vm_end
;
2226 p
->mode
= vma
->vm_file
->f_mode
;
2228 up_read(&mm
->mmap_sem
);
2231 for (i
= 0; i
< nr_files
; i
++) {
2232 char buf
[4 * sizeof(long) + 2]; /* max: %lx-%lx\0 */
2235 p
= genradix_ptr(&fa
, i
);
2236 len
= snprintf(buf
, sizeof(buf
), "%lx-%lx", p
->start
, p
->end
);
2237 if (!proc_fill_cache(file
, ctx
,
2239 proc_map_files_instantiate
,
2241 (void *)(unsigned long)p
->mode
))
2247 put_task_struct(task
);
2253 static const struct file_operations proc_map_files_operations
= {
2254 .read
= generic_read_dir
,
2255 .iterate_shared
= proc_map_files_readdir
,
2256 .llseek
= generic_file_llseek
,
2259 #if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
2260 struct timers_private
{
2262 struct task_struct
*task
;
2263 struct sighand_struct
*sighand
;
2264 struct pid_namespace
*ns
;
2265 unsigned long flags
;
2268 static void *timers_start(struct seq_file
*m
, loff_t
*pos
)
2270 struct timers_private
*tp
= m
->private;
2272 tp
->task
= get_pid_task(tp
->pid
, PIDTYPE_PID
);
2274 return ERR_PTR(-ESRCH
);
2276 tp
->sighand
= lock_task_sighand(tp
->task
, &tp
->flags
);
2278 return ERR_PTR(-ESRCH
);
2280 return seq_list_start(&tp
->task
->signal
->posix_timers
, *pos
);
2283 static void *timers_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2285 struct timers_private
*tp
= m
->private;
2286 return seq_list_next(v
, &tp
->task
->signal
->posix_timers
, pos
);
2289 static void timers_stop(struct seq_file
*m
, void *v
)
2291 struct timers_private
*tp
= m
->private;
2294 unlock_task_sighand(tp
->task
, &tp
->flags
);
2299 put_task_struct(tp
->task
);
2304 static int show_timer(struct seq_file
*m
, void *v
)
2306 struct k_itimer
*timer
;
2307 struct timers_private
*tp
= m
->private;
2309 static const char * const nstr
[] = {
2310 [SIGEV_SIGNAL
] = "signal",
2311 [SIGEV_NONE
] = "none",
2312 [SIGEV_THREAD
] = "thread",
2315 timer
= list_entry((struct list_head
*)v
, struct k_itimer
, list
);
2316 notify
= timer
->it_sigev_notify
;
2318 seq_printf(m
, "ID: %d\n", timer
->it_id
);
2319 seq_printf(m
, "signal: %d/%px\n",
2320 timer
->sigq
->info
.si_signo
,
2321 timer
->sigq
->info
.si_value
.sival_ptr
);
2322 seq_printf(m
, "notify: %s/%s.%d\n",
2323 nstr
[notify
& ~SIGEV_THREAD_ID
],
2324 (notify
& SIGEV_THREAD_ID
) ? "tid" : "pid",
2325 pid_nr_ns(timer
->it_pid
, tp
->ns
));
2326 seq_printf(m
, "ClockID: %d\n", timer
->it_clock
);
2331 static const struct seq_operations proc_timers_seq_ops
= {
2332 .start
= timers_start
,
2333 .next
= timers_next
,
2334 .stop
= timers_stop
,
2338 static int proc_timers_open(struct inode
*inode
, struct file
*file
)
2340 struct timers_private
*tp
;
2342 tp
= __seq_open_private(file
, &proc_timers_seq_ops
,
2343 sizeof(struct timers_private
));
2347 tp
->pid
= proc_pid(inode
);
2348 tp
->ns
= proc_pid_ns(inode
);
2352 static const struct file_operations proc_timers_operations
= {
2353 .open
= proc_timers_open
,
2355 .llseek
= seq_lseek
,
2356 .release
= seq_release_private
,
2360 static ssize_t
timerslack_ns_write(struct file
*file
, const char __user
*buf
,
2361 size_t count
, loff_t
*offset
)
2363 struct inode
*inode
= file_inode(file
);
2364 struct task_struct
*p
;
2368 err
= kstrtoull_from_user(buf
, count
, 10, &slack_ns
);
2372 p
= get_proc_task(inode
);
2378 if (!ns_capable(__task_cred(p
)->user_ns
, CAP_SYS_NICE
)) {
2385 err
= security_task_setscheduler(p
);
2394 p
->timer_slack_ns
= p
->default_timer_slack_ns
;
2396 p
->timer_slack_ns
= slack_ns
;
2405 static int timerslack_ns_show(struct seq_file
*m
, void *v
)
2407 struct inode
*inode
= m
->private;
2408 struct task_struct
*p
;
2411 p
= get_proc_task(inode
);
2417 if (!ns_capable(__task_cred(p
)->user_ns
, CAP_SYS_NICE
)) {
2424 err
= security_task_getscheduler(p
);
2430 seq_printf(m
, "%llu\n", p
->timer_slack_ns
);
2439 static int timerslack_ns_open(struct inode
*inode
, struct file
*filp
)
2441 return single_open(filp
, timerslack_ns_show
, inode
);
2444 static const struct file_operations proc_pid_set_timerslack_ns_operations
= {
2445 .open
= timerslack_ns_open
,
2447 .write
= timerslack_ns_write
,
2448 .llseek
= seq_lseek
,
2449 .release
= single_release
,
2452 static struct dentry
*proc_pident_instantiate(struct dentry
*dentry
,
2453 struct task_struct
*task
, const void *ptr
)
2455 const struct pid_entry
*p
= ptr
;
2456 struct inode
*inode
;
2457 struct proc_inode
*ei
;
2459 inode
= proc_pid_make_inode(dentry
->d_sb
, task
, p
->mode
);
2461 return ERR_PTR(-ENOENT
);
2464 if (S_ISDIR(inode
->i_mode
))
2465 set_nlink(inode
, 2); /* Use getattr to fix if necessary */
2467 inode
->i_op
= p
->iop
;
2469 inode
->i_fop
= p
->fop
;
2471 pid_update_inode(task
, inode
);
2472 d_set_d_op(dentry
, &pid_dentry_operations
);
2473 return d_splice_alias(inode
, dentry
);
2476 static struct dentry
*proc_pident_lookup(struct inode
*dir
,
2477 struct dentry
*dentry
,
2478 const struct pid_entry
*p
,
2479 const struct pid_entry
*end
)
2481 struct task_struct
*task
= get_proc_task(dir
);
2482 struct dentry
*res
= ERR_PTR(-ENOENT
);
2488 * Yes, it does not scale. And it should not. Don't add
2489 * new entries into /proc/<tgid>/ without very good reasons.
2491 for (; p
< end
; p
++) {
2492 if (p
->len
!= dentry
->d_name
.len
)
2494 if (!memcmp(dentry
->d_name
.name
, p
->name
, p
->len
)) {
2495 res
= proc_pident_instantiate(dentry
, task
, p
);
2499 put_task_struct(task
);
2504 static int proc_pident_readdir(struct file
*file
, struct dir_context
*ctx
,
2505 const struct pid_entry
*ents
, unsigned int nents
)
2507 struct task_struct
*task
= get_proc_task(file_inode(file
));
2508 const struct pid_entry
*p
;
2513 if (!dir_emit_dots(file
, ctx
))
2516 if (ctx
->pos
>= nents
+ 2)
2519 for (p
= ents
+ (ctx
->pos
- 2); p
< ents
+ nents
; p
++) {
2520 if (!proc_fill_cache(file
, ctx
, p
->name
, p
->len
,
2521 proc_pident_instantiate
, task
, p
))
2526 put_task_struct(task
);
2530 #ifdef CONFIG_SECURITY
2531 static ssize_t
proc_pid_attr_read(struct file
* file
, char __user
* buf
,
2532 size_t count
, loff_t
*ppos
)
2534 struct inode
* inode
= file_inode(file
);
2537 struct task_struct
*task
= get_proc_task(inode
);
2542 length
= security_getprocattr(task
, PROC_I(inode
)->op
.lsm
,
2543 (char*)file
->f_path
.dentry
->d_name
.name
,
2545 put_task_struct(task
);
2547 length
= simple_read_from_buffer(buf
, count
, ppos
, p
, length
);
2552 static ssize_t
proc_pid_attr_write(struct file
* file
, const char __user
* buf
,
2553 size_t count
, loff_t
*ppos
)
2555 struct inode
* inode
= file_inode(file
);
2556 struct task_struct
*task
;
2561 task
= pid_task(proc_pid(inode
), PIDTYPE_PID
);
2566 /* A task may only write its own attributes. */
2567 if (current
!= task
) {
2571 /* Prevent changes to overridden credentials. */
2572 if (current_cred() != current_real_cred()) {
2578 if (count
> PAGE_SIZE
)
2581 /* No partial writes. */
2585 page
= memdup_user(buf
, count
);
2591 /* Guard against adverse ptrace interaction */
2592 rv
= mutex_lock_interruptible(¤t
->signal
->cred_guard_mutex
);
2596 rv
= security_setprocattr(PROC_I(inode
)->op
.lsm
,
2597 file
->f_path
.dentry
->d_name
.name
, page
,
2599 mutex_unlock(¤t
->signal
->cred_guard_mutex
);
2606 static const struct file_operations proc_pid_attr_operations
= {
2607 .read
= proc_pid_attr_read
,
2608 .write
= proc_pid_attr_write
,
2609 .llseek
= generic_file_llseek
,
2612 #define LSM_DIR_OPS(LSM) \
2613 static int proc_##LSM##_attr_dir_iterate(struct file *filp, \
2614 struct dir_context *ctx) \
2616 return proc_pident_readdir(filp, ctx, \
2617 LSM##_attr_dir_stuff, \
2618 ARRAY_SIZE(LSM##_attr_dir_stuff)); \
2621 static const struct file_operations proc_##LSM##_attr_dir_ops = { \
2622 .read = generic_read_dir, \
2623 .iterate = proc_##LSM##_attr_dir_iterate, \
2624 .llseek = default_llseek, \
2627 static struct dentry *proc_##LSM##_attr_dir_lookup(struct inode *dir, \
2628 struct dentry *dentry, unsigned int flags) \
2630 return proc_pident_lookup(dir, dentry, \
2631 LSM##_attr_dir_stuff, \
2632 LSM##_attr_dir_stuff + ARRAY_SIZE(LSM##_attr_dir_stuff)); \
2635 static const struct inode_operations proc_##LSM##_attr_dir_inode_ops = { \
2636 .lookup = proc_##LSM##_attr_dir_lookup, \
2637 .getattr = pid_getattr, \
2638 .setattr = proc_setattr, \
2641 #ifdef CONFIG_SECURITY_SMACK
2642 static const struct pid_entry smack_attr_dir_stuff
[] = {
2643 ATTR("smack", "current", 0666),
2648 static const struct pid_entry attr_dir_stuff
[] = {
2649 ATTR(NULL
, "current", 0666),
2650 ATTR(NULL
, "prev", 0444),
2651 ATTR(NULL
, "exec", 0666),
2652 ATTR(NULL
, "fscreate", 0666),
2653 ATTR(NULL
, "keycreate", 0666),
2654 ATTR(NULL
, "sockcreate", 0666),
2655 #ifdef CONFIG_SECURITY_SMACK
2657 proc_smack_attr_dir_inode_ops
, proc_smack_attr_dir_ops
),
2661 static int proc_attr_dir_readdir(struct file
*file
, struct dir_context
*ctx
)
2663 return proc_pident_readdir(file
, ctx
,
2664 attr_dir_stuff
, ARRAY_SIZE(attr_dir_stuff
));
2667 static const struct file_operations proc_attr_dir_operations
= {
2668 .read
= generic_read_dir
,
2669 .iterate_shared
= proc_attr_dir_readdir
,
2670 .llseek
= generic_file_llseek
,
2673 static struct dentry
*proc_attr_dir_lookup(struct inode
*dir
,
2674 struct dentry
*dentry
, unsigned int flags
)
2676 return proc_pident_lookup(dir
, dentry
,
2678 attr_dir_stuff
+ ARRAY_SIZE(attr_dir_stuff
));
2681 static const struct inode_operations proc_attr_dir_inode_operations
= {
2682 .lookup
= proc_attr_dir_lookup
,
2683 .getattr
= pid_getattr
,
2684 .setattr
= proc_setattr
,
2689 #ifdef CONFIG_ELF_CORE
2690 static ssize_t
proc_coredump_filter_read(struct file
*file
, char __user
*buf
,
2691 size_t count
, loff_t
*ppos
)
2693 struct task_struct
*task
= get_proc_task(file_inode(file
));
2694 struct mm_struct
*mm
;
2695 char buffer
[PROC_NUMBUF
];
2703 mm
= get_task_mm(task
);
2705 len
= snprintf(buffer
, sizeof(buffer
), "%08lx\n",
2706 ((mm
->flags
& MMF_DUMP_FILTER_MASK
) >>
2707 MMF_DUMP_FILTER_SHIFT
));
2709 ret
= simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
2712 put_task_struct(task
);
2717 static ssize_t
proc_coredump_filter_write(struct file
*file
,
2718 const char __user
*buf
,
2722 struct task_struct
*task
;
2723 struct mm_struct
*mm
;
2729 ret
= kstrtouint_from_user(buf
, count
, 0, &val
);
2734 task
= get_proc_task(file_inode(file
));
2738 mm
= get_task_mm(task
);
2743 for (i
= 0, mask
= 1; i
< MMF_DUMP_FILTER_BITS
; i
++, mask
<<= 1) {
2745 set_bit(i
+ MMF_DUMP_FILTER_SHIFT
, &mm
->flags
);
2747 clear_bit(i
+ MMF_DUMP_FILTER_SHIFT
, &mm
->flags
);
2752 put_task_struct(task
);
2759 static const struct file_operations proc_coredump_filter_operations
= {
2760 .read
= proc_coredump_filter_read
,
2761 .write
= proc_coredump_filter_write
,
2762 .llseek
= generic_file_llseek
,
2766 #ifdef CONFIG_TASK_IO_ACCOUNTING
2767 static int do_io_accounting(struct task_struct
*task
, struct seq_file
*m
, int whole
)
2769 struct task_io_accounting acct
= task
->ioac
;
2770 unsigned long flags
;
2773 result
= mutex_lock_killable(&task
->signal
->cred_guard_mutex
);
2777 if (!ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
)) {
2782 if (whole
&& lock_task_sighand(task
, &flags
)) {
2783 struct task_struct
*t
= task
;
2785 task_io_accounting_add(&acct
, &task
->signal
->ioac
);
2786 while_each_thread(task
, t
)
2787 task_io_accounting_add(&acct
, &t
->ioac
);
2789 unlock_task_sighand(task
, &flags
);
2796 "read_bytes: %llu\n"
2797 "write_bytes: %llu\n"
2798 "cancelled_write_bytes: %llu\n",
2799 (unsigned long long)acct
.rchar
,
2800 (unsigned long long)acct
.wchar
,
2801 (unsigned long long)acct
.syscr
,
2802 (unsigned long long)acct
.syscw
,
2803 (unsigned long long)acct
.read_bytes
,
2804 (unsigned long long)acct
.write_bytes
,
2805 (unsigned long long)acct
.cancelled_write_bytes
);
2809 mutex_unlock(&task
->signal
->cred_guard_mutex
);
2813 static int proc_tid_io_accounting(struct seq_file
*m
, struct pid_namespace
*ns
,
2814 struct pid
*pid
, struct task_struct
*task
)
2816 return do_io_accounting(task
, m
, 0);
2819 static int proc_tgid_io_accounting(struct seq_file
*m
, struct pid_namespace
*ns
,
2820 struct pid
*pid
, struct task_struct
*task
)
2822 return do_io_accounting(task
, m
, 1);
2824 #endif /* CONFIG_TASK_IO_ACCOUNTING */
2826 #ifdef CONFIG_USER_NS
2827 static int proc_id_map_open(struct inode
*inode
, struct file
*file
,
2828 const struct seq_operations
*seq_ops
)
2830 struct user_namespace
*ns
= NULL
;
2831 struct task_struct
*task
;
2832 struct seq_file
*seq
;
2835 task
= get_proc_task(inode
);
2838 ns
= get_user_ns(task_cred_xxx(task
, user_ns
));
2840 put_task_struct(task
);
2845 ret
= seq_open(file
, seq_ops
);
2849 seq
= file
->private_data
;
2859 static int proc_id_map_release(struct inode
*inode
, struct file
*file
)
2861 struct seq_file
*seq
= file
->private_data
;
2862 struct user_namespace
*ns
= seq
->private;
2864 return seq_release(inode
, file
);
2867 static int proc_uid_map_open(struct inode
*inode
, struct file
*file
)
2869 return proc_id_map_open(inode
, file
, &proc_uid_seq_operations
);
2872 static int proc_gid_map_open(struct inode
*inode
, struct file
*file
)
2874 return proc_id_map_open(inode
, file
, &proc_gid_seq_operations
);
2877 static int proc_projid_map_open(struct inode
*inode
, struct file
*file
)
2879 return proc_id_map_open(inode
, file
, &proc_projid_seq_operations
);
2882 static const struct file_operations proc_uid_map_operations
= {
2883 .open
= proc_uid_map_open
,
2884 .write
= proc_uid_map_write
,
2886 .llseek
= seq_lseek
,
2887 .release
= proc_id_map_release
,
2890 static const struct file_operations proc_gid_map_operations
= {
2891 .open
= proc_gid_map_open
,
2892 .write
= proc_gid_map_write
,
2894 .llseek
= seq_lseek
,
2895 .release
= proc_id_map_release
,
2898 static const struct file_operations proc_projid_map_operations
= {
2899 .open
= proc_projid_map_open
,
2900 .write
= proc_projid_map_write
,
2902 .llseek
= seq_lseek
,
2903 .release
= proc_id_map_release
,
2906 static int proc_setgroups_open(struct inode
*inode
, struct file
*file
)
2908 struct user_namespace
*ns
= NULL
;
2909 struct task_struct
*task
;
2913 task
= get_proc_task(inode
);
2916 ns
= get_user_ns(task_cred_xxx(task
, user_ns
));
2918 put_task_struct(task
);
2923 if (file
->f_mode
& FMODE_WRITE
) {
2925 if (!ns_capable(ns
, CAP_SYS_ADMIN
))
2929 ret
= single_open(file
, &proc_setgroups_show
, ns
);
2940 static int proc_setgroups_release(struct inode
*inode
, struct file
*file
)
2942 struct seq_file
*seq
= file
->private_data
;
2943 struct user_namespace
*ns
= seq
->private;
2944 int ret
= single_release(inode
, file
);
2949 static const struct file_operations proc_setgroups_operations
= {
2950 .open
= proc_setgroups_open
,
2951 .write
= proc_setgroups_write
,
2953 .llseek
= seq_lseek
,
2954 .release
= proc_setgroups_release
,
2956 #endif /* CONFIG_USER_NS */
2958 static int proc_pid_personality(struct seq_file
*m
, struct pid_namespace
*ns
,
2959 struct pid
*pid
, struct task_struct
*task
)
2961 int err
= lock_trace(task
);
2963 seq_printf(m
, "%08x\n", task
->personality
);
2969 #ifdef CONFIG_LIVEPATCH
2970 static int proc_pid_patch_state(struct seq_file
*m
, struct pid_namespace
*ns
,
2971 struct pid
*pid
, struct task_struct
*task
)
2973 seq_printf(m
, "%d\n", task
->patch_state
);
2976 #endif /* CONFIG_LIVEPATCH */
2978 #ifdef CONFIG_STACKLEAK_METRICS
2979 static int proc_stack_depth(struct seq_file
*m
, struct pid_namespace
*ns
,
2980 struct pid
*pid
, struct task_struct
*task
)
2982 unsigned long prev_depth
= THREAD_SIZE
-
2983 (task
->prev_lowest_stack
& (THREAD_SIZE
- 1));
2984 unsigned long depth
= THREAD_SIZE
-
2985 (task
->lowest_stack
& (THREAD_SIZE
- 1));
2987 seq_printf(m
, "previous stack depth: %lu\nstack depth: %lu\n",
2991 #endif /* CONFIG_STACKLEAK_METRICS */
2996 static const struct file_operations proc_task_operations
;
2997 static const struct inode_operations proc_task_inode_operations
;
2999 static const struct pid_entry tgid_base_stuff
[] = {
3000 DIR("task", S_IRUGO
|S_IXUGO
, proc_task_inode_operations
, proc_task_operations
),
3001 DIR("fd", S_IRUSR
|S_IXUSR
, proc_fd_inode_operations
, proc_fd_operations
),
3002 DIR("map_files", S_IRUSR
|S_IXUSR
, proc_map_files_inode_operations
, proc_map_files_operations
),
3003 DIR("fdinfo", S_IRUSR
|S_IXUSR
, proc_fdinfo_inode_operations
, proc_fdinfo_operations
),
3004 DIR("ns", S_IRUSR
|S_IXUGO
, proc_ns_dir_inode_operations
, proc_ns_dir_operations
),
3006 DIR("net", S_IRUGO
|S_IXUGO
, proc_net_inode_operations
, proc_net_operations
),
3008 REG("environ", S_IRUSR
, proc_environ_operations
),
3009 REG("auxv", S_IRUSR
, proc_auxv_operations
),
3010 ONE("status", S_IRUGO
, proc_pid_status
),
3011 ONE("personality", S_IRUSR
, proc_pid_personality
),
3012 ONE("limits", S_IRUGO
, proc_pid_limits
),
3013 #ifdef CONFIG_SCHED_DEBUG
3014 REG("sched", S_IRUGO
|S_IWUSR
, proc_pid_sched_operations
),
3016 #ifdef CONFIG_SCHED_AUTOGROUP
3017 REG("autogroup", S_IRUGO
|S_IWUSR
, proc_pid_sched_autogroup_operations
),
3019 REG("comm", S_IRUGO
|S_IWUSR
, proc_pid_set_comm_operations
),
3020 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
3021 ONE("syscall", S_IRUSR
, proc_pid_syscall
),
3023 REG("cmdline", S_IRUGO
, proc_pid_cmdline_ops
),
3024 ONE("stat", S_IRUGO
, proc_tgid_stat
),
3025 ONE("statm", S_IRUGO
, proc_pid_statm
),
3026 REG("maps", S_IRUGO
, proc_pid_maps_operations
),
3028 REG("numa_maps", S_IRUGO
, proc_pid_numa_maps_operations
),
3030 REG("mem", S_IRUSR
|S_IWUSR
, proc_mem_operations
),
3031 LNK("cwd", proc_cwd_link
),
3032 LNK("root", proc_root_link
),
3033 LNK("exe", proc_exe_link
),
3034 REG("mounts", S_IRUGO
, proc_mounts_operations
),
3035 REG("mountinfo", S_IRUGO
, proc_mountinfo_operations
),
3036 REG("mountstats", S_IRUSR
, proc_mountstats_operations
),
3037 #ifdef CONFIG_PROC_PAGE_MONITOR
3038 REG("clear_refs", S_IWUSR
, proc_clear_refs_operations
),
3039 REG("smaps", S_IRUGO
, proc_pid_smaps_operations
),
3040 REG("smaps_rollup", S_IRUGO
, proc_pid_smaps_rollup_operations
),
3041 REG("pagemap", S_IRUSR
, proc_pagemap_operations
),
3043 #ifdef CONFIG_SECURITY
3044 DIR("attr", S_IRUGO
|S_IXUGO
, proc_attr_dir_inode_operations
, proc_attr_dir_operations
),
3046 #ifdef CONFIG_KALLSYMS
3047 ONE("wchan", S_IRUGO
, proc_pid_wchan
),
3049 #ifdef CONFIG_STACKTRACE
3050 ONE("stack", S_IRUSR
, proc_pid_stack
),
3052 #ifdef CONFIG_SCHED_INFO
3053 ONE("schedstat", S_IRUGO
, proc_pid_schedstat
),
3055 #ifdef CONFIG_LATENCYTOP
3056 REG("latency", S_IRUGO
, proc_lstats_operations
),
3058 #ifdef CONFIG_PROC_PID_CPUSET
3059 ONE("cpuset", S_IRUGO
, proc_cpuset_show
),
3061 #ifdef CONFIG_CGROUPS
3062 ONE("cgroup", S_IRUGO
, proc_cgroup_show
),
3064 ONE("oom_score", S_IRUGO
, proc_oom_score
),
3065 REG("oom_adj", S_IRUGO
|S_IWUSR
, proc_oom_adj_operations
),
3066 REG("oom_score_adj", S_IRUGO
|S_IWUSR
, proc_oom_score_adj_operations
),
3068 REG("loginuid", S_IWUSR
|S_IRUGO
, proc_loginuid_operations
),
3069 REG("sessionid", S_IRUGO
, proc_sessionid_operations
),
3071 #ifdef CONFIG_FAULT_INJECTION
3072 REG("make-it-fail", S_IRUGO
|S_IWUSR
, proc_fault_inject_operations
),
3073 REG("fail-nth", 0644, proc_fail_nth_operations
),
3075 #ifdef CONFIG_ELF_CORE
3076 REG("coredump_filter", S_IRUGO
|S_IWUSR
, proc_coredump_filter_operations
),
3078 #ifdef CONFIG_TASK_IO_ACCOUNTING
3079 ONE("io", S_IRUSR
, proc_tgid_io_accounting
),
3081 #ifdef CONFIG_USER_NS
3082 REG("uid_map", S_IRUGO
|S_IWUSR
, proc_uid_map_operations
),
3083 REG("gid_map", S_IRUGO
|S_IWUSR
, proc_gid_map_operations
),
3084 REG("projid_map", S_IRUGO
|S_IWUSR
, proc_projid_map_operations
),
3085 REG("setgroups", S_IRUGO
|S_IWUSR
, proc_setgroups_operations
),
3087 #if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
3088 REG("timers", S_IRUGO
, proc_timers_operations
),
3090 REG("timerslack_ns", S_IRUGO
|S_IWUGO
, proc_pid_set_timerslack_ns_operations
),
3091 #ifdef CONFIG_LIVEPATCH
3092 ONE("patch_state", S_IRUSR
, proc_pid_patch_state
),
3094 #ifdef CONFIG_STACKLEAK_METRICS
3095 ONE("stack_depth", S_IRUGO
, proc_stack_depth
),
3097 #ifdef CONFIG_PROC_PID_ARCH_STATUS
3098 ONE("arch_status", S_IRUGO
, proc_pid_arch_status
),
3102 static int proc_tgid_base_readdir(struct file
*file
, struct dir_context
*ctx
)
3104 return proc_pident_readdir(file
, ctx
,
3105 tgid_base_stuff
, ARRAY_SIZE(tgid_base_stuff
));
3108 static const struct file_operations proc_tgid_base_operations
= {
3109 .read
= generic_read_dir
,
3110 .iterate_shared
= proc_tgid_base_readdir
,
3111 .llseek
= generic_file_llseek
,
3114 struct pid
*tgid_pidfd_to_pid(const struct file
*file
)
3116 if (file
->f_op
!= &proc_tgid_base_operations
)
3117 return ERR_PTR(-EBADF
);
3119 return proc_pid(file_inode(file
));
3122 static struct dentry
*proc_tgid_base_lookup(struct inode
*dir
, struct dentry
*dentry
, unsigned int flags
)
3124 return proc_pident_lookup(dir
, dentry
,
3126 tgid_base_stuff
+ ARRAY_SIZE(tgid_base_stuff
));
3129 static const struct inode_operations proc_tgid_base_inode_operations
= {
3130 .lookup
= proc_tgid_base_lookup
,
3131 .getattr
= pid_getattr
,
3132 .setattr
= proc_setattr
,
3133 .permission
= proc_pid_permission
,
3136 static void proc_flush_task_mnt(struct vfsmount
*mnt
, pid_t pid
, pid_t tgid
)
3138 struct dentry
*dentry
, *leader
, *dir
;
3143 name
.len
= snprintf(buf
, sizeof(buf
), "%u", pid
);
3144 /* no ->d_hash() rejects on procfs */
3145 dentry
= d_hash_and_lookup(mnt
->mnt_root
, &name
);
3147 d_invalidate(dentry
);
3155 name
.len
= snprintf(buf
, sizeof(buf
), "%u", tgid
);
3156 leader
= d_hash_and_lookup(mnt
->mnt_root
, &name
);
3161 name
.len
= strlen(name
.name
);
3162 dir
= d_hash_and_lookup(leader
, &name
);
3164 goto out_put_leader
;
3167 name
.len
= snprintf(buf
, sizeof(buf
), "%u", pid
);
3168 dentry
= d_hash_and_lookup(dir
, &name
);
3170 d_invalidate(dentry
);
3182 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
3183 * @task: task that should be flushed.
3185 * When flushing dentries from proc, one needs to flush them from global
3186 * proc (proc_mnt) and from all the namespaces' procs this task was seen
3187 * in. This call is supposed to do all of this job.
3189 * Looks in the dcache for
3191 * /proc/@tgid/task/@pid
3192 * if either directory is present flushes it and all of it'ts children
3195 * It is safe and reasonable to cache /proc entries for a task until
3196 * that task exits. After that they just clog up the dcache with
3197 * useless entries, possibly causing useful dcache entries to be
3198 * flushed instead. This routine is proved to flush those useless
3199 * dcache entries at process exit time.
3201 * NOTE: This routine is just an optimization so it does not guarantee
3202 * that no dcache entries will exist at process exit time it
3203 * just makes it very unlikely that any will persist.
3206 void proc_flush_task(struct task_struct
*task
)
3209 struct pid
*pid
, *tgid
;
3212 pid
= task_pid(task
);
3213 tgid
= task_tgid(task
);
3215 for (i
= 0; i
<= pid
->level
; i
++) {
3216 upid
= &pid
->numbers
[i
];
3217 proc_flush_task_mnt(upid
->ns
->proc_mnt
, upid
->nr
,
3218 tgid
->numbers
[i
].nr
);
3222 static struct dentry
*proc_pid_instantiate(struct dentry
* dentry
,
3223 struct task_struct
*task
, const void *ptr
)
3225 struct inode
*inode
;
3227 inode
= proc_pid_make_inode(dentry
->d_sb
, task
, S_IFDIR
| S_IRUGO
| S_IXUGO
);
3229 return ERR_PTR(-ENOENT
);
3231 inode
->i_op
= &proc_tgid_base_inode_operations
;
3232 inode
->i_fop
= &proc_tgid_base_operations
;
3233 inode
->i_flags
|=S_IMMUTABLE
;
3235 set_nlink(inode
, nlink_tgid
);
3236 pid_update_inode(task
, inode
);
3238 d_set_d_op(dentry
, &pid_dentry_operations
);
3239 return d_splice_alias(inode
, dentry
);
3242 struct dentry
*proc_pid_lookup(struct dentry
*dentry
, unsigned int flags
)
3244 struct task_struct
*task
;
3246 struct pid_namespace
*ns
;
3247 struct dentry
*result
= ERR_PTR(-ENOENT
);
3249 tgid
= name_to_int(&dentry
->d_name
);
3253 ns
= dentry
->d_sb
->s_fs_info
;
3255 task
= find_task_by_pid_ns(tgid
, ns
);
3257 get_task_struct(task
);
3262 result
= proc_pid_instantiate(dentry
, task
, NULL
);
3263 put_task_struct(task
);
3269 * Find the first task with tgid >= tgid
3274 struct task_struct
*task
;
3276 static struct tgid_iter
next_tgid(struct pid_namespace
*ns
, struct tgid_iter iter
)
3281 put_task_struct(iter
.task
);
3285 pid
= find_ge_pid(iter
.tgid
, ns
);
3287 iter
.tgid
= pid_nr_ns(pid
, ns
);
3288 iter
.task
= pid_task(pid
, PIDTYPE_PID
);
3289 /* What we to know is if the pid we have find is the
3290 * pid of a thread_group_leader. Testing for task
3291 * being a thread_group_leader is the obvious thing
3292 * todo but there is a window when it fails, due to
3293 * the pid transfer logic in de_thread.
3295 * So we perform the straight forward test of seeing
3296 * if the pid we have found is the pid of a thread
3297 * group leader, and don't worry if the task we have
3298 * found doesn't happen to be a thread group leader.
3299 * As we don't care in the case of readdir.
3301 if (!iter
.task
|| !has_group_leader_pid(iter
.task
)) {
3305 get_task_struct(iter
.task
);
3311 #define TGID_OFFSET (FIRST_PROCESS_ENTRY + 2)
3313 /* for the /proc/ directory itself, after non-process stuff has been done */
3314 int proc_pid_readdir(struct file
*file
, struct dir_context
*ctx
)
3316 struct tgid_iter iter
;
3317 struct pid_namespace
*ns
= proc_pid_ns(file_inode(file
));
3318 loff_t pos
= ctx
->pos
;
3320 if (pos
>= PID_MAX_LIMIT
+ TGID_OFFSET
)
3323 if (pos
== TGID_OFFSET
- 2) {
3324 struct inode
*inode
= d_inode(ns
->proc_self
);
3325 if (!dir_emit(ctx
, "self", 4, inode
->i_ino
, DT_LNK
))
3327 ctx
->pos
= pos
= pos
+ 1;
3329 if (pos
== TGID_OFFSET
- 1) {
3330 struct inode
*inode
= d_inode(ns
->proc_thread_self
);
3331 if (!dir_emit(ctx
, "thread-self", 11, inode
->i_ino
, DT_LNK
))
3333 ctx
->pos
= pos
= pos
+ 1;
3335 iter
.tgid
= pos
- TGID_OFFSET
;
3337 for (iter
= next_tgid(ns
, iter
);
3339 iter
.tgid
+= 1, iter
= next_tgid(ns
, iter
)) {
3344 if (!has_pid_permissions(ns
, iter
.task
, HIDEPID_INVISIBLE
))
3347 len
= snprintf(name
, sizeof(name
), "%u", iter
.tgid
);
3348 ctx
->pos
= iter
.tgid
+ TGID_OFFSET
;
3349 if (!proc_fill_cache(file
, ctx
, name
, len
,
3350 proc_pid_instantiate
, iter
.task
, NULL
)) {
3351 put_task_struct(iter
.task
);
3355 ctx
->pos
= PID_MAX_LIMIT
+ TGID_OFFSET
;
3360 * proc_tid_comm_permission is a special permission function exclusively
3361 * used for the node /proc/<pid>/task/<tid>/comm.
3362 * It bypasses generic permission checks in the case where a task of the same
3363 * task group attempts to access the node.
3364 * The rationale behind this is that glibc and bionic access this node for
3365 * cross thread naming (pthread_set/getname_np(!self)). However, if
3366 * PR_SET_DUMPABLE gets set to 0 this node among others becomes uid=0 gid=0,
3367 * which locks out the cross thread naming implementation.
3368 * This function makes sure that the node is always accessible for members of
3369 * same thread group.
3371 static int proc_tid_comm_permission(struct inode
*inode
, int mask
)
3373 bool is_same_tgroup
;
3374 struct task_struct
*task
;
3376 task
= get_proc_task(inode
);
3379 is_same_tgroup
= same_thread_group(current
, task
);
3380 put_task_struct(task
);
3382 if (likely(is_same_tgroup
&& !(mask
& MAY_EXEC
))) {
3383 /* This file (/proc/<pid>/task/<tid>/comm) can always be
3384 * read or written by the members of the corresponding
3390 return generic_permission(inode
, mask
);
3393 static const struct inode_operations proc_tid_comm_inode_operations
= {
3394 .permission
= proc_tid_comm_permission
,
3400 static const struct pid_entry tid_base_stuff
[] = {
3401 DIR("fd", S_IRUSR
|S_IXUSR
, proc_fd_inode_operations
, proc_fd_operations
),
3402 DIR("fdinfo", S_IRUSR
|S_IXUSR
, proc_fdinfo_inode_operations
, proc_fdinfo_operations
),
3403 DIR("ns", S_IRUSR
|S_IXUGO
, proc_ns_dir_inode_operations
, proc_ns_dir_operations
),
3405 DIR("net", S_IRUGO
|S_IXUGO
, proc_net_inode_operations
, proc_net_operations
),
3407 REG("environ", S_IRUSR
, proc_environ_operations
),
3408 REG("auxv", S_IRUSR
, proc_auxv_operations
),
3409 ONE("status", S_IRUGO
, proc_pid_status
),
3410 ONE("personality", S_IRUSR
, proc_pid_personality
),
3411 ONE("limits", S_IRUGO
, proc_pid_limits
),
3412 #ifdef CONFIG_SCHED_DEBUG
3413 REG("sched", S_IRUGO
|S_IWUSR
, proc_pid_sched_operations
),
3415 NOD("comm", S_IFREG
|S_IRUGO
|S_IWUSR
,
3416 &proc_tid_comm_inode_operations
,
3417 &proc_pid_set_comm_operations
, {}),
3418 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
3419 ONE("syscall", S_IRUSR
, proc_pid_syscall
),
3421 REG("cmdline", S_IRUGO
, proc_pid_cmdline_ops
),
3422 ONE("stat", S_IRUGO
, proc_tid_stat
),
3423 ONE("statm", S_IRUGO
, proc_pid_statm
),
3424 REG("maps", S_IRUGO
, proc_pid_maps_operations
),
3425 #ifdef CONFIG_PROC_CHILDREN
3426 REG("children", S_IRUGO
, proc_tid_children_operations
),
3429 REG("numa_maps", S_IRUGO
, proc_pid_numa_maps_operations
),
3431 REG("mem", S_IRUSR
|S_IWUSR
, proc_mem_operations
),
3432 LNK("cwd", proc_cwd_link
),
3433 LNK("root", proc_root_link
),
3434 LNK("exe", proc_exe_link
),
3435 REG("mounts", S_IRUGO
, proc_mounts_operations
),
3436 REG("mountinfo", S_IRUGO
, proc_mountinfo_operations
),
3437 #ifdef CONFIG_PROC_PAGE_MONITOR
3438 REG("clear_refs", S_IWUSR
, proc_clear_refs_operations
),
3439 REG("smaps", S_IRUGO
, proc_pid_smaps_operations
),
3440 REG("smaps_rollup", S_IRUGO
, proc_pid_smaps_rollup_operations
),
3441 REG("pagemap", S_IRUSR
, proc_pagemap_operations
),
3443 #ifdef CONFIG_SECURITY
3444 DIR("attr", S_IRUGO
|S_IXUGO
, proc_attr_dir_inode_operations
, proc_attr_dir_operations
),
3446 #ifdef CONFIG_KALLSYMS
3447 ONE("wchan", S_IRUGO
, proc_pid_wchan
),
3449 #ifdef CONFIG_STACKTRACE
3450 ONE("stack", S_IRUSR
, proc_pid_stack
),
3452 #ifdef CONFIG_SCHED_INFO
3453 ONE("schedstat", S_IRUGO
, proc_pid_schedstat
),
3455 #ifdef CONFIG_LATENCYTOP
3456 REG("latency", S_IRUGO
, proc_lstats_operations
),
3458 #ifdef CONFIG_PROC_PID_CPUSET
3459 ONE("cpuset", S_IRUGO
, proc_cpuset_show
),
3461 #ifdef CONFIG_CGROUPS
3462 ONE("cgroup", S_IRUGO
, proc_cgroup_show
),
3464 ONE("oom_score", S_IRUGO
, proc_oom_score
),
3465 REG("oom_adj", S_IRUGO
|S_IWUSR
, proc_oom_adj_operations
),
3466 REG("oom_score_adj", S_IRUGO
|S_IWUSR
, proc_oom_score_adj_operations
),
3468 REG("loginuid", S_IWUSR
|S_IRUGO
, proc_loginuid_operations
),
3469 REG("sessionid", S_IRUGO
, proc_sessionid_operations
),
3471 #ifdef CONFIG_FAULT_INJECTION
3472 REG("make-it-fail", S_IRUGO
|S_IWUSR
, proc_fault_inject_operations
),
3473 REG("fail-nth", 0644, proc_fail_nth_operations
),
3475 #ifdef CONFIG_TASK_IO_ACCOUNTING
3476 ONE("io", S_IRUSR
, proc_tid_io_accounting
),
3478 #ifdef CONFIG_USER_NS
3479 REG("uid_map", S_IRUGO
|S_IWUSR
, proc_uid_map_operations
),
3480 REG("gid_map", S_IRUGO
|S_IWUSR
, proc_gid_map_operations
),
3481 REG("projid_map", S_IRUGO
|S_IWUSR
, proc_projid_map_operations
),
3482 REG("setgroups", S_IRUGO
|S_IWUSR
, proc_setgroups_operations
),
3484 #ifdef CONFIG_LIVEPATCH
3485 ONE("patch_state", S_IRUSR
, proc_pid_patch_state
),
3487 #ifdef CONFIG_PROC_PID_ARCH_STATUS
3488 ONE("arch_status", S_IRUGO
, proc_pid_arch_status
),
3492 static int proc_tid_base_readdir(struct file
*file
, struct dir_context
*ctx
)
3494 return proc_pident_readdir(file
, ctx
,
3495 tid_base_stuff
, ARRAY_SIZE(tid_base_stuff
));
3498 static struct dentry
*proc_tid_base_lookup(struct inode
*dir
, struct dentry
*dentry
, unsigned int flags
)
3500 return proc_pident_lookup(dir
, dentry
,
3502 tid_base_stuff
+ ARRAY_SIZE(tid_base_stuff
));
3505 static const struct file_operations proc_tid_base_operations
= {
3506 .read
= generic_read_dir
,
3507 .iterate_shared
= proc_tid_base_readdir
,
3508 .llseek
= generic_file_llseek
,
3511 static const struct inode_operations proc_tid_base_inode_operations
= {
3512 .lookup
= proc_tid_base_lookup
,
3513 .getattr
= pid_getattr
,
3514 .setattr
= proc_setattr
,
3517 static struct dentry
*proc_task_instantiate(struct dentry
*dentry
,
3518 struct task_struct
*task
, const void *ptr
)
3520 struct inode
*inode
;
3521 inode
= proc_pid_make_inode(dentry
->d_sb
, task
, S_IFDIR
| S_IRUGO
| S_IXUGO
);
3523 return ERR_PTR(-ENOENT
);
3525 inode
->i_op
= &proc_tid_base_inode_operations
;
3526 inode
->i_fop
= &proc_tid_base_operations
;
3527 inode
->i_flags
|= S_IMMUTABLE
;
3529 set_nlink(inode
, nlink_tid
);
3530 pid_update_inode(task
, inode
);
3532 d_set_d_op(dentry
, &pid_dentry_operations
);
3533 return d_splice_alias(inode
, dentry
);
3536 static struct dentry
*proc_task_lookup(struct inode
*dir
, struct dentry
* dentry
, unsigned int flags
)
3538 struct task_struct
*task
;
3539 struct task_struct
*leader
= get_proc_task(dir
);
3541 struct pid_namespace
*ns
;
3542 struct dentry
*result
= ERR_PTR(-ENOENT
);
3547 tid
= name_to_int(&dentry
->d_name
);
3551 ns
= dentry
->d_sb
->s_fs_info
;
3553 task
= find_task_by_pid_ns(tid
, ns
);
3555 get_task_struct(task
);
3559 if (!same_thread_group(leader
, task
))
3562 result
= proc_task_instantiate(dentry
, task
, NULL
);
3564 put_task_struct(task
);
3566 put_task_struct(leader
);
3572 * Find the first tid of a thread group to return to user space.
3574 * Usually this is just the thread group leader, but if the users
3575 * buffer was too small or there was a seek into the middle of the
3576 * directory we have more work todo.
3578 * In the case of a short read we start with find_task_by_pid.
3580 * In the case of a seek we start with the leader and walk nr
3583 static struct task_struct
*first_tid(struct pid
*pid
, int tid
, loff_t f_pos
,
3584 struct pid_namespace
*ns
)
3586 struct task_struct
*pos
, *task
;
3587 unsigned long nr
= f_pos
;
3589 if (nr
!= f_pos
) /* 32bit overflow? */
3593 task
= pid_task(pid
, PIDTYPE_PID
);
3597 /* Attempt to start with the tid of a thread */
3599 pos
= find_task_by_pid_ns(tid
, ns
);
3600 if (pos
&& same_thread_group(pos
, task
))
3604 /* If nr exceeds the number of threads there is nothing todo */
3605 if (nr
>= get_nr_threads(task
))
3608 /* If we haven't found our starting place yet start
3609 * with the leader and walk nr threads forward.
3611 pos
= task
= task
->group_leader
;
3615 } while_each_thread(task
, pos
);
3620 get_task_struct(pos
);
3627 * Find the next thread in the thread list.
3628 * Return NULL if there is an error or no next thread.
3630 * The reference to the input task_struct is released.
3632 static struct task_struct
*next_tid(struct task_struct
*start
)
3634 struct task_struct
*pos
= NULL
;
3636 if (pid_alive(start
)) {
3637 pos
= next_thread(start
);
3638 if (thread_group_leader(pos
))
3641 get_task_struct(pos
);
3644 put_task_struct(start
);
3648 /* for the /proc/TGID/task/ directories */
3649 static int proc_task_readdir(struct file
*file
, struct dir_context
*ctx
)
3651 struct inode
*inode
= file_inode(file
);
3652 struct task_struct
*task
;
3653 struct pid_namespace
*ns
;
3656 if (proc_inode_is_dead(inode
))
3659 if (!dir_emit_dots(file
, ctx
))
3662 /* f_version caches the tgid value that the last readdir call couldn't
3663 * return. lseek aka telldir automagically resets f_version to 0.
3665 ns
= proc_pid_ns(inode
);
3666 tid
= (int)file
->f_version
;
3667 file
->f_version
= 0;
3668 for (task
= first_tid(proc_pid(inode
), tid
, ctx
->pos
- 2, ns
);
3670 task
= next_tid(task
), ctx
->pos
++) {
3673 tid
= task_pid_nr_ns(task
, ns
);
3674 len
= snprintf(name
, sizeof(name
), "%u", tid
);
3675 if (!proc_fill_cache(file
, ctx
, name
, len
,
3676 proc_task_instantiate
, task
, NULL
)) {
3677 /* returning this tgid failed, save it as the first
3678 * pid for the next readir call */
3679 file
->f_version
= (u64
)tid
;
3680 put_task_struct(task
);
3688 static int proc_task_getattr(const struct path
*path
, struct kstat
*stat
,
3689 u32 request_mask
, unsigned int query_flags
)
3691 struct inode
*inode
= d_inode(path
->dentry
);
3692 struct task_struct
*p
= get_proc_task(inode
);
3693 generic_fillattr(inode
, stat
);
3696 stat
->nlink
+= get_nr_threads(p
);
3703 static const struct inode_operations proc_task_inode_operations
= {
3704 .lookup
= proc_task_lookup
,
3705 .getattr
= proc_task_getattr
,
3706 .setattr
= proc_setattr
,
3707 .permission
= proc_pid_permission
,
3710 static const struct file_operations proc_task_operations
= {
3711 .read
= generic_read_dir
,
3712 .iterate_shared
= proc_task_readdir
,
3713 .llseek
= generic_file_llseek
,
3716 void __init
set_proc_pid_nlink(void)
3718 nlink_tid
= pid_entry_nlink(tid_base_stuff
, ARRAY_SIZE(tid_base_stuff
));
3719 nlink_tgid
= pid_entry_nlink(tgid_base_stuff
, ARRAY_SIZE(tgid_base_stuff
));