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.
16 #include <asm/uaccess.h>
18 #include <linux/config.h>
19 #include <linux/errno.h>
20 #include <linux/time.h>
21 #include <linux/proc_fs.h>
22 #include <linux/stat.h>
23 #include <linux/init.h>
24 #include <linux/file.h>
25 #include <linux/string.h>
26 #include <linux/seq_file.h>
27 #include <linux/namei.h>
28 #include <linux/namespace.h>
30 #include <linux/smp_lock.h>
31 #include <linux/kallsyms.h>
32 #include <linux/mount.h>
33 #include <linux/security.h>
34 #include <linux/ptrace.h>
35 #include <linux/seccomp.h>
36 #include <linux/cpuset.h>
37 #include <linux/audit.h>
41 * For hysterical raisins we keep the same inumbers as in the old procfs.
42 * Feel free to change the macro below - just keep the range distinct from
43 * inumbers of the rest of procfs (currently those are in 0x0000--0xffff).
44 * As soon as we'll get a separate superblock we will be able to forget
45 * about magical ranges too.
48 #define fake_ino(pid,ino) (((pid)<<16)|(ino))
50 enum pid_directory_inos
{
70 #ifdef CONFIG_SCHEDSTATS
76 #ifdef CONFIG_SECURITY
78 PROC_TGID_ATTR_CURRENT
,
81 PROC_TGID_ATTR_FSCREATE
,
83 #ifdef CONFIG_AUDITSYSCALL
107 #ifdef CONFIG_SCHEDSTATS
110 #ifdef CONFIG_CPUSETS
113 #ifdef CONFIG_SECURITY
115 PROC_TID_ATTR_CURRENT
,
118 PROC_TID_ATTR_FSCREATE
,
120 #ifdef CONFIG_AUDITSYSCALL
123 PROC_TID_FD_DIR
= 0x8000, /* 0x8000-0xffff */
135 #define E(type,name,mode) {(type),sizeof(name)-1,(name),(mode)}
137 static struct pid_entry tgid_base_stuff
[] = {
138 E(PROC_TGID_TASK
, "task", S_IFDIR
|S_IRUGO
|S_IXUGO
),
139 E(PROC_TGID_FD
, "fd", S_IFDIR
|S_IRUSR
|S_IXUSR
),
140 E(PROC_TGID_ENVIRON
, "environ", S_IFREG
|S_IRUSR
),
141 E(PROC_TGID_AUXV
, "auxv", S_IFREG
|S_IRUSR
),
142 E(PROC_TGID_STATUS
, "status", S_IFREG
|S_IRUGO
),
143 E(PROC_TGID_CMDLINE
, "cmdline", S_IFREG
|S_IRUGO
),
144 E(PROC_TGID_STAT
, "stat", S_IFREG
|S_IRUGO
),
145 E(PROC_TGID_STATM
, "statm", S_IFREG
|S_IRUGO
),
146 E(PROC_TGID_MAPS
, "maps", S_IFREG
|S_IRUGO
),
147 E(PROC_TGID_MEM
, "mem", S_IFREG
|S_IRUSR
|S_IWUSR
),
148 #ifdef CONFIG_SECCOMP
149 E(PROC_TGID_SECCOMP
, "seccomp", S_IFREG
|S_IRUSR
|S_IWUSR
),
151 E(PROC_TGID_CWD
, "cwd", S_IFLNK
|S_IRWXUGO
),
152 E(PROC_TGID_ROOT
, "root", S_IFLNK
|S_IRWXUGO
),
153 E(PROC_TGID_EXE
, "exe", S_IFLNK
|S_IRWXUGO
),
154 E(PROC_TGID_MOUNTS
, "mounts", S_IFREG
|S_IRUGO
),
155 #ifdef CONFIG_SECURITY
156 E(PROC_TGID_ATTR
, "attr", S_IFDIR
|S_IRUGO
|S_IXUGO
),
158 #ifdef CONFIG_KALLSYMS
159 E(PROC_TGID_WCHAN
, "wchan", S_IFREG
|S_IRUGO
),
161 #ifdef CONFIG_SCHEDSTATS
162 E(PROC_TGID_SCHEDSTAT
, "schedstat", S_IFREG
|S_IRUGO
),
164 #ifdef CONFIG_CPUSETS
165 E(PROC_TGID_CPUSET
, "cpuset", S_IFREG
|S_IRUGO
),
167 E(PROC_TGID_OOM_SCORE
, "oom_score",S_IFREG
|S_IRUGO
),
168 E(PROC_TGID_OOM_ADJUST
,"oom_adj", S_IFREG
|S_IRUGO
|S_IWUSR
),
169 #ifdef CONFIG_AUDITSYSCALL
170 E(PROC_TGID_LOGINUID
, "loginuid", S_IFREG
|S_IWUSR
|S_IRUGO
),
174 static struct pid_entry tid_base_stuff
[] = {
175 E(PROC_TID_FD
, "fd", S_IFDIR
|S_IRUSR
|S_IXUSR
),
176 E(PROC_TID_ENVIRON
, "environ", S_IFREG
|S_IRUSR
),
177 E(PROC_TID_AUXV
, "auxv", S_IFREG
|S_IRUSR
),
178 E(PROC_TID_STATUS
, "status", S_IFREG
|S_IRUGO
),
179 E(PROC_TID_CMDLINE
, "cmdline", S_IFREG
|S_IRUGO
),
180 E(PROC_TID_STAT
, "stat", S_IFREG
|S_IRUGO
),
181 E(PROC_TID_STATM
, "statm", S_IFREG
|S_IRUGO
),
182 E(PROC_TID_MAPS
, "maps", S_IFREG
|S_IRUGO
),
183 E(PROC_TID_MEM
, "mem", S_IFREG
|S_IRUSR
|S_IWUSR
),
184 #ifdef CONFIG_SECCOMP
185 E(PROC_TID_SECCOMP
, "seccomp", S_IFREG
|S_IRUSR
|S_IWUSR
),
187 E(PROC_TID_CWD
, "cwd", S_IFLNK
|S_IRWXUGO
),
188 E(PROC_TID_ROOT
, "root", S_IFLNK
|S_IRWXUGO
),
189 E(PROC_TID_EXE
, "exe", S_IFLNK
|S_IRWXUGO
),
190 E(PROC_TID_MOUNTS
, "mounts", S_IFREG
|S_IRUGO
),
191 #ifdef CONFIG_SECURITY
192 E(PROC_TID_ATTR
, "attr", S_IFDIR
|S_IRUGO
|S_IXUGO
),
194 #ifdef CONFIG_KALLSYMS
195 E(PROC_TID_WCHAN
, "wchan", S_IFREG
|S_IRUGO
),
197 #ifdef CONFIG_SCHEDSTATS
198 E(PROC_TID_SCHEDSTAT
, "schedstat",S_IFREG
|S_IRUGO
),
200 #ifdef CONFIG_CPUSETS
201 E(PROC_TID_CPUSET
, "cpuset", S_IFREG
|S_IRUGO
),
203 E(PROC_TID_OOM_SCORE
, "oom_score",S_IFREG
|S_IRUGO
),
204 E(PROC_TID_OOM_ADJUST
, "oom_adj", S_IFREG
|S_IRUGO
|S_IWUSR
),
205 #ifdef CONFIG_AUDITSYSCALL
206 E(PROC_TID_LOGINUID
, "loginuid", S_IFREG
|S_IWUSR
|S_IRUGO
),
211 #ifdef CONFIG_SECURITY
212 static struct pid_entry tgid_attr_stuff
[] = {
213 E(PROC_TGID_ATTR_CURRENT
, "current", S_IFREG
|S_IRUGO
|S_IWUGO
),
214 E(PROC_TGID_ATTR_PREV
, "prev", S_IFREG
|S_IRUGO
),
215 E(PROC_TGID_ATTR_EXEC
, "exec", S_IFREG
|S_IRUGO
|S_IWUGO
),
216 E(PROC_TGID_ATTR_FSCREATE
, "fscreate", S_IFREG
|S_IRUGO
|S_IWUGO
),
219 static struct pid_entry tid_attr_stuff
[] = {
220 E(PROC_TID_ATTR_CURRENT
, "current", S_IFREG
|S_IRUGO
|S_IWUGO
),
221 E(PROC_TID_ATTR_PREV
, "prev", S_IFREG
|S_IRUGO
),
222 E(PROC_TID_ATTR_EXEC
, "exec", S_IFREG
|S_IRUGO
|S_IWUGO
),
223 E(PROC_TID_ATTR_FSCREATE
, "fscreate", S_IFREG
|S_IRUGO
|S_IWUGO
),
230 static int proc_fd_link(struct inode
*inode
, struct dentry
**dentry
, struct vfsmount
**mnt
)
232 struct task_struct
*task
= proc_task(inode
);
233 struct files_struct
*files
;
235 int fd
= proc_type(inode
) - PROC_TID_FD_DIR
;
237 files
= get_files_struct(task
);
239 spin_lock(&files
->file_lock
);
240 file
= fcheck_files(files
, fd
);
242 *mnt
= mntget(file
->f_vfsmnt
);
243 *dentry
= dget(file
->f_dentry
);
244 spin_unlock(&files
->file_lock
);
245 put_files_struct(files
);
248 spin_unlock(&files
->file_lock
);
249 put_files_struct(files
);
254 static int proc_cwd_link(struct inode
*inode
, struct dentry
**dentry
, struct vfsmount
**mnt
)
256 struct fs_struct
*fs
;
257 int result
= -ENOENT
;
258 task_lock(proc_task(inode
));
259 fs
= proc_task(inode
)->fs
;
261 atomic_inc(&fs
->count
);
262 task_unlock(proc_task(inode
));
264 read_lock(&fs
->lock
);
265 *mnt
= mntget(fs
->pwdmnt
);
266 *dentry
= dget(fs
->pwd
);
267 read_unlock(&fs
->lock
);
274 static int proc_root_link(struct inode
*inode
, struct dentry
**dentry
, struct vfsmount
**mnt
)
276 struct fs_struct
*fs
;
277 int result
= -ENOENT
;
278 task_lock(proc_task(inode
));
279 fs
= proc_task(inode
)->fs
;
281 atomic_inc(&fs
->count
);
282 task_unlock(proc_task(inode
));
284 read_lock(&fs
->lock
);
285 *mnt
= mntget(fs
->rootmnt
);
286 *dentry
= dget(fs
->root
);
287 read_unlock(&fs
->lock
);
294 #define MAY_PTRACE(task) \
295 (task == current || \
296 (task->parent == current && \
297 (task->ptrace & PT_PTRACED) && \
298 (task->state == TASK_STOPPED || task->state == TASK_TRACED) && \
299 security_ptrace(current,task) == 0))
301 static int may_ptrace_attach(struct task_struct
*task
)
309 if (((current
->uid
!= task
->euid
) ||
310 (current
->uid
!= task
->suid
) ||
311 (current
->uid
!= task
->uid
) ||
312 (current
->gid
!= task
->egid
) ||
313 (current
->gid
!= task
->sgid
) ||
314 (current
->gid
!= task
->gid
)) && !capable(CAP_SYS_PTRACE
))
317 if (task
->mm
->dumpable
!= 1 && !capable(CAP_SYS_PTRACE
))
319 if (security_ptrace(current
, task
))
328 static int proc_pid_environ(struct task_struct
*task
, char * buffer
)
331 struct mm_struct
*mm
= get_task_mm(task
);
333 unsigned int len
= mm
->env_end
- mm
->env_start
;
336 res
= access_process_vm(task
, mm
->env_start
, buffer
, len
, 0);
337 if (!may_ptrace_attach(task
))
344 static int proc_pid_cmdline(struct task_struct
*task
, char * buffer
)
348 struct mm_struct
*mm
= get_task_mm(task
);
352 goto out_mm
; /* Shh! No looking before we're done */
354 len
= mm
->arg_end
- mm
->arg_start
;
359 res
= access_process_vm(task
, mm
->arg_start
, buffer
, len
, 0);
361 // If the nul at the end of args has been overwritten, then
362 // assume application is using setproctitle(3).
363 if (res
> 0 && buffer
[res
-1] != '\0' && len
< PAGE_SIZE
) {
364 len
= strnlen(buffer
, res
);
368 len
= mm
->env_end
- mm
->env_start
;
369 if (len
> PAGE_SIZE
- res
)
370 len
= PAGE_SIZE
- res
;
371 res
+= access_process_vm(task
, mm
->env_start
, buffer
+res
, len
, 0);
372 res
= strnlen(buffer
, res
);
381 static int proc_pid_auxv(struct task_struct
*task
, char *buffer
)
384 struct mm_struct
*mm
= get_task_mm(task
);
386 unsigned int nwords
= 0;
389 while (mm
->saved_auxv
[nwords
- 2] != 0); /* AT_NULL */
390 res
= nwords
* sizeof(mm
->saved_auxv
[0]);
393 memcpy(buffer
, mm
->saved_auxv
, res
);
400 #ifdef CONFIG_KALLSYMS
402 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
403 * Returns the resolved symbol. If that fails, simply return the address.
405 static int proc_pid_wchan(struct task_struct
*task
, char *buffer
)
408 const char *sym_name
;
409 unsigned long wchan
, size
, offset
;
410 char namebuf
[KSYM_NAME_LEN
+1];
412 wchan
= get_wchan(task
);
414 sym_name
= kallsyms_lookup(wchan
, &size
, &offset
, &modname
, namebuf
);
416 return sprintf(buffer
, "%s", sym_name
);
417 return sprintf(buffer
, "%lu", wchan
);
419 #endif /* CONFIG_KALLSYMS */
421 #ifdef CONFIG_SCHEDSTATS
423 * Provides /proc/PID/schedstat
425 static int proc_pid_schedstat(struct task_struct
*task
, char *buffer
)
427 return sprintf(buffer
, "%lu %lu %lu\n",
428 task
->sched_info
.cpu_time
,
429 task
->sched_info
.run_delay
,
430 task
->sched_info
.pcnt
);
434 /* The badness from the OOM killer */
435 unsigned long badness(struct task_struct
*p
, unsigned long uptime
);
436 static int proc_oom_score(struct task_struct
*task
, char *buffer
)
438 unsigned long points
;
439 struct timespec uptime
;
441 do_posix_clock_monotonic_gettime(&uptime
);
442 points
= badness(task
, uptime
.tv_sec
);
443 return sprintf(buffer
, "%lu\n", points
);
446 /************************************************************************/
447 /* Here the fs part begins */
448 /************************************************************************/
450 /* permission checks */
452 static int proc_check_root(struct inode
*inode
)
454 struct dentry
*de
, *base
, *root
;
455 struct vfsmount
*our_vfsmnt
, *vfsmnt
, *mnt
;
458 if (proc_root_link(inode
, &root
, &vfsmnt
)) /* Ewww... */
460 read_lock(¤t
->fs
->lock
);
461 our_vfsmnt
= mntget(current
->fs
->rootmnt
);
462 base
= dget(current
->fs
->root
);
463 read_unlock(¤t
->fs
->lock
);
465 spin_lock(&vfsmount_lock
);
469 while (vfsmnt
!= our_vfsmnt
) {
470 if (vfsmnt
== vfsmnt
->mnt_parent
)
472 de
= vfsmnt
->mnt_mountpoint
;
473 vfsmnt
= vfsmnt
->mnt_parent
;
476 if (!is_subdir(de
, base
))
478 spin_unlock(&vfsmount_lock
);
487 spin_unlock(&vfsmount_lock
);
492 static int proc_permission(struct inode
*inode
, int mask
, struct nameidata
*nd
)
494 if (generic_permission(inode
, mask
, NULL
) != 0)
496 return proc_check_root(inode
);
499 extern struct seq_operations proc_pid_maps_op
;
500 static int maps_open(struct inode
*inode
, struct file
*file
)
502 struct task_struct
*task
= proc_task(inode
);
503 int ret
= seq_open(file
, &proc_pid_maps_op
);
505 struct seq_file
*m
= file
->private_data
;
511 static struct file_operations proc_maps_operations
= {
515 .release
= seq_release
,
518 extern struct seq_operations mounts_op
;
519 static int mounts_open(struct inode
*inode
, struct file
*file
)
521 struct task_struct
*task
= proc_task(inode
);
522 int ret
= seq_open(file
, &mounts_op
);
525 struct seq_file
*m
= file
->private_data
;
526 struct namespace *namespace;
528 namespace = task
->namespace;
530 get_namespace(namespace);
534 m
->private = namespace;
536 seq_release(inode
, file
);
543 static int mounts_release(struct inode
*inode
, struct file
*file
)
545 struct seq_file
*m
= file
->private_data
;
546 struct namespace *namespace = m
->private;
547 put_namespace(namespace);
548 return seq_release(inode
, file
);
551 static struct file_operations proc_mounts_operations
= {
555 .release
= mounts_release
,
558 #define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
560 static ssize_t
proc_info_read(struct file
* file
, char __user
* buf
,
561 size_t count
, loff_t
*ppos
)
563 struct inode
* inode
= file
->f_dentry
->d_inode
;
566 struct task_struct
*task
= proc_task(inode
);
568 if (count
> PROC_BLOCK_SIZE
)
569 count
= PROC_BLOCK_SIZE
;
570 if (!(page
= __get_free_page(GFP_KERNEL
)))
573 length
= PROC_I(inode
)->op
.proc_read(task
, (char*)page
);
576 length
= simple_read_from_buffer(buf
, count
, ppos
, (char *)page
, length
);
581 static struct file_operations proc_info_file_operations
= {
582 .read
= proc_info_read
,
585 static int mem_open(struct inode
* inode
, struct file
* file
)
587 file
->private_data
= (void*)((long)current
->self_exec_id
);
591 static ssize_t
mem_read(struct file
* file
, char __user
* buf
,
592 size_t count
, loff_t
*ppos
)
594 struct task_struct
*task
= proc_task(file
->f_dentry
->d_inode
);
596 unsigned long src
= *ppos
;
598 struct mm_struct
*mm
;
600 if (!MAY_PTRACE(task
) || !may_ptrace_attach(task
))
604 page
= (char *)__get_free_page(GFP_USER
);
610 mm
= get_task_mm(task
);
616 if (file
->private_data
!= (void*)((long)current
->self_exec_id
))
622 int this_len
, retval
;
624 this_len
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
625 retval
= access_process_vm(task
, src
, page
, this_len
, 0);
626 if (!retval
|| !MAY_PTRACE(task
) || !may_ptrace_attach(task
)) {
632 if (copy_to_user(buf
, page
, retval
)) {
647 free_page((unsigned long) page
);
652 #define mem_write NULL
655 /* This is a security hazard */
656 static ssize_t
mem_write(struct file
* file
, const char * buf
,
657 size_t count
, loff_t
*ppos
)
661 struct task_struct
*task
= proc_task(file
->f_dentry
->d_inode
);
662 unsigned long dst
= *ppos
;
664 if (!MAY_PTRACE(task
) || !may_ptrace_attach(task
))
667 page
= (char *)__get_free_page(GFP_USER
);
672 int this_len
, retval
;
674 this_len
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
675 if (copy_from_user(page
, buf
, this_len
)) {
679 retval
= access_process_vm(task
, dst
, page
, this_len
, 1);
691 free_page((unsigned long) page
);
696 static loff_t
mem_lseek(struct file
* file
, loff_t offset
, int orig
)
700 file
->f_pos
= offset
;
703 file
->f_pos
+= offset
;
708 force_successful_syscall_return();
712 static struct file_operations proc_mem_operations
= {
719 static ssize_t
oom_adjust_read(struct file
*file
, char __user
*buf
,
720 size_t count
, loff_t
*ppos
)
722 struct task_struct
*task
= proc_task(file
->f_dentry
->d_inode
);
725 int oom_adjust
= task
->oomkilladj
;
726 loff_t __ppos
= *ppos
;
728 len
= sprintf(buffer
, "%i\n", oom_adjust
);
731 if (count
> len
-__ppos
)
733 if (copy_to_user(buf
, buffer
+ __ppos
, count
))
735 *ppos
= __ppos
+ count
;
739 static ssize_t
oom_adjust_write(struct file
*file
, const char __user
*buf
,
740 size_t count
, loff_t
*ppos
)
742 struct task_struct
*task
= proc_task(file
->f_dentry
->d_inode
);
743 char buffer
[8], *end
;
746 if (!capable(CAP_SYS_RESOURCE
))
748 memset(buffer
, 0, 8);
751 if (copy_from_user(buffer
, buf
, count
))
753 oom_adjust
= simple_strtol(buffer
, &end
, 0);
754 if ((oom_adjust
< -16 || oom_adjust
> 15) && oom_adjust
!= OOM_DISABLE
)
758 task
->oomkilladj
= oom_adjust
;
759 if (end
- buffer
== 0)
764 static struct file_operations proc_oom_adjust_operations
= {
765 .read
= oom_adjust_read
,
766 .write
= oom_adjust_write
,
769 static struct inode_operations proc_mem_inode_operations
= {
770 .permission
= proc_permission
,
773 #ifdef CONFIG_AUDITSYSCALL
775 static ssize_t
proc_loginuid_read(struct file
* file
, char __user
* buf
,
776 size_t count
, loff_t
*ppos
)
778 struct inode
* inode
= file
->f_dentry
->d_inode
;
779 struct task_struct
*task
= proc_task(inode
);
781 char tmpbuf
[TMPBUFLEN
];
783 length
= scnprintf(tmpbuf
, TMPBUFLEN
, "%u",
784 audit_get_loginuid(task
->audit_context
));
785 return simple_read_from_buffer(buf
, count
, ppos
, tmpbuf
, length
);
788 static ssize_t
proc_loginuid_write(struct file
* file
, const char __user
* buf
,
789 size_t count
, loff_t
*ppos
)
791 struct inode
* inode
= file
->f_dentry
->d_inode
;
794 struct task_struct
*task
= proc_task(inode
);
797 if (!capable(CAP_AUDIT_CONTROL
))
803 if (count
> PAGE_SIZE
)
807 /* No partial writes. */
810 page
= (char*)__get_free_page(GFP_USER
);
814 if (copy_from_user(page
, buf
, count
))
817 loginuid
= simple_strtoul(page
, &tmp
, 10);
823 length
= audit_set_loginuid(task
, loginuid
);
824 if (likely(length
== 0))
828 free_page((unsigned long) page
);
832 static struct file_operations proc_loginuid_operations
= {
833 .read
= proc_loginuid_read
,
834 .write
= proc_loginuid_write
,
838 #ifdef CONFIG_SECCOMP
839 static ssize_t
seccomp_read(struct file
*file
, char __user
*buf
,
840 size_t count
, loff_t
*ppos
)
842 struct task_struct
*tsk
= proc_task(file
->f_dentry
->d_inode
);
844 loff_t __ppos
= *ppos
;
847 /* no need to print the trailing zero, so use only len */
848 len
= sprintf(__buf
, "%u\n", tsk
->seccomp
.mode
);
851 if (count
> len
- __ppos
)
852 count
= len
- __ppos
;
853 if (copy_to_user(buf
, __buf
+ __ppos
, count
))
855 *ppos
= __ppos
+ count
;
859 static ssize_t
seccomp_write(struct file
*file
, const char __user
*buf
,
860 size_t count
, loff_t
*ppos
)
862 struct task_struct
*tsk
= proc_task(file
->f_dentry
->d_inode
);
863 char __buf
[20], *end
;
864 unsigned int seccomp_mode
;
866 /* can set it only once to be even more secure */
867 if (unlikely(tsk
->seccomp
.mode
))
870 memset(__buf
, 0, sizeof(__buf
));
871 count
= min(count
, sizeof(__buf
) - 1);
872 if (copy_from_user(__buf
, buf
, count
))
874 seccomp_mode
= simple_strtoul(__buf
, &end
, 0);
877 if (seccomp_mode
&& seccomp_mode
<= NR_SECCOMP_MODES
) {
878 tsk
->seccomp
.mode
= seccomp_mode
;
879 set_tsk_thread_flag(tsk
, TIF_SECCOMP
);
882 if (unlikely(!(end
- __buf
)))
887 static struct file_operations proc_seccomp_operations
= {
888 .read
= seccomp_read
,
889 .write
= seccomp_write
,
891 #endif /* CONFIG_SECCOMP */
893 static int proc_pid_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
895 struct inode
*inode
= dentry
->d_inode
;
898 /* We don't need a base pointer in the /proc filesystem */
901 if (current
->fsuid
!= inode
->i_uid
&& !capable(CAP_DAC_OVERRIDE
))
903 error
= proc_check_root(inode
);
907 error
= PROC_I(inode
)->op
.proc_get_link(inode
, &nd
->dentry
, &nd
->mnt
);
908 nd
->last_type
= LAST_BIND
;
913 static int do_proc_readlink(struct dentry
*dentry
, struct vfsmount
*mnt
,
914 char __user
*buffer
, int buflen
)
916 struct inode
* inode
;
917 char *tmp
= (char*)__get_free_page(GFP_KERNEL
), *path
;
923 inode
= dentry
->d_inode
;
924 path
= d_path(dentry
, mnt
, tmp
, PAGE_SIZE
);
928 len
= tmp
+ PAGE_SIZE
- 1 - path
;
932 if (copy_to_user(buffer
, path
, len
))
935 free_page((unsigned long)tmp
);
939 static int proc_pid_readlink(struct dentry
* dentry
, char __user
* buffer
, int buflen
)
942 struct inode
*inode
= dentry
->d_inode
;
944 struct vfsmount
*mnt
= NULL
;
948 if (current
->fsuid
!= inode
->i_uid
&& !capable(CAP_DAC_OVERRIDE
))
950 error
= proc_check_root(inode
);
954 error
= PROC_I(inode
)->op
.proc_get_link(inode
, &de
, &mnt
);
958 error
= do_proc_readlink(de
, mnt
, buffer
, buflen
);
966 static struct inode_operations proc_pid_link_inode_operations
= {
967 .readlink
= proc_pid_readlink
,
968 .follow_link
= proc_pid_follow_link
973 static int proc_readfd(struct file
* filp
, void * dirent
, filldir_t filldir
)
975 struct inode
*inode
= filp
->f_dentry
->d_inode
;
976 struct task_struct
*p
= proc_task(inode
);
977 unsigned int fd
, tid
, ino
;
980 struct files_struct
* files
;
991 if (filldir(dirent
, ".", 1, 0, inode
->i_ino
, DT_DIR
) < 0)
995 ino
= fake_ino(tid
, PROC_TID_INO
);
996 if (filldir(dirent
, "..", 2, 1, ino
, DT_DIR
) < 0)
1000 files
= get_files_struct(p
);
1003 spin_lock(&files
->file_lock
);
1004 for (fd
= filp
->f_pos
-2;
1005 fd
< files
->max_fds
;
1006 fd
++, filp
->f_pos
++) {
1009 if (!fcheck_files(files
, fd
))
1011 spin_unlock(&files
->file_lock
);
1017 buf
[j
] = '0' + (i
% 10);
1021 ino
= fake_ino(tid
, PROC_TID_FD_DIR
+ fd
);
1022 if (filldir(dirent
, buf
+j
, NUMBUF
-j
, fd
+2, ino
, DT_LNK
) < 0) {
1023 spin_lock(&files
->file_lock
);
1026 spin_lock(&files
->file_lock
);
1028 spin_unlock(&files
->file_lock
);
1029 put_files_struct(files
);
1035 static int proc_pident_readdir(struct file
*filp
,
1036 void *dirent
, filldir_t filldir
,
1037 struct pid_entry
*ents
, unsigned int nents
)
1041 struct dentry
*dentry
= filp
->f_dentry
;
1042 struct inode
*inode
= dentry
->d_inode
;
1043 struct pid_entry
*p
;
1048 if (!pid_alive(proc_task(inode
)))
1052 pid
= proc_task(inode
)->pid
;
1057 if (filldir(dirent
, ".", 1, i
, ino
, DT_DIR
) < 0)
1063 ino
= parent_ino(dentry
);
1064 if (filldir(dirent
, "..", 2, i
, ino
, DT_DIR
) < 0)
1077 if (filldir(dirent
, p
->name
, p
->len
, filp
->f_pos
,
1078 fake_ino(pid
, p
->type
), p
->mode
>> 12) < 0)
1090 static int proc_tgid_base_readdir(struct file
* filp
,
1091 void * dirent
, filldir_t filldir
)
1093 return proc_pident_readdir(filp
,dirent
,filldir
,
1094 tgid_base_stuff
,ARRAY_SIZE(tgid_base_stuff
));
1097 static int proc_tid_base_readdir(struct file
* filp
,
1098 void * dirent
, filldir_t filldir
)
1100 return proc_pident_readdir(filp
,dirent
,filldir
,
1101 tid_base_stuff
,ARRAY_SIZE(tid_base_stuff
));
1104 /* building an inode */
1106 static int task_dumpable(struct task_struct
*task
)
1109 struct mm_struct
*mm
;
1114 dumpable
= mm
->dumpable
;
1122 static struct inode
*proc_pid_make_inode(struct super_block
* sb
, struct task_struct
*task
, int ino
)
1124 struct inode
* inode
;
1125 struct proc_inode
*ei
;
1127 /* We need a new inode */
1129 inode
= new_inode(sb
);
1136 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
1137 inode
->i_ino
= fake_ino(task
->pid
, ino
);
1139 if (!pid_alive(task
))
1143 * grab the reference to task.
1145 get_task_struct(task
);
1150 if (ino
== PROC_TGID_INO
|| ino
== PROC_TID_INO
|| task_dumpable(task
)) {
1151 inode
->i_uid
= task
->euid
;
1152 inode
->i_gid
= task
->egid
;
1154 security_task_to_inode(task
, inode
);
1168 * Exceptional case: normally we are not allowed to unhash a busy
1169 * directory. In this case, however, we can do it - no aliasing problems
1170 * due to the way we treat inodes.
1172 * Rewrite the inode's ownerships here because the owning task may have
1173 * performed a setuid(), etc.
1175 static int pid_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
1177 struct inode
*inode
= dentry
->d_inode
;
1178 struct task_struct
*task
= proc_task(inode
);
1179 if (pid_alive(task
)) {
1180 if (proc_type(inode
) == PROC_TGID_INO
|| proc_type(inode
) == PROC_TID_INO
|| task_dumpable(task
)) {
1181 inode
->i_uid
= task
->euid
;
1182 inode
->i_gid
= task
->egid
;
1187 security_task_to_inode(task
, inode
);
1194 static int tid_fd_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
1196 struct inode
*inode
= dentry
->d_inode
;
1197 struct task_struct
*task
= proc_task(inode
);
1198 int fd
= proc_type(inode
) - PROC_TID_FD_DIR
;
1199 struct files_struct
*files
;
1201 files
= get_files_struct(task
);
1203 spin_lock(&files
->file_lock
);
1204 if (fcheck_files(files
, fd
)) {
1205 spin_unlock(&files
->file_lock
);
1206 put_files_struct(files
);
1207 if (task_dumpable(task
)) {
1208 inode
->i_uid
= task
->euid
;
1209 inode
->i_gid
= task
->egid
;
1214 security_task_to_inode(task
, inode
);
1217 spin_unlock(&files
->file_lock
);
1218 put_files_struct(files
);
1224 static void pid_base_iput(struct dentry
*dentry
, struct inode
*inode
)
1226 struct task_struct
*task
= proc_task(inode
);
1227 spin_lock(&task
->proc_lock
);
1228 if (task
->proc_dentry
== dentry
)
1229 task
->proc_dentry
= NULL
;
1230 spin_unlock(&task
->proc_lock
);
1234 static int pid_delete_dentry(struct dentry
* dentry
)
1236 /* Is the task we represent dead?
1237 * If so, then don't put the dentry on the lru list,
1238 * kill it immediately.
1240 return !pid_alive(proc_task(dentry
->d_inode
));
1243 static struct dentry_operations tid_fd_dentry_operations
=
1245 .d_revalidate
= tid_fd_revalidate
,
1246 .d_delete
= pid_delete_dentry
,
1249 static struct dentry_operations pid_dentry_operations
=
1251 .d_revalidate
= pid_revalidate
,
1252 .d_delete
= pid_delete_dentry
,
1255 static struct dentry_operations pid_base_dentry_operations
=
1257 .d_revalidate
= pid_revalidate
,
1258 .d_iput
= pid_base_iput
,
1259 .d_delete
= pid_delete_dentry
,
1264 static unsigned name_to_int(struct dentry
*dentry
)
1266 const char *name
= dentry
->d_name
.name
;
1267 int len
= dentry
->d_name
.len
;
1270 if (len
> 1 && *name
== '0')
1273 unsigned c
= *name
++ - '0';
1276 if (n
>= (~0U-9)/10)
1287 static struct dentry
*proc_lookupfd(struct inode
* dir
, struct dentry
* dentry
, struct nameidata
*nd
)
1289 struct task_struct
*task
= proc_task(dir
);
1290 unsigned fd
= name_to_int(dentry
);
1292 struct files_struct
* files
;
1293 struct inode
*inode
;
1294 struct proc_inode
*ei
;
1298 if (!pid_alive(task
))
1301 inode
= proc_pid_make_inode(dir
->i_sb
, task
, PROC_TID_FD_DIR
+fd
);
1305 files
= get_files_struct(task
);
1308 inode
->i_mode
= S_IFLNK
;
1309 spin_lock(&files
->file_lock
);
1310 file
= fcheck_files(files
, fd
);
1313 if (file
->f_mode
& 1)
1314 inode
->i_mode
|= S_IRUSR
| S_IXUSR
;
1315 if (file
->f_mode
& 2)
1316 inode
->i_mode
|= S_IWUSR
| S_IXUSR
;
1317 spin_unlock(&files
->file_lock
);
1318 put_files_struct(files
);
1319 inode
->i_op
= &proc_pid_link_inode_operations
;
1321 ei
->op
.proc_get_link
= proc_fd_link
;
1322 dentry
->d_op
= &tid_fd_dentry_operations
;
1323 d_add(dentry
, inode
);
1327 spin_unlock(&files
->file_lock
);
1328 put_files_struct(files
);
1332 return ERR_PTR(-ENOENT
);
1335 static int proc_task_readdir(struct file
* filp
, void * dirent
, filldir_t filldir
);
1336 static struct dentry
*proc_task_lookup(struct inode
*dir
, struct dentry
* dentry
, struct nameidata
*nd
);
1338 static struct file_operations proc_fd_operations
= {
1339 .read
= generic_read_dir
,
1340 .readdir
= proc_readfd
,
1343 static struct file_operations proc_task_operations
= {
1344 .read
= generic_read_dir
,
1345 .readdir
= proc_task_readdir
,
1349 * proc directories can do almost nothing..
1351 static struct inode_operations proc_fd_inode_operations
= {
1352 .lookup
= proc_lookupfd
,
1353 .permission
= proc_permission
,
1356 static struct inode_operations proc_task_inode_operations
= {
1357 .lookup
= proc_task_lookup
,
1358 .permission
= proc_permission
,
1361 #ifdef CONFIG_SECURITY
1362 static ssize_t
proc_pid_attr_read(struct file
* file
, char __user
* buf
,
1363 size_t count
, loff_t
*ppos
)
1365 struct inode
* inode
= file
->f_dentry
->d_inode
;
1368 struct task_struct
*task
= proc_task(inode
);
1370 if (count
> PAGE_SIZE
)
1372 if (!(page
= __get_free_page(GFP_KERNEL
)))
1375 length
= security_getprocattr(task
,
1376 (char*)file
->f_dentry
->d_name
.name
,
1377 (void*)page
, count
);
1379 length
= simple_read_from_buffer(buf
, count
, ppos
, (char *)page
, length
);
1384 static ssize_t
proc_pid_attr_write(struct file
* file
, const char __user
* buf
,
1385 size_t count
, loff_t
*ppos
)
1387 struct inode
* inode
= file
->f_dentry
->d_inode
;
1390 struct task_struct
*task
= proc_task(inode
);
1392 if (count
> PAGE_SIZE
)
1395 /* No partial writes. */
1398 page
= (char*)__get_free_page(GFP_USER
);
1402 if (copy_from_user(page
, buf
, count
))
1405 length
= security_setprocattr(task
,
1406 (char*)file
->f_dentry
->d_name
.name
,
1407 (void*)page
, count
);
1409 free_page((unsigned long) page
);
1413 static struct file_operations proc_pid_attr_operations
= {
1414 .read
= proc_pid_attr_read
,
1415 .write
= proc_pid_attr_write
,
1418 static struct file_operations proc_tid_attr_operations
;
1419 static struct inode_operations proc_tid_attr_inode_operations
;
1420 static struct file_operations proc_tgid_attr_operations
;
1421 static struct inode_operations proc_tgid_attr_inode_operations
;
1424 static int get_tid_list(int index
, unsigned int *tids
, struct inode
*dir
);
1427 static struct dentry
*proc_pident_lookup(struct inode
*dir
,
1428 struct dentry
*dentry
,
1429 struct pid_entry
*ents
)
1431 struct inode
*inode
;
1433 struct task_struct
*task
= proc_task(dir
);
1434 struct pid_entry
*p
;
1435 struct proc_inode
*ei
;
1440 if (!pid_alive(task
))
1443 for (p
= ents
; p
->name
; p
++) {
1444 if (p
->len
!= dentry
->d_name
.len
)
1446 if (!memcmp(dentry
->d_name
.name
, p
->name
, p
->len
))
1453 inode
= proc_pid_make_inode(dir
->i_sb
, task
, p
->type
);
1458 inode
->i_mode
= p
->mode
;
1460 * Yes, it does not scale. And it should not. Don't add
1461 * new entries into /proc/<tgid>/ without very good reasons.
1464 case PROC_TGID_TASK
:
1465 inode
->i_nlink
= 2 + get_tid_list(2, NULL
, dir
);
1466 inode
->i_op
= &proc_task_inode_operations
;
1467 inode
->i_fop
= &proc_task_operations
;
1472 inode
->i_op
= &proc_fd_inode_operations
;
1473 inode
->i_fop
= &proc_fd_operations
;
1477 inode
->i_op
= &proc_pid_link_inode_operations
;
1478 ei
->op
.proc_get_link
= proc_exe_link
;
1482 inode
->i_op
= &proc_pid_link_inode_operations
;
1483 ei
->op
.proc_get_link
= proc_cwd_link
;
1486 case PROC_TGID_ROOT
:
1487 inode
->i_op
= &proc_pid_link_inode_operations
;
1488 ei
->op
.proc_get_link
= proc_root_link
;
1490 case PROC_TID_ENVIRON
:
1491 case PROC_TGID_ENVIRON
:
1492 inode
->i_fop
= &proc_info_file_operations
;
1493 ei
->op
.proc_read
= proc_pid_environ
;
1496 case PROC_TGID_AUXV
:
1497 inode
->i_fop
= &proc_info_file_operations
;
1498 ei
->op
.proc_read
= proc_pid_auxv
;
1500 case PROC_TID_STATUS
:
1501 case PROC_TGID_STATUS
:
1502 inode
->i_fop
= &proc_info_file_operations
;
1503 ei
->op
.proc_read
= proc_pid_status
;
1506 inode
->i_fop
= &proc_info_file_operations
;
1507 ei
->op
.proc_read
= proc_tid_stat
;
1509 case PROC_TGID_STAT
:
1510 inode
->i_fop
= &proc_info_file_operations
;
1511 ei
->op
.proc_read
= proc_tgid_stat
;
1513 case PROC_TID_CMDLINE
:
1514 case PROC_TGID_CMDLINE
:
1515 inode
->i_fop
= &proc_info_file_operations
;
1516 ei
->op
.proc_read
= proc_pid_cmdline
;
1518 case PROC_TID_STATM
:
1519 case PROC_TGID_STATM
:
1520 inode
->i_fop
= &proc_info_file_operations
;
1521 ei
->op
.proc_read
= proc_pid_statm
;
1524 case PROC_TGID_MAPS
:
1525 inode
->i_fop
= &proc_maps_operations
;
1529 inode
->i_op
= &proc_mem_inode_operations
;
1530 inode
->i_fop
= &proc_mem_operations
;
1532 #ifdef CONFIG_SECCOMP
1533 case PROC_TID_SECCOMP
:
1534 case PROC_TGID_SECCOMP
:
1535 inode
->i_fop
= &proc_seccomp_operations
;
1537 #endif /* CONFIG_SECCOMP */
1538 case PROC_TID_MOUNTS
:
1539 case PROC_TGID_MOUNTS
:
1540 inode
->i_fop
= &proc_mounts_operations
;
1542 #ifdef CONFIG_SECURITY
1545 inode
->i_op
= &proc_tid_attr_inode_operations
;
1546 inode
->i_fop
= &proc_tid_attr_operations
;
1548 case PROC_TGID_ATTR
:
1550 inode
->i_op
= &proc_tgid_attr_inode_operations
;
1551 inode
->i_fop
= &proc_tgid_attr_operations
;
1553 case PROC_TID_ATTR_CURRENT
:
1554 case PROC_TGID_ATTR_CURRENT
:
1555 case PROC_TID_ATTR_PREV
:
1556 case PROC_TGID_ATTR_PREV
:
1557 case PROC_TID_ATTR_EXEC
:
1558 case PROC_TGID_ATTR_EXEC
:
1559 case PROC_TID_ATTR_FSCREATE
:
1560 case PROC_TGID_ATTR_FSCREATE
:
1561 inode
->i_fop
= &proc_pid_attr_operations
;
1564 #ifdef CONFIG_KALLSYMS
1565 case PROC_TID_WCHAN
:
1566 case PROC_TGID_WCHAN
:
1567 inode
->i_fop
= &proc_info_file_operations
;
1568 ei
->op
.proc_read
= proc_pid_wchan
;
1571 #ifdef CONFIG_SCHEDSTATS
1572 case PROC_TID_SCHEDSTAT
:
1573 case PROC_TGID_SCHEDSTAT
:
1574 inode
->i_fop
= &proc_info_file_operations
;
1575 ei
->op
.proc_read
= proc_pid_schedstat
;
1578 #ifdef CONFIG_CPUSETS
1579 case PROC_TID_CPUSET
:
1580 case PROC_TGID_CPUSET
:
1581 inode
->i_fop
= &proc_cpuset_operations
;
1584 case PROC_TID_OOM_SCORE
:
1585 case PROC_TGID_OOM_SCORE
:
1586 inode
->i_fop
= &proc_info_file_operations
;
1587 ei
->op
.proc_read
= proc_oom_score
;
1589 case PROC_TID_OOM_ADJUST
:
1590 case PROC_TGID_OOM_ADJUST
:
1591 inode
->i_fop
= &proc_oom_adjust_operations
;
1593 #ifdef CONFIG_AUDITSYSCALL
1594 case PROC_TID_LOGINUID
:
1595 case PROC_TGID_LOGINUID
:
1596 inode
->i_fop
= &proc_loginuid_operations
;
1600 printk("procfs: impossible type (%d)",p
->type
);
1602 return ERR_PTR(-EINVAL
);
1604 dentry
->d_op
= &pid_dentry_operations
;
1605 d_add(dentry
, inode
);
1609 return ERR_PTR(error
);
1612 static struct dentry
*proc_tgid_base_lookup(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
){
1613 return proc_pident_lookup(dir
, dentry
, tgid_base_stuff
);
1616 static struct dentry
*proc_tid_base_lookup(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
){
1617 return proc_pident_lookup(dir
, dentry
, tid_base_stuff
);
1620 static struct file_operations proc_tgid_base_operations
= {
1621 .read
= generic_read_dir
,
1622 .readdir
= proc_tgid_base_readdir
,
1625 static struct file_operations proc_tid_base_operations
= {
1626 .read
= generic_read_dir
,
1627 .readdir
= proc_tid_base_readdir
,
1630 static struct inode_operations proc_tgid_base_inode_operations
= {
1631 .lookup
= proc_tgid_base_lookup
,
1634 static struct inode_operations proc_tid_base_inode_operations
= {
1635 .lookup
= proc_tid_base_lookup
,
1638 #ifdef CONFIG_SECURITY
1639 static int proc_tgid_attr_readdir(struct file
* filp
,
1640 void * dirent
, filldir_t filldir
)
1642 return proc_pident_readdir(filp
,dirent
,filldir
,
1643 tgid_attr_stuff
,ARRAY_SIZE(tgid_attr_stuff
));
1646 static int proc_tid_attr_readdir(struct file
* filp
,
1647 void * dirent
, filldir_t filldir
)
1649 return proc_pident_readdir(filp
,dirent
,filldir
,
1650 tid_attr_stuff
,ARRAY_SIZE(tid_attr_stuff
));
1653 static struct file_operations proc_tgid_attr_operations
= {
1654 .read
= generic_read_dir
,
1655 .readdir
= proc_tgid_attr_readdir
,
1658 static struct file_operations proc_tid_attr_operations
= {
1659 .read
= generic_read_dir
,
1660 .readdir
= proc_tid_attr_readdir
,
1663 static struct dentry
*proc_tgid_attr_lookup(struct inode
*dir
,
1664 struct dentry
*dentry
, struct nameidata
*nd
)
1666 return proc_pident_lookup(dir
, dentry
, tgid_attr_stuff
);
1669 static struct dentry
*proc_tid_attr_lookup(struct inode
*dir
,
1670 struct dentry
*dentry
, struct nameidata
*nd
)
1672 return proc_pident_lookup(dir
, dentry
, tid_attr_stuff
);
1675 static struct inode_operations proc_tgid_attr_inode_operations
= {
1676 .lookup
= proc_tgid_attr_lookup
,
1679 static struct inode_operations proc_tid_attr_inode_operations
= {
1680 .lookup
= proc_tid_attr_lookup
,
1687 static int proc_self_readlink(struct dentry
*dentry
, char __user
*buffer
,
1691 sprintf(tmp
, "%d", current
->tgid
);
1692 return vfs_readlink(dentry
,buffer
,buflen
,tmp
);
1695 static int proc_self_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1698 sprintf(tmp
, "%d", current
->tgid
);
1699 return vfs_follow_link(nd
,tmp
);
1702 static struct inode_operations proc_self_inode_operations
= {
1703 .readlink
= proc_self_readlink
,
1704 .follow_link
= proc_self_follow_link
,
1708 * proc_pid_unhash - Unhash /proc/@pid entry from the dcache.
1709 * @p: task that should be flushed.
1711 * Drops the /proc/@pid dcache entry from the hash chains.
1713 * Dropping /proc/@pid entries and detach_pid must be synchroneous,
1714 * otherwise e.g. /proc/@pid/exe might point to the wrong executable,
1715 * if the pid value is immediately reused. This is enforced by
1716 * - caller must acquire spin_lock(p->proc_lock)
1717 * - must be called before detach_pid()
1718 * - proc_pid_lookup acquires proc_lock, and checks that
1719 * the target is not dead by looking at the attach count
1723 struct dentry
*proc_pid_unhash(struct task_struct
*p
)
1725 struct dentry
*proc_dentry
;
1727 proc_dentry
= p
->proc_dentry
;
1728 if (proc_dentry
!= NULL
) {
1730 spin_lock(&dcache_lock
);
1731 spin_lock(&proc_dentry
->d_lock
);
1732 if (!d_unhashed(proc_dentry
)) {
1733 dget_locked(proc_dentry
);
1734 __d_drop(proc_dentry
);
1735 spin_unlock(&proc_dentry
->d_lock
);
1737 spin_unlock(&proc_dentry
->d_lock
);
1740 spin_unlock(&dcache_lock
);
1746 * proc_pid_flush - recover memory used by stale /proc/@pid/x entries
1747 * @proc_dentry: directoy to prune.
1749 * Shrink the /proc directory that was used by the just killed thread.
1752 void proc_pid_flush(struct dentry
*proc_dentry
)
1755 if(proc_dentry
!= NULL
) {
1756 shrink_dcache_parent(proc_dentry
);
1762 struct dentry
*proc_pid_lookup(struct inode
*dir
, struct dentry
* dentry
, struct nameidata
*nd
)
1764 struct task_struct
*task
;
1765 struct inode
*inode
;
1766 struct proc_inode
*ei
;
1770 if (dentry
->d_name
.len
== 4 && !memcmp(dentry
->d_name
.name
,"self",4)) {
1771 inode
= new_inode(dir
->i_sb
);
1773 return ERR_PTR(-ENOMEM
);
1775 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
1776 inode
->i_ino
= fake_ino(0, PROC_TGID_INO
);
1778 inode
->i_mode
= S_IFLNK
|S_IRWXUGO
;
1779 inode
->i_uid
= inode
->i_gid
= 0;
1781 inode
->i_op
= &proc_self_inode_operations
;
1782 d_add(dentry
, inode
);
1785 tgid
= name_to_int(dentry
);
1789 read_lock(&tasklist_lock
);
1790 task
= find_task_by_pid(tgid
);
1792 get_task_struct(task
);
1793 read_unlock(&tasklist_lock
);
1797 inode
= proc_pid_make_inode(dir
->i_sb
, task
, PROC_TGID_INO
);
1801 put_task_struct(task
);
1804 inode
->i_mode
= S_IFDIR
|S_IRUGO
|S_IXUGO
;
1805 inode
->i_op
= &proc_tgid_base_inode_operations
;
1806 inode
->i_fop
= &proc_tgid_base_operations
;
1807 inode
->i_flags
|=S_IMMUTABLE
;
1808 #ifdef CONFIG_SECURITY
1814 dentry
->d_op
= &pid_base_dentry_operations
;
1817 d_add(dentry
, inode
);
1818 spin_lock(&task
->proc_lock
);
1819 task
->proc_dentry
= dentry
;
1820 if (!pid_alive(task
)) {
1821 dentry
= proc_pid_unhash(task
);
1824 spin_unlock(&task
->proc_lock
);
1826 put_task_struct(task
);
1828 proc_pid_flush(dentry
);
1833 return ERR_PTR(-ENOENT
);
1837 static struct dentry
*proc_task_lookup(struct inode
*dir
, struct dentry
* dentry
, struct nameidata
*nd
)
1839 struct task_struct
*task
;
1840 struct task_struct
*leader
= proc_task(dir
);
1841 struct inode
*inode
;
1844 tid
= name_to_int(dentry
);
1848 read_lock(&tasklist_lock
);
1849 task
= find_task_by_pid(tid
);
1851 get_task_struct(task
);
1852 read_unlock(&tasklist_lock
);
1855 if (leader
->tgid
!= task
->tgid
)
1858 inode
= proc_pid_make_inode(dir
->i_sb
, task
, PROC_TID_INO
);
1863 inode
->i_mode
= S_IFDIR
|S_IRUGO
|S_IXUGO
;
1864 inode
->i_op
= &proc_tid_base_inode_operations
;
1865 inode
->i_fop
= &proc_tid_base_operations
;
1866 inode
->i_flags
|=S_IMMUTABLE
;
1867 #ifdef CONFIG_SECURITY
1873 dentry
->d_op
= &pid_base_dentry_operations
;
1875 d_add(dentry
, inode
);
1877 put_task_struct(task
);
1880 put_task_struct(task
);
1882 return ERR_PTR(-ENOENT
);
1885 #define PROC_NUMBUF 10
1886 #define PROC_MAXPIDS 20
1889 * Get a few tgid's to return for filldir - we need to hold the
1890 * tasklist lock while doing this, and we must release it before
1891 * we actually do the filldir itself, so we use a temp buffer..
1893 static int get_tgid_list(int index
, unsigned long version
, unsigned int *tgids
)
1895 struct task_struct
*p
;
1899 read_lock(&tasklist_lock
);
1902 p
= find_task_by_pid(version
);
1903 if (p
&& !thread_group_leader(p
))
1910 p
= next_task(&init_task
);
1912 for ( ; p
!= &init_task
; p
= next_task(p
)) {
1918 tgids
[nr_tgids
] = tgid
;
1920 if (nr_tgids
>= PROC_MAXPIDS
)
1923 read_unlock(&tasklist_lock
);
1928 * Get a few tid's to return for filldir - we need to hold the
1929 * tasklist lock while doing this, and we must release it before
1930 * we actually do the filldir itself, so we use a temp buffer..
1932 static int get_tid_list(int index
, unsigned int *tids
, struct inode
*dir
)
1934 struct task_struct
*leader_task
= proc_task(dir
);
1935 struct task_struct
*task
= leader_task
;
1939 read_lock(&tasklist_lock
);
1941 * The starting point task (leader_task) might be an already
1942 * unlinked task, which cannot be used to access the task-list
1943 * via next_thread().
1945 if (pid_alive(task
)) do {
1946 int tid
= task
->pid
;
1951 tids
[nr_tids
] = tid
;
1953 if (nr_tids
>= PROC_MAXPIDS
)
1955 } while ((task
= next_thread(task
)) != leader_task
);
1956 read_unlock(&tasklist_lock
);
1960 /* for the /proc/ directory itself, after non-process stuff has been done */
1961 int proc_pid_readdir(struct file
* filp
, void * dirent
, filldir_t filldir
)
1963 unsigned int tgid_array
[PROC_MAXPIDS
];
1964 char buf
[PROC_NUMBUF
];
1965 unsigned int nr
= filp
->f_pos
- FIRST_PROCESS_ENTRY
;
1966 unsigned int nr_tgids
, i
;
1970 ino_t ino
= fake_ino(0,PROC_TGID_INO
);
1971 if (filldir(dirent
, "self", 4, filp
->f_pos
, ino
, DT_LNK
) < 0)
1977 /* f_version caches the tgid value that the last readdir call couldn't
1978 * return. lseek aka telldir automagically resets f_version to 0.
1980 next_tgid
= filp
->f_version
;
1981 filp
->f_version
= 0;
1983 nr_tgids
= get_tgid_list(nr
, next_tgid
, tgid_array
);
1985 /* no more entries ! */
1990 /* do not use the last found pid, reserve it for next_tgid */
1991 if (nr_tgids
== PROC_MAXPIDS
) {
1993 next_tgid
= tgid_array
[nr_tgids
];
1996 for (i
=0;i
<nr_tgids
;i
++) {
1997 int tgid
= tgid_array
[i
];
1998 ino_t ino
= fake_ino(tgid
,PROC_TGID_INO
);
1999 unsigned long j
= PROC_NUMBUF
;
2002 buf
[--j
] = '0' + (tgid
% 10);
2003 while ((tgid
/= 10) != 0);
2005 if (filldir(dirent
, buf
+j
, PROC_NUMBUF
-j
, filp
->f_pos
, ino
, DT_DIR
) < 0) {
2006 /* returning this tgid failed, save it as the first
2007 * pid for the next readir call */
2008 filp
->f_version
= tgid_array
[i
];
2019 /* for the /proc/TGID/task/ directories */
2020 static int proc_task_readdir(struct file
* filp
, void * dirent
, filldir_t filldir
)
2022 unsigned int tid_array
[PROC_MAXPIDS
];
2023 char buf
[PROC_NUMBUF
];
2024 unsigned int nr_tids
, i
;
2025 struct dentry
*dentry
= filp
->f_dentry
;
2026 struct inode
*inode
= dentry
->d_inode
;
2027 int retval
= -ENOENT
;
2029 unsigned long pos
= filp
->f_pos
; /* avoiding "long long" filp->f_pos */
2031 if (!pid_alive(proc_task(inode
)))
2038 if (filldir(dirent
, ".", 1, pos
, ino
, DT_DIR
) < 0)
2043 ino
= parent_ino(dentry
);
2044 if (filldir(dirent
, "..", 2, pos
, ino
, DT_DIR
) < 0)
2050 nr_tids
= get_tid_list(pos
, tid_array
, inode
);
2051 inode
->i_nlink
= pos
+ nr_tids
;
2053 for (i
= 0; i
< nr_tids
; i
++) {
2054 unsigned long j
= PROC_NUMBUF
;
2055 int tid
= tid_array
[i
];
2057 ino
= fake_ino(tid
,PROC_TID_INO
);
2060 buf
[--j
] = '0' + (tid
% 10);
2061 while ((tid
/= 10) != 0);
2063 if (filldir(dirent
, buf
+j
, PROC_NUMBUF
-j
, pos
, ino
, DT_DIR
) < 0)