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/string.h>
63 #include <linux/seq_file.h>
64 #include <linux/namei.h>
65 #include <linux/mnt_namespace.h>
67 #include <linux/swap.h>
68 #include <linux/rcupdate.h>
69 #include <linux/kallsyms.h>
70 #include <linux/stacktrace.h>
71 #include <linux/resource.h>
72 #include <linux/module.h>
73 #include <linux/mount.h>
74 #include <linux/security.h>
75 #include <linux/ptrace.h>
76 #include <linux/tracehook.h>
77 #include <linux/printk.h>
78 #include <linux/cgroup.h>
79 #include <linux/cpuset.h>
80 #include <linux/audit.h>
81 #include <linux/poll.h>
82 #include <linux/nsproxy.h>
83 #include <linux/oom.h>
84 #include <linux/elf.h>
85 #include <linux/pid_namespace.h>
86 #include <linux/user_namespace.h>
87 #include <linux/fs_struct.h>
88 #include <linux/slab.h>
89 #include <linux/sched/autogroup.h>
90 #include <linux/sched/mm.h>
91 #include <linux/sched/coredump.h>
92 #include <linux/sched/debug.h>
93 #include <linux/sched/stat.h>
94 #include <linux/flex_array.h>
95 #include <linux/posix-timers.h>
96 #ifdef CONFIG_HARDWALL
97 #include <asm/hardwall.h>
99 #include <trace/events/oom.h>
100 #include "internal.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.
114 static u8 nlink_tgid
;
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 } )
148 * Count the number of hardlinks for the pid_entry table, excluding the .
151 static unsigned int __init
pid_entry_nlink(const struct pid_entry
*entries
,
158 for (i
= 0; i
< n
; ++i
) {
159 if (S_ISDIR(entries
[i
].mode
))
166 static int get_task_root(struct task_struct
*task
, struct path
*root
)
168 int result
= -ENOENT
;
172 get_fs_root(task
->fs
, root
);
179 static int proc_cwd_link(struct dentry
*dentry
, struct path
*path
)
181 struct task_struct
*task
= get_proc_task(d_inode(dentry
));
182 int result
= -ENOENT
;
187 get_fs_pwd(task
->fs
, path
);
191 put_task_struct(task
);
196 static int proc_root_link(struct dentry
*dentry
, struct path
*path
)
198 struct task_struct
*task
= get_proc_task(d_inode(dentry
));
199 int result
= -ENOENT
;
202 result
= get_task_root(task
, path
);
203 put_task_struct(task
);
208 static ssize_t
proc_pid_cmdline_read(struct file
*file
, char __user
*buf
,
209 size_t _count
, loff_t
*pos
)
211 struct task_struct
*tsk
;
212 struct mm_struct
*mm
;
214 unsigned long count
= _count
;
215 unsigned long arg_start
, arg_end
, env_start
, env_end
;
216 unsigned long len1
, len2
, len
;
223 tsk
= get_proc_task(file_inode(file
));
226 mm
= get_task_mm(tsk
);
227 put_task_struct(tsk
);
230 /* Check if process spawned far enough to have cmdline. */
236 page
= (char *)__get_free_page(GFP_KERNEL
);
242 down_read(&mm
->mmap_sem
);
243 arg_start
= mm
->arg_start
;
244 arg_end
= mm
->arg_end
;
245 env_start
= mm
->env_start
;
246 env_end
= mm
->env_end
;
247 up_read(&mm
->mmap_sem
);
249 BUG_ON(arg_start
> arg_end
);
250 BUG_ON(env_start
> env_end
);
252 len1
= arg_end
- arg_start
;
253 len2
= env_end
- env_start
;
261 * Inherently racy -- command line shares address space
262 * with code and data.
264 rv
= access_remote_vm(mm
, arg_end
- 1, &c
, 1, 0);
271 /* Command line (set of strings) occupies whole ARGV. */
275 p
= arg_start
+ *pos
;
277 while (count
> 0 && len
> 0) {
281 _count
= min3(count
, len
, PAGE_SIZE
);
282 nr_read
= access_remote_vm(mm
, p
, page
, _count
, 0);
288 if (copy_to_user(buf
, page
, nr_read
)) {
301 * Command line (1 string) occupies ARGV and
308 { .p
= arg_start
, .len
= len1
},
309 { .p
= env_start
, .len
= len2
},
315 while (i
< 2 && pos1
>= cmdline
[i
].len
) {
316 pos1
-= cmdline
[i
].len
;
320 p
= cmdline
[i
].p
+ pos1
;
321 len
= cmdline
[i
].len
- pos1
;
322 while (count
> 0 && len
> 0) {
323 unsigned int _count
, l
;
327 _count
= min3(count
, len
, PAGE_SIZE
);
328 nr_read
= access_remote_vm(mm
, p
, page
, _count
, 0);
335 * Command line can be shorter than whole ARGV
336 * even if last "marker" byte says it is not.
339 l
= strnlen(page
, nr_read
);
345 if (copy_to_user(buf
, page
, nr_read
)) {
360 /* Only first chunk can be read partially. */
367 free_page((unsigned long)page
);
375 static const struct file_operations proc_pid_cmdline_ops
= {
376 .read
= proc_pid_cmdline_read
,
377 .llseek
= generic_file_llseek
,
380 #ifdef CONFIG_KALLSYMS
382 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
383 * Returns the resolved symbol. If that fails, simply return the address.
385 static int proc_pid_wchan(struct seq_file
*m
, struct pid_namespace
*ns
,
386 struct pid
*pid
, struct task_struct
*task
)
389 char symname
[KSYM_NAME_LEN
];
391 wchan
= get_wchan(task
);
393 if (wchan
&& ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
)
394 && !lookup_symbol_name(wchan
, symname
))
395 seq_printf(m
, "%s", symname
);
401 #endif /* CONFIG_KALLSYMS */
403 static int lock_trace(struct task_struct
*task
)
405 int err
= mutex_lock_killable(&task
->signal
->cred_guard_mutex
);
408 if (!ptrace_may_access(task
, PTRACE_MODE_ATTACH_FSCREDS
)) {
409 mutex_unlock(&task
->signal
->cred_guard_mutex
);
415 static void unlock_trace(struct task_struct
*task
)
417 mutex_unlock(&task
->signal
->cred_guard_mutex
);
420 #ifdef CONFIG_STACKTRACE
422 #define MAX_STACK_TRACE_DEPTH 64
424 static int proc_pid_stack(struct seq_file
*m
, struct pid_namespace
*ns
,
425 struct pid
*pid
, struct task_struct
*task
)
427 struct stack_trace trace
;
428 unsigned long *entries
;
432 entries
= kmalloc(MAX_STACK_TRACE_DEPTH
* sizeof(*entries
), GFP_KERNEL
);
436 trace
.nr_entries
= 0;
437 trace
.max_entries
= MAX_STACK_TRACE_DEPTH
;
438 trace
.entries
= entries
;
441 err
= lock_trace(task
);
443 save_stack_trace_tsk(task
, &trace
);
445 for (i
= 0; i
< trace
.nr_entries
; i
++) {
446 seq_printf(m
, "[<%pK>] %pB\n",
447 (void *)entries
[i
], (void *)entries
[i
]);
457 #ifdef CONFIG_SCHED_INFO
459 * Provides /proc/PID/schedstat
461 static int proc_pid_schedstat(struct seq_file
*m
, struct pid_namespace
*ns
,
462 struct pid
*pid
, struct task_struct
*task
)
464 if (unlikely(!sched_info_on()))
465 seq_printf(m
, "0 0 0\n");
467 seq_printf(m
, "%llu %llu %lu\n",
468 (unsigned long long)task
->se
.sum_exec_runtime
,
469 (unsigned long long)task
->sched_info
.run_delay
,
470 task
->sched_info
.pcount
);
476 #ifdef CONFIG_LATENCYTOP
477 static int lstats_show_proc(struct seq_file
*m
, void *v
)
480 struct inode
*inode
= m
->private;
481 struct task_struct
*task
= get_proc_task(inode
);
485 seq_puts(m
, "Latency Top version : v0.1\n");
486 for (i
= 0; i
< 32; i
++) {
487 struct latency_record
*lr
= &task
->latency_record
[i
];
488 if (lr
->backtrace
[0]) {
490 seq_printf(m
, "%i %li %li",
491 lr
->count
, lr
->time
, lr
->max
);
492 for (q
= 0; q
< LT_BACKTRACEDEPTH
; q
++) {
493 unsigned long bt
= lr
->backtrace
[q
];
498 seq_printf(m
, " %ps", (void *)bt
);
504 put_task_struct(task
);
508 static int lstats_open(struct inode
*inode
, struct file
*file
)
510 return single_open(file
, lstats_show_proc
, inode
);
513 static ssize_t
lstats_write(struct file
*file
, const char __user
*buf
,
514 size_t count
, loff_t
*offs
)
516 struct task_struct
*task
= get_proc_task(file_inode(file
));
520 clear_all_latency_tracing(task
);
521 put_task_struct(task
);
526 static const struct file_operations proc_lstats_operations
= {
529 .write
= lstats_write
,
531 .release
= single_release
,
536 static int proc_oom_score(struct seq_file
*m
, struct pid_namespace
*ns
,
537 struct pid
*pid
, struct task_struct
*task
)
539 unsigned long totalpages
= totalram_pages
+ total_swap_pages
;
540 unsigned long points
= 0;
542 points
= oom_badness(task
, NULL
, NULL
, totalpages
) *
544 seq_printf(m
, "%lu\n", points
);
554 static const struct limit_names lnames
[RLIM_NLIMITS
] = {
555 [RLIMIT_CPU
] = {"Max cpu time", "seconds"},
556 [RLIMIT_FSIZE
] = {"Max file size", "bytes"},
557 [RLIMIT_DATA
] = {"Max data size", "bytes"},
558 [RLIMIT_STACK
] = {"Max stack size", "bytes"},
559 [RLIMIT_CORE
] = {"Max core file size", "bytes"},
560 [RLIMIT_RSS
] = {"Max resident set", "bytes"},
561 [RLIMIT_NPROC
] = {"Max processes", "processes"},
562 [RLIMIT_NOFILE
] = {"Max open files", "files"},
563 [RLIMIT_MEMLOCK
] = {"Max locked memory", "bytes"},
564 [RLIMIT_AS
] = {"Max address space", "bytes"},
565 [RLIMIT_LOCKS
] = {"Max file locks", "locks"},
566 [RLIMIT_SIGPENDING
] = {"Max pending signals", "signals"},
567 [RLIMIT_MSGQUEUE
] = {"Max msgqueue size", "bytes"},
568 [RLIMIT_NICE
] = {"Max nice priority", NULL
},
569 [RLIMIT_RTPRIO
] = {"Max realtime priority", NULL
},
570 [RLIMIT_RTTIME
] = {"Max realtime timeout", "us"},
573 /* Display limits for a process */
574 static int proc_pid_limits(struct seq_file
*m
, struct pid_namespace
*ns
,
575 struct pid
*pid
, struct task_struct
*task
)
580 struct rlimit rlim
[RLIM_NLIMITS
];
582 if (!lock_task_sighand(task
, &flags
))
584 memcpy(rlim
, task
->signal
->rlim
, sizeof(struct rlimit
) * RLIM_NLIMITS
);
585 unlock_task_sighand(task
, &flags
);
588 * print the file header
590 seq_printf(m
, "%-25s %-20s %-20s %-10s\n",
591 "Limit", "Soft Limit", "Hard Limit", "Units");
593 for (i
= 0; i
< RLIM_NLIMITS
; i
++) {
594 if (rlim
[i
].rlim_cur
== RLIM_INFINITY
)
595 seq_printf(m
, "%-25s %-20s ",
596 lnames
[i
].name
, "unlimited");
598 seq_printf(m
, "%-25s %-20lu ",
599 lnames
[i
].name
, rlim
[i
].rlim_cur
);
601 if (rlim
[i
].rlim_max
== RLIM_INFINITY
)
602 seq_printf(m
, "%-20s ", "unlimited");
604 seq_printf(m
, "%-20lu ", rlim
[i
].rlim_max
);
607 seq_printf(m
, "%-10s\n", lnames
[i
].unit
);
615 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
616 static int proc_pid_syscall(struct seq_file
*m
, struct pid_namespace
*ns
,
617 struct pid
*pid
, struct task_struct
*task
)
620 unsigned long args
[6], sp
, pc
;
623 res
= lock_trace(task
);
627 if (task_current_syscall(task
, &nr
, args
, 6, &sp
, &pc
))
628 seq_puts(m
, "running\n");
630 seq_printf(m
, "%ld 0x%lx 0x%lx\n", nr
, sp
, pc
);
633 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
635 args
[0], args
[1], args
[2], args
[3], args
[4], args
[5],
641 #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
643 /************************************************************************/
644 /* Here the fs part begins */
645 /************************************************************************/
647 /* permission checks */
648 static int proc_fd_access_allowed(struct inode
*inode
)
650 struct task_struct
*task
;
652 /* Allow access to a task's file descriptors if it is us or we
653 * may use ptrace attach to the process and find out that
656 task
= get_proc_task(inode
);
658 allowed
= ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
);
659 put_task_struct(task
);
664 int proc_setattr(struct dentry
*dentry
, struct iattr
*attr
)
667 struct inode
*inode
= d_inode(dentry
);
669 if (attr
->ia_valid
& ATTR_MODE
)
672 error
= setattr_prepare(dentry
, attr
);
676 setattr_copy(inode
, attr
);
677 mark_inode_dirty(inode
);
682 * May current process learn task's sched/cmdline info (for hide_pid_min=1)
683 * or euid/egid (for hide_pid_min=2)?
685 static bool has_pid_permissions(struct pid_namespace
*pid
,
686 struct task_struct
*task
,
689 if (pid
->hide_pid
< hide_pid_min
)
691 if (in_group_p(pid
->pid_gid
))
693 return ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
);
697 static int proc_pid_permission(struct inode
*inode
, int mask
)
699 struct pid_namespace
*pid
= inode
->i_sb
->s_fs_info
;
700 struct task_struct
*task
;
703 task
= get_proc_task(inode
);
706 has_perms
= has_pid_permissions(pid
, task
, HIDEPID_NO_ACCESS
);
707 put_task_struct(task
);
710 if (pid
->hide_pid
== HIDEPID_INVISIBLE
) {
712 * Let's make getdents(), stat(), and open()
713 * consistent with each other. If a process
714 * may not stat() a file, it shouldn't be seen
722 return generic_permission(inode
, mask
);
727 static const struct inode_operations proc_def_inode_operations
= {
728 .setattr
= proc_setattr
,
731 static int proc_single_show(struct seq_file
*m
, void *v
)
733 struct inode
*inode
= m
->private;
734 struct pid_namespace
*ns
;
736 struct task_struct
*task
;
739 ns
= inode
->i_sb
->s_fs_info
;
740 pid
= proc_pid(inode
);
741 task
= get_pid_task(pid
, PIDTYPE_PID
);
745 ret
= PROC_I(inode
)->op
.proc_show(m
, ns
, pid
, task
);
747 put_task_struct(task
);
751 static int proc_single_open(struct inode
*inode
, struct file
*filp
)
753 return single_open(filp
, proc_single_show
, inode
);
756 static const struct file_operations proc_single_file_operations
= {
757 .open
= proc_single_open
,
760 .release
= single_release
,
764 struct mm_struct
*proc_mem_open(struct inode
*inode
, unsigned int mode
)
766 struct task_struct
*task
= get_proc_task(inode
);
767 struct mm_struct
*mm
= ERR_PTR(-ESRCH
);
770 mm
= mm_access(task
, mode
| PTRACE_MODE_FSCREDS
);
771 put_task_struct(task
);
773 if (!IS_ERR_OR_NULL(mm
)) {
774 /* ensure this mm_struct can't be freed */
776 /* but do not pin its memory */
784 static int __mem_open(struct inode
*inode
, struct file
*file
, unsigned int mode
)
786 struct mm_struct
*mm
= proc_mem_open(inode
, mode
);
791 file
->private_data
= mm
;
795 static int mem_open(struct inode
*inode
, struct file
*file
)
797 int ret
= __mem_open(inode
, file
, PTRACE_MODE_ATTACH
);
799 /* OK to pass negative loff_t, we can catch out-of-range */
800 file
->f_mode
|= FMODE_UNSIGNED_OFFSET
;
805 static ssize_t
mem_rw(struct file
*file
, char __user
*buf
,
806 size_t count
, loff_t
*ppos
, int write
)
808 struct mm_struct
*mm
= file
->private_data
;
809 unsigned long addr
= *ppos
;
817 page
= (char *)__get_free_page(GFP_KERNEL
);
822 if (!mmget_not_zero(mm
))
825 flags
= FOLL_FORCE
| (write
? FOLL_WRITE
: 0);
828 int this_len
= min_t(int, count
, PAGE_SIZE
);
830 if (write
&& copy_from_user(page
, buf
, this_len
)) {
835 this_len
= access_remote_vm(mm
, addr
, page
, this_len
, flags
);
842 if (!write
&& copy_to_user(buf
, page
, this_len
)) {
856 free_page((unsigned long) page
);
860 static ssize_t
mem_read(struct file
*file
, char __user
*buf
,
861 size_t count
, loff_t
*ppos
)
863 return mem_rw(file
, buf
, count
, ppos
, 0);
866 static ssize_t
mem_write(struct file
*file
, const char __user
*buf
,
867 size_t count
, loff_t
*ppos
)
869 return mem_rw(file
, (char __user
*)buf
, count
, ppos
, 1);
872 loff_t
mem_lseek(struct file
*file
, loff_t offset
, int orig
)
876 file
->f_pos
= offset
;
879 file
->f_pos
+= offset
;
884 force_successful_syscall_return();
888 static int mem_release(struct inode
*inode
, struct file
*file
)
890 struct mm_struct
*mm
= file
->private_data
;
896 static const struct file_operations proc_mem_operations
= {
901 .release
= mem_release
,
904 static int environ_open(struct inode
*inode
, struct file
*file
)
906 return __mem_open(inode
, file
, PTRACE_MODE_READ
);
909 static ssize_t
environ_read(struct file
*file
, char __user
*buf
,
910 size_t count
, loff_t
*ppos
)
913 unsigned long src
= *ppos
;
915 struct mm_struct
*mm
= file
->private_data
;
916 unsigned long env_start
, env_end
;
918 /* Ensure the process spawned far enough to have an environment. */
919 if (!mm
|| !mm
->env_end
)
922 page
= (char *)__get_free_page(GFP_KERNEL
);
927 if (!mmget_not_zero(mm
))
930 down_read(&mm
->mmap_sem
);
931 env_start
= mm
->env_start
;
932 env_end
= mm
->env_end
;
933 up_read(&mm
->mmap_sem
);
936 size_t this_len
, max_len
;
939 if (src
>= (env_end
- env_start
))
942 this_len
= env_end
- (env_start
+ src
);
944 max_len
= min_t(size_t, PAGE_SIZE
, count
);
945 this_len
= min(max_len
, this_len
);
947 retval
= access_remote_vm(mm
, (env_start
+ src
), page
, this_len
, 0);
954 if (copy_to_user(buf
, page
, retval
)) {
968 free_page((unsigned long) page
);
972 static const struct file_operations proc_environ_operations
= {
973 .open
= environ_open
,
974 .read
= environ_read
,
975 .llseek
= generic_file_llseek
,
976 .release
= mem_release
,
979 static int auxv_open(struct inode
*inode
, struct file
*file
)
981 return __mem_open(inode
, file
, PTRACE_MODE_READ_FSCREDS
);
984 static ssize_t
auxv_read(struct file
*file
, char __user
*buf
,
985 size_t count
, loff_t
*ppos
)
987 struct mm_struct
*mm
= file
->private_data
;
988 unsigned int nwords
= 0;
994 } while (mm
->saved_auxv
[nwords
- 2] != 0); /* AT_NULL */
995 return simple_read_from_buffer(buf
, count
, ppos
, mm
->saved_auxv
,
996 nwords
* sizeof(mm
->saved_auxv
[0]));
999 static const struct file_operations proc_auxv_operations
= {
1002 .llseek
= generic_file_llseek
,
1003 .release
= mem_release
,
1006 static ssize_t
oom_adj_read(struct file
*file
, char __user
*buf
, size_t count
,
1009 struct task_struct
*task
= get_proc_task(file_inode(file
));
1010 char buffer
[PROC_NUMBUF
];
1011 int oom_adj
= OOM_ADJUST_MIN
;
1016 if (task
->signal
->oom_score_adj
== OOM_SCORE_ADJ_MAX
)
1017 oom_adj
= OOM_ADJUST_MAX
;
1019 oom_adj
= (task
->signal
->oom_score_adj
* -OOM_DISABLE
) /
1021 put_task_struct(task
);
1022 len
= snprintf(buffer
, sizeof(buffer
), "%d\n", oom_adj
);
1023 return simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
1026 static int __set_oom_adj(struct file
*file
, int oom_adj
, bool legacy
)
1028 static DEFINE_MUTEX(oom_adj_mutex
);
1029 struct mm_struct
*mm
= NULL
;
1030 struct task_struct
*task
;
1033 task
= get_proc_task(file_inode(file
));
1037 mutex_lock(&oom_adj_mutex
);
1039 if (oom_adj
< task
->signal
->oom_score_adj
&&
1040 !capable(CAP_SYS_RESOURCE
)) {
1045 * /proc/pid/oom_adj is provided for legacy purposes, ask users to use
1046 * /proc/pid/oom_score_adj instead.
1048 pr_warn_once("%s (%d): /proc/%d/oom_adj is deprecated, please use /proc/%d/oom_score_adj instead.\n",
1049 current
->comm
, task_pid_nr(current
), task_pid_nr(task
),
1052 if ((short)oom_adj
< task
->signal
->oom_score_adj_min
&&
1053 !capable(CAP_SYS_RESOURCE
)) {
1060 * Make sure we will check other processes sharing the mm if this is
1061 * not vfrok which wants its own oom_score_adj.
1062 * pin the mm so it doesn't go away and get reused after task_unlock
1064 if (!task
->vfork_done
) {
1065 struct task_struct
*p
= find_lock_task_mm(task
);
1068 if (atomic_read(&p
->mm
->mm_users
) > 1) {
1076 task
->signal
->oom_score_adj
= oom_adj
;
1077 if (!legacy
&& has_capability_noaudit(current
, CAP_SYS_RESOURCE
))
1078 task
->signal
->oom_score_adj_min
= (short)oom_adj
;
1079 trace_oom_score_adj_update(task
);
1082 struct task_struct
*p
;
1085 for_each_process(p
) {
1086 if (same_thread_group(task
, p
))
1089 /* do not touch kernel threads or the global init */
1090 if (p
->flags
& PF_KTHREAD
|| is_global_init(p
))
1094 if (!p
->vfork_done
&& process_shares_mm(p
, mm
)) {
1095 pr_info("updating oom_score_adj for %d (%s) from %d to %d because it shares mm with %d (%s). Report if this is unexpected.\n",
1096 task_pid_nr(p
), p
->comm
,
1097 p
->signal
->oom_score_adj
, oom_adj
,
1098 task_pid_nr(task
), task
->comm
);
1099 p
->signal
->oom_score_adj
= oom_adj
;
1100 if (!legacy
&& has_capability_noaudit(current
, CAP_SYS_RESOURCE
))
1101 p
->signal
->oom_score_adj_min
= (short)oom_adj
;
1109 mutex_unlock(&oom_adj_mutex
);
1110 put_task_struct(task
);
1115 * /proc/pid/oom_adj exists solely for backwards compatibility with previous
1116 * kernels. The effective policy is defined by oom_score_adj, which has a
1117 * different scale: oom_adj grew exponentially and oom_score_adj grows linearly.
1118 * Values written to oom_adj are simply mapped linearly to oom_score_adj.
1119 * Processes that become oom disabled via oom_adj will still be oom disabled
1120 * with this implementation.
1122 * oom_adj cannot be removed since existing userspace binaries use it.
1124 static ssize_t
oom_adj_write(struct file
*file
, const char __user
*buf
,
1125 size_t count
, loff_t
*ppos
)
1127 char buffer
[PROC_NUMBUF
];
1131 memset(buffer
, 0, sizeof(buffer
));
1132 if (count
> sizeof(buffer
) - 1)
1133 count
= sizeof(buffer
) - 1;
1134 if (copy_from_user(buffer
, buf
, count
)) {
1139 err
= kstrtoint(strstrip(buffer
), 0, &oom_adj
);
1142 if ((oom_adj
< OOM_ADJUST_MIN
|| oom_adj
> OOM_ADJUST_MAX
) &&
1143 oom_adj
!= OOM_DISABLE
) {
1149 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
1150 * value is always attainable.
1152 if (oom_adj
== OOM_ADJUST_MAX
)
1153 oom_adj
= OOM_SCORE_ADJ_MAX
;
1155 oom_adj
= (oom_adj
* OOM_SCORE_ADJ_MAX
) / -OOM_DISABLE
;
1157 err
= __set_oom_adj(file
, oom_adj
, true);
1159 return err
< 0 ? err
: count
;
1162 static const struct file_operations proc_oom_adj_operations
= {
1163 .read
= oom_adj_read
,
1164 .write
= oom_adj_write
,
1165 .llseek
= generic_file_llseek
,
1168 static ssize_t
oom_score_adj_read(struct file
*file
, char __user
*buf
,
1169 size_t count
, loff_t
*ppos
)
1171 struct task_struct
*task
= get_proc_task(file_inode(file
));
1172 char buffer
[PROC_NUMBUF
];
1173 short oom_score_adj
= OOM_SCORE_ADJ_MIN
;
1178 oom_score_adj
= task
->signal
->oom_score_adj
;
1179 put_task_struct(task
);
1180 len
= snprintf(buffer
, sizeof(buffer
), "%hd\n", oom_score_adj
);
1181 return simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
1184 static ssize_t
oom_score_adj_write(struct file
*file
, const char __user
*buf
,
1185 size_t count
, loff_t
*ppos
)
1187 char buffer
[PROC_NUMBUF
];
1191 memset(buffer
, 0, sizeof(buffer
));
1192 if (count
> sizeof(buffer
) - 1)
1193 count
= sizeof(buffer
) - 1;
1194 if (copy_from_user(buffer
, buf
, count
)) {
1199 err
= kstrtoint(strstrip(buffer
), 0, &oom_score_adj
);
1202 if (oom_score_adj
< OOM_SCORE_ADJ_MIN
||
1203 oom_score_adj
> OOM_SCORE_ADJ_MAX
) {
1208 err
= __set_oom_adj(file
, oom_score_adj
, false);
1210 return err
< 0 ? err
: count
;
1213 static const struct file_operations proc_oom_score_adj_operations
= {
1214 .read
= oom_score_adj_read
,
1215 .write
= oom_score_adj_write
,
1216 .llseek
= default_llseek
,
1219 #ifdef CONFIG_AUDITSYSCALL
1220 #define TMPBUFLEN 11
1221 static ssize_t
proc_loginuid_read(struct file
* file
, char __user
* buf
,
1222 size_t count
, loff_t
*ppos
)
1224 struct inode
* inode
= file_inode(file
);
1225 struct task_struct
*task
= get_proc_task(inode
);
1227 char tmpbuf
[TMPBUFLEN
];
1231 length
= scnprintf(tmpbuf
, TMPBUFLEN
, "%u",
1232 from_kuid(file
->f_cred
->user_ns
,
1233 audit_get_loginuid(task
)));
1234 put_task_struct(task
);
1235 return simple_read_from_buffer(buf
, count
, ppos
, tmpbuf
, length
);
1238 static ssize_t
proc_loginuid_write(struct file
* file
, const char __user
* buf
,
1239 size_t count
, loff_t
*ppos
)
1241 struct inode
* inode
= file_inode(file
);
1247 if (current
!= pid_task(proc_pid(inode
), PIDTYPE_PID
)) {
1254 /* No partial writes. */
1258 rv
= kstrtou32_from_user(buf
, count
, 10, &loginuid
);
1262 /* is userspace tring to explicitly UNSET the loginuid? */
1263 if (loginuid
== AUDIT_UID_UNSET
) {
1264 kloginuid
= INVALID_UID
;
1266 kloginuid
= make_kuid(file
->f_cred
->user_ns
, loginuid
);
1267 if (!uid_valid(kloginuid
))
1271 rv
= audit_set_loginuid(kloginuid
);
1277 static const struct file_operations proc_loginuid_operations
= {
1278 .read
= proc_loginuid_read
,
1279 .write
= proc_loginuid_write
,
1280 .llseek
= generic_file_llseek
,
1283 static ssize_t
proc_sessionid_read(struct file
* file
, char __user
* buf
,
1284 size_t count
, loff_t
*ppos
)
1286 struct inode
* inode
= file_inode(file
);
1287 struct task_struct
*task
= get_proc_task(inode
);
1289 char tmpbuf
[TMPBUFLEN
];
1293 length
= scnprintf(tmpbuf
, TMPBUFLEN
, "%u",
1294 audit_get_sessionid(task
));
1295 put_task_struct(task
);
1296 return simple_read_from_buffer(buf
, count
, ppos
, tmpbuf
, length
);
1299 static const struct file_operations proc_sessionid_operations
= {
1300 .read
= proc_sessionid_read
,
1301 .llseek
= generic_file_llseek
,
1305 #ifdef CONFIG_FAULT_INJECTION
1306 static ssize_t
proc_fault_inject_read(struct file
* file
, char __user
* buf
,
1307 size_t count
, loff_t
*ppos
)
1309 struct task_struct
*task
= get_proc_task(file_inode(file
));
1310 char buffer
[PROC_NUMBUF
];
1316 make_it_fail
= task
->make_it_fail
;
1317 put_task_struct(task
);
1319 len
= snprintf(buffer
, sizeof(buffer
), "%i\n", make_it_fail
);
1321 return simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
1324 static ssize_t
proc_fault_inject_write(struct file
* file
,
1325 const char __user
* buf
, size_t count
, loff_t
*ppos
)
1327 struct task_struct
*task
;
1328 char buffer
[PROC_NUMBUF
];
1332 if (!capable(CAP_SYS_RESOURCE
))
1334 memset(buffer
, 0, sizeof(buffer
));
1335 if (count
> sizeof(buffer
) - 1)
1336 count
= sizeof(buffer
) - 1;
1337 if (copy_from_user(buffer
, buf
, count
))
1339 rv
= kstrtoint(strstrip(buffer
), 0, &make_it_fail
);
1342 if (make_it_fail
< 0 || make_it_fail
> 1)
1345 task
= get_proc_task(file_inode(file
));
1348 task
->make_it_fail
= make_it_fail
;
1349 put_task_struct(task
);
1354 static const struct file_operations proc_fault_inject_operations
= {
1355 .read
= proc_fault_inject_read
,
1356 .write
= proc_fault_inject_write
,
1357 .llseek
= generic_file_llseek
,
1360 static ssize_t
proc_fail_nth_write(struct file
*file
, const char __user
*buf
,
1361 size_t count
, loff_t
*ppos
)
1363 struct task_struct
*task
;
1367 err
= kstrtouint_from_user(buf
, count
, 0, &n
);
1371 task
= get_proc_task(file_inode(file
));
1374 WRITE_ONCE(task
->fail_nth
, n
);
1375 put_task_struct(task
);
1380 static ssize_t
proc_fail_nth_read(struct file
*file
, char __user
*buf
,
1381 size_t count
, loff_t
*ppos
)
1383 struct task_struct
*task
;
1384 char numbuf
[PROC_NUMBUF
];
1387 task
= get_proc_task(file_inode(file
));
1390 len
= snprintf(numbuf
, sizeof(numbuf
), "%u\n",
1391 READ_ONCE(task
->fail_nth
));
1392 len
= simple_read_from_buffer(buf
, count
, ppos
, numbuf
, len
);
1393 put_task_struct(task
);
1398 static const struct file_operations proc_fail_nth_operations
= {
1399 .read
= proc_fail_nth_read
,
1400 .write
= proc_fail_nth_write
,
1405 #ifdef CONFIG_SCHED_DEBUG
1407 * Print out various scheduling related per-task fields:
1409 static int sched_show(struct seq_file
*m
, void *v
)
1411 struct inode
*inode
= m
->private;
1412 struct pid_namespace
*ns
= inode
->i_sb
->s_fs_info
;
1413 struct task_struct
*p
;
1415 p
= get_proc_task(inode
);
1418 proc_sched_show_task(p
, ns
, m
);
1426 sched_write(struct file
*file
, const char __user
*buf
,
1427 size_t count
, loff_t
*offset
)
1429 struct inode
*inode
= file_inode(file
);
1430 struct task_struct
*p
;
1432 p
= get_proc_task(inode
);
1435 proc_sched_set_task(p
);
1442 static int sched_open(struct inode
*inode
, struct file
*filp
)
1444 return single_open(filp
, sched_show
, inode
);
1447 static const struct file_operations proc_pid_sched_operations
= {
1450 .write
= sched_write
,
1451 .llseek
= seq_lseek
,
1452 .release
= single_release
,
1457 #ifdef CONFIG_SCHED_AUTOGROUP
1459 * Print out autogroup related information:
1461 static int sched_autogroup_show(struct seq_file
*m
, void *v
)
1463 struct inode
*inode
= m
->private;
1464 struct task_struct
*p
;
1466 p
= get_proc_task(inode
);
1469 proc_sched_autogroup_show_task(p
, m
);
1477 sched_autogroup_write(struct file
*file
, const char __user
*buf
,
1478 size_t count
, loff_t
*offset
)
1480 struct inode
*inode
= file_inode(file
);
1481 struct task_struct
*p
;
1482 char buffer
[PROC_NUMBUF
];
1486 memset(buffer
, 0, sizeof(buffer
));
1487 if (count
> sizeof(buffer
) - 1)
1488 count
= sizeof(buffer
) - 1;
1489 if (copy_from_user(buffer
, buf
, count
))
1492 err
= kstrtoint(strstrip(buffer
), 0, &nice
);
1496 p
= get_proc_task(inode
);
1500 err
= proc_sched_autogroup_set_nice(p
, nice
);
1509 static int sched_autogroup_open(struct inode
*inode
, struct file
*filp
)
1513 ret
= single_open(filp
, sched_autogroup_show
, NULL
);
1515 struct seq_file
*m
= filp
->private_data
;
1522 static const struct file_operations proc_pid_sched_autogroup_operations
= {
1523 .open
= sched_autogroup_open
,
1525 .write
= sched_autogroup_write
,
1526 .llseek
= seq_lseek
,
1527 .release
= single_release
,
1530 #endif /* CONFIG_SCHED_AUTOGROUP */
1532 static ssize_t
comm_write(struct file
*file
, const char __user
*buf
,
1533 size_t count
, loff_t
*offset
)
1535 struct inode
*inode
= file_inode(file
);
1536 struct task_struct
*p
;
1537 char buffer
[TASK_COMM_LEN
];
1538 const size_t maxlen
= sizeof(buffer
) - 1;
1540 memset(buffer
, 0, sizeof(buffer
));
1541 if (copy_from_user(buffer
, buf
, count
> maxlen
? maxlen
: count
))
1544 p
= get_proc_task(inode
);
1548 if (same_thread_group(current
, p
))
1549 set_task_comm(p
, buffer
);
1558 static int comm_show(struct seq_file
*m
, void *v
)
1560 struct inode
*inode
= m
->private;
1561 struct task_struct
*p
;
1563 p
= get_proc_task(inode
);
1568 seq_printf(m
, "%s\n", p
->comm
);
1576 static int comm_open(struct inode
*inode
, struct file
*filp
)
1578 return single_open(filp
, comm_show
, inode
);
1581 static const struct file_operations proc_pid_set_comm_operations
= {
1584 .write
= comm_write
,
1585 .llseek
= seq_lseek
,
1586 .release
= single_release
,
1589 static int proc_exe_link(struct dentry
*dentry
, struct path
*exe_path
)
1591 struct task_struct
*task
;
1592 struct file
*exe_file
;
1594 task
= get_proc_task(d_inode(dentry
));
1597 exe_file
= get_task_exe_file(task
);
1598 put_task_struct(task
);
1600 *exe_path
= exe_file
->f_path
;
1601 path_get(&exe_file
->f_path
);
1608 static const char *proc_pid_get_link(struct dentry
*dentry
,
1609 struct inode
*inode
,
1610 struct delayed_call
*done
)
1613 int error
= -EACCES
;
1616 return ERR_PTR(-ECHILD
);
1618 /* Are we allowed to snoop on the tasks file descriptors? */
1619 if (!proc_fd_access_allowed(inode
))
1622 error
= PROC_I(inode
)->op
.proc_get_link(dentry
, &path
);
1626 nd_jump_link(&path
);
1629 return ERR_PTR(error
);
1632 static int do_proc_readlink(struct path
*path
, char __user
*buffer
, int buflen
)
1634 char *tmp
= (char *)__get_free_page(GFP_KERNEL
);
1641 pathname
= d_path(path
, tmp
, PAGE_SIZE
);
1642 len
= PTR_ERR(pathname
);
1643 if (IS_ERR(pathname
))
1645 len
= tmp
+ PAGE_SIZE
- 1 - pathname
;
1649 if (copy_to_user(buffer
, pathname
, len
))
1652 free_page((unsigned long)tmp
);
1656 static int proc_pid_readlink(struct dentry
* dentry
, char __user
* buffer
, int buflen
)
1658 int error
= -EACCES
;
1659 struct inode
*inode
= d_inode(dentry
);
1662 /* Are we allowed to snoop on the tasks file descriptors? */
1663 if (!proc_fd_access_allowed(inode
))
1666 error
= PROC_I(inode
)->op
.proc_get_link(dentry
, &path
);
1670 error
= do_proc_readlink(&path
, buffer
, buflen
);
1676 const struct inode_operations proc_pid_link_inode_operations
= {
1677 .readlink
= proc_pid_readlink
,
1678 .get_link
= proc_pid_get_link
,
1679 .setattr
= proc_setattr
,
1683 /* building an inode */
1685 void task_dump_owner(struct task_struct
*task
, mode_t mode
,
1686 kuid_t
*ruid
, kgid_t
*rgid
)
1688 /* Depending on the state of dumpable compute who should own a
1689 * proc file for a task.
1691 const struct cred
*cred
;
1695 /* Default to the tasks effective ownership */
1697 cred
= __task_cred(task
);
1703 * Before the /proc/pid/status file was created the only way to read
1704 * the effective uid of a /process was to stat /proc/pid. Reading
1705 * /proc/pid/status is slow enough that procps and other packages
1706 * kept stating /proc/pid. To keep the rules in /proc simple I have
1707 * made this apply to all per process world readable and executable
1710 if (mode
!= (S_IFDIR
|S_IRUGO
|S_IXUGO
)) {
1711 struct mm_struct
*mm
;
1714 /* Make non-dumpable tasks owned by some root */
1716 if (get_dumpable(mm
) != SUID_DUMP_USER
) {
1717 struct user_namespace
*user_ns
= mm
->user_ns
;
1719 uid
= make_kuid(user_ns
, 0);
1720 if (!uid_valid(uid
))
1721 uid
= GLOBAL_ROOT_UID
;
1723 gid
= make_kgid(user_ns
, 0);
1724 if (!gid_valid(gid
))
1725 gid
= GLOBAL_ROOT_GID
;
1728 uid
= GLOBAL_ROOT_UID
;
1729 gid
= GLOBAL_ROOT_GID
;
1737 struct inode
*proc_pid_make_inode(struct super_block
* sb
,
1738 struct task_struct
*task
, umode_t mode
)
1740 struct inode
* inode
;
1741 struct proc_inode
*ei
;
1743 /* We need a new inode */
1745 inode
= new_inode(sb
);
1751 inode
->i_mode
= mode
;
1752 inode
->i_ino
= get_next_ino();
1753 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= current_time(inode
);
1754 inode
->i_op
= &proc_def_inode_operations
;
1757 * grab the reference to task.
1759 ei
->pid
= get_task_pid(task
, PIDTYPE_PID
);
1763 task_dump_owner(task
, 0, &inode
->i_uid
, &inode
->i_gid
);
1764 security_task_to_inode(task
, inode
);
1774 int pid_getattr(const struct path
*path
, struct kstat
*stat
,
1775 u32 request_mask
, unsigned int query_flags
)
1777 struct inode
*inode
= d_inode(path
->dentry
);
1778 struct task_struct
*task
;
1779 struct pid_namespace
*pid
= path
->dentry
->d_sb
->s_fs_info
;
1781 generic_fillattr(inode
, stat
);
1784 stat
->uid
= GLOBAL_ROOT_UID
;
1785 stat
->gid
= GLOBAL_ROOT_GID
;
1786 task
= pid_task(proc_pid(inode
), PIDTYPE_PID
);
1788 if (!has_pid_permissions(pid
, task
, HIDEPID_INVISIBLE
)) {
1791 * This doesn't prevent learning whether PID exists,
1792 * it only makes getattr() consistent with readdir().
1796 task_dump_owner(task
, inode
->i_mode
, &stat
->uid
, &stat
->gid
);
1805 * Exceptional case: normally we are not allowed to unhash a busy
1806 * directory. In this case, however, we can do it - no aliasing problems
1807 * due to the way we treat inodes.
1809 * Rewrite the inode's ownerships here because the owning task may have
1810 * performed a setuid(), etc.
1813 int pid_revalidate(struct dentry
*dentry
, unsigned int flags
)
1815 struct inode
*inode
;
1816 struct task_struct
*task
;
1818 if (flags
& LOOKUP_RCU
)
1821 inode
= d_inode(dentry
);
1822 task
= get_proc_task(inode
);
1825 task_dump_owner(task
, inode
->i_mode
, &inode
->i_uid
, &inode
->i_gid
);
1827 inode
->i_mode
&= ~(S_ISUID
| S_ISGID
);
1828 security_task_to_inode(task
, inode
);
1829 put_task_struct(task
);
1835 static inline bool proc_inode_is_dead(struct inode
*inode
)
1837 return !proc_pid(inode
)->tasks
[PIDTYPE_PID
].first
;
1840 int pid_delete_dentry(const struct dentry
*dentry
)
1842 /* Is the task we represent dead?
1843 * If so, then don't put the dentry on the lru list,
1844 * kill it immediately.
1846 return proc_inode_is_dead(d_inode(dentry
));
1849 const struct dentry_operations pid_dentry_operations
=
1851 .d_revalidate
= pid_revalidate
,
1852 .d_delete
= pid_delete_dentry
,
1858 * Fill a directory entry.
1860 * If possible create the dcache entry and derive our inode number and
1861 * file type from dcache entry.
1863 * Since all of the proc inode numbers are dynamically generated, the inode
1864 * numbers do not exist until the inode is cache. This means creating the
1865 * the dcache entry in readdir is necessary to keep the inode numbers
1866 * reported by readdir in sync with the inode numbers reported
1869 bool proc_fill_cache(struct file
*file
, struct dir_context
*ctx
,
1870 const char *name
, int len
,
1871 instantiate_t instantiate
, struct task_struct
*task
, const void *ptr
)
1873 struct dentry
*child
, *dir
= file
->f_path
.dentry
;
1874 struct qstr qname
= QSTR_INIT(name
, len
);
1875 struct inode
*inode
;
1879 child
= d_hash_and_lookup(dir
, &qname
);
1881 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq
);
1882 child
= d_alloc_parallel(dir
, &qname
, &wq
);
1884 goto end_instantiate
;
1885 if (d_in_lookup(child
)) {
1886 int err
= instantiate(d_inode(dir
), child
, task
, ptr
);
1887 d_lookup_done(child
);
1890 goto end_instantiate
;
1894 inode
= d_inode(child
);
1896 type
= inode
->i_mode
>> 12;
1898 return dir_emit(ctx
, name
, len
, ino
, type
);
1901 return dir_emit(ctx
, name
, len
, 1, DT_UNKNOWN
);
1905 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1906 * which represent vma start and end addresses.
1908 static int dname_to_vma_addr(struct dentry
*dentry
,
1909 unsigned long *start
, unsigned long *end
)
1911 if (sscanf(dentry
->d_name
.name
, "%lx-%lx", start
, end
) != 2)
1917 static int map_files_d_revalidate(struct dentry
*dentry
, unsigned int flags
)
1919 unsigned long vm_start
, vm_end
;
1920 bool exact_vma_exists
= false;
1921 struct mm_struct
*mm
= NULL
;
1922 struct task_struct
*task
;
1923 struct inode
*inode
;
1926 if (flags
& LOOKUP_RCU
)
1929 inode
= d_inode(dentry
);
1930 task
= get_proc_task(inode
);
1934 mm
= mm_access(task
, PTRACE_MODE_READ_FSCREDS
);
1935 if (IS_ERR_OR_NULL(mm
))
1938 if (!dname_to_vma_addr(dentry
, &vm_start
, &vm_end
)) {
1939 down_read(&mm
->mmap_sem
);
1940 exact_vma_exists
= !!find_exact_vma(mm
, vm_start
, vm_end
);
1941 up_read(&mm
->mmap_sem
);
1946 if (exact_vma_exists
) {
1947 task_dump_owner(task
, 0, &inode
->i_uid
, &inode
->i_gid
);
1949 security_task_to_inode(task
, inode
);
1954 put_task_struct(task
);
1960 static const struct dentry_operations tid_map_files_dentry_operations
= {
1961 .d_revalidate
= map_files_d_revalidate
,
1962 .d_delete
= pid_delete_dentry
,
1965 static int map_files_get_link(struct dentry
*dentry
, struct path
*path
)
1967 unsigned long vm_start
, vm_end
;
1968 struct vm_area_struct
*vma
;
1969 struct task_struct
*task
;
1970 struct mm_struct
*mm
;
1974 task
= get_proc_task(d_inode(dentry
));
1978 mm
= get_task_mm(task
);
1979 put_task_struct(task
);
1983 rc
= dname_to_vma_addr(dentry
, &vm_start
, &vm_end
);
1988 down_read(&mm
->mmap_sem
);
1989 vma
= find_exact_vma(mm
, vm_start
, vm_end
);
1990 if (vma
&& vma
->vm_file
) {
1991 *path
= vma
->vm_file
->f_path
;
1995 up_read(&mm
->mmap_sem
);
2003 struct map_files_info
{
2006 unsigned char name
[4*sizeof(long)+2]; /* max: %lx-%lx\0 */
2010 * Only allow CAP_SYS_ADMIN to follow the links, due to concerns about how the
2011 * symlinks may be used to bypass permissions on ancestor directories in the
2012 * path to the file in question.
2015 proc_map_files_get_link(struct dentry
*dentry
,
2016 struct inode
*inode
,
2017 struct delayed_call
*done
)
2019 if (!capable(CAP_SYS_ADMIN
))
2020 return ERR_PTR(-EPERM
);
2022 return proc_pid_get_link(dentry
, inode
, done
);
2026 * Identical to proc_pid_link_inode_operations except for get_link()
2028 static const struct inode_operations proc_map_files_link_inode_operations
= {
2029 .readlink
= proc_pid_readlink
,
2030 .get_link
= proc_map_files_get_link
,
2031 .setattr
= proc_setattr
,
2035 proc_map_files_instantiate(struct inode
*dir
, struct dentry
*dentry
,
2036 struct task_struct
*task
, const void *ptr
)
2038 fmode_t mode
= (fmode_t
)(unsigned long)ptr
;
2039 struct proc_inode
*ei
;
2040 struct inode
*inode
;
2042 inode
= proc_pid_make_inode(dir
->i_sb
, task
, S_IFLNK
|
2043 ((mode
& FMODE_READ
) ? S_IRUSR
: 0) |
2044 ((mode
& FMODE_WRITE
) ? S_IWUSR
: 0));
2049 ei
->op
.proc_get_link
= map_files_get_link
;
2051 inode
->i_op
= &proc_map_files_link_inode_operations
;
2054 d_set_d_op(dentry
, &tid_map_files_dentry_operations
);
2055 d_add(dentry
, inode
);
2060 static struct dentry
*proc_map_files_lookup(struct inode
*dir
,
2061 struct dentry
*dentry
, unsigned int flags
)
2063 unsigned long vm_start
, vm_end
;
2064 struct vm_area_struct
*vma
;
2065 struct task_struct
*task
;
2067 struct mm_struct
*mm
;
2070 task
= get_proc_task(dir
);
2075 if (!ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
))
2079 if (dname_to_vma_addr(dentry
, &vm_start
, &vm_end
))
2082 mm
= get_task_mm(task
);
2086 down_read(&mm
->mmap_sem
);
2087 vma
= find_exact_vma(mm
, vm_start
, vm_end
);
2092 result
= proc_map_files_instantiate(dir
, dentry
, task
,
2093 (void *)(unsigned long)vma
->vm_file
->f_mode
);
2096 up_read(&mm
->mmap_sem
);
2099 put_task_struct(task
);
2101 return ERR_PTR(result
);
2104 static const struct inode_operations proc_map_files_inode_operations
= {
2105 .lookup
= proc_map_files_lookup
,
2106 .permission
= proc_fd_permission
,
2107 .setattr
= proc_setattr
,
2111 proc_map_files_readdir(struct file
*file
, struct dir_context
*ctx
)
2113 struct vm_area_struct
*vma
;
2114 struct task_struct
*task
;
2115 struct mm_struct
*mm
;
2116 unsigned long nr_files
, pos
, i
;
2117 struct flex_array
*fa
= NULL
;
2118 struct map_files_info info
;
2119 struct map_files_info
*p
;
2123 task
= get_proc_task(file_inode(file
));
2128 if (!ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
))
2132 if (!dir_emit_dots(file
, ctx
))
2135 mm
= get_task_mm(task
);
2138 down_read(&mm
->mmap_sem
);
2143 * We need two passes here:
2145 * 1) Collect vmas of mapped files with mmap_sem taken
2146 * 2) Release mmap_sem and instantiate entries
2148 * otherwise we get lockdep complained, since filldir()
2149 * routine might require mmap_sem taken in might_fault().
2152 for (vma
= mm
->mmap
, pos
= 2; vma
; vma
= vma
->vm_next
) {
2153 if (vma
->vm_file
&& ++pos
> ctx
->pos
)
2158 fa
= flex_array_alloc(sizeof(info
), nr_files
,
2160 if (!fa
|| flex_array_prealloc(fa
, 0, nr_files
,
2164 flex_array_free(fa
);
2165 up_read(&mm
->mmap_sem
);
2169 for (i
= 0, vma
= mm
->mmap
, pos
= 2; vma
;
2170 vma
= vma
->vm_next
) {
2173 if (++pos
<= ctx
->pos
)
2176 info
.mode
= vma
->vm_file
->f_mode
;
2177 info
.len
= snprintf(info
.name
,
2178 sizeof(info
.name
), "%lx-%lx",
2179 vma
->vm_start
, vma
->vm_end
);
2180 if (flex_array_put(fa
, i
++, &info
, GFP_KERNEL
))
2184 up_read(&mm
->mmap_sem
);
2186 for (i
= 0; i
< nr_files
; i
++) {
2187 p
= flex_array_get(fa
, i
);
2188 if (!proc_fill_cache(file
, ctx
,
2190 proc_map_files_instantiate
,
2192 (void *)(unsigned long)p
->mode
))
2197 flex_array_free(fa
);
2201 put_task_struct(task
);
2206 static const struct file_operations proc_map_files_operations
= {
2207 .read
= generic_read_dir
,
2208 .iterate_shared
= proc_map_files_readdir
,
2209 .llseek
= generic_file_llseek
,
2212 #if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
2213 struct timers_private
{
2215 struct task_struct
*task
;
2216 struct sighand_struct
*sighand
;
2217 struct pid_namespace
*ns
;
2218 unsigned long flags
;
2221 static void *timers_start(struct seq_file
*m
, loff_t
*pos
)
2223 struct timers_private
*tp
= m
->private;
2225 tp
->task
= get_pid_task(tp
->pid
, PIDTYPE_PID
);
2227 return ERR_PTR(-ESRCH
);
2229 tp
->sighand
= lock_task_sighand(tp
->task
, &tp
->flags
);
2231 return ERR_PTR(-ESRCH
);
2233 return seq_list_start(&tp
->task
->signal
->posix_timers
, *pos
);
2236 static void *timers_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2238 struct timers_private
*tp
= m
->private;
2239 return seq_list_next(v
, &tp
->task
->signal
->posix_timers
, pos
);
2242 static void timers_stop(struct seq_file
*m
, void *v
)
2244 struct timers_private
*tp
= m
->private;
2247 unlock_task_sighand(tp
->task
, &tp
->flags
);
2252 put_task_struct(tp
->task
);
2257 static int show_timer(struct seq_file
*m
, void *v
)
2259 struct k_itimer
*timer
;
2260 struct timers_private
*tp
= m
->private;
2262 static const char * const nstr
[] = {
2263 [SIGEV_SIGNAL
] = "signal",
2264 [SIGEV_NONE
] = "none",
2265 [SIGEV_THREAD
] = "thread",
2268 timer
= list_entry((struct list_head
*)v
, struct k_itimer
, list
);
2269 notify
= timer
->it_sigev_notify
;
2271 seq_printf(m
, "ID: %d\n", timer
->it_id
);
2272 seq_printf(m
, "signal: %d/%p\n",
2273 timer
->sigq
->info
.si_signo
,
2274 timer
->sigq
->info
.si_value
.sival_ptr
);
2275 seq_printf(m
, "notify: %s/%s.%d\n",
2276 nstr
[notify
& ~SIGEV_THREAD_ID
],
2277 (notify
& SIGEV_THREAD_ID
) ? "tid" : "pid",
2278 pid_nr_ns(timer
->it_pid
, tp
->ns
));
2279 seq_printf(m
, "ClockID: %d\n", timer
->it_clock
);
2284 static const struct seq_operations proc_timers_seq_ops
= {
2285 .start
= timers_start
,
2286 .next
= timers_next
,
2287 .stop
= timers_stop
,
2291 static int proc_timers_open(struct inode
*inode
, struct file
*file
)
2293 struct timers_private
*tp
;
2295 tp
= __seq_open_private(file
, &proc_timers_seq_ops
,
2296 sizeof(struct timers_private
));
2300 tp
->pid
= proc_pid(inode
);
2301 tp
->ns
= inode
->i_sb
->s_fs_info
;
2305 static const struct file_operations proc_timers_operations
= {
2306 .open
= proc_timers_open
,
2308 .llseek
= seq_lseek
,
2309 .release
= seq_release_private
,
2313 static ssize_t
timerslack_ns_write(struct file
*file
, const char __user
*buf
,
2314 size_t count
, loff_t
*offset
)
2316 struct inode
*inode
= file_inode(file
);
2317 struct task_struct
*p
;
2321 err
= kstrtoull_from_user(buf
, count
, 10, &slack_ns
);
2325 p
= get_proc_task(inode
);
2330 if (!capable(CAP_SYS_NICE
)) {
2335 err
= security_task_setscheduler(p
);
2344 p
->timer_slack_ns
= p
->default_timer_slack_ns
;
2346 p
->timer_slack_ns
= slack_ns
;
2355 static int timerslack_ns_show(struct seq_file
*m
, void *v
)
2357 struct inode
*inode
= m
->private;
2358 struct task_struct
*p
;
2361 p
= get_proc_task(inode
);
2367 if (!capable(CAP_SYS_NICE
)) {
2371 err
= security_task_getscheduler(p
);
2377 seq_printf(m
, "%llu\n", p
->timer_slack_ns
);
2386 static int timerslack_ns_open(struct inode
*inode
, struct file
*filp
)
2388 return single_open(filp
, timerslack_ns_show
, inode
);
2391 static const struct file_operations proc_pid_set_timerslack_ns_operations
= {
2392 .open
= timerslack_ns_open
,
2394 .write
= timerslack_ns_write
,
2395 .llseek
= seq_lseek
,
2396 .release
= single_release
,
2399 static int proc_pident_instantiate(struct inode
*dir
,
2400 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
2402 const struct pid_entry
*p
= ptr
;
2403 struct inode
*inode
;
2404 struct proc_inode
*ei
;
2406 inode
= proc_pid_make_inode(dir
->i_sb
, task
, p
->mode
);
2411 if (S_ISDIR(inode
->i_mode
))
2412 set_nlink(inode
, 2); /* Use getattr to fix if necessary */
2414 inode
->i_op
= p
->iop
;
2416 inode
->i_fop
= p
->fop
;
2418 d_set_d_op(dentry
, &pid_dentry_operations
);
2419 d_add(dentry
, inode
);
2420 /* Close the race of the process dying before we return the dentry */
2421 if (pid_revalidate(dentry
, 0))
2427 static struct dentry
*proc_pident_lookup(struct inode
*dir
,
2428 struct dentry
*dentry
,
2429 const struct pid_entry
*ents
,
2433 struct task_struct
*task
= get_proc_task(dir
);
2434 const struct pid_entry
*p
, *last
;
2442 * Yes, it does not scale. And it should not. Don't add
2443 * new entries into /proc/<tgid>/ without very good reasons.
2445 last
= &ents
[nents
];
2446 for (p
= ents
; p
< last
; p
++) {
2447 if (p
->len
!= dentry
->d_name
.len
)
2449 if (!memcmp(dentry
->d_name
.name
, p
->name
, p
->len
))
2455 error
= proc_pident_instantiate(dir
, dentry
, task
, p
);
2457 put_task_struct(task
);
2459 return ERR_PTR(error
);
2462 static int proc_pident_readdir(struct file
*file
, struct dir_context
*ctx
,
2463 const struct pid_entry
*ents
, unsigned int nents
)
2465 struct task_struct
*task
= get_proc_task(file_inode(file
));
2466 const struct pid_entry
*p
;
2471 if (!dir_emit_dots(file
, ctx
))
2474 if (ctx
->pos
>= nents
+ 2)
2477 for (p
= ents
+ (ctx
->pos
- 2); p
< ents
+ nents
; p
++) {
2478 if (!proc_fill_cache(file
, ctx
, p
->name
, p
->len
,
2479 proc_pident_instantiate
, task
, p
))
2484 put_task_struct(task
);
2488 #ifdef CONFIG_SECURITY
2489 static ssize_t
proc_pid_attr_read(struct file
* file
, char __user
* buf
,
2490 size_t count
, loff_t
*ppos
)
2492 struct inode
* inode
= file_inode(file
);
2495 struct task_struct
*task
= get_proc_task(inode
);
2500 length
= security_getprocattr(task
,
2501 (char*)file
->f_path
.dentry
->d_name
.name
,
2503 put_task_struct(task
);
2505 length
= simple_read_from_buffer(buf
, count
, ppos
, p
, length
);
2510 static ssize_t
proc_pid_attr_write(struct file
* file
, const char __user
* buf
,
2511 size_t count
, loff_t
*ppos
)
2513 struct inode
* inode
= file_inode(file
);
2516 struct task_struct
*task
= get_proc_task(inode
);
2522 /* A task may only write its own attributes. */
2524 if (current
!= task
)
2527 if (count
> PAGE_SIZE
)
2530 /* No partial writes. */
2535 page
= memdup_user(buf
, count
);
2537 length
= PTR_ERR(page
);
2541 /* Guard against adverse ptrace interaction */
2542 length
= mutex_lock_interruptible(¤t
->signal
->cred_guard_mutex
);
2546 length
= security_setprocattr(file
->f_path
.dentry
->d_name
.name
,
2548 mutex_unlock(¤t
->signal
->cred_guard_mutex
);
2552 put_task_struct(task
);
2557 static const struct file_operations proc_pid_attr_operations
= {
2558 .read
= proc_pid_attr_read
,
2559 .write
= proc_pid_attr_write
,
2560 .llseek
= generic_file_llseek
,
2563 static const struct pid_entry attr_dir_stuff
[] = {
2564 REG("current", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2565 REG("prev", S_IRUGO
, proc_pid_attr_operations
),
2566 REG("exec", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2567 REG("fscreate", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2568 REG("keycreate", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2569 REG("sockcreate", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2572 static int proc_attr_dir_readdir(struct file
*file
, struct dir_context
*ctx
)
2574 return proc_pident_readdir(file
, ctx
,
2575 attr_dir_stuff
, ARRAY_SIZE(attr_dir_stuff
));
2578 static const struct file_operations proc_attr_dir_operations
= {
2579 .read
= generic_read_dir
,
2580 .iterate_shared
= proc_attr_dir_readdir
,
2581 .llseek
= generic_file_llseek
,
2584 static struct dentry
*proc_attr_dir_lookup(struct inode
*dir
,
2585 struct dentry
*dentry
, unsigned int flags
)
2587 return proc_pident_lookup(dir
, dentry
,
2588 attr_dir_stuff
, ARRAY_SIZE(attr_dir_stuff
));
2591 static const struct inode_operations proc_attr_dir_inode_operations
= {
2592 .lookup
= proc_attr_dir_lookup
,
2593 .getattr
= pid_getattr
,
2594 .setattr
= proc_setattr
,
2599 #ifdef CONFIG_ELF_CORE
2600 static ssize_t
proc_coredump_filter_read(struct file
*file
, char __user
*buf
,
2601 size_t count
, loff_t
*ppos
)
2603 struct task_struct
*task
= get_proc_task(file_inode(file
));
2604 struct mm_struct
*mm
;
2605 char buffer
[PROC_NUMBUF
];
2613 mm
= get_task_mm(task
);
2615 len
= snprintf(buffer
, sizeof(buffer
), "%08lx\n",
2616 ((mm
->flags
& MMF_DUMP_FILTER_MASK
) >>
2617 MMF_DUMP_FILTER_SHIFT
));
2619 ret
= simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
2622 put_task_struct(task
);
2627 static ssize_t
proc_coredump_filter_write(struct file
*file
,
2628 const char __user
*buf
,
2632 struct task_struct
*task
;
2633 struct mm_struct
*mm
;
2639 ret
= kstrtouint_from_user(buf
, count
, 0, &val
);
2644 task
= get_proc_task(file_inode(file
));
2648 mm
= get_task_mm(task
);
2653 for (i
= 0, mask
= 1; i
< MMF_DUMP_FILTER_BITS
; i
++, mask
<<= 1) {
2655 set_bit(i
+ MMF_DUMP_FILTER_SHIFT
, &mm
->flags
);
2657 clear_bit(i
+ MMF_DUMP_FILTER_SHIFT
, &mm
->flags
);
2662 put_task_struct(task
);
2669 static const struct file_operations proc_coredump_filter_operations
= {
2670 .read
= proc_coredump_filter_read
,
2671 .write
= proc_coredump_filter_write
,
2672 .llseek
= generic_file_llseek
,
2676 #ifdef CONFIG_TASK_IO_ACCOUNTING
2677 static int do_io_accounting(struct task_struct
*task
, struct seq_file
*m
, int whole
)
2679 struct task_io_accounting acct
= task
->ioac
;
2680 unsigned long flags
;
2683 result
= mutex_lock_killable(&task
->signal
->cred_guard_mutex
);
2687 if (!ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
)) {
2692 if (whole
&& lock_task_sighand(task
, &flags
)) {
2693 struct task_struct
*t
= task
;
2695 task_io_accounting_add(&acct
, &task
->signal
->ioac
);
2696 while_each_thread(task
, t
)
2697 task_io_accounting_add(&acct
, &t
->ioac
);
2699 unlock_task_sighand(task
, &flags
);
2706 "read_bytes: %llu\n"
2707 "write_bytes: %llu\n"
2708 "cancelled_write_bytes: %llu\n",
2709 (unsigned long long)acct
.rchar
,
2710 (unsigned long long)acct
.wchar
,
2711 (unsigned long long)acct
.syscr
,
2712 (unsigned long long)acct
.syscw
,
2713 (unsigned long long)acct
.read_bytes
,
2714 (unsigned long long)acct
.write_bytes
,
2715 (unsigned long long)acct
.cancelled_write_bytes
);
2719 mutex_unlock(&task
->signal
->cred_guard_mutex
);
2723 static int proc_tid_io_accounting(struct seq_file
*m
, struct pid_namespace
*ns
,
2724 struct pid
*pid
, struct task_struct
*task
)
2726 return do_io_accounting(task
, m
, 0);
2729 static int proc_tgid_io_accounting(struct seq_file
*m
, struct pid_namespace
*ns
,
2730 struct pid
*pid
, struct task_struct
*task
)
2732 return do_io_accounting(task
, m
, 1);
2734 #endif /* CONFIG_TASK_IO_ACCOUNTING */
2736 #ifdef CONFIG_USER_NS
2737 static int proc_id_map_open(struct inode
*inode
, struct file
*file
,
2738 const struct seq_operations
*seq_ops
)
2740 struct user_namespace
*ns
= NULL
;
2741 struct task_struct
*task
;
2742 struct seq_file
*seq
;
2745 task
= get_proc_task(inode
);
2748 ns
= get_user_ns(task_cred_xxx(task
, user_ns
));
2750 put_task_struct(task
);
2755 ret
= seq_open(file
, seq_ops
);
2759 seq
= file
->private_data
;
2769 static int proc_id_map_release(struct inode
*inode
, struct file
*file
)
2771 struct seq_file
*seq
= file
->private_data
;
2772 struct user_namespace
*ns
= seq
->private;
2774 return seq_release(inode
, file
);
2777 static int proc_uid_map_open(struct inode
*inode
, struct file
*file
)
2779 return proc_id_map_open(inode
, file
, &proc_uid_seq_operations
);
2782 static int proc_gid_map_open(struct inode
*inode
, struct file
*file
)
2784 return proc_id_map_open(inode
, file
, &proc_gid_seq_operations
);
2787 static int proc_projid_map_open(struct inode
*inode
, struct file
*file
)
2789 return proc_id_map_open(inode
, file
, &proc_projid_seq_operations
);
2792 static const struct file_operations proc_uid_map_operations
= {
2793 .open
= proc_uid_map_open
,
2794 .write
= proc_uid_map_write
,
2796 .llseek
= seq_lseek
,
2797 .release
= proc_id_map_release
,
2800 static const struct file_operations proc_gid_map_operations
= {
2801 .open
= proc_gid_map_open
,
2802 .write
= proc_gid_map_write
,
2804 .llseek
= seq_lseek
,
2805 .release
= proc_id_map_release
,
2808 static const struct file_operations proc_projid_map_operations
= {
2809 .open
= proc_projid_map_open
,
2810 .write
= proc_projid_map_write
,
2812 .llseek
= seq_lseek
,
2813 .release
= proc_id_map_release
,
2816 static int proc_setgroups_open(struct inode
*inode
, struct file
*file
)
2818 struct user_namespace
*ns
= NULL
;
2819 struct task_struct
*task
;
2823 task
= get_proc_task(inode
);
2826 ns
= get_user_ns(task_cred_xxx(task
, user_ns
));
2828 put_task_struct(task
);
2833 if (file
->f_mode
& FMODE_WRITE
) {
2835 if (!ns_capable(ns
, CAP_SYS_ADMIN
))
2839 ret
= single_open(file
, &proc_setgroups_show
, ns
);
2850 static int proc_setgroups_release(struct inode
*inode
, struct file
*file
)
2852 struct seq_file
*seq
= file
->private_data
;
2853 struct user_namespace
*ns
= seq
->private;
2854 int ret
= single_release(inode
, file
);
2859 static const struct file_operations proc_setgroups_operations
= {
2860 .open
= proc_setgroups_open
,
2861 .write
= proc_setgroups_write
,
2863 .llseek
= seq_lseek
,
2864 .release
= proc_setgroups_release
,
2866 #endif /* CONFIG_USER_NS */
2868 static int proc_pid_personality(struct seq_file
*m
, struct pid_namespace
*ns
,
2869 struct pid
*pid
, struct task_struct
*task
)
2871 int err
= lock_trace(task
);
2873 seq_printf(m
, "%08x\n", task
->personality
);
2879 #ifdef CONFIG_LIVEPATCH
2880 static int proc_pid_patch_state(struct seq_file
*m
, struct pid_namespace
*ns
,
2881 struct pid
*pid
, struct task_struct
*task
)
2883 seq_printf(m
, "%d\n", task
->patch_state
);
2886 #endif /* CONFIG_LIVEPATCH */
2891 static const struct file_operations proc_task_operations
;
2892 static const struct inode_operations proc_task_inode_operations
;
2894 static const struct pid_entry tgid_base_stuff
[] = {
2895 DIR("task", S_IRUGO
|S_IXUGO
, proc_task_inode_operations
, proc_task_operations
),
2896 DIR("fd", S_IRUSR
|S_IXUSR
, proc_fd_inode_operations
, proc_fd_operations
),
2897 DIR("map_files", S_IRUSR
|S_IXUSR
, proc_map_files_inode_operations
, proc_map_files_operations
),
2898 DIR("fdinfo", S_IRUSR
|S_IXUSR
, proc_fdinfo_inode_operations
, proc_fdinfo_operations
),
2899 DIR("ns", S_IRUSR
|S_IXUGO
, proc_ns_dir_inode_operations
, proc_ns_dir_operations
),
2901 DIR("net", S_IRUGO
|S_IXUGO
, proc_net_inode_operations
, proc_net_operations
),
2903 REG("environ", S_IRUSR
, proc_environ_operations
),
2904 REG("auxv", S_IRUSR
, proc_auxv_operations
),
2905 ONE("status", S_IRUGO
, proc_pid_status
),
2906 ONE("personality", S_IRUSR
, proc_pid_personality
),
2907 ONE("limits", S_IRUGO
, proc_pid_limits
),
2908 #ifdef CONFIG_SCHED_DEBUG
2909 REG("sched", S_IRUGO
|S_IWUSR
, proc_pid_sched_operations
),
2911 #ifdef CONFIG_SCHED_AUTOGROUP
2912 REG("autogroup", S_IRUGO
|S_IWUSR
, proc_pid_sched_autogroup_operations
),
2914 REG("comm", S_IRUGO
|S_IWUSR
, proc_pid_set_comm_operations
),
2915 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
2916 ONE("syscall", S_IRUSR
, proc_pid_syscall
),
2918 REG("cmdline", S_IRUGO
, proc_pid_cmdline_ops
),
2919 ONE("stat", S_IRUGO
, proc_tgid_stat
),
2920 ONE("statm", S_IRUGO
, proc_pid_statm
),
2921 REG("maps", S_IRUGO
, proc_pid_maps_operations
),
2923 REG("numa_maps", S_IRUGO
, proc_pid_numa_maps_operations
),
2925 REG("mem", S_IRUSR
|S_IWUSR
, proc_mem_operations
),
2926 LNK("cwd", proc_cwd_link
),
2927 LNK("root", proc_root_link
),
2928 LNK("exe", proc_exe_link
),
2929 REG("mounts", S_IRUGO
, proc_mounts_operations
),
2930 REG("mountinfo", S_IRUGO
, proc_mountinfo_operations
),
2931 REG("mountstats", S_IRUSR
, proc_mountstats_operations
),
2932 #ifdef CONFIG_PROC_PAGE_MONITOR
2933 REG("clear_refs", S_IWUSR
, proc_clear_refs_operations
),
2934 REG("smaps", S_IRUGO
, proc_pid_smaps_operations
),
2935 REG("smaps_rollup", S_IRUGO
, proc_pid_smaps_rollup_operations
),
2936 REG("pagemap", S_IRUSR
, proc_pagemap_operations
),
2938 #ifdef CONFIG_SECURITY
2939 DIR("attr", S_IRUGO
|S_IXUGO
, proc_attr_dir_inode_operations
, proc_attr_dir_operations
),
2941 #ifdef CONFIG_KALLSYMS
2942 ONE("wchan", S_IRUGO
, proc_pid_wchan
),
2944 #ifdef CONFIG_STACKTRACE
2945 ONE("stack", S_IRUSR
, proc_pid_stack
),
2947 #ifdef CONFIG_SCHED_INFO
2948 ONE("schedstat", S_IRUGO
, proc_pid_schedstat
),
2950 #ifdef CONFIG_LATENCYTOP
2951 REG("latency", S_IRUGO
, proc_lstats_operations
),
2953 #ifdef CONFIG_PROC_PID_CPUSET
2954 ONE("cpuset", S_IRUGO
, proc_cpuset_show
),
2956 #ifdef CONFIG_CGROUPS
2957 ONE("cgroup", S_IRUGO
, proc_cgroup_show
),
2959 ONE("oom_score", S_IRUGO
, proc_oom_score
),
2960 REG("oom_adj", S_IRUGO
|S_IWUSR
, proc_oom_adj_operations
),
2961 REG("oom_score_adj", S_IRUGO
|S_IWUSR
, proc_oom_score_adj_operations
),
2962 #ifdef CONFIG_AUDITSYSCALL
2963 REG("loginuid", S_IWUSR
|S_IRUGO
, proc_loginuid_operations
),
2964 REG("sessionid", S_IRUGO
, proc_sessionid_operations
),
2966 #ifdef CONFIG_FAULT_INJECTION
2967 REG("make-it-fail", S_IRUGO
|S_IWUSR
, proc_fault_inject_operations
),
2968 REG("fail-nth", 0644, proc_fail_nth_operations
),
2970 #ifdef CONFIG_ELF_CORE
2971 REG("coredump_filter", S_IRUGO
|S_IWUSR
, proc_coredump_filter_operations
),
2973 #ifdef CONFIG_TASK_IO_ACCOUNTING
2974 ONE("io", S_IRUSR
, proc_tgid_io_accounting
),
2976 #ifdef CONFIG_HARDWALL
2977 ONE("hardwall", S_IRUGO
, proc_pid_hardwall
),
2979 #ifdef CONFIG_USER_NS
2980 REG("uid_map", S_IRUGO
|S_IWUSR
, proc_uid_map_operations
),
2981 REG("gid_map", S_IRUGO
|S_IWUSR
, proc_gid_map_operations
),
2982 REG("projid_map", S_IRUGO
|S_IWUSR
, proc_projid_map_operations
),
2983 REG("setgroups", S_IRUGO
|S_IWUSR
, proc_setgroups_operations
),
2985 #if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
2986 REG("timers", S_IRUGO
, proc_timers_operations
),
2988 REG("timerslack_ns", S_IRUGO
|S_IWUGO
, proc_pid_set_timerslack_ns_operations
),
2989 #ifdef CONFIG_LIVEPATCH
2990 ONE("patch_state", S_IRUSR
, proc_pid_patch_state
),
2994 static int proc_tgid_base_readdir(struct file
*file
, struct dir_context
*ctx
)
2996 return proc_pident_readdir(file
, ctx
,
2997 tgid_base_stuff
, ARRAY_SIZE(tgid_base_stuff
));
3000 static const struct file_operations proc_tgid_base_operations
= {
3001 .read
= generic_read_dir
,
3002 .iterate_shared
= proc_tgid_base_readdir
,
3003 .llseek
= generic_file_llseek
,
3006 static struct dentry
*proc_tgid_base_lookup(struct inode
*dir
, struct dentry
*dentry
, unsigned int flags
)
3008 return proc_pident_lookup(dir
, dentry
,
3009 tgid_base_stuff
, ARRAY_SIZE(tgid_base_stuff
));
3012 static const struct inode_operations proc_tgid_base_inode_operations
= {
3013 .lookup
= proc_tgid_base_lookup
,
3014 .getattr
= pid_getattr
,
3015 .setattr
= proc_setattr
,
3016 .permission
= proc_pid_permission
,
3019 static void proc_flush_task_mnt(struct vfsmount
*mnt
, pid_t pid
, pid_t tgid
)
3021 struct dentry
*dentry
, *leader
, *dir
;
3022 char buf
[PROC_NUMBUF
];
3026 name
.len
= snprintf(buf
, sizeof(buf
), "%d", pid
);
3027 /* no ->d_hash() rejects on procfs */
3028 dentry
= d_hash_and_lookup(mnt
->mnt_root
, &name
);
3030 d_invalidate(dentry
);
3038 name
.len
= snprintf(buf
, sizeof(buf
), "%d", tgid
);
3039 leader
= d_hash_and_lookup(mnt
->mnt_root
, &name
);
3044 name
.len
= strlen(name
.name
);
3045 dir
= d_hash_and_lookup(leader
, &name
);
3047 goto out_put_leader
;
3050 name
.len
= snprintf(buf
, sizeof(buf
), "%d", pid
);
3051 dentry
= d_hash_and_lookup(dir
, &name
);
3053 d_invalidate(dentry
);
3065 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
3066 * @task: task that should be flushed.
3068 * When flushing dentries from proc, one needs to flush them from global
3069 * proc (proc_mnt) and from all the namespaces' procs this task was seen
3070 * in. This call is supposed to do all of this job.
3072 * Looks in the dcache for
3074 * /proc/@tgid/task/@pid
3075 * if either directory is present flushes it and all of it'ts children
3078 * It is safe and reasonable to cache /proc entries for a task until
3079 * that task exits. After that they just clog up the dcache with
3080 * useless entries, possibly causing useful dcache entries to be
3081 * flushed instead. This routine is proved to flush those useless
3082 * dcache entries at process exit time.
3084 * NOTE: This routine is just an optimization so it does not guarantee
3085 * that no dcache entries will exist at process exit time it
3086 * just makes it very unlikely that any will persist.
3089 void proc_flush_task(struct task_struct
*task
)
3092 struct pid
*pid
, *tgid
;
3095 pid
= task_pid(task
);
3096 tgid
= task_tgid(task
);
3098 for (i
= 0; i
<= pid
->level
; i
++) {
3099 upid
= &pid
->numbers
[i
];
3100 proc_flush_task_mnt(upid
->ns
->proc_mnt
, upid
->nr
,
3101 tgid
->numbers
[i
].nr
);
3105 static int proc_pid_instantiate(struct inode
*dir
,
3106 struct dentry
* dentry
,
3107 struct task_struct
*task
, const void *ptr
)
3109 struct inode
*inode
;
3111 inode
= proc_pid_make_inode(dir
->i_sb
, task
, S_IFDIR
| S_IRUGO
| S_IXUGO
);
3115 inode
->i_op
= &proc_tgid_base_inode_operations
;
3116 inode
->i_fop
= &proc_tgid_base_operations
;
3117 inode
->i_flags
|=S_IMMUTABLE
;
3119 set_nlink(inode
, nlink_tgid
);
3121 d_set_d_op(dentry
, &pid_dentry_operations
);
3123 d_add(dentry
, inode
);
3124 /* Close the race of the process dying before we return the dentry */
3125 if (pid_revalidate(dentry
, 0))
3131 struct dentry
*proc_pid_lookup(struct inode
*dir
, struct dentry
* dentry
, unsigned int flags
)
3133 int result
= -ENOENT
;
3134 struct task_struct
*task
;
3136 struct pid_namespace
*ns
;
3138 tgid
= name_to_int(&dentry
->d_name
);
3142 ns
= dentry
->d_sb
->s_fs_info
;
3144 task
= find_task_by_pid_ns(tgid
, ns
);
3146 get_task_struct(task
);
3151 result
= proc_pid_instantiate(dir
, dentry
, task
, NULL
);
3152 put_task_struct(task
);
3154 return ERR_PTR(result
);
3158 * Find the first task with tgid >= tgid
3163 struct task_struct
*task
;
3165 static struct tgid_iter
next_tgid(struct pid_namespace
*ns
, struct tgid_iter iter
)
3170 put_task_struct(iter
.task
);
3174 pid
= find_ge_pid(iter
.tgid
, ns
);
3176 iter
.tgid
= pid_nr_ns(pid
, ns
);
3177 iter
.task
= pid_task(pid
, PIDTYPE_PID
);
3178 /* What we to know is if the pid we have find is the
3179 * pid of a thread_group_leader. Testing for task
3180 * being a thread_group_leader is the obvious thing
3181 * todo but there is a window when it fails, due to
3182 * the pid transfer logic in de_thread.
3184 * So we perform the straight forward test of seeing
3185 * if the pid we have found is the pid of a thread
3186 * group leader, and don't worry if the task we have
3187 * found doesn't happen to be a thread group leader.
3188 * As we don't care in the case of readdir.
3190 if (!iter
.task
|| !has_group_leader_pid(iter
.task
)) {
3194 get_task_struct(iter
.task
);
3200 #define TGID_OFFSET (FIRST_PROCESS_ENTRY + 2)
3202 /* for the /proc/ directory itself, after non-process stuff has been done */
3203 int proc_pid_readdir(struct file
*file
, struct dir_context
*ctx
)
3205 struct tgid_iter iter
;
3206 struct pid_namespace
*ns
= file_inode(file
)->i_sb
->s_fs_info
;
3207 loff_t pos
= ctx
->pos
;
3209 if (pos
>= PID_MAX_LIMIT
+ TGID_OFFSET
)
3212 if (pos
== TGID_OFFSET
- 2) {
3213 struct inode
*inode
= d_inode(ns
->proc_self
);
3214 if (!dir_emit(ctx
, "self", 4, inode
->i_ino
, DT_LNK
))
3216 ctx
->pos
= pos
= pos
+ 1;
3218 if (pos
== TGID_OFFSET
- 1) {
3219 struct inode
*inode
= d_inode(ns
->proc_thread_self
);
3220 if (!dir_emit(ctx
, "thread-self", 11, inode
->i_ino
, DT_LNK
))
3222 ctx
->pos
= pos
= pos
+ 1;
3224 iter
.tgid
= pos
- TGID_OFFSET
;
3226 for (iter
= next_tgid(ns
, iter
);
3228 iter
.tgid
+= 1, iter
= next_tgid(ns
, iter
)) {
3229 char name
[PROC_NUMBUF
];
3233 if (!has_pid_permissions(ns
, iter
.task
, HIDEPID_INVISIBLE
))
3236 len
= snprintf(name
, sizeof(name
), "%d", iter
.tgid
);
3237 ctx
->pos
= iter
.tgid
+ TGID_OFFSET
;
3238 if (!proc_fill_cache(file
, ctx
, name
, len
,
3239 proc_pid_instantiate
, iter
.task
, NULL
)) {
3240 put_task_struct(iter
.task
);
3244 ctx
->pos
= PID_MAX_LIMIT
+ TGID_OFFSET
;
3249 * proc_tid_comm_permission is a special permission function exclusively
3250 * used for the node /proc/<pid>/task/<tid>/comm.
3251 * It bypasses generic permission checks in the case where a task of the same
3252 * task group attempts to access the node.
3253 * The rationale behind this is that glibc and bionic access this node for
3254 * cross thread naming (pthread_set/getname_np(!self)). However, if
3255 * PR_SET_DUMPABLE gets set to 0 this node among others becomes uid=0 gid=0,
3256 * which locks out the cross thread naming implementation.
3257 * This function makes sure that the node is always accessible for members of
3258 * same thread group.
3260 static int proc_tid_comm_permission(struct inode
*inode
, int mask
)
3262 bool is_same_tgroup
;
3263 struct task_struct
*task
;
3265 task
= get_proc_task(inode
);
3268 is_same_tgroup
= same_thread_group(current
, task
);
3269 put_task_struct(task
);
3271 if (likely(is_same_tgroup
&& !(mask
& MAY_EXEC
))) {
3272 /* This file (/proc/<pid>/task/<tid>/comm) can always be
3273 * read or written by the members of the corresponding
3279 return generic_permission(inode
, mask
);
3282 static const struct inode_operations proc_tid_comm_inode_operations
= {
3283 .permission
= proc_tid_comm_permission
,
3289 static const struct pid_entry tid_base_stuff
[] = {
3290 DIR("fd", S_IRUSR
|S_IXUSR
, proc_fd_inode_operations
, proc_fd_operations
),
3291 DIR("fdinfo", S_IRUSR
|S_IXUSR
, proc_fdinfo_inode_operations
, proc_fdinfo_operations
),
3292 DIR("ns", S_IRUSR
|S_IXUGO
, proc_ns_dir_inode_operations
, proc_ns_dir_operations
),
3294 DIR("net", S_IRUGO
|S_IXUGO
, proc_net_inode_operations
, proc_net_operations
),
3296 REG("environ", S_IRUSR
, proc_environ_operations
),
3297 REG("auxv", S_IRUSR
, proc_auxv_operations
),
3298 ONE("status", S_IRUGO
, proc_pid_status
),
3299 ONE("personality", S_IRUSR
, proc_pid_personality
),
3300 ONE("limits", S_IRUGO
, proc_pid_limits
),
3301 #ifdef CONFIG_SCHED_DEBUG
3302 REG("sched", S_IRUGO
|S_IWUSR
, proc_pid_sched_operations
),
3304 NOD("comm", S_IFREG
|S_IRUGO
|S_IWUSR
,
3305 &proc_tid_comm_inode_operations
,
3306 &proc_pid_set_comm_operations
, {}),
3307 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
3308 ONE("syscall", S_IRUSR
, proc_pid_syscall
),
3310 REG("cmdline", S_IRUGO
, proc_pid_cmdline_ops
),
3311 ONE("stat", S_IRUGO
, proc_tid_stat
),
3312 ONE("statm", S_IRUGO
, proc_pid_statm
),
3313 REG("maps", S_IRUGO
, proc_tid_maps_operations
),
3314 #ifdef CONFIG_PROC_CHILDREN
3315 REG("children", S_IRUGO
, proc_tid_children_operations
),
3318 REG("numa_maps", S_IRUGO
, proc_tid_numa_maps_operations
),
3320 REG("mem", S_IRUSR
|S_IWUSR
, proc_mem_operations
),
3321 LNK("cwd", proc_cwd_link
),
3322 LNK("root", proc_root_link
),
3323 LNK("exe", proc_exe_link
),
3324 REG("mounts", S_IRUGO
, proc_mounts_operations
),
3325 REG("mountinfo", S_IRUGO
, proc_mountinfo_operations
),
3326 #ifdef CONFIG_PROC_PAGE_MONITOR
3327 REG("clear_refs", S_IWUSR
, proc_clear_refs_operations
),
3328 REG("smaps", S_IRUGO
, proc_tid_smaps_operations
),
3329 REG("smaps_rollup", S_IRUGO
, proc_pid_smaps_rollup_operations
),
3330 REG("pagemap", S_IRUSR
, proc_pagemap_operations
),
3332 #ifdef CONFIG_SECURITY
3333 DIR("attr", S_IRUGO
|S_IXUGO
, proc_attr_dir_inode_operations
, proc_attr_dir_operations
),
3335 #ifdef CONFIG_KALLSYMS
3336 ONE("wchan", S_IRUGO
, proc_pid_wchan
),
3338 #ifdef CONFIG_STACKTRACE
3339 ONE("stack", S_IRUSR
, proc_pid_stack
),
3341 #ifdef CONFIG_SCHED_INFO
3342 ONE("schedstat", S_IRUGO
, proc_pid_schedstat
),
3344 #ifdef CONFIG_LATENCYTOP
3345 REG("latency", S_IRUGO
, proc_lstats_operations
),
3347 #ifdef CONFIG_PROC_PID_CPUSET
3348 ONE("cpuset", S_IRUGO
, proc_cpuset_show
),
3350 #ifdef CONFIG_CGROUPS
3351 ONE("cgroup", S_IRUGO
, proc_cgroup_show
),
3353 ONE("oom_score", S_IRUGO
, proc_oom_score
),
3354 REG("oom_adj", S_IRUGO
|S_IWUSR
, proc_oom_adj_operations
),
3355 REG("oom_score_adj", S_IRUGO
|S_IWUSR
, proc_oom_score_adj_operations
),
3356 #ifdef CONFIG_AUDITSYSCALL
3357 REG("loginuid", S_IWUSR
|S_IRUGO
, proc_loginuid_operations
),
3358 REG("sessionid", S_IRUGO
, proc_sessionid_operations
),
3360 #ifdef CONFIG_FAULT_INJECTION
3361 REG("make-it-fail", S_IRUGO
|S_IWUSR
, proc_fault_inject_operations
),
3362 REG("fail-nth", 0644, proc_fail_nth_operations
),
3364 #ifdef CONFIG_TASK_IO_ACCOUNTING
3365 ONE("io", S_IRUSR
, proc_tid_io_accounting
),
3367 #ifdef CONFIG_HARDWALL
3368 ONE("hardwall", S_IRUGO
, proc_pid_hardwall
),
3370 #ifdef CONFIG_USER_NS
3371 REG("uid_map", S_IRUGO
|S_IWUSR
, proc_uid_map_operations
),
3372 REG("gid_map", S_IRUGO
|S_IWUSR
, proc_gid_map_operations
),
3373 REG("projid_map", S_IRUGO
|S_IWUSR
, proc_projid_map_operations
),
3374 REG("setgroups", S_IRUGO
|S_IWUSR
, proc_setgroups_operations
),
3376 #ifdef CONFIG_LIVEPATCH
3377 ONE("patch_state", S_IRUSR
, proc_pid_patch_state
),
3381 static int proc_tid_base_readdir(struct file
*file
, struct dir_context
*ctx
)
3383 return proc_pident_readdir(file
, ctx
,
3384 tid_base_stuff
, ARRAY_SIZE(tid_base_stuff
));
3387 static struct dentry
*proc_tid_base_lookup(struct inode
*dir
, struct dentry
*dentry
, unsigned int flags
)
3389 return proc_pident_lookup(dir
, dentry
,
3390 tid_base_stuff
, ARRAY_SIZE(tid_base_stuff
));
3393 static const struct file_operations proc_tid_base_operations
= {
3394 .read
= generic_read_dir
,
3395 .iterate_shared
= proc_tid_base_readdir
,
3396 .llseek
= generic_file_llseek
,
3399 static const struct inode_operations proc_tid_base_inode_operations
= {
3400 .lookup
= proc_tid_base_lookup
,
3401 .getattr
= pid_getattr
,
3402 .setattr
= proc_setattr
,
3405 static int proc_task_instantiate(struct inode
*dir
,
3406 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
3408 struct inode
*inode
;
3409 inode
= proc_pid_make_inode(dir
->i_sb
, task
, S_IFDIR
| S_IRUGO
| S_IXUGO
);
3413 inode
->i_op
= &proc_tid_base_inode_operations
;
3414 inode
->i_fop
= &proc_tid_base_operations
;
3415 inode
->i_flags
|=S_IMMUTABLE
;
3417 set_nlink(inode
, nlink_tid
);
3419 d_set_d_op(dentry
, &pid_dentry_operations
);
3421 d_add(dentry
, inode
);
3422 /* Close the race of the process dying before we return the dentry */
3423 if (pid_revalidate(dentry
, 0))
3429 static struct dentry
*proc_task_lookup(struct inode
*dir
, struct dentry
* dentry
, unsigned int flags
)
3431 int result
= -ENOENT
;
3432 struct task_struct
*task
;
3433 struct task_struct
*leader
= get_proc_task(dir
);
3435 struct pid_namespace
*ns
;
3440 tid
= name_to_int(&dentry
->d_name
);
3444 ns
= dentry
->d_sb
->s_fs_info
;
3446 task
= find_task_by_pid_ns(tid
, ns
);
3448 get_task_struct(task
);
3452 if (!same_thread_group(leader
, task
))
3455 result
= proc_task_instantiate(dir
, dentry
, task
, NULL
);
3457 put_task_struct(task
);
3459 put_task_struct(leader
);
3461 return ERR_PTR(result
);
3465 * Find the first tid of a thread group to return to user space.
3467 * Usually this is just the thread group leader, but if the users
3468 * buffer was too small or there was a seek into the middle of the
3469 * directory we have more work todo.
3471 * In the case of a short read we start with find_task_by_pid.
3473 * In the case of a seek we start with the leader and walk nr
3476 static struct task_struct
*first_tid(struct pid
*pid
, int tid
, loff_t f_pos
,
3477 struct pid_namespace
*ns
)
3479 struct task_struct
*pos
, *task
;
3480 unsigned long nr
= f_pos
;
3482 if (nr
!= f_pos
) /* 32bit overflow? */
3486 task
= pid_task(pid
, PIDTYPE_PID
);
3490 /* Attempt to start with the tid of a thread */
3492 pos
= find_task_by_pid_ns(tid
, ns
);
3493 if (pos
&& same_thread_group(pos
, task
))
3497 /* If nr exceeds the number of threads there is nothing todo */
3498 if (nr
>= get_nr_threads(task
))
3501 /* If we haven't found our starting place yet start
3502 * with the leader and walk nr threads forward.
3504 pos
= task
= task
->group_leader
;
3508 } while_each_thread(task
, pos
);
3513 get_task_struct(pos
);
3520 * Find the next thread in the thread list.
3521 * Return NULL if there is an error or no next thread.
3523 * The reference to the input task_struct is released.
3525 static struct task_struct
*next_tid(struct task_struct
*start
)
3527 struct task_struct
*pos
= NULL
;
3529 if (pid_alive(start
)) {
3530 pos
= next_thread(start
);
3531 if (thread_group_leader(pos
))
3534 get_task_struct(pos
);
3537 put_task_struct(start
);
3541 /* for the /proc/TGID/task/ directories */
3542 static int proc_task_readdir(struct file
*file
, struct dir_context
*ctx
)
3544 struct inode
*inode
= file_inode(file
);
3545 struct task_struct
*task
;
3546 struct pid_namespace
*ns
;
3549 if (proc_inode_is_dead(inode
))
3552 if (!dir_emit_dots(file
, ctx
))
3555 /* f_version caches the tgid value that the last readdir call couldn't
3556 * return. lseek aka telldir automagically resets f_version to 0.
3558 ns
= inode
->i_sb
->s_fs_info
;
3559 tid
= (int)file
->f_version
;
3560 file
->f_version
= 0;
3561 for (task
= first_tid(proc_pid(inode
), tid
, ctx
->pos
- 2, ns
);
3563 task
= next_tid(task
), ctx
->pos
++) {
3564 char name
[PROC_NUMBUF
];
3566 tid
= task_pid_nr_ns(task
, ns
);
3567 len
= snprintf(name
, sizeof(name
), "%d", tid
);
3568 if (!proc_fill_cache(file
, ctx
, name
, len
,
3569 proc_task_instantiate
, task
, NULL
)) {
3570 /* returning this tgid failed, save it as the first
3571 * pid for the next readir call */
3572 file
->f_version
= (u64
)tid
;
3573 put_task_struct(task
);
3581 static int proc_task_getattr(const struct path
*path
, struct kstat
*stat
,
3582 u32 request_mask
, unsigned int query_flags
)
3584 struct inode
*inode
= d_inode(path
->dentry
);
3585 struct task_struct
*p
= get_proc_task(inode
);
3586 generic_fillattr(inode
, stat
);
3589 stat
->nlink
+= get_nr_threads(p
);
3596 static const struct inode_operations proc_task_inode_operations
= {
3597 .lookup
= proc_task_lookup
,
3598 .getattr
= proc_task_getattr
,
3599 .setattr
= proc_setattr
,
3600 .permission
= proc_pid_permission
,
3603 static const struct file_operations proc_task_operations
= {
3604 .read
= generic_read_dir
,
3605 .iterate_shared
= proc_task_readdir
,
3606 .llseek
= generic_file_llseek
,
3609 void __init
set_proc_pid_nlink(void)
3611 nlink_tid
= pid_entry_nlink(tid_base_stuff
, ARRAY_SIZE(tid_base_stuff
));
3612 nlink_tgid
= pid_entry_nlink(tgid_base_stuff
, ARRAY_SIZE(tgid_base_stuff
));