4 * Copyright (C) 1991, 1992 Linus Torvalds
6 * proc base directory handling functions
8 * 1999, Al Viro. Rewritten. Now it covers the whole per-process part.
9 * Instead of using magical inumbers to determine the kind of object
10 * we allocate and fill in-core inodes upon lookup. They don't even
11 * go into icache. We cache the reference to task_struct upon lookup too.
12 * Eventually it should become a filesystem in its own. We don't use the
13 * rest of procfs anymore.
19 * Bruna Moreira <bruna.moreira@indt.org.br>
20 * Edjard Mota <edjard.mota@indt.org.br>
21 * Ilias Biris <ilias.biris@indt.org.br>
22 * Mauricio Lin <mauricio.lin@indt.org.br>
24 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
26 * A new process specific entry (smaps) included in /proc. It shows the
27 * size of rss for each memory area. The maps entry lacks information
28 * about physical memory size (rss) for each mapped file, i.e.,
29 * rss information for executables and library files.
30 * This additional information is useful for any tools that need to know
31 * about physical memory consumption for a process specific library.
35 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
36 * Pud inclusion in the page table walking.
40 * 10LE Instituto Nokia de Tecnologia - INdT:
41 * A better way to walks through the page table as suggested by Hugh Dickins.
43 * Simo Piiroinen <simo.piiroinen@nokia.com>:
44 * Smaps information related to shared, private, clean and dirty pages.
46 * Paul Mundt <paul.mundt@nokia.com>:
47 * Overall revision about smaps.
50 #include <asm/uaccess.h>
52 #include <linux/errno.h>
53 #include <linux/time.h>
54 #include <linux/proc_fs.h>
55 #include <linux/stat.h>
56 #include <linux/task_io_accounting_ops.h>
57 #include <linux/init.h>
58 #include <linux/capability.h>
59 #include <linux/file.h>
60 #include <linux/fdtable.h>
61 #include <linux/string.h>
62 #include <linux/seq_file.h>
63 #include <linux/namei.h>
64 #include <linux/mnt_namespace.h>
66 #include <linux/rcupdate.h>
67 #include <linux/kallsyms.h>
68 #include <linux/stacktrace.h>
69 #include <linux/resource.h>
70 #include <linux/module.h>
71 #include <linux/mount.h>
72 #include <linux/security.h>
73 #include <linux/ptrace.h>
74 #include <linux/tracehook.h>
75 #include <linux/cgroup.h>
76 #include <linux/cpuset.h>
77 #include <linux/audit.h>
78 #include <linux/poll.h>
79 #include <linux/nsproxy.h>
80 #include <linux/oom.h>
81 #include <linux/elf.h>
82 #include <linux/pid_namespace.h>
83 #include <linux/fs_struct.h>
87 * Implementing inode permission operations in /proc is almost
88 * certainly an error. Permission checks need to happen during
89 * each system call not at open time. The reason is that most of
90 * what we wish to check for permissions in /proc varies at runtime.
92 * The classic example of a problem is opening file descriptors
93 * in /proc for a task before it execs a suid executable.
100 const struct inode_operations
*iop
;
101 const struct file_operations
*fop
;
105 #define NOD(NAME, MODE, IOP, FOP, OP) { \
107 .len = sizeof(NAME) - 1, \
114 #define DIR(NAME, MODE, iops, fops) \
115 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
116 #define LNK(NAME, get_link) \
117 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
118 &proc_pid_link_inode_operations, NULL, \
119 { .proc_get_link = get_link } )
120 #define REG(NAME, MODE, fops) \
121 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
122 #define INF(NAME, MODE, read) \
123 NOD(NAME, (S_IFREG|(MODE)), \
124 NULL, &proc_info_file_operations, \
125 { .proc_read = read } )
126 #define ONE(NAME, MODE, show) \
127 NOD(NAME, (S_IFREG|(MODE)), \
128 NULL, &proc_single_file_operations, \
129 { .proc_show = show } )
132 * Count the number of hardlinks for the pid_entry table, excluding the .
135 static unsigned int pid_entry_count_dirs(const struct pid_entry
*entries
,
142 for (i
= 0; i
< n
; ++i
) {
143 if (S_ISDIR(entries
[i
].mode
))
150 static int get_fs_path(struct task_struct
*task
, struct path
*path
, bool root
)
152 struct fs_struct
*fs
;
153 int result
= -ENOENT
;
158 read_lock(&fs
->lock
);
159 *path
= root
? fs
->root
: fs
->pwd
;
161 read_unlock(&fs
->lock
);
168 static int get_nr_threads(struct task_struct
*tsk
)
173 if (lock_task_sighand(tsk
, &flags
)) {
174 count
= atomic_read(&tsk
->signal
->count
);
175 unlock_task_sighand(tsk
, &flags
);
180 static int proc_cwd_link(struct inode
*inode
, struct path
*path
)
182 struct task_struct
*task
= get_proc_task(inode
);
183 int result
= -ENOENT
;
186 result
= get_fs_path(task
, path
, 0);
187 put_task_struct(task
);
192 static int proc_root_link(struct inode
*inode
, struct path
*path
)
194 struct task_struct
*task
= get_proc_task(inode
);
195 int result
= -ENOENT
;
198 result
= get_fs_path(task
, path
, 1);
199 put_task_struct(task
);
205 * Return zero if current may access user memory in @task, -error if not.
207 static int check_mem_permission(struct task_struct
*task
)
210 * A task can always look at itself, in case it chooses
211 * to use system calls instead of load instructions.
217 * If current is actively ptrace'ing, and would also be
218 * permitted to freshly attach with ptrace now, permit it.
220 if (task_is_stopped_or_traced(task
)) {
223 match
= (tracehook_tracer_task(task
) == current
);
225 if (match
&& ptrace_may_access(task
, PTRACE_MODE_ATTACH
))
230 * Noone else is allowed.
235 struct mm_struct
*mm_for_maps(struct task_struct
*task
)
237 struct mm_struct
*mm
= get_task_mm(task
);
240 down_read(&mm
->mmap_sem
);
244 if (task
->mm
!= current
->mm
&&
245 __ptrace_may_access(task
, PTRACE_MODE_READ
) < 0)
251 up_read(&mm
->mmap_sem
);
256 static int proc_pid_cmdline(struct task_struct
*task
, char * buffer
)
260 struct mm_struct
*mm
= get_task_mm(task
);
264 goto out_mm
; /* Shh! No looking before we're done */
266 len
= mm
->arg_end
- mm
->arg_start
;
271 res
= access_process_vm(task
, mm
->arg_start
, buffer
, len
, 0);
273 // If the nul at the end of args has been overwritten, then
274 // assume application is using setproctitle(3).
275 if (res
> 0 && buffer
[res
-1] != '\0' && len
< PAGE_SIZE
) {
276 len
= strnlen(buffer
, res
);
280 len
= mm
->env_end
- mm
->env_start
;
281 if (len
> PAGE_SIZE
- res
)
282 len
= PAGE_SIZE
- res
;
283 res
+= access_process_vm(task
, mm
->env_start
, buffer
+res
, len
, 0);
284 res
= strnlen(buffer
, res
);
293 static int proc_pid_auxv(struct task_struct
*task
, char *buffer
)
296 struct mm_struct
*mm
= get_task_mm(task
);
298 unsigned int nwords
= 0;
301 } while (mm
->saved_auxv
[nwords
- 2] != 0); /* AT_NULL */
302 res
= nwords
* sizeof(mm
->saved_auxv
[0]);
305 memcpy(buffer
, mm
->saved_auxv
, res
);
312 #ifdef CONFIG_KALLSYMS
314 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
315 * Returns the resolved symbol. If that fails, simply return the address.
317 static int proc_pid_wchan(struct task_struct
*task
, char *buffer
)
320 char symname
[KSYM_NAME_LEN
];
322 wchan
= get_wchan(task
);
324 if (lookup_symbol_name(wchan
, symname
) < 0)
325 if (!ptrace_may_access(task
, PTRACE_MODE_READ
))
328 return sprintf(buffer
, "%lu", wchan
);
330 return sprintf(buffer
, "%s", symname
);
332 #endif /* CONFIG_KALLSYMS */
334 #ifdef CONFIG_STACKTRACE
336 #define MAX_STACK_TRACE_DEPTH 64
338 static int proc_pid_stack(struct seq_file
*m
, struct pid_namespace
*ns
,
339 struct pid
*pid
, struct task_struct
*task
)
341 struct stack_trace trace
;
342 unsigned long *entries
;
345 entries
= kmalloc(MAX_STACK_TRACE_DEPTH
* sizeof(*entries
), GFP_KERNEL
);
349 trace
.nr_entries
= 0;
350 trace
.max_entries
= MAX_STACK_TRACE_DEPTH
;
351 trace
.entries
= entries
;
353 save_stack_trace_tsk(task
, &trace
);
355 for (i
= 0; i
< trace
.nr_entries
; i
++) {
356 seq_printf(m
, "[<%p>] %pS\n",
357 (void *)entries
[i
], (void *)entries
[i
]);
365 #ifdef CONFIG_SCHEDSTATS
367 * Provides /proc/PID/schedstat
369 static int proc_pid_schedstat(struct task_struct
*task
, char *buffer
)
371 return sprintf(buffer
, "%llu %llu %lu\n",
372 (unsigned long long)task
->se
.sum_exec_runtime
,
373 (unsigned long long)task
->sched_info
.run_delay
,
374 task
->sched_info
.pcount
);
378 #ifdef CONFIG_LATENCYTOP
379 static int lstats_show_proc(struct seq_file
*m
, void *v
)
382 struct inode
*inode
= m
->private;
383 struct task_struct
*task
= get_proc_task(inode
);
387 seq_puts(m
, "Latency Top version : v0.1\n");
388 for (i
= 0; i
< 32; i
++) {
389 if (task
->latency_record
[i
].backtrace
[0]) {
391 seq_printf(m
, "%i %li %li ",
392 task
->latency_record
[i
].count
,
393 task
->latency_record
[i
].time
,
394 task
->latency_record
[i
].max
);
395 for (q
= 0; q
< LT_BACKTRACEDEPTH
; q
++) {
396 char sym
[KSYM_SYMBOL_LEN
];
398 if (!task
->latency_record
[i
].backtrace
[q
])
400 if (task
->latency_record
[i
].backtrace
[q
] == ULONG_MAX
)
402 sprint_symbol(sym
, task
->latency_record
[i
].backtrace
[q
]);
403 c
= strchr(sym
, '+');
406 seq_printf(m
, "%s ", sym
);
412 put_task_struct(task
);
416 static int lstats_open(struct inode
*inode
, struct file
*file
)
418 return single_open(file
, lstats_show_proc
, inode
);
421 static ssize_t
lstats_write(struct file
*file
, const char __user
*buf
,
422 size_t count
, loff_t
*offs
)
424 struct task_struct
*task
= get_proc_task(file
->f_dentry
->d_inode
);
428 clear_all_latency_tracing(task
);
429 put_task_struct(task
);
434 static const struct file_operations proc_lstats_operations
= {
437 .write
= lstats_write
,
439 .release
= single_release
,
444 /* The badness from the OOM killer */
445 unsigned long badness(struct task_struct
*p
, unsigned long uptime
);
446 static int proc_oom_score(struct task_struct
*task
, char *buffer
)
448 unsigned long points
;
449 struct timespec uptime
;
451 do_posix_clock_monotonic_gettime(&uptime
);
452 read_lock(&tasklist_lock
);
453 points
= badness(task
, uptime
.tv_sec
);
454 read_unlock(&tasklist_lock
);
455 return sprintf(buffer
, "%lu\n", points
);
463 static const struct limit_names lnames
[RLIM_NLIMITS
] = {
464 [RLIMIT_CPU
] = {"Max cpu time", "ms"},
465 [RLIMIT_FSIZE
] = {"Max file size", "bytes"},
466 [RLIMIT_DATA
] = {"Max data size", "bytes"},
467 [RLIMIT_STACK
] = {"Max stack size", "bytes"},
468 [RLIMIT_CORE
] = {"Max core file size", "bytes"},
469 [RLIMIT_RSS
] = {"Max resident set", "bytes"},
470 [RLIMIT_NPROC
] = {"Max processes", "processes"},
471 [RLIMIT_NOFILE
] = {"Max open files", "files"},
472 [RLIMIT_MEMLOCK
] = {"Max locked memory", "bytes"},
473 [RLIMIT_AS
] = {"Max address space", "bytes"},
474 [RLIMIT_LOCKS
] = {"Max file locks", "locks"},
475 [RLIMIT_SIGPENDING
] = {"Max pending signals", "signals"},
476 [RLIMIT_MSGQUEUE
] = {"Max msgqueue size", "bytes"},
477 [RLIMIT_NICE
] = {"Max nice priority", NULL
},
478 [RLIMIT_RTPRIO
] = {"Max realtime priority", NULL
},
479 [RLIMIT_RTTIME
] = {"Max realtime timeout", "us"},
482 /* Display limits for a process */
483 static int proc_pid_limits(struct task_struct
*task
, char *buffer
)
488 char *bufptr
= buffer
;
490 struct rlimit rlim
[RLIM_NLIMITS
];
492 if (!lock_task_sighand(task
, &flags
))
494 memcpy(rlim
, task
->signal
->rlim
, sizeof(struct rlimit
) * RLIM_NLIMITS
);
495 unlock_task_sighand(task
, &flags
);
498 * print the file header
500 count
+= sprintf(&bufptr
[count
], "%-25s %-20s %-20s %-10s\n",
501 "Limit", "Soft Limit", "Hard Limit", "Units");
503 for (i
= 0; i
< RLIM_NLIMITS
; i
++) {
504 if (rlim
[i
].rlim_cur
== RLIM_INFINITY
)
505 count
+= sprintf(&bufptr
[count
], "%-25s %-20s ",
506 lnames
[i
].name
, "unlimited");
508 count
+= sprintf(&bufptr
[count
], "%-25s %-20lu ",
509 lnames
[i
].name
, rlim
[i
].rlim_cur
);
511 if (rlim
[i
].rlim_max
== RLIM_INFINITY
)
512 count
+= sprintf(&bufptr
[count
], "%-20s ", "unlimited");
514 count
+= sprintf(&bufptr
[count
], "%-20lu ",
518 count
+= sprintf(&bufptr
[count
], "%-10s\n",
521 count
+= sprintf(&bufptr
[count
], "\n");
527 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
528 static int proc_pid_syscall(struct task_struct
*task
, char *buffer
)
531 unsigned long args
[6], sp
, pc
;
533 if (task_current_syscall(task
, &nr
, args
, 6, &sp
, &pc
))
534 return sprintf(buffer
, "running\n");
537 return sprintf(buffer
, "%ld 0x%lx 0x%lx\n", nr
, sp
, pc
);
539 return sprintf(buffer
,
540 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
542 args
[0], args
[1], args
[2], args
[3], args
[4], args
[5],
545 #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
547 /************************************************************************/
548 /* Here the fs part begins */
549 /************************************************************************/
551 /* permission checks */
552 static int proc_fd_access_allowed(struct inode
*inode
)
554 struct task_struct
*task
;
556 /* Allow access to a task's file descriptors if it is us or we
557 * may use ptrace attach to the process and find out that
560 task
= get_proc_task(inode
);
562 allowed
= ptrace_may_access(task
, PTRACE_MODE_READ
);
563 put_task_struct(task
);
568 static int proc_setattr(struct dentry
*dentry
, struct iattr
*attr
)
571 struct inode
*inode
= dentry
->d_inode
;
573 if (attr
->ia_valid
& ATTR_MODE
)
576 error
= inode_change_ok(inode
, attr
);
578 error
= inode_setattr(inode
, attr
);
582 static const struct inode_operations proc_def_inode_operations
= {
583 .setattr
= proc_setattr
,
586 static int mounts_open_common(struct inode
*inode
, struct file
*file
,
587 const struct seq_operations
*op
)
589 struct task_struct
*task
= get_proc_task(inode
);
591 struct mnt_namespace
*ns
= NULL
;
593 struct proc_mounts
*p
;
598 nsp
= task_nsproxy(task
);
605 if (ns
&& get_fs_path(task
, &root
, 1) == 0)
607 put_task_struct(task
);
616 p
= kmalloc(sizeof(struct proc_mounts
), GFP_KERNEL
);
620 file
->private_data
= &p
->m
;
621 ret
= seq_open(file
, op
);
628 p
->event
= ns
->event
;
642 static int mounts_release(struct inode
*inode
, struct file
*file
)
644 struct proc_mounts
*p
= file
->private_data
;
647 return seq_release(inode
, file
);
650 static unsigned mounts_poll(struct file
*file
, poll_table
*wait
)
652 struct proc_mounts
*p
= file
->private_data
;
653 struct mnt_namespace
*ns
= p
->ns
;
654 unsigned res
= POLLIN
| POLLRDNORM
;
656 poll_wait(file
, &ns
->poll
, wait
);
658 spin_lock(&vfsmount_lock
);
659 if (p
->event
!= ns
->event
) {
660 p
->event
= ns
->event
;
661 res
|= POLLERR
| POLLPRI
;
663 spin_unlock(&vfsmount_lock
);
668 static int mounts_open(struct inode
*inode
, struct file
*file
)
670 return mounts_open_common(inode
, file
, &mounts_op
);
673 static const struct file_operations proc_mounts_operations
= {
677 .release
= mounts_release
,
681 static int mountinfo_open(struct inode
*inode
, struct file
*file
)
683 return mounts_open_common(inode
, file
, &mountinfo_op
);
686 static const struct file_operations proc_mountinfo_operations
= {
687 .open
= mountinfo_open
,
690 .release
= mounts_release
,
694 static int mountstats_open(struct inode
*inode
, struct file
*file
)
696 return mounts_open_common(inode
, file
, &mountstats_op
);
699 static const struct file_operations proc_mountstats_operations
= {
700 .open
= mountstats_open
,
703 .release
= mounts_release
,
706 #define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
708 static ssize_t
proc_info_read(struct file
* file
, char __user
* buf
,
709 size_t count
, loff_t
*ppos
)
711 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
714 struct task_struct
*task
= get_proc_task(inode
);
720 if (count
> PROC_BLOCK_SIZE
)
721 count
= PROC_BLOCK_SIZE
;
724 if (!(page
= __get_free_page(GFP_TEMPORARY
)))
727 length
= PROC_I(inode
)->op
.proc_read(task
, (char*)page
);
730 length
= simple_read_from_buffer(buf
, count
, ppos
, (char *)page
, length
);
733 put_task_struct(task
);
738 static const struct file_operations proc_info_file_operations
= {
739 .read
= proc_info_read
,
742 static int proc_single_show(struct seq_file
*m
, void *v
)
744 struct inode
*inode
= m
->private;
745 struct pid_namespace
*ns
;
747 struct task_struct
*task
;
750 ns
= inode
->i_sb
->s_fs_info
;
751 pid
= proc_pid(inode
);
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
)
765 ret
= single_open(filp
, proc_single_show
, NULL
);
767 struct seq_file
*m
= filp
->private_data
;
774 static const struct file_operations proc_single_file_operations
= {
775 .open
= proc_single_open
,
778 .release
= single_release
,
781 static int mem_open(struct inode
* inode
, struct file
* file
)
783 file
->private_data
= (void*)((long)current
->self_exec_id
);
787 static ssize_t
mem_read(struct file
* file
, char __user
* buf
,
788 size_t count
, loff_t
*ppos
)
790 struct task_struct
*task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
792 unsigned long src
= *ppos
;
794 struct mm_struct
*mm
;
799 if (check_mem_permission(task
))
803 page
= (char *)__get_free_page(GFP_TEMPORARY
);
809 mm
= get_task_mm(task
);
815 if (file
->private_data
!= (void*)((long)current
->self_exec_id
))
821 int this_len
, retval
;
823 this_len
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
824 retval
= access_process_vm(task
, src
, page
, this_len
, 0);
825 if (!retval
|| check_mem_permission(task
)) {
831 if (copy_to_user(buf
, page
, retval
)) {
846 free_page((unsigned long) page
);
848 put_task_struct(task
);
853 #define mem_write NULL
856 /* This is a security hazard */
857 static ssize_t
mem_write(struct file
* file
, const char __user
*buf
,
858 size_t count
, loff_t
*ppos
)
862 struct task_struct
*task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
863 unsigned long dst
= *ppos
;
869 if (check_mem_permission(task
))
873 page
= (char *)__get_free_page(GFP_TEMPORARY
);
879 int this_len
, retval
;
881 this_len
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
882 if (copy_from_user(page
, buf
, this_len
)) {
886 retval
= access_process_vm(task
, dst
, page
, this_len
, 1);
898 free_page((unsigned long) page
);
900 put_task_struct(task
);
906 loff_t
mem_lseek(struct file
*file
, loff_t offset
, int orig
)
910 file
->f_pos
= offset
;
913 file
->f_pos
+= offset
;
918 force_successful_syscall_return();
922 static const struct file_operations proc_mem_operations
= {
929 static ssize_t
environ_read(struct file
*file
, char __user
*buf
,
930 size_t count
, loff_t
*ppos
)
932 struct task_struct
*task
= get_proc_task(file
->f_dentry
->d_inode
);
934 unsigned long src
= *ppos
;
936 struct mm_struct
*mm
;
941 if (!ptrace_may_access(task
, PTRACE_MODE_READ
))
945 page
= (char *)__get_free_page(GFP_TEMPORARY
);
951 mm
= get_task_mm(task
);
956 int this_len
, retval
, max_len
;
958 this_len
= mm
->env_end
- (mm
->env_start
+ src
);
963 max_len
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
964 this_len
= (this_len
> max_len
) ? max_len
: this_len
;
966 retval
= access_process_vm(task
, (mm
->env_start
+ src
),
974 if (copy_to_user(buf
, page
, retval
)) {
988 free_page((unsigned long) page
);
990 put_task_struct(task
);
995 static const struct file_operations proc_environ_operations
= {
996 .read
= environ_read
,
999 static ssize_t
oom_adjust_read(struct file
*file
, char __user
*buf
,
1000 size_t count
, loff_t
*ppos
)
1002 struct task_struct
*task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
1003 char buffer
[PROC_NUMBUF
];
1011 oom_adjust
= task
->mm
->oom_adj
;
1013 oom_adjust
= OOM_DISABLE
;
1015 put_task_struct(task
);
1017 len
= snprintf(buffer
, sizeof(buffer
), "%i\n", oom_adjust
);
1019 return simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
1022 static ssize_t
oom_adjust_write(struct file
*file
, const char __user
*buf
,
1023 size_t count
, loff_t
*ppos
)
1025 struct task_struct
*task
;
1026 char buffer
[PROC_NUMBUF
], *end
;
1029 memset(buffer
, 0, sizeof(buffer
));
1030 if (count
> sizeof(buffer
) - 1)
1031 count
= sizeof(buffer
) - 1;
1032 if (copy_from_user(buffer
, buf
, count
))
1034 oom_adjust
= simple_strtol(buffer
, &end
, 0);
1035 if ((oom_adjust
< OOM_ADJUST_MIN
|| oom_adjust
> OOM_ADJUST_MAX
) &&
1036 oom_adjust
!= OOM_DISABLE
)
1040 task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
1046 put_task_struct(task
);
1049 if (oom_adjust
< task
->mm
->oom_adj
&& !capable(CAP_SYS_RESOURCE
)) {
1051 put_task_struct(task
);
1054 task
->mm
->oom_adj
= oom_adjust
;
1056 put_task_struct(task
);
1057 if (end
- buffer
== 0)
1059 return end
- buffer
;
1062 static const struct file_operations proc_oom_adjust_operations
= {
1063 .read
= oom_adjust_read
,
1064 .write
= oom_adjust_write
,
1067 #ifdef CONFIG_AUDITSYSCALL
1068 #define TMPBUFLEN 21
1069 static ssize_t
proc_loginuid_read(struct file
* file
, char __user
* buf
,
1070 size_t count
, loff_t
*ppos
)
1072 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
1073 struct task_struct
*task
= get_proc_task(inode
);
1075 char tmpbuf
[TMPBUFLEN
];
1079 length
= scnprintf(tmpbuf
, TMPBUFLEN
, "%u",
1080 audit_get_loginuid(task
));
1081 put_task_struct(task
);
1082 return simple_read_from_buffer(buf
, count
, ppos
, tmpbuf
, length
);
1085 static ssize_t
proc_loginuid_write(struct file
* file
, const char __user
* buf
,
1086 size_t count
, loff_t
*ppos
)
1088 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
1093 if (!capable(CAP_AUDIT_CONTROL
))
1096 if (current
!= pid_task(proc_pid(inode
), PIDTYPE_PID
))
1099 if (count
>= PAGE_SIZE
)
1100 count
= PAGE_SIZE
- 1;
1103 /* No partial writes. */
1106 page
= (char*)__get_free_page(GFP_TEMPORARY
);
1110 if (copy_from_user(page
, buf
, count
))
1114 loginuid
= simple_strtoul(page
, &tmp
, 10);
1120 length
= audit_set_loginuid(current
, loginuid
);
1121 if (likely(length
== 0))
1125 free_page((unsigned long) page
);
1129 static const struct file_operations proc_loginuid_operations
= {
1130 .read
= proc_loginuid_read
,
1131 .write
= proc_loginuid_write
,
1134 static ssize_t
proc_sessionid_read(struct file
* file
, char __user
* buf
,
1135 size_t count
, loff_t
*ppos
)
1137 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
1138 struct task_struct
*task
= get_proc_task(inode
);
1140 char tmpbuf
[TMPBUFLEN
];
1144 length
= scnprintf(tmpbuf
, TMPBUFLEN
, "%u",
1145 audit_get_sessionid(task
));
1146 put_task_struct(task
);
1147 return simple_read_from_buffer(buf
, count
, ppos
, tmpbuf
, length
);
1150 static const struct file_operations proc_sessionid_operations
= {
1151 .read
= proc_sessionid_read
,
1155 #ifdef CONFIG_FAULT_INJECTION
1156 static ssize_t
proc_fault_inject_read(struct file
* file
, char __user
* buf
,
1157 size_t count
, loff_t
*ppos
)
1159 struct task_struct
*task
= get_proc_task(file
->f_dentry
->d_inode
);
1160 char buffer
[PROC_NUMBUF
];
1166 make_it_fail
= task
->make_it_fail
;
1167 put_task_struct(task
);
1169 len
= snprintf(buffer
, sizeof(buffer
), "%i\n", make_it_fail
);
1171 return simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
1174 static ssize_t
proc_fault_inject_write(struct file
* file
,
1175 const char __user
* buf
, size_t count
, loff_t
*ppos
)
1177 struct task_struct
*task
;
1178 char buffer
[PROC_NUMBUF
], *end
;
1181 if (!capable(CAP_SYS_RESOURCE
))
1183 memset(buffer
, 0, sizeof(buffer
));
1184 if (count
> sizeof(buffer
) - 1)
1185 count
= sizeof(buffer
) - 1;
1186 if (copy_from_user(buffer
, buf
, count
))
1188 make_it_fail
= simple_strtol(buffer
, &end
, 0);
1191 task
= get_proc_task(file
->f_dentry
->d_inode
);
1194 task
->make_it_fail
= make_it_fail
;
1195 put_task_struct(task
);
1196 if (end
- buffer
== 0)
1198 return end
- buffer
;
1201 static const struct file_operations proc_fault_inject_operations
= {
1202 .read
= proc_fault_inject_read
,
1203 .write
= proc_fault_inject_write
,
1208 #ifdef CONFIG_SCHED_DEBUG
1210 * Print out various scheduling related per-task fields:
1212 static int sched_show(struct seq_file
*m
, void *v
)
1214 struct inode
*inode
= m
->private;
1215 struct task_struct
*p
;
1217 p
= get_proc_task(inode
);
1220 proc_sched_show_task(p
, m
);
1228 sched_write(struct file
*file
, const char __user
*buf
,
1229 size_t count
, loff_t
*offset
)
1231 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1232 struct task_struct
*p
;
1234 p
= get_proc_task(inode
);
1237 proc_sched_set_task(p
);
1244 static int sched_open(struct inode
*inode
, struct file
*filp
)
1248 ret
= single_open(filp
, sched_show
, NULL
);
1250 struct seq_file
*m
= filp
->private_data
;
1257 static const struct file_operations proc_pid_sched_operations
= {
1260 .write
= sched_write
,
1261 .llseek
= seq_lseek
,
1262 .release
= single_release
,
1268 * We added or removed a vma mapping the executable. The vmas are only mapped
1269 * during exec and are not mapped with the mmap system call.
1270 * Callers must hold down_write() on the mm's mmap_sem for these
1272 void added_exe_file_vma(struct mm_struct
*mm
)
1274 mm
->num_exe_file_vmas
++;
1277 void removed_exe_file_vma(struct mm_struct
*mm
)
1279 mm
->num_exe_file_vmas
--;
1280 if ((mm
->num_exe_file_vmas
== 0) && mm
->exe_file
){
1282 mm
->exe_file
= NULL
;
1287 void set_mm_exe_file(struct mm_struct
*mm
, struct file
*new_exe_file
)
1290 get_file(new_exe_file
);
1293 mm
->exe_file
= new_exe_file
;
1294 mm
->num_exe_file_vmas
= 0;
1297 struct file
*get_mm_exe_file(struct mm_struct
*mm
)
1299 struct file
*exe_file
;
1301 /* We need mmap_sem to protect against races with removal of
1302 * VM_EXECUTABLE vmas */
1303 down_read(&mm
->mmap_sem
);
1304 exe_file
= mm
->exe_file
;
1307 up_read(&mm
->mmap_sem
);
1311 void dup_mm_exe_file(struct mm_struct
*oldmm
, struct mm_struct
*newmm
)
1313 /* It's safe to write the exe_file pointer without exe_file_lock because
1314 * this is called during fork when the task is not yet in /proc */
1315 newmm
->exe_file
= get_mm_exe_file(oldmm
);
1318 static int proc_exe_link(struct inode
*inode
, struct path
*exe_path
)
1320 struct task_struct
*task
;
1321 struct mm_struct
*mm
;
1322 struct file
*exe_file
;
1324 task
= get_proc_task(inode
);
1327 mm
= get_task_mm(task
);
1328 put_task_struct(task
);
1331 exe_file
= get_mm_exe_file(mm
);
1334 *exe_path
= exe_file
->f_path
;
1335 path_get(&exe_file
->f_path
);
1342 static void *proc_pid_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1344 struct inode
*inode
= dentry
->d_inode
;
1345 int error
= -EACCES
;
1347 /* We don't need a base pointer in the /proc filesystem */
1348 path_put(&nd
->path
);
1350 /* Are we allowed to snoop on the tasks file descriptors? */
1351 if (!proc_fd_access_allowed(inode
))
1354 error
= PROC_I(inode
)->op
.proc_get_link(inode
, &nd
->path
);
1355 nd
->last_type
= LAST_BIND
;
1357 return ERR_PTR(error
);
1360 static int do_proc_readlink(struct path
*path
, char __user
*buffer
, int buflen
)
1362 char *tmp
= (char*)__get_free_page(GFP_TEMPORARY
);
1369 pathname
= d_path(path
, tmp
, PAGE_SIZE
);
1370 len
= PTR_ERR(pathname
);
1371 if (IS_ERR(pathname
))
1373 len
= tmp
+ PAGE_SIZE
- 1 - pathname
;
1377 if (copy_to_user(buffer
, pathname
, len
))
1380 free_page((unsigned long)tmp
);
1384 static int proc_pid_readlink(struct dentry
* dentry
, char __user
* buffer
, int buflen
)
1386 int error
= -EACCES
;
1387 struct inode
*inode
= dentry
->d_inode
;
1390 /* Are we allowed to snoop on the tasks file descriptors? */
1391 if (!proc_fd_access_allowed(inode
))
1394 error
= PROC_I(inode
)->op
.proc_get_link(inode
, &path
);
1398 error
= do_proc_readlink(&path
, buffer
, buflen
);
1404 static const struct inode_operations proc_pid_link_inode_operations
= {
1405 .readlink
= proc_pid_readlink
,
1406 .follow_link
= proc_pid_follow_link
,
1407 .setattr
= proc_setattr
,
1411 /* building an inode */
1413 static int task_dumpable(struct task_struct
*task
)
1416 struct mm_struct
*mm
;
1421 dumpable
= get_dumpable(mm
);
1429 static struct inode
*proc_pid_make_inode(struct super_block
* sb
, struct task_struct
*task
)
1431 struct inode
* inode
;
1432 struct proc_inode
*ei
;
1433 const struct cred
*cred
;
1435 /* We need a new inode */
1437 inode
= new_inode(sb
);
1443 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
1444 inode
->i_op
= &proc_def_inode_operations
;
1447 * grab the reference to task.
1449 ei
->pid
= get_task_pid(task
, PIDTYPE_PID
);
1453 if (task_dumpable(task
)) {
1455 cred
= __task_cred(task
);
1456 inode
->i_uid
= cred
->euid
;
1457 inode
->i_gid
= cred
->egid
;
1460 security_task_to_inode(task
, inode
);
1470 static int pid_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
, struct kstat
*stat
)
1472 struct inode
*inode
= dentry
->d_inode
;
1473 struct task_struct
*task
;
1474 const struct cred
*cred
;
1476 generic_fillattr(inode
, stat
);
1481 task
= pid_task(proc_pid(inode
), PIDTYPE_PID
);
1483 if ((inode
->i_mode
== (S_IFDIR
|S_IRUGO
|S_IXUGO
)) ||
1484 task_dumpable(task
)) {
1485 cred
= __task_cred(task
);
1486 stat
->uid
= cred
->euid
;
1487 stat
->gid
= cred
->egid
;
1497 * Exceptional case: normally we are not allowed to unhash a busy
1498 * directory. In this case, however, we can do it - no aliasing problems
1499 * due to the way we treat inodes.
1501 * Rewrite the inode's ownerships here because the owning task may have
1502 * performed a setuid(), etc.
1504 * Before the /proc/pid/status file was created the only way to read
1505 * the effective uid of a /process was to stat /proc/pid. Reading
1506 * /proc/pid/status is slow enough that procps and other packages
1507 * kept stating /proc/pid. To keep the rules in /proc simple I have
1508 * made this apply to all per process world readable and executable
1511 static int pid_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
1513 struct inode
*inode
= dentry
->d_inode
;
1514 struct task_struct
*task
= get_proc_task(inode
);
1515 const struct cred
*cred
;
1518 if ((inode
->i_mode
== (S_IFDIR
|S_IRUGO
|S_IXUGO
)) ||
1519 task_dumpable(task
)) {
1521 cred
= __task_cred(task
);
1522 inode
->i_uid
= cred
->euid
;
1523 inode
->i_gid
= cred
->egid
;
1529 inode
->i_mode
&= ~(S_ISUID
| S_ISGID
);
1530 security_task_to_inode(task
, inode
);
1531 put_task_struct(task
);
1538 static int pid_delete_dentry(struct dentry
* dentry
)
1540 /* Is the task we represent dead?
1541 * If so, then don't put the dentry on the lru list,
1542 * kill it immediately.
1544 return !proc_pid(dentry
->d_inode
)->tasks
[PIDTYPE_PID
].first
;
1547 static const struct dentry_operations pid_dentry_operations
=
1549 .d_revalidate
= pid_revalidate
,
1550 .d_delete
= pid_delete_dentry
,
1555 typedef struct dentry
*instantiate_t(struct inode
*, struct dentry
*,
1556 struct task_struct
*, const void *);
1559 * Fill a directory entry.
1561 * If possible create the dcache entry and derive our inode number and
1562 * file type from dcache entry.
1564 * Since all of the proc inode numbers are dynamically generated, the inode
1565 * numbers do not exist until the inode is cache. This means creating the
1566 * the dcache entry in readdir is necessary to keep the inode numbers
1567 * reported by readdir in sync with the inode numbers reported
1570 static int proc_fill_cache(struct file
*filp
, void *dirent
, filldir_t filldir
,
1571 char *name
, int len
,
1572 instantiate_t instantiate
, struct task_struct
*task
, const void *ptr
)
1574 struct dentry
*child
, *dir
= filp
->f_path
.dentry
;
1575 struct inode
*inode
;
1578 unsigned type
= DT_UNKNOWN
;
1582 qname
.hash
= full_name_hash(name
, len
);
1584 child
= d_lookup(dir
, &qname
);
1587 new = d_alloc(dir
, &qname
);
1589 child
= instantiate(dir
->d_inode
, new, task
, ptr
);
1596 if (!child
|| IS_ERR(child
) || !child
->d_inode
)
1597 goto end_instantiate
;
1598 inode
= child
->d_inode
;
1601 type
= inode
->i_mode
>> 12;
1606 ino
= find_inode_number(dir
, &qname
);
1609 return filldir(dirent
, name
, len
, filp
->f_pos
, ino
, type
);
1612 static unsigned name_to_int(struct dentry
*dentry
)
1614 const char *name
= dentry
->d_name
.name
;
1615 int len
= dentry
->d_name
.len
;
1618 if (len
> 1 && *name
== '0')
1621 unsigned c
= *name
++ - '0';
1624 if (n
>= (~0U-9)/10)
1634 #define PROC_FDINFO_MAX 64
1636 static int proc_fd_info(struct inode
*inode
, struct path
*path
, char *info
)
1638 struct task_struct
*task
= get_proc_task(inode
);
1639 struct files_struct
*files
= NULL
;
1641 int fd
= proc_fd(inode
);
1644 files
= get_files_struct(task
);
1645 put_task_struct(task
);
1649 * We are not taking a ref to the file structure, so we must
1652 spin_lock(&files
->file_lock
);
1653 file
= fcheck_files(files
, fd
);
1656 *path
= file
->f_path
;
1657 path_get(&file
->f_path
);
1660 snprintf(info
, PROC_FDINFO_MAX
,
1663 (long long) file
->f_pos
,
1665 spin_unlock(&files
->file_lock
);
1666 put_files_struct(files
);
1669 spin_unlock(&files
->file_lock
);
1670 put_files_struct(files
);
1675 static int proc_fd_link(struct inode
*inode
, struct path
*path
)
1677 return proc_fd_info(inode
, path
, NULL
);
1680 static int tid_fd_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
1682 struct inode
*inode
= dentry
->d_inode
;
1683 struct task_struct
*task
= get_proc_task(inode
);
1684 int fd
= proc_fd(inode
);
1685 struct files_struct
*files
;
1686 const struct cred
*cred
;
1689 files
= get_files_struct(task
);
1692 if (fcheck_files(files
, fd
)) {
1694 put_files_struct(files
);
1695 if (task_dumpable(task
)) {
1697 cred
= __task_cred(task
);
1698 inode
->i_uid
= cred
->euid
;
1699 inode
->i_gid
= cred
->egid
;
1705 inode
->i_mode
&= ~(S_ISUID
| S_ISGID
);
1706 security_task_to_inode(task
, inode
);
1707 put_task_struct(task
);
1711 put_files_struct(files
);
1713 put_task_struct(task
);
1719 static const struct dentry_operations tid_fd_dentry_operations
=
1721 .d_revalidate
= tid_fd_revalidate
,
1722 .d_delete
= pid_delete_dentry
,
1725 static struct dentry
*proc_fd_instantiate(struct inode
*dir
,
1726 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
1728 unsigned fd
= *(const unsigned *)ptr
;
1730 struct files_struct
*files
;
1731 struct inode
*inode
;
1732 struct proc_inode
*ei
;
1733 struct dentry
*error
= ERR_PTR(-ENOENT
);
1735 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
1740 files
= get_files_struct(task
);
1743 inode
->i_mode
= S_IFLNK
;
1746 * We are not taking a ref to the file structure, so we must
1749 spin_lock(&files
->file_lock
);
1750 file
= fcheck_files(files
, fd
);
1753 if (file
->f_mode
& FMODE_READ
)
1754 inode
->i_mode
|= S_IRUSR
| S_IXUSR
;
1755 if (file
->f_mode
& FMODE_WRITE
)
1756 inode
->i_mode
|= S_IWUSR
| S_IXUSR
;
1757 spin_unlock(&files
->file_lock
);
1758 put_files_struct(files
);
1760 inode
->i_op
= &proc_pid_link_inode_operations
;
1762 ei
->op
.proc_get_link
= proc_fd_link
;
1763 dentry
->d_op
= &tid_fd_dentry_operations
;
1764 d_add(dentry
, inode
);
1765 /* Close the race of the process dying before we return the dentry */
1766 if (tid_fd_revalidate(dentry
, NULL
))
1772 spin_unlock(&files
->file_lock
);
1773 put_files_struct(files
);
1779 static struct dentry
*proc_lookupfd_common(struct inode
*dir
,
1780 struct dentry
*dentry
,
1781 instantiate_t instantiate
)
1783 struct task_struct
*task
= get_proc_task(dir
);
1784 unsigned fd
= name_to_int(dentry
);
1785 struct dentry
*result
= ERR_PTR(-ENOENT
);
1792 result
= instantiate(dir
, dentry
, task
, &fd
);
1794 put_task_struct(task
);
1799 static int proc_readfd_common(struct file
* filp
, void * dirent
,
1800 filldir_t filldir
, instantiate_t instantiate
)
1802 struct dentry
*dentry
= filp
->f_path
.dentry
;
1803 struct inode
*inode
= dentry
->d_inode
;
1804 struct task_struct
*p
= get_proc_task(inode
);
1805 unsigned int fd
, ino
;
1807 struct files_struct
* files
;
1817 if (filldir(dirent
, ".", 1, 0, inode
->i_ino
, DT_DIR
) < 0)
1821 ino
= parent_ino(dentry
);
1822 if (filldir(dirent
, "..", 2, 1, ino
, DT_DIR
) < 0)
1826 files
= get_files_struct(p
);
1830 for (fd
= filp
->f_pos
-2;
1831 fd
< files_fdtable(files
)->max_fds
;
1832 fd
++, filp
->f_pos
++) {
1833 char name
[PROC_NUMBUF
];
1836 if (!fcheck_files(files
, fd
))
1840 len
= snprintf(name
, sizeof(name
), "%d", fd
);
1841 if (proc_fill_cache(filp
, dirent
, filldir
,
1842 name
, len
, instantiate
,
1850 put_files_struct(files
);
1858 static struct dentry
*proc_lookupfd(struct inode
*dir
, struct dentry
*dentry
,
1859 struct nameidata
*nd
)
1861 return proc_lookupfd_common(dir
, dentry
, proc_fd_instantiate
);
1864 static int proc_readfd(struct file
*filp
, void *dirent
, filldir_t filldir
)
1866 return proc_readfd_common(filp
, dirent
, filldir
, proc_fd_instantiate
);
1869 static ssize_t
proc_fdinfo_read(struct file
*file
, char __user
*buf
,
1870 size_t len
, loff_t
*ppos
)
1872 char tmp
[PROC_FDINFO_MAX
];
1873 int err
= proc_fd_info(file
->f_path
.dentry
->d_inode
, NULL
, tmp
);
1875 err
= simple_read_from_buffer(buf
, len
, ppos
, tmp
, strlen(tmp
));
1879 static const struct file_operations proc_fdinfo_file_operations
= {
1880 .open
= nonseekable_open
,
1881 .read
= proc_fdinfo_read
,
1884 static const struct file_operations proc_fd_operations
= {
1885 .read
= generic_read_dir
,
1886 .readdir
= proc_readfd
,
1890 * /proc/pid/fd needs a special permission handler so that a process can still
1891 * access /proc/self/fd after it has executed a setuid().
1893 static int proc_fd_permission(struct inode
*inode
, int mask
)
1897 rv
= generic_permission(inode
, mask
, NULL
);
1900 if (task_pid(current
) == proc_pid(inode
))
1906 * proc directories can do almost nothing..
1908 static const struct inode_operations proc_fd_inode_operations
= {
1909 .lookup
= proc_lookupfd
,
1910 .permission
= proc_fd_permission
,
1911 .setattr
= proc_setattr
,
1914 static struct dentry
*proc_fdinfo_instantiate(struct inode
*dir
,
1915 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
1917 unsigned fd
= *(unsigned *)ptr
;
1918 struct inode
*inode
;
1919 struct proc_inode
*ei
;
1920 struct dentry
*error
= ERR_PTR(-ENOENT
);
1922 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
1927 inode
->i_mode
= S_IFREG
| S_IRUSR
;
1928 inode
->i_fop
= &proc_fdinfo_file_operations
;
1929 dentry
->d_op
= &tid_fd_dentry_operations
;
1930 d_add(dentry
, inode
);
1931 /* Close the race of the process dying before we return the dentry */
1932 if (tid_fd_revalidate(dentry
, NULL
))
1939 static struct dentry
*proc_lookupfdinfo(struct inode
*dir
,
1940 struct dentry
*dentry
,
1941 struct nameidata
*nd
)
1943 return proc_lookupfd_common(dir
, dentry
, proc_fdinfo_instantiate
);
1946 static int proc_readfdinfo(struct file
*filp
, void *dirent
, filldir_t filldir
)
1948 return proc_readfd_common(filp
, dirent
, filldir
,
1949 proc_fdinfo_instantiate
);
1952 static const struct file_operations proc_fdinfo_operations
= {
1953 .read
= generic_read_dir
,
1954 .readdir
= proc_readfdinfo
,
1958 * proc directories can do almost nothing..
1960 static const struct inode_operations proc_fdinfo_inode_operations
= {
1961 .lookup
= proc_lookupfdinfo
,
1962 .setattr
= proc_setattr
,
1966 static struct dentry
*proc_pident_instantiate(struct inode
*dir
,
1967 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
1969 const struct pid_entry
*p
= ptr
;
1970 struct inode
*inode
;
1971 struct proc_inode
*ei
;
1972 struct dentry
*error
= ERR_PTR(-ENOENT
);
1974 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
1979 inode
->i_mode
= p
->mode
;
1980 if (S_ISDIR(inode
->i_mode
))
1981 inode
->i_nlink
= 2; /* Use getattr to fix if necessary */
1983 inode
->i_op
= p
->iop
;
1985 inode
->i_fop
= p
->fop
;
1987 dentry
->d_op
= &pid_dentry_operations
;
1988 d_add(dentry
, inode
);
1989 /* Close the race of the process dying before we return the dentry */
1990 if (pid_revalidate(dentry
, NULL
))
1996 static struct dentry
*proc_pident_lookup(struct inode
*dir
,
1997 struct dentry
*dentry
,
1998 const struct pid_entry
*ents
,
2001 struct dentry
*error
;
2002 struct task_struct
*task
= get_proc_task(dir
);
2003 const struct pid_entry
*p
, *last
;
2005 error
= ERR_PTR(-ENOENT
);
2011 * Yes, it does not scale. And it should not. Don't add
2012 * new entries into /proc/<tgid>/ without very good reasons.
2014 last
= &ents
[nents
- 1];
2015 for (p
= ents
; p
<= last
; p
++) {
2016 if (p
->len
!= dentry
->d_name
.len
)
2018 if (!memcmp(dentry
->d_name
.name
, p
->name
, p
->len
))
2024 error
= proc_pident_instantiate(dir
, dentry
, task
, p
);
2026 put_task_struct(task
);
2031 static int proc_pident_fill_cache(struct file
*filp
, void *dirent
,
2032 filldir_t filldir
, struct task_struct
*task
, const struct pid_entry
*p
)
2034 return proc_fill_cache(filp
, dirent
, filldir
, p
->name
, p
->len
,
2035 proc_pident_instantiate
, task
, p
);
2038 static int proc_pident_readdir(struct file
*filp
,
2039 void *dirent
, filldir_t filldir
,
2040 const struct pid_entry
*ents
, unsigned int nents
)
2043 struct dentry
*dentry
= filp
->f_path
.dentry
;
2044 struct inode
*inode
= dentry
->d_inode
;
2045 struct task_struct
*task
= get_proc_task(inode
);
2046 const struct pid_entry
*p
, *last
;
2059 if (filldir(dirent
, ".", 1, i
, ino
, DT_DIR
) < 0)
2065 ino
= parent_ino(dentry
);
2066 if (filldir(dirent
, "..", 2, i
, ino
, DT_DIR
) < 0)
2078 last
= &ents
[nents
- 1];
2080 if (proc_pident_fill_cache(filp
, dirent
, filldir
, task
, p
) < 0)
2089 put_task_struct(task
);
2094 #ifdef CONFIG_SECURITY
2095 static ssize_t
proc_pid_attr_read(struct file
* file
, char __user
* buf
,
2096 size_t count
, loff_t
*ppos
)
2098 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
2101 struct task_struct
*task
= get_proc_task(inode
);
2106 length
= security_getprocattr(task
,
2107 (char*)file
->f_path
.dentry
->d_name
.name
,
2109 put_task_struct(task
);
2111 length
= simple_read_from_buffer(buf
, count
, ppos
, p
, length
);
2116 static ssize_t
proc_pid_attr_write(struct file
* file
, const char __user
* buf
,
2117 size_t count
, loff_t
*ppos
)
2119 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
2122 struct task_struct
*task
= get_proc_task(inode
);
2127 if (count
> PAGE_SIZE
)
2130 /* No partial writes. */
2136 page
= (char*)__get_free_page(GFP_TEMPORARY
);
2141 if (copy_from_user(page
, buf
, count
))
2144 /* Guard against adverse ptrace interaction */
2145 length
= mutex_lock_interruptible(&task
->cred_guard_mutex
);
2149 length
= security_setprocattr(task
,
2150 (char*)file
->f_path
.dentry
->d_name
.name
,
2151 (void*)page
, count
);
2152 mutex_unlock(&task
->cred_guard_mutex
);
2154 free_page((unsigned long) page
);
2156 put_task_struct(task
);
2161 static const struct file_operations proc_pid_attr_operations
= {
2162 .read
= proc_pid_attr_read
,
2163 .write
= proc_pid_attr_write
,
2166 static const struct pid_entry attr_dir_stuff
[] = {
2167 REG("current", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2168 REG("prev", S_IRUGO
, proc_pid_attr_operations
),
2169 REG("exec", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2170 REG("fscreate", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2171 REG("keycreate", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2172 REG("sockcreate", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2175 static int proc_attr_dir_readdir(struct file
* filp
,
2176 void * dirent
, filldir_t filldir
)
2178 return proc_pident_readdir(filp
,dirent
,filldir
,
2179 attr_dir_stuff
,ARRAY_SIZE(attr_dir_stuff
));
2182 static const struct file_operations proc_attr_dir_operations
= {
2183 .read
= generic_read_dir
,
2184 .readdir
= proc_attr_dir_readdir
,
2187 static struct dentry
*proc_attr_dir_lookup(struct inode
*dir
,
2188 struct dentry
*dentry
, struct nameidata
*nd
)
2190 return proc_pident_lookup(dir
, dentry
,
2191 attr_dir_stuff
, ARRAY_SIZE(attr_dir_stuff
));
2194 static const struct inode_operations proc_attr_dir_inode_operations
= {
2195 .lookup
= proc_attr_dir_lookup
,
2196 .getattr
= pid_getattr
,
2197 .setattr
= proc_setattr
,
2202 #if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
2203 static ssize_t
proc_coredump_filter_read(struct file
*file
, char __user
*buf
,
2204 size_t count
, loff_t
*ppos
)
2206 struct task_struct
*task
= get_proc_task(file
->f_dentry
->d_inode
);
2207 struct mm_struct
*mm
;
2208 char buffer
[PROC_NUMBUF
];
2216 mm
= get_task_mm(task
);
2218 len
= snprintf(buffer
, sizeof(buffer
), "%08lx\n",
2219 ((mm
->flags
& MMF_DUMP_FILTER_MASK
) >>
2220 MMF_DUMP_FILTER_SHIFT
));
2222 ret
= simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
2225 put_task_struct(task
);
2230 static ssize_t
proc_coredump_filter_write(struct file
*file
,
2231 const char __user
*buf
,
2235 struct task_struct
*task
;
2236 struct mm_struct
*mm
;
2237 char buffer
[PROC_NUMBUF
], *end
;
2244 memset(buffer
, 0, sizeof(buffer
));
2245 if (count
> sizeof(buffer
) - 1)
2246 count
= sizeof(buffer
) - 1;
2247 if (copy_from_user(buffer
, buf
, count
))
2251 val
= (unsigned int)simple_strtoul(buffer
, &end
, 0);
2254 if (end
- buffer
== 0)
2258 task
= get_proc_task(file
->f_dentry
->d_inode
);
2263 mm
= get_task_mm(task
);
2267 for (i
= 0, mask
= 1; i
< MMF_DUMP_FILTER_BITS
; i
++, mask
<<= 1) {
2269 set_bit(i
+ MMF_DUMP_FILTER_SHIFT
, &mm
->flags
);
2271 clear_bit(i
+ MMF_DUMP_FILTER_SHIFT
, &mm
->flags
);
2276 put_task_struct(task
);
2281 static const struct file_operations proc_coredump_filter_operations
= {
2282 .read
= proc_coredump_filter_read
,
2283 .write
= proc_coredump_filter_write
,
2290 static int proc_self_readlink(struct dentry
*dentry
, char __user
*buffer
,
2293 struct pid_namespace
*ns
= dentry
->d_sb
->s_fs_info
;
2294 pid_t tgid
= task_tgid_nr_ns(current
, ns
);
2295 char tmp
[PROC_NUMBUF
];
2298 sprintf(tmp
, "%d", tgid
);
2299 return vfs_readlink(dentry
,buffer
,buflen
,tmp
);
2302 static void *proc_self_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
2304 struct pid_namespace
*ns
= dentry
->d_sb
->s_fs_info
;
2305 pid_t tgid
= task_tgid_nr_ns(current
, ns
);
2306 char tmp
[PROC_NUMBUF
];
2308 return ERR_PTR(-ENOENT
);
2309 sprintf(tmp
, "%d", task_tgid_nr_ns(current
, ns
));
2310 return ERR_PTR(vfs_follow_link(nd
,tmp
));
2313 static const struct inode_operations proc_self_inode_operations
= {
2314 .readlink
= proc_self_readlink
,
2315 .follow_link
= proc_self_follow_link
,
2321 * These are the directory entries in the root directory of /proc
2322 * that properly belong to the /proc filesystem, as they describe
2323 * describe something that is process related.
2325 static const struct pid_entry proc_base_stuff
[] = {
2326 NOD("self", S_IFLNK
|S_IRWXUGO
,
2327 &proc_self_inode_operations
, NULL
, {}),
2331 * Exceptional case: normally we are not allowed to unhash a busy
2332 * directory. In this case, however, we can do it - no aliasing problems
2333 * due to the way we treat inodes.
2335 static int proc_base_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
2337 struct inode
*inode
= dentry
->d_inode
;
2338 struct task_struct
*task
= get_proc_task(inode
);
2340 put_task_struct(task
);
2347 static const struct dentry_operations proc_base_dentry_operations
=
2349 .d_revalidate
= proc_base_revalidate
,
2350 .d_delete
= pid_delete_dentry
,
2353 static struct dentry
*proc_base_instantiate(struct inode
*dir
,
2354 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
2356 const struct pid_entry
*p
= ptr
;
2357 struct inode
*inode
;
2358 struct proc_inode
*ei
;
2359 struct dentry
*error
= ERR_PTR(-EINVAL
);
2361 /* Allocate the inode */
2362 error
= ERR_PTR(-ENOMEM
);
2363 inode
= new_inode(dir
->i_sb
);
2367 /* Initialize the inode */
2369 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
2372 * grab the reference to the task.
2374 ei
->pid
= get_task_pid(task
, PIDTYPE_PID
);
2378 inode
->i_mode
= p
->mode
;
2379 if (S_ISDIR(inode
->i_mode
))
2381 if (S_ISLNK(inode
->i_mode
))
2384 inode
->i_op
= p
->iop
;
2386 inode
->i_fop
= p
->fop
;
2388 dentry
->d_op
= &proc_base_dentry_operations
;
2389 d_add(dentry
, inode
);
2398 static struct dentry
*proc_base_lookup(struct inode
*dir
, struct dentry
*dentry
)
2400 struct dentry
*error
;
2401 struct task_struct
*task
= get_proc_task(dir
);
2402 const struct pid_entry
*p
, *last
;
2404 error
= ERR_PTR(-ENOENT
);
2409 /* Lookup the directory entry */
2410 last
= &proc_base_stuff
[ARRAY_SIZE(proc_base_stuff
) - 1];
2411 for (p
= proc_base_stuff
; p
<= last
; p
++) {
2412 if (p
->len
!= dentry
->d_name
.len
)
2414 if (!memcmp(dentry
->d_name
.name
, p
->name
, p
->len
))
2420 error
= proc_base_instantiate(dir
, dentry
, task
, p
);
2423 put_task_struct(task
);
2428 static int proc_base_fill_cache(struct file
*filp
, void *dirent
,
2429 filldir_t filldir
, struct task_struct
*task
, const struct pid_entry
*p
)
2431 return proc_fill_cache(filp
, dirent
, filldir
, p
->name
, p
->len
,
2432 proc_base_instantiate
, task
, p
);
2435 #ifdef CONFIG_TASK_IO_ACCOUNTING
2436 static int do_io_accounting(struct task_struct
*task
, char *buffer
, int whole
)
2438 struct task_io_accounting acct
= task
->ioac
;
2439 unsigned long flags
;
2441 if (whole
&& lock_task_sighand(task
, &flags
)) {
2442 struct task_struct
*t
= task
;
2444 task_io_accounting_add(&acct
, &task
->signal
->ioac
);
2445 while_each_thread(task
, t
)
2446 task_io_accounting_add(&acct
, &t
->ioac
);
2448 unlock_task_sighand(task
, &flags
);
2450 return sprintf(buffer
,
2455 "read_bytes: %llu\n"
2456 "write_bytes: %llu\n"
2457 "cancelled_write_bytes: %llu\n",
2458 (unsigned long long)acct
.rchar
,
2459 (unsigned long long)acct
.wchar
,
2460 (unsigned long long)acct
.syscr
,
2461 (unsigned long long)acct
.syscw
,
2462 (unsigned long long)acct
.read_bytes
,
2463 (unsigned long long)acct
.write_bytes
,
2464 (unsigned long long)acct
.cancelled_write_bytes
);
2467 static int proc_tid_io_accounting(struct task_struct
*task
, char *buffer
)
2469 return do_io_accounting(task
, buffer
, 0);
2472 static int proc_tgid_io_accounting(struct task_struct
*task
, char *buffer
)
2474 return do_io_accounting(task
, buffer
, 1);
2476 #endif /* CONFIG_TASK_IO_ACCOUNTING */
2478 static int proc_pid_personality(struct seq_file
*m
, struct pid_namespace
*ns
,
2479 struct pid
*pid
, struct task_struct
*task
)
2481 seq_printf(m
, "%08x\n", task
->personality
);
2488 static const struct file_operations proc_task_operations
;
2489 static const struct inode_operations proc_task_inode_operations
;
2491 static const struct pid_entry tgid_base_stuff
[] = {
2492 DIR("task", S_IRUGO
|S_IXUGO
, proc_task_inode_operations
, proc_task_operations
),
2493 DIR("fd", S_IRUSR
|S_IXUSR
, proc_fd_inode_operations
, proc_fd_operations
),
2494 DIR("fdinfo", S_IRUSR
|S_IXUSR
, proc_fdinfo_inode_operations
, proc_fdinfo_operations
),
2496 DIR("net", S_IRUGO
|S_IXUGO
, proc_net_inode_operations
, proc_net_operations
),
2498 REG("environ", S_IRUSR
, proc_environ_operations
),
2499 INF("auxv", S_IRUSR
, proc_pid_auxv
),
2500 ONE("status", S_IRUGO
, proc_pid_status
),
2501 ONE("personality", S_IRUSR
, proc_pid_personality
),
2502 INF("limits", S_IRUSR
, proc_pid_limits
),
2503 #ifdef CONFIG_SCHED_DEBUG
2504 REG("sched", S_IRUGO
|S_IWUSR
, proc_pid_sched_operations
),
2506 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
2507 INF("syscall", S_IRUSR
, proc_pid_syscall
),
2509 INF("cmdline", S_IRUGO
, proc_pid_cmdline
),
2510 ONE("stat", S_IRUGO
, proc_tgid_stat
),
2511 ONE("statm", S_IRUGO
, proc_pid_statm
),
2512 REG("maps", S_IRUGO
, proc_maps_operations
),
2514 REG("numa_maps", S_IRUGO
, proc_numa_maps_operations
),
2516 REG("mem", S_IRUSR
|S_IWUSR
, proc_mem_operations
),
2517 LNK("cwd", proc_cwd_link
),
2518 LNK("root", proc_root_link
),
2519 LNK("exe", proc_exe_link
),
2520 REG("mounts", S_IRUGO
, proc_mounts_operations
),
2521 REG("mountinfo", S_IRUGO
, proc_mountinfo_operations
),
2522 REG("mountstats", S_IRUSR
, proc_mountstats_operations
),
2523 #ifdef CONFIG_PROC_PAGE_MONITOR
2524 REG("clear_refs", S_IWUSR
, proc_clear_refs_operations
),
2525 REG("smaps", S_IRUGO
, proc_smaps_operations
),
2526 REG("pagemap", S_IRUSR
, proc_pagemap_operations
),
2528 #ifdef CONFIG_SECURITY
2529 DIR("attr", S_IRUGO
|S_IXUGO
, proc_attr_dir_inode_operations
, proc_attr_dir_operations
),
2531 #ifdef CONFIG_KALLSYMS
2532 INF("wchan", S_IRUGO
, proc_pid_wchan
),
2534 #ifdef CONFIG_STACKTRACE
2535 ONE("stack", S_IRUSR
, proc_pid_stack
),
2537 #ifdef CONFIG_SCHEDSTATS
2538 INF("schedstat", S_IRUGO
, proc_pid_schedstat
),
2540 #ifdef CONFIG_LATENCYTOP
2541 REG("latency", S_IRUGO
, proc_lstats_operations
),
2543 #ifdef CONFIG_PROC_PID_CPUSET
2544 REG("cpuset", S_IRUGO
, proc_cpuset_operations
),
2546 #ifdef CONFIG_CGROUPS
2547 REG("cgroup", S_IRUGO
, proc_cgroup_operations
),
2549 INF("oom_score", S_IRUGO
, proc_oom_score
),
2550 REG("oom_adj", S_IRUGO
|S_IWUSR
, proc_oom_adjust_operations
),
2551 #ifdef CONFIG_AUDITSYSCALL
2552 REG("loginuid", S_IWUSR
|S_IRUGO
, proc_loginuid_operations
),
2553 REG("sessionid", S_IRUGO
, proc_sessionid_operations
),
2555 #ifdef CONFIG_FAULT_INJECTION
2556 REG("make-it-fail", S_IRUGO
|S_IWUSR
, proc_fault_inject_operations
),
2558 #if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
2559 REG("coredump_filter", S_IRUGO
|S_IWUSR
, proc_coredump_filter_operations
),
2561 #ifdef CONFIG_TASK_IO_ACCOUNTING
2562 INF("io", S_IRUGO
, proc_tgid_io_accounting
),
2566 static int proc_tgid_base_readdir(struct file
* filp
,
2567 void * dirent
, filldir_t filldir
)
2569 return proc_pident_readdir(filp
,dirent
,filldir
,
2570 tgid_base_stuff
,ARRAY_SIZE(tgid_base_stuff
));
2573 static const struct file_operations proc_tgid_base_operations
= {
2574 .read
= generic_read_dir
,
2575 .readdir
= proc_tgid_base_readdir
,
2578 static struct dentry
*proc_tgid_base_lookup(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
){
2579 return proc_pident_lookup(dir
, dentry
,
2580 tgid_base_stuff
, ARRAY_SIZE(tgid_base_stuff
));
2583 static const struct inode_operations proc_tgid_base_inode_operations
= {
2584 .lookup
= proc_tgid_base_lookup
,
2585 .getattr
= pid_getattr
,
2586 .setattr
= proc_setattr
,
2589 static void proc_flush_task_mnt(struct vfsmount
*mnt
, pid_t pid
, pid_t tgid
)
2591 struct dentry
*dentry
, *leader
, *dir
;
2592 char buf
[PROC_NUMBUF
];
2596 name
.len
= snprintf(buf
, sizeof(buf
), "%d", pid
);
2597 dentry
= d_hash_and_lookup(mnt
->mnt_root
, &name
);
2599 if (!(current
->flags
& PF_EXITING
))
2600 shrink_dcache_parent(dentry
);
2609 name
.len
= snprintf(buf
, sizeof(buf
), "%d", tgid
);
2610 leader
= d_hash_and_lookup(mnt
->mnt_root
, &name
);
2615 name
.len
= strlen(name
.name
);
2616 dir
= d_hash_and_lookup(leader
, &name
);
2618 goto out_put_leader
;
2621 name
.len
= snprintf(buf
, sizeof(buf
), "%d", pid
);
2622 dentry
= d_hash_and_lookup(dir
, &name
);
2624 shrink_dcache_parent(dentry
);
2637 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2638 * @task: task that should be flushed.
2640 * When flushing dentries from proc, one needs to flush them from global
2641 * proc (proc_mnt) and from all the namespaces' procs this task was seen
2642 * in. This call is supposed to do all of this job.
2644 * Looks in the dcache for
2646 * /proc/@tgid/task/@pid
2647 * if either directory is present flushes it and all of it'ts children
2650 * It is safe and reasonable to cache /proc entries for a task until
2651 * that task exits. After that they just clog up the dcache with
2652 * useless entries, possibly causing useful dcache entries to be
2653 * flushed instead. This routine is proved to flush those useless
2654 * dcache entries at process exit time.
2656 * NOTE: This routine is just an optimization so it does not guarantee
2657 * that no dcache entries will exist at process exit time it
2658 * just makes it very unlikely that any will persist.
2661 void proc_flush_task(struct task_struct
*task
)
2664 struct pid
*pid
, *tgid
= NULL
;
2667 pid
= task_pid(task
);
2668 if (thread_group_leader(task
))
2669 tgid
= task_tgid(task
);
2671 for (i
= 0; i
<= pid
->level
; i
++) {
2672 upid
= &pid
->numbers
[i
];
2673 proc_flush_task_mnt(upid
->ns
->proc_mnt
, upid
->nr
,
2674 tgid
? tgid
->numbers
[i
].nr
: 0);
2677 upid
= &pid
->numbers
[pid
->level
];
2679 pid_ns_release_proc(upid
->ns
);
2682 static struct dentry
*proc_pid_instantiate(struct inode
*dir
,
2683 struct dentry
* dentry
,
2684 struct task_struct
*task
, const void *ptr
)
2686 struct dentry
*error
= ERR_PTR(-ENOENT
);
2687 struct inode
*inode
;
2689 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
2693 inode
->i_mode
= S_IFDIR
|S_IRUGO
|S_IXUGO
;
2694 inode
->i_op
= &proc_tgid_base_inode_operations
;
2695 inode
->i_fop
= &proc_tgid_base_operations
;
2696 inode
->i_flags
|=S_IMMUTABLE
;
2698 inode
->i_nlink
= 2 + pid_entry_count_dirs(tgid_base_stuff
,
2699 ARRAY_SIZE(tgid_base_stuff
));
2701 dentry
->d_op
= &pid_dentry_operations
;
2703 d_add(dentry
, inode
);
2704 /* Close the race of the process dying before we return the dentry */
2705 if (pid_revalidate(dentry
, NULL
))
2711 struct dentry
*proc_pid_lookup(struct inode
*dir
, struct dentry
* dentry
, struct nameidata
*nd
)
2713 struct dentry
*result
= ERR_PTR(-ENOENT
);
2714 struct task_struct
*task
;
2716 struct pid_namespace
*ns
;
2718 result
= proc_base_lookup(dir
, dentry
);
2719 if (!IS_ERR(result
) || PTR_ERR(result
) != -ENOENT
)
2722 tgid
= name_to_int(dentry
);
2726 ns
= dentry
->d_sb
->s_fs_info
;
2728 task
= find_task_by_pid_ns(tgid
, ns
);
2730 get_task_struct(task
);
2735 result
= proc_pid_instantiate(dir
, dentry
, task
, NULL
);
2736 put_task_struct(task
);
2742 * Find the first task with tgid >= tgid
2747 struct task_struct
*task
;
2749 static struct tgid_iter
next_tgid(struct pid_namespace
*ns
, struct tgid_iter iter
)
2754 put_task_struct(iter
.task
);
2758 pid
= find_ge_pid(iter
.tgid
, ns
);
2760 iter
.tgid
= pid_nr_ns(pid
, ns
);
2761 iter
.task
= pid_task(pid
, PIDTYPE_PID
);
2762 /* What we to know is if the pid we have find is the
2763 * pid of a thread_group_leader. Testing for task
2764 * being a thread_group_leader is the obvious thing
2765 * todo but there is a window when it fails, due to
2766 * the pid transfer logic in de_thread.
2768 * So we perform the straight forward test of seeing
2769 * if the pid we have found is the pid of a thread
2770 * group leader, and don't worry if the task we have
2771 * found doesn't happen to be a thread group leader.
2772 * As we don't care in the case of readdir.
2774 if (!iter
.task
|| !has_group_leader_pid(iter
.task
)) {
2778 get_task_struct(iter
.task
);
2784 #define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
2786 static int proc_pid_fill_cache(struct file
*filp
, void *dirent
, filldir_t filldir
,
2787 struct tgid_iter iter
)
2789 char name
[PROC_NUMBUF
];
2790 int len
= snprintf(name
, sizeof(name
), "%d", iter
.tgid
);
2791 return proc_fill_cache(filp
, dirent
, filldir
, name
, len
,
2792 proc_pid_instantiate
, iter
.task
, NULL
);
2795 /* for the /proc/ directory itself, after non-process stuff has been done */
2796 int proc_pid_readdir(struct file
* filp
, void * dirent
, filldir_t filldir
)
2798 unsigned int nr
= filp
->f_pos
- FIRST_PROCESS_ENTRY
;
2799 struct task_struct
*reaper
= get_proc_task(filp
->f_path
.dentry
->d_inode
);
2800 struct tgid_iter iter
;
2801 struct pid_namespace
*ns
;
2806 for (; nr
< ARRAY_SIZE(proc_base_stuff
); filp
->f_pos
++, nr
++) {
2807 const struct pid_entry
*p
= &proc_base_stuff
[nr
];
2808 if (proc_base_fill_cache(filp
, dirent
, filldir
, reaper
, p
) < 0)
2812 ns
= filp
->f_dentry
->d_sb
->s_fs_info
;
2814 iter
.tgid
= filp
->f_pos
- TGID_OFFSET
;
2815 for (iter
= next_tgid(ns
, iter
);
2817 iter
.tgid
+= 1, iter
= next_tgid(ns
, iter
)) {
2818 filp
->f_pos
= iter
.tgid
+ TGID_OFFSET
;
2819 if (proc_pid_fill_cache(filp
, dirent
, filldir
, iter
) < 0) {
2820 put_task_struct(iter
.task
);
2824 filp
->f_pos
= PID_MAX_LIMIT
+ TGID_OFFSET
;
2826 put_task_struct(reaper
);
2834 static const struct pid_entry tid_base_stuff
[] = {
2835 DIR("fd", S_IRUSR
|S_IXUSR
, proc_fd_inode_operations
, proc_fd_operations
),
2836 DIR("fdinfo", S_IRUSR
|S_IXUSR
, proc_fdinfo_inode_operations
, proc_fd_operations
),
2837 REG("environ", S_IRUSR
, proc_environ_operations
),
2838 INF("auxv", S_IRUSR
, proc_pid_auxv
),
2839 ONE("status", S_IRUGO
, proc_pid_status
),
2840 ONE("personality", S_IRUSR
, proc_pid_personality
),
2841 INF("limits", S_IRUSR
, proc_pid_limits
),
2842 #ifdef CONFIG_SCHED_DEBUG
2843 REG("sched", S_IRUGO
|S_IWUSR
, proc_pid_sched_operations
),
2845 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
2846 INF("syscall", S_IRUSR
, proc_pid_syscall
),
2848 INF("cmdline", S_IRUGO
, proc_pid_cmdline
),
2849 ONE("stat", S_IRUGO
, proc_tid_stat
),
2850 ONE("statm", S_IRUGO
, proc_pid_statm
),
2851 REG("maps", S_IRUGO
, proc_maps_operations
),
2853 REG("numa_maps", S_IRUGO
, proc_numa_maps_operations
),
2855 REG("mem", S_IRUSR
|S_IWUSR
, proc_mem_operations
),
2856 LNK("cwd", proc_cwd_link
),
2857 LNK("root", proc_root_link
),
2858 LNK("exe", proc_exe_link
),
2859 REG("mounts", S_IRUGO
, proc_mounts_operations
),
2860 REG("mountinfo", S_IRUGO
, proc_mountinfo_operations
),
2861 #ifdef CONFIG_PROC_PAGE_MONITOR
2862 REG("clear_refs", S_IWUSR
, proc_clear_refs_operations
),
2863 REG("smaps", S_IRUGO
, proc_smaps_operations
),
2864 REG("pagemap", S_IRUSR
, proc_pagemap_operations
),
2866 #ifdef CONFIG_SECURITY
2867 DIR("attr", S_IRUGO
|S_IXUGO
, proc_attr_dir_inode_operations
, proc_attr_dir_operations
),
2869 #ifdef CONFIG_KALLSYMS
2870 INF("wchan", S_IRUGO
, proc_pid_wchan
),
2872 #ifdef CONFIG_STACKTRACE
2873 ONE("stack", S_IRUSR
, proc_pid_stack
),
2875 #ifdef CONFIG_SCHEDSTATS
2876 INF("schedstat", S_IRUGO
, proc_pid_schedstat
),
2878 #ifdef CONFIG_LATENCYTOP
2879 REG("latency", S_IRUGO
, proc_lstats_operations
),
2881 #ifdef CONFIG_PROC_PID_CPUSET
2882 REG("cpuset", S_IRUGO
, proc_cpuset_operations
),
2884 #ifdef CONFIG_CGROUPS
2885 REG("cgroup", S_IRUGO
, proc_cgroup_operations
),
2887 INF("oom_score", S_IRUGO
, proc_oom_score
),
2888 REG("oom_adj", S_IRUGO
|S_IWUSR
, proc_oom_adjust_operations
),
2889 #ifdef CONFIG_AUDITSYSCALL
2890 REG("loginuid", S_IWUSR
|S_IRUGO
, proc_loginuid_operations
),
2891 REG("sessionid", S_IRUSR
, proc_sessionid_operations
),
2893 #ifdef CONFIG_FAULT_INJECTION
2894 REG("make-it-fail", S_IRUGO
|S_IWUSR
, proc_fault_inject_operations
),
2896 #ifdef CONFIG_TASK_IO_ACCOUNTING
2897 INF("io", S_IRUGO
, proc_tid_io_accounting
),
2901 static int proc_tid_base_readdir(struct file
* filp
,
2902 void * dirent
, filldir_t filldir
)
2904 return proc_pident_readdir(filp
,dirent
,filldir
,
2905 tid_base_stuff
,ARRAY_SIZE(tid_base_stuff
));
2908 static struct dentry
*proc_tid_base_lookup(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
){
2909 return proc_pident_lookup(dir
, dentry
,
2910 tid_base_stuff
, ARRAY_SIZE(tid_base_stuff
));
2913 static const struct file_operations proc_tid_base_operations
= {
2914 .read
= generic_read_dir
,
2915 .readdir
= proc_tid_base_readdir
,
2918 static const struct inode_operations proc_tid_base_inode_operations
= {
2919 .lookup
= proc_tid_base_lookup
,
2920 .getattr
= pid_getattr
,
2921 .setattr
= proc_setattr
,
2924 static struct dentry
*proc_task_instantiate(struct inode
*dir
,
2925 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
2927 struct dentry
*error
= ERR_PTR(-ENOENT
);
2928 struct inode
*inode
;
2929 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
2933 inode
->i_mode
= S_IFDIR
|S_IRUGO
|S_IXUGO
;
2934 inode
->i_op
= &proc_tid_base_inode_operations
;
2935 inode
->i_fop
= &proc_tid_base_operations
;
2936 inode
->i_flags
|=S_IMMUTABLE
;
2938 inode
->i_nlink
= 2 + pid_entry_count_dirs(tid_base_stuff
,
2939 ARRAY_SIZE(tid_base_stuff
));
2941 dentry
->d_op
= &pid_dentry_operations
;
2943 d_add(dentry
, inode
);
2944 /* Close the race of the process dying before we return the dentry */
2945 if (pid_revalidate(dentry
, NULL
))
2951 static struct dentry
*proc_task_lookup(struct inode
*dir
, struct dentry
* dentry
, struct nameidata
*nd
)
2953 struct dentry
*result
= ERR_PTR(-ENOENT
);
2954 struct task_struct
*task
;
2955 struct task_struct
*leader
= get_proc_task(dir
);
2957 struct pid_namespace
*ns
;
2962 tid
= name_to_int(dentry
);
2966 ns
= dentry
->d_sb
->s_fs_info
;
2968 task
= find_task_by_pid_ns(tid
, ns
);
2970 get_task_struct(task
);
2974 if (!same_thread_group(leader
, task
))
2977 result
= proc_task_instantiate(dir
, dentry
, task
, NULL
);
2979 put_task_struct(task
);
2981 put_task_struct(leader
);
2987 * Find the first tid of a thread group to return to user space.
2989 * Usually this is just the thread group leader, but if the users
2990 * buffer was too small or there was a seek into the middle of the
2991 * directory we have more work todo.
2993 * In the case of a short read we start with find_task_by_pid.
2995 * In the case of a seek we start with the leader and walk nr
2998 static struct task_struct
*first_tid(struct task_struct
*leader
,
2999 int tid
, int nr
, struct pid_namespace
*ns
)
3001 struct task_struct
*pos
;
3004 /* Attempt to start with the pid of a thread */
3005 if (tid
&& (nr
> 0)) {
3006 pos
= find_task_by_pid_ns(tid
, ns
);
3007 if (pos
&& (pos
->group_leader
== leader
))
3011 /* If nr exceeds the number of threads there is nothing todo */
3013 if (nr
&& nr
>= get_nr_threads(leader
))
3016 /* If we haven't found our starting place yet start
3017 * with the leader and walk nr threads forward.
3019 for (pos
= leader
; nr
> 0; --nr
) {
3020 pos
= next_thread(pos
);
3021 if (pos
== leader
) {
3027 get_task_struct(pos
);
3034 * Find the next thread in the thread list.
3035 * Return NULL if there is an error or no next thread.
3037 * The reference to the input task_struct is released.
3039 static struct task_struct
*next_tid(struct task_struct
*start
)
3041 struct task_struct
*pos
= NULL
;
3043 if (pid_alive(start
)) {
3044 pos
= next_thread(start
);
3045 if (thread_group_leader(pos
))
3048 get_task_struct(pos
);
3051 put_task_struct(start
);
3055 static int proc_task_fill_cache(struct file
*filp
, void *dirent
, filldir_t filldir
,
3056 struct task_struct
*task
, int tid
)
3058 char name
[PROC_NUMBUF
];
3059 int len
= snprintf(name
, sizeof(name
), "%d", tid
);
3060 return proc_fill_cache(filp
, dirent
, filldir
, name
, len
,
3061 proc_task_instantiate
, task
, NULL
);
3064 /* for the /proc/TGID/task/ directories */
3065 static int proc_task_readdir(struct file
* filp
, void * dirent
, filldir_t filldir
)
3067 struct dentry
*dentry
= filp
->f_path
.dentry
;
3068 struct inode
*inode
= dentry
->d_inode
;
3069 struct task_struct
*leader
= NULL
;
3070 struct task_struct
*task
;
3071 int retval
= -ENOENT
;
3074 struct pid_namespace
*ns
;
3076 task
= get_proc_task(inode
);
3080 if (pid_alive(task
)) {
3081 leader
= task
->group_leader
;
3082 get_task_struct(leader
);
3085 put_task_struct(task
);
3090 switch ((unsigned long)filp
->f_pos
) {
3093 if (filldir(dirent
, ".", 1, filp
->f_pos
, ino
, DT_DIR
) < 0)
3098 ino
= parent_ino(dentry
);
3099 if (filldir(dirent
, "..", 2, filp
->f_pos
, ino
, DT_DIR
) < 0)
3105 /* f_version caches the tgid value that the last readdir call couldn't
3106 * return. lseek aka telldir automagically resets f_version to 0.
3108 ns
= filp
->f_dentry
->d_sb
->s_fs_info
;
3109 tid
= (int)filp
->f_version
;
3110 filp
->f_version
= 0;
3111 for (task
= first_tid(leader
, tid
, filp
->f_pos
- 2, ns
);
3113 task
= next_tid(task
), filp
->f_pos
++) {
3114 tid
= task_pid_nr_ns(task
, ns
);
3115 if (proc_task_fill_cache(filp
, dirent
, filldir
, task
, tid
) < 0) {
3116 /* returning this tgid failed, save it as the first
3117 * pid for the next readir call */
3118 filp
->f_version
= (u64
)tid
;
3119 put_task_struct(task
);
3124 put_task_struct(leader
);
3129 static int proc_task_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
, struct kstat
*stat
)
3131 struct inode
*inode
= dentry
->d_inode
;
3132 struct task_struct
*p
= get_proc_task(inode
);
3133 generic_fillattr(inode
, stat
);
3136 stat
->nlink
+= get_nr_threads(p
);
3143 static const struct inode_operations proc_task_inode_operations
= {
3144 .lookup
= proc_task_lookup
,
3145 .getattr
= proc_task_getattr
,
3146 .setattr
= proc_setattr
,
3149 static const struct file_operations proc_task_operations
= {
3150 .read
= generic_read_dir
,
3151 .readdir
= proc_task_readdir
,