11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * linux/fs/proc/base.c 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Copyright (C) 1991, 1992 Linus Torvalds 51da177e4SLinus Torvalds * 61da177e4SLinus Torvalds * proc base directory handling functions 71da177e4SLinus Torvalds * 81da177e4SLinus Torvalds * 1999, Al Viro. Rewritten. Now it covers the whole per-process part. 91da177e4SLinus Torvalds * Instead of using magical inumbers to determine the kind of object 101da177e4SLinus Torvalds * we allocate and fill in-core inodes upon lookup. They don't even 111da177e4SLinus Torvalds * go into icache. We cache the reference to task_struct upon lookup too. 121da177e4SLinus Torvalds * Eventually it should become a filesystem in its own. We don't use the 131da177e4SLinus Torvalds * rest of procfs anymore. 14e070ad49SMauricio Lin * 15e070ad49SMauricio Lin * 16e070ad49SMauricio Lin * Changelog: 17e070ad49SMauricio Lin * 17-Jan-2005 18e070ad49SMauricio Lin * Allan Bezerra 19e070ad49SMauricio Lin * Bruna Moreira <bruna.moreira@indt.org.br> 20e070ad49SMauricio Lin * Edjard Mota <edjard.mota@indt.org.br> 21e070ad49SMauricio Lin * Ilias Biris <ilias.biris@indt.org.br> 22e070ad49SMauricio Lin * Mauricio Lin <mauricio.lin@indt.org.br> 23e070ad49SMauricio Lin * 24e070ad49SMauricio Lin * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT 25e070ad49SMauricio Lin * 26e070ad49SMauricio Lin * A new process specific entry (smaps) included in /proc. It shows the 27e070ad49SMauricio Lin * size of rss for each memory area. The maps entry lacks information 28e070ad49SMauricio Lin * about physical memory size (rss) for each mapped file, i.e., 29e070ad49SMauricio Lin * rss information for executables and library files. 30e070ad49SMauricio Lin * This additional information is useful for any tools that need to know 31e070ad49SMauricio Lin * about physical memory consumption for a process specific library. 32e070ad49SMauricio Lin * 33e070ad49SMauricio Lin * Changelog: 34e070ad49SMauricio Lin * 21-Feb-2005 35e070ad49SMauricio Lin * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT 36e070ad49SMauricio Lin * Pud inclusion in the page table walking. 37e070ad49SMauricio Lin * 38e070ad49SMauricio Lin * ChangeLog: 39e070ad49SMauricio Lin * 10-Mar-2005 40e070ad49SMauricio Lin * 10LE Instituto Nokia de Tecnologia - INdT: 41e070ad49SMauricio Lin * A better way to walks through the page table as suggested by Hugh Dickins. 42e070ad49SMauricio Lin * 43e070ad49SMauricio Lin * Simo Piiroinen <simo.piiroinen@nokia.com>: 44e070ad49SMauricio Lin * Smaps information related to shared, private, clean and dirty pages. 45e070ad49SMauricio Lin * 46e070ad49SMauricio Lin * Paul Mundt <paul.mundt@nokia.com>: 47e070ad49SMauricio Lin * Overall revision about smaps. 481da177e4SLinus Torvalds */ 491da177e4SLinus Torvalds 501da177e4SLinus Torvalds #include <asm/uaccess.h> 511da177e4SLinus Torvalds 521da177e4SLinus Torvalds #include <linux/errno.h> 531da177e4SLinus Torvalds #include <linux/time.h> 541da177e4SLinus Torvalds #include <linux/proc_fs.h> 551da177e4SLinus Torvalds #include <linux/stat.h> 565995477aSAndrea Righi #include <linux/task_io_accounting_ops.h> 571da177e4SLinus Torvalds #include <linux/init.h> 5816f7e0feSRandy Dunlap #include <linux/capability.h> 591da177e4SLinus Torvalds #include <linux/file.h> 609f3acc31SAl Viro #include <linux/fdtable.h> 611da177e4SLinus Torvalds #include <linux/string.h> 621da177e4SLinus Torvalds #include <linux/seq_file.h> 631da177e4SLinus Torvalds #include <linux/namei.h> 646b3286edSKirill Korotaev #include <linux/mnt_namespace.h> 651da177e4SLinus Torvalds #include <linux/mm.h> 66a63d83f4SDavid Rientjes #include <linux/swap.h> 67b835996fSDipankar Sarma #include <linux/rcupdate.h> 681da177e4SLinus Torvalds #include <linux/kallsyms.h> 692ec220e2SKen Chen #include <linux/stacktrace.h> 70d85f50d5SNeil Horman #include <linux/resource.h> 715096add8SKees Cook #include <linux/module.h> 721da177e4SLinus Torvalds #include <linux/mount.h> 731da177e4SLinus Torvalds #include <linux/security.h> 741da177e4SLinus Torvalds #include <linux/ptrace.h> 750d094efeSRoland McGrath #include <linux/tracehook.h> 76a424316cSPaul Menage #include <linux/cgroup.h> 771da177e4SLinus Torvalds #include <linux/cpuset.h> 781da177e4SLinus Torvalds #include <linux/audit.h> 795addc5ddSAl Viro #include <linux/poll.h> 801651e14eSSerge E. Hallyn #include <linux/nsproxy.h> 818ac773b4SAlexey Dobriyan #include <linux/oom.h> 823cb4a0bbSKawai, Hidehiro #include <linux/elf.h> 8360347f67SPavel Emelyanov #include <linux/pid_namespace.h> 845ad4e53bSAl Viro #include <linux/fs_struct.h> 855a0e3ad6STejun Heo #include <linux/slab.h> 861da177e4SLinus Torvalds #include "internal.h" 871da177e4SLinus Torvalds 880f2fe20fSEric W. Biederman /* NOTE: 890f2fe20fSEric W. Biederman * Implementing inode permission operations in /proc is almost 900f2fe20fSEric W. Biederman * certainly an error. Permission checks need to happen during 910f2fe20fSEric W. Biederman * each system call not at open time. The reason is that most of 920f2fe20fSEric W. Biederman * what we wish to check for permissions in /proc varies at runtime. 930f2fe20fSEric W. Biederman * 940f2fe20fSEric W. Biederman * The classic example of a problem is opening file descriptors 950f2fe20fSEric W. Biederman * in /proc for a task before it execs a suid executable. 960f2fe20fSEric W. Biederman */ 970f2fe20fSEric W. Biederman 981da177e4SLinus Torvalds struct pid_entry { 991da177e4SLinus Torvalds char *name; 100c5141e6dSEric Dumazet int len; 1011da177e4SLinus Torvalds mode_t mode; 102c5ef1c42SArjan van de Ven const struct inode_operations *iop; 10300977a59SArjan van de Ven const struct file_operations *fop; 10420cdc894SEric W. Biederman union proc_op op; 1051da177e4SLinus Torvalds }; 1061da177e4SLinus Torvalds 10761a28784SEric W. Biederman #define NOD(NAME, MODE, IOP, FOP, OP) { \ 10820cdc894SEric W. Biederman .name = (NAME), \ 109c5141e6dSEric Dumazet .len = sizeof(NAME) - 1, \ 11020cdc894SEric W. Biederman .mode = MODE, \ 11120cdc894SEric W. Biederman .iop = IOP, \ 11220cdc894SEric W. Biederman .fop = FOP, \ 11320cdc894SEric W. Biederman .op = OP, \ 11420cdc894SEric W. Biederman } 11520cdc894SEric W. Biederman 116631f9c18SAlexey Dobriyan #define DIR(NAME, MODE, iops, fops) \ 117631f9c18SAlexey Dobriyan NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} ) 118631f9c18SAlexey Dobriyan #define LNK(NAME, get_link) \ 11961a28784SEric W. Biederman NOD(NAME, (S_IFLNK|S_IRWXUGO), \ 12020cdc894SEric W. Biederman &proc_pid_link_inode_operations, NULL, \ 121631f9c18SAlexey Dobriyan { .proc_get_link = get_link } ) 122631f9c18SAlexey Dobriyan #define REG(NAME, MODE, fops) \ 123631f9c18SAlexey Dobriyan NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {}) 124631f9c18SAlexey Dobriyan #define INF(NAME, MODE, read) \ 12561a28784SEric W. Biederman NOD(NAME, (S_IFREG|(MODE)), \ 12620cdc894SEric W. Biederman NULL, &proc_info_file_operations, \ 127631f9c18SAlexey Dobriyan { .proc_read = read } ) 128631f9c18SAlexey Dobriyan #define ONE(NAME, MODE, show) \ 129be614086SEric W. Biederman NOD(NAME, (S_IFREG|(MODE)), \ 130be614086SEric W. Biederman NULL, &proc_single_file_operations, \ 131631f9c18SAlexey Dobriyan { .proc_show = show } ) 1321da177e4SLinus Torvalds 133aed54175SVegard Nossum /* 134aed54175SVegard Nossum * Count the number of hardlinks for the pid_entry table, excluding the . 135aed54175SVegard Nossum * and .. links. 136aed54175SVegard Nossum */ 137aed54175SVegard Nossum static unsigned int pid_entry_count_dirs(const struct pid_entry *entries, 138aed54175SVegard Nossum unsigned int n) 139aed54175SVegard Nossum { 140aed54175SVegard Nossum unsigned int i; 141aed54175SVegard Nossum unsigned int count; 142aed54175SVegard Nossum 143aed54175SVegard Nossum count = 0; 144aed54175SVegard Nossum for (i = 0; i < n; ++i) { 145aed54175SVegard Nossum if (S_ISDIR(entries[i].mode)) 146aed54175SVegard Nossum ++count; 147aed54175SVegard Nossum } 148aed54175SVegard Nossum 149aed54175SVegard Nossum return count; 150aed54175SVegard Nossum } 151aed54175SVegard Nossum 152f7ad3c6bSMiklos Szeredi static int get_task_root(struct task_struct *task, struct path *root) 1531da177e4SLinus Torvalds { 1547c2c7d99SHugh Dickins int result = -ENOENT; 1557c2c7d99SHugh Dickins 1560494f6ecSMiklos Szeredi task_lock(task); 157f7ad3c6bSMiklos Szeredi if (task->fs) { 158f7ad3c6bSMiklos Szeredi get_fs_root(task->fs, root); 1597c2c7d99SHugh Dickins result = 0; 1607c2c7d99SHugh Dickins } 1610494f6ecSMiklos Szeredi task_unlock(task); 1627c2c7d99SHugh Dickins return result; 1630494f6ecSMiklos Szeredi } 1640494f6ecSMiklos Szeredi 1653dcd25f3SJan Blunck static int proc_cwd_link(struct inode *inode, struct path *path) 1660494f6ecSMiklos Szeredi { 16799f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 1680494f6ecSMiklos Szeredi int result = -ENOENT; 16999f89551SEric W. Biederman 17099f89551SEric W. Biederman if (task) { 171f7ad3c6bSMiklos Szeredi task_lock(task); 172f7ad3c6bSMiklos Szeredi if (task->fs) { 173f7ad3c6bSMiklos Szeredi get_fs_pwd(task->fs, path); 174f7ad3c6bSMiklos Szeredi result = 0; 175f7ad3c6bSMiklos Szeredi } 176f7ad3c6bSMiklos Szeredi task_unlock(task); 17799f89551SEric W. Biederman put_task_struct(task); 17899f89551SEric W. Biederman } 1791da177e4SLinus Torvalds return result; 1801da177e4SLinus Torvalds } 1811da177e4SLinus Torvalds 1823dcd25f3SJan Blunck static int proc_root_link(struct inode *inode, struct path *path) 1831da177e4SLinus Torvalds { 18499f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 1851da177e4SLinus Torvalds int result = -ENOENT; 18699f89551SEric W. Biederman 18799f89551SEric W. Biederman if (task) { 188f7ad3c6bSMiklos Szeredi result = get_task_root(task, path); 18999f89551SEric W. Biederman put_task_struct(task); 19099f89551SEric W. Biederman } 1911da177e4SLinus Torvalds return result; 1921da177e4SLinus Torvalds } 1931da177e4SLinus Torvalds 194638fa202SRoland McGrath /* 195638fa202SRoland McGrath * Return zero if current may access user memory in @task, -error if not. 196638fa202SRoland McGrath */ 197638fa202SRoland McGrath static int check_mem_permission(struct task_struct *task) 198638fa202SRoland McGrath { 199638fa202SRoland McGrath /* 200638fa202SRoland McGrath * A task can always look at itself, in case it chooses 201638fa202SRoland McGrath * to use system calls instead of load instructions. 202638fa202SRoland McGrath */ 203638fa202SRoland McGrath if (task == current) 204638fa202SRoland McGrath return 0; 205638fa202SRoland McGrath 206638fa202SRoland McGrath /* 207638fa202SRoland McGrath * If current is actively ptrace'ing, and would also be 208638fa202SRoland McGrath * permitted to freshly attach with ptrace now, permit it. 209638fa202SRoland McGrath */ 2100d094efeSRoland McGrath if (task_is_stopped_or_traced(task)) { 2110d094efeSRoland McGrath int match; 2120d094efeSRoland McGrath rcu_read_lock(); 2130d094efeSRoland McGrath match = (tracehook_tracer_task(task) == current); 2140d094efeSRoland McGrath rcu_read_unlock(); 2150d094efeSRoland McGrath if (match && ptrace_may_access(task, PTRACE_MODE_ATTACH)) 216638fa202SRoland McGrath return 0; 2170d094efeSRoland McGrath } 218638fa202SRoland McGrath 219638fa202SRoland McGrath /* 220638fa202SRoland McGrath * Noone else is allowed. 221638fa202SRoland McGrath */ 222638fa202SRoland McGrath return -EPERM; 223638fa202SRoland McGrath } 2241da177e4SLinus Torvalds 225831830b5SAl Viro struct mm_struct *mm_for_maps(struct task_struct *task) 226831830b5SAl Viro { 227704b836cSOleg Nesterov struct mm_struct *mm; 228ec6fd8a4SAl Viro int err; 22900f89d21SOleg Nesterov 230ec6fd8a4SAl Viro err = mutex_lock_killable(&task->signal->cred_guard_mutex); 231ec6fd8a4SAl Viro if (err) 232ec6fd8a4SAl Viro return ERR_PTR(err); 233704b836cSOleg Nesterov 234704b836cSOleg Nesterov mm = get_task_mm(task); 235704b836cSOleg Nesterov if (mm && mm != current->mm && 236704b836cSOleg Nesterov !ptrace_may_access(task, PTRACE_MODE_READ)) { 237831830b5SAl Viro mmput(mm); 238ec6fd8a4SAl Viro mm = ERR_PTR(-EACCES); 239831830b5SAl Viro } 2409b1bf12dSKOSAKI Motohiro mutex_unlock(&task->signal->cred_guard_mutex); 241704b836cSOleg Nesterov 24213f0feafSOleg Nesterov return mm; 24313f0feafSOleg Nesterov } 244831830b5SAl Viro 2451da177e4SLinus Torvalds static int proc_pid_cmdline(struct task_struct *task, char * buffer) 2461da177e4SLinus Torvalds { 2471da177e4SLinus Torvalds int res = 0; 2481da177e4SLinus Torvalds unsigned int len; 2491da177e4SLinus Torvalds struct mm_struct *mm = get_task_mm(task); 2501da177e4SLinus Torvalds if (!mm) 2511da177e4SLinus Torvalds goto out; 2521da177e4SLinus Torvalds if (!mm->arg_end) 2531da177e4SLinus Torvalds goto out_mm; /* Shh! No looking before we're done */ 2541da177e4SLinus Torvalds 2551da177e4SLinus Torvalds len = mm->arg_end - mm->arg_start; 2561da177e4SLinus Torvalds 2571da177e4SLinus Torvalds if (len > PAGE_SIZE) 2581da177e4SLinus Torvalds len = PAGE_SIZE; 2591da177e4SLinus Torvalds 2601da177e4SLinus Torvalds res = access_process_vm(task, mm->arg_start, buffer, len, 0); 2611da177e4SLinus Torvalds 2621da177e4SLinus Torvalds // If the nul at the end of args has been overwritten, then 2631da177e4SLinus Torvalds // assume application is using setproctitle(3). 2641da177e4SLinus Torvalds if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) { 2651da177e4SLinus Torvalds len = strnlen(buffer, res); 2661da177e4SLinus Torvalds if (len < res) { 2671da177e4SLinus Torvalds res = len; 2681da177e4SLinus Torvalds } else { 2691da177e4SLinus Torvalds len = mm->env_end - mm->env_start; 2701da177e4SLinus Torvalds if (len > PAGE_SIZE - res) 2711da177e4SLinus Torvalds len = PAGE_SIZE - res; 2721da177e4SLinus Torvalds res += access_process_vm(task, mm->env_start, buffer+res, len, 0); 2731da177e4SLinus Torvalds res = strnlen(buffer, res); 2741da177e4SLinus Torvalds } 2751da177e4SLinus Torvalds } 2761da177e4SLinus Torvalds out_mm: 2771da177e4SLinus Torvalds mmput(mm); 2781da177e4SLinus Torvalds out: 2791da177e4SLinus Torvalds return res; 2801da177e4SLinus Torvalds } 2811da177e4SLinus Torvalds 2821da177e4SLinus Torvalds static int proc_pid_auxv(struct task_struct *task, char *buffer) 2831da177e4SLinus Torvalds { 2841da177e4SLinus Torvalds int res = 0; 2851da177e4SLinus Torvalds struct mm_struct *mm = get_task_mm(task); 2861da177e4SLinus Torvalds if (mm) { 2871da177e4SLinus Torvalds unsigned int nwords = 0; 288dfe6b7d9SHannes Eder do { 2891da177e4SLinus Torvalds nwords += 2; 290dfe6b7d9SHannes Eder } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */ 2911da177e4SLinus Torvalds res = nwords * sizeof(mm->saved_auxv[0]); 2921da177e4SLinus Torvalds if (res > PAGE_SIZE) 2931da177e4SLinus Torvalds res = PAGE_SIZE; 2941da177e4SLinus Torvalds memcpy(buffer, mm->saved_auxv, res); 2951da177e4SLinus Torvalds mmput(mm); 2961da177e4SLinus Torvalds } 2971da177e4SLinus Torvalds return res; 2981da177e4SLinus Torvalds } 2991da177e4SLinus Torvalds 3001da177e4SLinus Torvalds 3011da177e4SLinus Torvalds #ifdef CONFIG_KALLSYMS 3021da177e4SLinus Torvalds /* 3031da177e4SLinus Torvalds * Provides a wchan file via kallsyms in a proper one-value-per-file format. 3041da177e4SLinus Torvalds * Returns the resolved symbol. If that fails, simply return the address. 3051da177e4SLinus Torvalds */ 3061da177e4SLinus Torvalds static int proc_pid_wchan(struct task_struct *task, char *buffer) 3071da177e4SLinus Torvalds { 308ffb45122SAlexey Dobriyan unsigned long wchan; 3099281aceaSTejun Heo char symname[KSYM_NAME_LEN]; 3101da177e4SLinus Torvalds 3111da177e4SLinus Torvalds wchan = get_wchan(task); 3121da177e4SLinus Torvalds 3139d65cb4aSAlexey Dobriyan if (lookup_symbol_name(wchan, symname) < 0) 314f83ce3e6SJake Edge if (!ptrace_may_access(task, PTRACE_MODE_READ)) 315f83ce3e6SJake Edge return 0; 316f83ce3e6SJake Edge else 3171da177e4SLinus Torvalds return sprintf(buffer, "%lu", wchan); 3189d65cb4aSAlexey Dobriyan else 3199d65cb4aSAlexey Dobriyan return sprintf(buffer, "%s", symname); 3201da177e4SLinus Torvalds } 3211da177e4SLinus Torvalds #endif /* CONFIG_KALLSYMS */ 3221da177e4SLinus Torvalds 3232ec220e2SKen Chen #ifdef CONFIG_STACKTRACE 3242ec220e2SKen Chen 3252ec220e2SKen Chen #define MAX_STACK_TRACE_DEPTH 64 3262ec220e2SKen Chen 3272ec220e2SKen Chen static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns, 3282ec220e2SKen Chen struct pid *pid, struct task_struct *task) 3292ec220e2SKen Chen { 3302ec220e2SKen Chen struct stack_trace trace; 3312ec220e2SKen Chen unsigned long *entries; 3322ec220e2SKen Chen int i; 3332ec220e2SKen Chen 3342ec220e2SKen Chen entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL); 3352ec220e2SKen Chen if (!entries) 3362ec220e2SKen Chen return -ENOMEM; 3372ec220e2SKen Chen 3382ec220e2SKen Chen trace.nr_entries = 0; 3392ec220e2SKen Chen trace.max_entries = MAX_STACK_TRACE_DEPTH; 3402ec220e2SKen Chen trace.entries = entries; 3412ec220e2SKen Chen trace.skip = 0; 3422ec220e2SKen Chen save_stack_trace_tsk(task, &trace); 3432ec220e2SKen Chen 3442ec220e2SKen Chen for (i = 0; i < trace.nr_entries; i++) { 3452ec220e2SKen Chen seq_printf(m, "[<%p>] %pS\n", 3462ec220e2SKen Chen (void *)entries[i], (void *)entries[i]); 3472ec220e2SKen Chen } 3482ec220e2SKen Chen kfree(entries); 3492ec220e2SKen Chen 3502ec220e2SKen Chen return 0; 3512ec220e2SKen Chen } 3522ec220e2SKen Chen #endif 3532ec220e2SKen Chen 3541da177e4SLinus Torvalds #ifdef CONFIG_SCHEDSTATS 3551da177e4SLinus Torvalds /* 3561da177e4SLinus Torvalds * Provides /proc/PID/schedstat 3571da177e4SLinus Torvalds */ 3581da177e4SLinus Torvalds static int proc_pid_schedstat(struct task_struct *task, char *buffer) 3591da177e4SLinus Torvalds { 360172ba844SBalbir Singh return sprintf(buffer, "%llu %llu %lu\n", 361826e08b0SIngo Molnar (unsigned long long)task->se.sum_exec_runtime, 362826e08b0SIngo Molnar (unsigned long long)task->sched_info.run_delay, 3632d72376bSIngo Molnar task->sched_info.pcount); 3641da177e4SLinus Torvalds } 3651da177e4SLinus Torvalds #endif 3661da177e4SLinus Torvalds 3679745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP 3689745512cSArjan van de Ven static int lstats_show_proc(struct seq_file *m, void *v) 3699745512cSArjan van de Ven { 3709745512cSArjan van de Ven int i; 37113d77c37SHiroshi Shimamoto struct inode *inode = m->private; 37213d77c37SHiroshi Shimamoto struct task_struct *task = get_proc_task(inode); 3739745512cSArjan van de Ven 37413d77c37SHiroshi Shimamoto if (!task) 37513d77c37SHiroshi Shimamoto return -ESRCH; 37613d77c37SHiroshi Shimamoto seq_puts(m, "Latency Top version : v0.1\n"); 3779745512cSArjan van de Ven for (i = 0; i < 32; i++) { 37834e49d4fSJoe Perches struct latency_record *lr = &task->latency_record[i]; 37934e49d4fSJoe Perches if (lr->backtrace[0]) { 3809745512cSArjan van de Ven int q; 3819745512cSArjan van de Ven seq_printf(m, "%i %li %li", 38234e49d4fSJoe Perches lr->count, lr->time, lr->max); 3839745512cSArjan van de Ven for (q = 0; q < LT_BACKTRACEDEPTH; q++) { 38434e49d4fSJoe Perches unsigned long bt = lr->backtrace[q]; 38534e49d4fSJoe Perches if (!bt) 3869745512cSArjan van de Ven break; 38734e49d4fSJoe Perches if (bt == ULONG_MAX) 3889745512cSArjan van de Ven break; 38934e49d4fSJoe Perches seq_printf(m, " %ps", (void *)bt); 3909745512cSArjan van de Ven } 3919d6de12fSAlexey Dobriyan seq_putc(m, '\n'); 3929745512cSArjan van de Ven } 3939745512cSArjan van de Ven 3949745512cSArjan van de Ven } 39513d77c37SHiroshi Shimamoto put_task_struct(task); 3969745512cSArjan van de Ven return 0; 3979745512cSArjan van de Ven } 3989745512cSArjan van de Ven 3999745512cSArjan van de Ven static int lstats_open(struct inode *inode, struct file *file) 4009745512cSArjan van de Ven { 40113d77c37SHiroshi Shimamoto return single_open(file, lstats_show_proc, inode); 402d6643d12SHiroshi Shimamoto } 403d6643d12SHiroshi Shimamoto 4049745512cSArjan van de Ven static ssize_t lstats_write(struct file *file, const char __user *buf, 4059745512cSArjan van de Ven size_t count, loff_t *offs) 4069745512cSArjan van de Ven { 40713d77c37SHiroshi Shimamoto struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 4089745512cSArjan van de Ven 40913d77c37SHiroshi Shimamoto if (!task) 41013d77c37SHiroshi Shimamoto return -ESRCH; 4119745512cSArjan van de Ven clear_all_latency_tracing(task); 41213d77c37SHiroshi Shimamoto put_task_struct(task); 4139745512cSArjan van de Ven 4149745512cSArjan van de Ven return count; 4159745512cSArjan van de Ven } 4169745512cSArjan van de Ven 4179745512cSArjan van de Ven static const struct file_operations proc_lstats_operations = { 4189745512cSArjan van de Ven .open = lstats_open, 4199745512cSArjan van de Ven .read = seq_read, 4209745512cSArjan van de Ven .write = lstats_write, 4219745512cSArjan van de Ven .llseek = seq_lseek, 42213d77c37SHiroshi Shimamoto .release = single_release, 4239745512cSArjan van de Ven }; 4249745512cSArjan van de Ven 4259745512cSArjan van de Ven #endif 4269745512cSArjan van de Ven 4271da177e4SLinus Torvalds static int proc_oom_score(struct task_struct *task, char *buffer) 4281da177e4SLinus Torvalds { 429b95c35e7SOleg Nesterov unsigned long points = 0; 4301da177e4SLinus Torvalds 43119c5d45aSAlexey Dobriyan read_lock(&tasklist_lock); 432b95c35e7SOleg Nesterov if (pid_alive(task)) 433a63d83f4SDavid Rientjes points = oom_badness(task, NULL, NULL, 434a63d83f4SDavid Rientjes totalram_pages + total_swap_pages); 43519c5d45aSAlexey Dobriyan read_unlock(&tasklist_lock); 4361da177e4SLinus Torvalds return sprintf(buffer, "%lu\n", points); 4371da177e4SLinus Torvalds } 4381da177e4SLinus Torvalds 439d85f50d5SNeil Horman struct limit_names { 440d85f50d5SNeil Horman char *name; 441d85f50d5SNeil Horman char *unit; 442d85f50d5SNeil Horman }; 443d85f50d5SNeil Horman 444d85f50d5SNeil Horman static const struct limit_names lnames[RLIM_NLIMITS] = { 445cff4edb5SKees Cook [RLIMIT_CPU] = {"Max cpu time", "seconds"}, 446d85f50d5SNeil Horman [RLIMIT_FSIZE] = {"Max file size", "bytes"}, 447d85f50d5SNeil Horman [RLIMIT_DATA] = {"Max data size", "bytes"}, 448d85f50d5SNeil Horman [RLIMIT_STACK] = {"Max stack size", "bytes"}, 449d85f50d5SNeil Horman [RLIMIT_CORE] = {"Max core file size", "bytes"}, 450d85f50d5SNeil Horman [RLIMIT_RSS] = {"Max resident set", "bytes"}, 451d85f50d5SNeil Horman [RLIMIT_NPROC] = {"Max processes", "processes"}, 452d85f50d5SNeil Horman [RLIMIT_NOFILE] = {"Max open files", "files"}, 453d85f50d5SNeil Horman [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"}, 454d85f50d5SNeil Horman [RLIMIT_AS] = {"Max address space", "bytes"}, 455d85f50d5SNeil Horman [RLIMIT_LOCKS] = {"Max file locks", "locks"}, 456d85f50d5SNeil Horman [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"}, 457d85f50d5SNeil Horman [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"}, 458d85f50d5SNeil Horman [RLIMIT_NICE] = {"Max nice priority", NULL}, 459d85f50d5SNeil Horman [RLIMIT_RTPRIO] = {"Max realtime priority", NULL}, 4608808117cSEugene Teo [RLIMIT_RTTIME] = {"Max realtime timeout", "us"}, 461d85f50d5SNeil Horman }; 462d85f50d5SNeil Horman 463d85f50d5SNeil Horman /* Display limits for a process */ 464d85f50d5SNeil Horman static int proc_pid_limits(struct task_struct *task, char *buffer) 465d85f50d5SNeil Horman { 466d85f50d5SNeil Horman unsigned int i; 467d85f50d5SNeil Horman int count = 0; 468d85f50d5SNeil Horman unsigned long flags; 469d85f50d5SNeil Horman char *bufptr = buffer; 470d85f50d5SNeil Horman 471d85f50d5SNeil Horman struct rlimit rlim[RLIM_NLIMITS]; 472d85f50d5SNeil Horman 473a6bebbc8SLai Jiangshan if (!lock_task_sighand(task, &flags)) 474d85f50d5SNeil Horman return 0; 475d85f50d5SNeil Horman memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS); 476d85f50d5SNeil Horman unlock_task_sighand(task, &flags); 477d85f50d5SNeil Horman 478d85f50d5SNeil Horman /* 479d85f50d5SNeil Horman * print the file header 480d85f50d5SNeil Horman */ 481d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n", 482d85f50d5SNeil Horman "Limit", "Soft Limit", "Hard Limit", "Units"); 483d85f50d5SNeil Horman 484d85f50d5SNeil Horman for (i = 0; i < RLIM_NLIMITS; i++) { 485d85f50d5SNeil Horman if (rlim[i].rlim_cur == RLIM_INFINITY) 486d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-25s %-20s ", 487d85f50d5SNeil Horman lnames[i].name, "unlimited"); 488d85f50d5SNeil Horman else 489d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-25s %-20lu ", 490d85f50d5SNeil Horman lnames[i].name, rlim[i].rlim_cur); 491d85f50d5SNeil Horman 492d85f50d5SNeil Horman if (rlim[i].rlim_max == RLIM_INFINITY) 493d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-20s ", "unlimited"); 494d85f50d5SNeil Horman else 495d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-20lu ", 496d85f50d5SNeil Horman rlim[i].rlim_max); 497d85f50d5SNeil Horman 498d85f50d5SNeil Horman if (lnames[i].unit) 499d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-10s\n", 500d85f50d5SNeil Horman lnames[i].unit); 501d85f50d5SNeil Horman else 502d85f50d5SNeil Horman count += sprintf(&bufptr[count], "\n"); 503d85f50d5SNeil Horman } 504d85f50d5SNeil Horman 505d85f50d5SNeil Horman return count; 506d85f50d5SNeil Horman } 507d85f50d5SNeil Horman 508ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK 509ebcb6734SRoland McGrath static int proc_pid_syscall(struct task_struct *task, char *buffer) 510ebcb6734SRoland McGrath { 511ebcb6734SRoland McGrath long nr; 512ebcb6734SRoland McGrath unsigned long args[6], sp, pc; 513ebcb6734SRoland McGrath 514ebcb6734SRoland McGrath if (task_current_syscall(task, &nr, args, 6, &sp, &pc)) 515ebcb6734SRoland McGrath return sprintf(buffer, "running\n"); 516ebcb6734SRoland McGrath 517ebcb6734SRoland McGrath if (nr < 0) 518ebcb6734SRoland McGrath return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc); 519ebcb6734SRoland McGrath 520ebcb6734SRoland McGrath return sprintf(buffer, 521ebcb6734SRoland McGrath "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n", 522ebcb6734SRoland McGrath nr, 523ebcb6734SRoland McGrath args[0], args[1], args[2], args[3], args[4], args[5], 524ebcb6734SRoland McGrath sp, pc); 525ebcb6734SRoland McGrath } 526ebcb6734SRoland McGrath #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */ 527ebcb6734SRoland McGrath 5281da177e4SLinus Torvalds /************************************************************************/ 5291da177e4SLinus Torvalds /* Here the fs part begins */ 5301da177e4SLinus Torvalds /************************************************************************/ 5311da177e4SLinus Torvalds 5321da177e4SLinus Torvalds /* permission checks */ 533778c1144SEric W. Biederman static int proc_fd_access_allowed(struct inode *inode) 5341da177e4SLinus Torvalds { 535778c1144SEric W. Biederman struct task_struct *task; 536778c1144SEric W. Biederman int allowed = 0; 537df26c40eSEric W. Biederman /* Allow access to a task's file descriptors if it is us or we 538df26c40eSEric W. Biederman * may use ptrace attach to the process and find out that 539df26c40eSEric W. Biederman * information. 540778c1144SEric W. Biederman */ 541778c1144SEric W. Biederman task = get_proc_task(inode); 542df26c40eSEric W. Biederman if (task) { 543006ebb40SStephen Smalley allowed = ptrace_may_access(task, PTRACE_MODE_READ); 544778c1144SEric W. Biederman put_task_struct(task); 545df26c40eSEric W. Biederman } 546778c1144SEric W. Biederman return allowed; 5471da177e4SLinus Torvalds } 5481da177e4SLinus Torvalds 5496d76fa58SLinus Torvalds static int proc_setattr(struct dentry *dentry, struct iattr *attr) 5506d76fa58SLinus Torvalds { 5516d76fa58SLinus Torvalds int error; 5526d76fa58SLinus Torvalds struct inode *inode = dentry->d_inode; 5536d76fa58SLinus Torvalds 5546d76fa58SLinus Torvalds if (attr->ia_valid & ATTR_MODE) 5556d76fa58SLinus Torvalds return -EPERM; 5566d76fa58SLinus Torvalds 5576d76fa58SLinus Torvalds error = inode_change_ok(inode, attr); 5581025774cSChristoph Hellwig if (error) 5596d76fa58SLinus Torvalds return error; 5601025774cSChristoph Hellwig 5611025774cSChristoph Hellwig if ((attr->ia_valid & ATTR_SIZE) && 5621025774cSChristoph Hellwig attr->ia_size != i_size_read(inode)) { 5631025774cSChristoph Hellwig error = vmtruncate(inode, attr->ia_size); 5641025774cSChristoph Hellwig if (error) 5651025774cSChristoph Hellwig return error; 5661025774cSChristoph Hellwig } 5671025774cSChristoph Hellwig 5681025774cSChristoph Hellwig setattr_copy(inode, attr); 5691025774cSChristoph Hellwig mark_inode_dirty(inode); 5701025774cSChristoph Hellwig return 0; 5716d76fa58SLinus Torvalds } 5726d76fa58SLinus Torvalds 573c5ef1c42SArjan van de Ven static const struct inode_operations proc_def_inode_operations = { 5746d76fa58SLinus Torvalds .setattr = proc_setattr, 5756d76fa58SLinus Torvalds }; 5766d76fa58SLinus Torvalds 577a1a2c409SMiklos Szeredi static int mounts_open_common(struct inode *inode, struct file *file, 578a1a2c409SMiklos Szeredi const struct seq_operations *op) 5791da177e4SLinus Torvalds { 58099f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 581cf7b708cSPavel Emelyanov struct nsproxy *nsp; 5826b3286edSKirill Korotaev struct mnt_namespace *ns = NULL; 583a1a2c409SMiklos Szeredi struct path root; 5845addc5ddSAl Viro struct proc_mounts *p; 5855addc5ddSAl Viro int ret = -EINVAL; 5865addc5ddSAl Viro 58799f89551SEric W. Biederman if (task) { 588cf7b708cSPavel Emelyanov rcu_read_lock(); 589cf7b708cSPavel Emelyanov nsp = task_nsproxy(task); 590cf7b708cSPavel Emelyanov if (nsp) { 591cf7b708cSPavel Emelyanov ns = nsp->mnt_ns; 5926b3286edSKirill Korotaev if (ns) 5936b3286edSKirill Korotaev get_mnt_ns(ns); 594863c4702SAlexey Dobriyan } 595cf7b708cSPavel Emelyanov rcu_read_unlock(); 596f7ad3c6bSMiklos Szeredi if (ns && get_task_root(task, &root) == 0) 5977c2c7d99SHugh Dickins ret = 0; 59899f89551SEric W. Biederman put_task_struct(task); 59999f89551SEric W. Biederman } 6001da177e4SLinus Torvalds 601a1a2c409SMiklos Szeredi if (!ns) 602a1a2c409SMiklos Szeredi goto err; 6037c2c7d99SHugh Dickins if (ret) 604a1a2c409SMiklos Szeredi goto err_put_ns; 605a1a2c409SMiklos Szeredi 6065addc5ddSAl Viro ret = -ENOMEM; 6075addc5ddSAl Viro p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL); 608a1a2c409SMiklos Szeredi if (!p) 609a1a2c409SMiklos Szeredi goto err_put_path; 610a1a2c409SMiklos Szeredi 6115addc5ddSAl Viro file->private_data = &p->m; 612a1a2c409SMiklos Szeredi ret = seq_open(file, op); 613a1a2c409SMiklos Szeredi if (ret) 614a1a2c409SMiklos Szeredi goto err_free; 615a1a2c409SMiklos Szeredi 616a1a2c409SMiklos Szeredi p->m.private = p; 617a1a2c409SMiklos Szeredi p->ns = ns; 618a1a2c409SMiklos Szeredi p->root = root; 6196b3286edSKirill Korotaev p->event = ns->event; 620a1a2c409SMiklos Szeredi 6215addc5ddSAl Viro return 0; 622a1a2c409SMiklos Szeredi 623a1a2c409SMiklos Szeredi err_free: 6245addc5ddSAl Viro kfree(p); 625a1a2c409SMiklos Szeredi err_put_path: 626a1a2c409SMiklos Szeredi path_put(&root); 627a1a2c409SMiklos Szeredi err_put_ns: 6286b3286edSKirill Korotaev put_mnt_ns(ns); 629a1a2c409SMiklos Szeredi err: 6301da177e4SLinus Torvalds return ret; 6311da177e4SLinus Torvalds } 6321da177e4SLinus Torvalds 6331da177e4SLinus Torvalds static int mounts_release(struct inode *inode, struct file *file) 6341da177e4SLinus Torvalds { 635a1a2c409SMiklos Szeredi struct proc_mounts *p = file->private_data; 636a1a2c409SMiklos Szeredi path_put(&p->root); 637a1a2c409SMiklos Szeredi put_mnt_ns(p->ns); 6381da177e4SLinus Torvalds return seq_release(inode, file); 6391da177e4SLinus Torvalds } 6401da177e4SLinus Torvalds 6415addc5ddSAl Viro static unsigned mounts_poll(struct file *file, poll_table *wait) 6425addc5ddSAl Viro { 6435addc5ddSAl Viro struct proc_mounts *p = file->private_data; 64431b07093SKOSAKI Motohiro unsigned res = POLLIN | POLLRDNORM; 6455addc5ddSAl Viro 6469f5596afSAl Viro poll_wait(file, &p->ns->poll, wait); 6479f5596afSAl Viro if (mnt_had_events(p)) 64831b07093SKOSAKI Motohiro res |= POLLERR | POLLPRI; 6495addc5ddSAl Viro 6505addc5ddSAl Viro return res; 6515addc5ddSAl Viro } 6525addc5ddSAl Viro 653a1a2c409SMiklos Szeredi static int mounts_open(struct inode *inode, struct file *file) 654a1a2c409SMiklos Szeredi { 655a1a2c409SMiklos Szeredi return mounts_open_common(inode, file, &mounts_op); 656a1a2c409SMiklos Szeredi } 657a1a2c409SMiklos Szeredi 65800977a59SArjan van de Ven static const struct file_operations proc_mounts_operations = { 6591da177e4SLinus Torvalds .open = mounts_open, 6601da177e4SLinus Torvalds .read = seq_read, 6611da177e4SLinus Torvalds .llseek = seq_lseek, 6621da177e4SLinus Torvalds .release = mounts_release, 6635addc5ddSAl Viro .poll = mounts_poll, 6641da177e4SLinus Torvalds }; 6651da177e4SLinus Torvalds 6662d4d4864SRam Pai static int mountinfo_open(struct inode *inode, struct file *file) 6672d4d4864SRam Pai { 6682d4d4864SRam Pai return mounts_open_common(inode, file, &mountinfo_op); 6692d4d4864SRam Pai } 6702d4d4864SRam Pai 6712d4d4864SRam Pai static const struct file_operations proc_mountinfo_operations = { 6722d4d4864SRam Pai .open = mountinfo_open, 6732d4d4864SRam Pai .read = seq_read, 6742d4d4864SRam Pai .llseek = seq_lseek, 6752d4d4864SRam Pai .release = mounts_release, 6762d4d4864SRam Pai .poll = mounts_poll, 6772d4d4864SRam Pai }; 6782d4d4864SRam Pai 679b4629fe2SChuck Lever static int mountstats_open(struct inode *inode, struct file *file) 680b4629fe2SChuck Lever { 681a1a2c409SMiklos Szeredi return mounts_open_common(inode, file, &mountstats_op); 682b4629fe2SChuck Lever } 683b4629fe2SChuck Lever 68400977a59SArjan van de Ven static const struct file_operations proc_mountstats_operations = { 685b4629fe2SChuck Lever .open = mountstats_open, 686b4629fe2SChuck Lever .read = seq_read, 687b4629fe2SChuck Lever .llseek = seq_lseek, 688b4629fe2SChuck Lever .release = mounts_release, 689b4629fe2SChuck Lever }; 690b4629fe2SChuck Lever 6911da177e4SLinus Torvalds #define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */ 6921da177e4SLinus Torvalds 6931da177e4SLinus Torvalds static ssize_t proc_info_read(struct file * file, char __user * buf, 6941da177e4SLinus Torvalds size_t count, loff_t *ppos) 6951da177e4SLinus Torvalds { 6962fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 6971da177e4SLinus Torvalds unsigned long page; 6981da177e4SLinus Torvalds ssize_t length; 69999f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 70099f89551SEric W. Biederman 70199f89551SEric W. Biederman length = -ESRCH; 70299f89551SEric W. Biederman if (!task) 70399f89551SEric W. Biederman goto out_no_task; 7041da177e4SLinus Torvalds 7051da177e4SLinus Torvalds if (count > PROC_BLOCK_SIZE) 7061da177e4SLinus Torvalds count = PROC_BLOCK_SIZE; 70799f89551SEric W. Biederman 70899f89551SEric W. Biederman length = -ENOMEM; 709e12ba74dSMel Gorman if (!(page = __get_free_page(GFP_TEMPORARY))) 71099f89551SEric W. Biederman goto out; 7111da177e4SLinus Torvalds 7121da177e4SLinus Torvalds length = PROC_I(inode)->op.proc_read(task, (char*)page); 7131da177e4SLinus Torvalds 7141da177e4SLinus Torvalds if (length >= 0) 7151da177e4SLinus Torvalds length = simple_read_from_buffer(buf, count, ppos, (char *)page, length); 7161da177e4SLinus Torvalds free_page(page); 71799f89551SEric W. Biederman out: 71899f89551SEric W. Biederman put_task_struct(task); 71999f89551SEric W. Biederman out_no_task: 7201da177e4SLinus Torvalds return length; 7211da177e4SLinus Torvalds } 7221da177e4SLinus Torvalds 72300977a59SArjan van de Ven static const struct file_operations proc_info_file_operations = { 7241da177e4SLinus Torvalds .read = proc_info_read, 72587df8424SArnd Bergmann .llseek = generic_file_llseek, 7261da177e4SLinus Torvalds }; 7271da177e4SLinus Torvalds 728be614086SEric W. Biederman static int proc_single_show(struct seq_file *m, void *v) 729be614086SEric W. Biederman { 730be614086SEric W. Biederman struct inode *inode = m->private; 731be614086SEric W. Biederman struct pid_namespace *ns; 732be614086SEric W. Biederman struct pid *pid; 733be614086SEric W. Biederman struct task_struct *task; 734be614086SEric W. Biederman int ret; 735be614086SEric W. Biederman 736be614086SEric W. Biederman ns = inode->i_sb->s_fs_info; 737be614086SEric W. Biederman pid = proc_pid(inode); 738be614086SEric W. Biederman task = get_pid_task(pid, PIDTYPE_PID); 739be614086SEric W. Biederman if (!task) 740be614086SEric W. Biederman return -ESRCH; 741be614086SEric W. Biederman 742be614086SEric W. Biederman ret = PROC_I(inode)->op.proc_show(m, ns, pid, task); 743be614086SEric W. Biederman 744be614086SEric W. Biederman put_task_struct(task); 745be614086SEric W. Biederman return ret; 746be614086SEric W. Biederman } 747be614086SEric W. Biederman 748be614086SEric W. Biederman static int proc_single_open(struct inode *inode, struct file *filp) 749be614086SEric W. Biederman { 750c6a34058SJovi Zhang return single_open(filp, proc_single_show, inode); 751be614086SEric W. Biederman } 752be614086SEric W. Biederman 753be614086SEric W. Biederman static const struct file_operations proc_single_file_operations = { 754be614086SEric W. Biederman .open = proc_single_open, 755be614086SEric W. Biederman .read = seq_read, 756be614086SEric W. Biederman .llseek = seq_lseek, 757be614086SEric W. Biederman .release = single_release, 758be614086SEric W. Biederman }; 759be614086SEric W. Biederman 7601da177e4SLinus Torvalds static int mem_open(struct inode* inode, struct file* file) 7611da177e4SLinus Torvalds { 7621da177e4SLinus Torvalds file->private_data = (void*)((long)current->self_exec_id); 7634a3956c7SKAMEZAWA Hiroyuki /* OK to pass negative loff_t, we can catch out-of-range */ 7644a3956c7SKAMEZAWA Hiroyuki file->f_mode |= FMODE_UNSIGNED_OFFSET; 7651da177e4SLinus Torvalds return 0; 7661da177e4SLinus Torvalds } 7671da177e4SLinus Torvalds 7681da177e4SLinus Torvalds static ssize_t mem_read(struct file * file, char __user * buf, 7691da177e4SLinus Torvalds size_t count, loff_t *ppos) 7701da177e4SLinus Torvalds { 7712fddfeefSJosef "Jeff" Sipek struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 7721da177e4SLinus Torvalds char *page; 7731da177e4SLinus Torvalds unsigned long src = *ppos; 7741da177e4SLinus Torvalds int ret = -ESRCH; 7751da177e4SLinus Torvalds struct mm_struct *mm; 7761da177e4SLinus Torvalds 77799f89551SEric W. Biederman if (!task) 77899f89551SEric W. Biederman goto out_no_task; 77999f89551SEric W. Biederman 780638fa202SRoland McGrath if (check_mem_permission(task)) 7811da177e4SLinus Torvalds goto out; 7821da177e4SLinus Torvalds 7831da177e4SLinus Torvalds ret = -ENOMEM; 784e12ba74dSMel Gorman page = (char *)__get_free_page(GFP_TEMPORARY); 7851da177e4SLinus Torvalds if (!page) 7861da177e4SLinus Torvalds goto out; 7871da177e4SLinus Torvalds 7881da177e4SLinus Torvalds ret = 0; 7891da177e4SLinus Torvalds 7901da177e4SLinus Torvalds mm = get_task_mm(task); 7911da177e4SLinus Torvalds if (!mm) 7921da177e4SLinus Torvalds goto out_free; 7931da177e4SLinus Torvalds 7941da177e4SLinus Torvalds ret = -EIO; 7951da177e4SLinus Torvalds 7961da177e4SLinus Torvalds if (file->private_data != (void*)((long)current->self_exec_id)) 7971da177e4SLinus Torvalds goto out_put; 7981da177e4SLinus Torvalds 7991da177e4SLinus Torvalds ret = 0; 8001da177e4SLinus Torvalds 8011da177e4SLinus Torvalds while (count > 0) { 8021da177e4SLinus Torvalds int this_len, retval; 8031da177e4SLinus Torvalds 8041da177e4SLinus Torvalds this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; 8051da177e4SLinus Torvalds retval = access_process_vm(task, src, page, this_len, 0); 806638fa202SRoland McGrath if (!retval || check_mem_permission(task)) { 8071da177e4SLinus Torvalds if (!ret) 8081da177e4SLinus Torvalds ret = -EIO; 8091da177e4SLinus Torvalds break; 8101da177e4SLinus Torvalds } 8111da177e4SLinus Torvalds 8121da177e4SLinus Torvalds if (copy_to_user(buf, page, retval)) { 8131da177e4SLinus Torvalds ret = -EFAULT; 8141da177e4SLinus Torvalds break; 8151da177e4SLinus Torvalds } 8161da177e4SLinus Torvalds 8171da177e4SLinus Torvalds ret += retval; 8181da177e4SLinus Torvalds src += retval; 8191da177e4SLinus Torvalds buf += retval; 8201da177e4SLinus Torvalds count -= retval; 8211da177e4SLinus Torvalds } 8221da177e4SLinus Torvalds *ppos = src; 8231da177e4SLinus Torvalds 8241da177e4SLinus Torvalds out_put: 8251da177e4SLinus Torvalds mmput(mm); 8261da177e4SLinus Torvalds out_free: 8271da177e4SLinus Torvalds free_page((unsigned long) page); 8281da177e4SLinus Torvalds out: 82999f89551SEric W. Biederman put_task_struct(task); 83099f89551SEric W. Biederman out_no_task: 8311da177e4SLinus Torvalds return ret; 8321da177e4SLinus Torvalds } 8331da177e4SLinus Torvalds 8341da177e4SLinus Torvalds #define mem_write NULL 8351da177e4SLinus Torvalds 8361da177e4SLinus Torvalds #ifndef mem_write 8371da177e4SLinus Torvalds /* This is a security hazard */ 83863967fa9SGlauber de Oliveira Costa static ssize_t mem_write(struct file * file, const char __user *buf, 8391da177e4SLinus Torvalds size_t count, loff_t *ppos) 8401da177e4SLinus Torvalds { 841f7ca54f4SFrederik Deweerdt int copied; 8421da177e4SLinus Torvalds char *page; 8432fddfeefSJosef "Jeff" Sipek struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 8441da177e4SLinus Torvalds unsigned long dst = *ppos; 8451da177e4SLinus Torvalds 84699f89551SEric W. Biederman copied = -ESRCH; 84799f89551SEric W. Biederman if (!task) 84899f89551SEric W. Biederman goto out_no_task; 8491da177e4SLinus Torvalds 850638fa202SRoland McGrath if (check_mem_permission(task)) 85199f89551SEric W. Biederman goto out; 85299f89551SEric W. Biederman 85399f89551SEric W. Biederman copied = -ENOMEM; 854e12ba74dSMel Gorman page = (char *)__get_free_page(GFP_TEMPORARY); 8551da177e4SLinus Torvalds if (!page) 85699f89551SEric W. Biederman goto out; 8571da177e4SLinus Torvalds 858f7ca54f4SFrederik Deweerdt copied = 0; 8591da177e4SLinus Torvalds while (count > 0) { 8601da177e4SLinus Torvalds int this_len, retval; 8611da177e4SLinus Torvalds 8621da177e4SLinus Torvalds this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; 8631da177e4SLinus Torvalds if (copy_from_user(page, buf, this_len)) { 8641da177e4SLinus Torvalds copied = -EFAULT; 8651da177e4SLinus Torvalds break; 8661da177e4SLinus Torvalds } 8671da177e4SLinus Torvalds retval = access_process_vm(task, dst, page, this_len, 1); 8681da177e4SLinus Torvalds if (!retval) { 8691da177e4SLinus Torvalds if (!copied) 8701da177e4SLinus Torvalds copied = -EIO; 8711da177e4SLinus Torvalds break; 8721da177e4SLinus Torvalds } 8731da177e4SLinus Torvalds copied += retval; 8741da177e4SLinus Torvalds buf += retval; 8751da177e4SLinus Torvalds dst += retval; 8761da177e4SLinus Torvalds count -= retval; 8771da177e4SLinus Torvalds } 8781da177e4SLinus Torvalds *ppos = dst; 8791da177e4SLinus Torvalds free_page((unsigned long) page); 88099f89551SEric W. Biederman out: 88199f89551SEric W. Biederman put_task_struct(task); 88299f89551SEric W. Biederman out_no_task: 8831da177e4SLinus Torvalds return copied; 8841da177e4SLinus Torvalds } 8851da177e4SLinus Torvalds #endif 8861da177e4SLinus Torvalds 88785863e47SMatt Mackall loff_t mem_lseek(struct file *file, loff_t offset, int orig) 8881da177e4SLinus Torvalds { 8891da177e4SLinus Torvalds switch (orig) { 8901da177e4SLinus Torvalds case 0: 8911da177e4SLinus Torvalds file->f_pos = offset; 8921da177e4SLinus Torvalds break; 8931da177e4SLinus Torvalds case 1: 8941da177e4SLinus Torvalds file->f_pos += offset; 8951da177e4SLinus Torvalds break; 8961da177e4SLinus Torvalds default: 8971da177e4SLinus Torvalds return -EINVAL; 8981da177e4SLinus Torvalds } 8991da177e4SLinus Torvalds force_successful_syscall_return(); 9001da177e4SLinus Torvalds return file->f_pos; 9011da177e4SLinus Torvalds } 9021da177e4SLinus Torvalds 90300977a59SArjan van de Ven static const struct file_operations proc_mem_operations = { 9041da177e4SLinus Torvalds .llseek = mem_lseek, 9051da177e4SLinus Torvalds .read = mem_read, 9061da177e4SLinus Torvalds .write = mem_write, 9071da177e4SLinus Torvalds .open = mem_open, 9081da177e4SLinus Torvalds }; 9091da177e4SLinus Torvalds 910315e28c8SJames Pearson static ssize_t environ_read(struct file *file, char __user *buf, 911315e28c8SJames Pearson size_t count, loff_t *ppos) 912315e28c8SJames Pearson { 913315e28c8SJames Pearson struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 914315e28c8SJames Pearson char *page; 915315e28c8SJames Pearson unsigned long src = *ppos; 916315e28c8SJames Pearson int ret = -ESRCH; 917315e28c8SJames Pearson struct mm_struct *mm; 918315e28c8SJames Pearson 919315e28c8SJames Pearson if (!task) 920315e28c8SJames Pearson goto out_no_task; 921315e28c8SJames Pearson 922315e28c8SJames Pearson ret = -ENOMEM; 923315e28c8SJames Pearson page = (char *)__get_free_page(GFP_TEMPORARY); 924315e28c8SJames Pearson if (!page) 925315e28c8SJames Pearson goto out; 926315e28c8SJames Pearson 927315e28c8SJames Pearson 928*d6f64b89SAl Viro mm = mm_for_maps(task); 929*d6f64b89SAl Viro ret = PTR_ERR(mm); 930*d6f64b89SAl Viro if (!mm || IS_ERR(mm)) 931315e28c8SJames Pearson goto out_free; 932315e28c8SJames Pearson 933*d6f64b89SAl Viro ret = 0; 934315e28c8SJames Pearson while (count > 0) { 935315e28c8SJames Pearson int this_len, retval, max_len; 936315e28c8SJames Pearson 937315e28c8SJames Pearson this_len = mm->env_end - (mm->env_start + src); 938315e28c8SJames Pearson 939315e28c8SJames Pearson if (this_len <= 0) 940315e28c8SJames Pearson break; 941315e28c8SJames Pearson 942315e28c8SJames Pearson max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; 943315e28c8SJames Pearson this_len = (this_len > max_len) ? max_len : this_len; 944315e28c8SJames Pearson 945315e28c8SJames Pearson retval = access_process_vm(task, (mm->env_start + src), 946315e28c8SJames Pearson page, this_len, 0); 947315e28c8SJames Pearson 948315e28c8SJames Pearson if (retval <= 0) { 949315e28c8SJames Pearson ret = retval; 950315e28c8SJames Pearson break; 951315e28c8SJames Pearson } 952315e28c8SJames Pearson 953315e28c8SJames Pearson if (copy_to_user(buf, page, retval)) { 954315e28c8SJames Pearson ret = -EFAULT; 955315e28c8SJames Pearson break; 956315e28c8SJames Pearson } 957315e28c8SJames Pearson 958315e28c8SJames Pearson ret += retval; 959315e28c8SJames Pearson src += retval; 960315e28c8SJames Pearson buf += retval; 961315e28c8SJames Pearson count -= retval; 962315e28c8SJames Pearson } 963315e28c8SJames Pearson *ppos = src; 964315e28c8SJames Pearson 965315e28c8SJames Pearson mmput(mm); 966315e28c8SJames Pearson out_free: 967315e28c8SJames Pearson free_page((unsigned long) page); 968315e28c8SJames Pearson out: 969315e28c8SJames Pearson put_task_struct(task); 970315e28c8SJames Pearson out_no_task: 971315e28c8SJames Pearson return ret; 972315e28c8SJames Pearson } 973315e28c8SJames Pearson 974315e28c8SJames Pearson static const struct file_operations proc_environ_operations = { 975315e28c8SJames Pearson .read = environ_read, 97687df8424SArnd Bergmann .llseek = generic_file_llseek, 977315e28c8SJames Pearson }; 978315e28c8SJames Pearson 9791da177e4SLinus Torvalds static ssize_t oom_adjust_read(struct file *file, char __user *buf, 9801da177e4SLinus Torvalds size_t count, loff_t *ppos) 9811da177e4SLinus Torvalds { 9822fddfeefSJosef "Jeff" Sipek struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 9838578cea7SEric W. Biederman char buffer[PROC_NUMBUF]; 9841da177e4SLinus Torvalds size_t len; 98528b83c51SKOSAKI Motohiro int oom_adjust = OOM_DISABLE; 98628b83c51SKOSAKI Motohiro unsigned long flags; 9871da177e4SLinus Torvalds 98899f89551SEric W. Biederman if (!task) 98999f89551SEric W. Biederman return -ESRCH; 99028b83c51SKOSAKI Motohiro 99128b83c51SKOSAKI Motohiro if (lock_task_sighand(task, &flags)) { 99228b83c51SKOSAKI Motohiro oom_adjust = task->signal->oom_adj; 99328b83c51SKOSAKI Motohiro unlock_task_sighand(task, &flags); 99428b83c51SKOSAKI Motohiro } 99528b83c51SKOSAKI Motohiro 99699f89551SEric W. Biederman put_task_struct(task); 99799f89551SEric W. Biederman 9988578cea7SEric W. Biederman len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust); 9990c28f287SAkinobu Mita 10000c28f287SAkinobu Mita return simple_read_from_buffer(buf, count, ppos, buffer, len); 10011da177e4SLinus Torvalds } 10021da177e4SLinus Torvalds 10031da177e4SLinus Torvalds static ssize_t oom_adjust_write(struct file *file, const char __user *buf, 10041da177e4SLinus Torvalds size_t count, loff_t *ppos) 10051da177e4SLinus Torvalds { 100699f89551SEric W. Biederman struct task_struct *task; 10075d863b89SKOSAKI Motohiro char buffer[PROC_NUMBUF]; 10085d863b89SKOSAKI Motohiro long oom_adjust; 100928b83c51SKOSAKI Motohiro unsigned long flags; 10105d863b89SKOSAKI Motohiro int err; 10111da177e4SLinus Torvalds 10128578cea7SEric W. Biederman memset(buffer, 0, sizeof(buffer)); 10138578cea7SEric W. Biederman if (count > sizeof(buffer) - 1) 10148578cea7SEric W. Biederman count = sizeof(buffer) - 1; 1015723548bfSDavid Rientjes if (copy_from_user(buffer, buf, count)) { 1016723548bfSDavid Rientjes err = -EFAULT; 1017723548bfSDavid Rientjes goto out; 1018723548bfSDavid Rientjes } 10195d863b89SKOSAKI Motohiro 10205d863b89SKOSAKI Motohiro err = strict_strtol(strstrip(buffer), 0, &oom_adjust); 10215d863b89SKOSAKI Motohiro if (err) 1022723548bfSDavid Rientjes goto out; 10238ac773b4SAlexey Dobriyan if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) && 1024723548bfSDavid Rientjes oom_adjust != OOM_DISABLE) { 1025723548bfSDavid Rientjes err = -EINVAL; 1026723548bfSDavid Rientjes goto out; 1027723548bfSDavid Rientjes } 10285d863b89SKOSAKI Motohiro 10292fddfeefSJosef "Jeff" Sipek task = get_proc_task(file->f_path.dentry->d_inode); 1030723548bfSDavid Rientjes if (!task) { 1031723548bfSDavid Rientjes err = -ESRCH; 1032723548bfSDavid Rientjes goto out; 1033723548bfSDavid Rientjes } 103428b83c51SKOSAKI Motohiro 10353d5992d2SYing Han task_lock(task); 10363d5992d2SYing Han if (!task->mm) { 1037723548bfSDavid Rientjes err = -EINVAL; 1038723548bfSDavid Rientjes goto err_task_lock; 10393d5992d2SYing Han } 10403d5992d2SYing Han 1041d19d5476SDavid Rientjes if (!lock_task_sighand(task, &flags)) { 1042d19d5476SDavid Rientjes err = -ESRCH; 1043d19d5476SDavid Rientjes goto err_task_lock; 1044d19d5476SDavid Rientjes } 1045d19d5476SDavid Rientjes 1046d19d5476SDavid Rientjes if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) { 1047d19d5476SDavid Rientjes err = -EACCES; 1048d19d5476SDavid Rientjes goto err_sighand; 1049d19d5476SDavid Rientjes } 1050d19d5476SDavid Rientjes 10513d5992d2SYing Han if (oom_adjust != task->signal->oom_adj) { 10523d5992d2SYing Han if (oom_adjust == OOM_DISABLE) 10533d5992d2SYing Han atomic_inc(&task->mm->oom_disable_count); 10543d5992d2SYing Han if (task->signal->oom_adj == OOM_DISABLE) 10553d5992d2SYing Han atomic_dec(&task->mm->oom_disable_count); 10563d5992d2SYing Han } 10573d5992d2SYing Han 105851b1bd2aSDavid Rientjes /* 105951b1bd2aSDavid Rientjes * Warn that /proc/pid/oom_adj is deprecated, see 106051b1bd2aSDavid Rientjes * Documentation/feature-removal-schedule.txt. 106151b1bd2aSDavid Rientjes */ 106251b1bd2aSDavid Rientjes printk_once(KERN_WARNING "%s (%d): /proc/%d/oom_adj is deprecated, " 106351b1bd2aSDavid Rientjes "please use /proc/%d/oom_score_adj instead.\n", 106451b1bd2aSDavid Rientjes current->comm, task_pid_nr(current), 106551b1bd2aSDavid Rientjes task_pid_nr(task), task_pid_nr(task)); 106628b83c51SKOSAKI Motohiro task->signal->oom_adj = oom_adjust; 1067a63d83f4SDavid Rientjes /* 1068a63d83f4SDavid Rientjes * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum 1069a63d83f4SDavid Rientjes * value is always attainable. 1070a63d83f4SDavid Rientjes */ 1071a63d83f4SDavid Rientjes if (task->signal->oom_adj == OOM_ADJUST_MAX) 1072a63d83f4SDavid Rientjes task->signal->oom_score_adj = OOM_SCORE_ADJ_MAX; 1073a63d83f4SDavid Rientjes else 1074a63d83f4SDavid Rientjes task->signal->oom_score_adj = (oom_adjust * OOM_SCORE_ADJ_MAX) / 1075a63d83f4SDavid Rientjes -OOM_DISABLE; 1076723548bfSDavid Rientjes err_sighand: 107728b83c51SKOSAKI Motohiro unlock_task_sighand(task, &flags); 1078d19d5476SDavid Rientjes err_task_lock: 1079d19d5476SDavid Rientjes task_unlock(task); 108099f89551SEric W. Biederman put_task_struct(task); 1081723548bfSDavid Rientjes out: 1082723548bfSDavid Rientjes return err < 0 ? err : count; 10831da177e4SLinus Torvalds } 10841da177e4SLinus Torvalds 108500977a59SArjan van de Ven static const struct file_operations proc_oom_adjust_operations = { 10861da177e4SLinus Torvalds .read = oom_adjust_read, 10871da177e4SLinus Torvalds .write = oom_adjust_write, 108887df8424SArnd Bergmann .llseek = generic_file_llseek, 10891da177e4SLinus Torvalds }; 10901da177e4SLinus Torvalds 1091a63d83f4SDavid Rientjes static ssize_t oom_score_adj_read(struct file *file, char __user *buf, 1092a63d83f4SDavid Rientjes size_t count, loff_t *ppos) 1093a63d83f4SDavid Rientjes { 1094a63d83f4SDavid Rientjes struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 1095a63d83f4SDavid Rientjes char buffer[PROC_NUMBUF]; 1096a63d83f4SDavid Rientjes int oom_score_adj = OOM_SCORE_ADJ_MIN; 1097a63d83f4SDavid Rientjes unsigned long flags; 1098a63d83f4SDavid Rientjes size_t len; 1099a63d83f4SDavid Rientjes 1100a63d83f4SDavid Rientjes if (!task) 1101a63d83f4SDavid Rientjes return -ESRCH; 1102a63d83f4SDavid Rientjes if (lock_task_sighand(task, &flags)) { 1103a63d83f4SDavid Rientjes oom_score_adj = task->signal->oom_score_adj; 1104a63d83f4SDavid Rientjes unlock_task_sighand(task, &flags); 1105a63d83f4SDavid Rientjes } 1106a63d83f4SDavid Rientjes put_task_struct(task); 1107a63d83f4SDavid Rientjes len = snprintf(buffer, sizeof(buffer), "%d\n", oom_score_adj); 1108a63d83f4SDavid Rientjes return simple_read_from_buffer(buf, count, ppos, buffer, len); 1109a63d83f4SDavid Rientjes } 1110a63d83f4SDavid Rientjes 1111a63d83f4SDavid Rientjes static ssize_t oom_score_adj_write(struct file *file, const char __user *buf, 1112a63d83f4SDavid Rientjes size_t count, loff_t *ppos) 1113a63d83f4SDavid Rientjes { 1114a63d83f4SDavid Rientjes struct task_struct *task; 1115a63d83f4SDavid Rientjes char buffer[PROC_NUMBUF]; 1116a63d83f4SDavid Rientjes unsigned long flags; 1117a63d83f4SDavid Rientjes long oom_score_adj; 1118a63d83f4SDavid Rientjes int err; 1119a63d83f4SDavid Rientjes 1120a63d83f4SDavid Rientjes memset(buffer, 0, sizeof(buffer)); 1121a63d83f4SDavid Rientjes if (count > sizeof(buffer) - 1) 1122a63d83f4SDavid Rientjes count = sizeof(buffer) - 1; 1123723548bfSDavid Rientjes if (copy_from_user(buffer, buf, count)) { 1124723548bfSDavid Rientjes err = -EFAULT; 1125723548bfSDavid Rientjes goto out; 1126723548bfSDavid Rientjes } 1127a63d83f4SDavid Rientjes 1128a63d83f4SDavid Rientjes err = strict_strtol(strstrip(buffer), 0, &oom_score_adj); 1129a63d83f4SDavid Rientjes if (err) 1130723548bfSDavid Rientjes goto out; 1131a63d83f4SDavid Rientjes if (oom_score_adj < OOM_SCORE_ADJ_MIN || 1132723548bfSDavid Rientjes oom_score_adj > OOM_SCORE_ADJ_MAX) { 1133723548bfSDavid Rientjes err = -EINVAL; 1134723548bfSDavid Rientjes goto out; 1135723548bfSDavid Rientjes } 1136a63d83f4SDavid Rientjes 1137a63d83f4SDavid Rientjes task = get_proc_task(file->f_path.dentry->d_inode); 1138723548bfSDavid Rientjes if (!task) { 1139723548bfSDavid Rientjes err = -ESRCH; 1140723548bfSDavid Rientjes goto out; 1141723548bfSDavid Rientjes } 1142a63d83f4SDavid Rientjes 11433d5992d2SYing Han task_lock(task); 11443d5992d2SYing Han if (!task->mm) { 1145723548bfSDavid Rientjes err = -EINVAL; 1146723548bfSDavid Rientjes goto err_task_lock; 11473d5992d2SYing Han } 1148d19d5476SDavid Rientjes 1149d19d5476SDavid Rientjes if (!lock_task_sighand(task, &flags)) { 1150d19d5476SDavid Rientjes err = -ESRCH; 1151d19d5476SDavid Rientjes goto err_task_lock; 1152d19d5476SDavid Rientjes } 1153d19d5476SDavid Rientjes 1154dabb16f6SMandeep Singh Baines if (oom_score_adj < task->signal->oom_score_adj_min && 1155d19d5476SDavid Rientjes !capable(CAP_SYS_RESOURCE)) { 1156d19d5476SDavid Rientjes err = -EACCES; 1157d19d5476SDavid Rientjes goto err_sighand; 1158d19d5476SDavid Rientjes } 1159d19d5476SDavid Rientjes 11603d5992d2SYing Han if (oom_score_adj != task->signal->oom_score_adj) { 11613d5992d2SYing Han if (oom_score_adj == OOM_SCORE_ADJ_MIN) 11623d5992d2SYing Han atomic_inc(&task->mm->oom_disable_count); 11633d5992d2SYing Han if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) 11643d5992d2SYing Han atomic_dec(&task->mm->oom_disable_count); 11653d5992d2SYing Han } 1166a63d83f4SDavid Rientjes task->signal->oom_score_adj = oom_score_adj; 1167dabb16f6SMandeep Singh Baines if (has_capability_noaudit(current, CAP_SYS_RESOURCE)) 1168dabb16f6SMandeep Singh Baines task->signal->oom_score_adj_min = oom_score_adj; 1169a63d83f4SDavid Rientjes /* 1170a63d83f4SDavid Rientjes * Scale /proc/pid/oom_adj appropriately ensuring that OOM_DISABLE is 1171a63d83f4SDavid Rientjes * always attainable. 1172a63d83f4SDavid Rientjes */ 1173a63d83f4SDavid Rientjes if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) 1174a63d83f4SDavid Rientjes task->signal->oom_adj = OOM_DISABLE; 1175a63d83f4SDavid Rientjes else 1176a63d83f4SDavid Rientjes task->signal->oom_adj = (oom_score_adj * OOM_ADJUST_MAX) / 1177a63d83f4SDavid Rientjes OOM_SCORE_ADJ_MAX; 1178723548bfSDavid Rientjes err_sighand: 1179a63d83f4SDavid Rientjes unlock_task_sighand(task, &flags); 1180d19d5476SDavid Rientjes err_task_lock: 1181d19d5476SDavid Rientjes task_unlock(task); 1182a63d83f4SDavid Rientjes put_task_struct(task); 1183723548bfSDavid Rientjes out: 1184723548bfSDavid Rientjes return err < 0 ? err : count; 1185a63d83f4SDavid Rientjes } 1186a63d83f4SDavid Rientjes 1187a63d83f4SDavid Rientjes static const struct file_operations proc_oom_score_adj_operations = { 1188a63d83f4SDavid Rientjes .read = oom_score_adj_read, 1189a63d83f4SDavid Rientjes .write = oom_score_adj_write, 11906038f373SArnd Bergmann .llseek = default_llseek, 1191a63d83f4SDavid Rientjes }; 1192a63d83f4SDavid Rientjes 11931da177e4SLinus Torvalds #ifdef CONFIG_AUDITSYSCALL 11941da177e4SLinus Torvalds #define TMPBUFLEN 21 11951da177e4SLinus Torvalds static ssize_t proc_loginuid_read(struct file * file, char __user * buf, 11961da177e4SLinus Torvalds size_t count, loff_t *ppos) 11971da177e4SLinus Torvalds { 11982fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 119999f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 12001da177e4SLinus Torvalds ssize_t length; 12011da177e4SLinus Torvalds char tmpbuf[TMPBUFLEN]; 12021da177e4SLinus Torvalds 120399f89551SEric W. Biederman if (!task) 120499f89551SEric W. Biederman return -ESRCH; 12051da177e4SLinus Torvalds length = scnprintf(tmpbuf, TMPBUFLEN, "%u", 12060c11b942SAl Viro audit_get_loginuid(task)); 120799f89551SEric W. Biederman put_task_struct(task); 12081da177e4SLinus Torvalds return simple_read_from_buffer(buf, count, ppos, tmpbuf, length); 12091da177e4SLinus Torvalds } 12101da177e4SLinus Torvalds 12111da177e4SLinus Torvalds static ssize_t proc_loginuid_write(struct file * file, const char __user * buf, 12121da177e4SLinus Torvalds size_t count, loff_t *ppos) 12131da177e4SLinus Torvalds { 12142fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 12151da177e4SLinus Torvalds char *page, *tmp; 12161da177e4SLinus Torvalds ssize_t length; 12171da177e4SLinus Torvalds uid_t loginuid; 12181da177e4SLinus Torvalds 12191da177e4SLinus Torvalds if (!capable(CAP_AUDIT_CONTROL)) 12201da177e4SLinus Torvalds return -EPERM; 12211da177e4SLinus Torvalds 12227dc52157SPaul E. McKenney rcu_read_lock(); 12237dc52157SPaul E. McKenney if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) { 12247dc52157SPaul E. McKenney rcu_read_unlock(); 12251da177e4SLinus Torvalds return -EPERM; 12267dc52157SPaul E. McKenney } 12277dc52157SPaul E. McKenney rcu_read_unlock(); 12281da177e4SLinus Torvalds 1229e0182909SAl Viro if (count >= PAGE_SIZE) 1230e0182909SAl Viro count = PAGE_SIZE - 1; 12311da177e4SLinus Torvalds 12321da177e4SLinus Torvalds if (*ppos != 0) { 12331da177e4SLinus Torvalds /* No partial writes. */ 12341da177e4SLinus Torvalds return -EINVAL; 12351da177e4SLinus Torvalds } 1236e12ba74dSMel Gorman page = (char*)__get_free_page(GFP_TEMPORARY); 12371da177e4SLinus Torvalds if (!page) 12381da177e4SLinus Torvalds return -ENOMEM; 12391da177e4SLinus Torvalds length = -EFAULT; 12401da177e4SLinus Torvalds if (copy_from_user(page, buf, count)) 12411da177e4SLinus Torvalds goto out_free_page; 12421da177e4SLinus Torvalds 1243e0182909SAl Viro page[count] = '\0'; 12441da177e4SLinus Torvalds loginuid = simple_strtoul(page, &tmp, 10); 12451da177e4SLinus Torvalds if (tmp == page) { 12461da177e4SLinus Torvalds length = -EINVAL; 12471da177e4SLinus Torvalds goto out_free_page; 12481da177e4SLinus Torvalds 12491da177e4SLinus Torvalds } 125099f89551SEric W. Biederman length = audit_set_loginuid(current, loginuid); 12511da177e4SLinus Torvalds if (likely(length == 0)) 12521da177e4SLinus Torvalds length = count; 12531da177e4SLinus Torvalds 12541da177e4SLinus Torvalds out_free_page: 12551da177e4SLinus Torvalds free_page((unsigned long) page); 12561da177e4SLinus Torvalds return length; 12571da177e4SLinus Torvalds } 12581da177e4SLinus Torvalds 125900977a59SArjan van de Ven static const struct file_operations proc_loginuid_operations = { 12601da177e4SLinus Torvalds .read = proc_loginuid_read, 12611da177e4SLinus Torvalds .write = proc_loginuid_write, 126287df8424SArnd Bergmann .llseek = generic_file_llseek, 12631da177e4SLinus Torvalds }; 12641e0bd755SEric Paris 12651e0bd755SEric Paris static ssize_t proc_sessionid_read(struct file * file, char __user * buf, 12661e0bd755SEric Paris size_t count, loff_t *ppos) 12671e0bd755SEric Paris { 12681e0bd755SEric Paris struct inode * inode = file->f_path.dentry->d_inode; 12691e0bd755SEric Paris struct task_struct *task = get_proc_task(inode); 12701e0bd755SEric Paris ssize_t length; 12711e0bd755SEric Paris char tmpbuf[TMPBUFLEN]; 12721e0bd755SEric Paris 12731e0bd755SEric Paris if (!task) 12741e0bd755SEric Paris return -ESRCH; 12751e0bd755SEric Paris length = scnprintf(tmpbuf, TMPBUFLEN, "%u", 12761e0bd755SEric Paris audit_get_sessionid(task)); 12771e0bd755SEric Paris put_task_struct(task); 12781e0bd755SEric Paris return simple_read_from_buffer(buf, count, ppos, tmpbuf, length); 12791e0bd755SEric Paris } 12801e0bd755SEric Paris 12811e0bd755SEric Paris static const struct file_operations proc_sessionid_operations = { 12821e0bd755SEric Paris .read = proc_sessionid_read, 128387df8424SArnd Bergmann .llseek = generic_file_llseek, 12841e0bd755SEric Paris }; 12851da177e4SLinus Torvalds #endif 12861da177e4SLinus Torvalds 1287f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION 1288f4f154fdSAkinobu Mita static ssize_t proc_fault_inject_read(struct file * file, char __user * buf, 1289f4f154fdSAkinobu Mita size_t count, loff_t *ppos) 1290f4f154fdSAkinobu Mita { 1291f4f154fdSAkinobu Mita struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 1292f4f154fdSAkinobu Mita char buffer[PROC_NUMBUF]; 1293f4f154fdSAkinobu Mita size_t len; 1294f4f154fdSAkinobu Mita int make_it_fail; 1295f4f154fdSAkinobu Mita 1296f4f154fdSAkinobu Mita if (!task) 1297f4f154fdSAkinobu Mita return -ESRCH; 1298f4f154fdSAkinobu Mita make_it_fail = task->make_it_fail; 1299f4f154fdSAkinobu Mita put_task_struct(task); 1300f4f154fdSAkinobu Mita 1301f4f154fdSAkinobu Mita len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail); 13020c28f287SAkinobu Mita 13030c28f287SAkinobu Mita return simple_read_from_buffer(buf, count, ppos, buffer, len); 1304f4f154fdSAkinobu Mita } 1305f4f154fdSAkinobu Mita 1306f4f154fdSAkinobu Mita static ssize_t proc_fault_inject_write(struct file * file, 1307f4f154fdSAkinobu Mita const char __user * buf, size_t count, loff_t *ppos) 1308f4f154fdSAkinobu Mita { 1309f4f154fdSAkinobu Mita struct task_struct *task; 1310f4f154fdSAkinobu Mita char buffer[PROC_NUMBUF], *end; 1311f4f154fdSAkinobu Mita int make_it_fail; 1312f4f154fdSAkinobu Mita 1313f4f154fdSAkinobu Mita if (!capable(CAP_SYS_RESOURCE)) 1314f4f154fdSAkinobu Mita return -EPERM; 1315f4f154fdSAkinobu Mita memset(buffer, 0, sizeof(buffer)); 1316f4f154fdSAkinobu Mita if (count > sizeof(buffer) - 1) 1317f4f154fdSAkinobu Mita count = sizeof(buffer) - 1; 1318f4f154fdSAkinobu Mita if (copy_from_user(buffer, buf, count)) 1319f4f154fdSAkinobu Mita return -EFAULT; 1320cba8aafeSVincent Li make_it_fail = simple_strtol(strstrip(buffer), &end, 0); 1321cba8aafeSVincent Li if (*end) 1322cba8aafeSVincent Li return -EINVAL; 1323f4f154fdSAkinobu Mita task = get_proc_task(file->f_dentry->d_inode); 1324f4f154fdSAkinobu Mita if (!task) 1325f4f154fdSAkinobu Mita return -ESRCH; 1326f4f154fdSAkinobu Mita task->make_it_fail = make_it_fail; 1327f4f154fdSAkinobu Mita put_task_struct(task); 1328cba8aafeSVincent Li 1329cba8aafeSVincent Li return count; 1330f4f154fdSAkinobu Mita } 1331f4f154fdSAkinobu Mita 133200977a59SArjan van de Ven static const struct file_operations proc_fault_inject_operations = { 1333f4f154fdSAkinobu Mita .read = proc_fault_inject_read, 1334f4f154fdSAkinobu Mita .write = proc_fault_inject_write, 133587df8424SArnd Bergmann .llseek = generic_file_llseek, 1336f4f154fdSAkinobu Mita }; 1337f4f154fdSAkinobu Mita #endif 1338f4f154fdSAkinobu Mita 13399745512cSArjan van de Ven 134043ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 134143ae34cbSIngo Molnar /* 134243ae34cbSIngo Molnar * Print out various scheduling related per-task fields: 134343ae34cbSIngo Molnar */ 134443ae34cbSIngo Molnar static int sched_show(struct seq_file *m, void *v) 134543ae34cbSIngo Molnar { 134643ae34cbSIngo Molnar struct inode *inode = m->private; 134743ae34cbSIngo Molnar struct task_struct *p; 134843ae34cbSIngo Molnar 134943ae34cbSIngo Molnar p = get_proc_task(inode); 135043ae34cbSIngo Molnar if (!p) 135143ae34cbSIngo Molnar return -ESRCH; 135243ae34cbSIngo Molnar proc_sched_show_task(p, m); 135343ae34cbSIngo Molnar 135443ae34cbSIngo Molnar put_task_struct(p); 135543ae34cbSIngo Molnar 135643ae34cbSIngo Molnar return 0; 135743ae34cbSIngo Molnar } 135843ae34cbSIngo Molnar 135943ae34cbSIngo Molnar static ssize_t 136043ae34cbSIngo Molnar sched_write(struct file *file, const char __user *buf, 136143ae34cbSIngo Molnar size_t count, loff_t *offset) 136243ae34cbSIngo Molnar { 136343ae34cbSIngo Molnar struct inode *inode = file->f_path.dentry->d_inode; 136443ae34cbSIngo Molnar struct task_struct *p; 136543ae34cbSIngo Molnar 136643ae34cbSIngo Molnar p = get_proc_task(inode); 136743ae34cbSIngo Molnar if (!p) 136843ae34cbSIngo Molnar return -ESRCH; 136943ae34cbSIngo Molnar proc_sched_set_task(p); 137043ae34cbSIngo Molnar 137143ae34cbSIngo Molnar put_task_struct(p); 137243ae34cbSIngo Molnar 137343ae34cbSIngo Molnar return count; 137443ae34cbSIngo Molnar } 137543ae34cbSIngo Molnar 137643ae34cbSIngo Molnar static int sched_open(struct inode *inode, struct file *filp) 137743ae34cbSIngo Molnar { 1378c6a34058SJovi Zhang return single_open(filp, sched_show, inode); 137943ae34cbSIngo Molnar } 138043ae34cbSIngo Molnar 138143ae34cbSIngo Molnar static const struct file_operations proc_pid_sched_operations = { 138243ae34cbSIngo Molnar .open = sched_open, 138343ae34cbSIngo Molnar .read = seq_read, 138443ae34cbSIngo Molnar .write = sched_write, 138543ae34cbSIngo Molnar .llseek = seq_lseek, 13865ea473a1SAlexey Dobriyan .release = single_release, 138743ae34cbSIngo Molnar }; 138843ae34cbSIngo Molnar 138943ae34cbSIngo Molnar #endif 139043ae34cbSIngo Molnar 13915091faa4SMike Galbraith #ifdef CONFIG_SCHED_AUTOGROUP 13925091faa4SMike Galbraith /* 13935091faa4SMike Galbraith * Print out autogroup related information: 13945091faa4SMike Galbraith */ 13955091faa4SMike Galbraith static int sched_autogroup_show(struct seq_file *m, void *v) 13965091faa4SMike Galbraith { 13975091faa4SMike Galbraith struct inode *inode = m->private; 13985091faa4SMike Galbraith struct task_struct *p; 13995091faa4SMike Galbraith 14005091faa4SMike Galbraith p = get_proc_task(inode); 14015091faa4SMike Galbraith if (!p) 14025091faa4SMike Galbraith return -ESRCH; 14035091faa4SMike Galbraith proc_sched_autogroup_show_task(p, m); 14045091faa4SMike Galbraith 14055091faa4SMike Galbraith put_task_struct(p); 14065091faa4SMike Galbraith 14075091faa4SMike Galbraith return 0; 14085091faa4SMike Galbraith } 14095091faa4SMike Galbraith 14105091faa4SMike Galbraith static ssize_t 14115091faa4SMike Galbraith sched_autogroup_write(struct file *file, const char __user *buf, 14125091faa4SMike Galbraith size_t count, loff_t *offset) 14135091faa4SMike Galbraith { 14145091faa4SMike Galbraith struct inode *inode = file->f_path.dentry->d_inode; 14155091faa4SMike Galbraith struct task_struct *p; 14165091faa4SMike Galbraith char buffer[PROC_NUMBUF]; 14175091faa4SMike Galbraith long nice; 14185091faa4SMike Galbraith int err; 14195091faa4SMike Galbraith 14205091faa4SMike Galbraith memset(buffer, 0, sizeof(buffer)); 14215091faa4SMike Galbraith if (count > sizeof(buffer) - 1) 14225091faa4SMike Galbraith count = sizeof(buffer) - 1; 14235091faa4SMike Galbraith if (copy_from_user(buffer, buf, count)) 14245091faa4SMike Galbraith return -EFAULT; 14255091faa4SMike Galbraith 14265091faa4SMike Galbraith err = strict_strtol(strstrip(buffer), 0, &nice); 14275091faa4SMike Galbraith if (err) 14285091faa4SMike Galbraith return -EINVAL; 14295091faa4SMike Galbraith 14305091faa4SMike Galbraith p = get_proc_task(inode); 14315091faa4SMike Galbraith if (!p) 14325091faa4SMike Galbraith return -ESRCH; 14335091faa4SMike Galbraith 14345091faa4SMike Galbraith err = nice; 14355091faa4SMike Galbraith err = proc_sched_autogroup_set_nice(p, &err); 14365091faa4SMike Galbraith if (err) 14375091faa4SMike Galbraith count = err; 14385091faa4SMike Galbraith 14395091faa4SMike Galbraith put_task_struct(p); 14405091faa4SMike Galbraith 14415091faa4SMike Galbraith return count; 14425091faa4SMike Galbraith } 14435091faa4SMike Galbraith 14445091faa4SMike Galbraith static int sched_autogroup_open(struct inode *inode, struct file *filp) 14455091faa4SMike Galbraith { 14465091faa4SMike Galbraith int ret; 14475091faa4SMike Galbraith 14485091faa4SMike Galbraith ret = single_open(filp, sched_autogroup_show, NULL); 14495091faa4SMike Galbraith if (!ret) { 14505091faa4SMike Galbraith struct seq_file *m = filp->private_data; 14515091faa4SMike Galbraith 14525091faa4SMike Galbraith m->private = inode; 14535091faa4SMike Galbraith } 14545091faa4SMike Galbraith return ret; 14555091faa4SMike Galbraith } 14565091faa4SMike Galbraith 14575091faa4SMike Galbraith static const struct file_operations proc_pid_sched_autogroup_operations = { 14585091faa4SMike Galbraith .open = sched_autogroup_open, 14595091faa4SMike Galbraith .read = seq_read, 14605091faa4SMike Galbraith .write = sched_autogroup_write, 14615091faa4SMike Galbraith .llseek = seq_lseek, 14625091faa4SMike Galbraith .release = single_release, 14635091faa4SMike Galbraith }; 14645091faa4SMike Galbraith 14655091faa4SMike Galbraith #endif /* CONFIG_SCHED_AUTOGROUP */ 14665091faa4SMike Galbraith 14674614a696Sjohn stultz static ssize_t comm_write(struct file *file, const char __user *buf, 14684614a696Sjohn stultz size_t count, loff_t *offset) 14694614a696Sjohn stultz { 14704614a696Sjohn stultz struct inode *inode = file->f_path.dentry->d_inode; 14714614a696Sjohn stultz struct task_struct *p; 14724614a696Sjohn stultz char buffer[TASK_COMM_LEN]; 14734614a696Sjohn stultz 14744614a696Sjohn stultz memset(buffer, 0, sizeof(buffer)); 14754614a696Sjohn stultz if (count > sizeof(buffer) - 1) 14764614a696Sjohn stultz count = sizeof(buffer) - 1; 14774614a696Sjohn stultz if (copy_from_user(buffer, buf, count)) 14784614a696Sjohn stultz return -EFAULT; 14794614a696Sjohn stultz 14804614a696Sjohn stultz p = get_proc_task(inode); 14814614a696Sjohn stultz if (!p) 14824614a696Sjohn stultz return -ESRCH; 14834614a696Sjohn stultz 14844614a696Sjohn stultz if (same_thread_group(current, p)) 14854614a696Sjohn stultz set_task_comm(p, buffer); 14864614a696Sjohn stultz else 14874614a696Sjohn stultz count = -EINVAL; 14884614a696Sjohn stultz 14894614a696Sjohn stultz put_task_struct(p); 14904614a696Sjohn stultz 14914614a696Sjohn stultz return count; 14924614a696Sjohn stultz } 14934614a696Sjohn stultz 14944614a696Sjohn stultz static int comm_show(struct seq_file *m, void *v) 14954614a696Sjohn stultz { 14964614a696Sjohn stultz struct inode *inode = m->private; 14974614a696Sjohn stultz struct task_struct *p; 14984614a696Sjohn stultz 14994614a696Sjohn stultz p = get_proc_task(inode); 15004614a696Sjohn stultz if (!p) 15014614a696Sjohn stultz return -ESRCH; 15024614a696Sjohn stultz 15034614a696Sjohn stultz task_lock(p); 15044614a696Sjohn stultz seq_printf(m, "%s\n", p->comm); 15054614a696Sjohn stultz task_unlock(p); 15064614a696Sjohn stultz 15074614a696Sjohn stultz put_task_struct(p); 15084614a696Sjohn stultz 15094614a696Sjohn stultz return 0; 15104614a696Sjohn stultz } 15114614a696Sjohn stultz 15124614a696Sjohn stultz static int comm_open(struct inode *inode, struct file *filp) 15134614a696Sjohn stultz { 1514c6a34058SJovi Zhang return single_open(filp, comm_show, inode); 15154614a696Sjohn stultz } 15164614a696Sjohn stultz 15174614a696Sjohn stultz static const struct file_operations proc_pid_set_comm_operations = { 15184614a696Sjohn stultz .open = comm_open, 15194614a696Sjohn stultz .read = seq_read, 15204614a696Sjohn stultz .write = comm_write, 15214614a696Sjohn stultz .llseek = seq_lseek, 15224614a696Sjohn stultz .release = single_release, 15234614a696Sjohn stultz }; 15244614a696Sjohn stultz 1525925d1c40SMatt Helsley /* 1526925d1c40SMatt Helsley * We added or removed a vma mapping the executable. The vmas are only mapped 1527925d1c40SMatt Helsley * during exec and are not mapped with the mmap system call. 1528925d1c40SMatt Helsley * Callers must hold down_write() on the mm's mmap_sem for these 1529925d1c40SMatt Helsley */ 1530925d1c40SMatt Helsley void added_exe_file_vma(struct mm_struct *mm) 1531925d1c40SMatt Helsley { 1532925d1c40SMatt Helsley mm->num_exe_file_vmas++; 1533925d1c40SMatt Helsley } 1534925d1c40SMatt Helsley 1535925d1c40SMatt Helsley void removed_exe_file_vma(struct mm_struct *mm) 1536925d1c40SMatt Helsley { 1537925d1c40SMatt Helsley mm->num_exe_file_vmas--; 1538925d1c40SMatt Helsley if ((mm->num_exe_file_vmas == 0) && mm->exe_file){ 1539925d1c40SMatt Helsley fput(mm->exe_file); 1540925d1c40SMatt Helsley mm->exe_file = NULL; 1541925d1c40SMatt Helsley } 1542925d1c40SMatt Helsley 1543925d1c40SMatt Helsley } 1544925d1c40SMatt Helsley 1545925d1c40SMatt Helsley void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) 1546925d1c40SMatt Helsley { 1547925d1c40SMatt Helsley if (new_exe_file) 1548925d1c40SMatt Helsley get_file(new_exe_file); 1549925d1c40SMatt Helsley if (mm->exe_file) 1550925d1c40SMatt Helsley fput(mm->exe_file); 1551925d1c40SMatt Helsley mm->exe_file = new_exe_file; 1552925d1c40SMatt Helsley mm->num_exe_file_vmas = 0; 1553925d1c40SMatt Helsley } 1554925d1c40SMatt Helsley 1555925d1c40SMatt Helsley struct file *get_mm_exe_file(struct mm_struct *mm) 1556925d1c40SMatt Helsley { 1557925d1c40SMatt Helsley struct file *exe_file; 1558925d1c40SMatt Helsley 1559925d1c40SMatt Helsley /* We need mmap_sem to protect against races with removal of 1560925d1c40SMatt Helsley * VM_EXECUTABLE vmas */ 1561925d1c40SMatt Helsley down_read(&mm->mmap_sem); 1562925d1c40SMatt Helsley exe_file = mm->exe_file; 1563925d1c40SMatt Helsley if (exe_file) 1564925d1c40SMatt Helsley get_file(exe_file); 1565925d1c40SMatt Helsley up_read(&mm->mmap_sem); 1566925d1c40SMatt Helsley return exe_file; 1567925d1c40SMatt Helsley } 1568925d1c40SMatt Helsley 1569925d1c40SMatt Helsley void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm) 1570925d1c40SMatt Helsley { 1571925d1c40SMatt Helsley /* It's safe to write the exe_file pointer without exe_file_lock because 1572925d1c40SMatt Helsley * this is called during fork when the task is not yet in /proc */ 1573925d1c40SMatt Helsley newmm->exe_file = get_mm_exe_file(oldmm); 1574925d1c40SMatt Helsley } 1575925d1c40SMatt Helsley 1576925d1c40SMatt Helsley static int proc_exe_link(struct inode *inode, struct path *exe_path) 1577925d1c40SMatt Helsley { 1578925d1c40SMatt Helsley struct task_struct *task; 1579925d1c40SMatt Helsley struct mm_struct *mm; 1580925d1c40SMatt Helsley struct file *exe_file; 1581925d1c40SMatt Helsley 1582925d1c40SMatt Helsley task = get_proc_task(inode); 1583925d1c40SMatt Helsley if (!task) 1584925d1c40SMatt Helsley return -ENOENT; 1585925d1c40SMatt Helsley mm = get_task_mm(task); 1586925d1c40SMatt Helsley put_task_struct(task); 1587925d1c40SMatt Helsley if (!mm) 1588925d1c40SMatt Helsley return -ENOENT; 1589925d1c40SMatt Helsley exe_file = get_mm_exe_file(mm); 1590925d1c40SMatt Helsley mmput(mm); 1591925d1c40SMatt Helsley if (exe_file) { 1592925d1c40SMatt Helsley *exe_path = exe_file->f_path; 1593925d1c40SMatt Helsley path_get(&exe_file->f_path); 1594925d1c40SMatt Helsley fput(exe_file); 1595925d1c40SMatt Helsley return 0; 1596925d1c40SMatt Helsley } else 1597925d1c40SMatt Helsley return -ENOENT; 1598925d1c40SMatt Helsley } 1599925d1c40SMatt Helsley 1600008b150aSAl Viro static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd) 16011da177e4SLinus Torvalds { 16021da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 16031da177e4SLinus Torvalds int error = -EACCES; 16041da177e4SLinus Torvalds 16051da177e4SLinus Torvalds /* We don't need a base pointer in the /proc filesystem */ 16061d957f9bSJan Blunck path_put(&nd->path); 16071da177e4SLinus Torvalds 1608778c1144SEric W. Biederman /* Are we allowed to snoop on the tasks file descriptors? */ 1609778c1144SEric W. Biederman if (!proc_fd_access_allowed(inode)) 16101da177e4SLinus Torvalds goto out; 16111da177e4SLinus Torvalds 16123dcd25f3SJan Blunck error = PROC_I(inode)->op.proc_get_link(inode, &nd->path); 16131da177e4SLinus Torvalds out: 1614008b150aSAl Viro return ERR_PTR(error); 16151da177e4SLinus Torvalds } 16161da177e4SLinus Torvalds 16173dcd25f3SJan Blunck static int do_proc_readlink(struct path *path, char __user *buffer, int buflen) 16181da177e4SLinus Torvalds { 1619e12ba74dSMel Gorman char *tmp = (char*)__get_free_page(GFP_TEMPORARY); 16203dcd25f3SJan Blunck char *pathname; 16211da177e4SLinus Torvalds int len; 16221da177e4SLinus Torvalds 16231da177e4SLinus Torvalds if (!tmp) 16241da177e4SLinus Torvalds return -ENOMEM; 16251da177e4SLinus Torvalds 16267b2a69baSEric W. Biederman pathname = d_path(path, tmp, PAGE_SIZE); 16273dcd25f3SJan Blunck len = PTR_ERR(pathname); 16283dcd25f3SJan Blunck if (IS_ERR(pathname)) 16291da177e4SLinus Torvalds goto out; 16303dcd25f3SJan Blunck len = tmp + PAGE_SIZE - 1 - pathname; 16311da177e4SLinus Torvalds 16321da177e4SLinus Torvalds if (len > buflen) 16331da177e4SLinus Torvalds len = buflen; 16343dcd25f3SJan Blunck if (copy_to_user(buffer, pathname, len)) 16351da177e4SLinus Torvalds len = -EFAULT; 16361da177e4SLinus Torvalds out: 16371da177e4SLinus Torvalds free_page((unsigned long)tmp); 16381da177e4SLinus Torvalds return len; 16391da177e4SLinus Torvalds } 16401da177e4SLinus Torvalds 16411da177e4SLinus Torvalds static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen) 16421da177e4SLinus Torvalds { 16431da177e4SLinus Torvalds int error = -EACCES; 16441da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 16453dcd25f3SJan Blunck struct path path; 16461da177e4SLinus Torvalds 1647778c1144SEric W. Biederman /* Are we allowed to snoop on the tasks file descriptors? */ 1648778c1144SEric W. Biederman if (!proc_fd_access_allowed(inode)) 16491da177e4SLinus Torvalds goto out; 16501da177e4SLinus Torvalds 16513dcd25f3SJan Blunck error = PROC_I(inode)->op.proc_get_link(inode, &path); 16521da177e4SLinus Torvalds if (error) 16531da177e4SLinus Torvalds goto out; 16541da177e4SLinus Torvalds 16553dcd25f3SJan Blunck error = do_proc_readlink(&path, buffer, buflen); 16563dcd25f3SJan Blunck path_put(&path); 16571da177e4SLinus Torvalds out: 16581da177e4SLinus Torvalds return error; 16591da177e4SLinus Torvalds } 16601da177e4SLinus Torvalds 1661c5ef1c42SArjan van de Ven static const struct inode_operations proc_pid_link_inode_operations = { 16621da177e4SLinus Torvalds .readlink = proc_pid_readlink, 16636d76fa58SLinus Torvalds .follow_link = proc_pid_follow_link, 16646d76fa58SLinus Torvalds .setattr = proc_setattr, 16651da177e4SLinus Torvalds }; 16661da177e4SLinus Torvalds 166728a6d671SEric W. Biederman 166828a6d671SEric W. Biederman /* building an inode */ 166928a6d671SEric W. Biederman 167028a6d671SEric W. Biederman static int task_dumpable(struct task_struct *task) 167128a6d671SEric W. Biederman { 167228a6d671SEric W. Biederman int dumpable = 0; 167328a6d671SEric W. Biederman struct mm_struct *mm; 167428a6d671SEric W. Biederman 167528a6d671SEric W. Biederman task_lock(task); 167628a6d671SEric W. Biederman mm = task->mm; 167728a6d671SEric W. Biederman if (mm) 16786c5d5238SKawai, Hidehiro dumpable = get_dumpable(mm); 167928a6d671SEric W. Biederman task_unlock(task); 168028a6d671SEric W. Biederman if(dumpable == 1) 168128a6d671SEric W. Biederman return 1; 168228a6d671SEric W. Biederman return 0; 168328a6d671SEric W. Biederman } 168428a6d671SEric W. Biederman 168528a6d671SEric W. Biederman 168661a28784SEric W. Biederman static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task) 168728a6d671SEric W. Biederman { 168828a6d671SEric W. Biederman struct inode * inode; 168928a6d671SEric W. Biederman struct proc_inode *ei; 1690c69e8d9cSDavid Howells const struct cred *cred; 169128a6d671SEric W. Biederman 169228a6d671SEric W. Biederman /* We need a new inode */ 169328a6d671SEric W. Biederman 169428a6d671SEric W. Biederman inode = new_inode(sb); 169528a6d671SEric W. Biederman if (!inode) 169628a6d671SEric W. Biederman goto out; 169728a6d671SEric W. Biederman 169828a6d671SEric W. Biederman /* Common stuff */ 169928a6d671SEric W. Biederman ei = PROC_I(inode); 170085fe4025SChristoph Hellwig inode->i_ino = get_next_ino(); 170128a6d671SEric W. Biederman inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; 170228a6d671SEric W. Biederman inode->i_op = &proc_def_inode_operations; 170328a6d671SEric W. Biederman 170428a6d671SEric W. Biederman /* 170528a6d671SEric W. Biederman * grab the reference to task. 170628a6d671SEric W. Biederman */ 17071a657f78SOleg Nesterov ei->pid = get_task_pid(task, PIDTYPE_PID); 170828a6d671SEric W. Biederman if (!ei->pid) 170928a6d671SEric W. Biederman goto out_unlock; 171028a6d671SEric W. Biederman 171128a6d671SEric W. Biederman if (task_dumpable(task)) { 1712c69e8d9cSDavid Howells rcu_read_lock(); 1713c69e8d9cSDavid Howells cred = __task_cred(task); 1714c69e8d9cSDavid Howells inode->i_uid = cred->euid; 1715c69e8d9cSDavid Howells inode->i_gid = cred->egid; 1716c69e8d9cSDavid Howells rcu_read_unlock(); 171728a6d671SEric W. Biederman } 171828a6d671SEric W. Biederman security_task_to_inode(task, inode); 171928a6d671SEric W. Biederman 172028a6d671SEric W. Biederman out: 172128a6d671SEric W. Biederman return inode; 172228a6d671SEric W. Biederman 172328a6d671SEric W. Biederman out_unlock: 172428a6d671SEric W. Biederman iput(inode); 172528a6d671SEric W. Biederman return NULL; 172628a6d671SEric W. Biederman } 172728a6d671SEric W. Biederman 172828a6d671SEric W. Biederman static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) 172928a6d671SEric W. Biederman { 173028a6d671SEric W. Biederman struct inode *inode = dentry->d_inode; 173128a6d671SEric W. Biederman struct task_struct *task; 1732c69e8d9cSDavid Howells const struct cred *cred; 1733c69e8d9cSDavid Howells 173428a6d671SEric W. Biederman generic_fillattr(inode, stat); 173528a6d671SEric W. Biederman 173628a6d671SEric W. Biederman rcu_read_lock(); 173728a6d671SEric W. Biederman stat->uid = 0; 173828a6d671SEric W. Biederman stat->gid = 0; 173928a6d671SEric W. Biederman task = pid_task(proc_pid(inode), PIDTYPE_PID); 174028a6d671SEric W. Biederman if (task) { 174128a6d671SEric W. Biederman if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) || 174228a6d671SEric W. Biederman task_dumpable(task)) { 1743c69e8d9cSDavid Howells cred = __task_cred(task); 1744c69e8d9cSDavid Howells stat->uid = cred->euid; 1745c69e8d9cSDavid Howells stat->gid = cred->egid; 174628a6d671SEric W. Biederman } 174728a6d671SEric W. Biederman } 174828a6d671SEric W. Biederman rcu_read_unlock(); 174928a6d671SEric W. Biederman return 0; 175028a6d671SEric W. Biederman } 175128a6d671SEric W. Biederman 175228a6d671SEric W. Biederman /* dentry stuff */ 175328a6d671SEric W. Biederman 175428a6d671SEric W. Biederman /* 175528a6d671SEric W. Biederman * Exceptional case: normally we are not allowed to unhash a busy 175628a6d671SEric W. Biederman * directory. In this case, however, we can do it - no aliasing problems 175728a6d671SEric W. Biederman * due to the way we treat inodes. 175828a6d671SEric W. Biederman * 175928a6d671SEric W. Biederman * Rewrite the inode's ownerships here because the owning task may have 176028a6d671SEric W. Biederman * performed a setuid(), etc. 176128a6d671SEric W. Biederman * 176228a6d671SEric W. Biederman * Before the /proc/pid/status file was created the only way to read 176328a6d671SEric W. Biederman * the effective uid of a /process was to stat /proc/pid. Reading 176428a6d671SEric W. Biederman * /proc/pid/status is slow enough that procps and other packages 176528a6d671SEric W. Biederman * kept stating /proc/pid. To keep the rules in /proc simple I have 176628a6d671SEric W. Biederman * made this apply to all per process world readable and executable 176728a6d671SEric W. Biederman * directories. 176828a6d671SEric W. Biederman */ 176928a6d671SEric W. Biederman static int pid_revalidate(struct dentry *dentry, struct nameidata *nd) 177028a6d671SEric W. Biederman { 177134286d66SNick Piggin struct inode *inode; 177234286d66SNick Piggin struct task_struct *task; 1773c69e8d9cSDavid Howells const struct cred *cred; 1774c69e8d9cSDavid Howells 177534286d66SNick Piggin if (nd && nd->flags & LOOKUP_RCU) 177634286d66SNick Piggin return -ECHILD; 177734286d66SNick Piggin 177834286d66SNick Piggin inode = dentry->d_inode; 177934286d66SNick Piggin task = get_proc_task(inode); 178034286d66SNick Piggin 178128a6d671SEric W. Biederman if (task) { 178228a6d671SEric W. Biederman if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) || 178328a6d671SEric W. Biederman task_dumpable(task)) { 1784c69e8d9cSDavid Howells rcu_read_lock(); 1785c69e8d9cSDavid Howells cred = __task_cred(task); 1786c69e8d9cSDavid Howells inode->i_uid = cred->euid; 1787c69e8d9cSDavid Howells inode->i_gid = cred->egid; 1788c69e8d9cSDavid Howells rcu_read_unlock(); 178928a6d671SEric W. Biederman } else { 179028a6d671SEric W. Biederman inode->i_uid = 0; 179128a6d671SEric W. Biederman inode->i_gid = 0; 179228a6d671SEric W. Biederman } 179328a6d671SEric W. Biederman inode->i_mode &= ~(S_ISUID | S_ISGID); 179428a6d671SEric W. Biederman security_task_to_inode(task, inode); 179528a6d671SEric W. Biederman put_task_struct(task); 179628a6d671SEric W. Biederman return 1; 179728a6d671SEric W. Biederman } 179828a6d671SEric W. Biederman d_drop(dentry); 179928a6d671SEric W. Biederman return 0; 180028a6d671SEric W. Biederman } 180128a6d671SEric W. Biederman 1802fe15ce44SNick Piggin static int pid_delete_dentry(const struct dentry * dentry) 180328a6d671SEric W. Biederman { 180428a6d671SEric W. Biederman /* Is the task we represent dead? 180528a6d671SEric W. Biederman * If so, then don't put the dentry on the lru list, 180628a6d671SEric W. Biederman * kill it immediately. 180728a6d671SEric W. Biederman */ 180828a6d671SEric W. Biederman return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first; 180928a6d671SEric W. Biederman } 181028a6d671SEric W. Biederman 1811d72f71ebSAl Viro static const struct dentry_operations pid_dentry_operations = 181228a6d671SEric W. Biederman { 181328a6d671SEric W. Biederman .d_revalidate = pid_revalidate, 181428a6d671SEric W. Biederman .d_delete = pid_delete_dentry, 181528a6d671SEric W. Biederman }; 181628a6d671SEric W. Biederman 181728a6d671SEric W. Biederman /* Lookups */ 181828a6d671SEric W. Biederman 1819c5141e6dSEric Dumazet typedef struct dentry *instantiate_t(struct inode *, struct dentry *, 1820c5141e6dSEric Dumazet struct task_struct *, const void *); 182161a28784SEric W. Biederman 18221c0d04c9SEric W. Biederman /* 18231c0d04c9SEric W. Biederman * Fill a directory entry. 18241c0d04c9SEric W. Biederman * 18251c0d04c9SEric W. Biederman * If possible create the dcache entry and derive our inode number and 18261c0d04c9SEric W. Biederman * file type from dcache entry. 18271c0d04c9SEric W. Biederman * 18281c0d04c9SEric W. Biederman * Since all of the proc inode numbers are dynamically generated, the inode 18291c0d04c9SEric W. Biederman * numbers do not exist until the inode is cache. This means creating the 18301c0d04c9SEric W. Biederman * the dcache entry in readdir is necessary to keep the inode numbers 18311c0d04c9SEric W. Biederman * reported by readdir in sync with the inode numbers reported 18321c0d04c9SEric W. Biederman * by stat. 18331c0d04c9SEric W. Biederman */ 183461a28784SEric W. Biederman static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir, 183561a28784SEric W. Biederman char *name, int len, 1836c5141e6dSEric Dumazet instantiate_t instantiate, struct task_struct *task, const void *ptr) 183761a28784SEric W. Biederman { 18382fddfeefSJosef "Jeff" Sipek struct dentry *child, *dir = filp->f_path.dentry; 183961a28784SEric W. Biederman struct inode *inode; 184061a28784SEric W. Biederman struct qstr qname; 184161a28784SEric W. Biederman ino_t ino = 0; 184261a28784SEric W. Biederman unsigned type = DT_UNKNOWN; 184361a28784SEric W. Biederman 184461a28784SEric W. Biederman qname.name = name; 184561a28784SEric W. Biederman qname.len = len; 184661a28784SEric W. Biederman qname.hash = full_name_hash(name, len); 184761a28784SEric W. Biederman 184861a28784SEric W. Biederman child = d_lookup(dir, &qname); 184961a28784SEric W. Biederman if (!child) { 185061a28784SEric W. Biederman struct dentry *new; 185161a28784SEric W. Biederman new = d_alloc(dir, &qname); 185261a28784SEric W. Biederman if (new) { 185361a28784SEric W. Biederman child = instantiate(dir->d_inode, new, task, ptr); 185461a28784SEric W. Biederman if (child) 185561a28784SEric W. Biederman dput(new); 185661a28784SEric W. Biederman else 185761a28784SEric W. Biederman child = new; 185861a28784SEric W. Biederman } 185961a28784SEric W. Biederman } 186061a28784SEric W. Biederman if (!child || IS_ERR(child) || !child->d_inode) 186161a28784SEric W. Biederman goto end_instantiate; 186261a28784SEric W. Biederman inode = child->d_inode; 186361a28784SEric W. Biederman if (inode) { 186461a28784SEric W. Biederman ino = inode->i_ino; 186561a28784SEric W. Biederman type = inode->i_mode >> 12; 186661a28784SEric W. Biederman } 186761a28784SEric W. Biederman dput(child); 186861a28784SEric W. Biederman end_instantiate: 186961a28784SEric W. Biederman if (!ino) 187061a28784SEric W. Biederman ino = find_inode_number(dir, &qname); 187161a28784SEric W. Biederman if (!ino) 187261a28784SEric W. Biederman ino = 1; 187361a28784SEric W. Biederman return filldir(dirent, name, len, filp->f_pos, ino, type); 187461a28784SEric W. Biederman } 187561a28784SEric W. Biederman 187628a6d671SEric W. Biederman static unsigned name_to_int(struct dentry *dentry) 187728a6d671SEric W. Biederman { 187828a6d671SEric W. Biederman const char *name = dentry->d_name.name; 187928a6d671SEric W. Biederman int len = dentry->d_name.len; 188028a6d671SEric W. Biederman unsigned n = 0; 188128a6d671SEric W. Biederman 188228a6d671SEric W. Biederman if (len > 1 && *name == '0') 188328a6d671SEric W. Biederman goto out; 188428a6d671SEric W. Biederman while (len-- > 0) { 188528a6d671SEric W. Biederman unsigned c = *name++ - '0'; 188628a6d671SEric W. Biederman if (c > 9) 188728a6d671SEric W. Biederman goto out; 188828a6d671SEric W. Biederman if (n >= (~0U-9)/10) 188928a6d671SEric W. Biederman goto out; 189028a6d671SEric W. Biederman n *= 10; 189128a6d671SEric W. Biederman n += c; 189228a6d671SEric W. Biederman } 189328a6d671SEric W. Biederman return n; 189428a6d671SEric W. Biederman out: 189528a6d671SEric W. Biederman return ~0U; 189628a6d671SEric W. Biederman } 189728a6d671SEric W. Biederman 189827932742SMiklos Szeredi #define PROC_FDINFO_MAX 64 189927932742SMiklos Szeredi 19003dcd25f3SJan Blunck static int proc_fd_info(struct inode *inode, struct path *path, char *info) 190128a6d671SEric W. Biederman { 190228a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 190328a6d671SEric W. Biederman struct files_struct *files = NULL; 190428a6d671SEric W. Biederman struct file *file; 190528a6d671SEric W. Biederman int fd = proc_fd(inode); 190628a6d671SEric W. Biederman 190728a6d671SEric W. Biederman if (task) { 190828a6d671SEric W. Biederman files = get_files_struct(task); 190928a6d671SEric W. Biederman put_task_struct(task); 191028a6d671SEric W. Biederman } 191128a6d671SEric W. Biederman if (files) { 191228a6d671SEric W. Biederman /* 191328a6d671SEric W. Biederman * We are not taking a ref to the file structure, so we must 191428a6d671SEric W. Biederman * hold ->file_lock. 191528a6d671SEric W. Biederman */ 191628a6d671SEric W. Biederman spin_lock(&files->file_lock); 191728a6d671SEric W. Biederman file = fcheck_files(files, fd); 191828a6d671SEric W. Biederman if (file) { 19193dcd25f3SJan Blunck if (path) { 19203dcd25f3SJan Blunck *path = file->f_path; 19213dcd25f3SJan Blunck path_get(&file->f_path); 19223dcd25f3SJan Blunck } 192327932742SMiklos Szeredi if (info) 192427932742SMiklos Szeredi snprintf(info, PROC_FDINFO_MAX, 192527932742SMiklos Szeredi "pos:\t%lli\n" 192627932742SMiklos Szeredi "flags:\t0%o\n", 192727932742SMiklos Szeredi (long long) file->f_pos, 192827932742SMiklos Szeredi file->f_flags); 192928a6d671SEric W. Biederman spin_unlock(&files->file_lock); 193028a6d671SEric W. Biederman put_files_struct(files); 193128a6d671SEric W. Biederman return 0; 193228a6d671SEric W. Biederman } 193328a6d671SEric W. Biederman spin_unlock(&files->file_lock); 193428a6d671SEric W. Biederman put_files_struct(files); 193528a6d671SEric W. Biederman } 193628a6d671SEric W. Biederman return -ENOENT; 193728a6d671SEric W. Biederman } 193828a6d671SEric W. Biederman 19393dcd25f3SJan Blunck static int proc_fd_link(struct inode *inode, struct path *path) 194027932742SMiklos Szeredi { 19413dcd25f3SJan Blunck return proc_fd_info(inode, path, NULL); 194227932742SMiklos Szeredi } 194327932742SMiklos Szeredi 194428a6d671SEric W. Biederman static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd) 194528a6d671SEric W. Biederman { 194634286d66SNick Piggin struct inode *inode; 194734286d66SNick Piggin struct task_struct *task; 194834286d66SNick Piggin int fd; 194928a6d671SEric W. Biederman struct files_struct *files; 1950c69e8d9cSDavid Howells const struct cred *cred; 195128a6d671SEric W. Biederman 195234286d66SNick Piggin if (nd && nd->flags & LOOKUP_RCU) 195334286d66SNick Piggin return -ECHILD; 195434286d66SNick Piggin 195534286d66SNick Piggin inode = dentry->d_inode; 195634286d66SNick Piggin task = get_proc_task(inode); 195734286d66SNick Piggin fd = proc_fd(inode); 195834286d66SNick Piggin 195928a6d671SEric W. Biederman if (task) { 196028a6d671SEric W. Biederman files = get_files_struct(task); 196128a6d671SEric W. Biederman if (files) { 196228a6d671SEric W. Biederman rcu_read_lock(); 196328a6d671SEric W. Biederman if (fcheck_files(files, fd)) { 196428a6d671SEric W. Biederman rcu_read_unlock(); 196528a6d671SEric W. Biederman put_files_struct(files); 196628a6d671SEric W. Biederman if (task_dumpable(task)) { 1967c69e8d9cSDavid Howells rcu_read_lock(); 1968c69e8d9cSDavid Howells cred = __task_cred(task); 1969c69e8d9cSDavid Howells inode->i_uid = cred->euid; 1970c69e8d9cSDavid Howells inode->i_gid = cred->egid; 1971c69e8d9cSDavid Howells rcu_read_unlock(); 197228a6d671SEric W. Biederman } else { 197328a6d671SEric W. Biederman inode->i_uid = 0; 197428a6d671SEric W. Biederman inode->i_gid = 0; 197528a6d671SEric W. Biederman } 197628a6d671SEric W. Biederman inode->i_mode &= ~(S_ISUID | S_ISGID); 197728a6d671SEric W. Biederman security_task_to_inode(task, inode); 197828a6d671SEric W. Biederman put_task_struct(task); 197928a6d671SEric W. Biederman return 1; 198028a6d671SEric W. Biederman } 198128a6d671SEric W. Biederman rcu_read_unlock(); 198228a6d671SEric W. Biederman put_files_struct(files); 198328a6d671SEric W. Biederman } 198428a6d671SEric W. Biederman put_task_struct(task); 198528a6d671SEric W. Biederman } 198628a6d671SEric W. Biederman d_drop(dentry); 198728a6d671SEric W. Biederman return 0; 198828a6d671SEric W. Biederman } 198928a6d671SEric W. Biederman 1990d72f71ebSAl Viro static const struct dentry_operations tid_fd_dentry_operations = 199128a6d671SEric W. Biederman { 199228a6d671SEric W. Biederman .d_revalidate = tid_fd_revalidate, 199328a6d671SEric W. Biederman .d_delete = pid_delete_dentry, 199428a6d671SEric W. Biederman }; 199528a6d671SEric W. Biederman 1996444ceed8SEric W. Biederman static struct dentry *proc_fd_instantiate(struct inode *dir, 1997c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 199828a6d671SEric W. Biederman { 1999c5141e6dSEric Dumazet unsigned fd = *(const unsigned *)ptr; 200028a6d671SEric W. Biederman struct file *file; 200128a6d671SEric W. Biederman struct files_struct *files; 200228a6d671SEric W. Biederman struct inode *inode; 200328a6d671SEric W. Biederman struct proc_inode *ei; 2004444ceed8SEric W. Biederman struct dentry *error = ERR_PTR(-ENOENT); 200528a6d671SEric W. Biederman 200661a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 200728a6d671SEric W. Biederman if (!inode) 200828a6d671SEric W. Biederman goto out; 200928a6d671SEric W. Biederman ei = PROC_I(inode); 201028a6d671SEric W. Biederman ei->fd = fd; 201128a6d671SEric W. Biederman files = get_files_struct(task); 201228a6d671SEric W. Biederman if (!files) 2013444ceed8SEric W. Biederman goto out_iput; 201428a6d671SEric W. Biederman inode->i_mode = S_IFLNK; 201528a6d671SEric W. Biederman 201628a6d671SEric W. Biederman /* 201728a6d671SEric W. Biederman * We are not taking a ref to the file structure, so we must 201828a6d671SEric W. Biederman * hold ->file_lock. 201928a6d671SEric W. Biederman */ 202028a6d671SEric W. Biederman spin_lock(&files->file_lock); 202128a6d671SEric W. Biederman file = fcheck_files(files, fd); 202228a6d671SEric W. Biederman if (!file) 2023444ceed8SEric W. Biederman goto out_unlock; 2024aeb5d727SAl Viro if (file->f_mode & FMODE_READ) 202528a6d671SEric W. Biederman inode->i_mode |= S_IRUSR | S_IXUSR; 2026aeb5d727SAl Viro if (file->f_mode & FMODE_WRITE) 202728a6d671SEric W. Biederman inode->i_mode |= S_IWUSR | S_IXUSR; 202828a6d671SEric W. Biederman spin_unlock(&files->file_lock); 202928a6d671SEric W. Biederman put_files_struct(files); 2030444ceed8SEric W. Biederman 203128a6d671SEric W. Biederman inode->i_op = &proc_pid_link_inode_operations; 203228a6d671SEric W. Biederman inode->i_size = 64; 203328a6d671SEric W. Biederman ei->op.proc_get_link = proc_fd_link; 2034fb045adbSNick Piggin d_set_d_op(dentry, &tid_fd_dentry_operations); 203528a6d671SEric W. Biederman d_add(dentry, inode); 203628a6d671SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 203728a6d671SEric W. Biederman if (tid_fd_revalidate(dentry, NULL)) 2038444ceed8SEric W. Biederman error = NULL; 2039444ceed8SEric W. Biederman 2040444ceed8SEric W. Biederman out: 2041444ceed8SEric W. Biederman return error; 2042444ceed8SEric W. Biederman out_unlock: 2043444ceed8SEric W. Biederman spin_unlock(&files->file_lock); 2044444ceed8SEric W. Biederman put_files_struct(files); 2045444ceed8SEric W. Biederman out_iput: 2046444ceed8SEric W. Biederman iput(inode); 2047444ceed8SEric W. Biederman goto out; 2048444ceed8SEric W. Biederman } 2049444ceed8SEric W. Biederman 205027932742SMiklos Szeredi static struct dentry *proc_lookupfd_common(struct inode *dir, 205127932742SMiklos Szeredi struct dentry *dentry, 205227932742SMiklos Szeredi instantiate_t instantiate) 2053444ceed8SEric W. Biederman { 2054444ceed8SEric W. Biederman struct task_struct *task = get_proc_task(dir); 2055444ceed8SEric W. Biederman unsigned fd = name_to_int(dentry); 2056444ceed8SEric W. Biederman struct dentry *result = ERR_PTR(-ENOENT); 2057444ceed8SEric W. Biederman 2058444ceed8SEric W. Biederman if (!task) 2059444ceed8SEric W. Biederman goto out_no_task; 2060444ceed8SEric W. Biederman if (fd == ~0U) 2061444ceed8SEric W. Biederman goto out; 2062444ceed8SEric W. Biederman 206327932742SMiklos Szeredi result = instantiate(dir, dentry, task, &fd); 206428a6d671SEric W. Biederman out: 206528a6d671SEric W. Biederman put_task_struct(task); 206628a6d671SEric W. Biederman out_no_task: 206728a6d671SEric W. Biederman return result; 206828a6d671SEric W. Biederman } 206928a6d671SEric W. Biederman 207027932742SMiklos Szeredi static int proc_readfd_common(struct file * filp, void * dirent, 207127932742SMiklos Szeredi filldir_t filldir, instantiate_t instantiate) 20721da177e4SLinus Torvalds { 20732fddfeefSJosef "Jeff" Sipek struct dentry *dentry = filp->f_path.dentry; 20745634708bSEric W. Biederman struct inode *inode = dentry->d_inode; 207599f89551SEric W. Biederman struct task_struct *p = get_proc_task(inode); 2076457c2510SPavel Emelyanov unsigned int fd, ino; 20771da177e4SLinus Torvalds int retval; 20781da177e4SLinus Torvalds struct files_struct * files; 20791da177e4SLinus Torvalds 20801da177e4SLinus Torvalds retval = -ENOENT; 208199f89551SEric W. Biederman if (!p) 208299f89551SEric W. Biederman goto out_no_task; 20831da177e4SLinus Torvalds retval = 0; 20841da177e4SLinus Torvalds 20851da177e4SLinus Torvalds fd = filp->f_pos; 20861da177e4SLinus Torvalds switch (fd) { 20871da177e4SLinus Torvalds case 0: 20881da177e4SLinus Torvalds if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0) 20891da177e4SLinus Torvalds goto out; 20901da177e4SLinus Torvalds filp->f_pos++; 20911da177e4SLinus Torvalds case 1: 20925634708bSEric W. Biederman ino = parent_ino(dentry); 20931da177e4SLinus Torvalds if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0) 20941da177e4SLinus Torvalds goto out; 20951da177e4SLinus Torvalds filp->f_pos++; 20961da177e4SLinus Torvalds default: 20971da177e4SLinus Torvalds files = get_files_struct(p); 20981da177e4SLinus Torvalds if (!files) 20991da177e4SLinus Torvalds goto out; 2100b835996fSDipankar Sarma rcu_read_lock(); 21011da177e4SLinus Torvalds for (fd = filp->f_pos-2; 21029b4f526cSAl Viro fd < files_fdtable(files)->max_fds; 21031da177e4SLinus Torvalds fd++, filp->f_pos++) { 210427932742SMiklos Szeredi char name[PROC_NUMBUF]; 210527932742SMiklos Szeredi int len; 21061da177e4SLinus Torvalds 21071da177e4SLinus Torvalds if (!fcheck_files(files, fd)) 21081da177e4SLinus Torvalds continue; 2109b835996fSDipankar Sarma rcu_read_unlock(); 21101da177e4SLinus Torvalds 211127932742SMiklos Szeredi len = snprintf(name, sizeof(name), "%d", fd); 211227932742SMiklos Szeredi if (proc_fill_cache(filp, dirent, filldir, 211327932742SMiklos Szeredi name, len, instantiate, 211427932742SMiklos Szeredi p, &fd) < 0) { 2115b835996fSDipankar Sarma rcu_read_lock(); 21161da177e4SLinus Torvalds break; 21171da177e4SLinus Torvalds } 2118b835996fSDipankar Sarma rcu_read_lock(); 21191da177e4SLinus Torvalds } 2120b835996fSDipankar Sarma rcu_read_unlock(); 21211da177e4SLinus Torvalds put_files_struct(files); 21221da177e4SLinus Torvalds } 21231da177e4SLinus Torvalds out: 212499f89551SEric W. Biederman put_task_struct(p); 212599f89551SEric W. Biederman out_no_task: 21261da177e4SLinus Torvalds return retval; 21271da177e4SLinus Torvalds } 21281da177e4SLinus Torvalds 212927932742SMiklos Szeredi static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry, 213027932742SMiklos Szeredi struct nameidata *nd) 213127932742SMiklos Szeredi { 213227932742SMiklos Szeredi return proc_lookupfd_common(dir, dentry, proc_fd_instantiate); 213327932742SMiklos Szeredi } 213427932742SMiklos Szeredi 213527932742SMiklos Szeredi static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir) 213627932742SMiklos Szeredi { 213727932742SMiklos Szeredi return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate); 213827932742SMiklos Szeredi } 213927932742SMiklos Szeredi 214027932742SMiklos Szeredi static ssize_t proc_fdinfo_read(struct file *file, char __user *buf, 214127932742SMiklos Szeredi size_t len, loff_t *ppos) 214227932742SMiklos Szeredi { 214327932742SMiklos Szeredi char tmp[PROC_FDINFO_MAX]; 21443dcd25f3SJan Blunck int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp); 214527932742SMiklos Szeredi if (!err) 214627932742SMiklos Szeredi err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp)); 214727932742SMiklos Szeredi return err; 214827932742SMiklos Szeredi } 214927932742SMiklos Szeredi 215027932742SMiklos Szeredi static const struct file_operations proc_fdinfo_file_operations = { 215127932742SMiklos Szeredi .open = nonseekable_open, 215227932742SMiklos Szeredi .read = proc_fdinfo_read, 21536038f373SArnd Bergmann .llseek = no_llseek, 215427932742SMiklos Szeredi }; 215527932742SMiklos Szeredi 215600977a59SArjan van de Ven static const struct file_operations proc_fd_operations = { 21571da177e4SLinus Torvalds .read = generic_read_dir, 21581da177e4SLinus Torvalds .readdir = proc_readfd, 21596038f373SArnd Bergmann .llseek = default_llseek, 21601da177e4SLinus Torvalds }; 21611da177e4SLinus Torvalds 21621da177e4SLinus Torvalds /* 21638948e11fSAlexey Dobriyan * /proc/pid/fd needs a special permission handler so that a process can still 21648948e11fSAlexey Dobriyan * access /proc/self/fd after it has executed a setuid(). 21658948e11fSAlexey Dobriyan */ 2166b74c79e9SNick Piggin static int proc_fd_permission(struct inode *inode, int mask, unsigned int flags) 21678948e11fSAlexey Dobriyan { 21688948e11fSAlexey Dobriyan int rv; 21698948e11fSAlexey Dobriyan 2170b74c79e9SNick Piggin if (flags & IPERM_FLAG_RCU) 2171b74c79e9SNick Piggin return -ECHILD; 2172b74c79e9SNick Piggin rv = generic_permission(inode, mask, flags, NULL); 21738948e11fSAlexey Dobriyan if (rv == 0) 21748948e11fSAlexey Dobriyan return 0; 21758948e11fSAlexey Dobriyan if (task_pid(current) == proc_pid(inode)) 21768948e11fSAlexey Dobriyan rv = 0; 21778948e11fSAlexey Dobriyan return rv; 21788948e11fSAlexey Dobriyan } 21798948e11fSAlexey Dobriyan 21808948e11fSAlexey Dobriyan /* 21811da177e4SLinus Torvalds * proc directories can do almost nothing.. 21821da177e4SLinus Torvalds */ 2183c5ef1c42SArjan van de Ven static const struct inode_operations proc_fd_inode_operations = { 21841da177e4SLinus Torvalds .lookup = proc_lookupfd, 21858948e11fSAlexey Dobriyan .permission = proc_fd_permission, 21866d76fa58SLinus Torvalds .setattr = proc_setattr, 21871da177e4SLinus Torvalds }; 21881da177e4SLinus Torvalds 218927932742SMiklos Szeredi static struct dentry *proc_fdinfo_instantiate(struct inode *dir, 219027932742SMiklos Szeredi struct dentry *dentry, struct task_struct *task, const void *ptr) 219127932742SMiklos Szeredi { 219227932742SMiklos Szeredi unsigned fd = *(unsigned *)ptr; 219327932742SMiklos Szeredi struct inode *inode; 219427932742SMiklos Szeredi struct proc_inode *ei; 219527932742SMiklos Szeredi struct dentry *error = ERR_PTR(-ENOENT); 219627932742SMiklos Szeredi 219727932742SMiklos Szeredi inode = proc_pid_make_inode(dir->i_sb, task); 219827932742SMiklos Szeredi if (!inode) 219927932742SMiklos Szeredi goto out; 220027932742SMiklos Szeredi ei = PROC_I(inode); 220127932742SMiklos Szeredi ei->fd = fd; 220227932742SMiklos Szeredi inode->i_mode = S_IFREG | S_IRUSR; 220327932742SMiklos Szeredi inode->i_fop = &proc_fdinfo_file_operations; 2204fb045adbSNick Piggin d_set_d_op(dentry, &tid_fd_dentry_operations); 220527932742SMiklos Szeredi d_add(dentry, inode); 220627932742SMiklos Szeredi /* Close the race of the process dying before we return the dentry */ 220727932742SMiklos Szeredi if (tid_fd_revalidate(dentry, NULL)) 220827932742SMiklos Szeredi error = NULL; 220927932742SMiklos Szeredi 221027932742SMiklos Szeredi out: 221127932742SMiklos Szeredi return error; 221227932742SMiklos Szeredi } 221327932742SMiklos Szeredi 221427932742SMiklos Szeredi static struct dentry *proc_lookupfdinfo(struct inode *dir, 221527932742SMiklos Szeredi struct dentry *dentry, 221627932742SMiklos Szeredi struct nameidata *nd) 221727932742SMiklos Szeredi { 221827932742SMiklos Szeredi return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate); 221927932742SMiklos Szeredi } 222027932742SMiklos Szeredi 222127932742SMiklos Szeredi static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir) 222227932742SMiklos Szeredi { 222327932742SMiklos Szeredi return proc_readfd_common(filp, dirent, filldir, 222427932742SMiklos Szeredi proc_fdinfo_instantiate); 222527932742SMiklos Szeredi } 222627932742SMiklos Szeredi 222727932742SMiklos Szeredi static const struct file_operations proc_fdinfo_operations = { 222827932742SMiklos Szeredi .read = generic_read_dir, 222927932742SMiklos Szeredi .readdir = proc_readfdinfo, 22306038f373SArnd Bergmann .llseek = default_llseek, 223127932742SMiklos Szeredi }; 223227932742SMiklos Szeredi 223327932742SMiklos Szeredi /* 223427932742SMiklos Szeredi * proc directories can do almost nothing.. 223527932742SMiklos Szeredi */ 223627932742SMiklos Szeredi static const struct inode_operations proc_fdinfo_inode_operations = { 223727932742SMiklos Szeredi .lookup = proc_lookupfdinfo, 223827932742SMiklos Szeredi .setattr = proc_setattr, 223927932742SMiklos Szeredi }; 224027932742SMiklos Szeredi 224127932742SMiklos Szeredi 2242444ceed8SEric W. Biederman static struct dentry *proc_pident_instantiate(struct inode *dir, 2243c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 2244444ceed8SEric W. Biederman { 2245c5141e6dSEric Dumazet const struct pid_entry *p = ptr; 2246444ceed8SEric W. Biederman struct inode *inode; 2247444ceed8SEric W. Biederman struct proc_inode *ei; 2248bd6daba9SKOSAKI Motohiro struct dentry *error = ERR_PTR(-ENOENT); 2249444ceed8SEric W. Biederman 225061a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 2251444ceed8SEric W. Biederman if (!inode) 2252444ceed8SEric W. Biederman goto out; 2253444ceed8SEric W. Biederman 2254444ceed8SEric W. Biederman ei = PROC_I(inode); 2255444ceed8SEric W. Biederman inode->i_mode = p->mode; 2256444ceed8SEric W. Biederman if (S_ISDIR(inode->i_mode)) 2257444ceed8SEric W. Biederman inode->i_nlink = 2; /* Use getattr to fix if necessary */ 2258444ceed8SEric W. Biederman if (p->iop) 2259444ceed8SEric W. Biederman inode->i_op = p->iop; 2260444ceed8SEric W. Biederman if (p->fop) 2261444ceed8SEric W. Biederman inode->i_fop = p->fop; 2262444ceed8SEric W. Biederman ei->op = p->op; 2263fb045adbSNick Piggin d_set_d_op(dentry, &pid_dentry_operations); 2264444ceed8SEric W. Biederman d_add(dentry, inode); 2265444ceed8SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 2266444ceed8SEric W. Biederman if (pid_revalidate(dentry, NULL)) 2267444ceed8SEric W. Biederman error = NULL; 2268444ceed8SEric W. Biederman out: 2269444ceed8SEric W. Biederman return error; 2270444ceed8SEric W. Biederman } 2271444ceed8SEric W. Biederman 22721da177e4SLinus Torvalds static struct dentry *proc_pident_lookup(struct inode *dir, 22731da177e4SLinus Torvalds struct dentry *dentry, 2274c5141e6dSEric Dumazet const struct pid_entry *ents, 22757bcd6b0eSEric W. Biederman unsigned int nents) 22761da177e4SLinus Torvalds { 2277cd6a3ce9SEric W. Biederman struct dentry *error; 227899f89551SEric W. Biederman struct task_struct *task = get_proc_task(dir); 2279c5141e6dSEric Dumazet const struct pid_entry *p, *last; 22801da177e4SLinus Torvalds 2281cd6a3ce9SEric W. Biederman error = ERR_PTR(-ENOENT); 22821da177e4SLinus Torvalds 228399f89551SEric W. Biederman if (!task) 228499f89551SEric W. Biederman goto out_no_task; 22851da177e4SLinus Torvalds 228620cdc894SEric W. Biederman /* 228720cdc894SEric W. Biederman * Yes, it does not scale. And it should not. Don't add 228820cdc894SEric W. Biederman * new entries into /proc/<tgid>/ without very good reasons. 228920cdc894SEric W. Biederman */ 22907bcd6b0eSEric W. Biederman last = &ents[nents - 1]; 22917bcd6b0eSEric W. Biederman for (p = ents; p <= last; p++) { 22921da177e4SLinus Torvalds if (p->len != dentry->d_name.len) 22931da177e4SLinus Torvalds continue; 22941da177e4SLinus Torvalds if (!memcmp(dentry->d_name.name, p->name, p->len)) 22951da177e4SLinus Torvalds break; 22961da177e4SLinus Torvalds } 22977bcd6b0eSEric W. Biederman if (p > last) 22981da177e4SLinus Torvalds goto out; 22991da177e4SLinus Torvalds 2300444ceed8SEric W. Biederman error = proc_pident_instantiate(dir, dentry, task, p); 23011da177e4SLinus Torvalds out: 230299f89551SEric W. Biederman put_task_struct(task); 230399f89551SEric W. Biederman out_no_task: 2304cd6a3ce9SEric W. Biederman return error; 23051da177e4SLinus Torvalds } 23061da177e4SLinus Torvalds 2307c5141e6dSEric Dumazet static int proc_pident_fill_cache(struct file *filp, void *dirent, 2308c5141e6dSEric Dumazet filldir_t filldir, struct task_struct *task, const struct pid_entry *p) 230961a28784SEric W. Biederman { 231061a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, p->name, p->len, 231161a28784SEric W. Biederman proc_pident_instantiate, task, p); 231261a28784SEric W. Biederman } 231361a28784SEric W. Biederman 231428a6d671SEric W. Biederman static int proc_pident_readdir(struct file *filp, 231528a6d671SEric W. Biederman void *dirent, filldir_t filldir, 2316c5141e6dSEric Dumazet const struct pid_entry *ents, unsigned int nents) 231728a6d671SEric W. Biederman { 231828a6d671SEric W. Biederman int i; 23192fddfeefSJosef "Jeff" Sipek struct dentry *dentry = filp->f_path.dentry; 232028a6d671SEric W. Biederman struct inode *inode = dentry->d_inode; 232128a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 2322c5141e6dSEric Dumazet const struct pid_entry *p, *last; 232328a6d671SEric W. Biederman ino_t ino; 232428a6d671SEric W. Biederman int ret; 232528a6d671SEric W. Biederman 232628a6d671SEric W. Biederman ret = -ENOENT; 232728a6d671SEric W. Biederman if (!task) 232861a28784SEric W. Biederman goto out_no_task; 232928a6d671SEric W. Biederman 233028a6d671SEric W. Biederman ret = 0; 233128a6d671SEric W. Biederman i = filp->f_pos; 233228a6d671SEric W. Biederman switch (i) { 233328a6d671SEric W. Biederman case 0: 233428a6d671SEric W. Biederman ino = inode->i_ino; 233528a6d671SEric W. Biederman if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0) 233628a6d671SEric W. Biederman goto out; 233728a6d671SEric W. Biederman i++; 233828a6d671SEric W. Biederman filp->f_pos++; 233928a6d671SEric W. Biederman /* fall through */ 234028a6d671SEric W. Biederman case 1: 234128a6d671SEric W. Biederman ino = parent_ino(dentry); 234228a6d671SEric W. Biederman if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0) 234328a6d671SEric W. Biederman goto out; 234428a6d671SEric W. Biederman i++; 234528a6d671SEric W. Biederman filp->f_pos++; 234628a6d671SEric W. Biederman /* fall through */ 234728a6d671SEric W. Biederman default: 234828a6d671SEric W. Biederman i -= 2; 234928a6d671SEric W. Biederman if (i >= nents) { 235028a6d671SEric W. Biederman ret = 1; 235128a6d671SEric W. Biederman goto out; 235228a6d671SEric W. Biederman } 235328a6d671SEric W. Biederman p = ents + i; 23547bcd6b0eSEric W. Biederman last = &ents[nents - 1]; 23557bcd6b0eSEric W. Biederman while (p <= last) { 235661a28784SEric W. Biederman if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0) 235728a6d671SEric W. Biederman goto out; 235828a6d671SEric W. Biederman filp->f_pos++; 235928a6d671SEric W. Biederman p++; 236028a6d671SEric W. Biederman } 23611da177e4SLinus Torvalds } 23621da177e4SLinus Torvalds 236328a6d671SEric W. Biederman ret = 1; 236428a6d671SEric W. Biederman out: 236561a28784SEric W. Biederman put_task_struct(task); 236661a28784SEric W. Biederman out_no_task: 236728a6d671SEric W. Biederman return ret; 23681da177e4SLinus Torvalds } 23691da177e4SLinus Torvalds 23701da177e4SLinus Torvalds #ifdef CONFIG_SECURITY 237128a6d671SEric W. Biederman static ssize_t proc_pid_attr_read(struct file * file, char __user * buf, 237228a6d671SEric W. Biederman size_t count, loff_t *ppos) 237328a6d671SEric W. Biederman { 23742fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 237504ff9708SAl Viro char *p = NULL; 237628a6d671SEric W. Biederman ssize_t length; 237728a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 237828a6d671SEric W. Biederman 237928a6d671SEric W. Biederman if (!task) 238004ff9708SAl Viro return -ESRCH; 238128a6d671SEric W. Biederman 238228a6d671SEric W. Biederman length = security_getprocattr(task, 23832fddfeefSJosef "Jeff" Sipek (char*)file->f_path.dentry->d_name.name, 238404ff9708SAl Viro &p); 238528a6d671SEric W. Biederman put_task_struct(task); 238604ff9708SAl Viro if (length > 0) 238704ff9708SAl Viro length = simple_read_from_buffer(buf, count, ppos, p, length); 238804ff9708SAl Viro kfree(p); 238928a6d671SEric W. Biederman return length; 239028a6d671SEric W. Biederman } 239128a6d671SEric W. Biederman 239228a6d671SEric W. Biederman static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf, 239328a6d671SEric W. Biederman size_t count, loff_t *ppos) 239428a6d671SEric W. Biederman { 23952fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 239628a6d671SEric W. Biederman char *page; 239728a6d671SEric W. Biederman ssize_t length; 239828a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 239928a6d671SEric W. Biederman 240028a6d671SEric W. Biederman length = -ESRCH; 240128a6d671SEric W. Biederman if (!task) 240228a6d671SEric W. Biederman goto out_no_task; 240328a6d671SEric W. Biederman if (count > PAGE_SIZE) 240428a6d671SEric W. Biederman count = PAGE_SIZE; 240528a6d671SEric W. Biederman 240628a6d671SEric W. Biederman /* No partial writes. */ 240728a6d671SEric W. Biederman length = -EINVAL; 240828a6d671SEric W. Biederman if (*ppos != 0) 240928a6d671SEric W. Biederman goto out; 241028a6d671SEric W. Biederman 241128a6d671SEric W. Biederman length = -ENOMEM; 2412e12ba74dSMel Gorman page = (char*)__get_free_page(GFP_TEMPORARY); 241328a6d671SEric W. Biederman if (!page) 241428a6d671SEric W. Biederman goto out; 241528a6d671SEric W. Biederman 241628a6d671SEric W. Biederman length = -EFAULT; 241728a6d671SEric W. Biederman if (copy_from_user(page, buf, count)) 241828a6d671SEric W. Biederman goto out_free; 241928a6d671SEric W. Biederman 2420107db7c7SDavid Howells /* Guard against adverse ptrace interaction */ 24219b1bf12dSKOSAKI Motohiro length = mutex_lock_interruptible(&task->signal->cred_guard_mutex); 2422107db7c7SDavid Howells if (length < 0) 2423107db7c7SDavid Howells goto out_free; 2424107db7c7SDavid Howells 242528a6d671SEric W. Biederman length = security_setprocattr(task, 24262fddfeefSJosef "Jeff" Sipek (char*)file->f_path.dentry->d_name.name, 242728a6d671SEric W. Biederman (void*)page, count); 24289b1bf12dSKOSAKI Motohiro mutex_unlock(&task->signal->cred_guard_mutex); 242928a6d671SEric W. Biederman out_free: 243028a6d671SEric W. Biederman free_page((unsigned long) page); 243128a6d671SEric W. Biederman out: 243228a6d671SEric W. Biederman put_task_struct(task); 243328a6d671SEric W. Biederman out_no_task: 243428a6d671SEric W. Biederman return length; 243528a6d671SEric W. Biederman } 243628a6d671SEric W. Biederman 243700977a59SArjan van de Ven static const struct file_operations proc_pid_attr_operations = { 243828a6d671SEric W. Biederman .read = proc_pid_attr_read, 243928a6d671SEric W. Biederman .write = proc_pid_attr_write, 244087df8424SArnd Bergmann .llseek = generic_file_llseek, 244128a6d671SEric W. Biederman }; 244228a6d671SEric W. Biederman 2443c5141e6dSEric Dumazet static const struct pid_entry attr_dir_stuff[] = { 2444631f9c18SAlexey Dobriyan REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2445631f9c18SAlexey Dobriyan REG("prev", S_IRUGO, proc_pid_attr_operations), 2446631f9c18SAlexey Dobriyan REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2447631f9c18SAlexey Dobriyan REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2448631f9c18SAlexey Dobriyan REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2449631f9c18SAlexey Dobriyan REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 245028a6d671SEric W. Biederman }; 245128a6d671SEric W. Biederman 245272d9dcfcSEric W. Biederman static int proc_attr_dir_readdir(struct file * filp, 24531da177e4SLinus Torvalds void * dirent, filldir_t filldir) 24541da177e4SLinus Torvalds { 24551da177e4SLinus Torvalds return proc_pident_readdir(filp,dirent,filldir, 245672d9dcfcSEric W. Biederman attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff)); 24571da177e4SLinus Torvalds } 24581da177e4SLinus Torvalds 245900977a59SArjan van de Ven static const struct file_operations proc_attr_dir_operations = { 24601da177e4SLinus Torvalds .read = generic_read_dir, 246172d9dcfcSEric W. Biederman .readdir = proc_attr_dir_readdir, 24626038f373SArnd Bergmann .llseek = default_llseek, 24631da177e4SLinus Torvalds }; 24641da177e4SLinus Torvalds 246572d9dcfcSEric W. Biederman static struct dentry *proc_attr_dir_lookup(struct inode *dir, 24661da177e4SLinus Torvalds struct dentry *dentry, struct nameidata *nd) 24671da177e4SLinus Torvalds { 24687bcd6b0eSEric W. Biederman return proc_pident_lookup(dir, dentry, 24697bcd6b0eSEric W. Biederman attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff)); 24701da177e4SLinus Torvalds } 24711da177e4SLinus Torvalds 2472c5ef1c42SArjan van de Ven static const struct inode_operations proc_attr_dir_inode_operations = { 247372d9dcfcSEric W. Biederman .lookup = proc_attr_dir_lookup, 247499f89551SEric W. Biederman .getattr = pid_getattr, 24756d76fa58SLinus Torvalds .setattr = proc_setattr, 24761da177e4SLinus Torvalds }; 24771da177e4SLinus Torvalds 24781da177e4SLinus Torvalds #endif 24791da177e4SLinus Torvalds 2480698ba7b5SChristoph Hellwig #ifdef CONFIG_ELF_CORE 24813cb4a0bbSKawai, Hidehiro static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf, 24823cb4a0bbSKawai, Hidehiro size_t count, loff_t *ppos) 24833cb4a0bbSKawai, Hidehiro { 24843cb4a0bbSKawai, Hidehiro struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 24853cb4a0bbSKawai, Hidehiro struct mm_struct *mm; 24863cb4a0bbSKawai, Hidehiro char buffer[PROC_NUMBUF]; 24873cb4a0bbSKawai, Hidehiro size_t len; 24883cb4a0bbSKawai, Hidehiro int ret; 24893cb4a0bbSKawai, Hidehiro 24903cb4a0bbSKawai, Hidehiro if (!task) 24913cb4a0bbSKawai, Hidehiro return -ESRCH; 24923cb4a0bbSKawai, Hidehiro 24933cb4a0bbSKawai, Hidehiro ret = 0; 24943cb4a0bbSKawai, Hidehiro mm = get_task_mm(task); 24953cb4a0bbSKawai, Hidehiro if (mm) { 24963cb4a0bbSKawai, Hidehiro len = snprintf(buffer, sizeof(buffer), "%08lx\n", 24973cb4a0bbSKawai, Hidehiro ((mm->flags & MMF_DUMP_FILTER_MASK) >> 24983cb4a0bbSKawai, Hidehiro MMF_DUMP_FILTER_SHIFT)); 24993cb4a0bbSKawai, Hidehiro mmput(mm); 25003cb4a0bbSKawai, Hidehiro ret = simple_read_from_buffer(buf, count, ppos, buffer, len); 25013cb4a0bbSKawai, Hidehiro } 25023cb4a0bbSKawai, Hidehiro 25033cb4a0bbSKawai, Hidehiro put_task_struct(task); 25043cb4a0bbSKawai, Hidehiro 25053cb4a0bbSKawai, Hidehiro return ret; 25063cb4a0bbSKawai, Hidehiro } 25073cb4a0bbSKawai, Hidehiro 25083cb4a0bbSKawai, Hidehiro static ssize_t proc_coredump_filter_write(struct file *file, 25093cb4a0bbSKawai, Hidehiro const char __user *buf, 25103cb4a0bbSKawai, Hidehiro size_t count, 25113cb4a0bbSKawai, Hidehiro loff_t *ppos) 25123cb4a0bbSKawai, Hidehiro { 25133cb4a0bbSKawai, Hidehiro struct task_struct *task; 25143cb4a0bbSKawai, Hidehiro struct mm_struct *mm; 25153cb4a0bbSKawai, Hidehiro char buffer[PROC_NUMBUF], *end; 25163cb4a0bbSKawai, Hidehiro unsigned int val; 25173cb4a0bbSKawai, Hidehiro int ret; 25183cb4a0bbSKawai, Hidehiro int i; 25193cb4a0bbSKawai, Hidehiro unsigned long mask; 25203cb4a0bbSKawai, Hidehiro 25213cb4a0bbSKawai, Hidehiro ret = -EFAULT; 25223cb4a0bbSKawai, Hidehiro memset(buffer, 0, sizeof(buffer)); 25233cb4a0bbSKawai, Hidehiro if (count > sizeof(buffer) - 1) 25243cb4a0bbSKawai, Hidehiro count = sizeof(buffer) - 1; 25253cb4a0bbSKawai, Hidehiro if (copy_from_user(buffer, buf, count)) 25263cb4a0bbSKawai, Hidehiro goto out_no_task; 25273cb4a0bbSKawai, Hidehiro 25283cb4a0bbSKawai, Hidehiro ret = -EINVAL; 25293cb4a0bbSKawai, Hidehiro val = (unsigned int)simple_strtoul(buffer, &end, 0); 25303cb4a0bbSKawai, Hidehiro if (*end == '\n') 25313cb4a0bbSKawai, Hidehiro end++; 25323cb4a0bbSKawai, Hidehiro if (end - buffer == 0) 25333cb4a0bbSKawai, Hidehiro goto out_no_task; 25343cb4a0bbSKawai, Hidehiro 25353cb4a0bbSKawai, Hidehiro ret = -ESRCH; 25363cb4a0bbSKawai, Hidehiro task = get_proc_task(file->f_dentry->d_inode); 25373cb4a0bbSKawai, Hidehiro if (!task) 25383cb4a0bbSKawai, Hidehiro goto out_no_task; 25393cb4a0bbSKawai, Hidehiro 25403cb4a0bbSKawai, Hidehiro ret = end - buffer; 25413cb4a0bbSKawai, Hidehiro mm = get_task_mm(task); 25423cb4a0bbSKawai, Hidehiro if (!mm) 25433cb4a0bbSKawai, Hidehiro goto out_no_mm; 25443cb4a0bbSKawai, Hidehiro 25453cb4a0bbSKawai, Hidehiro for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) { 25463cb4a0bbSKawai, Hidehiro if (val & mask) 25473cb4a0bbSKawai, Hidehiro set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags); 25483cb4a0bbSKawai, Hidehiro else 25493cb4a0bbSKawai, Hidehiro clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags); 25503cb4a0bbSKawai, Hidehiro } 25513cb4a0bbSKawai, Hidehiro 25523cb4a0bbSKawai, Hidehiro mmput(mm); 25533cb4a0bbSKawai, Hidehiro out_no_mm: 25543cb4a0bbSKawai, Hidehiro put_task_struct(task); 25553cb4a0bbSKawai, Hidehiro out_no_task: 25563cb4a0bbSKawai, Hidehiro return ret; 25573cb4a0bbSKawai, Hidehiro } 25583cb4a0bbSKawai, Hidehiro 25593cb4a0bbSKawai, Hidehiro static const struct file_operations proc_coredump_filter_operations = { 25603cb4a0bbSKawai, Hidehiro .read = proc_coredump_filter_read, 25613cb4a0bbSKawai, Hidehiro .write = proc_coredump_filter_write, 256287df8424SArnd Bergmann .llseek = generic_file_llseek, 25633cb4a0bbSKawai, Hidehiro }; 25643cb4a0bbSKawai, Hidehiro #endif 25653cb4a0bbSKawai, Hidehiro 25661da177e4SLinus Torvalds /* 25671da177e4SLinus Torvalds * /proc/self: 25681da177e4SLinus Torvalds */ 25691da177e4SLinus Torvalds static int proc_self_readlink(struct dentry *dentry, char __user *buffer, 25701da177e4SLinus Torvalds int buflen) 25711da177e4SLinus Torvalds { 2572488e5bc4SEric W. Biederman struct pid_namespace *ns = dentry->d_sb->s_fs_info; 2573b55fcb22SAndrew Morton pid_t tgid = task_tgid_nr_ns(current, ns); 25748578cea7SEric W. Biederman char tmp[PROC_NUMBUF]; 2575b55fcb22SAndrew Morton if (!tgid) 2576488e5bc4SEric W. Biederman return -ENOENT; 2577b55fcb22SAndrew Morton sprintf(tmp, "%d", tgid); 25781da177e4SLinus Torvalds return vfs_readlink(dentry,buffer,buflen,tmp); 25791da177e4SLinus Torvalds } 25801da177e4SLinus Torvalds 2581008b150aSAl Viro static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd) 25821da177e4SLinus Torvalds { 2583488e5bc4SEric W. Biederman struct pid_namespace *ns = dentry->d_sb->s_fs_info; 2584b55fcb22SAndrew Morton pid_t tgid = task_tgid_nr_ns(current, ns); 25857fee4868SAl Viro char *name = ERR_PTR(-ENOENT); 25867fee4868SAl Viro if (tgid) { 25877fee4868SAl Viro name = __getname(); 25887fee4868SAl Viro if (!name) 25897fee4868SAl Viro name = ERR_PTR(-ENOMEM); 25907fee4868SAl Viro else 25917fee4868SAl Viro sprintf(name, "%d", tgid); 25927fee4868SAl Viro } 25937fee4868SAl Viro nd_set_link(nd, name); 25947fee4868SAl Viro return NULL; 25957fee4868SAl Viro } 25967fee4868SAl Viro 25977fee4868SAl Viro static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd, 25987fee4868SAl Viro void *cookie) 25997fee4868SAl Viro { 26007fee4868SAl Viro char *s = nd_get_link(nd); 26017fee4868SAl Viro if (!IS_ERR(s)) 26027fee4868SAl Viro __putname(s); 26031da177e4SLinus Torvalds } 26041da177e4SLinus Torvalds 2605c5ef1c42SArjan van de Ven static const struct inode_operations proc_self_inode_operations = { 26061da177e4SLinus Torvalds .readlink = proc_self_readlink, 26071da177e4SLinus Torvalds .follow_link = proc_self_follow_link, 26087fee4868SAl Viro .put_link = proc_self_put_link, 26091da177e4SLinus Torvalds }; 26101da177e4SLinus Torvalds 261128a6d671SEric W. Biederman /* 2612801199ceSEric W. Biederman * proc base 2613801199ceSEric W. Biederman * 2614801199ceSEric W. Biederman * These are the directory entries in the root directory of /proc 2615801199ceSEric W. Biederman * that properly belong to the /proc filesystem, as they describe 2616801199ceSEric W. Biederman * describe something that is process related. 2617801199ceSEric W. Biederman */ 2618c5141e6dSEric Dumazet static const struct pid_entry proc_base_stuff[] = { 261961a28784SEric W. Biederman NOD("self", S_IFLNK|S_IRWXUGO, 2620801199ceSEric W. Biederman &proc_self_inode_operations, NULL, {}), 2621801199ceSEric W. Biederman }; 2622801199ceSEric W. Biederman 2623444ceed8SEric W. Biederman static struct dentry *proc_base_instantiate(struct inode *dir, 2624c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 2625801199ceSEric W. Biederman { 2626c5141e6dSEric Dumazet const struct pid_entry *p = ptr; 2627801199ceSEric W. Biederman struct inode *inode; 2628801199ceSEric W. Biederman struct proc_inode *ei; 262973d36460SDan Carpenter struct dentry *error; 2630801199ceSEric W. Biederman 2631801199ceSEric W. Biederman /* Allocate the inode */ 2632801199ceSEric W. Biederman error = ERR_PTR(-ENOMEM); 2633801199ceSEric W. Biederman inode = new_inode(dir->i_sb); 2634801199ceSEric W. Biederman if (!inode) 2635801199ceSEric W. Biederman goto out; 2636801199ceSEric W. Biederman 2637801199ceSEric W. Biederman /* Initialize the inode */ 2638801199ceSEric W. Biederman ei = PROC_I(inode); 263985fe4025SChristoph Hellwig inode->i_ino = get_next_ino(); 2640801199ceSEric W. Biederman inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; 2641801199ceSEric W. Biederman 2642801199ceSEric W. Biederman /* 2643801199ceSEric W. Biederman * grab the reference to the task. 2644801199ceSEric W. Biederman */ 26451a657f78SOleg Nesterov ei->pid = get_task_pid(task, PIDTYPE_PID); 2646801199ceSEric W. Biederman if (!ei->pid) 2647801199ceSEric W. Biederman goto out_iput; 2648801199ceSEric W. Biederman 2649801199ceSEric W. Biederman inode->i_mode = p->mode; 2650801199ceSEric W. Biederman if (S_ISDIR(inode->i_mode)) 2651801199ceSEric W. Biederman inode->i_nlink = 2; 2652801199ceSEric W. Biederman if (S_ISLNK(inode->i_mode)) 2653801199ceSEric W. Biederman inode->i_size = 64; 2654801199ceSEric W. Biederman if (p->iop) 2655801199ceSEric W. Biederman inode->i_op = p->iop; 2656801199ceSEric W. Biederman if (p->fop) 2657801199ceSEric W. Biederman inode->i_fop = p->fop; 2658801199ceSEric W. Biederman ei->op = p->op; 2659801199ceSEric W. Biederman d_add(dentry, inode); 2660801199ceSEric W. Biederman error = NULL; 2661801199ceSEric W. Biederman out: 2662801199ceSEric W. Biederman return error; 2663801199ceSEric W. Biederman out_iput: 2664801199ceSEric W. Biederman iput(inode); 2665801199ceSEric W. Biederman goto out; 2666801199ceSEric W. Biederman } 2667801199ceSEric W. Biederman 2668444ceed8SEric W. Biederman static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry) 2669444ceed8SEric W. Biederman { 2670444ceed8SEric W. Biederman struct dentry *error; 2671444ceed8SEric W. Biederman struct task_struct *task = get_proc_task(dir); 2672c5141e6dSEric Dumazet const struct pid_entry *p, *last; 2673444ceed8SEric W. Biederman 2674444ceed8SEric W. Biederman error = ERR_PTR(-ENOENT); 2675444ceed8SEric W. Biederman 2676444ceed8SEric W. Biederman if (!task) 2677444ceed8SEric W. Biederman goto out_no_task; 2678444ceed8SEric W. Biederman 2679444ceed8SEric W. Biederman /* Lookup the directory entry */ 26807bcd6b0eSEric W. Biederman last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1]; 26817bcd6b0eSEric W. Biederman for (p = proc_base_stuff; p <= last; p++) { 2682444ceed8SEric W. Biederman if (p->len != dentry->d_name.len) 2683444ceed8SEric W. Biederman continue; 2684444ceed8SEric W. Biederman if (!memcmp(dentry->d_name.name, p->name, p->len)) 2685444ceed8SEric W. Biederman break; 2686444ceed8SEric W. Biederman } 26877bcd6b0eSEric W. Biederman if (p > last) 2688444ceed8SEric W. Biederman goto out; 2689444ceed8SEric W. Biederman 2690444ceed8SEric W. Biederman error = proc_base_instantiate(dir, dentry, task, p); 2691444ceed8SEric W. Biederman 2692444ceed8SEric W. Biederman out: 2693444ceed8SEric W. Biederman put_task_struct(task); 2694444ceed8SEric W. Biederman out_no_task: 2695444ceed8SEric W. Biederman return error; 2696444ceed8SEric W. Biederman } 2697444ceed8SEric W. Biederman 2698c5141e6dSEric Dumazet static int proc_base_fill_cache(struct file *filp, void *dirent, 2699c5141e6dSEric Dumazet filldir_t filldir, struct task_struct *task, const struct pid_entry *p) 270061a28784SEric W. Biederman { 270161a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, p->name, p->len, 270261a28784SEric W. Biederman proc_base_instantiate, task, p); 270361a28784SEric W. Biederman } 270461a28784SEric W. Biederman 2705aba76fdbSAndrew Morton #ifdef CONFIG_TASK_IO_ACCOUNTING 2706297c5d92SAndrea Righi static int do_io_accounting(struct task_struct *task, char *buffer, int whole) 2707aba76fdbSAndrew Morton { 2708940389b8SAndrea Righi struct task_io_accounting acct = task->ioac; 2709297c5d92SAndrea Righi unsigned long flags; 2710297c5d92SAndrea Righi 27115995477aSAndrea Righi if (whole && lock_task_sighand(task, &flags)) { 2712b2d002dbSAndrea Righi struct task_struct *t = task; 2713297c5d92SAndrea Righi 27145995477aSAndrea Righi task_io_accounting_add(&acct, &task->signal->ioac); 27155995477aSAndrea Righi while_each_thread(task, t) 27165995477aSAndrea Righi task_io_accounting_add(&acct, &t->ioac); 2717297c5d92SAndrea Righi 2718297c5d92SAndrea Righi unlock_task_sighand(task, &flags); 2719297c5d92SAndrea Righi } 2720aba76fdbSAndrew Morton return sprintf(buffer, 2721aba76fdbSAndrew Morton "rchar: %llu\n" 2722aba76fdbSAndrew Morton "wchar: %llu\n" 2723aba76fdbSAndrew Morton "syscr: %llu\n" 2724aba76fdbSAndrew Morton "syscw: %llu\n" 2725aba76fdbSAndrew Morton "read_bytes: %llu\n" 2726aba76fdbSAndrew Morton "write_bytes: %llu\n" 2727aba76fdbSAndrew Morton "cancelled_write_bytes: %llu\n", 27287c44319dSAlexander Beregalov (unsigned long long)acct.rchar, 27297c44319dSAlexander Beregalov (unsigned long long)acct.wchar, 27307c44319dSAlexander Beregalov (unsigned long long)acct.syscr, 27317c44319dSAlexander Beregalov (unsigned long long)acct.syscw, 27327c44319dSAlexander Beregalov (unsigned long long)acct.read_bytes, 27337c44319dSAlexander Beregalov (unsigned long long)acct.write_bytes, 27347c44319dSAlexander Beregalov (unsigned long long)acct.cancelled_write_bytes); 2735aba76fdbSAndrew Morton } 2736297c5d92SAndrea Righi 2737297c5d92SAndrea Righi static int proc_tid_io_accounting(struct task_struct *task, char *buffer) 2738297c5d92SAndrea Righi { 2739297c5d92SAndrea Righi return do_io_accounting(task, buffer, 0); 2740297c5d92SAndrea Righi } 2741297c5d92SAndrea Righi 2742297c5d92SAndrea Righi static int proc_tgid_io_accounting(struct task_struct *task, char *buffer) 2743297c5d92SAndrea Righi { 2744297c5d92SAndrea Righi return do_io_accounting(task, buffer, 1); 2745297c5d92SAndrea Righi } 2746297c5d92SAndrea Righi #endif /* CONFIG_TASK_IO_ACCOUNTING */ 2747aba76fdbSAndrew Morton 274847830723SKees Cook static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns, 274947830723SKees Cook struct pid *pid, struct task_struct *task) 275047830723SKees Cook { 275147830723SKees Cook seq_printf(m, "%08x\n", task->personality); 275247830723SKees Cook return 0; 275347830723SKees Cook } 275447830723SKees Cook 2755801199ceSEric W. Biederman /* 275628a6d671SEric W. Biederman * Thread groups 275728a6d671SEric W. Biederman */ 275800977a59SArjan van de Ven static const struct file_operations proc_task_operations; 2759c5ef1c42SArjan van de Ven static const struct inode_operations proc_task_inode_operations; 276020cdc894SEric W. Biederman 2761c5141e6dSEric Dumazet static const struct pid_entry tgid_base_stuff[] = { 2762631f9c18SAlexey Dobriyan DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations), 2763631f9c18SAlexey Dobriyan DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations), 2764631f9c18SAlexey Dobriyan DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations), 2765b2211a36SAndrew Morton #ifdef CONFIG_NET 2766631f9c18SAlexey Dobriyan DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations), 2767b2211a36SAndrew Morton #endif 2768631f9c18SAlexey Dobriyan REG("environ", S_IRUSR, proc_environ_operations), 2769631f9c18SAlexey Dobriyan INF("auxv", S_IRUSR, proc_pid_auxv), 2770631f9c18SAlexey Dobriyan ONE("status", S_IRUGO, proc_pid_status), 2771631f9c18SAlexey Dobriyan ONE("personality", S_IRUSR, proc_pid_personality), 27723036e7b4SJiri Olsa INF("limits", S_IRUGO, proc_pid_limits), 277343ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 2774631f9c18SAlexey Dobriyan REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations), 277543ae34cbSIngo Molnar #endif 27765091faa4SMike Galbraith #ifdef CONFIG_SCHED_AUTOGROUP 27775091faa4SMike Galbraith REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations), 27785091faa4SMike Galbraith #endif 27794614a696Sjohn stultz REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations), 2780ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK 2781631f9c18SAlexey Dobriyan INF("syscall", S_IRUSR, proc_pid_syscall), 2782ebcb6734SRoland McGrath #endif 2783631f9c18SAlexey Dobriyan INF("cmdline", S_IRUGO, proc_pid_cmdline), 2784631f9c18SAlexey Dobriyan ONE("stat", S_IRUGO, proc_tgid_stat), 2785631f9c18SAlexey Dobriyan ONE("statm", S_IRUGO, proc_pid_statm), 2786631f9c18SAlexey Dobriyan REG("maps", S_IRUGO, proc_maps_operations), 278728a6d671SEric W. Biederman #ifdef CONFIG_NUMA 2788631f9c18SAlexey Dobriyan REG("numa_maps", S_IRUGO, proc_numa_maps_operations), 278928a6d671SEric W. Biederman #endif 2790631f9c18SAlexey Dobriyan REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations), 2791631f9c18SAlexey Dobriyan LNK("cwd", proc_cwd_link), 2792631f9c18SAlexey Dobriyan LNK("root", proc_root_link), 2793631f9c18SAlexey Dobriyan LNK("exe", proc_exe_link), 2794631f9c18SAlexey Dobriyan REG("mounts", S_IRUGO, proc_mounts_operations), 2795631f9c18SAlexey Dobriyan REG("mountinfo", S_IRUGO, proc_mountinfo_operations), 2796631f9c18SAlexey Dobriyan REG("mountstats", S_IRUSR, proc_mountstats_operations), 27971e883281SMatt Mackall #ifdef CONFIG_PROC_PAGE_MONITOR 2798631f9c18SAlexey Dobriyan REG("clear_refs", S_IWUSR, proc_clear_refs_operations), 2799631f9c18SAlexey Dobriyan REG("smaps", S_IRUGO, proc_smaps_operations), 2800ca6b0bf0SAl Viro REG("pagemap", S_IRUGO, proc_pagemap_operations), 280128a6d671SEric W. Biederman #endif 280228a6d671SEric W. Biederman #ifdef CONFIG_SECURITY 2803631f9c18SAlexey Dobriyan DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations), 280428a6d671SEric W. Biederman #endif 280528a6d671SEric W. Biederman #ifdef CONFIG_KALLSYMS 2806631f9c18SAlexey Dobriyan INF("wchan", S_IRUGO, proc_pid_wchan), 280728a6d671SEric W. Biederman #endif 28082ec220e2SKen Chen #ifdef CONFIG_STACKTRACE 28092ec220e2SKen Chen ONE("stack", S_IRUSR, proc_pid_stack), 281028a6d671SEric W. Biederman #endif 281128a6d671SEric W. Biederman #ifdef CONFIG_SCHEDSTATS 2812631f9c18SAlexey Dobriyan INF("schedstat", S_IRUGO, proc_pid_schedstat), 281328a6d671SEric W. Biederman #endif 28149745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP 2815631f9c18SAlexey Dobriyan REG("latency", S_IRUGO, proc_lstats_operations), 28169745512cSArjan van de Ven #endif 28178793d854SPaul Menage #ifdef CONFIG_PROC_PID_CPUSET 2818631f9c18SAlexey Dobriyan REG("cpuset", S_IRUGO, proc_cpuset_operations), 281928a6d671SEric W. Biederman #endif 2820a424316cSPaul Menage #ifdef CONFIG_CGROUPS 2821631f9c18SAlexey Dobriyan REG("cgroup", S_IRUGO, proc_cgroup_operations), 2822a424316cSPaul Menage #endif 2823631f9c18SAlexey Dobriyan INF("oom_score", S_IRUGO, proc_oom_score), 2824631f9c18SAlexey Dobriyan REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations), 2825a63d83f4SDavid Rientjes REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations), 282628a6d671SEric W. Biederman #ifdef CONFIG_AUDITSYSCALL 2827631f9c18SAlexey Dobriyan REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations), 2828631f9c18SAlexey Dobriyan REG("sessionid", S_IRUGO, proc_sessionid_operations), 282928a6d671SEric W. Biederman #endif 2830f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION 2831631f9c18SAlexey Dobriyan REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), 2832f4f154fdSAkinobu Mita #endif 2833698ba7b5SChristoph Hellwig #ifdef CONFIG_ELF_CORE 2834631f9c18SAlexey Dobriyan REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations), 28353cb4a0bbSKawai, Hidehiro #endif 2836aba76fdbSAndrew Morton #ifdef CONFIG_TASK_IO_ACCOUNTING 2837631f9c18SAlexey Dobriyan INF("io", S_IRUGO, proc_tgid_io_accounting), 2838aba76fdbSAndrew Morton #endif 283928a6d671SEric W. Biederman }; 284028a6d671SEric W. Biederman 284128a6d671SEric W. Biederman static int proc_tgid_base_readdir(struct file * filp, 284228a6d671SEric W. Biederman void * dirent, filldir_t filldir) 284328a6d671SEric W. Biederman { 284428a6d671SEric W. Biederman return proc_pident_readdir(filp,dirent,filldir, 284528a6d671SEric W. Biederman tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff)); 284628a6d671SEric W. Biederman } 284728a6d671SEric W. Biederman 284800977a59SArjan van de Ven static const struct file_operations proc_tgid_base_operations = { 284928a6d671SEric W. Biederman .read = generic_read_dir, 285028a6d671SEric W. Biederman .readdir = proc_tgid_base_readdir, 28516038f373SArnd Bergmann .llseek = default_llseek, 285228a6d671SEric W. Biederman }; 285328a6d671SEric W. Biederman 285428a6d671SEric W. Biederman static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){ 28557bcd6b0eSEric W. Biederman return proc_pident_lookup(dir, dentry, 28567bcd6b0eSEric W. Biederman tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff)); 285728a6d671SEric W. Biederman } 285828a6d671SEric W. Biederman 2859c5ef1c42SArjan van de Ven static const struct inode_operations proc_tgid_base_inode_operations = { 286028a6d671SEric W. Biederman .lookup = proc_tgid_base_lookup, 286128a6d671SEric W. Biederman .getattr = pid_getattr, 286228a6d671SEric W. Biederman .setattr = proc_setattr, 286328a6d671SEric W. Biederman }; 286428a6d671SEric W. Biederman 286560347f67SPavel Emelyanov static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid) 28661da177e4SLinus Torvalds { 286748e6484dSEric W. Biederman struct dentry *dentry, *leader, *dir; 28688578cea7SEric W. Biederman char buf[PROC_NUMBUF]; 286948e6484dSEric W. Biederman struct qstr name; 28701da177e4SLinus Torvalds 287148e6484dSEric W. Biederman name.name = buf; 287260347f67SPavel Emelyanov name.len = snprintf(buf, sizeof(buf), "%d", pid); 287360347f67SPavel Emelyanov dentry = d_hash_and_lookup(mnt->mnt_root, &name); 287448e6484dSEric W. Biederman if (dentry) { 287548e6484dSEric W. Biederman shrink_dcache_parent(dentry); 287648e6484dSEric W. Biederman d_drop(dentry); 287748e6484dSEric W. Biederman dput(dentry); 28781da177e4SLinus Torvalds } 28791da177e4SLinus Torvalds 288048e6484dSEric W. Biederman name.name = buf; 288160347f67SPavel Emelyanov name.len = snprintf(buf, sizeof(buf), "%d", tgid); 288260347f67SPavel Emelyanov leader = d_hash_and_lookup(mnt->mnt_root, &name); 288348e6484dSEric W. Biederman if (!leader) 288448e6484dSEric W. Biederman goto out; 288548e6484dSEric W. Biederman 288648e6484dSEric W. Biederman name.name = "task"; 288748e6484dSEric W. Biederman name.len = strlen(name.name); 288848e6484dSEric W. Biederman dir = d_hash_and_lookup(leader, &name); 288948e6484dSEric W. Biederman if (!dir) 289048e6484dSEric W. Biederman goto out_put_leader; 289148e6484dSEric W. Biederman 289248e6484dSEric W. Biederman name.name = buf; 289360347f67SPavel Emelyanov name.len = snprintf(buf, sizeof(buf), "%d", pid); 289448e6484dSEric W. Biederman dentry = d_hash_and_lookup(dir, &name); 289548e6484dSEric W. Biederman if (dentry) { 289648e6484dSEric W. Biederman shrink_dcache_parent(dentry); 289748e6484dSEric W. Biederman d_drop(dentry); 289848e6484dSEric W. Biederman dput(dentry); 28991da177e4SLinus Torvalds } 290048e6484dSEric W. Biederman 290148e6484dSEric W. Biederman dput(dir); 290248e6484dSEric W. Biederman out_put_leader: 290348e6484dSEric W. Biederman dput(leader); 290448e6484dSEric W. Biederman out: 290548e6484dSEric W. Biederman return; 29061da177e4SLinus Torvalds } 29071da177e4SLinus Torvalds 29080895e91dSRandy Dunlap /** 29090895e91dSRandy Dunlap * proc_flush_task - Remove dcache entries for @task from the /proc dcache. 29100895e91dSRandy Dunlap * @task: task that should be flushed. 29110895e91dSRandy Dunlap * 29120895e91dSRandy Dunlap * When flushing dentries from proc, one needs to flush them from global 291360347f67SPavel Emelyanov * proc (proc_mnt) and from all the namespaces' procs this task was seen 29140895e91dSRandy Dunlap * in. This call is supposed to do all of this job. 29150895e91dSRandy Dunlap * 29160895e91dSRandy Dunlap * Looks in the dcache for 29170895e91dSRandy Dunlap * /proc/@pid 29180895e91dSRandy Dunlap * /proc/@tgid/task/@pid 29190895e91dSRandy Dunlap * if either directory is present flushes it and all of it'ts children 29200895e91dSRandy Dunlap * from the dcache. 29210895e91dSRandy Dunlap * 29220895e91dSRandy Dunlap * It is safe and reasonable to cache /proc entries for a task until 29230895e91dSRandy Dunlap * that task exits. After that they just clog up the dcache with 29240895e91dSRandy Dunlap * useless entries, possibly causing useful dcache entries to be 29250895e91dSRandy Dunlap * flushed instead. This routine is proved to flush those useless 29260895e91dSRandy Dunlap * dcache entries at process exit time. 29270895e91dSRandy Dunlap * 29280895e91dSRandy Dunlap * NOTE: This routine is just an optimization so it does not guarantee 29290895e91dSRandy Dunlap * that no dcache entries will exist at process exit time it 29300895e91dSRandy Dunlap * just makes it very unlikely that any will persist. 293160347f67SPavel Emelyanov */ 293260347f67SPavel Emelyanov 293360347f67SPavel Emelyanov void proc_flush_task(struct task_struct *task) 293460347f67SPavel Emelyanov { 29359fcc2d15SEric W. Biederman int i; 29369b4d1cbeSOleg Nesterov struct pid *pid, *tgid; 2937130f77ecSPavel Emelyanov struct upid *upid; 2938130f77ecSPavel Emelyanov 2939130f77ecSPavel Emelyanov pid = task_pid(task); 2940130f77ecSPavel Emelyanov tgid = task_tgid(task); 29419fcc2d15SEric W. Biederman 29429fcc2d15SEric W. Biederman for (i = 0; i <= pid->level; i++) { 2943130f77ecSPavel Emelyanov upid = &pid->numbers[i]; 2944130f77ecSPavel Emelyanov proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr, 29459b4d1cbeSOleg Nesterov tgid->numbers[i].nr); 2946130f77ecSPavel Emelyanov } 29476f4e6433SPavel Emelyanov 29486f4e6433SPavel Emelyanov upid = &pid->numbers[pid->level]; 29496f4e6433SPavel Emelyanov if (upid->nr == 1) 29506f4e6433SPavel Emelyanov pid_ns_release_proc(upid->ns); 295160347f67SPavel Emelyanov } 295260347f67SPavel Emelyanov 29539711ef99SAdrian Bunk static struct dentry *proc_pid_instantiate(struct inode *dir, 29549711ef99SAdrian Bunk struct dentry * dentry, 2955c5141e6dSEric Dumazet struct task_struct *task, const void *ptr) 2956444ceed8SEric W. Biederman { 2957444ceed8SEric W. Biederman struct dentry *error = ERR_PTR(-ENOENT); 2958444ceed8SEric W. Biederman struct inode *inode; 2959444ceed8SEric W. Biederman 296061a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 2961444ceed8SEric W. Biederman if (!inode) 2962444ceed8SEric W. Biederman goto out; 2963444ceed8SEric W. Biederman 2964444ceed8SEric W. Biederman inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO; 2965444ceed8SEric W. Biederman inode->i_op = &proc_tgid_base_inode_operations; 2966444ceed8SEric W. Biederman inode->i_fop = &proc_tgid_base_operations; 2967444ceed8SEric W. Biederman inode->i_flags|=S_IMMUTABLE; 2968aed54175SVegard Nossum 2969aed54175SVegard Nossum inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff, 2970aed54175SVegard Nossum ARRAY_SIZE(tgid_base_stuff)); 2971444ceed8SEric W. Biederman 2972fb045adbSNick Piggin d_set_d_op(dentry, &pid_dentry_operations); 2973444ceed8SEric W. Biederman 2974444ceed8SEric W. Biederman d_add(dentry, inode); 2975444ceed8SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 2976444ceed8SEric W. Biederman if (pid_revalidate(dentry, NULL)) 2977444ceed8SEric W. Biederman error = NULL; 2978444ceed8SEric W. Biederman out: 2979444ceed8SEric W. Biederman return error; 2980444ceed8SEric W. Biederman } 2981444ceed8SEric W. Biederman 29821da177e4SLinus Torvalds struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd) 29831da177e4SLinus Torvalds { 298473d36460SDan Carpenter struct dentry *result; 29851da177e4SLinus Torvalds struct task_struct *task; 29861da177e4SLinus Torvalds unsigned tgid; 2987b488893aSPavel Emelyanov struct pid_namespace *ns; 29881da177e4SLinus Torvalds 2989801199ceSEric W. Biederman result = proc_base_lookup(dir, dentry); 2990801199ceSEric W. Biederman if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT) 2991801199ceSEric W. Biederman goto out; 2992801199ceSEric W. Biederman 29931da177e4SLinus Torvalds tgid = name_to_int(dentry); 29941da177e4SLinus Torvalds if (tgid == ~0U) 29951da177e4SLinus Torvalds goto out; 29961da177e4SLinus Torvalds 2997b488893aSPavel Emelyanov ns = dentry->d_sb->s_fs_info; 2998de758734SEric W. Biederman rcu_read_lock(); 2999b488893aSPavel Emelyanov task = find_task_by_pid_ns(tgid, ns); 30001da177e4SLinus Torvalds if (task) 30011da177e4SLinus Torvalds get_task_struct(task); 3002de758734SEric W. Biederman rcu_read_unlock(); 30031da177e4SLinus Torvalds if (!task) 30041da177e4SLinus Torvalds goto out; 30051da177e4SLinus Torvalds 3006444ceed8SEric W. Biederman result = proc_pid_instantiate(dir, dentry, task, NULL); 300748e6484dSEric W. Biederman put_task_struct(task); 30081da177e4SLinus Torvalds out: 3009cd6a3ce9SEric W. Biederman return result; 30101da177e4SLinus Torvalds } 30111da177e4SLinus Torvalds 30121da177e4SLinus Torvalds /* 30130804ef4bSEric W. Biederman * Find the first task with tgid >= tgid 30140bc58a91SEric W. Biederman * 30151da177e4SLinus Torvalds */ 301619fd4bb2SEric W. Biederman struct tgid_iter { 301719fd4bb2SEric W. Biederman unsigned int tgid; 30180804ef4bSEric W. Biederman struct task_struct *task; 301919fd4bb2SEric W. Biederman }; 302019fd4bb2SEric W. Biederman static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter) 302119fd4bb2SEric W. Biederman { 30220804ef4bSEric W. Biederman struct pid *pid; 30231da177e4SLinus Torvalds 302419fd4bb2SEric W. Biederman if (iter.task) 302519fd4bb2SEric W. Biederman put_task_struct(iter.task); 30260804ef4bSEric W. Biederman rcu_read_lock(); 30270804ef4bSEric W. Biederman retry: 302819fd4bb2SEric W. Biederman iter.task = NULL; 302919fd4bb2SEric W. Biederman pid = find_ge_pid(iter.tgid, ns); 30300804ef4bSEric W. Biederman if (pid) { 303119fd4bb2SEric W. Biederman iter.tgid = pid_nr_ns(pid, ns); 303219fd4bb2SEric W. Biederman iter.task = pid_task(pid, PIDTYPE_PID); 30330804ef4bSEric W. Biederman /* What we to know is if the pid we have find is the 30340804ef4bSEric W. Biederman * pid of a thread_group_leader. Testing for task 30350804ef4bSEric W. Biederman * being a thread_group_leader is the obvious thing 30360804ef4bSEric W. Biederman * todo but there is a window when it fails, due to 30370804ef4bSEric W. Biederman * the pid transfer logic in de_thread. 30380804ef4bSEric W. Biederman * 30390804ef4bSEric W. Biederman * So we perform the straight forward test of seeing 30400804ef4bSEric W. Biederman * if the pid we have found is the pid of a thread 30410804ef4bSEric W. Biederman * group leader, and don't worry if the task we have 30420804ef4bSEric W. Biederman * found doesn't happen to be a thread group leader. 30430804ef4bSEric W. Biederman * As we don't care in the case of readdir. 30440bc58a91SEric W. Biederman */ 304519fd4bb2SEric W. Biederman if (!iter.task || !has_group_leader_pid(iter.task)) { 304619fd4bb2SEric W. Biederman iter.tgid += 1; 30470804ef4bSEric W. Biederman goto retry; 304819fd4bb2SEric W. Biederman } 304919fd4bb2SEric W. Biederman get_task_struct(iter.task); 30501da177e4SLinus Torvalds } 3051454cc105SEric W. Biederman rcu_read_unlock(); 305219fd4bb2SEric W. Biederman return iter; 30531da177e4SLinus Torvalds } 30541da177e4SLinus Torvalds 30557bcd6b0eSEric W. Biederman #define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff)) 30561da177e4SLinus Torvalds 305761a28784SEric W. Biederman static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir, 305819fd4bb2SEric W. Biederman struct tgid_iter iter) 305961a28784SEric W. Biederman { 306061a28784SEric W. Biederman char name[PROC_NUMBUF]; 306119fd4bb2SEric W. Biederman int len = snprintf(name, sizeof(name), "%d", iter.tgid); 306261a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, name, len, 306319fd4bb2SEric W. Biederman proc_pid_instantiate, iter.task, NULL); 306461a28784SEric W. Biederman } 306561a28784SEric W. Biederman 30661da177e4SLinus Torvalds /* for the /proc/ directory itself, after non-process stuff has been done */ 30671da177e4SLinus Torvalds int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir) 30681da177e4SLinus Torvalds { 30691da177e4SLinus Torvalds unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY; 30702fddfeefSJosef "Jeff" Sipek struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode); 307119fd4bb2SEric W. Biederman struct tgid_iter iter; 3072b488893aSPavel Emelyanov struct pid_namespace *ns; 30731da177e4SLinus Torvalds 307461a28784SEric W. Biederman if (!reaper) 307561a28784SEric W. Biederman goto out_no_task; 307661a28784SEric W. Biederman 30777bcd6b0eSEric W. Biederman for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) { 3078c5141e6dSEric Dumazet const struct pid_entry *p = &proc_base_stuff[nr]; 307961a28784SEric W. Biederman if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0) 3080801199ceSEric W. Biederman goto out; 30811da177e4SLinus Torvalds } 30821da177e4SLinus Torvalds 3083b488893aSPavel Emelyanov ns = filp->f_dentry->d_sb->s_fs_info; 308419fd4bb2SEric W. Biederman iter.task = NULL; 308519fd4bb2SEric W. Biederman iter.tgid = filp->f_pos - TGID_OFFSET; 308619fd4bb2SEric W. Biederman for (iter = next_tgid(ns, iter); 308719fd4bb2SEric W. Biederman iter.task; 308819fd4bb2SEric W. Biederman iter.tgid += 1, iter = next_tgid(ns, iter)) { 308919fd4bb2SEric W. Biederman filp->f_pos = iter.tgid + TGID_OFFSET; 309019fd4bb2SEric W. Biederman if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) { 309119fd4bb2SEric W. Biederman put_task_struct(iter.task); 30920804ef4bSEric W. Biederman goto out; 30931da177e4SLinus Torvalds } 30941da177e4SLinus Torvalds } 30950804ef4bSEric W. Biederman filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET; 30960804ef4bSEric W. Biederman out: 309761a28784SEric W. Biederman put_task_struct(reaper); 309861a28784SEric W. Biederman out_no_task: 30991da177e4SLinus Torvalds return 0; 31001da177e4SLinus Torvalds } 31011da177e4SLinus Torvalds 31020bc58a91SEric W. Biederman /* 310328a6d671SEric W. Biederman * Tasks 310428a6d671SEric W. Biederman */ 3105c5141e6dSEric Dumazet static const struct pid_entry tid_base_stuff[] = { 3106631f9c18SAlexey Dobriyan DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations), 31073835541dSJerome Marchand DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations), 3108631f9c18SAlexey Dobriyan REG("environ", S_IRUSR, proc_environ_operations), 3109631f9c18SAlexey Dobriyan INF("auxv", S_IRUSR, proc_pid_auxv), 3110631f9c18SAlexey Dobriyan ONE("status", S_IRUGO, proc_pid_status), 3111631f9c18SAlexey Dobriyan ONE("personality", S_IRUSR, proc_pid_personality), 31123036e7b4SJiri Olsa INF("limits", S_IRUGO, proc_pid_limits), 311343ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 3114631f9c18SAlexey Dobriyan REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations), 311543ae34cbSIngo Molnar #endif 31164614a696Sjohn stultz REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations), 3117ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK 3118631f9c18SAlexey Dobriyan INF("syscall", S_IRUSR, proc_pid_syscall), 3119ebcb6734SRoland McGrath #endif 3120631f9c18SAlexey Dobriyan INF("cmdline", S_IRUGO, proc_pid_cmdline), 3121631f9c18SAlexey Dobriyan ONE("stat", S_IRUGO, proc_tid_stat), 3122631f9c18SAlexey Dobriyan ONE("statm", S_IRUGO, proc_pid_statm), 3123631f9c18SAlexey Dobriyan REG("maps", S_IRUGO, proc_maps_operations), 312428a6d671SEric W. Biederman #ifdef CONFIG_NUMA 3125631f9c18SAlexey Dobriyan REG("numa_maps", S_IRUGO, proc_numa_maps_operations), 312628a6d671SEric W. Biederman #endif 3127631f9c18SAlexey Dobriyan REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations), 3128631f9c18SAlexey Dobriyan LNK("cwd", proc_cwd_link), 3129631f9c18SAlexey Dobriyan LNK("root", proc_root_link), 3130631f9c18SAlexey Dobriyan LNK("exe", proc_exe_link), 3131631f9c18SAlexey Dobriyan REG("mounts", S_IRUGO, proc_mounts_operations), 3132631f9c18SAlexey Dobriyan REG("mountinfo", S_IRUGO, proc_mountinfo_operations), 31331e883281SMatt Mackall #ifdef CONFIG_PROC_PAGE_MONITOR 3134631f9c18SAlexey Dobriyan REG("clear_refs", S_IWUSR, proc_clear_refs_operations), 3135631f9c18SAlexey Dobriyan REG("smaps", S_IRUGO, proc_smaps_operations), 3136ca6b0bf0SAl Viro REG("pagemap", S_IRUGO, proc_pagemap_operations), 313728a6d671SEric W. Biederman #endif 313828a6d671SEric W. Biederman #ifdef CONFIG_SECURITY 3139631f9c18SAlexey Dobriyan DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations), 314028a6d671SEric W. Biederman #endif 314128a6d671SEric W. Biederman #ifdef CONFIG_KALLSYMS 3142631f9c18SAlexey Dobriyan INF("wchan", S_IRUGO, proc_pid_wchan), 314328a6d671SEric W. Biederman #endif 31442ec220e2SKen Chen #ifdef CONFIG_STACKTRACE 31452ec220e2SKen Chen ONE("stack", S_IRUSR, proc_pid_stack), 314628a6d671SEric W. Biederman #endif 314728a6d671SEric W. Biederman #ifdef CONFIG_SCHEDSTATS 3148631f9c18SAlexey Dobriyan INF("schedstat", S_IRUGO, proc_pid_schedstat), 314928a6d671SEric W. Biederman #endif 31509745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP 3151631f9c18SAlexey Dobriyan REG("latency", S_IRUGO, proc_lstats_operations), 31529745512cSArjan van de Ven #endif 31538793d854SPaul Menage #ifdef CONFIG_PROC_PID_CPUSET 3154631f9c18SAlexey Dobriyan REG("cpuset", S_IRUGO, proc_cpuset_operations), 315528a6d671SEric W. Biederman #endif 3156a424316cSPaul Menage #ifdef CONFIG_CGROUPS 3157631f9c18SAlexey Dobriyan REG("cgroup", S_IRUGO, proc_cgroup_operations), 3158a424316cSPaul Menage #endif 3159631f9c18SAlexey Dobriyan INF("oom_score", S_IRUGO, proc_oom_score), 3160631f9c18SAlexey Dobriyan REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations), 3161a63d83f4SDavid Rientjes REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations), 316228a6d671SEric W. Biederman #ifdef CONFIG_AUDITSYSCALL 3163631f9c18SAlexey Dobriyan REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations), 316426ec3c64SAl Viro REG("sessionid", S_IRUGO, proc_sessionid_operations), 316528a6d671SEric W. Biederman #endif 3166f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION 3167631f9c18SAlexey Dobriyan REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), 3168f4f154fdSAkinobu Mita #endif 3169297c5d92SAndrea Righi #ifdef CONFIG_TASK_IO_ACCOUNTING 3170631f9c18SAlexey Dobriyan INF("io", S_IRUGO, proc_tid_io_accounting), 3171297c5d92SAndrea Righi #endif 317228a6d671SEric W. Biederman }; 317328a6d671SEric W. Biederman 317428a6d671SEric W. Biederman static int proc_tid_base_readdir(struct file * filp, 317528a6d671SEric W. Biederman void * dirent, filldir_t filldir) 317628a6d671SEric W. Biederman { 317728a6d671SEric W. Biederman return proc_pident_readdir(filp,dirent,filldir, 317828a6d671SEric W. Biederman tid_base_stuff,ARRAY_SIZE(tid_base_stuff)); 317928a6d671SEric W. Biederman } 318028a6d671SEric W. Biederman 318128a6d671SEric W. Biederman static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){ 31827bcd6b0eSEric W. Biederman return proc_pident_lookup(dir, dentry, 31837bcd6b0eSEric W. Biederman tid_base_stuff, ARRAY_SIZE(tid_base_stuff)); 318428a6d671SEric W. Biederman } 318528a6d671SEric W. Biederman 318600977a59SArjan van de Ven static const struct file_operations proc_tid_base_operations = { 318728a6d671SEric W. Biederman .read = generic_read_dir, 318828a6d671SEric W. Biederman .readdir = proc_tid_base_readdir, 31896038f373SArnd Bergmann .llseek = default_llseek, 319028a6d671SEric W. Biederman }; 319128a6d671SEric W. Biederman 3192c5ef1c42SArjan van de Ven static const struct inode_operations proc_tid_base_inode_operations = { 319328a6d671SEric W. Biederman .lookup = proc_tid_base_lookup, 319428a6d671SEric W. Biederman .getattr = pid_getattr, 319528a6d671SEric W. Biederman .setattr = proc_setattr, 319628a6d671SEric W. Biederman }; 319728a6d671SEric W. Biederman 3198444ceed8SEric W. Biederman static struct dentry *proc_task_instantiate(struct inode *dir, 3199c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 3200444ceed8SEric W. Biederman { 3201444ceed8SEric W. Biederman struct dentry *error = ERR_PTR(-ENOENT); 3202444ceed8SEric W. Biederman struct inode *inode; 320361a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 3204444ceed8SEric W. Biederman 3205444ceed8SEric W. Biederman if (!inode) 3206444ceed8SEric W. Biederman goto out; 3207444ceed8SEric W. Biederman inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO; 3208444ceed8SEric W. Biederman inode->i_op = &proc_tid_base_inode_operations; 3209444ceed8SEric W. Biederman inode->i_fop = &proc_tid_base_operations; 3210444ceed8SEric W. Biederman inode->i_flags|=S_IMMUTABLE; 3211aed54175SVegard Nossum 3212aed54175SVegard Nossum inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff, 3213aed54175SVegard Nossum ARRAY_SIZE(tid_base_stuff)); 3214444ceed8SEric W. Biederman 3215fb045adbSNick Piggin d_set_d_op(dentry, &pid_dentry_operations); 3216444ceed8SEric W. Biederman 3217444ceed8SEric W. Biederman d_add(dentry, inode); 3218444ceed8SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 3219444ceed8SEric W. Biederman if (pid_revalidate(dentry, NULL)) 3220444ceed8SEric W. Biederman error = NULL; 3221444ceed8SEric W. Biederman out: 3222444ceed8SEric W. Biederman return error; 3223444ceed8SEric W. Biederman } 3224444ceed8SEric W. Biederman 322528a6d671SEric W. Biederman static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd) 322628a6d671SEric W. Biederman { 322728a6d671SEric W. Biederman struct dentry *result = ERR_PTR(-ENOENT); 322828a6d671SEric W. Biederman struct task_struct *task; 322928a6d671SEric W. Biederman struct task_struct *leader = get_proc_task(dir); 323028a6d671SEric W. Biederman unsigned tid; 3231b488893aSPavel Emelyanov struct pid_namespace *ns; 323228a6d671SEric W. Biederman 323328a6d671SEric W. Biederman if (!leader) 323428a6d671SEric W. Biederman goto out_no_task; 323528a6d671SEric W. Biederman 323628a6d671SEric W. Biederman tid = name_to_int(dentry); 323728a6d671SEric W. Biederman if (tid == ~0U) 323828a6d671SEric W. Biederman goto out; 323928a6d671SEric W. Biederman 3240b488893aSPavel Emelyanov ns = dentry->d_sb->s_fs_info; 324128a6d671SEric W. Biederman rcu_read_lock(); 3242b488893aSPavel Emelyanov task = find_task_by_pid_ns(tid, ns); 324328a6d671SEric W. Biederman if (task) 324428a6d671SEric W. Biederman get_task_struct(task); 324528a6d671SEric W. Biederman rcu_read_unlock(); 324628a6d671SEric W. Biederman if (!task) 324728a6d671SEric W. Biederman goto out; 3248bac0abd6SPavel Emelyanov if (!same_thread_group(leader, task)) 324928a6d671SEric W. Biederman goto out_drop_task; 325028a6d671SEric W. Biederman 3251444ceed8SEric W. Biederman result = proc_task_instantiate(dir, dentry, task, NULL); 325228a6d671SEric W. Biederman out_drop_task: 325328a6d671SEric W. Biederman put_task_struct(task); 325428a6d671SEric W. Biederman out: 325528a6d671SEric W. Biederman put_task_struct(leader); 325628a6d671SEric W. Biederman out_no_task: 325728a6d671SEric W. Biederman return result; 325828a6d671SEric W. Biederman } 325928a6d671SEric W. Biederman 326028a6d671SEric W. Biederman /* 32610bc58a91SEric W. Biederman * Find the first tid of a thread group to return to user space. 32620bc58a91SEric W. Biederman * 32630bc58a91SEric W. Biederman * Usually this is just the thread group leader, but if the users 32640bc58a91SEric W. Biederman * buffer was too small or there was a seek into the middle of the 32650bc58a91SEric W. Biederman * directory we have more work todo. 32660bc58a91SEric W. Biederman * 32670bc58a91SEric W. Biederman * In the case of a short read we start with find_task_by_pid. 32680bc58a91SEric W. Biederman * 32690bc58a91SEric W. Biederman * In the case of a seek we start with the leader and walk nr 32700bc58a91SEric W. Biederman * threads past it. 32710bc58a91SEric W. Biederman */ 3272cc288738SEric W. Biederman static struct task_struct *first_tid(struct task_struct *leader, 3273b488893aSPavel Emelyanov int tid, int nr, struct pid_namespace *ns) 32740bc58a91SEric W. Biederman { 3275a872ff0cSOleg Nesterov struct task_struct *pos; 32760bc58a91SEric W. Biederman 3277cc288738SEric W. Biederman rcu_read_lock(); 32780bc58a91SEric W. Biederman /* Attempt to start with the pid of a thread */ 32790bc58a91SEric W. Biederman if (tid && (nr > 0)) { 3280b488893aSPavel Emelyanov pos = find_task_by_pid_ns(tid, ns); 3281a872ff0cSOleg Nesterov if (pos && (pos->group_leader == leader)) 3282a872ff0cSOleg Nesterov goto found; 32830bc58a91SEric W. Biederman } 32840bc58a91SEric W. Biederman 32850bc58a91SEric W. Biederman /* If nr exceeds the number of threads there is nothing todo */ 32860bc58a91SEric W. Biederman pos = NULL; 3287a872ff0cSOleg Nesterov if (nr && nr >= get_nr_threads(leader)) 3288a872ff0cSOleg Nesterov goto out; 3289a872ff0cSOleg Nesterov 3290a872ff0cSOleg Nesterov /* If we haven't found our starting place yet start 3291a872ff0cSOleg Nesterov * with the leader and walk nr threads forward. 3292a872ff0cSOleg Nesterov */ 3293a872ff0cSOleg Nesterov for (pos = leader; nr > 0; --nr) { 3294a872ff0cSOleg Nesterov pos = next_thread(pos); 3295a872ff0cSOleg Nesterov if (pos == leader) { 3296a872ff0cSOleg Nesterov pos = NULL; 3297a872ff0cSOleg Nesterov goto out; 3298a872ff0cSOleg Nesterov } 3299a872ff0cSOleg Nesterov } 3300a872ff0cSOleg Nesterov found: 3301a872ff0cSOleg Nesterov get_task_struct(pos); 3302a872ff0cSOleg Nesterov out: 3303cc288738SEric W. Biederman rcu_read_unlock(); 33040bc58a91SEric W. Biederman return pos; 33050bc58a91SEric W. Biederman } 33060bc58a91SEric W. Biederman 33070bc58a91SEric W. Biederman /* 33080bc58a91SEric W. Biederman * Find the next thread in the thread list. 33090bc58a91SEric W. Biederman * Return NULL if there is an error or no next thread. 33100bc58a91SEric W. Biederman * 33110bc58a91SEric W. Biederman * The reference to the input task_struct is released. 33120bc58a91SEric W. Biederman */ 33130bc58a91SEric W. Biederman static struct task_struct *next_tid(struct task_struct *start) 33140bc58a91SEric W. Biederman { 3315c1df7fb8SOleg Nesterov struct task_struct *pos = NULL; 3316cc288738SEric W. Biederman rcu_read_lock(); 3317c1df7fb8SOleg Nesterov if (pid_alive(start)) { 33180bc58a91SEric W. Biederman pos = next_thread(start); 3319c1df7fb8SOleg Nesterov if (thread_group_leader(pos)) 33200bc58a91SEric W. Biederman pos = NULL; 3321c1df7fb8SOleg Nesterov else 3322c1df7fb8SOleg Nesterov get_task_struct(pos); 3323c1df7fb8SOleg Nesterov } 3324cc288738SEric W. Biederman rcu_read_unlock(); 33250bc58a91SEric W. Biederman put_task_struct(start); 33260bc58a91SEric W. Biederman return pos; 33270bc58a91SEric W. Biederman } 33280bc58a91SEric W. Biederman 332961a28784SEric W. Biederman static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir, 333061a28784SEric W. Biederman struct task_struct *task, int tid) 333161a28784SEric W. Biederman { 333261a28784SEric W. Biederman char name[PROC_NUMBUF]; 333361a28784SEric W. Biederman int len = snprintf(name, sizeof(name), "%d", tid); 333461a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, name, len, 333561a28784SEric W. Biederman proc_task_instantiate, task, NULL); 333661a28784SEric W. Biederman } 333761a28784SEric W. Biederman 33381da177e4SLinus Torvalds /* for the /proc/TGID/task/ directories */ 33391da177e4SLinus Torvalds static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir) 33401da177e4SLinus Torvalds { 33412fddfeefSJosef "Jeff" Sipek struct dentry *dentry = filp->f_path.dentry; 33421da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 33437d895244SGuillaume Chazarain struct task_struct *leader = NULL; 33440bc58a91SEric W. Biederman struct task_struct *task; 33451da177e4SLinus Torvalds int retval = -ENOENT; 33461da177e4SLinus Torvalds ino_t ino; 33470bc58a91SEric W. Biederman int tid; 3348b488893aSPavel Emelyanov struct pid_namespace *ns; 33491da177e4SLinus Torvalds 33507d895244SGuillaume Chazarain task = get_proc_task(inode); 33517d895244SGuillaume Chazarain if (!task) 33527d895244SGuillaume Chazarain goto out_no_task; 33537d895244SGuillaume Chazarain rcu_read_lock(); 33547d895244SGuillaume Chazarain if (pid_alive(task)) { 33557d895244SGuillaume Chazarain leader = task->group_leader; 33567d895244SGuillaume Chazarain get_task_struct(leader); 33577d895244SGuillaume Chazarain } 33587d895244SGuillaume Chazarain rcu_read_unlock(); 33597d895244SGuillaume Chazarain put_task_struct(task); 336099f89551SEric W. Biederman if (!leader) 336199f89551SEric W. Biederman goto out_no_task; 33621da177e4SLinus Torvalds retval = 0; 33631da177e4SLinus Torvalds 3364ee568b25SLinus Torvalds switch ((unsigned long)filp->f_pos) { 33651da177e4SLinus Torvalds case 0: 33661da177e4SLinus Torvalds ino = inode->i_ino; 3367ee6f779bSZhang Le if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0) 33681da177e4SLinus Torvalds goto out; 3369ee6f779bSZhang Le filp->f_pos++; 33701da177e4SLinus Torvalds /* fall through */ 33711da177e4SLinus Torvalds case 1: 33721da177e4SLinus Torvalds ino = parent_ino(dentry); 3373ee6f779bSZhang Le if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0) 33741da177e4SLinus Torvalds goto out; 3375ee6f779bSZhang Le filp->f_pos++; 33761da177e4SLinus Torvalds /* fall through */ 33771da177e4SLinus Torvalds } 33781da177e4SLinus Torvalds 33790bc58a91SEric W. Biederman /* f_version caches the tgid value that the last readdir call couldn't 33800bc58a91SEric W. Biederman * return. lseek aka telldir automagically resets f_version to 0. 33810bc58a91SEric W. Biederman */ 3382b488893aSPavel Emelyanov ns = filp->f_dentry->d_sb->s_fs_info; 33832b47c361SMathieu Desnoyers tid = (int)filp->f_version; 33840bc58a91SEric W. Biederman filp->f_version = 0; 3385ee6f779bSZhang Le for (task = first_tid(leader, tid, filp->f_pos - 2, ns); 33860bc58a91SEric W. Biederman task; 3387ee6f779bSZhang Le task = next_tid(task), filp->f_pos++) { 3388b488893aSPavel Emelyanov tid = task_pid_nr_ns(task, ns); 338961a28784SEric W. Biederman if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) { 33900bc58a91SEric W. Biederman /* returning this tgid failed, save it as the first 33910bc58a91SEric W. Biederman * pid for the next readir call */ 33922b47c361SMathieu Desnoyers filp->f_version = (u64)tid; 33930bc58a91SEric W. Biederman put_task_struct(task); 33941da177e4SLinus Torvalds break; 33950bc58a91SEric W. Biederman } 33961da177e4SLinus Torvalds } 33971da177e4SLinus Torvalds out: 339899f89551SEric W. Biederman put_task_struct(leader); 339999f89551SEric W. Biederman out_no_task: 34001da177e4SLinus Torvalds return retval; 34011da177e4SLinus Torvalds } 34026e66b52bSEric W. Biederman 34036e66b52bSEric W. Biederman static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) 34046e66b52bSEric W. Biederman { 34056e66b52bSEric W. Biederman struct inode *inode = dentry->d_inode; 340699f89551SEric W. Biederman struct task_struct *p = get_proc_task(inode); 34076e66b52bSEric W. Biederman generic_fillattr(inode, stat); 34086e66b52bSEric W. Biederman 340999f89551SEric W. Biederman if (p) { 341099f89551SEric W. Biederman stat->nlink += get_nr_threads(p); 341199f89551SEric W. Biederman put_task_struct(p); 34126e66b52bSEric W. Biederman } 34136e66b52bSEric W. Biederman 34146e66b52bSEric W. Biederman return 0; 34156e66b52bSEric W. Biederman } 341628a6d671SEric W. Biederman 3417c5ef1c42SArjan van de Ven static const struct inode_operations proc_task_inode_operations = { 341828a6d671SEric W. Biederman .lookup = proc_task_lookup, 341928a6d671SEric W. Biederman .getattr = proc_task_getattr, 342028a6d671SEric W. Biederman .setattr = proc_setattr, 342128a6d671SEric W. Biederman }; 342228a6d671SEric W. Biederman 342300977a59SArjan van de Ven static const struct file_operations proc_task_operations = { 342428a6d671SEric W. Biederman .read = generic_read_dir, 342528a6d671SEric W. Biederman .readdir = proc_task_readdir, 34266038f373SArnd Bergmann .llseek = default_llseek, 342728a6d671SEric W. Biederman }; 3428