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
;
239 if (mutex_lock_killable(&task
->cred_guard_mutex
))
242 mm
= get_task_mm(task
);
243 if (mm
&& mm
!= current
->mm
&&
244 !ptrace_may_access(task
, PTRACE_MODE_READ
)) {
248 mutex_unlock(&task
->cred_guard_mutex
);
253 static int proc_pid_cmdline(struct task_struct
*task
, char * buffer
)
257 struct mm_struct
*mm
= get_task_mm(task
);
261 goto out_mm
; /* Shh! No looking before we're done */
263 len
= mm
->arg_end
- mm
->arg_start
;
268 res
= access_process_vm(task
, mm
->arg_start
, buffer
, len
, 0);
270 // If the nul at the end of args has been overwritten, then
271 // assume application is using setproctitle(3).
272 if (res
> 0 && buffer
[res
-1] != '\0' && len
< PAGE_SIZE
) {
273 len
= strnlen(buffer
, res
);
277 len
= mm
->env_end
- mm
->env_start
;
278 if (len
> PAGE_SIZE
- res
)
279 len
= PAGE_SIZE
- res
;
280 res
+= access_process_vm(task
, mm
->env_start
, buffer
+res
, len
, 0);
281 res
= strnlen(buffer
, res
);
290 static int proc_pid_auxv(struct task_struct
*task
, char *buffer
)
293 struct mm_struct
*mm
= get_task_mm(task
);
295 unsigned int nwords
= 0;
298 } while (mm
->saved_auxv
[nwords
- 2] != 0); /* AT_NULL */
299 res
= nwords
* sizeof(mm
->saved_auxv
[0]);
302 memcpy(buffer
, mm
->saved_auxv
, res
);
309 #ifdef CONFIG_KALLSYMS
311 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
312 * Returns the resolved symbol. If that fails, simply return the address.
314 static int proc_pid_wchan(struct task_struct
*task
, char *buffer
)
317 char symname
[KSYM_NAME_LEN
];
319 wchan
= get_wchan(task
);
321 if (lookup_symbol_name(wchan
, symname
) < 0)
322 if (!ptrace_may_access(task
, PTRACE_MODE_READ
))
325 return sprintf(buffer
, "%lu", wchan
);
327 return sprintf(buffer
, "%s", symname
);
329 #endif /* CONFIG_KALLSYMS */
331 #ifdef CONFIG_STACKTRACE
333 #define MAX_STACK_TRACE_DEPTH 64
335 static int proc_pid_stack(struct seq_file
*m
, struct pid_namespace
*ns
,
336 struct pid
*pid
, struct task_struct
*task
)
338 struct stack_trace trace
;
339 unsigned long *entries
;
342 entries
= kmalloc(MAX_STACK_TRACE_DEPTH
* sizeof(*entries
), GFP_KERNEL
);
346 trace
.nr_entries
= 0;
347 trace
.max_entries
= MAX_STACK_TRACE_DEPTH
;
348 trace
.entries
= entries
;
350 save_stack_trace_tsk(task
, &trace
);
352 for (i
= 0; i
< trace
.nr_entries
; i
++) {
353 seq_printf(m
, "[<%p>] %pS\n",
354 (void *)entries
[i
], (void *)entries
[i
]);
362 #ifdef CONFIG_SCHEDSTATS
364 * Provides /proc/PID/schedstat
366 static int proc_pid_schedstat(struct task_struct
*task
, char *buffer
)
368 return sprintf(buffer
, "%llu %llu %lu\n",
369 (unsigned long long)task
->se
.sum_exec_runtime
,
370 (unsigned long long)task
->sched_info
.run_delay
,
371 task
->sched_info
.pcount
);
375 #ifdef CONFIG_LATENCYTOP
376 static int lstats_show_proc(struct seq_file
*m
, void *v
)
379 struct inode
*inode
= m
->private;
380 struct task_struct
*task
= get_proc_task(inode
);
384 seq_puts(m
, "Latency Top version : v0.1\n");
385 for (i
= 0; i
< 32; i
++) {
386 if (task
->latency_record
[i
].backtrace
[0]) {
388 seq_printf(m
, "%i %li %li ",
389 task
->latency_record
[i
].count
,
390 task
->latency_record
[i
].time
,
391 task
->latency_record
[i
].max
);
392 for (q
= 0; q
< LT_BACKTRACEDEPTH
; q
++) {
393 char sym
[KSYM_SYMBOL_LEN
];
395 if (!task
->latency_record
[i
].backtrace
[q
])
397 if (task
->latency_record
[i
].backtrace
[q
] == ULONG_MAX
)
399 sprint_symbol(sym
, task
->latency_record
[i
].backtrace
[q
]);
400 c
= strchr(sym
, '+');
403 seq_printf(m
, "%s ", sym
);
409 put_task_struct(task
);
413 static int lstats_open(struct inode
*inode
, struct file
*file
)
415 return single_open(file
, lstats_show_proc
, inode
);
418 static ssize_t
lstats_write(struct file
*file
, const char __user
*buf
,
419 size_t count
, loff_t
*offs
)
421 struct task_struct
*task
= get_proc_task(file
->f_dentry
->d_inode
);
425 clear_all_latency_tracing(task
);
426 put_task_struct(task
);
431 static const struct file_operations proc_lstats_operations
= {
434 .write
= lstats_write
,
436 .release
= single_release
,
441 /* The badness from the OOM killer */
442 unsigned long badness(struct task_struct
*p
, unsigned long uptime
);
443 static int proc_oom_score(struct task_struct
*task
, char *buffer
)
445 unsigned long points
;
446 struct timespec uptime
;
448 do_posix_clock_monotonic_gettime(&uptime
);
449 read_lock(&tasklist_lock
);
450 points
= badness(task
->group_leader
, uptime
.tv_sec
);
451 read_unlock(&tasklist_lock
);
452 return sprintf(buffer
, "%lu\n", points
);
460 static const struct limit_names lnames
[RLIM_NLIMITS
] = {
461 [RLIMIT_CPU
] = {"Max cpu time", "seconds"},
462 [RLIMIT_FSIZE
] = {"Max file size", "bytes"},
463 [RLIMIT_DATA
] = {"Max data size", "bytes"},
464 [RLIMIT_STACK
] = {"Max stack size", "bytes"},
465 [RLIMIT_CORE
] = {"Max core file size", "bytes"},
466 [RLIMIT_RSS
] = {"Max resident set", "bytes"},
467 [RLIMIT_NPROC
] = {"Max processes", "processes"},
468 [RLIMIT_NOFILE
] = {"Max open files", "files"},
469 [RLIMIT_MEMLOCK
] = {"Max locked memory", "bytes"},
470 [RLIMIT_AS
] = {"Max address space", "bytes"},
471 [RLIMIT_LOCKS
] = {"Max file locks", "locks"},
472 [RLIMIT_SIGPENDING
] = {"Max pending signals", "signals"},
473 [RLIMIT_MSGQUEUE
] = {"Max msgqueue size", "bytes"},
474 [RLIMIT_NICE
] = {"Max nice priority", NULL
},
475 [RLIMIT_RTPRIO
] = {"Max realtime priority", NULL
},
476 [RLIMIT_RTTIME
] = {"Max realtime timeout", "us"},
479 /* Display limits for a process */
480 static int proc_pid_limits(struct task_struct
*task
, char *buffer
)
485 char *bufptr
= buffer
;
487 struct rlimit rlim
[RLIM_NLIMITS
];
489 if (!lock_task_sighand(task
, &flags
))
491 memcpy(rlim
, task
->signal
->rlim
, sizeof(struct rlimit
) * RLIM_NLIMITS
);
492 unlock_task_sighand(task
, &flags
);
495 * print the file header
497 count
+= sprintf(&bufptr
[count
], "%-25s %-20s %-20s %-10s\n",
498 "Limit", "Soft Limit", "Hard Limit", "Units");
500 for (i
= 0; i
< RLIM_NLIMITS
; i
++) {
501 if (rlim
[i
].rlim_cur
== RLIM_INFINITY
)
502 count
+= sprintf(&bufptr
[count
], "%-25s %-20s ",
503 lnames
[i
].name
, "unlimited");
505 count
+= sprintf(&bufptr
[count
], "%-25s %-20lu ",
506 lnames
[i
].name
, rlim
[i
].rlim_cur
);
508 if (rlim
[i
].rlim_max
== RLIM_INFINITY
)
509 count
+= sprintf(&bufptr
[count
], "%-20s ", "unlimited");
511 count
+= sprintf(&bufptr
[count
], "%-20lu ",
515 count
+= sprintf(&bufptr
[count
], "%-10s\n",
518 count
+= sprintf(&bufptr
[count
], "\n");
524 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
525 static int proc_pid_syscall(struct task_struct
*task
, char *buffer
)
528 unsigned long args
[6], sp
, pc
;
530 if (task_current_syscall(task
, &nr
, args
, 6, &sp
, &pc
))
531 return sprintf(buffer
, "running\n");
534 return sprintf(buffer
, "%ld 0x%lx 0x%lx\n", nr
, sp
, pc
);
536 return sprintf(buffer
,
537 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
539 args
[0], args
[1], args
[2], args
[3], args
[4], args
[5],
542 #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
544 /************************************************************************/
545 /* Here the fs part begins */
546 /************************************************************************/
548 /* permission checks */
549 static int proc_fd_access_allowed(struct inode
*inode
)
551 struct task_struct
*task
;
553 /* Allow access to a task's file descriptors if it is us or we
554 * may use ptrace attach to the process and find out that
557 task
= get_proc_task(inode
);
559 allowed
= ptrace_may_access(task
, PTRACE_MODE_READ
);
560 put_task_struct(task
);
565 static int proc_setattr(struct dentry
*dentry
, struct iattr
*attr
)
568 struct inode
*inode
= dentry
->d_inode
;
570 if (attr
->ia_valid
& ATTR_MODE
)
573 error
= inode_change_ok(inode
, attr
);
575 error
= inode_setattr(inode
, attr
);
579 static const struct inode_operations proc_def_inode_operations
= {
580 .setattr
= proc_setattr
,
583 static int mounts_open_common(struct inode
*inode
, struct file
*file
,
584 const struct seq_operations
*op
)
586 struct task_struct
*task
= get_proc_task(inode
);
588 struct mnt_namespace
*ns
= NULL
;
590 struct proc_mounts
*p
;
595 nsp
= task_nsproxy(task
);
602 if (ns
&& get_fs_path(task
, &root
, 1) == 0)
604 put_task_struct(task
);
613 p
= kmalloc(sizeof(struct proc_mounts
), GFP_KERNEL
);
617 file
->private_data
= &p
->m
;
618 ret
= seq_open(file
, op
);
625 p
->event
= ns
->event
;
639 static int mounts_release(struct inode
*inode
, struct file
*file
)
641 struct proc_mounts
*p
= file
->private_data
;
644 return seq_release(inode
, file
);
647 static unsigned mounts_poll(struct file
*file
, poll_table
*wait
)
649 struct proc_mounts
*p
= file
->private_data
;
650 struct mnt_namespace
*ns
= p
->ns
;
651 unsigned res
= POLLIN
| POLLRDNORM
;
653 poll_wait(file
, &ns
->poll
, wait
);
655 spin_lock(&vfsmount_lock
);
656 if (p
->event
!= ns
->event
) {
657 p
->event
= ns
->event
;
658 res
|= POLLERR
| POLLPRI
;
660 spin_unlock(&vfsmount_lock
);
665 static int mounts_open(struct inode
*inode
, struct file
*file
)
667 return mounts_open_common(inode
, file
, &mounts_op
);
670 static const struct file_operations proc_mounts_operations
= {
674 .release
= mounts_release
,
678 static int mountinfo_open(struct inode
*inode
, struct file
*file
)
680 return mounts_open_common(inode
, file
, &mountinfo_op
);
683 static const struct file_operations proc_mountinfo_operations
= {
684 .open
= mountinfo_open
,
687 .release
= mounts_release
,
691 static int mountstats_open(struct inode
*inode
, struct file
*file
)
693 return mounts_open_common(inode
, file
, &mountstats_op
);
696 static const struct file_operations proc_mountstats_operations
= {
697 .open
= mountstats_open
,
700 .release
= mounts_release
,
703 #define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
705 static ssize_t
proc_info_read(struct file
* file
, char __user
* buf
,
706 size_t count
, loff_t
*ppos
)
708 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
711 struct task_struct
*task
= get_proc_task(inode
);
717 if (count
> PROC_BLOCK_SIZE
)
718 count
= PROC_BLOCK_SIZE
;
721 if (!(page
= __get_free_page(GFP_TEMPORARY
)))
724 length
= PROC_I(inode
)->op
.proc_read(task
, (char*)page
);
727 length
= simple_read_from_buffer(buf
, count
, ppos
, (char *)page
, length
);
730 put_task_struct(task
);
735 static const struct file_operations proc_info_file_operations
= {
736 .read
= proc_info_read
,
739 static int proc_single_show(struct seq_file
*m
, void *v
)
741 struct inode
*inode
= m
->private;
742 struct pid_namespace
*ns
;
744 struct task_struct
*task
;
747 ns
= inode
->i_sb
->s_fs_info
;
748 pid
= proc_pid(inode
);
749 task
= get_pid_task(pid
, PIDTYPE_PID
);
753 ret
= PROC_I(inode
)->op
.proc_show(m
, ns
, pid
, task
);
755 put_task_struct(task
);
759 static int proc_single_open(struct inode
*inode
, struct file
*filp
)
762 ret
= single_open(filp
, proc_single_show
, NULL
);
764 struct seq_file
*m
= filp
->private_data
;
771 static const struct file_operations proc_single_file_operations
= {
772 .open
= proc_single_open
,
775 .release
= single_release
,
778 static int mem_open(struct inode
* inode
, struct file
* file
)
780 file
->private_data
= (void*)((long)current
->self_exec_id
);
784 static ssize_t
mem_read(struct file
* file
, char __user
* buf
,
785 size_t count
, loff_t
*ppos
)
787 struct task_struct
*task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
789 unsigned long src
= *ppos
;
791 struct mm_struct
*mm
;
796 if (check_mem_permission(task
))
800 page
= (char *)__get_free_page(GFP_TEMPORARY
);
806 mm
= get_task_mm(task
);
812 if (file
->private_data
!= (void*)((long)current
->self_exec_id
))
818 int this_len
, retval
;
820 this_len
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
821 retval
= access_process_vm(task
, src
, page
, this_len
, 0);
822 if (!retval
|| check_mem_permission(task
)) {
828 if (copy_to_user(buf
, page
, retval
)) {
843 free_page((unsigned long) page
);
845 put_task_struct(task
);
850 #define mem_write NULL
853 /* This is a security hazard */
854 static ssize_t
mem_write(struct file
* file
, const char __user
*buf
,
855 size_t count
, loff_t
*ppos
)
859 struct task_struct
*task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
860 unsigned long dst
= *ppos
;
866 if (check_mem_permission(task
))
870 page
= (char *)__get_free_page(GFP_TEMPORARY
);
876 int this_len
, retval
;
878 this_len
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
879 if (copy_from_user(page
, buf
, this_len
)) {
883 retval
= access_process_vm(task
, dst
, page
, this_len
, 1);
895 free_page((unsigned long) page
);
897 put_task_struct(task
);
903 loff_t
mem_lseek(struct file
*file
, loff_t offset
, int orig
)
907 file
->f_pos
= offset
;
910 file
->f_pos
+= offset
;
915 force_successful_syscall_return();
919 static const struct file_operations proc_mem_operations
= {
926 static ssize_t
environ_read(struct file
*file
, char __user
*buf
,
927 size_t count
, loff_t
*ppos
)
929 struct task_struct
*task
= get_proc_task(file
->f_dentry
->d_inode
);
931 unsigned long src
= *ppos
;
933 struct mm_struct
*mm
;
938 if (!ptrace_may_access(task
, PTRACE_MODE_READ
))
942 page
= (char *)__get_free_page(GFP_TEMPORARY
);
948 mm
= get_task_mm(task
);
953 int this_len
, retval
, max_len
;
955 this_len
= mm
->env_end
- (mm
->env_start
+ src
);
960 max_len
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
961 this_len
= (this_len
> max_len
) ? max_len
: this_len
;
963 retval
= access_process_vm(task
, (mm
->env_start
+ src
),
971 if (copy_to_user(buf
, page
, retval
)) {
985 free_page((unsigned long) page
);
987 put_task_struct(task
);
992 static const struct file_operations proc_environ_operations
= {
993 .read
= environ_read
,
996 static ssize_t
oom_adjust_read(struct file
*file
, char __user
*buf
,
997 size_t count
, loff_t
*ppos
)
999 struct task_struct
*task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
1000 char buffer
[PROC_NUMBUF
];
1002 int oom_adjust
= OOM_DISABLE
;
1003 unsigned long flags
;
1008 if (lock_task_sighand(task
, &flags
)) {
1009 oom_adjust
= task
->signal
->oom_adj
;
1010 unlock_task_sighand(task
, &flags
);
1013 put_task_struct(task
);
1015 len
= snprintf(buffer
, sizeof(buffer
), "%i\n", oom_adjust
);
1017 return simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
1020 static ssize_t
oom_adjust_write(struct file
*file
, const char __user
*buf
,
1021 size_t count
, loff_t
*ppos
)
1023 struct task_struct
*task
;
1024 char buffer
[PROC_NUMBUF
];
1026 unsigned long flags
;
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
))
1035 err
= strict_strtol(strstrip(buffer
), 0, &oom_adjust
);
1038 if ((oom_adjust
< OOM_ADJUST_MIN
|| oom_adjust
> OOM_ADJUST_MAX
) &&
1039 oom_adjust
!= OOM_DISABLE
)
1042 task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
1045 if (!lock_task_sighand(task
, &flags
)) {
1046 put_task_struct(task
);
1050 if (oom_adjust
< task
->signal
->oom_adj
&& !capable(CAP_SYS_RESOURCE
)) {
1051 unlock_task_sighand(task
, &flags
);
1052 put_task_struct(task
);
1056 task
->signal
->oom_adj
= oom_adjust
;
1058 unlock_task_sighand(task
, &flags
);
1059 put_task_struct(task
);
1064 static const struct file_operations proc_oom_adjust_operations
= {
1065 .read
= oom_adjust_read
,
1066 .write
= oom_adjust_write
,
1069 #ifdef CONFIG_AUDITSYSCALL
1070 #define TMPBUFLEN 21
1071 static ssize_t
proc_loginuid_read(struct file
* file
, char __user
* buf
,
1072 size_t count
, loff_t
*ppos
)
1074 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
1075 struct task_struct
*task
= get_proc_task(inode
);
1077 char tmpbuf
[TMPBUFLEN
];
1081 length
= scnprintf(tmpbuf
, TMPBUFLEN
, "%u",
1082 audit_get_loginuid(task
));
1083 put_task_struct(task
);
1084 return simple_read_from_buffer(buf
, count
, ppos
, tmpbuf
, length
);
1087 static ssize_t
proc_loginuid_write(struct file
* file
, const char __user
* buf
,
1088 size_t count
, loff_t
*ppos
)
1090 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
1095 if (!capable(CAP_AUDIT_CONTROL
))
1098 if (current
!= pid_task(proc_pid(inode
), PIDTYPE_PID
))
1101 if (count
>= PAGE_SIZE
)
1102 count
= PAGE_SIZE
- 1;
1105 /* No partial writes. */
1108 page
= (char*)__get_free_page(GFP_TEMPORARY
);
1112 if (copy_from_user(page
, buf
, count
))
1116 loginuid
= simple_strtoul(page
, &tmp
, 10);
1122 length
= audit_set_loginuid(current
, loginuid
);
1123 if (likely(length
== 0))
1127 free_page((unsigned long) page
);
1131 static const struct file_operations proc_loginuid_operations
= {
1132 .read
= proc_loginuid_read
,
1133 .write
= proc_loginuid_write
,
1136 static ssize_t
proc_sessionid_read(struct file
* file
, char __user
* buf
,
1137 size_t count
, loff_t
*ppos
)
1139 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
1140 struct task_struct
*task
= get_proc_task(inode
);
1142 char tmpbuf
[TMPBUFLEN
];
1146 length
= scnprintf(tmpbuf
, TMPBUFLEN
, "%u",
1147 audit_get_sessionid(task
));
1148 put_task_struct(task
);
1149 return simple_read_from_buffer(buf
, count
, ppos
, tmpbuf
, length
);
1152 static const struct file_operations proc_sessionid_operations
= {
1153 .read
= proc_sessionid_read
,
1157 #ifdef CONFIG_FAULT_INJECTION
1158 static ssize_t
proc_fault_inject_read(struct file
* file
, char __user
* buf
,
1159 size_t count
, loff_t
*ppos
)
1161 struct task_struct
*task
= get_proc_task(file
->f_dentry
->d_inode
);
1162 char buffer
[PROC_NUMBUF
];
1168 make_it_fail
= task
->make_it_fail
;
1169 put_task_struct(task
);
1171 len
= snprintf(buffer
, sizeof(buffer
), "%i\n", make_it_fail
);
1173 return simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
1176 static ssize_t
proc_fault_inject_write(struct file
* file
,
1177 const char __user
* buf
, size_t count
, loff_t
*ppos
)
1179 struct task_struct
*task
;
1180 char buffer
[PROC_NUMBUF
], *end
;
1183 if (!capable(CAP_SYS_RESOURCE
))
1185 memset(buffer
, 0, sizeof(buffer
));
1186 if (count
> sizeof(buffer
) - 1)
1187 count
= sizeof(buffer
) - 1;
1188 if (copy_from_user(buffer
, buf
, count
))
1190 make_it_fail
= simple_strtol(strstrip(buffer
), &end
, 0);
1193 task
= get_proc_task(file
->f_dentry
->d_inode
);
1196 task
->make_it_fail
= make_it_fail
;
1197 put_task_struct(task
);
1202 static const struct file_operations proc_fault_inject_operations
= {
1203 .read
= proc_fault_inject_read
,
1204 .write
= proc_fault_inject_write
,
1209 #ifdef CONFIG_SCHED_DEBUG
1211 * Print out various scheduling related per-task fields:
1213 static int sched_show(struct seq_file
*m
, void *v
)
1215 struct inode
*inode
= m
->private;
1216 struct task_struct
*p
;
1218 p
= get_proc_task(inode
);
1221 proc_sched_show_task(p
, m
);
1229 sched_write(struct file
*file
, const char __user
*buf
,
1230 size_t count
, loff_t
*offset
)
1232 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1233 struct task_struct
*p
;
1235 p
= get_proc_task(inode
);
1238 proc_sched_set_task(p
);
1245 static int sched_open(struct inode
*inode
, struct file
*filp
)
1249 ret
= single_open(filp
, sched_show
, NULL
);
1251 struct seq_file
*m
= filp
->private_data
;
1258 static const struct file_operations proc_pid_sched_operations
= {
1261 .write
= sched_write
,
1262 .llseek
= seq_lseek
,
1263 .release
= single_release
,
1269 * We added or removed a vma mapping the executable. The vmas are only mapped
1270 * during exec and are not mapped with the mmap system call.
1271 * Callers must hold down_write() on the mm's mmap_sem for these
1273 void added_exe_file_vma(struct mm_struct
*mm
)
1275 mm
->num_exe_file_vmas
++;
1278 void removed_exe_file_vma(struct mm_struct
*mm
)
1280 mm
->num_exe_file_vmas
--;
1281 if ((mm
->num_exe_file_vmas
== 0) && mm
->exe_file
){
1283 mm
->exe_file
= NULL
;
1288 void set_mm_exe_file(struct mm_struct
*mm
, struct file
*new_exe_file
)
1291 get_file(new_exe_file
);
1294 mm
->exe_file
= new_exe_file
;
1295 mm
->num_exe_file_vmas
= 0;
1298 struct file
*get_mm_exe_file(struct mm_struct
*mm
)
1300 struct file
*exe_file
;
1302 /* We need mmap_sem to protect against races with removal of
1303 * VM_EXECUTABLE vmas */
1304 down_read(&mm
->mmap_sem
);
1305 exe_file
= mm
->exe_file
;
1308 up_read(&mm
->mmap_sem
);
1312 void dup_mm_exe_file(struct mm_struct
*oldmm
, struct mm_struct
*newmm
)
1314 /* It's safe to write the exe_file pointer without exe_file_lock because
1315 * this is called during fork when the task is not yet in /proc */
1316 newmm
->exe_file
= get_mm_exe_file(oldmm
);
1319 static int proc_exe_link(struct inode
*inode
, struct path
*exe_path
)
1321 struct task_struct
*task
;
1322 struct mm_struct
*mm
;
1323 struct file
*exe_file
;
1325 task
= get_proc_task(inode
);
1328 mm
= get_task_mm(task
);
1329 put_task_struct(task
);
1332 exe_file
= get_mm_exe_file(mm
);
1335 *exe_path
= exe_file
->f_path
;
1336 path_get(&exe_file
->f_path
);
1343 static void *proc_pid_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1345 struct inode
*inode
= dentry
->d_inode
;
1346 int error
= -EACCES
;
1348 /* We don't need a base pointer in the /proc filesystem */
1349 path_put(&nd
->path
);
1351 /* Are we allowed to snoop on the tasks file descriptors? */
1352 if (!proc_fd_access_allowed(inode
))
1355 error
= PROC_I(inode
)->op
.proc_get_link(inode
, &nd
->path
);
1356 nd
->last_type
= LAST_BIND
;
1358 return ERR_PTR(error
);
1361 static int do_proc_readlink(struct path
*path
, char __user
*buffer
, int buflen
)
1363 char *tmp
= (char*)__get_free_page(GFP_TEMPORARY
);
1370 pathname
= d_path(path
, tmp
, PAGE_SIZE
);
1371 len
= PTR_ERR(pathname
);
1372 if (IS_ERR(pathname
))
1374 len
= tmp
+ PAGE_SIZE
- 1 - pathname
;
1378 if (copy_to_user(buffer
, pathname
, len
))
1381 free_page((unsigned long)tmp
);
1385 static int proc_pid_readlink(struct dentry
* dentry
, char __user
* buffer
, int buflen
)
1387 int error
= -EACCES
;
1388 struct inode
*inode
= dentry
->d_inode
;
1391 /* Are we allowed to snoop on the tasks file descriptors? */
1392 if (!proc_fd_access_allowed(inode
))
1395 error
= PROC_I(inode
)->op
.proc_get_link(inode
, &path
);
1399 error
= do_proc_readlink(&path
, buffer
, buflen
);
1405 static const struct inode_operations proc_pid_link_inode_operations
= {
1406 .readlink
= proc_pid_readlink
,
1407 .follow_link
= proc_pid_follow_link
,
1408 .setattr
= proc_setattr
,
1412 /* building an inode */
1414 static int task_dumpable(struct task_struct
*task
)
1417 struct mm_struct
*mm
;
1422 dumpable
= get_dumpable(mm
);
1430 static struct inode
*proc_pid_make_inode(struct super_block
* sb
, struct task_struct
*task
)
1432 struct inode
* inode
;
1433 struct proc_inode
*ei
;
1434 const struct cred
*cred
;
1436 /* We need a new inode */
1438 inode
= new_inode(sb
);
1444 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
1445 inode
->i_op
= &proc_def_inode_operations
;
1448 * grab the reference to task.
1450 ei
->pid
= get_task_pid(task
, PIDTYPE_PID
);
1454 if (task_dumpable(task
)) {
1456 cred
= __task_cred(task
);
1457 inode
->i_uid
= cred
->euid
;
1458 inode
->i_gid
= cred
->egid
;
1461 security_task_to_inode(task
, inode
);
1471 static int pid_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
, struct kstat
*stat
)
1473 struct inode
*inode
= dentry
->d_inode
;
1474 struct task_struct
*task
;
1475 const struct cred
*cred
;
1477 generic_fillattr(inode
, stat
);
1482 task
= pid_task(proc_pid(inode
), PIDTYPE_PID
);
1484 if ((inode
->i_mode
== (S_IFDIR
|S_IRUGO
|S_IXUGO
)) ||
1485 task_dumpable(task
)) {
1486 cred
= __task_cred(task
);
1487 stat
->uid
= cred
->euid
;
1488 stat
->gid
= cred
->egid
;
1498 * Exceptional case: normally we are not allowed to unhash a busy
1499 * directory. In this case, however, we can do it - no aliasing problems
1500 * due to the way we treat inodes.
1502 * Rewrite the inode's ownerships here because the owning task may have
1503 * performed a setuid(), etc.
1505 * Before the /proc/pid/status file was created the only way to read
1506 * the effective uid of a /process was to stat /proc/pid. Reading
1507 * /proc/pid/status is slow enough that procps and other packages
1508 * kept stating /proc/pid. To keep the rules in /proc simple I have
1509 * made this apply to all per process world readable and executable
1512 static int pid_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
1514 struct inode
*inode
= dentry
->d_inode
;
1515 struct task_struct
*task
= get_proc_task(inode
);
1516 const struct cred
*cred
;
1519 if ((inode
->i_mode
== (S_IFDIR
|S_IRUGO
|S_IXUGO
)) ||
1520 task_dumpable(task
)) {
1522 cred
= __task_cred(task
);
1523 inode
->i_uid
= cred
->euid
;
1524 inode
->i_gid
= cred
->egid
;
1530 inode
->i_mode
&= ~(S_ISUID
| S_ISGID
);
1531 security_task_to_inode(task
, inode
);
1532 put_task_struct(task
);
1539 static int pid_delete_dentry(struct dentry
* dentry
)
1541 /* Is the task we represent dead?
1542 * If so, then don't put the dentry on the lru list,
1543 * kill it immediately.
1545 return !proc_pid(dentry
->d_inode
)->tasks
[PIDTYPE_PID
].first
;
1548 static const struct dentry_operations pid_dentry_operations
=
1550 .d_revalidate
= pid_revalidate
,
1551 .d_delete
= pid_delete_dentry
,
1556 typedef struct dentry
*instantiate_t(struct inode
*, struct dentry
*,
1557 struct task_struct
*, const void *);
1560 * Fill a directory entry.
1562 * If possible create the dcache entry and derive our inode number and
1563 * file type from dcache entry.
1565 * Since all of the proc inode numbers are dynamically generated, the inode
1566 * numbers do not exist until the inode is cache. This means creating the
1567 * the dcache entry in readdir is necessary to keep the inode numbers
1568 * reported by readdir in sync with the inode numbers reported
1571 static int proc_fill_cache(struct file
*filp
, void *dirent
, filldir_t filldir
,
1572 char *name
, int len
,
1573 instantiate_t instantiate
, struct task_struct
*task
, const void *ptr
)
1575 struct dentry
*child
, *dir
= filp
->f_path
.dentry
;
1576 struct inode
*inode
;
1579 unsigned type
= DT_UNKNOWN
;
1583 qname
.hash
= full_name_hash(name
, len
);
1585 child
= d_lookup(dir
, &qname
);
1588 new = d_alloc(dir
, &qname
);
1590 child
= instantiate(dir
->d_inode
, new, task
, ptr
);
1597 if (!child
|| IS_ERR(child
) || !child
->d_inode
)
1598 goto end_instantiate
;
1599 inode
= child
->d_inode
;
1602 type
= inode
->i_mode
>> 12;
1607 ino
= find_inode_number(dir
, &qname
);
1610 return filldir(dirent
, name
, len
, filp
->f_pos
, ino
, type
);
1613 static unsigned name_to_int(struct dentry
*dentry
)
1615 const char *name
= dentry
->d_name
.name
;
1616 int len
= dentry
->d_name
.len
;
1619 if (len
> 1 && *name
== '0')
1622 unsigned c
= *name
++ - '0';
1625 if (n
>= (~0U-9)/10)
1635 #define PROC_FDINFO_MAX 64
1637 static int proc_fd_info(struct inode
*inode
, struct path
*path
, char *info
)
1639 struct task_struct
*task
= get_proc_task(inode
);
1640 struct files_struct
*files
= NULL
;
1642 int fd
= proc_fd(inode
);
1645 files
= get_files_struct(task
);
1646 put_task_struct(task
);
1650 * We are not taking a ref to the file structure, so we must
1653 spin_lock(&files
->file_lock
);
1654 file
= fcheck_files(files
, fd
);
1657 *path
= file
->f_path
;
1658 path_get(&file
->f_path
);
1661 snprintf(info
, PROC_FDINFO_MAX
,
1664 (long long) file
->f_pos
,
1666 spin_unlock(&files
->file_lock
);
1667 put_files_struct(files
);
1670 spin_unlock(&files
->file_lock
);
1671 put_files_struct(files
);
1676 static int proc_fd_link(struct inode
*inode
, struct path
*path
)
1678 return proc_fd_info(inode
, path
, NULL
);
1681 static int tid_fd_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
1683 struct inode
*inode
= dentry
->d_inode
;
1684 struct task_struct
*task
= get_proc_task(inode
);
1685 int fd
= proc_fd(inode
);
1686 struct files_struct
*files
;
1687 const struct cred
*cred
;
1690 files
= get_files_struct(task
);
1693 if (fcheck_files(files
, fd
)) {
1695 put_files_struct(files
);
1696 if (task_dumpable(task
)) {
1698 cred
= __task_cred(task
);
1699 inode
->i_uid
= cred
->euid
;
1700 inode
->i_gid
= cred
->egid
;
1706 inode
->i_mode
&= ~(S_ISUID
| S_ISGID
);
1707 security_task_to_inode(task
, inode
);
1708 put_task_struct(task
);
1712 put_files_struct(files
);
1714 put_task_struct(task
);
1720 static const struct dentry_operations tid_fd_dentry_operations
=
1722 .d_revalidate
= tid_fd_revalidate
,
1723 .d_delete
= pid_delete_dentry
,
1726 static struct dentry
*proc_fd_instantiate(struct inode
*dir
,
1727 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
1729 unsigned fd
= *(const unsigned *)ptr
;
1731 struct files_struct
*files
;
1732 struct inode
*inode
;
1733 struct proc_inode
*ei
;
1734 struct dentry
*error
= ERR_PTR(-ENOENT
);
1736 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
1741 files
= get_files_struct(task
);
1744 inode
->i_mode
= S_IFLNK
;
1747 * We are not taking a ref to the file structure, so we must
1750 spin_lock(&files
->file_lock
);
1751 file
= fcheck_files(files
, fd
);
1754 if (file
->f_mode
& FMODE_READ
)
1755 inode
->i_mode
|= S_IRUSR
| S_IXUSR
;
1756 if (file
->f_mode
& FMODE_WRITE
)
1757 inode
->i_mode
|= S_IWUSR
| S_IXUSR
;
1758 spin_unlock(&files
->file_lock
);
1759 put_files_struct(files
);
1761 inode
->i_op
= &proc_pid_link_inode_operations
;
1763 ei
->op
.proc_get_link
= proc_fd_link
;
1764 dentry
->d_op
= &tid_fd_dentry_operations
;
1765 d_add(dentry
, inode
);
1766 /* Close the race of the process dying before we return the dentry */
1767 if (tid_fd_revalidate(dentry
, NULL
))
1773 spin_unlock(&files
->file_lock
);
1774 put_files_struct(files
);
1780 static struct dentry
*proc_lookupfd_common(struct inode
*dir
,
1781 struct dentry
*dentry
,
1782 instantiate_t instantiate
)
1784 struct task_struct
*task
= get_proc_task(dir
);
1785 unsigned fd
= name_to_int(dentry
);
1786 struct dentry
*result
= ERR_PTR(-ENOENT
);
1793 result
= instantiate(dir
, dentry
, task
, &fd
);
1795 put_task_struct(task
);
1800 static int proc_readfd_common(struct file
* filp
, void * dirent
,
1801 filldir_t filldir
, instantiate_t instantiate
)
1803 struct dentry
*dentry
= filp
->f_path
.dentry
;
1804 struct inode
*inode
= dentry
->d_inode
;
1805 struct task_struct
*p
= get_proc_task(inode
);
1806 unsigned int fd
, ino
;
1808 struct files_struct
* files
;
1818 if (filldir(dirent
, ".", 1, 0, inode
->i_ino
, DT_DIR
) < 0)
1822 ino
= parent_ino(dentry
);
1823 if (filldir(dirent
, "..", 2, 1, ino
, DT_DIR
) < 0)
1827 files
= get_files_struct(p
);
1831 for (fd
= filp
->f_pos
-2;
1832 fd
< files_fdtable(files
)->max_fds
;
1833 fd
++, filp
->f_pos
++) {
1834 char name
[PROC_NUMBUF
];
1837 if (!fcheck_files(files
, fd
))
1841 len
= snprintf(name
, sizeof(name
), "%d", fd
);
1842 if (proc_fill_cache(filp
, dirent
, filldir
,
1843 name
, len
, instantiate
,
1851 put_files_struct(files
);
1859 static struct dentry
*proc_lookupfd(struct inode
*dir
, struct dentry
*dentry
,
1860 struct nameidata
*nd
)
1862 return proc_lookupfd_common(dir
, dentry
, proc_fd_instantiate
);
1865 static int proc_readfd(struct file
*filp
, void *dirent
, filldir_t filldir
)
1867 return proc_readfd_common(filp
, dirent
, filldir
, proc_fd_instantiate
);
1870 static ssize_t
proc_fdinfo_read(struct file
*file
, char __user
*buf
,
1871 size_t len
, loff_t
*ppos
)
1873 char tmp
[PROC_FDINFO_MAX
];
1874 int err
= proc_fd_info(file
->f_path
.dentry
->d_inode
, NULL
, tmp
);
1876 err
= simple_read_from_buffer(buf
, len
, ppos
, tmp
, strlen(tmp
));
1880 static const struct file_operations proc_fdinfo_file_operations
= {
1881 .open
= nonseekable_open
,
1882 .read
= proc_fdinfo_read
,
1885 static const struct file_operations proc_fd_operations
= {
1886 .read
= generic_read_dir
,
1887 .readdir
= proc_readfd
,
1891 * /proc/pid/fd needs a special permission handler so that a process can still
1892 * access /proc/self/fd after it has executed a setuid().
1894 static int proc_fd_permission(struct inode
*inode
, int mask
)
1898 rv
= generic_permission(inode
, mask
, NULL
);
1901 if (task_pid(current
) == proc_pid(inode
))
1907 * proc directories can do almost nothing..
1909 static const struct inode_operations proc_fd_inode_operations
= {
1910 .lookup
= proc_lookupfd
,
1911 .permission
= proc_fd_permission
,
1912 .setattr
= proc_setattr
,
1915 static struct dentry
*proc_fdinfo_instantiate(struct inode
*dir
,
1916 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
1918 unsigned fd
= *(unsigned *)ptr
;
1919 struct inode
*inode
;
1920 struct proc_inode
*ei
;
1921 struct dentry
*error
= ERR_PTR(-ENOENT
);
1923 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
1928 inode
->i_mode
= S_IFREG
| S_IRUSR
;
1929 inode
->i_fop
= &proc_fdinfo_file_operations
;
1930 dentry
->d_op
= &tid_fd_dentry_operations
;
1931 d_add(dentry
, inode
);
1932 /* Close the race of the process dying before we return the dentry */
1933 if (tid_fd_revalidate(dentry
, NULL
))
1940 static struct dentry
*proc_lookupfdinfo(struct inode
*dir
,
1941 struct dentry
*dentry
,
1942 struct nameidata
*nd
)
1944 return proc_lookupfd_common(dir
, dentry
, proc_fdinfo_instantiate
);
1947 static int proc_readfdinfo(struct file
*filp
, void *dirent
, filldir_t filldir
)
1949 return proc_readfd_common(filp
, dirent
, filldir
,
1950 proc_fdinfo_instantiate
);
1953 static const struct file_operations proc_fdinfo_operations
= {
1954 .read
= generic_read_dir
,
1955 .readdir
= proc_readfdinfo
,
1959 * proc directories can do almost nothing..
1961 static const struct inode_operations proc_fdinfo_inode_operations
= {
1962 .lookup
= proc_lookupfdinfo
,
1963 .setattr
= proc_setattr
,
1967 static struct dentry
*proc_pident_instantiate(struct inode
*dir
,
1968 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
1970 const struct pid_entry
*p
= ptr
;
1971 struct inode
*inode
;
1972 struct proc_inode
*ei
;
1973 struct dentry
*error
= ERR_PTR(-ENOENT
);
1975 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
1980 inode
->i_mode
= p
->mode
;
1981 if (S_ISDIR(inode
->i_mode
))
1982 inode
->i_nlink
= 2; /* Use getattr to fix if necessary */
1984 inode
->i_op
= p
->iop
;
1986 inode
->i_fop
= p
->fop
;
1988 dentry
->d_op
= &pid_dentry_operations
;
1989 d_add(dentry
, inode
);
1990 /* Close the race of the process dying before we return the dentry */
1991 if (pid_revalidate(dentry
, NULL
))
1997 static struct dentry
*proc_pident_lookup(struct inode
*dir
,
1998 struct dentry
*dentry
,
1999 const struct pid_entry
*ents
,
2002 struct dentry
*error
;
2003 struct task_struct
*task
= get_proc_task(dir
);
2004 const struct pid_entry
*p
, *last
;
2006 error
= ERR_PTR(-ENOENT
);
2012 * Yes, it does not scale. And it should not. Don't add
2013 * new entries into /proc/<tgid>/ without very good reasons.
2015 last
= &ents
[nents
- 1];
2016 for (p
= ents
; p
<= last
; p
++) {
2017 if (p
->len
!= dentry
->d_name
.len
)
2019 if (!memcmp(dentry
->d_name
.name
, p
->name
, p
->len
))
2025 error
= proc_pident_instantiate(dir
, dentry
, task
, p
);
2027 put_task_struct(task
);
2032 static int proc_pident_fill_cache(struct file
*filp
, void *dirent
,
2033 filldir_t filldir
, struct task_struct
*task
, const struct pid_entry
*p
)
2035 return proc_fill_cache(filp
, dirent
, filldir
, p
->name
, p
->len
,
2036 proc_pident_instantiate
, task
, p
);
2039 static int proc_pident_readdir(struct file
*filp
,
2040 void *dirent
, filldir_t filldir
,
2041 const struct pid_entry
*ents
, unsigned int nents
)
2044 struct dentry
*dentry
= filp
->f_path
.dentry
;
2045 struct inode
*inode
= dentry
->d_inode
;
2046 struct task_struct
*task
= get_proc_task(inode
);
2047 const struct pid_entry
*p
, *last
;
2060 if (filldir(dirent
, ".", 1, i
, ino
, DT_DIR
) < 0)
2066 ino
= parent_ino(dentry
);
2067 if (filldir(dirent
, "..", 2, i
, ino
, DT_DIR
) < 0)
2079 last
= &ents
[nents
- 1];
2081 if (proc_pident_fill_cache(filp
, dirent
, filldir
, task
, p
) < 0)
2090 put_task_struct(task
);
2095 #ifdef CONFIG_SECURITY
2096 static ssize_t
proc_pid_attr_read(struct file
* file
, char __user
* buf
,
2097 size_t count
, loff_t
*ppos
)
2099 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
2102 struct task_struct
*task
= get_proc_task(inode
);
2107 length
= security_getprocattr(task
,
2108 (char*)file
->f_path
.dentry
->d_name
.name
,
2110 put_task_struct(task
);
2112 length
= simple_read_from_buffer(buf
, count
, ppos
, p
, length
);
2117 static ssize_t
proc_pid_attr_write(struct file
* file
, const char __user
* buf
,
2118 size_t count
, loff_t
*ppos
)
2120 struct inode
* inode
= file
->f_path
.dentry
->d_inode
;
2123 struct task_struct
*task
= get_proc_task(inode
);
2128 if (count
> PAGE_SIZE
)
2131 /* No partial writes. */
2137 page
= (char*)__get_free_page(GFP_TEMPORARY
);
2142 if (copy_from_user(page
, buf
, count
))
2145 /* Guard against adverse ptrace interaction */
2146 length
= mutex_lock_interruptible(&task
->cred_guard_mutex
);
2150 length
= security_setprocattr(task
,
2151 (char*)file
->f_path
.dentry
->d_name
.name
,
2152 (void*)page
, count
);
2153 mutex_unlock(&task
->cred_guard_mutex
);
2155 free_page((unsigned long) page
);
2157 put_task_struct(task
);
2162 static const struct file_operations proc_pid_attr_operations
= {
2163 .read
= proc_pid_attr_read
,
2164 .write
= proc_pid_attr_write
,
2167 static const struct pid_entry attr_dir_stuff
[] = {
2168 REG("current", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2169 REG("prev", S_IRUGO
, proc_pid_attr_operations
),
2170 REG("exec", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2171 REG("fscreate", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2172 REG("keycreate", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2173 REG("sockcreate", S_IRUGO
|S_IWUGO
, proc_pid_attr_operations
),
2176 static int proc_attr_dir_readdir(struct file
* filp
,
2177 void * dirent
, filldir_t filldir
)
2179 return proc_pident_readdir(filp
,dirent
,filldir
,
2180 attr_dir_stuff
,ARRAY_SIZE(attr_dir_stuff
));
2183 static const struct file_operations proc_attr_dir_operations
= {
2184 .read
= generic_read_dir
,
2185 .readdir
= proc_attr_dir_readdir
,
2188 static struct dentry
*proc_attr_dir_lookup(struct inode
*dir
,
2189 struct dentry
*dentry
, struct nameidata
*nd
)
2191 return proc_pident_lookup(dir
, dentry
,
2192 attr_dir_stuff
, ARRAY_SIZE(attr_dir_stuff
));
2195 static const struct inode_operations proc_attr_dir_inode_operations
= {
2196 .lookup
= proc_attr_dir_lookup
,
2197 .getattr
= pid_getattr
,
2198 .setattr
= proc_setattr
,
2203 #if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
2204 static ssize_t
proc_coredump_filter_read(struct file
*file
, char __user
*buf
,
2205 size_t count
, loff_t
*ppos
)
2207 struct task_struct
*task
= get_proc_task(file
->f_dentry
->d_inode
);
2208 struct mm_struct
*mm
;
2209 char buffer
[PROC_NUMBUF
];
2217 mm
= get_task_mm(task
);
2219 len
= snprintf(buffer
, sizeof(buffer
), "%08lx\n",
2220 ((mm
->flags
& MMF_DUMP_FILTER_MASK
) >>
2221 MMF_DUMP_FILTER_SHIFT
));
2223 ret
= simple_read_from_buffer(buf
, count
, ppos
, buffer
, len
);
2226 put_task_struct(task
);
2231 static ssize_t
proc_coredump_filter_write(struct file
*file
,
2232 const char __user
*buf
,
2236 struct task_struct
*task
;
2237 struct mm_struct
*mm
;
2238 char buffer
[PROC_NUMBUF
], *end
;
2245 memset(buffer
, 0, sizeof(buffer
));
2246 if (count
> sizeof(buffer
) - 1)
2247 count
= sizeof(buffer
) - 1;
2248 if (copy_from_user(buffer
, buf
, count
))
2252 val
= (unsigned int)simple_strtoul(buffer
, &end
, 0);
2255 if (end
- buffer
== 0)
2259 task
= get_proc_task(file
->f_dentry
->d_inode
);
2264 mm
= get_task_mm(task
);
2268 for (i
= 0, mask
= 1; i
< MMF_DUMP_FILTER_BITS
; i
++, mask
<<= 1) {
2270 set_bit(i
+ MMF_DUMP_FILTER_SHIFT
, &mm
->flags
);
2272 clear_bit(i
+ MMF_DUMP_FILTER_SHIFT
, &mm
->flags
);
2277 put_task_struct(task
);
2282 static const struct file_operations proc_coredump_filter_operations
= {
2283 .read
= proc_coredump_filter_read
,
2284 .write
= proc_coredump_filter_write
,
2291 static int proc_self_readlink(struct dentry
*dentry
, char __user
*buffer
,
2294 struct pid_namespace
*ns
= dentry
->d_sb
->s_fs_info
;
2295 pid_t tgid
= task_tgid_nr_ns(current
, ns
);
2296 char tmp
[PROC_NUMBUF
];
2299 sprintf(tmp
, "%d", tgid
);
2300 return vfs_readlink(dentry
,buffer
,buflen
,tmp
);
2303 static void *proc_self_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
2305 struct pid_namespace
*ns
= dentry
->d_sb
->s_fs_info
;
2306 pid_t tgid
= task_tgid_nr_ns(current
, ns
);
2307 char tmp
[PROC_NUMBUF
];
2309 return ERR_PTR(-ENOENT
);
2310 sprintf(tmp
, "%d", task_tgid_nr_ns(current
, ns
));
2311 return ERR_PTR(vfs_follow_link(nd
,tmp
));
2314 static const struct inode_operations proc_self_inode_operations
= {
2315 .readlink
= proc_self_readlink
,
2316 .follow_link
= proc_self_follow_link
,
2322 * These are the directory entries in the root directory of /proc
2323 * that properly belong to the /proc filesystem, as they describe
2324 * describe something that is process related.
2326 static const struct pid_entry proc_base_stuff
[] = {
2327 NOD("self", S_IFLNK
|S_IRWXUGO
,
2328 &proc_self_inode_operations
, NULL
, {}),
2332 * Exceptional case: normally we are not allowed to unhash a busy
2333 * directory. In this case, however, we can do it - no aliasing problems
2334 * due to the way we treat inodes.
2336 static int proc_base_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
2338 struct inode
*inode
= dentry
->d_inode
;
2339 struct task_struct
*task
= get_proc_task(inode
);
2341 put_task_struct(task
);
2348 static const struct dentry_operations proc_base_dentry_operations
=
2350 .d_revalidate
= proc_base_revalidate
,
2351 .d_delete
= pid_delete_dentry
,
2354 static struct dentry
*proc_base_instantiate(struct inode
*dir
,
2355 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
2357 const struct pid_entry
*p
= ptr
;
2358 struct inode
*inode
;
2359 struct proc_inode
*ei
;
2360 struct dentry
*error
= ERR_PTR(-EINVAL
);
2362 /* Allocate the inode */
2363 error
= ERR_PTR(-ENOMEM
);
2364 inode
= new_inode(dir
->i_sb
);
2368 /* Initialize the inode */
2370 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
2373 * grab the reference to the task.
2375 ei
->pid
= get_task_pid(task
, PIDTYPE_PID
);
2379 inode
->i_mode
= p
->mode
;
2380 if (S_ISDIR(inode
->i_mode
))
2382 if (S_ISLNK(inode
->i_mode
))
2385 inode
->i_op
= p
->iop
;
2387 inode
->i_fop
= p
->fop
;
2389 dentry
->d_op
= &proc_base_dentry_operations
;
2390 d_add(dentry
, inode
);
2399 static struct dentry
*proc_base_lookup(struct inode
*dir
, struct dentry
*dentry
)
2401 struct dentry
*error
;
2402 struct task_struct
*task
= get_proc_task(dir
);
2403 const struct pid_entry
*p
, *last
;
2405 error
= ERR_PTR(-ENOENT
);
2410 /* Lookup the directory entry */
2411 last
= &proc_base_stuff
[ARRAY_SIZE(proc_base_stuff
) - 1];
2412 for (p
= proc_base_stuff
; p
<= last
; p
++) {
2413 if (p
->len
!= dentry
->d_name
.len
)
2415 if (!memcmp(dentry
->d_name
.name
, p
->name
, p
->len
))
2421 error
= proc_base_instantiate(dir
, dentry
, task
, p
);
2424 put_task_struct(task
);
2429 static int proc_base_fill_cache(struct file
*filp
, void *dirent
,
2430 filldir_t filldir
, struct task_struct
*task
, const struct pid_entry
*p
)
2432 return proc_fill_cache(filp
, dirent
, filldir
, p
->name
, p
->len
,
2433 proc_base_instantiate
, task
, p
);
2436 #ifdef CONFIG_TASK_IO_ACCOUNTING
2437 static int do_io_accounting(struct task_struct
*task
, char *buffer
, int whole
)
2439 struct task_io_accounting acct
= task
->ioac
;
2440 unsigned long flags
;
2442 if (whole
&& lock_task_sighand(task
, &flags
)) {
2443 struct task_struct
*t
= task
;
2445 task_io_accounting_add(&acct
, &task
->signal
->ioac
);
2446 while_each_thread(task
, t
)
2447 task_io_accounting_add(&acct
, &t
->ioac
);
2449 unlock_task_sighand(task
, &flags
);
2451 return sprintf(buffer
,
2456 "read_bytes: %llu\n"
2457 "write_bytes: %llu\n"
2458 "cancelled_write_bytes: %llu\n",
2459 (unsigned long long)acct
.rchar
,
2460 (unsigned long long)acct
.wchar
,
2461 (unsigned long long)acct
.syscr
,
2462 (unsigned long long)acct
.syscw
,
2463 (unsigned long long)acct
.read_bytes
,
2464 (unsigned long long)acct
.write_bytes
,
2465 (unsigned long long)acct
.cancelled_write_bytes
);
2468 static int proc_tid_io_accounting(struct task_struct
*task
, char *buffer
)
2470 return do_io_accounting(task
, buffer
, 0);
2473 static int proc_tgid_io_accounting(struct task_struct
*task
, char *buffer
)
2475 return do_io_accounting(task
, buffer
, 1);
2477 #endif /* CONFIG_TASK_IO_ACCOUNTING */
2479 static int proc_pid_personality(struct seq_file
*m
, struct pid_namespace
*ns
,
2480 struct pid
*pid
, struct task_struct
*task
)
2482 seq_printf(m
, "%08x\n", task
->personality
);
2489 static const struct file_operations proc_task_operations
;
2490 static const struct inode_operations proc_task_inode_operations
;
2492 static const struct pid_entry tgid_base_stuff
[] = {
2493 DIR("task", S_IRUGO
|S_IXUGO
, proc_task_inode_operations
, proc_task_operations
),
2494 DIR("fd", S_IRUSR
|S_IXUSR
, proc_fd_inode_operations
, proc_fd_operations
),
2495 DIR("fdinfo", S_IRUSR
|S_IXUSR
, proc_fdinfo_inode_operations
, proc_fdinfo_operations
),
2497 DIR("net", S_IRUGO
|S_IXUGO
, proc_net_inode_operations
, proc_net_operations
),
2499 REG("environ", S_IRUSR
, proc_environ_operations
),
2500 INF("auxv", S_IRUSR
, proc_pid_auxv
),
2501 ONE("status", S_IRUGO
, proc_pid_status
),
2502 ONE("personality", S_IRUSR
, proc_pid_personality
),
2503 INF("limits", S_IRUSR
, proc_pid_limits
),
2504 #ifdef CONFIG_SCHED_DEBUG
2505 REG("sched", S_IRUGO
|S_IWUSR
, proc_pid_sched_operations
),
2507 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
2508 INF("syscall", S_IRUSR
, proc_pid_syscall
),
2510 INF("cmdline", S_IRUGO
, proc_pid_cmdline
),
2511 ONE("stat", S_IRUGO
, proc_tgid_stat
),
2512 ONE("statm", S_IRUGO
, proc_pid_statm
),
2513 REG("maps", S_IRUGO
, proc_maps_operations
),
2515 REG("numa_maps", S_IRUGO
, proc_numa_maps_operations
),
2517 REG("mem", S_IRUSR
|S_IWUSR
, proc_mem_operations
),
2518 LNK("cwd", proc_cwd_link
),
2519 LNK("root", proc_root_link
),
2520 LNK("exe", proc_exe_link
),
2521 REG("mounts", S_IRUGO
, proc_mounts_operations
),
2522 REG("mountinfo", S_IRUGO
, proc_mountinfo_operations
),
2523 REG("mountstats", S_IRUSR
, proc_mountstats_operations
),
2524 #ifdef CONFIG_PROC_PAGE_MONITOR
2525 REG("clear_refs", S_IWUSR
, proc_clear_refs_operations
),
2526 REG("smaps", S_IRUGO
, proc_smaps_operations
),
2527 REG("pagemap", S_IRUSR
, proc_pagemap_operations
),
2529 #ifdef CONFIG_SECURITY
2530 DIR("attr", S_IRUGO
|S_IXUGO
, proc_attr_dir_inode_operations
, proc_attr_dir_operations
),
2532 #ifdef CONFIG_KALLSYMS
2533 INF("wchan", S_IRUGO
, proc_pid_wchan
),
2535 #ifdef CONFIG_STACKTRACE
2536 ONE("stack", S_IRUSR
, proc_pid_stack
),
2538 #ifdef CONFIG_SCHEDSTATS
2539 INF("schedstat", S_IRUGO
, proc_pid_schedstat
),
2541 #ifdef CONFIG_LATENCYTOP
2542 REG("latency", S_IRUGO
, proc_lstats_operations
),
2544 #ifdef CONFIG_PROC_PID_CPUSET
2545 REG("cpuset", S_IRUGO
, proc_cpuset_operations
),
2547 #ifdef CONFIG_CGROUPS
2548 REG("cgroup", S_IRUGO
, proc_cgroup_operations
),
2550 INF("oom_score", S_IRUGO
, proc_oom_score
),
2551 REG("oom_adj", S_IRUGO
|S_IWUSR
, proc_oom_adjust_operations
),
2552 #ifdef CONFIG_AUDITSYSCALL
2553 REG("loginuid", S_IWUSR
|S_IRUGO
, proc_loginuid_operations
),
2554 REG("sessionid", S_IRUGO
, proc_sessionid_operations
),
2556 #ifdef CONFIG_FAULT_INJECTION
2557 REG("make-it-fail", S_IRUGO
|S_IWUSR
, proc_fault_inject_operations
),
2559 #if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
2560 REG("coredump_filter", S_IRUGO
|S_IWUSR
, proc_coredump_filter_operations
),
2562 #ifdef CONFIG_TASK_IO_ACCOUNTING
2563 INF("io", S_IRUGO
, proc_tgid_io_accounting
),
2567 static int proc_tgid_base_readdir(struct file
* filp
,
2568 void * dirent
, filldir_t filldir
)
2570 return proc_pident_readdir(filp
,dirent
,filldir
,
2571 tgid_base_stuff
,ARRAY_SIZE(tgid_base_stuff
));
2574 static const struct file_operations proc_tgid_base_operations
= {
2575 .read
= generic_read_dir
,
2576 .readdir
= proc_tgid_base_readdir
,
2579 static struct dentry
*proc_tgid_base_lookup(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
){
2580 return proc_pident_lookup(dir
, dentry
,
2581 tgid_base_stuff
, ARRAY_SIZE(tgid_base_stuff
));
2584 static const struct inode_operations proc_tgid_base_inode_operations
= {
2585 .lookup
= proc_tgid_base_lookup
,
2586 .getattr
= pid_getattr
,
2587 .setattr
= proc_setattr
,
2590 static void proc_flush_task_mnt(struct vfsmount
*mnt
, pid_t pid
, pid_t tgid
)
2592 struct dentry
*dentry
, *leader
, *dir
;
2593 char buf
[PROC_NUMBUF
];
2597 name
.len
= snprintf(buf
, sizeof(buf
), "%d", pid
);
2598 dentry
= d_hash_and_lookup(mnt
->mnt_root
, &name
);
2600 if (!(current
->flags
& PF_EXITING
))
2601 shrink_dcache_parent(dentry
);
2607 name
.len
= snprintf(buf
, sizeof(buf
), "%d", tgid
);
2608 leader
= d_hash_and_lookup(mnt
->mnt_root
, &name
);
2613 name
.len
= strlen(name
.name
);
2614 dir
= d_hash_and_lookup(leader
, &name
);
2616 goto out_put_leader
;
2619 name
.len
= snprintf(buf
, sizeof(buf
), "%d", pid
);
2620 dentry
= d_hash_and_lookup(dir
, &name
);
2622 shrink_dcache_parent(dentry
);
2635 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2636 * @task: task that should be flushed.
2638 * When flushing dentries from proc, one needs to flush them from global
2639 * proc (proc_mnt) and from all the namespaces' procs this task was seen
2640 * in. This call is supposed to do all of this job.
2642 * Looks in the dcache for
2644 * /proc/@tgid/task/@pid
2645 * if either directory is present flushes it and all of it'ts children
2648 * It is safe and reasonable to cache /proc entries for a task until
2649 * that task exits. After that they just clog up the dcache with
2650 * useless entries, possibly causing useful dcache entries to be
2651 * flushed instead. This routine is proved to flush those useless
2652 * dcache entries at process exit time.
2654 * NOTE: This routine is just an optimization so it does not guarantee
2655 * that no dcache entries will exist at process exit time it
2656 * just makes it very unlikely that any will persist.
2659 void proc_flush_task(struct task_struct
*task
)
2662 struct pid
*pid
, *tgid
;
2665 pid
= task_pid(task
);
2666 tgid
= task_tgid(task
);
2668 for (i
= 0; i
<= pid
->level
; i
++) {
2669 upid
= &pid
->numbers
[i
];
2670 proc_flush_task_mnt(upid
->ns
->proc_mnt
, upid
->nr
,
2671 tgid
->numbers
[i
].nr
);
2674 upid
= &pid
->numbers
[pid
->level
];
2676 pid_ns_release_proc(upid
->ns
);
2679 static struct dentry
*proc_pid_instantiate(struct inode
*dir
,
2680 struct dentry
* dentry
,
2681 struct task_struct
*task
, const void *ptr
)
2683 struct dentry
*error
= ERR_PTR(-ENOENT
);
2684 struct inode
*inode
;
2686 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
2690 inode
->i_mode
= S_IFDIR
|S_IRUGO
|S_IXUGO
;
2691 inode
->i_op
= &proc_tgid_base_inode_operations
;
2692 inode
->i_fop
= &proc_tgid_base_operations
;
2693 inode
->i_flags
|=S_IMMUTABLE
;
2695 inode
->i_nlink
= 2 + pid_entry_count_dirs(tgid_base_stuff
,
2696 ARRAY_SIZE(tgid_base_stuff
));
2698 dentry
->d_op
= &pid_dentry_operations
;
2700 d_add(dentry
, inode
);
2701 /* Close the race of the process dying before we return the dentry */
2702 if (pid_revalidate(dentry
, NULL
))
2708 struct dentry
*proc_pid_lookup(struct inode
*dir
, struct dentry
* dentry
, struct nameidata
*nd
)
2710 struct dentry
*result
= ERR_PTR(-ENOENT
);
2711 struct task_struct
*task
;
2713 struct pid_namespace
*ns
;
2715 result
= proc_base_lookup(dir
, dentry
);
2716 if (!IS_ERR(result
) || PTR_ERR(result
) != -ENOENT
)
2719 tgid
= name_to_int(dentry
);
2723 ns
= dentry
->d_sb
->s_fs_info
;
2725 task
= find_task_by_pid_ns(tgid
, ns
);
2727 get_task_struct(task
);
2732 result
= proc_pid_instantiate(dir
, dentry
, task
, NULL
);
2733 put_task_struct(task
);
2739 * Find the first task with tgid >= tgid
2744 struct task_struct
*task
;
2746 static struct tgid_iter
next_tgid(struct pid_namespace
*ns
, struct tgid_iter iter
)
2751 put_task_struct(iter
.task
);
2755 pid
= find_ge_pid(iter
.tgid
, ns
);
2757 iter
.tgid
= pid_nr_ns(pid
, ns
);
2758 iter
.task
= pid_task(pid
, PIDTYPE_PID
);
2759 /* What we to know is if the pid we have find is the
2760 * pid of a thread_group_leader. Testing for task
2761 * being a thread_group_leader is the obvious thing
2762 * todo but there is a window when it fails, due to
2763 * the pid transfer logic in de_thread.
2765 * So we perform the straight forward test of seeing
2766 * if the pid we have found is the pid of a thread
2767 * group leader, and don't worry if the task we have
2768 * found doesn't happen to be a thread group leader.
2769 * As we don't care in the case of readdir.
2771 if (!iter
.task
|| !has_group_leader_pid(iter
.task
)) {
2775 get_task_struct(iter
.task
);
2781 #define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
2783 static int proc_pid_fill_cache(struct file
*filp
, void *dirent
, filldir_t filldir
,
2784 struct tgid_iter iter
)
2786 char name
[PROC_NUMBUF
];
2787 int len
= snprintf(name
, sizeof(name
), "%d", iter
.tgid
);
2788 return proc_fill_cache(filp
, dirent
, filldir
, name
, len
,
2789 proc_pid_instantiate
, iter
.task
, NULL
);
2792 /* for the /proc/ directory itself, after non-process stuff has been done */
2793 int proc_pid_readdir(struct file
* filp
, void * dirent
, filldir_t filldir
)
2795 unsigned int nr
= filp
->f_pos
- FIRST_PROCESS_ENTRY
;
2796 struct task_struct
*reaper
= get_proc_task(filp
->f_path
.dentry
->d_inode
);
2797 struct tgid_iter iter
;
2798 struct pid_namespace
*ns
;
2803 for (; nr
< ARRAY_SIZE(proc_base_stuff
); filp
->f_pos
++, nr
++) {
2804 const struct pid_entry
*p
= &proc_base_stuff
[nr
];
2805 if (proc_base_fill_cache(filp
, dirent
, filldir
, reaper
, p
) < 0)
2809 ns
= filp
->f_dentry
->d_sb
->s_fs_info
;
2811 iter
.tgid
= filp
->f_pos
- TGID_OFFSET
;
2812 for (iter
= next_tgid(ns
, iter
);
2814 iter
.tgid
+= 1, iter
= next_tgid(ns
, iter
)) {
2815 filp
->f_pos
= iter
.tgid
+ TGID_OFFSET
;
2816 if (proc_pid_fill_cache(filp
, dirent
, filldir
, iter
) < 0) {
2817 put_task_struct(iter
.task
);
2821 filp
->f_pos
= PID_MAX_LIMIT
+ TGID_OFFSET
;
2823 put_task_struct(reaper
);
2831 static const struct pid_entry tid_base_stuff
[] = {
2832 DIR("fd", S_IRUSR
|S_IXUSR
, proc_fd_inode_operations
, proc_fd_operations
),
2833 DIR("fdinfo", S_IRUSR
|S_IXUSR
, proc_fdinfo_inode_operations
, proc_fd_operations
),
2834 REG("environ", S_IRUSR
, proc_environ_operations
),
2835 INF("auxv", S_IRUSR
, proc_pid_auxv
),
2836 ONE("status", S_IRUGO
, proc_pid_status
),
2837 ONE("personality", S_IRUSR
, proc_pid_personality
),
2838 INF("limits", S_IRUSR
, proc_pid_limits
),
2839 #ifdef CONFIG_SCHED_DEBUG
2840 REG("sched", S_IRUGO
|S_IWUSR
, proc_pid_sched_operations
),
2842 #ifdef CONFIG_HAVE_ARCH_TRACEHOOK
2843 INF("syscall", S_IRUSR
, proc_pid_syscall
),
2845 INF("cmdline", S_IRUGO
, proc_pid_cmdline
),
2846 ONE("stat", S_IRUGO
, proc_tid_stat
),
2847 ONE("statm", S_IRUGO
, proc_pid_statm
),
2848 REG("maps", S_IRUGO
, proc_maps_operations
),
2850 REG("numa_maps", S_IRUGO
, proc_numa_maps_operations
),
2852 REG("mem", S_IRUSR
|S_IWUSR
, proc_mem_operations
),
2853 LNK("cwd", proc_cwd_link
),
2854 LNK("root", proc_root_link
),
2855 LNK("exe", proc_exe_link
),
2856 REG("mounts", S_IRUGO
, proc_mounts_operations
),
2857 REG("mountinfo", S_IRUGO
, proc_mountinfo_operations
),
2858 #ifdef CONFIG_PROC_PAGE_MONITOR
2859 REG("clear_refs", S_IWUSR
, proc_clear_refs_operations
),
2860 REG("smaps", S_IRUGO
, proc_smaps_operations
),
2861 REG("pagemap", S_IRUSR
, proc_pagemap_operations
),
2863 #ifdef CONFIG_SECURITY
2864 DIR("attr", S_IRUGO
|S_IXUGO
, proc_attr_dir_inode_operations
, proc_attr_dir_operations
),
2866 #ifdef CONFIG_KALLSYMS
2867 INF("wchan", S_IRUGO
, proc_pid_wchan
),
2869 #ifdef CONFIG_STACKTRACE
2870 ONE("stack", S_IRUSR
, proc_pid_stack
),
2872 #ifdef CONFIG_SCHEDSTATS
2873 INF("schedstat", S_IRUGO
, proc_pid_schedstat
),
2875 #ifdef CONFIG_LATENCYTOP
2876 REG("latency", S_IRUGO
, proc_lstats_operations
),
2878 #ifdef CONFIG_PROC_PID_CPUSET
2879 REG("cpuset", S_IRUGO
, proc_cpuset_operations
),
2881 #ifdef CONFIG_CGROUPS
2882 REG("cgroup", S_IRUGO
, proc_cgroup_operations
),
2884 INF("oom_score", S_IRUGO
, proc_oom_score
),
2885 REG("oom_adj", S_IRUGO
|S_IWUSR
, proc_oom_adjust_operations
),
2886 #ifdef CONFIG_AUDITSYSCALL
2887 REG("loginuid", S_IWUSR
|S_IRUGO
, proc_loginuid_operations
),
2888 REG("sessionid", S_IRUSR
, proc_sessionid_operations
),
2890 #ifdef CONFIG_FAULT_INJECTION
2891 REG("make-it-fail", S_IRUGO
|S_IWUSR
, proc_fault_inject_operations
),
2893 #ifdef CONFIG_TASK_IO_ACCOUNTING
2894 INF("io", S_IRUGO
, proc_tid_io_accounting
),
2898 static int proc_tid_base_readdir(struct file
* filp
,
2899 void * dirent
, filldir_t filldir
)
2901 return proc_pident_readdir(filp
,dirent
,filldir
,
2902 tid_base_stuff
,ARRAY_SIZE(tid_base_stuff
));
2905 static struct dentry
*proc_tid_base_lookup(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
){
2906 return proc_pident_lookup(dir
, dentry
,
2907 tid_base_stuff
, ARRAY_SIZE(tid_base_stuff
));
2910 static const struct file_operations proc_tid_base_operations
= {
2911 .read
= generic_read_dir
,
2912 .readdir
= proc_tid_base_readdir
,
2915 static const struct inode_operations proc_tid_base_inode_operations
= {
2916 .lookup
= proc_tid_base_lookup
,
2917 .getattr
= pid_getattr
,
2918 .setattr
= proc_setattr
,
2921 static struct dentry
*proc_task_instantiate(struct inode
*dir
,
2922 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
2924 struct dentry
*error
= ERR_PTR(-ENOENT
);
2925 struct inode
*inode
;
2926 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
2930 inode
->i_mode
= S_IFDIR
|S_IRUGO
|S_IXUGO
;
2931 inode
->i_op
= &proc_tid_base_inode_operations
;
2932 inode
->i_fop
= &proc_tid_base_operations
;
2933 inode
->i_flags
|=S_IMMUTABLE
;
2935 inode
->i_nlink
= 2 + pid_entry_count_dirs(tid_base_stuff
,
2936 ARRAY_SIZE(tid_base_stuff
));
2938 dentry
->d_op
= &pid_dentry_operations
;
2940 d_add(dentry
, inode
);
2941 /* Close the race of the process dying before we return the dentry */
2942 if (pid_revalidate(dentry
, NULL
))
2948 static struct dentry
*proc_task_lookup(struct inode
*dir
, struct dentry
* dentry
, struct nameidata
*nd
)
2950 struct dentry
*result
= ERR_PTR(-ENOENT
);
2951 struct task_struct
*task
;
2952 struct task_struct
*leader
= get_proc_task(dir
);
2954 struct pid_namespace
*ns
;
2959 tid
= name_to_int(dentry
);
2963 ns
= dentry
->d_sb
->s_fs_info
;
2965 task
= find_task_by_pid_ns(tid
, ns
);
2967 get_task_struct(task
);
2971 if (!same_thread_group(leader
, task
))
2974 result
= proc_task_instantiate(dir
, dentry
, task
, NULL
);
2976 put_task_struct(task
);
2978 put_task_struct(leader
);
2984 * Find the first tid of a thread group to return to user space.
2986 * Usually this is just the thread group leader, but if the users
2987 * buffer was too small or there was a seek into the middle of the
2988 * directory we have more work todo.
2990 * In the case of a short read we start with find_task_by_pid.
2992 * In the case of a seek we start with the leader and walk nr
2995 static struct task_struct
*first_tid(struct task_struct
*leader
,
2996 int tid
, int nr
, struct pid_namespace
*ns
)
2998 struct task_struct
*pos
;
3001 /* Attempt to start with the pid of a thread */
3002 if (tid
&& (nr
> 0)) {
3003 pos
= find_task_by_pid_ns(tid
, ns
);
3004 if (pos
&& (pos
->group_leader
== leader
))
3008 /* If nr exceeds the number of threads there is nothing todo */
3010 if (nr
&& nr
>= get_nr_threads(leader
))
3013 /* If we haven't found our starting place yet start
3014 * with the leader and walk nr threads forward.
3016 for (pos
= leader
; nr
> 0; --nr
) {
3017 pos
= next_thread(pos
);
3018 if (pos
== leader
) {
3024 get_task_struct(pos
);
3031 * Find the next thread in the thread list.
3032 * Return NULL if there is an error or no next thread.
3034 * The reference to the input task_struct is released.
3036 static struct task_struct
*next_tid(struct task_struct
*start
)
3038 struct task_struct
*pos
= NULL
;
3040 if (pid_alive(start
)) {
3041 pos
= next_thread(start
);
3042 if (thread_group_leader(pos
))
3045 get_task_struct(pos
);
3048 put_task_struct(start
);
3052 static int proc_task_fill_cache(struct file
*filp
, void *dirent
, filldir_t filldir
,
3053 struct task_struct
*task
, int tid
)
3055 char name
[PROC_NUMBUF
];
3056 int len
= snprintf(name
, sizeof(name
), "%d", tid
);
3057 return proc_fill_cache(filp
, dirent
, filldir
, name
, len
,
3058 proc_task_instantiate
, task
, NULL
);
3061 /* for the /proc/TGID/task/ directories */
3062 static int proc_task_readdir(struct file
* filp
, void * dirent
, filldir_t filldir
)
3064 struct dentry
*dentry
= filp
->f_path
.dentry
;
3065 struct inode
*inode
= dentry
->d_inode
;
3066 struct task_struct
*leader
= NULL
;
3067 struct task_struct
*task
;
3068 int retval
= -ENOENT
;
3071 struct pid_namespace
*ns
;
3073 task
= get_proc_task(inode
);
3077 if (pid_alive(task
)) {
3078 leader
= task
->group_leader
;
3079 get_task_struct(leader
);
3082 put_task_struct(task
);
3087 switch ((unsigned long)filp
->f_pos
) {
3090 if (filldir(dirent
, ".", 1, filp
->f_pos
, ino
, DT_DIR
) < 0)
3095 ino
= parent_ino(dentry
);
3096 if (filldir(dirent
, "..", 2, filp
->f_pos
, ino
, DT_DIR
) < 0)
3102 /* f_version caches the tgid value that the last readdir call couldn't
3103 * return. lseek aka telldir automagically resets f_version to 0.
3105 ns
= filp
->f_dentry
->d_sb
->s_fs_info
;
3106 tid
= (int)filp
->f_version
;
3107 filp
->f_version
= 0;
3108 for (task
= first_tid(leader
, tid
, filp
->f_pos
- 2, ns
);
3110 task
= next_tid(task
), filp
->f_pos
++) {
3111 tid
= task_pid_nr_ns(task
, ns
);
3112 if (proc_task_fill_cache(filp
, dirent
, filldir
, task
, tid
) < 0) {
3113 /* returning this tgid failed, save it as the first
3114 * pid for the next readir call */
3115 filp
->f_version
= (u64
)tid
;
3116 put_task_struct(task
);
3121 put_task_struct(leader
);
3126 static int proc_task_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
, struct kstat
*stat
)
3128 struct inode
*inode
= dentry
->d_inode
;
3129 struct task_struct
*p
= get_proc_task(inode
);
3130 generic_fillattr(inode
, stat
);
3133 stat
->nlink
+= get_nr_threads(p
);
3140 static const struct inode_operations proc_task_inode_operations
= {
3141 .lookup
= proc_task_lookup
,
3142 .getattr
= proc_task_getattr
,
3143 .setattr
= proc_setattr
,
3146 static const struct file_operations proc_task_operations
= {
3147 .read
= generic_read_dir
,
3148 .readdir
= proc_task_readdir
,