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/init.h>
57 #include <linux/capability.h>
58 #include <linux/file.h>
59 #include <linux/string.h>
60 #include <linux/seq_file.h>
61 #include <linux/namei.h>
62 #include <linux/namespace.h>
64 #include <linux/smp_lock.h>
65 #include <linux/rcupdate.h>
66 #include <linux/kallsyms.h>
67 #include <linux/mount.h>
68 #include <linux/security.h>
69 #include <linux/ptrace.h>
70 #include <linux/seccomp.h>
71 #include <linux/cpuset.h>
72 #include <linux/audit.h>
73 #include <linux/poll.h>
77 * Implementing inode permission operations in /proc is almost
78 * certainly an error. Permission checks need to happen during
79 * each system call not at open time. The reason is that most of
80 * what we wish to check for permissions in /proc varies at runtime.
82 * The classic example of a problem is opening file descriptors
83 * in /proc for a task before it execs a suid executable.
87 * For hysterical raisins we keep the same inumbers as in the old procfs.
88 * Feel free to change the macro below - just keep the range distinct from
89 * inumbers of the rest of procfs (currently those are in 0x0000--0xffff).
90 * As soon as we'll get a separate superblock we will be able to forget
91 * about magical ranges too.
94 #define fake_ino(pid,ino) (((pid)<<16)|(ino))
96 enum pid_directory_inos {
101 #ifdef CONFIG_SECCOMP
116 PROC_TGID_MOUNTSTATS,
121 #ifdef CONFIG_SCHEDSTATS
124 #ifdef CONFIG_CPUSETS
127 #ifdef CONFIG_SECURITY
129 PROC_TGID_ATTR_CURRENT,
132 PROC_TGID_ATTR_FSCREATE,
133 PROC_TGID_ATTR_KEYCREATE,
134 PROC_TGID_ATTR_SOCKCREATE,
136 #ifdef CONFIG_AUDITSYSCALL
140 PROC_TGID_OOM_ADJUST,
144 #ifdef CONFIG_SECCOMP
164 #ifdef CONFIG_SCHEDSTATS
167 #ifdef CONFIG_CPUSETS
170 #ifdef CONFIG_SECURITY
172 PROC_TID_ATTR_CURRENT,
175 PROC_TID_ATTR_FSCREATE,
176 PROC_TID_ATTR_KEYCREATE,
177 PROC_TID_ATTR_SOCKCREATE,
179 #ifdef CONFIG_AUDITSYSCALL
185 /* Add new entries before this */
186 PROC_TID_FD_DIR = 0x8000, /* 0x8000-0xffff */
189 /* Worst case buffer size needed for holding an integer. */
190 #define PROC_NUMBUF 10
199 #define E(type,name,mode) {(type),sizeof(name)-1,(name),(mode)}
201 static struct pid_entry tgid_base_stuff[] = {
202 E(PROC_TGID_TASK, "task", S_IFDIR|S_IRUGO|S_IXUGO),
203 E(PROC_TGID_FD, "fd", S_IFDIR|S_IRUSR|S_IXUSR),
204 E(PROC_TGID_ENVIRON, "environ", S_IFREG|S_IRUSR),
205 E(PROC_TGID_AUXV, "auxv", S_IFREG|S_IRUSR),
206 E(PROC_TGID_STATUS, "status", S_IFREG|S_IRUGO),
207 E(PROC_TGID_CMDLINE, "cmdline", S_IFREG|S_IRUGO),
208 E(PROC_TGID_STAT, "stat", S_IFREG|S_IRUGO),
209 E(PROC_TGID_STATM, "statm", S_IFREG|S_IRUGO),
210 E(PROC_TGID_MAPS, "maps", S_IFREG|S_IRUGO),
212 E(PROC_TGID_NUMA_MAPS, "numa_maps", S_IFREG|S_IRUGO),
214 E(PROC_TGID_MEM, "mem", S_IFREG|S_IRUSR|S_IWUSR),
215 #ifdef CONFIG_SECCOMP
216 E(PROC_TGID_SECCOMP, "seccomp", S_IFREG|S_IRUSR|S_IWUSR),
218 E(PROC_TGID_CWD, "cwd", S_IFLNK|S_IRWXUGO),
219 E(PROC_TGID_ROOT, "root", S_IFLNK|S_IRWXUGO),
220 E(PROC_TGID_EXE, "exe", S_IFLNK|S_IRWXUGO),
221 E(PROC_TGID_MOUNTS, "mounts", S_IFREG|S_IRUGO),
222 E(PROC_TGID_MOUNTSTATS, "mountstats", S_IFREG|S_IRUSR),
224 E(PROC_TGID_SMAPS, "smaps", S_IFREG|S_IRUGO),
226 #ifdef CONFIG_SECURITY
227 E(PROC_TGID_ATTR, "attr", S_IFDIR|S_IRUGO|S_IXUGO),
229 #ifdef CONFIG_KALLSYMS
230 E(PROC_TGID_WCHAN, "wchan", S_IFREG|S_IRUGO),
232 #ifdef CONFIG_SCHEDSTATS
233 E(PROC_TGID_SCHEDSTAT, "schedstat", S_IFREG|S_IRUGO),
235 #ifdef CONFIG_CPUSETS
236 E(PROC_TGID_CPUSET, "cpuset", S_IFREG|S_IRUGO),
238 E(PROC_TGID_OOM_SCORE, "oom_score",S_IFREG|S_IRUGO),
239 E(PROC_TGID_OOM_ADJUST,"oom_adj", S_IFREG|S_IRUGO|S_IWUSR),
240 #ifdef CONFIG_AUDITSYSCALL
241 E(PROC_TGID_LOGINUID, "loginuid", S_IFREG|S_IWUSR|S_IRUGO),
245 static struct pid_entry tid_base_stuff[] = {
246 E(PROC_TID_FD, "fd", S_IFDIR|S_IRUSR|S_IXUSR),
247 E(PROC_TID_ENVIRON, "environ", S_IFREG|S_IRUSR),
248 E(PROC_TID_AUXV, "auxv", S_IFREG|S_IRUSR),
249 E(PROC_TID_STATUS, "status", S_IFREG|S_IRUGO),
250 E(PROC_TID_CMDLINE, "cmdline", S_IFREG|S_IRUGO),
251 E(PROC_TID_STAT, "stat", S_IFREG|S_IRUGO),
252 E(PROC_TID_STATM, "statm", S_IFREG|S_IRUGO),
253 E(PROC_TID_MAPS, "maps", S_IFREG|S_IRUGO),
255 E(PROC_TID_NUMA_MAPS, "numa_maps", S_IFREG|S_IRUGO),
257 E(PROC_TID_MEM, "mem", S_IFREG|S_IRUSR|S_IWUSR),
258 #ifdef CONFIG_SECCOMP
259 E(PROC_TID_SECCOMP, "seccomp", S_IFREG|S_IRUSR|S_IWUSR),
261 E(PROC_TID_CWD, "cwd", S_IFLNK|S_IRWXUGO),
262 E(PROC_TID_ROOT, "root", S_IFLNK|S_IRWXUGO),
263 E(PROC_TID_EXE, "exe", S_IFLNK|S_IRWXUGO),
264 E(PROC_TID_MOUNTS, "mounts", S_IFREG|S_IRUGO),
266 E(PROC_TID_SMAPS, "smaps", S_IFREG|S_IRUGO),
268 #ifdef CONFIG_SECURITY
269 E(PROC_TID_ATTR, "attr", S_IFDIR|S_IRUGO|S_IXUGO),
271 #ifdef CONFIG_KALLSYMS
272 E(PROC_TID_WCHAN, "wchan", S_IFREG|S_IRUGO),
274 #ifdef CONFIG_SCHEDSTATS
275 E(PROC_TID_SCHEDSTAT, "schedstat",S_IFREG|S_IRUGO),
277 #ifdef CONFIG_CPUSETS
278 E(PROC_TID_CPUSET, "cpuset", S_IFREG|S_IRUGO),
280 E(PROC_TID_OOM_SCORE, "oom_score",S_IFREG|S_IRUGO),
281 E(PROC_TID_OOM_ADJUST, "oom_adj", S_IFREG|S_IRUGO|S_IWUSR),
282 #ifdef CONFIG_AUDITSYSCALL
283 E(PROC_TID_LOGINUID, "loginuid", S_IFREG|S_IWUSR|S_IRUGO),
288 #ifdef CONFIG_SECURITY
289 static struct pid_entry tgid_attr_stuff[] = {
290 E(PROC_TGID_ATTR_CURRENT, "current", S_IFREG|S_IRUGO|S_IWUGO),
291 E(PROC_TGID_ATTR_PREV, "prev", S_IFREG|S_IRUGO),
292 E(PROC_TGID_ATTR_EXEC, "exec", S_IFREG|S_IRUGO|S_IWUGO),
293 E(PROC_TGID_ATTR_FSCREATE, "fscreate", S_IFREG|S_IRUGO|S_IWUGO),
294 E(PROC_TGID_ATTR_KEYCREATE, "keycreate", S_IFREG|S_IRUGO|S_IWUGO),
295 E(PROC_TGID_ATTR_SOCKCREATE, "sockcreate", S_IFREG|S_IRUGO|S_IWUGO),
298 static struct pid_entry tid_attr_stuff[] = {
299 E(PROC_TID_ATTR_CURRENT, "current", S_IFREG|S_IRUGO|S_IWUGO),
300 E(PROC_TID_ATTR_PREV, "prev", S_IFREG|S_IRUGO),
301 E(PROC_TID_ATTR_EXEC, "exec", S_IFREG|S_IRUGO|S_IWUGO),
302 E(PROC_TID_ATTR_FSCREATE, "fscreate", S_IFREG|S_IRUGO|S_IWUGO),
303 E(PROC_TID_ATTR_KEYCREATE, "keycreate", S_IFREG|S_IRUGO|S_IWUGO),
304 E(PROC_TID_ATTR_SOCKCREATE, "sockcreate", S_IFREG|S_IRUGO|S_IWUGO),
311 static int proc_fd_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt)
313 struct task_struct *task = get_proc_task(inode);
314 struct files_struct *files = NULL;
316 int fd = proc_fd(inode);
319 files = get_files_struct(task);
320 put_task_struct(task);
324 * We are not taking a ref to the file structure, so we must
327 spin_lock(&files->file_lock);
328 file = fcheck_files(files, fd);
330 *mnt = mntget(file->f_vfsmnt);
331 *dentry = dget(file->f_dentry);
332 spin_unlock(&files->file_lock);
333 put_files_struct(files);
336 spin_unlock(&files->file_lock);
337 put_files_struct(files);
342 static struct fs_struct *get_fs_struct(struct task_struct *task)
344 struct fs_struct *fs;
348 atomic_inc(&fs->count);
353 static int get_nr_threads(struct task_struct *tsk)
355 /* Must be called with the rcu_read_lock held */
359 if (lock_task_sighand(tsk, &flags)) {
360 count = atomic_read(&tsk->signal->count);
361 unlock_task_sighand(tsk, &flags);
366 static int proc_cwd_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt)
368 struct task_struct *task = get_proc_task(inode);
369 struct fs_struct *fs = NULL;
370 int result = -ENOENT;
373 fs = get_fs_struct(task);
374 put_task_struct(task);
377 read_lock(&fs->lock);
378 *mnt = mntget(fs->pwdmnt);
379 *dentry = dget(fs->pwd);
380 read_unlock(&fs->lock);
387 static int proc_root_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt)
389 struct task_struct *task = get_proc_task(inode);
390 struct fs_struct *fs = NULL;
391 int result = -ENOENT;
394 fs = get_fs_struct(task);
395 put_task_struct(task);
398 read_lock(&fs->lock);
399 *mnt = mntget(fs->rootmnt);
400 *dentry = dget(fs->root);
401 read_unlock(&fs->lock);
408 #define MAY_PTRACE(task) \
409 (task == current || \
410 (task->parent == current && \
411 (task->ptrace & PT_PTRACED) && \
412 (task->state == TASK_STOPPED || task->state == TASK_TRACED) && \
413 security_ptrace(current,task) == 0))
415 static int proc_pid_environ(struct task_struct *task, char * buffer)
418 struct mm_struct *mm = get_task_mm(task);
420 unsigned int len = mm->env_end - mm->env_start;
423 res = access_process_vm(task, mm->env_start, buffer, len, 0);
424 if (!ptrace_may_attach(task))
431 static int proc_pid_cmdline(struct task_struct *task, char * buffer)
435 struct mm_struct *mm = get_task_mm(task);
439 goto out_mm; /* Shh! No looking before we're done */
441 len = mm->arg_end - mm->arg_start;
446 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
448 // If the nul at the end of args has been overwritten, then
449 // assume application is using setproctitle(3).
450 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
451 len = strnlen(buffer, res);
455 len = mm->env_end - mm->env_start;
456 if (len > PAGE_SIZE - res)
457 len = PAGE_SIZE - res;
458 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
459 res = strnlen(buffer, res);
468 static int proc_pid_auxv(struct task_struct *task, char *buffer)
471 struct mm_struct *mm = get_task_mm(task);
473 unsigned int nwords = 0;
476 while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
477 res = nwords * sizeof(mm->saved_auxv[0]);
480 memcpy(buffer, mm->saved_auxv, res);
487 #ifdef CONFIG_KALLSYMS
489 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
490 * Returns the resolved symbol. If that fails, simply return the address.
492 static int proc_pid_wchan(struct task_struct *task, char *buffer)
495 const char *sym_name;
496 unsigned long wchan, size, offset;
497 char namebuf[KSYM_NAME_LEN+1];
499 wchan = get_wchan(task);
501 sym_name = kallsyms_lookup(wchan, &size, &offset, &modname, namebuf);
503 return sprintf(buffer, "%s", sym_name);
504 return sprintf(buffer, "%lu", wchan);
506 #endif /* CONFIG_KALLSYMS */
508 #ifdef CONFIG_SCHEDSTATS
510 * Provides /proc/PID/schedstat
512 static int proc_pid_schedstat(struct task_struct *task, char *buffer)
514 return sprintf(buffer, "%lu %lu %lu\n",
515 task->sched_info.cpu_time,
516 task->sched_info.run_delay,
517 task->sched_info.pcnt);
521 /* The badness from the OOM killer */
522 unsigned long badness(struct task_struct *p, unsigned long uptime);
523 static int proc_oom_score(struct task_struct *task, char *buffer)
525 unsigned long points;
526 struct timespec uptime;
528 do_posix_clock_monotonic_gettime(&uptime);
529 points = badness(task, uptime.tv_sec);
530 return sprintf(buffer, "%lu\n", points);
533 /************************************************************************/
534 /* Here the fs part begins */
535 /************************************************************************/
537 /* permission checks */
538 static int proc_fd_access_allowed(struct inode *inode)
540 struct task_struct *task;
542 /* Allow access to a task's file descriptors if it is us or we
543 * may use ptrace attach to the process and find out that
546 task = get_proc_task(inode);
548 allowed = ptrace_may_attach(task);
549 put_task_struct(task);
554 static int proc_setattr(struct dentry *dentry, struct iattr *attr)
557 struct inode *inode = dentry->d_inode;
559 if (attr->ia_valid & ATTR_MODE)
562 error = inode_change_ok(inode, attr);
564 error = security_inode_setattr(dentry, attr);
566 error = inode_setattr(inode, attr);
571 static struct inode_operations proc_def_inode_operations = {
572 .setattr = proc_setattr,
575 extern struct seq_operations mounts_op;
581 static int mounts_open(struct inode *inode, struct file *file)
583 struct task_struct *task = get_proc_task(inode);
584 struct namespace *namespace = NULL;
585 struct proc_mounts *p;
590 namespace = task->namespace;
592 get_namespace(namespace);
594 put_task_struct(task);
599 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
601 file->private_data = &p->m;
602 ret = seq_open(file, &mounts_op);
604 p->m.private = namespace;
605 p->event = namespace->event;
610 put_namespace(namespace);
615 static int mounts_release(struct inode *inode, struct file *file)
617 struct seq_file *m = file->private_data;
618 struct namespace *namespace = m->private;
619 put_namespace(namespace);
620 return seq_release(inode, file);
623 static unsigned mounts_poll(struct file *file, poll_table *wait)
625 struct proc_mounts *p = file->private_data;
626 struct namespace *ns = p->m.private;
629 poll_wait(file, &ns->poll, wait);
631 spin_lock(&vfsmount_lock);
632 if (p->event != ns->event) {
633 p->event = ns->event;
636 spin_unlock(&vfsmount_lock);
641 static struct file_operations proc_mounts_operations = {
645 .release = mounts_release,
649 extern struct seq_operations mountstats_op;
650 static int mountstats_open(struct inode *inode, struct file *file)
652 int ret = seq_open(file, &mountstats_op);
655 struct seq_file *m = file->private_data;
656 struct namespace *namespace = NULL;
657 struct task_struct *task = get_proc_task(inode);
661 namespace = task->namespace;
663 get_namespace(namespace);
665 put_task_struct(task);
669 m->private = namespace;
671 seq_release(inode, file);
678 static struct file_operations proc_mountstats_operations = {
679 .open = mountstats_open,
682 .release = mounts_release,
685 #define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
687 static ssize_t proc_info_read(struct file * file, char __user * buf,
688 size_t count, loff_t *ppos)
690 struct inode * inode = file->f_dentry->d_inode;
693 struct task_struct *task = get_proc_task(inode);
699 if (count > PROC_BLOCK_SIZE)
700 count = PROC_BLOCK_SIZE;
703 if (!(page = __get_free_page(GFP_KERNEL)))
706 length = PROC_I(inode)->op.proc_read(task, (char*)page);
709 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
712 put_task_struct(task);
717 static struct file_operations proc_info_file_operations = {
718 .read = proc_info_read,
721 static int mem_open(struct inode* inode, struct file* file)
723 file->private_data = (void*)((long)current->self_exec_id);
727 static ssize_t mem_read(struct file * file, char __user * buf,
728 size_t count, loff_t *ppos)
730 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
732 unsigned long src = *ppos;
734 struct mm_struct *mm;
739 if (!MAY_PTRACE(task) || !ptrace_may_attach(task))
743 page = (char *)__get_free_page(GFP_USER);
749 mm = get_task_mm(task);
755 if (file->private_data != (void*)((long)current->self_exec_id))
761 int this_len, retval;
763 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
764 retval = access_process_vm(task, src, page, this_len, 0);
765 if (!retval || !MAY_PTRACE(task) || !ptrace_may_attach(task)) {
771 if (copy_to_user(buf, page, retval)) {
786 free_page((unsigned long) page);
788 put_task_struct(task);
793 #define mem_write NULL
796 /* This is a security hazard */
797 static ssize_t mem_write(struct file * file, const char * buf,
798 size_t count, loff_t *ppos)
802 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
803 unsigned long dst = *ppos;
809 if (!MAY_PTRACE(task) || !ptrace_may_attach(task))
813 page = (char *)__get_free_page(GFP_USER);
819 int this_len, retval;
821 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
822 if (copy_from_user(page, buf, this_len)) {
826 retval = access_process_vm(task, dst, page, this_len, 1);
838 free_page((unsigned long) page);
840 put_task_struct(task);
846 static loff_t mem_lseek(struct file * file, loff_t offset, int orig)
850 file->f_pos = offset;
853 file->f_pos += offset;
858 force_successful_syscall_return();
862 static struct file_operations proc_mem_operations = {
869 static ssize_t oom_adjust_read(struct file *file, char __user *buf,
870 size_t count, loff_t *ppos)
872 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
873 char buffer[PROC_NUMBUF];
876 loff_t __ppos = *ppos;
880 oom_adjust = task->oomkilladj;
881 put_task_struct(task);
883 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
886 if (count > len-__ppos)
888 if (copy_to_user(buf, buffer + __ppos, count))
890 *ppos = __ppos + count;
894 static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
895 size_t count, loff_t *ppos)
897 struct task_struct *task;
898 char buffer[PROC_NUMBUF], *end;
901 if (!capable(CAP_SYS_RESOURCE))
903 memset(buffer, 0, sizeof(buffer));
904 if (count > sizeof(buffer) - 1)
905 count = sizeof(buffer) - 1;
906 if (copy_from_user(buffer, buf, count))
908 oom_adjust = simple_strtol(buffer, &end, 0);
909 if ((oom_adjust < -16 || oom_adjust > 15) && oom_adjust != OOM_DISABLE)
913 task = get_proc_task(file->f_dentry->d_inode);
916 task->oomkilladj = oom_adjust;
917 put_task_struct(task);
918 if (end - buffer == 0)
923 static struct file_operations proc_oom_adjust_operations = {
924 .read = oom_adjust_read,
925 .write = oom_adjust_write,
928 #ifdef CONFIG_AUDITSYSCALL
930 static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
931 size_t count, loff_t *ppos)
933 struct inode * inode = file->f_dentry->d_inode;
934 struct task_struct *task = get_proc_task(inode);
936 char tmpbuf[TMPBUFLEN];
940 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
941 audit_get_loginuid(task->audit_context));
942 put_task_struct(task);
943 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
946 static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
947 size_t count, loff_t *ppos)
949 struct inode * inode = file->f_dentry->d_inode;
954 if (!capable(CAP_AUDIT_CONTROL))
957 if (current != pid_task(proc_pid(inode), PIDTYPE_PID))
960 if (count >= PAGE_SIZE)
961 count = PAGE_SIZE - 1;
964 /* No partial writes. */
967 page = (char*)__get_free_page(GFP_USER);
971 if (copy_from_user(page, buf, count))
975 loginuid = simple_strtoul(page, &tmp, 10);
981 length = audit_set_loginuid(current, loginuid);
982 if (likely(length == 0))
986 free_page((unsigned long) page);
990 static struct file_operations proc_loginuid_operations = {
991 .read = proc_loginuid_read,
992 .write = proc_loginuid_write,
996 #ifdef CONFIG_SECCOMP
997 static ssize_t seccomp_read(struct file *file, char __user *buf,
998 size_t count, loff_t *ppos)
1000 struct task_struct *tsk = get_proc_task(file->f_dentry->d_inode);
1002 loff_t __ppos = *ppos;
1007 /* no need to print the trailing zero, so use only len */
1008 len = sprintf(__buf, "%u\n", tsk->seccomp.mode);
1009 put_task_struct(tsk);
1012 if (count > len - __ppos)
1013 count = len - __ppos;
1014 if (copy_to_user(buf, __buf + __ppos, count))
1016 *ppos = __ppos + count;
1020 static ssize_t seccomp_write(struct file *file, const char __user *buf,
1021 size_t count, loff_t *ppos)
1023 struct task_struct *tsk = get_proc_task(file->f_dentry->d_inode);
1024 char __buf[20], *end;
1025 unsigned int seccomp_mode;
1032 /* can set it only once to be even more secure */
1034 if (unlikely(tsk->seccomp.mode))
1038 memset(__buf, 0, sizeof(__buf));
1039 count = min(count, sizeof(__buf) - 1);
1040 if (copy_from_user(__buf, buf, count))
1043 seccomp_mode = simple_strtoul(__buf, &end, 0);
1047 if (seccomp_mode && seccomp_mode <= NR_SECCOMP_MODES) {
1048 tsk->seccomp.mode = seccomp_mode;
1049 set_tsk_thread_flag(tsk, TIF_SECCOMP);
1053 if (unlikely(!(end - __buf)))
1055 result = end - __buf;
1057 put_task_struct(tsk);
1062 static struct file_operations proc_seccomp_operations = {
1063 .read = seccomp_read,
1064 .write = seccomp_write,
1066 #endif /* CONFIG_SECCOMP */
1068 static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
1070 struct inode *inode = dentry->d_inode;
1071 int error = -EACCES;
1073 /* We don't need a base pointer in the /proc filesystem */
1076 /* Are we allowed to snoop on the tasks file descriptors? */
1077 if (!proc_fd_access_allowed(inode))
1080 error = PROC_I(inode)->op.proc_get_link(inode, &nd->dentry, &nd->mnt);
1081 nd->last_type = LAST_BIND;
1083 return ERR_PTR(error);
1086 static int do_proc_readlink(struct dentry *dentry, struct vfsmount *mnt,
1087 char __user *buffer, int buflen)
1089 struct inode * inode;
1090 char *tmp = (char*)__get_free_page(GFP_KERNEL), *path;
1096 inode = dentry->d_inode;
1097 path = d_path(dentry, mnt, tmp, PAGE_SIZE);
1098 len = PTR_ERR(path);
1101 len = tmp + PAGE_SIZE - 1 - path;
1105 if (copy_to_user(buffer, path, len))
1108 free_page((unsigned long)tmp);
1112 static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1114 int error = -EACCES;
1115 struct inode *inode = dentry->d_inode;
1117 struct vfsmount *mnt = NULL;
1119 /* Are we allowed to snoop on the tasks file descriptors? */
1120 if (!proc_fd_access_allowed(inode))
1123 error = PROC_I(inode)->op.proc_get_link(inode, &de, &mnt);
1127 error = do_proc_readlink(de, mnt, buffer, buflen);
1134 static struct inode_operations proc_pid_link_inode_operations = {
1135 .readlink = proc_pid_readlink,
1136 .follow_link = proc_pid_follow_link,
1137 .setattr = proc_setattr,
1140 static int proc_readfd(struct file * filp, void * dirent, filldir_t filldir)
1142 struct dentry *dentry = filp->f_dentry;
1143 struct inode *inode = dentry->d_inode;
1144 struct task_struct *p = get_proc_task(inode);
1145 unsigned int fd, tid, ino;
1147 char buf[PROC_NUMBUF];
1148 struct files_struct * files;
1149 struct fdtable *fdt;
1160 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
1164 ino = parent_ino(dentry);
1165 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
1169 files = get_files_struct(p);
1173 fdt = files_fdtable(files);
1174 for (fd = filp->f_pos-2;
1176 fd++, filp->f_pos++) {
1179 if (!fcheck_files(files, fd))
1187 buf[j] = '0' + (i % 10);
1191 ino = fake_ino(tid, PROC_TID_FD_DIR + fd);
1192 if (filldir(dirent, buf+j, PROC_NUMBUF-j, fd+2, ino, DT_LNK) < 0) {
1199 put_files_struct(files);
1207 static int proc_pident_readdir(struct file *filp,
1208 void *dirent, filldir_t filldir,
1209 struct pid_entry *ents, unsigned int nents)
1213 struct dentry *dentry = filp->f_dentry;
1214 struct inode *inode = dentry->d_inode;
1215 struct task_struct *task = get_proc_task(inode);
1216 struct pid_entry *p;
1226 put_task_struct(task);
1231 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
1237 ino = parent_ino(dentry);
1238 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
1251 if (filldir(dirent, p->name, p->len, filp->f_pos,
1252 fake_ino(pid, p->type), p->mode >> 12) < 0)
1264 static int proc_tgid_base_readdir(struct file * filp,
1265 void * dirent, filldir_t filldir)
1267 return proc_pident_readdir(filp,dirent,filldir,
1268 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
1271 static int proc_tid_base_readdir(struct file * filp,
1272 void * dirent, filldir_t filldir)
1274 return proc_pident_readdir(filp,dirent,filldir,
1275 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
1278 /* building an inode */
1280 static int task_dumpable(struct task_struct *task)
1283 struct mm_struct *mm;
1288 dumpable = mm->dumpable;
1296 static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task, int ino)
1298 struct inode * inode;
1299 struct proc_inode *ei;
1301 /* We need a new inode */
1303 inode = new_inode(sb);
1309 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
1310 inode->i_ino = fake_ino(task->pid, ino);
1311 inode->i_op = &proc_def_inode_operations;
1314 * grab the reference to task.
1316 ei->pid = get_pid(task->pids[PIDTYPE_PID].pid);
1322 if (task_dumpable(task)) {
1323 inode->i_uid = task->euid;
1324 inode->i_gid = task->egid;
1326 security_task_to_inode(task, inode);
1339 * Exceptional case: normally we are not allowed to unhash a busy
1340 * directory. In this case, however, we can do it - no aliasing problems
1341 * due to the way we treat inodes.
1343 * Rewrite the inode's ownerships here because the owning task may have
1344 * performed a setuid(), etc.
1346 * Before the /proc/pid/status file was created the only way to read
1347 * the effective uid of a /process was to stat /proc/pid. Reading
1348 * /proc/pid/status is slow enough that procps and other packages
1349 * kept stating /proc/pid. To keep the rules in /proc simple I have
1350 * made this apply to all per process world readable and executable
1353 static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1355 struct inode *inode = dentry->d_inode;
1356 struct task_struct *task = get_proc_task(inode);
1358 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1359 task_dumpable(task)) {
1360 inode->i_uid = task->euid;
1361 inode->i_gid = task->egid;
1366 inode->i_mode &= ~(S_ISUID | S_ISGID);
1367 security_task_to_inode(task, inode);
1368 put_task_struct(task);
1375 static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1377 struct inode *inode = dentry->d_inode;
1378 struct task_struct *task;
1379 generic_fillattr(inode, stat);
1384 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1386 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1387 task_dumpable(task)) {
1388 stat->uid = task->euid;
1389 stat->gid = task->egid;
1396 static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1398 struct inode *inode = dentry->d_inode;
1399 struct task_struct *task = get_proc_task(inode);
1400 int fd = proc_fd(inode);
1401 struct files_struct *files;
1404 files = get_files_struct(task);
1407 if (fcheck_files(files, fd)) {
1409 put_files_struct(files);
1410 if (task_dumpable(task)) {
1411 inode->i_uid = task->euid;
1412 inode->i_gid = task->egid;
1417 inode->i_mode &= ~(S_ISUID | S_ISGID);
1418 security_task_to_inode(task, inode);
1419 put_task_struct(task);
1423 put_files_struct(files);
1425 put_task_struct(task);
1431 static int pid_delete_dentry(struct dentry * dentry)
1433 /* Is the task we represent dead?
1434 * If so, then don't put the dentry on the lru list,
1435 * kill it immediately.
1437 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1440 static struct dentry_operations tid_fd_dentry_operations =
1442 .d_revalidate = tid_fd_revalidate,
1443 .d_delete = pid_delete_dentry,
1446 static struct dentry_operations pid_dentry_operations =
1448 .d_revalidate = pid_revalidate,
1449 .d_delete = pid_delete_dentry,
1454 static unsigned name_to_int(struct dentry *dentry)
1456 const char *name = dentry->d_name.name;
1457 int len = dentry->d_name.len;
1460 if (len > 1 && *name == '0')
1463 unsigned c = *name++ - '0';
1466 if (n >= (~0U-9)/10)
1477 static struct dentry *proc_lookupfd(struct inode * dir, struct dentry * dentry, struct nameidata *nd)
1479 struct task_struct *task = get_proc_task(dir);
1480 unsigned fd = name_to_int(dentry);
1481 struct dentry *result = ERR_PTR(-ENOENT);
1483 struct files_struct * files;
1484 struct inode *inode;
1485 struct proc_inode *ei;
1492 inode = proc_pid_make_inode(dir->i_sb, task, PROC_TID_FD_DIR+fd);
1497 files = get_files_struct(task);
1500 inode->i_mode = S_IFLNK;
1503 * We are not taking a ref to the file structure, so we must
1506 spin_lock(&files->file_lock);
1507 file = fcheck_files(files, fd);
1510 if (file->f_mode & 1)
1511 inode->i_mode |= S_IRUSR | S_IXUSR;
1512 if (file->f_mode & 2)
1513 inode->i_mode |= S_IWUSR | S_IXUSR;
1514 spin_unlock(&files->file_lock);
1515 put_files_struct(files);
1516 inode->i_op = &proc_pid_link_inode_operations;
1518 ei->op.proc_get_link = proc_fd_link;
1519 dentry->d_op = &tid_fd_dentry_operations;
1520 d_add(dentry, inode);
1521 /* Close the race of the process dying before we return the dentry */
1522 if (tid_fd_revalidate(dentry, NULL))
1525 put_task_struct(task);
1530 spin_unlock(&files->file_lock);
1531 put_files_struct(files);
1537 static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir);
1538 static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd);
1539 static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat);
1541 static struct file_operations proc_fd_operations = {
1542 .read = generic_read_dir,
1543 .readdir = proc_readfd,
1546 static struct file_operations proc_task_operations = {
1547 .read = generic_read_dir,
1548 .readdir = proc_task_readdir,
1552 * proc directories can do almost nothing..
1554 static struct inode_operations proc_fd_inode_operations = {
1555 .lookup = proc_lookupfd,
1556 .setattr = proc_setattr,
1559 static struct inode_operations proc_task_inode_operations = {
1560 .lookup = proc_task_lookup,
1561 .getattr = proc_task_getattr,
1562 .setattr = proc_setattr,
1565 #ifdef CONFIG_SECURITY
1566 static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
1567 size_t count, loff_t *ppos)
1569 struct inode * inode = file->f_dentry->d_inode;
1572 struct task_struct *task = get_proc_task(inode);
1578 if (count > PAGE_SIZE)
1581 if (!(page = __get_free_page(GFP_KERNEL)))
1584 length = security_getprocattr(task,
1585 (char*)file->f_dentry->d_name.name,
1586 (void*)page, count);
1588 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
1591 put_task_struct(task);
1596 static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
1597 size_t count, loff_t *ppos)
1599 struct inode * inode = file->f_dentry->d_inode;
1602 struct task_struct *task = get_proc_task(inode);
1607 if (count > PAGE_SIZE)
1610 /* No partial writes. */
1616 page = (char*)__get_free_page(GFP_USER);
1621 if (copy_from_user(page, buf, count))
1624 length = security_setprocattr(task,
1625 (char*)file->f_dentry->d_name.name,
1626 (void*)page, count);
1628 free_page((unsigned long) page);
1630 put_task_struct(task);
1635 static struct file_operations proc_pid_attr_operations = {
1636 .read = proc_pid_attr_read,
1637 .write = proc_pid_attr_write,
1640 static struct file_operations proc_tid_attr_operations;
1641 static struct inode_operations proc_tid_attr_inode_operations;
1642 static struct file_operations proc_tgid_attr_operations;
1643 static struct inode_operations proc_tgid_attr_inode_operations;
1647 static struct dentry *proc_pident_lookup(struct inode *dir,
1648 struct dentry *dentry,
1649 struct pid_entry *ents)
1651 struct inode *inode;
1652 struct dentry *error;
1653 struct task_struct *task = get_proc_task(dir);
1654 struct pid_entry *p;
1655 struct proc_inode *ei;
1657 error = ERR_PTR(-ENOENT);
1663 for (p = ents; p->name; p++) {
1664 if (p->len != dentry->d_name.len)
1666 if (!memcmp(dentry->d_name.name, p->name, p->len))
1672 error = ERR_PTR(-EINVAL);
1673 inode = proc_pid_make_inode(dir->i_sb, task, p->type);
1678 inode->i_mode = p->mode;
1680 * Yes, it does not scale. And it should not. Don't add
1681 * new entries into /proc/<tgid>/ without very good reasons.
1684 case PROC_TGID_TASK:
1686 inode->i_op = &proc_task_inode_operations;
1687 inode->i_fop = &proc_task_operations;
1692 inode->i_op = &proc_fd_inode_operations;
1693 inode->i_fop = &proc_fd_operations;
1697 inode->i_op = &proc_pid_link_inode_operations;
1698 ei->op.proc_get_link = proc_exe_link;
1702 inode->i_op = &proc_pid_link_inode_operations;
1703 ei->op.proc_get_link = proc_cwd_link;
1706 case PROC_TGID_ROOT:
1707 inode->i_op = &proc_pid_link_inode_operations;
1708 ei->op.proc_get_link = proc_root_link;
1710 case PROC_TID_ENVIRON:
1711 case PROC_TGID_ENVIRON:
1712 inode->i_fop = &proc_info_file_operations;
1713 ei->op.proc_read = proc_pid_environ;
1716 case PROC_TGID_AUXV:
1717 inode->i_fop = &proc_info_file_operations;
1718 ei->op.proc_read = proc_pid_auxv;
1720 case PROC_TID_STATUS:
1721 case PROC_TGID_STATUS:
1722 inode->i_fop = &proc_info_file_operations;
1723 ei->op.proc_read = proc_pid_status;
1726 inode->i_fop = &proc_info_file_operations;
1727 ei->op.proc_read = proc_tid_stat;
1729 case PROC_TGID_STAT:
1730 inode->i_fop = &proc_info_file_operations;
1731 ei->op.proc_read = proc_tgid_stat;
1733 case PROC_TID_CMDLINE:
1734 case PROC_TGID_CMDLINE:
1735 inode->i_fop = &proc_info_file_operations;
1736 ei->op.proc_read = proc_pid_cmdline;
1738 case PROC_TID_STATM:
1739 case PROC_TGID_STATM:
1740 inode->i_fop = &proc_info_file_operations;
1741 ei->op.proc_read = proc_pid_statm;
1744 case PROC_TGID_MAPS:
1745 inode->i_fop = &proc_maps_operations;
1748 case PROC_TID_NUMA_MAPS:
1749 case PROC_TGID_NUMA_MAPS:
1750 inode->i_fop = &proc_numa_maps_operations;
1755 inode->i_fop = &proc_mem_operations;
1757 #ifdef CONFIG_SECCOMP
1758 case PROC_TID_SECCOMP:
1759 case PROC_TGID_SECCOMP:
1760 inode->i_fop = &proc_seccomp_operations;
1762 #endif /* CONFIG_SECCOMP */
1763 case PROC_TID_MOUNTS:
1764 case PROC_TGID_MOUNTS:
1765 inode->i_fop = &proc_mounts_operations;
1768 case PROC_TID_SMAPS:
1769 case PROC_TGID_SMAPS:
1770 inode->i_fop = &proc_smaps_operations;
1773 case PROC_TID_MOUNTSTATS:
1774 case PROC_TGID_MOUNTSTATS:
1775 inode->i_fop = &proc_mountstats_operations;
1777 #ifdef CONFIG_SECURITY
1780 inode->i_op = &proc_tid_attr_inode_operations;
1781 inode->i_fop = &proc_tid_attr_operations;
1783 case PROC_TGID_ATTR:
1785 inode->i_op = &proc_tgid_attr_inode_operations;
1786 inode->i_fop = &proc_tgid_attr_operations;
1788 case PROC_TID_ATTR_CURRENT:
1789 case PROC_TGID_ATTR_CURRENT:
1790 case PROC_TID_ATTR_PREV:
1791 case PROC_TGID_ATTR_PREV:
1792 case PROC_TID_ATTR_EXEC:
1793 case PROC_TGID_ATTR_EXEC:
1794 case PROC_TID_ATTR_FSCREATE:
1795 case PROC_TGID_ATTR_FSCREATE:
1796 case PROC_TID_ATTR_KEYCREATE:
1797 case PROC_TGID_ATTR_KEYCREATE:
1798 case PROC_TID_ATTR_SOCKCREATE:
1799 case PROC_TGID_ATTR_SOCKCREATE:
1800 inode->i_fop = &proc_pid_attr_operations;
1803 #ifdef CONFIG_KALLSYMS
1804 case PROC_TID_WCHAN:
1805 case PROC_TGID_WCHAN:
1806 inode->i_fop = &proc_info_file_operations;
1807 ei->op.proc_read = proc_pid_wchan;
1810 #ifdef CONFIG_SCHEDSTATS
1811 case PROC_TID_SCHEDSTAT:
1812 case PROC_TGID_SCHEDSTAT:
1813 inode->i_fop = &proc_info_file_operations;
1814 ei->op.proc_read = proc_pid_schedstat;
1817 #ifdef CONFIG_CPUSETS
1818 case PROC_TID_CPUSET:
1819 case PROC_TGID_CPUSET:
1820 inode->i_fop = &proc_cpuset_operations;
1823 case PROC_TID_OOM_SCORE:
1824 case PROC_TGID_OOM_SCORE:
1825 inode->i_fop = &proc_info_file_operations;
1826 ei->op.proc_read = proc_oom_score;
1828 case PROC_TID_OOM_ADJUST:
1829 case PROC_TGID_OOM_ADJUST:
1830 inode->i_fop = &proc_oom_adjust_operations;
1832 #ifdef CONFIG_AUDITSYSCALL
1833 case PROC_TID_LOGINUID:
1834 case PROC_TGID_LOGINUID:
1835 inode->i_fop = &proc_loginuid_operations;
1839 printk("procfs: impossible type (%d)",p->type);
1841 error = ERR_PTR(-EINVAL);
1844 dentry->d_op = &pid_dentry_operations;
1845 d_add(dentry, inode);
1846 /* Close the race of the process dying before we return the dentry */
1847 if (pid_revalidate(dentry, NULL))
1850 put_task_struct(task);
1855 static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
1856 return proc_pident_lookup(dir, dentry, tgid_base_stuff);
1859 static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
1860 return proc_pident_lookup(dir, dentry, tid_base_stuff);
1863 static struct file_operations proc_tgid_base_operations = {
1864 .read = generic_read_dir,
1865 .readdir = proc_tgid_base_readdir,
1868 static struct file_operations proc_tid_base_operations = {
1869 .read = generic_read_dir,
1870 .readdir = proc_tid_base_readdir,
1873 static struct inode_operations proc_tgid_base_inode_operations = {
1874 .lookup = proc_tgid_base_lookup,
1875 .getattr = pid_getattr,
1876 .setattr = proc_setattr,
1879 static struct inode_operations proc_tid_base_inode_operations = {
1880 .lookup = proc_tid_base_lookup,
1881 .getattr = pid_getattr,
1882 .setattr = proc_setattr,
1885 #ifdef CONFIG_SECURITY
1886 static int proc_tgid_attr_readdir(struct file * filp,
1887 void * dirent, filldir_t filldir)
1889 return proc_pident_readdir(filp,dirent,filldir,
1890 tgid_attr_stuff,ARRAY_SIZE(tgid_attr_stuff));
1893 static int proc_tid_attr_readdir(struct file * filp,
1894 void * dirent, filldir_t filldir)
1896 return proc_pident_readdir(filp,dirent,filldir,
1897 tid_attr_stuff,ARRAY_SIZE(tid_attr_stuff));
1900 static struct file_operations proc_tgid_attr_operations = {
1901 .read = generic_read_dir,
1902 .readdir = proc_tgid_attr_readdir,
1905 static struct file_operations proc_tid_attr_operations = {
1906 .read = generic_read_dir,
1907 .readdir = proc_tid_attr_readdir,
1910 static struct dentry *proc_tgid_attr_lookup(struct inode *dir,
1911 struct dentry *dentry, struct nameidata *nd)
1913 return proc_pident_lookup(dir, dentry, tgid_attr_stuff);
1916 static struct dentry *proc_tid_attr_lookup(struct inode *dir,
1917 struct dentry *dentry, struct nameidata *nd)
1919 return proc_pident_lookup(dir, dentry, tid_attr_stuff);
1922 static struct inode_operations proc_tgid_attr_inode_operations = {
1923 .lookup = proc_tgid_attr_lookup,
1924 .getattr = pid_getattr,
1925 .setattr = proc_setattr,
1928 static struct inode_operations proc_tid_attr_inode_operations = {
1929 .lookup = proc_tid_attr_lookup,
1930 .getattr = pid_getattr,
1931 .setattr = proc_setattr,
1938 static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
1941 char tmp[PROC_NUMBUF];
1942 sprintf(tmp, "%d", current->tgid);
1943 return vfs_readlink(dentry,buffer,buflen,tmp);
1946 static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
1948 char tmp[PROC_NUMBUF];
1949 sprintf(tmp, "%d", current->tgid);
1950 return ERR_PTR(vfs_follow_link(nd,tmp));
1953 static struct inode_operations proc_self_inode_operations = {
1954 .readlink = proc_self_readlink,
1955 .follow_link = proc_self_follow_link,
1959 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
1961 * @task: task that should be flushed.
1963 * Looks in the dcache for
1965 * /proc/@tgid/task/@pid
1966 * if either directory is present flushes it and all of it'ts children
1969 * It is safe and reasonable to cache /proc entries for a task until
1970 * that task exits. After that they just clog up the dcache with
1971 * useless entries, possibly causing useful dcache entries to be
1972 * flushed instead. This routine is proved to flush those useless
1973 * dcache entries at process exit time.
1975 * NOTE: This routine is just an optimization so it does not guarantee
1976 * that no dcache entries will exist at process exit time it
1977 * just makes it very unlikely that any will persist.
1979 void proc_flush_task(struct task_struct *task)
1981 struct dentry *dentry, *leader, *dir;
1982 char buf[PROC_NUMBUF];
1986 name.len = snprintf(buf, sizeof(buf), "%d", task->pid);
1987 dentry = d_hash_and_lookup(proc_mnt->mnt_root, &name);
1989 shrink_dcache_parent(dentry);
1994 if (thread_group_leader(task))
1998 name.len = snprintf(buf, sizeof(buf), "%d", task->tgid);
1999 leader = d_hash_and_lookup(proc_mnt->mnt_root, &name);
2004 name.len = strlen(name.name);
2005 dir = d_hash_and_lookup(leader, &name);
2007 goto out_put_leader;
2010 name.len = snprintf(buf, sizeof(buf), "%d", task->pid);
2011 dentry = d_hash_and_lookup(dir, &name);
2013 shrink_dcache_parent(dentry);
2026 struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2028 struct dentry *result = ERR_PTR(-ENOENT);
2029 struct task_struct *task;
2030 struct inode *inode;
2031 struct proc_inode *ei;
2034 if (dentry->d_name.len == 4 && !memcmp(dentry->d_name.name,"self",4)) {
2035 inode = new_inode(dir->i_sb);
2037 return ERR_PTR(-ENOMEM);
2039 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
2040 inode->i_ino = fake_ino(0, PROC_TGID_INO);
2042 inode->i_mode = S_IFLNK|S_IRWXUGO;
2043 inode->i_uid = inode->i_gid = 0;
2045 inode->i_op = &proc_self_inode_operations;
2046 d_add(dentry, inode);
2049 tgid = name_to_int(dentry);
2054 task = find_task_by_pid(tgid);
2056 get_task_struct(task);
2061 inode = proc_pid_make_inode(dir->i_sb, task, PROC_TGID_INO);
2065 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2066 inode->i_op = &proc_tgid_base_inode_operations;
2067 inode->i_fop = &proc_tgid_base_operations;
2068 inode->i_flags|=S_IMMUTABLE;
2069 #ifdef CONFIG_SECURITY
2075 dentry->d_op = &pid_dentry_operations;
2077 d_add(dentry, inode);
2078 /* Close the race of the process dying before we return the dentry */
2079 if (pid_revalidate(dentry, NULL))
2083 put_task_struct(task);
2089 static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2091 struct dentry *result = ERR_PTR(-ENOENT);
2092 struct task_struct *task;
2093 struct task_struct *leader = get_proc_task(dir);
2094 struct inode *inode;
2100 tid = name_to_int(dentry);
2105 task = find_task_by_pid(tid);
2107 get_task_struct(task);
2111 if (leader->tgid != task->tgid)
2114 inode = proc_pid_make_inode(dir->i_sb, task, PROC_TID_INO);
2119 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2120 inode->i_op = &proc_tid_base_inode_operations;
2121 inode->i_fop = &proc_tid_base_operations;
2122 inode->i_flags|=S_IMMUTABLE;
2123 #ifdef CONFIG_SECURITY
2129 dentry->d_op = &pid_dentry_operations;
2131 d_add(dentry, inode);
2132 /* Close the race of the process dying before we return the dentry */
2133 if (pid_revalidate(dentry, NULL))
2137 put_task_struct(task);
2139 put_task_struct(leader);
2145 * Find the first tgid to return to user space.
2147 * Usually this is just whatever follows &init_task, but if the users
2148 * buffer was too small to hold the full list or there was a seek into
2149 * the middle of the directory we have more work to do.
2151 * In the case of a short read we start with find_task_by_pid.
2153 * In the case of a seek we start with &init_task and walk nr
2156 static struct task_struct *first_tgid(int tgid, unsigned int nr)
2158 struct task_struct *pos;
2161 pos = find_task_by_pid(tgid);
2162 if (pos && thread_group_leader(pos))
2165 /* If nr exceeds the number of processes get out quickly */
2167 if (nr && nr >= nr_processes())
2170 /* If we haven't found our starting place yet start with
2171 * the init_task and walk nr tasks forward.
2173 for (pos = next_task(&init_task); nr > 0; --nr) {
2174 pos = next_task(pos);
2175 if (pos == &init_task) {
2181 get_task_struct(pos);
2188 * Find the next task in the task list.
2189 * Return NULL if we loop or there is any error.
2191 * The reference to the input task_struct is released.
2193 static struct task_struct *next_tgid(struct task_struct *start)
2195 struct task_struct *pos;
2198 if (pid_alive(start))
2199 pos = next_task(start);
2200 if (pid_alive(pos) && (pos != &init_task)) {
2201 get_task_struct(pos);
2207 put_task_struct(start);
2211 /* for the /proc/ directory itself, after non-process stuff has been done */
2212 int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
2214 char buf[PROC_NUMBUF];
2215 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
2216 struct task_struct *task;
2220 ino_t ino = fake_ino(0,PROC_TGID_INO);
2221 if (filldir(dirent, "self", 4, filp->f_pos, ino, DT_LNK) < 0)
2228 /* f_version caches the tgid value that the last readdir call couldn't
2229 * return. lseek aka telldir automagically resets f_version to 0.
2231 tgid = filp->f_version;
2232 filp->f_version = 0;
2233 for (task = first_tgid(tgid, nr);
2235 task = next_tgid(task), filp->f_pos++) {
2239 len = snprintf(buf, sizeof(buf), "%d", tgid);
2240 ino = fake_ino(tgid, PROC_TGID_INO);
2241 if (filldir(dirent, buf, len, filp->f_pos, ino, DT_DIR) < 0) {
2242 /* returning this tgid failed, save it as the first
2243 * pid for the next readir call */
2244 filp->f_version = tgid;
2245 put_task_struct(task);
2253 * Find the first tid of a thread group to return to user space.
2255 * Usually this is just the thread group leader, but if the users
2256 * buffer was too small or there was a seek into the middle of the
2257 * directory we have more work todo.
2259 * In the case of a short read we start with find_task_by_pid.
2261 * In the case of a seek we start with the leader and walk nr
2264 static struct task_struct *first_tid(struct task_struct *leader,
2267 struct task_struct *pos;
2270 /* Attempt to start with the pid of a thread */
2271 if (tid && (nr > 0)) {
2272 pos = find_task_by_pid(tid);
2273 if (pos && (pos->group_leader == leader))
2277 /* If nr exceeds the number of threads there is nothing todo */
2279 if (nr && nr >= get_nr_threads(leader))
2282 /* If we haven't found our starting place yet start
2283 * with the leader and walk nr threads forward.
2285 for (pos = leader; nr > 0; --nr) {
2286 pos = next_thread(pos);
2287 if (pos == leader) {
2293 get_task_struct(pos);
2300 * Find the next thread in the thread list.
2301 * Return NULL if there is an error or no next thread.
2303 * The reference to the input task_struct is released.
2305 static struct task_struct *next_tid(struct task_struct *start)
2307 struct task_struct *pos = NULL;
2309 if (pid_alive(start)) {
2310 pos = next_thread(start);
2311 if (thread_group_leader(pos))
2314 get_task_struct(pos);
2317 put_task_struct(start);
2321 /* for the /proc/TGID/task/ directories */
2322 static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
2324 char buf[PROC_NUMBUF];
2325 struct dentry *dentry = filp->f_dentry;
2326 struct inode *inode = dentry->d_inode;
2327 struct task_struct *leader = get_proc_task(inode);
2328 struct task_struct *task;
2329 int retval = -ENOENT;
2332 unsigned long pos = filp->f_pos; /* avoiding "long long" filp->f_pos */
2341 if (filldir(dirent, ".", 1, pos, ino, DT_DIR) < 0)
2346 ino = parent_ino(dentry);
2347 if (filldir(dirent, "..", 2, pos, ino, DT_DIR) < 0)
2353 /* f_version caches the tgid value that the last readdir call couldn't
2354 * return. lseek aka telldir automagically resets f_version to 0.
2356 tid = filp->f_version;
2357 filp->f_version = 0;
2358 for (task = first_tid(leader, tid, pos - 2);
2360 task = next_tid(task), pos++) {
2363 len = snprintf(buf, sizeof(buf), "%d", tid);
2364 ino = fake_ino(tid, PROC_TID_INO);
2365 if (filldir(dirent, buf, len, pos, ino, DT_DIR < 0)) {
2366 /* returning this tgid failed, save it as the first
2367 * pid for the next readir call */
2368 filp->f_version = tid;
2369 put_task_struct(task);
2375 put_task_struct(leader);
2380 static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
2382 struct inode *inode = dentry->d_inode;
2383 struct task_struct *p = get_proc_task(inode);
2384 generic_fillattr(inode, stat);
2388 stat->nlink += get_nr_threads(p);