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; 22800f89d21SOleg Nesterov 2299b1bf12dSKOSAKI Motohiro if (mutex_lock_killable(&task->signal->cred_guard_mutex)) 230704b836cSOleg Nesterov return NULL; 231704b836cSOleg Nesterov 232704b836cSOleg Nesterov mm = get_task_mm(task); 233704b836cSOleg Nesterov if (mm && mm != current->mm && 234704b836cSOleg Nesterov !ptrace_may_access(task, PTRACE_MODE_READ)) { 235831830b5SAl Viro mmput(mm); 23600f89d21SOleg Nesterov mm = NULL; 237831830b5SAl Viro } 2389b1bf12dSKOSAKI Motohiro mutex_unlock(&task->signal->cred_guard_mutex); 239704b836cSOleg Nesterov 24013f0feafSOleg Nesterov return mm; 24113f0feafSOleg Nesterov } 242831830b5SAl Viro 2431da177e4SLinus Torvalds static int proc_pid_cmdline(struct task_struct *task, char * buffer) 2441da177e4SLinus Torvalds { 2451da177e4SLinus Torvalds int res = 0; 2461da177e4SLinus Torvalds unsigned int len; 2471da177e4SLinus Torvalds struct mm_struct *mm = get_task_mm(task); 2481da177e4SLinus Torvalds if (!mm) 2491da177e4SLinus Torvalds goto out; 2501da177e4SLinus Torvalds if (!mm->arg_end) 2511da177e4SLinus Torvalds goto out_mm; /* Shh! No looking before we're done */ 2521da177e4SLinus Torvalds 2531da177e4SLinus Torvalds len = mm->arg_end - mm->arg_start; 2541da177e4SLinus Torvalds 2551da177e4SLinus Torvalds if (len > PAGE_SIZE) 2561da177e4SLinus Torvalds len = PAGE_SIZE; 2571da177e4SLinus Torvalds 2581da177e4SLinus Torvalds res = access_process_vm(task, mm->arg_start, buffer, len, 0); 2591da177e4SLinus Torvalds 2601da177e4SLinus Torvalds // If the nul at the end of args has been overwritten, then 2611da177e4SLinus Torvalds // assume application is using setproctitle(3). 2621da177e4SLinus Torvalds if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) { 2631da177e4SLinus Torvalds len = strnlen(buffer, res); 2641da177e4SLinus Torvalds if (len < res) { 2651da177e4SLinus Torvalds res = len; 2661da177e4SLinus Torvalds } else { 2671da177e4SLinus Torvalds len = mm->env_end - mm->env_start; 2681da177e4SLinus Torvalds if (len > PAGE_SIZE - res) 2691da177e4SLinus Torvalds len = PAGE_SIZE - res; 2701da177e4SLinus Torvalds res += access_process_vm(task, mm->env_start, buffer+res, len, 0); 2711da177e4SLinus Torvalds res = strnlen(buffer, res); 2721da177e4SLinus Torvalds } 2731da177e4SLinus Torvalds } 2741da177e4SLinus Torvalds out_mm: 2751da177e4SLinus Torvalds mmput(mm); 2761da177e4SLinus Torvalds out: 2771da177e4SLinus Torvalds return res; 2781da177e4SLinus Torvalds } 2791da177e4SLinus Torvalds 2801da177e4SLinus Torvalds static int proc_pid_auxv(struct task_struct *task, char *buffer) 2811da177e4SLinus Torvalds { 2821da177e4SLinus Torvalds int res = 0; 2831da177e4SLinus Torvalds struct mm_struct *mm = get_task_mm(task); 2841da177e4SLinus Torvalds if (mm) { 2851da177e4SLinus Torvalds unsigned int nwords = 0; 286dfe6b7d9SHannes Eder do { 2871da177e4SLinus Torvalds nwords += 2; 288dfe6b7d9SHannes Eder } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */ 2891da177e4SLinus Torvalds res = nwords * sizeof(mm->saved_auxv[0]); 2901da177e4SLinus Torvalds if (res > PAGE_SIZE) 2911da177e4SLinus Torvalds res = PAGE_SIZE; 2921da177e4SLinus Torvalds memcpy(buffer, mm->saved_auxv, res); 2931da177e4SLinus Torvalds mmput(mm); 2941da177e4SLinus Torvalds } 2951da177e4SLinus Torvalds return res; 2961da177e4SLinus Torvalds } 2971da177e4SLinus Torvalds 2981da177e4SLinus Torvalds 2991da177e4SLinus Torvalds #ifdef CONFIG_KALLSYMS 3001da177e4SLinus Torvalds /* 3011da177e4SLinus Torvalds * Provides a wchan file via kallsyms in a proper one-value-per-file format. 3021da177e4SLinus Torvalds * Returns the resolved symbol. If that fails, simply return the address. 3031da177e4SLinus Torvalds */ 3041da177e4SLinus Torvalds static int proc_pid_wchan(struct task_struct *task, char *buffer) 3051da177e4SLinus Torvalds { 306ffb45122SAlexey Dobriyan unsigned long wchan; 3079281aceaSTejun Heo char symname[KSYM_NAME_LEN]; 3081da177e4SLinus Torvalds 3091da177e4SLinus Torvalds wchan = get_wchan(task); 3101da177e4SLinus Torvalds 3119d65cb4aSAlexey Dobriyan if (lookup_symbol_name(wchan, symname) < 0) 312f83ce3e6SJake Edge if (!ptrace_may_access(task, PTRACE_MODE_READ)) 313f83ce3e6SJake Edge return 0; 314f83ce3e6SJake Edge else 3151da177e4SLinus Torvalds return sprintf(buffer, "%lu", wchan); 3169d65cb4aSAlexey Dobriyan else 3179d65cb4aSAlexey Dobriyan return sprintf(buffer, "%s", symname); 3181da177e4SLinus Torvalds } 3191da177e4SLinus Torvalds #endif /* CONFIG_KALLSYMS */ 3201da177e4SLinus Torvalds 3212ec220e2SKen Chen #ifdef CONFIG_STACKTRACE 3222ec220e2SKen Chen 3232ec220e2SKen Chen #define MAX_STACK_TRACE_DEPTH 64 3242ec220e2SKen Chen 3252ec220e2SKen Chen static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns, 3262ec220e2SKen Chen struct pid *pid, struct task_struct *task) 3272ec220e2SKen Chen { 3282ec220e2SKen Chen struct stack_trace trace; 3292ec220e2SKen Chen unsigned long *entries; 3302ec220e2SKen Chen int i; 3312ec220e2SKen Chen 3322ec220e2SKen Chen entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL); 3332ec220e2SKen Chen if (!entries) 3342ec220e2SKen Chen return -ENOMEM; 3352ec220e2SKen Chen 3362ec220e2SKen Chen trace.nr_entries = 0; 3372ec220e2SKen Chen trace.max_entries = MAX_STACK_TRACE_DEPTH; 3382ec220e2SKen Chen trace.entries = entries; 3392ec220e2SKen Chen trace.skip = 0; 3402ec220e2SKen Chen save_stack_trace_tsk(task, &trace); 3412ec220e2SKen Chen 3422ec220e2SKen Chen for (i = 0; i < trace.nr_entries; i++) { 3432ec220e2SKen Chen seq_printf(m, "[<%p>] %pS\n", 3442ec220e2SKen Chen (void *)entries[i], (void *)entries[i]); 3452ec220e2SKen Chen } 3462ec220e2SKen Chen kfree(entries); 3472ec220e2SKen Chen 3482ec220e2SKen Chen return 0; 3492ec220e2SKen Chen } 3502ec220e2SKen Chen #endif 3512ec220e2SKen Chen 3521da177e4SLinus Torvalds #ifdef CONFIG_SCHEDSTATS 3531da177e4SLinus Torvalds /* 3541da177e4SLinus Torvalds * Provides /proc/PID/schedstat 3551da177e4SLinus Torvalds */ 3561da177e4SLinus Torvalds static int proc_pid_schedstat(struct task_struct *task, char *buffer) 3571da177e4SLinus Torvalds { 358172ba844SBalbir Singh return sprintf(buffer, "%llu %llu %lu\n", 359826e08b0SIngo Molnar (unsigned long long)task->se.sum_exec_runtime, 360826e08b0SIngo Molnar (unsigned long long)task->sched_info.run_delay, 3612d72376bSIngo Molnar task->sched_info.pcount); 3621da177e4SLinus Torvalds } 3631da177e4SLinus Torvalds #endif 3641da177e4SLinus Torvalds 3659745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP 3669745512cSArjan van de Ven static int lstats_show_proc(struct seq_file *m, void *v) 3679745512cSArjan van de Ven { 3689745512cSArjan van de Ven int i; 36913d77c37SHiroshi Shimamoto struct inode *inode = m->private; 37013d77c37SHiroshi Shimamoto struct task_struct *task = get_proc_task(inode); 3719745512cSArjan van de Ven 37213d77c37SHiroshi Shimamoto if (!task) 37313d77c37SHiroshi Shimamoto return -ESRCH; 37413d77c37SHiroshi Shimamoto seq_puts(m, "Latency Top version : v0.1\n"); 3759745512cSArjan van de Ven for (i = 0; i < 32; i++) { 3769745512cSArjan van de Ven if (task->latency_record[i].backtrace[0]) { 3779745512cSArjan van de Ven int q; 3789745512cSArjan van de Ven seq_printf(m, "%i %li %li ", 3799745512cSArjan van de Ven task->latency_record[i].count, 3809745512cSArjan van de Ven task->latency_record[i].time, 3819745512cSArjan van de Ven task->latency_record[i].max); 3829745512cSArjan van de Ven for (q = 0; q < LT_BACKTRACEDEPTH; q++) { 3839c246247SHugh Dickins char sym[KSYM_SYMBOL_LEN]; 3849745512cSArjan van de Ven char *c; 3859745512cSArjan van de Ven if (!task->latency_record[i].backtrace[q]) 3869745512cSArjan van de Ven break; 3879745512cSArjan van de Ven if (task->latency_record[i].backtrace[q] == ULONG_MAX) 3889745512cSArjan van de Ven break; 3899745512cSArjan van de Ven sprint_symbol(sym, task->latency_record[i].backtrace[q]); 3909745512cSArjan van de Ven c = strchr(sym, '+'); 3919745512cSArjan van de Ven if (c) 3929745512cSArjan van de Ven *c = 0; 3939745512cSArjan van de Ven seq_printf(m, "%s ", sym); 3949745512cSArjan van de Ven } 3959745512cSArjan van de Ven seq_printf(m, "\n"); 3969745512cSArjan van de Ven } 3979745512cSArjan van de Ven 3989745512cSArjan van de Ven } 39913d77c37SHiroshi Shimamoto put_task_struct(task); 4009745512cSArjan van de Ven return 0; 4019745512cSArjan van de Ven } 4029745512cSArjan van de Ven 4039745512cSArjan van de Ven static int lstats_open(struct inode *inode, struct file *file) 4049745512cSArjan van de Ven { 40513d77c37SHiroshi Shimamoto return single_open(file, lstats_show_proc, inode); 406d6643d12SHiroshi Shimamoto } 407d6643d12SHiroshi Shimamoto 4089745512cSArjan van de Ven static ssize_t lstats_write(struct file *file, const char __user *buf, 4099745512cSArjan van de Ven size_t count, loff_t *offs) 4109745512cSArjan van de Ven { 41113d77c37SHiroshi Shimamoto struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 4129745512cSArjan van de Ven 41313d77c37SHiroshi Shimamoto if (!task) 41413d77c37SHiroshi Shimamoto return -ESRCH; 4159745512cSArjan van de Ven clear_all_latency_tracing(task); 41613d77c37SHiroshi Shimamoto put_task_struct(task); 4179745512cSArjan van de Ven 4189745512cSArjan van de Ven return count; 4199745512cSArjan van de Ven } 4209745512cSArjan van de Ven 4219745512cSArjan van de Ven static const struct file_operations proc_lstats_operations = { 4229745512cSArjan van de Ven .open = lstats_open, 4239745512cSArjan van de Ven .read = seq_read, 4249745512cSArjan van de Ven .write = lstats_write, 4259745512cSArjan van de Ven .llseek = seq_lseek, 42613d77c37SHiroshi Shimamoto .release = single_release, 4279745512cSArjan van de Ven }; 4289745512cSArjan van de Ven 4299745512cSArjan van de Ven #endif 4309745512cSArjan van de Ven 4311da177e4SLinus Torvalds static int proc_oom_score(struct task_struct *task, char *buffer) 4321da177e4SLinus Torvalds { 433b95c35e7SOleg Nesterov unsigned long points = 0; 4341da177e4SLinus Torvalds 43519c5d45aSAlexey Dobriyan read_lock(&tasklist_lock); 436b95c35e7SOleg Nesterov if (pid_alive(task)) 437a63d83f4SDavid Rientjes points = oom_badness(task, NULL, NULL, 438a63d83f4SDavid Rientjes totalram_pages + total_swap_pages); 43919c5d45aSAlexey Dobriyan read_unlock(&tasklist_lock); 4401da177e4SLinus Torvalds return sprintf(buffer, "%lu\n", points); 4411da177e4SLinus Torvalds } 4421da177e4SLinus Torvalds 443d85f50d5SNeil Horman struct limit_names { 444d85f50d5SNeil Horman char *name; 445d85f50d5SNeil Horman char *unit; 446d85f50d5SNeil Horman }; 447d85f50d5SNeil Horman 448d85f50d5SNeil Horman static const struct limit_names lnames[RLIM_NLIMITS] = { 449cff4edb5SKees Cook [RLIMIT_CPU] = {"Max cpu time", "seconds"}, 450d85f50d5SNeil Horman [RLIMIT_FSIZE] = {"Max file size", "bytes"}, 451d85f50d5SNeil Horman [RLIMIT_DATA] = {"Max data size", "bytes"}, 452d85f50d5SNeil Horman [RLIMIT_STACK] = {"Max stack size", "bytes"}, 453d85f50d5SNeil Horman [RLIMIT_CORE] = {"Max core file size", "bytes"}, 454d85f50d5SNeil Horman [RLIMIT_RSS] = {"Max resident set", "bytes"}, 455d85f50d5SNeil Horman [RLIMIT_NPROC] = {"Max processes", "processes"}, 456d85f50d5SNeil Horman [RLIMIT_NOFILE] = {"Max open files", "files"}, 457d85f50d5SNeil Horman [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"}, 458d85f50d5SNeil Horman [RLIMIT_AS] = {"Max address space", "bytes"}, 459d85f50d5SNeil Horman [RLIMIT_LOCKS] = {"Max file locks", "locks"}, 460d85f50d5SNeil Horman [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"}, 461d85f50d5SNeil Horman [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"}, 462d85f50d5SNeil Horman [RLIMIT_NICE] = {"Max nice priority", NULL}, 463d85f50d5SNeil Horman [RLIMIT_RTPRIO] = {"Max realtime priority", NULL}, 4648808117cSEugene Teo [RLIMIT_RTTIME] = {"Max realtime timeout", "us"}, 465d85f50d5SNeil Horman }; 466d85f50d5SNeil Horman 467d85f50d5SNeil Horman /* Display limits for a process */ 468d85f50d5SNeil Horman static int proc_pid_limits(struct task_struct *task, char *buffer) 469d85f50d5SNeil Horman { 470d85f50d5SNeil Horman unsigned int i; 471d85f50d5SNeil Horman int count = 0; 472d85f50d5SNeil Horman unsigned long flags; 473d85f50d5SNeil Horman char *bufptr = buffer; 474d85f50d5SNeil Horman 475d85f50d5SNeil Horman struct rlimit rlim[RLIM_NLIMITS]; 476d85f50d5SNeil Horman 477a6bebbc8SLai Jiangshan if (!lock_task_sighand(task, &flags)) 478d85f50d5SNeil Horman return 0; 479d85f50d5SNeil Horman memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS); 480d85f50d5SNeil Horman unlock_task_sighand(task, &flags); 481d85f50d5SNeil Horman 482d85f50d5SNeil Horman /* 483d85f50d5SNeil Horman * print the file header 484d85f50d5SNeil Horman */ 485d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n", 486d85f50d5SNeil Horman "Limit", "Soft Limit", "Hard Limit", "Units"); 487d85f50d5SNeil Horman 488d85f50d5SNeil Horman for (i = 0; i < RLIM_NLIMITS; i++) { 489d85f50d5SNeil Horman if (rlim[i].rlim_cur == RLIM_INFINITY) 490d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-25s %-20s ", 491d85f50d5SNeil Horman lnames[i].name, "unlimited"); 492d85f50d5SNeil Horman else 493d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-25s %-20lu ", 494d85f50d5SNeil Horman lnames[i].name, rlim[i].rlim_cur); 495d85f50d5SNeil Horman 496d85f50d5SNeil Horman if (rlim[i].rlim_max == RLIM_INFINITY) 497d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-20s ", "unlimited"); 498d85f50d5SNeil Horman else 499d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-20lu ", 500d85f50d5SNeil Horman rlim[i].rlim_max); 501d85f50d5SNeil Horman 502d85f50d5SNeil Horman if (lnames[i].unit) 503d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-10s\n", 504d85f50d5SNeil Horman lnames[i].unit); 505d85f50d5SNeil Horman else 506d85f50d5SNeil Horman count += sprintf(&bufptr[count], "\n"); 507d85f50d5SNeil Horman } 508d85f50d5SNeil Horman 509d85f50d5SNeil Horman return count; 510d85f50d5SNeil Horman } 511d85f50d5SNeil Horman 512ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK 513ebcb6734SRoland McGrath static int proc_pid_syscall(struct task_struct *task, char *buffer) 514ebcb6734SRoland McGrath { 515ebcb6734SRoland McGrath long nr; 516ebcb6734SRoland McGrath unsigned long args[6], sp, pc; 517ebcb6734SRoland McGrath 518ebcb6734SRoland McGrath if (task_current_syscall(task, &nr, args, 6, &sp, &pc)) 519ebcb6734SRoland McGrath return sprintf(buffer, "running\n"); 520ebcb6734SRoland McGrath 521ebcb6734SRoland McGrath if (nr < 0) 522ebcb6734SRoland McGrath return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc); 523ebcb6734SRoland McGrath 524ebcb6734SRoland McGrath return sprintf(buffer, 525ebcb6734SRoland McGrath "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n", 526ebcb6734SRoland McGrath nr, 527ebcb6734SRoland McGrath args[0], args[1], args[2], args[3], args[4], args[5], 528ebcb6734SRoland McGrath sp, pc); 529ebcb6734SRoland McGrath } 530ebcb6734SRoland McGrath #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */ 531ebcb6734SRoland McGrath 5321da177e4SLinus Torvalds /************************************************************************/ 5331da177e4SLinus Torvalds /* Here the fs part begins */ 5341da177e4SLinus Torvalds /************************************************************************/ 5351da177e4SLinus Torvalds 5361da177e4SLinus Torvalds /* permission checks */ 537778c1144SEric W. Biederman static int proc_fd_access_allowed(struct inode *inode) 5381da177e4SLinus Torvalds { 539778c1144SEric W. Biederman struct task_struct *task; 540778c1144SEric W. Biederman int allowed = 0; 541df26c40eSEric W. Biederman /* Allow access to a task's file descriptors if it is us or we 542df26c40eSEric W. Biederman * may use ptrace attach to the process and find out that 543df26c40eSEric W. Biederman * information. 544778c1144SEric W. Biederman */ 545778c1144SEric W. Biederman task = get_proc_task(inode); 546df26c40eSEric W. Biederman if (task) { 547006ebb40SStephen Smalley allowed = ptrace_may_access(task, PTRACE_MODE_READ); 548778c1144SEric W. Biederman put_task_struct(task); 549df26c40eSEric W. Biederman } 550778c1144SEric W. Biederman return allowed; 5511da177e4SLinus Torvalds } 5521da177e4SLinus Torvalds 5536d76fa58SLinus Torvalds static int proc_setattr(struct dentry *dentry, struct iattr *attr) 5546d76fa58SLinus Torvalds { 5556d76fa58SLinus Torvalds int error; 5566d76fa58SLinus Torvalds struct inode *inode = dentry->d_inode; 5576d76fa58SLinus Torvalds 5586d76fa58SLinus Torvalds if (attr->ia_valid & ATTR_MODE) 5596d76fa58SLinus Torvalds return -EPERM; 5606d76fa58SLinus Torvalds 5616d76fa58SLinus Torvalds error = inode_change_ok(inode, attr); 5621025774cSChristoph Hellwig if (error) 5636d76fa58SLinus Torvalds return error; 5641025774cSChristoph Hellwig 5651025774cSChristoph Hellwig if ((attr->ia_valid & ATTR_SIZE) && 5661025774cSChristoph Hellwig attr->ia_size != i_size_read(inode)) { 5671025774cSChristoph Hellwig error = vmtruncate(inode, attr->ia_size); 5681025774cSChristoph Hellwig if (error) 5691025774cSChristoph Hellwig return error; 5701025774cSChristoph Hellwig } 5711025774cSChristoph Hellwig 5721025774cSChristoph Hellwig setattr_copy(inode, attr); 5731025774cSChristoph Hellwig mark_inode_dirty(inode); 5741025774cSChristoph Hellwig return 0; 5756d76fa58SLinus Torvalds } 5766d76fa58SLinus Torvalds 577c5ef1c42SArjan van de Ven static const struct inode_operations proc_def_inode_operations = { 5786d76fa58SLinus Torvalds .setattr = proc_setattr, 5796d76fa58SLinus Torvalds }; 5806d76fa58SLinus Torvalds 581a1a2c409SMiklos Szeredi static int mounts_open_common(struct inode *inode, struct file *file, 582a1a2c409SMiklos Szeredi const struct seq_operations *op) 5831da177e4SLinus Torvalds { 58499f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 585cf7b708cSPavel Emelyanov struct nsproxy *nsp; 5866b3286edSKirill Korotaev struct mnt_namespace *ns = NULL; 587a1a2c409SMiklos Szeredi struct path root; 5885addc5ddSAl Viro struct proc_mounts *p; 5895addc5ddSAl Viro int ret = -EINVAL; 5905addc5ddSAl Viro 59199f89551SEric W. Biederman if (task) { 592cf7b708cSPavel Emelyanov rcu_read_lock(); 593cf7b708cSPavel Emelyanov nsp = task_nsproxy(task); 594cf7b708cSPavel Emelyanov if (nsp) { 595cf7b708cSPavel Emelyanov ns = nsp->mnt_ns; 5966b3286edSKirill Korotaev if (ns) 5976b3286edSKirill Korotaev get_mnt_ns(ns); 598863c4702SAlexey Dobriyan } 599cf7b708cSPavel Emelyanov rcu_read_unlock(); 600f7ad3c6bSMiklos Szeredi if (ns && get_task_root(task, &root) == 0) 6017c2c7d99SHugh Dickins ret = 0; 60299f89551SEric W. Biederman put_task_struct(task); 60399f89551SEric W. Biederman } 6041da177e4SLinus Torvalds 605a1a2c409SMiklos Szeredi if (!ns) 606a1a2c409SMiklos Szeredi goto err; 6077c2c7d99SHugh Dickins if (ret) 608a1a2c409SMiklos Szeredi goto err_put_ns; 609a1a2c409SMiklos Szeredi 6105addc5ddSAl Viro ret = -ENOMEM; 6115addc5ddSAl Viro p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL); 612a1a2c409SMiklos Szeredi if (!p) 613a1a2c409SMiklos Szeredi goto err_put_path; 614a1a2c409SMiklos Szeredi 6155addc5ddSAl Viro file->private_data = &p->m; 616a1a2c409SMiklos Szeredi ret = seq_open(file, op); 617a1a2c409SMiklos Szeredi if (ret) 618a1a2c409SMiklos Szeredi goto err_free; 619a1a2c409SMiklos Szeredi 620a1a2c409SMiklos Szeredi p->m.private = p; 621a1a2c409SMiklos Szeredi p->ns = ns; 622a1a2c409SMiklos Szeredi p->root = root; 6236b3286edSKirill Korotaev p->event = ns->event; 624a1a2c409SMiklos Szeredi 6255addc5ddSAl Viro return 0; 626a1a2c409SMiklos Szeredi 627a1a2c409SMiklos Szeredi err_free: 6285addc5ddSAl Viro kfree(p); 629a1a2c409SMiklos Szeredi err_put_path: 630a1a2c409SMiklos Szeredi path_put(&root); 631a1a2c409SMiklos Szeredi err_put_ns: 6326b3286edSKirill Korotaev put_mnt_ns(ns); 633a1a2c409SMiklos Szeredi err: 6341da177e4SLinus Torvalds return ret; 6351da177e4SLinus Torvalds } 6361da177e4SLinus Torvalds 6371da177e4SLinus Torvalds static int mounts_release(struct inode *inode, struct file *file) 6381da177e4SLinus Torvalds { 639a1a2c409SMiklos Szeredi struct proc_mounts *p = file->private_data; 640a1a2c409SMiklos Szeredi path_put(&p->root); 641a1a2c409SMiklos Szeredi put_mnt_ns(p->ns); 6421da177e4SLinus Torvalds return seq_release(inode, file); 6431da177e4SLinus Torvalds } 6441da177e4SLinus Torvalds 6455addc5ddSAl Viro static unsigned mounts_poll(struct file *file, poll_table *wait) 6465addc5ddSAl Viro { 6475addc5ddSAl Viro struct proc_mounts *p = file->private_data; 64831b07093SKOSAKI Motohiro unsigned res = POLLIN | POLLRDNORM; 6495addc5ddSAl Viro 6509f5596afSAl Viro poll_wait(file, &p->ns->poll, wait); 6519f5596afSAl Viro if (mnt_had_events(p)) 65231b07093SKOSAKI Motohiro res |= POLLERR | POLLPRI; 6535addc5ddSAl Viro 6545addc5ddSAl Viro return res; 6555addc5ddSAl Viro } 6565addc5ddSAl Viro 657a1a2c409SMiklos Szeredi static int mounts_open(struct inode *inode, struct file *file) 658a1a2c409SMiklos Szeredi { 659a1a2c409SMiklos Szeredi return mounts_open_common(inode, file, &mounts_op); 660a1a2c409SMiklos Szeredi } 661a1a2c409SMiklos Szeredi 66200977a59SArjan van de Ven static const struct file_operations proc_mounts_operations = { 6631da177e4SLinus Torvalds .open = mounts_open, 6641da177e4SLinus Torvalds .read = seq_read, 6651da177e4SLinus Torvalds .llseek = seq_lseek, 6661da177e4SLinus Torvalds .release = mounts_release, 6675addc5ddSAl Viro .poll = mounts_poll, 6681da177e4SLinus Torvalds }; 6691da177e4SLinus Torvalds 6702d4d4864SRam Pai static int mountinfo_open(struct inode *inode, struct file *file) 6712d4d4864SRam Pai { 6722d4d4864SRam Pai return mounts_open_common(inode, file, &mountinfo_op); 6732d4d4864SRam Pai } 6742d4d4864SRam Pai 6752d4d4864SRam Pai static const struct file_operations proc_mountinfo_operations = { 6762d4d4864SRam Pai .open = mountinfo_open, 6772d4d4864SRam Pai .read = seq_read, 6782d4d4864SRam Pai .llseek = seq_lseek, 6792d4d4864SRam Pai .release = mounts_release, 6802d4d4864SRam Pai .poll = mounts_poll, 6812d4d4864SRam Pai }; 6822d4d4864SRam Pai 683b4629fe2SChuck Lever static int mountstats_open(struct inode *inode, struct file *file) 684b4629fe2SChuck Lever { 685a1a2c409SMiklos Szeredi return mounts_open_common(inode, file, &mountstats_op); 686b4629fe2SChuck Lever } 687b4629fe2SChuck Lever 68800977a59SArjan van de Ven static const struct file_operations proc_mountstats_operations = { 689b4629fe2SChuck Lever .open = mountstats_open, 690b4629fe2SChuck Lever .read = seq_read, 691b4629fe2SChuck Lever .llseek = seq_lseek, 692b4629fe2SChuck Lever .release = mounts_release, 693b4629fe2SChuck Lever }; 694b4629fe2SChuck Lever 6951da177e4SLinus Torvalds #define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */ 6961da177e4SLinus Torvalds 6971da177e4SLinus Torvalds static ssize_t proc_info_read(struct file * file, char __user * buf, 6981da177e4SLinus Torvalds size_t count, loff_t *ppos) 6991da177e4SLinus Torvalds { 7002fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 7011da177e4SLinus Torvalds unsigned long page; 7021da177e4SLinus Torvalds ssize_t length; 70399f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 70499f89551SEric W. Biederman 70599f89551SEric W. Biederman length = -ESRCH; 70699f89551SEric W. Biederman if (!task) 70799f89551SEric W. Biederman goto out_no_task; 7081da177e4SLinus Torvalds 7091da177e4SLinus Torvalds if (count > PROC_BLOCK_SIZE) 7101da177e4SLinus Torvalds count = PROC_BLOCK_SIZE; 71199f89551SEric W. Biederman 71299f89551SEric W. Biederman length = -ENOMEM; 713e12ba74dSMel Gorman if (!(page = __get_free_page(GFP_TEMPORARY))) 71499f89551SEric W. Biederman goto out; 7151da177e4SLinus Torvalds 7161da177e4SLinus Torvalds length = PROC_I(inode)->op.proc_read(task, (char*)page); 7171da177e4SLinus Torvalds 7181da177e4SLinus Torvalds if (length >= 0) 7191da177e4SLinus Torvalds length = simple_read_from_buffer(buf, count, ppos, (char *)page, length); 7201da177e4SLinus Torvalds free_page(page); 72199f89551SEric W. Biederman out: 72299f89551SEric W. Biederman put_task_struct(task); 72399f89551SEric W. Biederman out_no_task: 7241da177e4SLinus Torvalds return length; 7251da177e4SLinus Torvalds } 7261da177e4SLinus Torvalds 72700977a59SArjan van de Ven static const struct file_operations proc_info_file_operations = { 7281da177e4SLinus Torvalds .read = proc_info_read, 72987df8424SArnd Bergmann .llseek = generic_file_llseek, 7301da177e4SLinus Torvalds }; 7311da177e4SLinus Torvalds 732be614086SEric W. Biederman static int proc_single_show(struct seq_file *m, void *v) 733be614086SEric W. Biederman { 734be614086SEric W. Biederman struct inode *inode = m->private; 735be614086SEric W. Biederman struct pid_namespace *ns; 736be614086SEric W. Biederman struct pid *pid; 737be614086SEric W. Biederman struct task_struct *task; 738be614086SEric W. Biederman int ret; 739be614086SEric W. Biederman 740be614086SEric W. Biederman ns = inode->i_sb->s_fs_info; 741be614086SEric W. Biederman pid = proc_pid(inode); 742be614086SEric W. Biederman task = get_pid_task(pid, PIDTYPE_PID); 743be614086SEric W. Biederman if (!task) 744be614086SEric W. Biederman return -ESRCH; 745be614086SEric W. Biederman 746be614086SEric W. Biederman ret = PROC_I(inode)->op.proc_show(m, ns, pid, task); 747be614086SEric W. Biederman 748be614086SEric W. Biederman put_task_struct(task); 749be614086SEric W. Biederman return ret; 750be614086SEric W. Biederman } 751be614086SEric W. Biederman 752be614086SEric W. Biederman static int proc_single_open(struct inode *inode, struct file *filp) 753be614086SEric W. Biederman { 754be614086SEric W. Biederman int ret; 755be614086SEric W. Biederman ret = single_open(filp, proc_single_show, NULL); 756be614086SEric W. Biederman if (!ret) { 757be614086SEric W. Biederman struct seq_file *m = filp->private_data; 758be614086SEric W. Biederman 759be614086SEric W. Biederman m->private = inode; 760be614086SEric W. Biederman } 761be614086SEric W. Biederman return ret; 762be614086SEric W. Biederman } 763be614086SEric W. Biederman 764be614086SEric W. Biederman static const struct file_operations proc_single_file_operations = { 765be614086SEric W. Biederman .open = proc_single_open, 766be614086SEric W. Biederman .read = seq_read, 767be614086SEric W. Biederman .llseek = seq_lseek, 768be614086SEric W. Biederman .release = single_release, 769be614086SEric W. Biederman }; 770be614086SEric W. Biederman 7711da177e4SLinus Torvalds static int mem_open(struct inode* inode, struct file* file) 7721da177e4SLinus Torvalds { 7731da177e4SLinus Torvalds file->private_data = (void*)((long)current->self_exec_id); 7744a3956c7SKAMEZAWA Hiroyuki /* OK to pass negative loff_t, we can catch out-of-range */ 7754a3956c7SKAMEZAWA Hiroyuki file->f_mode |= FMODE_UNSIGNED_OFFSET; 7761da177e4SLinus Torvalds return 0; 7771da177e4SLinus Torvalds } 7781da177e4SLinus Torvalds 7791da177e4SLinus Torvalds static ssize_t mem_read(struct file * file, char __user * buf, 7801da177e4SLinus Torvalds size_t count, loff_t *ppos) 7811da177e4SLinus Torvalds { 7822fddfeefSJosef "Jeff" Sipek struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 7831da177e4SLinus Torvalds char *page; 7841da177e4SLinus Torvalds unsigned long src = *ppos; 7851da177e4SLinus Torvalds int ret = -ESRCH; 7861da177e4SLinus Torvalds struct mm_struct *mm; 7871da177e4SLinus Torvalds 78899f89551SEric W. Biederman if (!task) 78999f89551SEric W. Biederman goto out_no_task; 79099f89551SEric W. Biederman 791638fa202SRoland McGrath if (check_mem_permission(task)) 7921da177e4SLinus Torvalds goto out; 7931da177e4SLinus Torvalds 7941da177e4SLinus Torvalds ret = -ENOMEM; 795e12ba74dSMel Gorman page = (char *)__get_free_page(GFP_TEMPORARY); 7961da177e4SLinus Torvalds if (!page) 7971da177e4SLinus Torvalds goto out; 7981da177e4SLinus Torvalds 7991da177e4SLinus Torvalds ret = 0; 8001da177e4SLinus Torvalds 8011da177e4SLinus Torvalds mm = get_task_mm(task); 8021da177e4SLinus Torvalds if (!mm) 8031da177e4SLinus Torvalds goto out_free; 8041da177e4SLinus Torvalds 8051da177e4SLinus Torvalds ret = -EIO; 8061da177e4SLinus Torvalds 8071da177e4SLinus Torvalds if (file->private_data != (void*)((long)current->self_exec_id)) 8081da177e4SLinus Torvalds goto out_put; 8091da177e4SLinus Torvalds 8101da177e4SLinus Torvalds ret = 0; 8111da177e4SLinus Torvalds 8121da177e4SLinus Torvalds while (count > 0) { 8131da177e4SLinus Torvalds int this_len, retval; 8141da177e4SLinus Torvalds 8151da177e4SLinus Torvalds this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; 8161da177e4SLinus Torvalds retval = access_process_vm(task, src, page, this_len, 0); 817638fa202SRoland McGrath if (!retval || check_mem_permission(task)) { 8181da177e4SLinus Torvalds if (!ret) 8191da177e4SLinus Torvalds ret = -EIO; 8201da177e4SLinus Torvalds break; 8211da177e4SLinus Torvalds } 8221da177e4SLinus Torvalds 8231da177e4SLinus Torvalds if (copy_to_user(buf, page, retval)) { 8241da177e4SLinus Torvalds ret = -EFAULT; 8251da177e4SLinus Torvalds break; 8261da177e4SLinus Torvalds } 8271da177e4SLinus Torvalds 8281da177e4SLinus Torvalds ret += retval; 8291da177e4SLinus Torvalds src += retval; 8301da177e4SLinus Torvalds buf += retval; 8311da177e4SLinus Torvalds count -= retval; 8321da177e4SLinus Torvalds } 8331da177e4SLinus Torvalds *ppos = src; 8341da177e4SLinus Torvalds 8351da177e4SLinus Torvalds out_put: 8361da177e4SLinus Torvalds mmput(mm); 8371da177e4SLinus Torvalds out_free: 8381da177e4SLinus Torvalds free_page((unsigned long) page); 8391da177e4SLinus Torvalds out: 84099f89551SEric W. Biederman put_task_struct(task); 84199f89551SEric W. Biederman out_no_task: 8421da177e4SLinus Torvalds return ret; 8431da177e4SLinus Torvalds } 8441da177e4SLinus Torvalds 8451da177e4SLinus Torvalds #define mem_write NULL 8461da177e4SLinus Torvalds 8471da177e4SLinus Torvalds #ifndef mem_write 8481da177e4SLinus Torvalds /* This is a security hazard */ 84963967fa9SGlauber de Oliveira Costa static ssize_t mem_write(struct file * file, const char __user *buf, 8501da177e4SLinus Torvalds size_t count, loff_t *ppos) 8511da177e4SLinus Torvalds { 852f7ca54f4SFrederik Deweerdt int copied; 8531da177e4SLinus Torvalds char *page; 8542fddfeefSJosef "Jeff" Sipek struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 8551da177e4SLinus Torvalds unsigned long dst = *ppos; 8561da177e4SLinus Torvalds 85799f89551SEric W. Biederman copied = -ESRCH; 85899f89551SEric W. Biederman if (!task) 85999f89551SEric W. Biederman goto out_no_task; 8601da177e4SLinus Torvalds 861638fa202SRoland McGrath if (check_mem_permission(task)) 86299f89551SEric W. Biederman goto out; 86399f89551SEric W. Biederman 86499f89551SEric W. Biederman copied = -ENOMEM; 865e12ba74dSMel Gorman page = (char *)__get_free_page(GFP_TEMPORARY); 8661da177e4SLinus Torvalds if (!page) 86799f89551SEric W. Biederman goto out; 8681da177e4SLinus Torvalds 869f7ca54f4SFrederik Deweerdt copied = 0; 8701da177e4SLinus Torvalds while (count > 0) { 8711da177e4SLinus Torvalds int this_len, retval; 8721da177e4SLinus Torvalds 8731da177e4SLinus Torvalds this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; 8741da177e4SLinus Torvalds if (copy_from_user(page, buf, this_len)) { 8751da177e4SLinus Torvalds copied = -EFAULT; 8761da177e4SLinus Torvalds break; 8771da177e4SLinus Torvalds } 8781da177e4SLinus Torvalds retval = access_process_vm(task, dst, page, this_len, 1); 8791da177e4SLinus Torvalds if (!retval) { 8801da177e4SLinus Torvalds if (!copied) 8811da177e4SLinus Torvalds copied = -EIO; 8821da177e4SLinus Torvalds break; 8831da177e4SLinus Torvalds } 8841da177e4SLinus Torvalds copied += retval; 8851da177e4SLinus Torvalds buf += retval; 8861da177e4SLinus Torvalds dst += retval; 8871da177e4SLinus Torvalds count -= retval; 8881da177e4SLinus Torvalds } 8891da177e4SLinus Torvalds *ppos = dst; 8901da177e4SLinus Torvalds free_page((unsigned long) page); 89199f89551SEric W. Biederman out: 89299f89551SEric W. Biederman put_task_struct(task); 89399f89551SEric W. Biederman out_no_task: 8941da177e4SLinus Torvalds return copied; 8951da177e4SLinus Torvalds } 8961da177e4SLinus Torvalds #endif 8971da177e4SLinus Torvalds 89885863e47SMatt Mackall loff_t mem_lseek(struct file *file, loff_t offset, int orig) 8991da177e4SLinus Torvalds { 9001da177e4SLinus Torvalds switch (orig) { 9011da177e4SLinus Torvalds case 0: 9021da177e4SLinus Torvalds file->f_pos = offset; 9031da177e4SLinus Torvalds break; 9041da177e4SLinus Torvalds case 1: 9051da177e4SLinus Torvalds file->f_pos += offset; 9061da177e4SLinus Torvalds break; 9071da177e4SLinus Torvalds default: 9081da177e4SLinus Torvalds return -EINVAL; 9091da177e4SLinus Torvalds } 9101da177e4SLinus Torvalds force_successful_syscall_return(); 9111da177e4SLinus Torvalds return file->f_pos; 9121da177e4SLinus Torvalds } 9131da177e4SLinus Torvalds 91400977a59SArjan van de Ven static const struct file_operations proc_mem_operations = { 9151da177e4SLinus Torvalds .llseek = mem_lseek, 9161da177e4SLinus Torvalds .read = mem_read, 9171da177e4SLinus Torvalds .write = mem_write, 9181da177e4SLinus Torvalds .open = mem_open, 9191da177e4SLinus Torvalds }; 9201da177e4SLinus Torvalds 921315e28c8SJames Pearson static ssize_t environ_read(struct file *file, char __user *buf, 922315e28c8SJames Pearson size_t count, loff_t *ppos) 923315e28c8SJames Pearson { 924315e28c8SJames Pearson struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 925315e28c8SJames Pearson char *page; 926315e28c8SJames Pearson unsigned long src = *ppos; 927315e28c8SJames Pearson int ret = -ESRCH; 928315e28c8SJames Pearson struct mm_struct *mm; 929315e28c8SJames Pearson 930315e28c8SJames Pearson if (!task) 931315e28c8SJames Pearson goto out_no_task; 932315e28c8SJames Pearson 933006ebb40SStephen Smalley if (!ptrace_may_access(task, PTRACE_MODE_READ)) 934315e28c8SJames Pearson goto out; 935315e28c8SJames Pearson 936315e28c8SJames Pearson ret = -ENOMEM; 937315e28c8SJames Pearson page = (char *)__get_free_page(GFP_TEMPORARY); 938315e28c8SJames Pearson if (!page) 939315e28c8SJames Pearson goto out; 940315e28c8SJames Pearson 941315e28c8SJames Pearson ret = 0; 942315e28c8SJames Pearson 943315e28c8SJames Pearson mm = get_task_mm(task); 944315e28c8SJames Pearson if (!mm) 945315e28c8SJames Pearson goto out_free; 946315e28c8SJames Pearson 947315e28c8SJames Pearson while (count > 0) { 948315e28c8SJames Pearson int this_len, retval, max_len; 949315e28c8SJames Pearson 950315e28c8SJames Pearson this_len = mm->env_end - (mm->env_start + src); 951315e28c8SJames Pearson 952315e28c8SJames Pearson if (this_len <= 0) 953315e28c8SJames Pearson break; 954315e28c8SJames Pearson 955315e28c8SJames Pearson max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; 956315e28c8SJames Pearson this_len = (this_len > max_len) ? max_len : this_len; 957315e28c8SJames Pearson 958315e28c8SJames Pearson retval = access_process_vm(task, (mm->env_start + src), 959315e28c8SJames Pearson page, this_len, 0); 960315e28c8SJames Pearson 961315e28c8SJames Pearson if (retval <= 0) { 962315e28c8SJames Pearson ret = retval; 963315e28c8SJames Pearson break; 964315e28c8SJames Pearson } 965315e28c8SJames Pearson 966315e28c8SJames Pearson if (copy_to_user(buf, page, retval)) { 967315e28c8SJames Pearson ret = -EFAULT; 968315e28c8SJames Pearson break; 969315e28c8SJames Pearson } 970315e28c8SJames Pearson 971315e28c8SJames Pearson ret += retval; 972315e28c8SJames Pearson src += retval; 973315e28c8SJames Pearson buf += retval; 974315e28c8SJames Pearson count -= retval; 975315e28c8SJames Pearson } 976315e28c8SJames Pearson *ppos = src; 977315e28c8SJames Pearson 978315e28c8SJames Pearson mmput(mm); 979315e28c8SJames Pearson out_free: 980315e28c8SJames Pearson free_page((unsigned long) page); 981315e28c8SJames Pearson out: 982315e28c8SJames Pearson put_task_struct(task); 983315e28c8SJames Pearson out_no_task: 984315e28c8SJames Pearson return ret; 985315e28c8SJames Pearson } 986315e28c8SJames Pearson 987315e28c8SJames Pearson static const struct file_operations proc_environ_operations = { 988315e28c8SJames Pearson .read = environ_read, 98987df8424SArnd Bergmann .llseek = generic_file_llseek, 990315e28c8SJames Pearson }; 991315e28c8SJames Pearson 9921da177e4SLinus Torvalds static ssize_t oom_adjust_read(struct file *file, char __user *buf, 9931da177e4SLinus Torvalds size_t count, loff_t *ppos) 9941da177e4SLinus Torvalds { 9952fddfeefSJosef "Jeff" Sipek struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 9968578cea7SEric W. Biederman char buffer[PROC_NUMBUF]; 9971da177e4SLinus Torvalds size_t len; 99828b83c51SKOSAKI Motohiro int oom_adjust = OOM_DISABLE; 99928b83c51SKOSAKI Motohiro unsigned long flags; 10001da177e4SLinus Torvalds 100199f89551SEric W. Biederman if (!task) 100299f89551SEric W. Biederman return -ESRCH; 100328b83c51SKOSAKI Motohiro 100428b83c51SKOSAKI Motohiro if (lock_task_sighand(task, &flags)) { 100528b83c51SKOSAKI Motohiro oom_adjust = task->signal->oom_adj; 100628b83c51SKOSAKI Motohiro unlock_task_sighand(task, &flags); 100728b83c51SKOSAKI Motohiro } 100828b83c51SKOSAKI Motohiro 100999f89551SEric W. Biederman put_task_struct(task); 101099f89551SEric W. Biederman 10118578cea7SEric W. Biederman len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust); 10120c28f287SAkinobu Mita 10130c28f287SAkinobu Mita return simple_read_from_buffer(buf, count, ppos, buffer, len); 10141da177e4SLinus Torvalds } 10151da177e4SLinus Torvalds 10161da177e4SLinus Torvalds static ssize_t oom_adjust_write(struct file *file, const char __user *buf, 10171da177e4SLinus Torvalds size_t count, loff_t *ppos) 10181da177e4SLinus Torvalds { 101999f89551SEric W. Biederman struct task_struct *task; 10205d863b89SKOSAKI Motohiro char buffer[PROC_NUMBUF]; 10215d863b89SKOSAKI Motohiro long oom_adjust; 102228b83c51SKOSAKI Motohiro unsigned long flags; 10235d863b89SKOSAKI Motohiro int err; 10241da177e4SLinus Torvalds 10258578cea7SEric W. Biederman memset(buffer, 0, sizeof(buffer)); 10268578cea7SEric W. Biederman if (count > sizeof(buffer) - 1) 10278578cea7SEric W. Biederman count = sizeof(buffer) - 1; 1028723548bfSDavid Rientjes if (copy_from_user(buffer, buf, count)) { 1029723548bfSDavid Rientjes err = -EFAULT; 1030723548bfSDavid Rientjes goto out; 1031723548bfSDavid Rientjes } 10325d863b89SKOSAKI Motohiro 10335d863b89SKOSAKI Motohiro err = strict_strtol(strstrip(buffer), 0, &oom_adjust); 10345d863b89SKOSAKI Motohiro if (err) 1035723548bfSDavid Rientjes goto out; 10368ac773b4SAlexey Dobriyan if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) && 1037723548bfSDavid Rientjes oom_adjust != OOM_DISABLE) { 1038723548bfSDavid Rientjes err = -EINVAL; 1039723548bfSDavid Rientjes goto out; 1040723548bfSDavid Rientjes } 10415d863b89SKOSAKI Motohiro 10422fddfeefSJosef "Jeff" Sipek task = get_proc_task(file->f_path.dentry->d_inode); 1043723548bfSDavid Rientjes if (!task) { 1044723548bfSDavid Rientjes err = -ESRCH; 1045723548bfSDavid Rientjes goto out; 1046723548bfSDavid Rientjes } 104728b83c51SKOSAKI Motohiro 10483d5992d2SYing Han task_lock(task); 10493d5992d2SYing Han if (!task->mm) { 1050723548bfSDavid Rientjes err = -EINVAL; 1051723548bfSDavid Rientjes goto err_task_lock; 10523d5992d2SYing Han } 10533d5992d2SYing Han 1054d19d5476SDavid Rientjes if (!lock_task_sighand(task, &flags)) { 1055d19d5476SDavid Rientjes err = -ESRCH; 1056d19d5476SDavid Rientjes goto err_task_lock; 1057d19d5476SDavid Rientjes } 1058d19d5476SDavid Rientjes 1059d19d5476SDavid Rientjes if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) { 1060d19d5476SDavid Rientjes err = -EACCES; 1061d19d5476SDavid Rientjes goto err_sighand; 1062d19d5476SDavid Rientjes } 1063d19d5476SDavid Rientjes 10643d5992d2SYing Han if (oom_adjust != task->signal->oom_adj) { 10653d5992d2SYing Han if (oom_adjust == OOM_DISABLE) 10663d5992d2SYing Han atomic_inc(&task->mm->oom_disable_count); 10673d5992d2SYing Han if (task->signal->oom_adj == OOM_DISABLE) 10683d5992d2SYing Han atomic_dec(&task->mm->oom_disable_count); 10693d5992d2SYing Han } 10703d5992d2SYing Han 107151b1bd2aSDavid Rientjes /* 107251b1bd2aSDavid Rientjes * Warn that /proc/pid/oom_adj is deprecated, see 107351b1bd2aSDavid Rientjes * Documentation/feature-removal-schedule.txt. 107451b1bd2aSDavid Rientjes */ 107551b1bd2aSDavid Rientjes printk_once(KERN_WARNING "%s (%d): /proc/%d/oom_adj is deprecated, " 107651b1bd2aSDavid Rientjes "please use /proc/%d/oom_score_adj instead.\n", 107751b1bd2aSDavid Rientjes current->comm, task_pid_nr(current), 107851b1bd2aSDavid Rientjes task_pid_nr(task), task_pid_nr(task)); 107928b83c51SKOSAKI Motohiro task->signal->oom_adj = oom_adjust; 1080a63d83f4SDavid Rientjes /* 1081a63d83f4SDavid Rientjes * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum 1082a63d83f4SDavid Rientjes * value is always attainable. 1083a63d83f4SDavid Rientjes */ 1084a63d83f4SDavid Rientjes if (task->signal->oom_adj == OOM_ADJUST_MAX) 1085a63d83f4SDavid Rientjes task->signal->oom_score_adj = OOM_SCORE_ADJ_MAX; 1086a63d83f4SDavid Rientjes else 1087a63d83f4SDavid Rientjes task->signal->oom_score_adj = (oom_adjust * OOM_SCORE_ADJ_MAX) / 1088a63d83f4SDavid Rientjes -OOM_DISABLE; 1089723548bfSDavid Rientjes err_sighand: 109028b83c51SKOSAKI Motohiro unlock_task_sighand(task, &flags); 1091d19d5476SDavid Rientjes err_task_lock: 1092d19d5476SDavid Rientjes task_unlock(task); 109399f89551SEric W. Biederman put_task_struct(task); 1094723548bfSDavid Rientjes out: 1095723548bfSDavid Rientjes return err < 0 ? err : count; 10961da177e4SLinus Torvalds } 10971da177e4SLinus Torvalds 109800977a59SArjan van de Ven static const struct file_operations proc_oom_adjust_operations = { 10991da177e4SLinus Torvalds .read = oom_adjust_read, 11001da177e4SLinus Torvalds .write = oom_adjust_write, 110187df8424SArnd Bergmann .llseek = generic_file_llseek, 11021da177e4SLinus Torvalds }; 11031da177e4SLinus Torvalds 1104a63d83f4SDavid Rientjes static ssize_t oom_score_adj_read(struct file *file, char __user *buf, 1105a63d83f4SDavid Rientjes size_t count, loff_t *ppos) 1106a63d83f4SDavid Rientjes { 1107a63d83f4SDavid Rientjes struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 1108a63d83f4SDavid Rientjes char buffer[PROC_NUMBUF]; 1109a63d83f4SDavid Rientjes int oom_score_adj = OOM_SCORE_ADJ_MIN; 1110a63d83f4SDavid Rientjes unsigned long flags; 1111a63d83f4SDavid Rientjes size_t len; 1112a63d83f4SDavid Rientjes 1113a63d83f4SDavid Rientjes if (!task) 1114a63d83f4SDavid Rientjes return -ESRCH; 1115a63d83f4SDavid Rientjes if (lock_task_sighand(task, &flags)) { 1116a63d83f4SDavid Rientjes oom_score_adj = task->signal->oom_score_adj; 1117a63d83f4SDavid Rientjes unlock_task_sighand(task, &flags); 1118a63d83f4SDavid Rientjes } 1119a63d83f4SDavid Rientjes put_task_struct(task); 1120a63d83f4SDavid Rientjes len = snprintf(buffer, sizeof(buffer), "%d\n", oom_score_adj); 1121a63d83f4SDavid Rientjes return simple_read_from_buffer(buf, count, ppos, buffer, len); 1122a63d83f4SDavid Rientjes } 1123a63d83f4SDavid Rientjes 1124a63d83f4SDavid Rientjes static ssize_t oom_score_adj_write(struct file *file, const char __user *buf, 1125a63d83f4SDavid Rientjes size_t count, loff_t *ppos) 1126a63d83f4SDavid Rientjes { 1127a63d83f4SDavid Rientjes struct task_struct *task; 1128a63d83f4SDavid Rientjes char buffer[PROC_NUMBUF]; 1129a63d83f4SDavid Rientjes unsigned long flags; 1130a63d83f4SDavid Rientjes long oom_score_adj; 1131a63d83f4SDavid Rientjes int err; 1132a63d83f4SDavid Rientjes 1133a63d83f4SDavid Rientjes memset(buffer, 0, sizeof(buffer)); 1134a63d83f4SDavid Rientjes if (count > sizeof(buffer) - 1) 1135a63d83f4SDavid Rientjes count = sizeof(buffer) - 1; 1136723548bfSDavid Rientjes if (copy_from_user(buffer, buf, count)) { 1137723548bfSDavid Rientjes err = -EFAULT; 1138723548bfSDavid Rientjes goto out; 1139723548bfSDavid Rientjes } 1140a63d83f4SDavid Rientjes 1141a63d83f4SDavid Rientjes err = strict_strtol(strstrip(buffer), 0, &oom_score_adj); 1142a63d83f4SDavid Rientjes if (err) 1143723548bfSDavid Rientjes goto out; 1144a63d83f4SDavid Rientjes if (oom_score_adj < OOM_SCORE_ADJ_MIN || 1145723548bfSDavid Rientjes oom_score_adj > OOM_SCORE_ADJ_MAX) { 1146723548bfSDavid Rientjes err = -EINVAL; 1147723548bfSDavid Rientjes goto out; 1148723548bfSDavid Rientjes } 1149a63d83f4SDavid Rientjes 1150a63d83f4SDavid Rientjes task = get_proc_task(file->f_path.dentry->d_inode); 1151723548bfSDavid Rientjes if (!task) { 1152723548bfSDavid Rientjes err = -ESRCH; 1153723548bfSDavid Rientjes goto out; 1154723548bfSDavid Rientjes } 1155a63d83f4SDavid Rientjes 11563d5992d2SYing Han task_lock(task); 11573d5992d2SYing Han if (!task->mm) { 1158723548bfSDavid Rientjes err = -EINVAL; 1159723548bfSDavid Rientjes goto err_task_lock; 11603d5992d2SYing Han } 1161d19d5476SDavid Rientjes 1162d19d5476SDavid Rientjes if (!lock_task_sighand(task, &flags)) { 1163d19d5476SDavid Rientjes err = -ESRCH; 1164d19d5476SDavid Rientjes goto err_task_lock; 1165d19d5476SDavid Rientjes } 1166d19d5476SDavid Rientjes 1167d19d5476SDavid Rientjes if (oom_score_adj < task->signal->oom_score_adj && 1168d19d5476SDavid Rientjes !capable(CAP_SYS_RESOURCE)) { 1169d19d5476SDavid Rientjes err = -EACCES; 1170d19d5476SDavid Rientjes goto err_sighand; 1171d19d5476SDavid Rientjes } 1172d19d5476SDavid Rientjes 11733d5992d2SYing Han if (oom_score_adj != task->signal->oom_score_adj) { 11743d5992d2SYing Han if (oom_score_adj == OOM_SCORE_ADJ_MIN) 11753d5992d2SYing Han atomic_inc(&task->mm->oom_disable_count); 11763d5992d2SYing Han if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) 11773d5992d2SYing Han atomic_dec(&task->mm->oom_disable_count); 11783d5992d2SYing Han } 1179a63d83f4SDavid Rientjes task->signal->oom_score_adj = oom_score_adj; 1180a63d83f4SDavid Rientjes /* 1181a63d83f4SDavid Rientjes * Scale /proc/pid/oom_adj appropriately ensuring that OOM_DISABLE is 1182a63d83f4SDavid Rientjes * always attainable. 1183a63d83f4SDavid Rientjes */ 1184a63d83f4SDavid Rientjes if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) 1185a63d83f4SDavid Rientjes task->signal->oom_adj = OOM_DISABLE; 1186a63d83f4SDavid Rientjes else 1187a63d83f4SDavid Rientjes task->signal->oom_adj = (oom_score_adj * OOM_ADJUST_MAX) / 1188a63d83f4SDavid Rientjes OOM_SCORE_ADJ_MAX; 1189723548bfSDavid Rientjes err_sighand: 1190a63d83f4SDavid Rientjes unlock_task_sighand(task, &flags); 1191d19d5476SDavid Rientjes err_task_lock: 1192d19d5476SDavid Rientjes task_unlock(task); 1193a63d83f4SDavid Rientjes put_task_struct(task); 1194723548bfSDavid Rientjes out: 1195723548bfSDavid Rientjes return err < 0 ? err : count; 1196a63d83f4SDavid Rientjes } 1197a63d83f4SDavid Rientjes 1198a63d83f4SDavid Rientjes static const struct file_operations proc_oom_score_adj_operations = { 1199a63d83f4SDavid Rientjes .read = oom_score_adj_read, 1200a63d83f4SDavid Rientjes .write = oom_score_adj_write, 12016038f373SArnd Bergmann .llseek = default_llseek, 1202a63d83f4SDavid Rientjes }; 1203a63d83f4SDavid Rientjes 12041da177e4SLinus Torvalds #ifdef CONFIG_AUDITSYSCALL 12051da177e4SLinus Torvalds #define TMPBUFLEN 21 12061da177e4SLinus Torvalds static ssize_t proc_loginuid_read(struct file * file, char __user * buf, 12071da177e4SLinus Torvalds size_t count, loff_t *ppos) 12081da177e4SLinus Torvalds { 12092fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 121099f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 12111da177e4SLinus Torvalds ssize_t length; 12121da177e4SLinus Torvalds char tmpbuf[TMPBUFLEN]; 12131da177e4SLinus Torvalds 121499f89551SEric W. Biederman if (!task) 121599f89551SEric W. Biederman return -ESRCH; 12161da177e4SLinus Torvalds length = scnprintf(tmpbuf, TMPBUFLEN, "%u", 12170c11b942SAl Viro audit_get_loginuid(task)); 121899f89551SEric W. Biederman put_task_struct(task); 12191da177e4SLinus Torvalds return simple_read_from_buffer(buf, count, ppos, tmpbuf, length); 12201da177e4SLinus Torvalds } 12211da177e4SLinus Torvalds 12221da177e4SLinus Torvalds static ssize_t proc_loginuid_write(struct file * file, const char __user * buf, 12231da177e4SLinus Torvalds size_t count, loff_t *ppos) 12241da177e4SLinus Torvalds { 12252fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 12261da177e4SLinus Torvalds char *page, *tmp; 12271da177e4SLinus Torvalds ssize_t length; 12281da177e4SLinus Torvalds uid_t loginuid; 12291da177e4SLinus Torvalds 12301da177e4SLinus Torvalds if (!capable(CAP_AUDIT_CONTROL)) 12311da177e4SLinus Torvalds return -EPERM; 12321da177e4SLinus Torvalds 12337dc52157SPaul E. McKenney rcu_read_lock(); 12347dc52157SPaul E. McKenney if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) { 12357dc52157SPaul E. McKenney rcu_read_unlock(); 12361da177e4SLinus Torvalds return -EPERM; 12377dc52157SPaul E. McKenney } 12387dc52157SPaul E. McKenney rcu_read_unlock(); 12391da177e4SLinus Torvalds 1240e0182909SAl Viro if (count >= PAGE_SIZE) 1241e0182909SAl Viro count = PAGE_SIZE - 1; 12421da177e4SLinus Torvalds 12431da177e4SLinus Torvalds if (*ppos != 0) { 12441da177e4SLinus Torvalds /* No partial writes. */ 12451da177e4SLinus Torvalds return -EINVAL; 12461da177e4SLinus Torvalds } 1247e12ba74dSMel Gorman page = (char*)__get_free_page(GFP_TEMPORARY); 12481da177e4SLinus Torvalds if (!page) 12491da177e4SLinus Torvalds return -ENOMEM; 12501da177e4SLinus Torvalds length = -EFAULT; 12511da177e4SLinus Torvalds if (copy_from_user(page, buf, count)) 12521da177e4SLinus Torvalds goto out_free_page; 12531da177e4SLinus Torvalds 1254e0182909SAl Viro page[count] = '\0'; 12551da177e4SLinus Torvalds loginuid = simple_strtoul(page, &tmp, 10); 12561da177e4SLinus Torvalds if (tmp == page) { 12571da177e4SLinus Torvalds length = -EINVAL; 12581da177e4SLinus Torvalds goto out_free_page; 12591da177e4SLinus Torvalds 12601da177e4SLinus Torvalds } 126199f89551SEric W. Biederman length = audit_set_loginuid(current, loginuid); 12621da177e4SLinus Torvalds if (likely(length == 0)) 12631da177e4SLinus Torvalds length = count; 12641da177e4SLinus Torvalds 12651da177e4SLinus Torvalds out_free_page: 12661da177e4SLinus Torvalds free_page((unsigned long) page); 12671da177e4SLinus Torvalds return length; 12681da177e4SLinus Torvalds } 12691da177e4SLinus Torvalds 127000977a59SArjan van de Ven static const struct file_operations proc_loginuid_operations = { 12711da177e4SLinus Torvalds .read = proc_loginuid_read, 12721da177e4SLinus Torvalds .write = proc_loginuid_write, 127387df8424SArnd Bergmann .llseek = generic_file_llseek, 12741da177e4SLinus Torvalds }; 12751e0bd755SEric Paris 12761e0bd755SEric Paris static ssize_t proc_sessionid_read(struct file * file, char __user * buf, 12771e0bd755SEric Paris size_t count, loff_t *ppos) 12781e0bd755SEric Paris { 12791e0bd755SEric Paris struct inode * inode = file->f_path.dentry->d_inode; 12801e0bd755SEric Paris struct task_struct *task = get_proc_task(inode); 12811e0bd755SEric Paris ssize_t length; 12821e0bd755SEric Paris char tmpbuf[TMPBUFLEN]; 12831e0bd755SEric Paris 12841e0bd755SEric Paris if (!task) 12851e0bd755SEric Paris return -ESRCH; 12861e0bd755SEric Paris length = scnprintf(tmpbuf, TMPBUFLEN, "%u", 12871e0bd755SEric Paris audit_get_sessionid(task)); 12881e0bd755SEric Paris put_task_struct(task); 12891e0bd755SEric Paris return simple_read_from_buffer(buf, count, ppos, tmpbuf, length); 12901e0bd755SEric Paris } 12911e0bd755SEric Paris 12921e0bd755SEric Paris static const struct file_operations proc_sessionid_operations = { 12931e0bd755SEric Paris .read = proc_sessionid_read, 129487df8424SArnd Bergmann .llseek = generic_file_llseek, 12951e0bd755SEric Paris }; 12961da177e4SLinus Torvalds #endif 12971da177e4SLinus Torvalds 1298f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION 1299f4f154fdSAkinobu Mita static ssize_t proc_fault_inject_read(struct file * file, char __user * buf, 1300f4f154fdSAkinobu Mita size_t count, loff_t *ppos) 1301f4f154fdSAkinobu Mita { 1302f4f154fdSAkinobu Mita struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 1303f4f154fdSAkinobu Mita char buffer[PROC_NUMBUF]; 1304f4f154fdSAkinobu Mita size_t len; 1305f4f154fdSAkinobu Mita int make_it_fail; 1306f4f154fdSAkinobu Mita 1307f4f154fdSAkinobu Mita if (!task) 1308f4f154fdSAkinobu Mita return -ESRCH; 1309f4f154fdSAkinobu Mita make_it_fail = task->make_it_fail; 1310f4f154fdSAkinobu Mita put_task_struct(task); 1311f4f154fdSAkinobu Mita 1312f4f154fdSAkinobu Mita len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail); 13130c28f287SAkinobu Mita 13140c28f287SAkinobu Mita return simple_read_from_buffer(buf, count, ppos, buffer, len); 1315f4f154fdSAkinobu Mita } 1316f4f154fdSAkinobu Mita 1317f4f154fdSAkinobu Mita static ssize_t proc_fault_inject_write(struct file * file, 1318f4f154fdSAkinobu Mita const char __user * buf, size_t count, loff_t *ppos) 1319f4f154fdSAkinobu Mita { 1320f4f154fdSAkinobu Mita struct task_struct *task; 1321f4f154fdSAkinobu Mita char buffer[PROC_NUMBUF], *end; 1322f4f154fdSAkinobu Mita int make_it_fail; 1323f4f154fdSAkinobu Mita 1324f4f154fdSAkinobu Mita if (!capable(CAP_SYS_RESOURCE)) 1325f4f154fdSAkinobu Mita return -EPERM; 1326f4f154fdSAkinobu Mita memset(buffer, 0, sizeof(buffer)); 1327f4f154fdSAkinobu Mita if (count > sizeof(buffer) - 1) 1328f4f154fdSAkinobu Mita count = sizeof(buffer) - 1; 1329f4f154fdSAkinobu Mita if (copy_from_user(buffer, buf, count)) 1330f4f154fdSAkinobu Mita return -EFAULT; 1331cba8aafeSVincent Li make_it_fail = simple_strtol(strstrip(buffer), &end, 0); 1332cba8aafeSVincent Li if (*end) 1333cba8aafeSVincent Li return -EINVAL; 1334f4f154fdSAkinobu Mita task = get_proc_task(file->f_dentry->d_inode); 1335f4f154fdSAkinobu Mita if (!task) 1336f4f154fdSAkinobu Mita return -ESRCH; 1337f4f154fdSAkinobu Mita task->make_it_fail = make_it_fail; 1338f4f154fdSAkinobu Mita put_task_struct(task); 1339cba8aafeSVincent Li 1340cba8aafeSVincent Li return count; 1341f4f154fdSAkinobu Mita } 1342f4f154fdSAkinobu Mita 134300977a59SArjan van de Ven static const struct file_operations proc_fault_inject_operations = { 1344f4f154fdSAkinobu Mita .read = proc_fault_inject_read, 1345f4f154fdSAkinobu Mita .write = proc_fault_inject_write, 134687df8424SArnd Bergmann .llseek = generic_file_llseek, 1347f4f154fdSAkinobu Mita }; 1348f4f154fdSAkinobu Mita #endif 1349f4f154fdSAkinobu Mita 13509745512cSArjan van de Ven 135143ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 135243ae34cbSIngo Molnar /* 135343ae34cbSIngo Molnar * Print out various scheduling related per-task fields: 135443ae34cbSIngo Molnar */ 135543ae34cbSIngo Molnar static int sched_show(struct seq_file *m, void *v) 135643ae34cbSIngo Molnar { 135743ae34cbSIngo Molnar struct inode *inode = m->private; 135843ae34cbSIngo Molnar struct task_struct *p; 135943ae34cbSIngo Molnar 136043ae34cbSIngo Molnar p = get_proc_task(inode); 136143ae34cbSIngo Molnar if (!p) 136243ae34cbSIngo Molnar return -ESRCH; 136343ae34cbSIngo Molnar proc_sched_show_task(p, m); 136443ae34cbSIngo Molnar 136543ae34cbSIngo Molnar put_task_struct(p); 136643ae34cbSIngo Molnar 136743ae34cbSIngo Molnar return 0; 136843ae34cbSIngo Molnar } 136943ae34cbSIngo Molnar 137043ae34cbSIngo Molnar static ssize_t 137143ae34cbSIngo Molnar sched_write(struct file *file, const char __user *buf, 137243ae34cbSIngo Molnar size_t count, loff_t *offset) 137343ae34cbSIngo Molnar { 137443ae34cbSIngo Molnar struct inode *inode = file->f_path.dentry->d_inode; 137543ae34cbSIngo Molnar struct task_struct *p; 137643ae34cbSIngo Molnar 137743ae34cbSIngo Molnar p = get_proc_task(inode); 137843ae34cbSIngo Molnar if (!p) 137943ae34cbSIngo Molnar return -ESRCH; 138043ae34cbSIngo Molnar proc_sched_set_task(p); 138143ae34cbSIngo Molnar 138243ae34cbSIngo Molnar put_task_struct(p); 138343ae34cbSIngo Molnar 138443ae34cbSIngo Molnar return count; 138543ae34cbSIngo Molnar } 138643ae34cbSIngo Molnar 138743ae34cbSIngo Molnar static int sched_open(struct inode *inode, struct file *filp) 138843ae34cbSIngo Molnar { 138943ae34cbSIngo Molnar int ret; 139043ae34cbSIngo Molnar 139143ae34cbSIngo Molnar ret = single_open(filp, sched_show, NULL); 139243ae34cbSIngo Molnar if (!ret) { 139343ae34cbSIngo Molnar struct seq_file *m = filp->private_data; 139443ae34cbSIngo Molnar 139543ae34cbSIngo Molnar m->private = inode; 139643ae34cbSIngo Molnar } 139743ae34cbSIngo Molnar return ret; 139843ae34cbSIngo Molnar } 139943ae34cbSIngo Molnar 140043ae34cbSIngo Molnar static const struct file_operations proc_pid_sched_operations = { 140143ae34cbSIngo Molnar .open = sched_open, 140243ae34cbSIngo Molnar .read = seq_read, 140343ae34cbSIngo Molnar .write = sched_write, 140443ae34cbSIngo Molnar .llseek = seq_lseek, 14055ea473a1SAlexey Dobriyan .release = single_release, 140643ae34cbSIngo Molnar }; 140743ae34cbSIngo Molnar 140843ae34cbSIngo Molnar #endif 140943ae34cbSIngo Molnar 14104614a696Sjohn stultz static ssize_t comm_write(struct file *file, const char __user *buf, 14114614a696Sjohn stultz size_t count, loff_t *offset) 14124614a696Sjohn stultz { 14134614a696Sjohn stultz struct inode *inode = file->f_path.dentry->d_inode; 14144614a696Sjohn stultz struct task_struct *p; 14154614a696Sjohn stultz char buffer[TASK_COMM_LEN]; 14164614a696Sjohn stultz 14174614a696Sjohn stultz memset(buffer, 0, sizeof(buffer)); 14184614a696Sjohn stultz if (count > sizeof(buffer) - 1) 14194614a696Sjohn stultz count = sizeof(buffer) - 1; 14204614a696Sjohn stultz if (copy_from_user(buffer, buf, count)) 14214614a696Sjohn stultz return -EFAULT; 14224614a696Sjohn stultz 14234614a696Sjohn stultz p = get_proc_task(inode); 14244614a696Sjohn stultz if (!p) 14254614a696Sjohn stultz return -ESRCH; 14264614a696Sjohn stultz 14274614a696Sjohn stultz if (same_thread_group(current, p)) 14284614a696Sjohn stultz set_task_comm(p, buffer); 14294614a696Sjohn stultz else 14304614a696Sjohn stultz count = -EINVAL; 14314614a696Sjohn stultz 14324614a696Sjohn stultz put_task_struct(p); 14334614a696Sjohn stultz 14344614a696Sjohn stultz return count; 14354614a696Sjohn stultz } 14364614a696Sjohn stultz 14374614a696Sjohn stultz static int comm_show(struct seq_file *m, void *v) 14384614a696Sjohn stultz { 14394614a696Sjohn stultz struct inode *inode = m->private; 14404614a696Sjohn stultz struct task_struct *p; 14414614a696Sjohn stultz 14424614a696Sjohn stultz p = get_proc_task(inode); 14434614a696Sjohn stultz if (!p) 14444614a696Sjohn stultz return -ESRCH; 14454614a696Sjohn stultz 14464614a696Sjohn stultz task_lock(p); 14474614a696Sjohn stultz seq_printf(m, "%s\n", p->comm); 14484614a696Sjohn stultz task_unlock(p); 14494614a696Sjohn stultz 14504614a696Sjohn stultz put_task_struct(p); 14514614a696Sjohn stultz 14524614a696Sjohn stultz return 0; 14534614a696Sjohn stultz } 14544614a696Sjohn stultz 14554614a696Sjohn stultz static int comm_open(struct inode *inode, struct file *filp) 14564614a696Sjohn stultz { 14574614a696Sjohn stultz int ret; 14584614a696Sjohn stultz 14594614a696Sjohn stultz ret = single_open(filp, comm_show, NULL); 14604614a696Sjohn stultz if (!ret) { 14614614a696Sjohn stultz struct seq_file *m = filp->private_data; 14624614a696Sjohn stultz 14634614a696Sjohn stultz m->private = inode; 14644614a696Sjohn stultz } 14654614a696Sjohn stultz return ret; 14664614a696Sjohn stultz } 14674614a696Sjohn stultz 14684614a696Sjohn stultz static const struct file_operations proc_pid_set_comm_operations = { 14694614a696Sjohn stultz .open = comm_open, 14704614a696Sjohn stultz .read = seq_read, 14714614a696Sjohn stultz .write = comm_write, 14724614a696Sjohn stultz .llseek = seq_lseek, 14734614a696Sjohn stultz .release = single_release, 14744614a696Sjohn stultz }; 14754614a696Sjohn stultz 1476925d1c40SMatt Helsley /* 1477925d1c40SMatt Helsley * We added or removed a vma mapping the executable. The vmas are only mapped 1478925d1c40SMatt Helsley * during exec and are not mapped with the mmap system call. 1479925d1c40SMatt Helsley * Callers must hold down_write() on the mm's mmap_sem for these 1480925d1c40SMatt Helsley */ 1481925d1c40SMatt Helsley void added_exe_file_vma(struct mm_struct *mm) 1482925d1c40SMatt Helsley { 1483925d1c40SMatt Helsley mm->num_exe_file_vmas++; 1484925d1c40SMatt Helsley } 1485925d1c40SMatt Helsley 1486925d1c40SMatt Helsley void removed_exe_file_vma(struct mm_struct *mm) 1487925d1c40SMatt Helsley { 1488925d1c40SMatt Helsley mm->num_exe_file_vmas--; 1489925d1c40SMatt Helsley if ((mm->num_exe_file_vmas == 0) && mm->exe_file){ 1490925d1c40SMatt Helsley fput(mm->exe_file); 1491925d1c40SMatt Helsley mm->exe_file = NULL; 1492925d1c40SMatt Helsley } 1493925d1c40SMatt Helsley 1494925d1c40SMatt Helsley } 1495925d1c40SMatt Helsley 1496925d1c40SMatt Helsley void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) 1497925d1c40SMatt Helsley { 1498925d1c40SMatt Helsley if (new_exe_file) 1499925d1c40SMatt Helsley get_file(new_exe_file); 1500925d1c40SMatt Helsley if (mm->exe_file) 1501925d1c40SMatt Helsley fput(mm->exe_file); 1502925d1c40SMatt Helsley mm->exe_file = new_exe_file; 1503925d1c40SMatt Helsley mm->num_exe_file_vmas = 0; 1504925d1c40SMatt Helsley } 1505925d1c40SMatt Helsley 1506925d1c40SMatt Helsley struct file *get_mm_exe_file(struct mm_struct *mm) 1507925d1c40SMatt Helsley { 1508925d1c40SMatt Helsley struct file *exe_file; 1509925d1c40SMatt Helsley 1510925d1c40SMatt Helsley /* We need mmap_sem to protect against races with removal of 1511925d1c40SMatt Helsley * VM_EXECUTABLE vmas */ 1512925d1c40SMatt Helsley down_read(&mm->mmap_sem); 1513925d1c40SMatt Helsley exe_file = mm->exe_file; 1514925d1c40SMatt Helsley if (exe_file) 1515925d1c40SMatt Helsley get_file(exe_file); 1516925d1c40SMatt Helsley up_read(&mm->mmap_sem); 1517925d1c40SMatt Helsley return exe_file; 1518925d1c40SMatt Helsley } 1519925d1c40SMatt Helsley 1520925d1c40SMatt Helsley void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm) 1521925d1c40SMatt Helsley { 1522925d1c40SMatt Helsley /* It's safe to write the exe_file pointer without exe_file_lock because 1523925d1c40SMatt Helsley * this is called during fork when the task is not yet in /proc */ 1524925d1c40SMatt Helsley newmm->exe_file = get_mm_exe_file(oldmm); 1525925d1c40SMatt Helsley } 1526925d1c40SMatt Helsley 1527925d1c40SMatt Helsley static int proc_exe_link(struct inode *inode, struct path *exe_path) 1528925d1c40SMatt Helsley { 1529925d1c40SMatt Helsley struct task_struct *task; 1530925d1c40SMatt Helsley struct mm_struct *mm; 1531925d1c40SMatt Helsley struct file *exe_file; 1532925d1c40SMatt Helsley 1533925d1c40SMatt Helsley task = get_proc_task(inode); 1534925d1c40SMatt Helsley if (!task) 1535925d1c40SMatt Helsley return -ENOENT; 1536925d1c40SMatt Helsley mm = get_task_mm(task); 1537925d1c40SMatt Helsley put_task_struct(task); 1538925d1c40SMatt Helsley if (!mm) 1539925d1c40SMatt Helsley return -ENOENT; 1540925d1c40SMatt Helsley exe_file = get_mm_exe_file(mm); 1541925d1c40SMatt Helsley mmput(mm); 1542925d1c40SMatt Helsley if (exe_file) { 1543925d1c40SMatt Helsley *exe_path = exe_file->f_path; 1544925d1c40SMatt Helsley path_get(&exe_file->f_path); 1545925d1c40SMatt Helsley fput(exe_file); 1546925d1c40SMatt Helsley return 0; 1547925d1c40SMatt Helsley } else 1548925d1c40SMatt Helsley return -ENOENT; 1549925d1c40SMatt Helsley } 1550925d1c40SMatt Helsley 1551008b150aSAl Viro static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd) 15521da177e4SLinus Torvalds { 15531da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 15541da177e4SLinus Torvalds int error = -EACCES; 15551da177e4SLinus Torvalds 15561da177e4SLinus Torvalds /* We don't need a base pointer in the /proc filesystem */ 15571d957f9bSJan Blunck path_put(&nd->path); 15581da177e4SLinus Torvalds 1559778c1144SEric W. Biederman /* Are we allowed to snoop on the tasks file descriptors? */ 1560778c1144SEric W. Biederman if (!proc_fd_access_allowed(inode)) 15611da177e4SLinus Torvalds goto out; 15621da177e4SLinus Torvalds 15633dcd25f3SJan Blunck error = PROC_I(inode)->op.proc_get_link(inode, &nd->path); 15641da177e4SLinus Torvalds out: 1565008b150aSAl Viro return ERR_PTR(error); 15661da177e4SLinus Torvalds } 15671da177e4SLinus Torvalds 15683dcd25f3SJan Blunck static int do_proc_readlink(struct path *path, char __user *buffer, int buflen) 15691da177e4SLinus Torvalds { 1570e12ba74dSMel Gorman char *tmp = (char*)__get_free_page(GFP_TEMPORARY); 15713dcd25f3SJan Blunck char *pathname; 15721da177e4SLinus Torvalds int len; 15731da177e4SLinus Torvalds 15741da177e4SLinus Torvalds if (!tmp) 15751da177e4SLinus Torvalds return -ENOMEM; 15761da177e4SLinus Torvalds 15777b2a69baSEric W. Biederman pathname = d_path(path, tmp, PAGE_SIZE); 15783dcd25f3SJan Blunck len = PTR_ERR(pathname); 15793dcd25f3SJan Blunck if (IS_ERR(pathname)) 15801da177e4SLinus Torvalds goto out; 15813dcd25f3SJan Blunck len = tmp + PAGE_SIZE - 1 - pathname; 15821da177e4SLinus Torvalds 15831da177e4SLinus Torvalds if (len > buflen) 15841da177e4SLinus Torvalds len = buflen; 15853dcd25f3SJan Blunck if (copy_to_user(buffer, pathname, len)) 15861da177e4SLinus Torvalds len = -EFAULT; 15871da177e4SLinus Torvalds out: 15881da177e4SLinus Torvalds free_page((unsigned long)tmp); 15891da177e4SLinus Torvalds return len; 15901da177e4SLinus Torvalds } 15911da177e4SLinus Torvalds 15921da177e4SLinus Torvalds static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen) 15931da177e4SLinus Torvalds { 15941da177e4SLinus Torvalds int error = -EACCES; 15951da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 15963dcd25f3SJan Blunck struct path path; 15971da177e4SLinus Torvalds 1598778c1144SEric W. Biederman /* Are we allowed to snoop on the tasks file descriptors? */ 1599778c1144SEric W. Biederman if (!proc_fd_access_allowed(inode)) 16001da177e4SLinus Torvalds goto out; 16011da177e4SLinus Torvalds 16023dcd25f3SJan Blunck error = PROC_I(inode)->op.proc_get_link(inode, &path); 16031da177e4SLinus Torvalds if (error) 16041da177e4SLinus Torvalds goto out; 16051da177e4SLinus Torvalds 16063dcd25f3SJan Blunck error = do_proc_readlink(&path, buffer, buflen); 16073dcd25f3SJan Blunck path_put(&path); 16081da177e4SLinus Torvalds out: 16091da177e4SLinus Torvalds return error; 16101da177e4SLinus Torvalds } 16111da177e4SLinus Torvalds 1612c5ef1c42SArjan van de Ven static const struct inode_operations proc_pid_link_inode_operations = { 16131da177e4SLinus Torvalds .readlink = proc_pid_readlink, 16146d76fa58SLinus Torvalds .follow_link = proc_pid_follow_link, 16156d76fa58SLinus Torvalds .setattr = proc_setattr, 16161da177e4SLinus Torvalds }; 16171da177e4SLinus Torvalds 161828a6d671SEric W. Biederman 161928a6d671SEric W. Biederman /* building an inode */ 162028a6d671SEric W. Biederman 162128a6d671SEric W. Biederman static int task_dumpable(struct task_struct *task) 162228a6d671SEric W. Biederman { 162328a6d671SEric W. Biederman int dumpable = 0; 162428a6d671SEric W. Biederman struct mm_struct *mm; 162528a6d671SEric W. Biederman 162628a6d671SEric W. Biederman task_lock(task); 162728a6d671SEric W. Biederman mm = task->mm; 162828a6d671SEric W. Biederman if (mm) 16296c5d5238SKawai, Hidehiro dumpable = get_dumpable(mm); 163028a6d671SEric W. Biederman task_unlock(task); 163128a6d671SEric W. Biederman if(dumpable == 1) 163228a6d671SEric W. Biederman return 1; 163328a6d671SEric W. Biederman return 0; 163428a6d671SEric W. Biederman } 163528a6d671SEric W. Biederman 163628a6d671SEric W. Biederman 163761a28784SEric W. Biederman static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task) 163828a6d671SEric W. Biederman { 163928a6d671SEric W. Biederman struct inode * inode; 164028a6d671SEric W. Biederman struct proc_inode *ei; 1641c69e8d9cSDavid Howells const struct cred *cred; 164228a6d671SEric W. Biederman 164328a6d671SEric W. Biederman /* We need a new inode */ 164428a6d671SEric W. Biederman 164528a6d671SEric W. Biederman inode = new_inode(sb); 164628a6d671SEric W. Biederman if (!inode) 164728a6d671SEric W. Biederman goto out; 164828a6d671SEric W. Biederman 164928a6d671SEric W. Biederman /* Common stuff */ 165028a6d671SEric W. Biederman ei = PROC_I(inode); 165185fe4025SChristoph Hellwig inode->i_ino = get_next_ino(); 165228a6d671SEric W. Biederman inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; 165328a6d671SEric W. Biederman inode->i_op = &proc_def_inode_operations; 165428a6d671SEric W. Biederman 165528a6d671SEric W. Biederman /* 165628a6d671SEric W. Biederman * grab the reference to task. 165728a6d671SEric W. Biederman */ 16581a657f78SOleg Nesterov ei->pid = get_task_pid(task, PIDTYPE_PID); 165928a6d671SEric W. Biederman if (!ei->pid) 166028a6d671SEric W. Biederman goto out_unlock; 166128a6d671SEric W. Biederman 166228a6d671SEric W. Biederman if (task_dumpable(task)) { 1663c69e8d9cSDavid Howells rcu_read_lock(); 1664c69e8d9cSDavid Howells cred = __task_cred(task); 1665c69e8d9cSDavid Howells inode->i_uid = cred->euid; 1666c69e8d9cSDavid Howells inode->i_gid = cred->egid; 1667c69e8d9cSDavid Howells rcu_read_unlock(); 166828a6d671SEric W. Biederman } 166928a6d671SEric W. Biederman security_task_to_inode(task, inode); 167028a6d671SEric W. Biederman 167128a6d671SEric W. Biederman out: 167228a6d671SEric W. Biederman return inode; 167328a6d671SEric W. Biederman 167428a6d671SEric W. Biederman out_unlock: 167528a6d671SEric W. Biederman iput(inode); 167628a6d671SEric W. Biederman return NULL; 167728a6d671SEric W. Biederman } 167828a6d671SEric W. Biederman 167928a6d671SEric W. Biederman static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) 168028a6d671SEric W. Biederman { 168128a6d671SEric W. Biederman struct inode *inode = dentry->d_inode; 168228a6d671SEric W. Biederman struct task_struct *task; 1683c69e8d9cSDavid Howells const struct cred *cred; 1684c69e8d9cSDavid Howells 168528a6d671SEric W. Biederman generic_fillattr(inode, stat); 168628a6d671SEric W. Biederman 168728a6d671SEric W. Biederman rcu_read_lock(); 168828a6d671SEric W. Biederman stat->uid = 0; 168928a6d671SEric W. Biederman stat->gid = 0; 169028a6d671SEric W. Biederman task = pid_task(proc_pid(inode), PIDTYPE_PID); 169128a6d671SEric W. Biederman if (task) { 169228a6d671SEric W. Biederman if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) || 169328a6d671SEric W. Biederman task_dumpable(task)) { 1694c69e8d9cSDavid Howells cred = __task_cred(task); 1695c69e8d9cSDavid Howells stat->uid = cred->euid; 1696c69e8d9cSDavid Howells stat->gid = cred->egid; 169728a6d671SEric W. Biederman } 169828a6d671SEric W. Biederman } 169928a6d671SEric W. Biederman rcu_read_unlock(); 170028a6d671SEric W. Biederman return 0; 170128a6d671SEric W. Biederman } 170228a6d671SEric W. Biederman 170328a6d671SEric W. Biederman /* dentry stuff */ 170428a6d671SEric W. Biederman 170528a6d671SEric W. Biederman /* 170628a6d671SEric W. Biederman * Exceptional case: normally we are not allowed to unhash a busy 170728a6d671SEric W. Biederman * directory. In this case, however, we can do it - no aliasing problems 170828a6d671SEric W. Biederman * due to the way we treat inodes. 170928a6d671SEric W. Biederman * 171028a6d671SEric W. Biederman * Rewrite the inode's ownerships here because the owning task may have 171128a6d671SEric W. Biederman * performed a setuid(), etc. 171228a6d671SEric W. Biederman * 171328a6d671SEric W. Biederman * Before the /proc/pid/status file was created the only way to read 171428a6d671SEric W. Biederman * the effective uid of a /process was to stat /proc/pid. Reading 171528a6d671SEric W. Biederman * /proc/pid/status is slow enough that procps and other packages 171628a6d671SEric W. Biederman * kept stating /proc/pid. To keep the rules in /proc simple I have 171728a6d671SEric W. Biederman * made this apply to all per process world readable and executable 171828a6d671SEric W. Biederman * directories. 171928a6d671SEric W. Biederman */ 172028a6d671SEric W. Biederman static int pid_revalidate(struct dentry *dentry, struct nameidata *nd) 172128a6d671SEric W. Biederman { 172228a6d671SEric W. Biederman struct inode *inode = dentry->d_inode; 172328a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 1724c69e8d9cSDavid Howells const struct cred *cred; 1725c69e8d9cSDavid Howells 172628a6d671SEric W. Biederman if (task) { 172728a6d671SEric W. Biederman if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) || 172828a6d671SEric W. Biederman task_dumpable(task)) { 1729c69e8d9cSDavid Howells rcu_read_lock(); 1730c69e8d9cSDavid Howells cred = __task_cred(task); 1731c69e8d9cSDavid Howells inode->i_uid = cred->euid; 1732c69e8d9cSDavid Howells inode->i_gid = cred->egid; 1733c69e8d9cSDavid Howells rcu_read_unlock(); 173428a6d671SEric W. Biederman } else { 173528a6d671SEric W. Biederman inode->i_uid = 0; 173628a6d671SEric W. Biederman inode->i_gid = 0; 173728a6d671SEric W. Biederman } 173828a6d671SEric W. Biederman inode->i_mode &= ~(S_ISUID | S_ISGID); 173928a6d671SEric W. Biederman security_task_to_inode(task, inode); 174028a6d671SEric W. Biederman put_task_struct(task); 174128a6d671SEric W. Biederman return 1; 174228a6d671SEric W. Biederman } 174328a6d671SEric W. Biederman d_drop(dentry); 174428a6d671SEric W. Biederman return 0; 174528a6d671SEric W. Biederman } 174628a6d671SEric W. Biederman 1747fe15ce44SNick Piggin static int pid_delete_dentry(const struct dentry * dentry) 174828a6d671SEric W. Biederman { 174928a6d671SEric W. Biederman /* Is the task we represent dead? 175028a6d671SEric W. Biederman * If so, then don't put the dentry on the lru list, 175128a6d671SEric W. Biederman * kill it immediately. 175228a6d671SEric W. Biederman */ 175328a6d671SEric W. Biederman return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first; 175428a6d671SEric W. Biederman } 175528a6d671SEric W. Biederman 1756d72f71ebSAl Viro static const struct dentry_operations pid_dentry_operations = 175728a6d671SEric W. Biederman { 175828a6d671SEric W. Biederman .d_revalidate = pid_revalidate, 175928a6d671SEric W. Biederman .d_delete = pid_delete_dentry, 176028a6d671SEric W. Biederman }; 176128a6d671SEric W. Biederman 176228a6d671SEric W. Biederman /* Lookups */ 176328a6d671SEric W. Biederman 1764c5141e6dSEric Dumazet typedef struct dentry *instantiate_t(struct inode *, struct dentry *, 1765c5141e6dSEric Dumazet struct task_struct *, const void *); 176661a28784SEric W. Biederman 17671c0d04c9SEric W. Biederman /* 17681c0d04c9SEric W. Biederman * Fill a directory entry. 17691c0d04c9SEric W. Biederman * 17701c0d04c9SEric W. Biederman * If possible create the dcache entry and derive our inode number and 17711c0d04c9SEric W. Biederman * file type from dcache entry. 17721c0d04c9SEric W. Biederman * 17731c0d04c9SEric W. Biederman * Since all of the proc inode numbers are dynamically generated, the inode 17741c0d04c9SEric W. Biederman * numbers do not exist until the inode is cache. This means creating the 17751c0d04c9SEric W. Biederman * the dcache entry in readdir is necessary to keep the inode numbers 17761c0d04c9SEric W. Biederman * reported by readdir in sync with the inode numbers reported 17771c0d04c9SEric W. Biederman * by stat. 17781c0d04c9SEric W. Biederman */ 177961a28784SEric W. Biederman static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir, 178061a28784SEric W. Biederman char *name, int len, 1781c5141e6dSEric Dumazet instantiate_t instantiate, struct task_struct *task, const void *ptr) 178261a28784SEric W. Biederman { 17832fddfeefSJosef "Jeff" Sipek struct dentry *child, *dir = filp->f_path.dentry; 178461a28784SEric W. Biederman struct inode *inode; 178561a28784SEric W. Biederman struct qstr qname; 178661a28784SEric W. Biederman ino_t ino = 0; 178761a28784SEric W. Biederman unsigned type = DT_UNKNOWN; 178861a28784SEric W. Biederman 178961a28784SEric W. Biederman qname.name = name; 179061a28784SEric W. Biederman qname.len = len; 179161a28784SEric W. Biederman qname.hash = full_name_hash(name, len); 179261a28784SEric W. Biederman 179361a28784SEric W. Biederman child = d_lookup(dir, &qname); 179461a28784SEric W. Biederman if (!child) { 179561a28784SEric W. Biederman struct dentry *new; 179661a28784SEric W. Biederman new = d_alloc(dir, &qname); 179761a28784SEric W. Biederman if (new) { 179861a28784SEric W. Biederman child = instantiate(dir->d_inode, new, task, ptr); 179961a28784SEric W. Biederman if (child) 180061a28784SEric W. Biederman dput(new); 180161a28784SEric W. Biederman else 180261a28784SEric W. Biederman child = new; 180361a28784SEric W. Biederman } 180461a28784SEric W. Biederman } 180561a28784SEric W. Biederman if (!child || IS_ERR(child) || !child->d_inode) 180661a28784SEric W. Biederman goto end_instantiate; 180761a28784SEric W. Biederman inode = child->d_inode; 180861a28784SEric W. Biederman if (inode) { 180961a28784SEric W. Biederman ino = inode->i_ino; 181061a28784SEric W. Biederman type = inode->i_mode >> 12; 181161a28784SEric W. Biederman } 181261a28784SEric W. Biederman dput(child); 181361a28784SEric W. Biederman end_instantiate: 181461a28784SEric W. Biederman if (!ino) 181561a28784SEric W. Biederman ino = find_inode_number(dir, &qname); 181661a28784SEric W. Biederman if (!ino) 181761a28784SEric W. Biederman ino = 1; 181861a28784SEric W. Biederman return filldir(dirent, name, len, filp->f_pos, ino, type); 181961a28784SEric W. Biederman } 182061a28784SEric W. Biederman 182128a6d671SEric W. Biederman static unsigned name_to_int(struct dentry *dentry) 182228a6d671SEric W. Biederman { 182328a6d671SEric W. Biederman const char *name = dentry->d_name.name; 182428a6d671SEric W. Biederman int len = dentry->d_name.len; 182528a6d671SEric W. Biederman unsigned n = 0; 182628a6d671SEric W. Biederman 182728a6d671SEric W. Biederman if (len > 1 && *name == '0') 182828a6d671SEric W. Biederman goto out; 182928a6d671SEric W. Biederman while (len-- > 0) { 183028a6d671SEric W. Biederman unsigned c = *name++ - '0'; 183128a6d671SEric W. Biederman if (c > 9) 183228a6d671SEric W. Biederman goto out; 183328a6d671SEric W. Biederman if (n >= (~0U-9)/10) 183428a6d671SEric W. Biederman goto out; 183528a6d671SEric W. Biederman n *= 10; 183628a6d671SEric W. Biederman n += c; 183728a6d671SEric W. Biederman } 183828a6d671SEric W. Biederman return n; 183928a6d671SEric W. Biederman out: 184028a6d671SEric W. Biederman return ~0U; 184128a6d671SEric W. Biederman } 184228a6d671SEric W. Biederman 184327932742SMiklos Szeredi #define PROC_FDINFO_MAX 64 184427932742SMiklos Szeredi 18453dcd25f3SJan Blunck static int proc_fd_info(struct inode *inode, struct path *path, char *info) 184628a6d671SEric W. Biederman { 184728a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 184828a6d671SEric W. Biederman struct files_struct *files = NULL; 184928a6d671SEric W. Biederman struct file *file; 185028a6d671SEric W. Biederman int fd = proc_fd(inode); 185128a6d671SEric W. Biederman 185228a6d671SEric W. Biederman if (task) { 185328a6d671SEric W. Biederman files = get_files_struct(task); 185428a6d671SEric W. Biederman put_task_struct(task); 185528a6d671SEric W. Biederman } 185628a6d671SEric W. Biederman if (files) { 185728a6d671SEric W. Biederman /* 185828a6d671SEric W. Biederman * We are not taking a ref to the file structure, so we must 185928a6d671SEric W. Biederman * hold ->file_lock. 186028a6d671SEric W. Biederman */ 186128a6d671SEric W. Biederman spin_lock(&files->file_lock); 186228a6d671SEric W. Biederman file = fcheck_files(files, fd); 186328a6d671SEric W. Biederman if (file) { 18643dcd25f3SJan Blunck if (path) { 18653dcd25f3SJan Blunck *path = file->f_path; 18663dcd25f3SJan Blunck path_get(&file->f_path); 18673dcd25f3SJan Blunck } 186827932742SMiklos Szeredi if (info) 186927932742SMiklos Szeredi snprintf(info, PROC_FDINFO_MAX, 187027932742SMiklos Szeredi "pos:\t%lli\n" 187127932742SMiklos Szeredi "flags:\t0%o\n", 187227932742SMiklos Szeredi (long long) file->f_pos, 187327932742SMiklos Szeredi file->f_flags); 187428a6d671SEric W. Biederman spin_unlock(&files->file_lock); 187528a6d671SEric W. Biederman put_files_struct(files); 187628a6d671SEric W. Biederman return 0; 187728a6d671SEric W. Biederman } 187828a6d671SEric W. Biederman spin_unlock(&files->file_lock); 187928a6d671SEric W. Biederman put_files_struct(files); 188028a6d671SEric W. Biederman } 188128a6d671SEric W. Biederman return -ENOENT; 188228a6d671SEric W. Biederman } 188328a6d671SEric W. Biederman 18843dcd25f3SJan Blunck static int proc_fd_link(struct inode *inode, struct path *path) 188527932742SMiklos Szeredi { 18863dcd25f3SJan Blunck return proc_fd_info(inode, path, NULL); 188727932742SMiklos Szeredi } 188827932742SMiklos Szeredi 188928a6d671SEric W. Biederman static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd) 189028a6d671SEric W. Biederman { 189128a6d671SEric W. Biederman struct inode *inode = dentry->d_inode; 189228a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 189328a6d671SEric W. Biederman int fd = proc_fd(inode); 189428a6d671SEric W. Biederman struct files_struct *files; 1895c69e8d9cSDavid Howells const struct cred *cred; 189628a6d671SEric W. Biederman 189728a6d671SEric W. Biederman if (task) { 189828a6d671SEric W. Biederman files = get_files_struct(task); 189928a6d671SEric W. Biederman if (files) { 190028a6d671SEric W. Biederman rcu_read_lock(); 190128a6d671SEric W. Biederman if (fcheck_files(files, fd)) { 190228a6d671SEric W. Biederman rcu_read_unlock(); 190328a6d671SEric W. Biederman put_files_struct(files); 190428a6d671SEric W. Biederman if (task_dumpable(task)) { 1905c69e8d9cSDavid Howells rcu_read_lock(); 1906c69e8d9cSDavid Howells cred = __task_cred(task); 1907c69e8d9cSDavid Howells inode->i_uid = cred->euid; 1908c69e8d9cSDavid Howells inode->i_gid = cred->egid; 1909c69e8d9cSDavid Howells rcu_read_unlock(); 191028a6d671SEric W. Biederman } else { 191128a6d671SEric W. Biederman inode->i_uid = 0; 191228a6d671SEric W. Biederman inode->i_gid = 0; 191328a6d671SEric W. Biederman } 191428a6d671SEric W. Biederman inode->i_mode &= ~(S_ISUID | S_ISGID); 191528a6d671SEric W. Biederman security_task_to_inode(task, inode); 191628a6d671SEric W. Biederman put_task_struct(task); 191728a6d671SEric W. Biederman return 1; 191828a6d671SEric W. Biederman } 191928a6d671SEric W. Biederman rcu_read_unlock(); 192028a6d671SEric W. Biederman put_files_struct(files); 192128a6d671SEric W. Biederman } 192228a6d671SEric W. Biederman put_task_struct(task); 192328a6d671SEric W. Biederman } 192428a6d671SEric W. Biederman d_drop(dentry); 192528a6d671SEric W. Biederman return 0; 192628a6d671SEric W. Biederman } 192728a6d671SEric W. Biederman 1928d72f71ebSAl Viro static const struct dentry_operations tid_fd_dentry_operations = 192928a6d671SEric W. Biederman { 193028a6d671SEric W. Biederman .d_revalidate = tid_fd_revalidate, 193128a6d671SEric W. Biederman .d_delete = pid_delete_dentry, 193228a6d671SEric W. Biederman }; 193328a6d671SEric W. Biederman 1934444ceed8SEric W. Biederman static struct dentry *proc_fd_instantiate(struct inode *dir, 1935c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 193628a6d671SEric W. Biederman { 1937c5141e6dSEric Dumazet unsigned fd = *(const unsigned *)ptr; 193828a6d671SEric W. Biederman struct file *file; 193928a6d671SEric W. Biederman struct files_struct *files; 194028a6d671SEric W. Biederman struct inode *inode; 194128a6d671SEric W. Biederman struct proc_inode *ei; 1942444ceed8SEric W. Biederman struct dentry *error = ERR_PTR(-ENOENT); 194328a6d671SEric W. Biederman 194461a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 194528a6d671SEric W. Biederman if (!inode) 194628a6d671SEric W. Biederman goto out; 194728a6d671SEric W. Biederman ei = PROC_I(inode); 194828a6d671SEric W. Biederman ei->fd = fd; 194928a6d671SEric W. Biederman files = get_files_struct(task); 195028a6d671SEric W. Biederman if (!files) 1951444ceed8SEric W. Biederman goto out_iput; 195228a6d671SEric W. Biederman inode->i_mode = S_IFLNK; 195328a6d671SEric W. Biederman 195428a6d671SEric W. Biederman /* 195528a6d671SEric W. Biederman * We are not taking a ref to the file structure, so we must 195628a6d671SEric W. Biederman * hold ->file_lock. 195728a6d671SEric W. Biederman */ 195828a6d671SEric W. Biederman spin_lock(&files->file_lock); 195928a6d671SEric W. Biederman file = fcheck_files(files, fd); 196028a6d671SEric W. Biederman if (!file) 1961444ceed8SEric W. Biederman goto out_unlock; 1962aeb5d727SAl Viro if (file->f_mode & FMODE_READ) 196328a6d671SEric W. Biederman inode->i_mode |= S_IRUSR | S_IXUSR; 1964aeb5d727SAl Viro if (file->f_mode & FMODE_WRITE) 196528a6d671SEric W. Biederman inode->i_mode |= S_IWUSR | S_IXUSR; 196628a6d671SEric W. Biederman spin_unlock(&files->file_lock); 196728a6d671SEric W. Biederman put_files_struct(files); 1968444ceed8SEric W. Biederman 196928a6d671SEric W. Biederman inode->i_op = &proc_pid_link_inode_operations; 197028a6d671SEric W. Biederman inode->i_size = 64; 197128a6d671SEric W. Biederman ei->op.proc_get_link = proc_fd_link; 1972*fb045adbSNick Piggin d_set_d_op(dentry, &tid_fd_dentry_operations); 197328a6d671SEric W. Biederman d_add(dentry, inode); 197428a6d671SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 197528a6d671SEric W. Biederman if (tid_fd_revalidate(dentry, NULL)) 1976444ceed8SEric W. Biederman error = NULL; 1977444ceed8SEric W. Biederman 1978444ceed8SEric W. Biederman out: 1979444ceed8SEric W. Biederman return error; 1980444ceed8SEric W. Biederman out_unlock: 1981444ceed8SEric W. Biederman spin_unlock(&files->file_lock); 1982444ceed8SEric W. Biederman put_files_struct(files); 1983444ceed8SEric W. Biederman out_iput: 1984444ceed8SEric W. Biederman iput(inode); 1985444ceed8SEric W. Biederman goto out; 1986444ceed8SEric W. Biederman } 1987444ceed8SEric W. Biederman 198827932742SMiklos Szeredi static struct dentry *proc_lookupfd_common(struct inode *dir, 198927932742SMiklos Szeredi struct dentry *dentry, 199027932742SMiklos Szeredi instantiate_t instantiate) 1991444ceed8SEric W. Biederman { 1992444ceed8SEric W. Biederman struct task_struct *task = get_proc_task(dir); 1993444ceed8SEric W. Biederman unsigned fd = name_to_int(dentry); 1994444ceed8SEric W. Biederman struct dentry *result = ERR_PTR(-ENOENT); 1995444ceed8SEric W. Biederman 1996444ceed8SEric W. Biederman if (!task) 1997444ceed8SEric W. Biederman goto out_no_task; 1998444ceed8SEric W. Biederman if (fd == ~0U) 1999444ceed8SEric W. Biederman goto out; 2000444ceed8SEric W. Biederman 200127932742SMiklos Szeredi result = instantiate(dir, dentry, task, &fd); 200228a6d671SEric W. Biederman out: 200328a6d671SEric W. Biederman put_task_struct(task); 200428a6d671SEric W. Biederman out_no_task: 200528a6d671SEric W. Biederman return result; 200628a6d671SEric W. Biederman } 200728a6d671SEric W. Biederman 200827932742SMiklos Szeredi static int proc_readfd_common(struct file * filp, void * dirent, 200927932742SMiklos Szeredi filldir_t filldir, instantiate_t instantiate) 20101da177e4SLinus Torvalds { 20112fddfeefSJosef "Jeff" Sipek struct dentry *dentry = filp->f_path.dentry; 20125634708bSEric W. Biederman struct inode *inode = dentry->d_inode; 201399f89551SEric W. Biederman struct task_struct *p = get_proc_task(inode); 2014457c2510SPavel Emelyanov unsigned int fd, ino; 20151da177e4SLinus Torvalds int retval; 20161da177e4SLinus Torvalds struct files_struct * files; 20171da177e4SLinus Torvalds 20181da177e4SLinus Torvalds retval = -ENOENT; 201999f89551SEric W. Biederman if (!p) 202099f89551SEric W. Biederman goto out_no_task; 20211da177e4SLinus Torvalds retval = 0; 20221da177e4SLinus Torvalds 20231da177e4SLinus Torvalds fd = filp->f_pos; 20241da177e4SLinus Torvalds switch (fd) { 20251da177e4SLinus Torvalds case 0: 20261da177e4SLinus Torvalds if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0) 20271da177e4SLinus Torvalds goto out; 20281da177e4SLinus Torvalds filp->f_pos++; 20291da177e4SLinus Torvalds case 1: 20305634708bSEric W. Biederman ino = parent_ino(dentry); 20311da177e4SLinus Torvalds if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0) 20321da177e4SLinus Torvalds goto out; 20331da177e4SLinus Torvalds filp->f_pos++; 20341da177e4SLinus Torvalds default: 20351da177e4SLinus Torvalds files = get_files_struct(p); 20361da177e4SLinus Torvalds if (!files) 20371da177e4SLinus Torvalds goto out; 2038b835996fSDipankar Sarma rcu_read_lock(); 20391da177e4SLinus Torvalds for (fd = filp->f_pos-2; 20409b4f526cSAl Viro fd < files_fdtable(files)->max_fds; 20411da177e4SLinus Torvalds fd++, filp->f_pos++) { 204227932742SMiklos Szeredi char name[PROC_NUMBUF]; 204327932742SMiklos Szeredi int len; 20441da177e4SLinus Torvalds 20451da177e4SLinus Torvalds if (!fcheck_files(files, fd)) 20461da177e4SLinus Torvalds continue; 2047b835996fSDipankar Sarma rcu_read_unlock(); 20481da177e4SLinus Torvalds 204927932742SMiklos Szeredi len = snprintf(name, sizeof(name), "%d", fd); 205027932742SMiklos Szeredi if (proc_fill_cache(filp, dirent, filldir, 205127932742SMiklos Szeredi name, len, instantiate, 205227932742SMiklos Szeredi p, &fd) < 0) { 2053b835996fSDipankar Sarma rcu_read_lock(); 20541da177e4SLinus Torvalds break; 20551da177e4SLinus Torvalds } 2056b835996fSDipankar Sarma rcu_read_lock(); 20571da177e4SLinus Torvalds } 2058b835996fSDipankar Sarma rcu_read_unlock(); 20591da177e4SLinus Torvalds put_files_struct(files); 20601da177e4SLinus Torvalds } 20611da177e4SLinus Torvalds out: 206299f89551SEric W. Biederman put_task_struct(p); 206399f89551SEric W. Biederman out_no_task: 20641da177e4SLinus Torvalds return retval; 20651da177e4SLinus Torvalds } 20661da177e4SLinus Torvalds 206727932742SMiklos Szeredi static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry, 206827932742SMiklos Szeredi struct nameidata *nd) 206927932742SMiklos Szeredi { 207027932742SMiklos Szeredi return proc_lookupfd_common(dir, dentry, proc_fd_instantiate); 207127932742SMiklos Szeredi } 207227932742SMiklos Szeredi 207327932742SMiklos Szeredi static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir) 207427932742SMiklos Szeredi { 207527932742SMiklos Szeredi return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate); 207627932742SMiklos Szeredi } 207727932742SMiklos Szeredi 207827932742SMiklos Szeredi static ssize_t proc_fdinfo_read(struct file *file, char __user *buf, 207927932742SMiklos Szeredi size_t len, loff_t *ppos) 208027932742SMiklos Szeredi { 208127932742SMiklos Szeredi char tmp[PROC_FDINFO_MAX]; 20823dcd25f3SJan Blunck int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp); 208327932742SMiklos Szeredi if (!err) 208427932742SMiklos Szeredi err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp)); 208527932742SMiklos Szeredi return err; 208627932742SMiklos Szeredi } 208727932742SMiklos Szeredi 208827932742SMiklos Szeredi static const struct file_operations proc_fdinfo_file_operations = { 208927932742SMiklos Szeredi .open = nonseekable_open, 209027932742SMiklos Szeredi .read = proc_fdinfo_read, 20916038f373SArnd Bergmann .llseek = no_llseek, 209227932742SMiklos Szeredi }; 209327932742SMiklos Szeredi 209400977a59SArjan van de Ven static const struct file_operations proc_fd_operations = { 20951da177e4SLinus Torvalds .read = generic_read_dir, 20961da177e4SLinus Torvalds .readdir = proc_readfd, 20976038f373SArnd Bergmann .llseek = default_llseek, 20981da177e4SLinus Torvalds }; 20991da177e4SLinus Torvalds 21001da177e4SLinus Torvalds /* 21018948e11fSAlexey Dobriyan * /proc/pid/fd needs a special permission handler so that a process can still 21028948e11fSAlexey Dobriyan * access /proc/self/fd after it has executed a setuid(). 21038948e11fSAlexey Dobriyan */ 2104e6305c43SAl Viro static int proc_fd_permission(struct inode *inode, int mask) 21058948e11fSAlexey Dobriyan { 21068948e11fSAlexey Dobriyan int rv; 21078948e11fSAlexey Dobriyan 21088948e11fSAlexey Dobriyan rv = generic_permission(inode, mask, NULL); 21098948e11fSAlexey Dobriyan if (rv == 0) 21108948e11fSAlexey Dobriyan return 0; 21118948e11fSAlexey Dobriyan if (task_pid(current) == proc_pid(inode)) 21128948e11fSAlexey Dobriyan rv = 0; 21138948e11fSAlexey Dobriyan return rv; 21148948e11fSAlexey Dobriyan } 21158948e11fSAlexey Dobriyan 21168948e11fSAlexey Dobriyan /* 21171da177e4SLinus Torvalds * proc directories can do almost nothing.. 21181da177e4SLinus Torvalds */ 2119c5ef1c42SArjan van de Ven static const struct inode_operations proc_fd_inode_operations = { 21201da177e4SLinus Torvalds .lookup = proc_lookupfd, 21218948e11fSAlexey Dobriyan .permission = proc_fd_permission, 21226d76fa58SLinus Torvalds .setattr = proc_setattr, 21231da177e4SLinus Torvalds }; 21241da177e4SLinus Torvalds 212527932742SMiklos Szeredi static struct dentry *proc_fdinfo_instantiate(struct inode *dir, 212627932742SMiklos Szeredi struct dentry *dentry, struct task_struct *task, const void *ptr) 212727932742SMiklos Szeredi { 212827932742SMiklos Szeredi unsigned fd = *(unsigned *)ptr; 212927932742SMiklos Szeredi struct inode *inode; 213027932742SMiklos Szeredi struct proc_inode *ei; 213127932742SMiklos Szeredi struct dentry *error = ERR_PTR(-ENOENT); 213227932742SMiklos Szeredi 213327932742SMiklos Szeredi inode = proc_pid_make_inode(dir->i_sb, task); 213427932742SMiklos Szeredi if (!inode) 213527932742SMiklos Szeredi goto out; 213627932742SMiklos Szeredi ei = PROC_I(inode); 213727932742SMiklos Szeredi ei->fd = fd; 213827932742SMiklos Szeredi inode->i_mode = S_IFREG | S_IRUSR; 213927932742SMiklos Szeredi inode->i_fop = &proc_fdinfo_file_operations; 2140*fb045adbSNick Piggin d_set_d_op(dentry, &tid_fd_dentry_operations); 214127932742SMiklos Szeredi d_add(dentry, inode); 214227932742SMiklos Szeredi /* Close the race of the process dying before we return the dentry */ 214327932742SMiklos Szeredi if (tid_fd_revalidate(dentry, NULL)) 214427932742SMiklos Szeredi error = NULL; 214527932742SMiklos Szeredi 214627932742SMiklos Szeredi out: 214727932742SMiklos Szeredi return error; 214827932742SMiklos Szeredi } 214927932742SMiklos Szeredi 215027932742SMiklos Szeredi static struct dentry *proc_lookupfdinfo(struct inode *dir, 215127932742SMiklos Szeredi struct dentry *dentry, 215227932742SMiklos Szeredi struct nameidata *nd) 215327932742SMiklos Szeredi { 215427932742SMiklos Szeredi return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate); 215527932742SMiklos Szeredi } 215627932742SMiklos Szeredi 215727932742SMiklos Szeredi static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir) 215827932742SMiklos Szeredi { 215927932742SMiklos Szeredi return proc_readfd_common(filp, dirent, filldir, 216027932742SMiklos Szeredi proc_fdinfo_instantiate); 216127932742SMiklos Szeredi } 216227932742SMiklos Szeredi 216327932742SMiklos Szeredi static const struct file_operations proc_fdinfo_operations = { 216427932742SMiklos Szeredi .read = generic_read_dir, 216527932742SMiklos Szeredi .readdir = proc_readfdinfo, 21666038f373SArnd Bergmann .llseek = default_llseek, 216727932742SMiklos Szeredi }; 216827932742SMiklos Szeredi 216927932742SMiklos Szeredi /* 217027932742SMiklos Szeredi * proc directories can do almost nothing.. 217127932742SMiklos Szeredi */ 217227932742SMiklos Szeredi static const struct inode_operations proc_fdinfo_inode_operations = { 217327932742SMiklos Szeredi .lookup = proc_lookupfdinfo, 217427932742SMiklos Szeredi .setattr = proc_setattr, 217527932742SMiklos Szeredi }; 217627932742SMiklos Szeredi 217727932742SMiklos Szeredi 2178444ceed8SEric W. Biederman static struct dentry *proc_pident_instantiate(struct inode *dir, 2179c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 2180444ceed8SEric W. Biederman { 2181c5141e6dSEric Dumazet const struct pid_entry *p = ptr; 2182444ceed8SEric W. Biederman struct inode *inode; 2183444ceed8SEric W. Biederman struct proc_inode *ei; 2184bd6daba9SKOSAKI Motohiro struct dentry *error = ERR_PTR(-ENOENT); 2185444ceed8SEric W. Biederman 218661a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 2187444ceed8SEric W. Biederman if (!inode) 2188444ceed8SEric W. Biederman goto out; 2189444ceed8SEric W. Biederman 2190444ceed8SEric W. Biederman ei = PROC_I(inode); 2191444ceed8SEric W. Biederman inode->i_mode = p->mode; 2192444ceed8SEric W. Biederman if (S_ISDIR(inode->i_mode)) 2193444ceed8SEric W. Biederman inode->i_nlink = 2; /* Use getattr to fix if necessary */ 2194444ceed8SEric W. Biederman if (p->iop) 2195444ceed8SEric W. Biederman inode->i_op = p->iop; 2196444ceed8SEric W. Biederman if (p->fop) 2197444ceed8SEric W. Biederman inode->i_fop = p->fop; 2198444ceed8SEric W. Biederman ei->op = p->op; 2199*fb045adbSNick Piggin d_set_d_op(dentry, &pid_dentry_operations); 2200444ceed8SEric W. Biederman d_add(dentry, inode); 2201444ceed8SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 2202444ceed8SEric W. Biederman if (pid_revalidate(dentry, NULL)) 2203444ceed8SEric W. Biederman error = NULL; 2204444ceed8SEric W. Biederman out: 2205444ceed8SEric W. Biederman return error; 2206444ceed8SEric W. Biederman } 2207444ceed8SEric W. Biederman 22081da177e4SLinus Torvalds static struct dentry *proc_pident_lookup(struct inode *dir, 22091da177e4SLinus Torvalds struct dentry *dentry, 2210c5141e6dSEric Dumazet const struct pid_entry *ents, 22117bcd6b0eSEric W. Biederman unsigned int nents) 22121da177e4SLinus Torvalds { 2213cd6a3ce9SEric W. Biederman struct dentry *error; 221499f89551SEric W. Biederman struct task_struct *task = get_proc_task(dir); 2215c5141e6dSEric Dumazet const struct pid_entry *p, *last; 22161da177e4SLinus Torvalds 2217cd6a3ce9SEric W. Biederman error = ERR_PTR(-ENOENT); 22181da177e4SLinus Torvalds 221999f89551SEric W. Biederman if (!task) 222099f89551SEric W. Biederman goto out_no_task; 22211da177e4SLinus Torvalds 222220cdc894SEric W. Biederman /* 222320cdc894SEric W. Biederman * Yes, it does not scale. And it should not. Don't add 222420cdc894SEric W. Biederman * new entries into /proc/<tgid>/ without very good reasons. 222520cdc894SEric W. Biederman */ 22267bcd6b0eSEric W. Biederman last = &ents[nents - 1]; 22277bcd6b0eSEric W. Biederman for (p = ents; p <= last; p++) { 22281da177e4SLinus Torvalds if (p->len != dentry->d_name.len) 22291da177e4SLinus Torvalds continue; 22301da177e4SLinus Torvalds if (!memcmp(dentry->d_name.name, p->name, p->len)) 22311da177e4SLinus Torvalds break; 22321da177e4SLinus Torvalds } 22337bcd6b0eSEric W. Biederman if (p > last) 22341da177e4SLinus Torvalds goto out; 22351da177e4SLinus Torvalds 2236444ceed8SEric W. Biederman error = proc_pident_instantiate(dir, dentry, task, p); 22371da177e4SLinus Torvalds out: 223899f89551SEric W. Biederman put_task_struct(task); 223999f89551SEric W. Biederman out_no_task: 2240cd6a3ce9SEric W. Biederman return error; 22411da177e4SLinus Torvalds } 22421da177e4SLinus Torvalds 2243c5141e6dSEric Dumazet static int proc_pident_fill_cache(struct file *filp, void *dirent, 2244c5141e6dSEric Dumazet filldir_t filldir, struct task_struct *task, const struct pid_entry *p) 224561a28784SEric W. Biederman { 224661a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, p->name, p->len, 224761a28784SEric W. Biederman proc_pident_instantiate, task, p); 224861a28784SEric W. Biederman } 224961a28784SEric W. Biederman 225028a6d671SEric W. Biederman static int proc_pident_readdir(struct file *filp, 225128a6d671SEric W. Biederman void *dirent, filldir_t filldir, 2252c5141e6dSEric Dumazet const struct pid_entry *ents, unsigned int nents) 225328a6d671SEric W. Biederman { 225428a6d671SEric W. Biederman int i; 22552fddfeefSJosef "Jeff" Sipek struct dentry *dentry = filp->f_path.dentry; 225628a6d671SEric W. Biederman struct inode *inode = dentry->d_inode; 225728a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 2258c5141e6dSEric Dumazet const struct pid_entry *p, *last; 225928a6d671SEric W. Biederman ino_t ino; 226028a6d671SEric W. Biederman int ret; 226128a6d671SEric W. Biederman 226228a6d671SEric W. Biederman ret = -ENOENT; 226328a6d671SEric W. Biederman if (!task) 226461a28784SEric W. Biederman goto out_no_task; 226528a6d671SEric W. Biederman 226628a6d671SEric W. Biederman ret = 0; 226728a6d671SEric W. Biederman i = filp->f_pos; 226828a6d671SEric W. Biederman switch (i) { 226928a6d671SEric W. Biederman case 0: 227028a6d671SEric W. Biederman ino = inode->i_ino; 227128a6d671SEric W. Biederman if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0) 227228a6d671SEric W. Biederman goto out; 227328a6d671SEric W. Biederman i++; 227428a6d671SEric W. Biederman filp->f_pos++; 227528a6d671SEric W. Biederman /* fall through */ 227628a6d671SEric W. Biederman case 1: 227728a6d671SEric W. Biederman ino = parent_ino(dentry); 227828a6d671SEric W. Biederman if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0) 227928a6d671SEric W. Biederman goto out; 228028a6d671SEric W. Biederman i++; 228128a6d671SEric W. Biederman filp->f_pos++; 228228a6d671SEric W. Biederman /* fall through */ 228328a6d671SEric W. Biederman default: 228428a6d671SEric W. Biederman i -= 2; 228528a6d671SEric W. Biederman if (i >= nents) { 228628a6d671SEric W. Biederman ret = 1; 228728a6d671SEric W. Biederman goto out; 228828a6d671SEric W. Biederman } 228928a6d671SEric W. Biederman p = ents + i; 22907bcd6b0eSEric W. Biederman last = &ents[nents - 1]; 22917bcd6b0eSEric W. Biederman while (p <= last) { 229261a28784SEric W. Biederman if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0) 229328a6d671SEric W. Biederman goto out; 229428a6d671SEric W. Biederman filp->f_pos++; 229528a6d671SEric W. Biederman p++; 229628a6d671SEric W. Biederman } 22971da177e4SLinus Torvalds } 22981da177e4SLinus Torvalds 229928a6d671SEric W. Biederman ret = 1; 230028a6d671SEric W. Biederman out: 230161a28784SEric W. Biederman put_task_struct(task); 230261a28784SEric W. Biederman out_no_task: 230328a6d671SEric W. Biederman return ret; 23041da177e4SLinus Torvalds } 23051da177e4SLinus Torvalds 23061da177e4SLinus Torvalds #ifdef CONFIG_SECURITY 230728a6d671SEric W. Biederman static ssize_t proc_pid_attr_read(struct file * file, char __user * buf, 230828a6d671SEric W. Biederman size_t count, loff_t *ppos) 230928a6d671SEric W. Biederman { 23102fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 231104ff9708SAl Viro char *p = NULL; 231228a6d671SEric W. Biederman ssize_t length; 231328a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 231428a6d671SEric W. Biederman 231528a6d671SEric W. Biederman if (!task) 231604ff9708SAl Viro return -ESRCH; 231728a6d671SEric W. Biederman 231828a6d671SEric W. Biederman length = security_getprocattr(task, 23192fddfeefSJosef "Jeff" Sipek (char*)file->f_path.dentry->d_name.name, 232004ff9708SAl Viro &p); 232128a6d671SEric W. Biederman put_task_struct(task); 232204ff9708SAl Viro if (length > 0) 232304ff9708SAl Viro length = simple_read_from_buffer(buf, count, ppos, p, length); 232404ff9708SAl Viro kfree(p); 232528a6d671SEric W. Biederman return length; 232628a6d671SEric W. Biederman } 232728a6d671SEric W. Biederman 232828a6d671SEric W. Biederman static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf, 232928a6d671SEric W. Biederman size_t count, loff_t *ppos) 233028a6d671SEric W. Biederman { 23312fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 233228a6d671SEric W. Biederman char *page; 233328a6d671SEric W. Biederman ssize_t length; 233428a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 233528a6d671SEric W. Biederman 233628a6d671SEric W. Biederman length = -ESRCH; 233728a6d671SEric W. Biederman if (!task) 233828a6d671SEric W. Biederman goto out_no_task; 233928a6d671SEric W. Biederman if (count > PAGE_SIZE) 234028a6d671SEric W. Biederman count = PAGE_SIZE; 234128a6d671SEric W. Biederman 234228a6d671SEric W. Biederman /* No partial writes. */ 234328a6d671SEric W. Biederman length = -EINVAL; 234428a6d671SEric W. Biederman if (*ppos != 0) 234528a6d671SEric W. Biederman goto out; 234628a6d671SEric W. Biederman 234728a6d671SEric W. Biederman length = -ENOMEM; 2348e12ba74dSMel Gorman page = (char*)__get_free_page(GFP_TEMPORARY); 234928a6d671SEric W. Biederman if (!page) 235028a6d671SEric W. Biederman goto out; 235128a6d671SEric W. Biederman 235228a6d671SEric W. Biederman length = -EFAULT; 235328a6d671SEric W. Biederman if (copy_from_user(page, buf, count)) 235428a6d671SEric W. Biederman goto out_free; 235528a6d671SEric W. Biederman 2356107db7c7SDavid Howells /* Guard against adverse ptrace interaction */ 23579b1bf12dSKOSAKI Motohiro length = mutex_lock_interruptible(&task->signal->cred_guard_mutex); 2358107db7c7SDavid Howells if (length < 0) 2359107db7c7SDavid Howells goto out_free; 2360107db7c7SDavid Howells 236128a6d671SEric W. Biederman length = security_setprocattr(task, 23622fddfeefSJosef "Jeff" Sipek (char*)file->f_path.dentry->d_name.name, 236328a6d671SEric W. Biederman (void*)page, count); 23649b1bf12dSKOSAKI Motohiro mutex_unlock(&task->signal->cred_guard_mutex); 236528a6d671SEric W. Biederman out_free: 236628a6d671SEric W. Biederman free_page((unsigned long) page); 236728a6d671SEric W. Biederman out: 236828a6d671SEric W. Biederman put_task_struct(task); 236928a6d671SEric W. Biederman out_no_task: 237028a6d671SEric W. Biederman return length; 237128a6d671SEric W. Biederman } 237228a6d671SEric W. Biederman 237300977a59SArjan van de Ven static const struct file_operations proc_pid_attr_operations = { 237428a6d671SEric W. Biederman .read = proc_pid_attr_read, 237528a6d671SEric W. Biederman .write = proc_pid_attr_write, 237687df8424SArnd Bergmann .llseek = generic_file_llseek, 237728a6d671SEric W. Biederman }; 237828a6d671SEric W. Biederman 2379c5141e6dSEric Dumazet static const struct pid_entry attr_dir_stuff[] = { 2380631f9c18SAlexey Dobriyan REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2381631f9c18SAlexey Dobriyan REG("prev", S_IRUGO, proc_pid_attr_operations), 2382631f9c18SAlexey Dobriyan REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2383631f9c18SAlexey Dobriyan REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2384631f9c18SAlexey Dobriyan REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2385631f9c18SAlexey Dobriyan REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 238628a6d671SEric W. Biederman }; 238728a6d671SEric W. Biederman 238872d9dcfcSEric W. Biederman static int proc_attr_dir_readdir(struct file * filp, 23891da177e4SLinus Torvalds void * dirent, filldir_t filldir) 23901da177e4SLinus Torvalds { 23911da177e4SLinus Torvalds return proc_pident_readdir(filp,dirent,filldir, 239272d9dcfcSEric W. Biederman attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff)); 23931da177e4SLinus Torvalds } 23941da177e4SLinus Torvalds 239500977a59SArjan van de Ven static const struct file_operations proc_attr_dir_operations = { 23961da177e4SLinus Torvalds .read = generic_read_dir, 239772d9dcfcSEric W. Biederman .readdir = proc_attr_dir_readdir, 23986038f373SArnd Bergmann .llseek = default_llseek, 23991da177e4SLinus Torvalds }; 24001da177e4SLinus Torvalds 240172d9dcfcSEric W. Biederman static struct dentry *proc_attr_dir_lookup(struct inode *dir, 24021da177e4SLinus Torvalds struct dentry *dentry, struct nameidata *nd) 24031da177e4SLinus Torvalds { 24047bcd6b0eSEric W. Biederman return proc_pident_lookup(dir, dentry, 24057bcd6b0eSEric W. Biederman attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff)); 24061da177e4SLinus Torvalds } 24071da177e4SLinus Torvalds 2408c5ef1c42SArjan van de Ven static const struct inode_operations proc_attr_dir_inode_operations = { 240972d9dcfcSEric W. Biederman .lookup = proc_attr_dir_lookup, 241099f89551SEric W. Biederman .getattr = pid_getattr, 24116d76fa58SLinus Torvalds .setattr = proc_setattr, 24121da177e4SLinus Torvalds }; 24131da177e4SLinus Torvalds 24141da177e4SLinus Torvalds #endif 24151da177e4SLinus Torvalds 2416698ba7b5SChristoph Hellwig #ifdef CONFIG_ELF_CORE 24173cb4a0bbSKawai, Hidehiro static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf, 24183cb4a0bbSKawai, Hidehiro size_t count, loff_t *ppos) 24193cb4a0bbSKawai, Hidehiro { 24203cb4a0bbSKawai, Hidehiro struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 24213cb4a0bbSKawai, Hidehiro struct mm_struct *mm; 24223cb4a0bbSKawai, Hidehiro char buffer[PROC_NUMBUF]; 24233cb4a0bbSKawai, Hidehiro size_t len; 24243cb4a0bbSKawai, Hidehiro int ret; 24253cb4a0bbSKawai, Hidehiro 24263cb4a0bbSKawai, Hidehiro if (!task) 24273cb4a0bbSKawai, Hidehiro return -ESRCH; 24283cb4a0bbSKawai, Hidehiro 24293cb4a0bbSKawai, Hidehiro ret = 0; 24303cb4a0bbSKawai, Hidehiro mm = get_task_mm(task); 24313cb4a0bbSKawai, Hidehiro if (mm) { 24323cb4a0bbSKawai, Hidehiro len = snprintf(buffer, sizeof(buffer), "%08lx\n", 24333cb4a0bbSKawai, Hidehiro ((mm->flags & MMF_DUMP_FILTER_MASK) >> 24343cb4a0bbSKawai, Hidehiro MMF_DUMP_FILTER_SHIFT)); 24353cb4a0bbSKawai, Hidehiro mmput(mm); 24363cb4a0bbSKawai, Hidehiro ret = simple_read_from_buffer(buf, count, ppos, buffer, len); 24373cb4a0bbSKawai, Hidehiro } 24383cb4a0bbSKawai, Hidehiro 24393cb4a0bbSKawai, Hidehiro put_task_struct(task); 24403cb4a0bbSKawai, Hidehiro 24413cb4a0bbSKawai, Hidehiro return ret; 24423cb4a0bbSKawai, Hidehiro } 24433cb4a0bbSKawai, Hidehiro 24443cb4a0bbSKawai, Hidehiro static ssize_t proc_coredump_filter_write(struct file *file, 24453cb4a0bbSKawai, Hidehiro const char __user *buf, 24463cb4a0bbSKawai, Hidehiro size_t count, 24473cb4a0bbSKawai, Hidehiro loff_t *ppos) 24483cb4a0bbSKawai, Hidehiro { 24493cb4a0bbSKawai, Hidehiro struct task_struct *task; 24503cb4a0bbSKawai, Hidehiro struct mm_struct *mm; 24513cb4a0bbSKawai, Hidehiro char buffer[PROC_NUMBUF], *end; 24523cb4a0bbSKawai, Hidehiro unsigned int val; 24533cb4a0bbSKawai, Hidehiro int ret; 24543cb4a0bbSKawai, Hidehiro int i; 24553cb4a0bbSKawai, Hidehiro unsigned long mask; 24563cb4a0bbSKawai, Hidehiro 24573cb4a0bbSKawai, Hidehiro ret = -EFAULT; 24583cb4a0bbSKawai, Hidehiro memset(buffer, 0, sizeof(buffer)); 24593cb4a0bbSKawai, Hidehiro if (count > sizeof(buffer) - 1) 24603cb4a0bbSKawai, Hidehiro count = sizeof(buffer) - 1; 24613cb4a0bbSKawai, Hidehiro if (copy_from_user(buffer, buf, count)) 24623cb4a0bbSKawai, Hidehiro goto out_no_task; 24633cb4a0bbSKawai, Hidehiro 24643cb4a0bbSKawai, Hidehiro ret = -EINVAL; 24653cb4a0bbSKawai, Hidehiro val = (unsigned int)simple_strtoul(buffer, &end, 0); 24663cb4a0bbSKawai, Hidehiro if (*end == '\n') 24673cb4a0bbSKawai, Hidehiro end++; 24683cb4a0bbSKawai, Hidehiro if (end - buffer == 0) 24693cb4a0bbSKawai, Hidehiro goto out_no_task; 24703cb4a0bbSKawai, Hidehiro 24713cb4a0bbSKawai, Hidehiro ret = -ESRCH; 24723cb4a0bbSKawai, Hidehiro task = get_proc_task(file->f_dentry->d_inode); 24733cb4a0bbSKawai, Hidehiro if (!task) 24743cb4a0bbSKawai, Hidehiro goto out_no_task; 24753cb4a0bbSKawai, Hidehiro 24763cb4a0bbSKawai, Hidehiro ret = end - buffer; 24773cb4a0bbSKawai, Hidehiro mm = get_task_mm(task); 24783cb4a0bbSKawai, Hidehiro if (!mm) 24793cb4a0bbSKawai, Hidehiro goto out_no_mm; 24803cb4a0bbSKawai, Hidehiro 24813cb4a0bbSKawai, Hidehiro for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) { 24823cb4a0bbSKawai, Hidehiro if (val & mask) 24833cb4a0bbSKawai, Hidehiro set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags); 24843cb4a0bbSKawai, Hidehiro else 24853cb4a0bbSKawai, Hidehiro clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags); 24863cb4a0bbSKawai, Hidehiro } 24873cb4a0bbSKawai, Hidehiro 24883cb4a0bbSKawai, Hidehiro mmput(mm); 24893cb4a0bbSKawai, Hidehiro out_no_mm: 24903cb4a0bbSKawai, Hidehiro put_task_struct(task); 24913cb4a0bbSKawai, Hidehiro out_no_task: 24923cb4a0bbSKawai, Hidehiro return ret; 24933cb4a0bbSKawai, Hidehiro } 24943cb4a0bbSKawai, Hidehiro 24953cb4a0bbSKawai, Hidehiro static const struct file_operations proc_coredump_filter_operations = { 24963cb4a0bbSKawai, Hidehiro .read = proc_coredump_filter_read, 24973cb4a0bbSKawai, Hidehiro .write = proc_coredump_filter_write, 249887df8424SArnd Bergmann .llseek = generic_file_llseek, 24993cb4a0bbSKawai, Hidehiro }; 25003cb4a0bbSKawai, Hidehiro #endif 25013cb4a0bbSKawai, Hidehiro 25021da177e4SLinus Torvalds /* 25031da177e4SLinus Torvalds * /proc/self: 25041da177e4SLinus Torvalds */ 25051da177e4SLinus Torvalds static int proc_self_readlink(struct dentry *dentry, char __user *buffer, 25061da177e4SLinus Torvalds int buflen) 25071da177e4SLinus Torvalds { 2508488e5bc4SEric W. Biederman struct pid_namespace *ns = dentry->d_sb->s_fs_info; 2509b55fcb22SAndrew Morton pid_t tgid = task_tgid_nr_ns(current, ns); 25108578cea7SEric W. Biederman char tmp[PROC_NUMBUF]; 2511b55fcb22SAndrew Morton if (!tgid) 2512488e5bc4SEric W. Biederman return -ENOENT; 2513b55fcb22SAndrew Morton sprintf(tmp, "%d", tgid); 25141da177e4SLinus Torvalds return vfs_readlink(dentry,buffer,buflen,tmp); 25151da177e4SLinus Torvalds } 25161da177e4SLinus Torvalds 2517008b150aSAl Viro static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd) 25181da177e4SLinus Torvalds { 2519488e5bc4SEric W. Biederman struct pid_namespace *ns = dentry->d_sb->s_fs_info; 2520b55fcb22SAndrew Morton pid_t tgid = task_tgid_nr_ns(current, ns); 25217fee4868SAl Viro char *name = ERR_PTR(-ENOENT); 25227fee4868SAl Viro if (tgid) { 25237fee4868SAl Viro name = __getname(); 25247fee4868SAl Viro if (!name) 25257fee4868SAl Viro name = ERR_PTR(-ENOMEM); 25267fee4868SAl Viro else 25277fee4868SAl Viro sprintf(name, "%d", tgid); 25287fee4868SAl Viro } 25297fee4868SAl Viro nd_set_link(nd, name); 25307fee4868SAl Viro return NULL; 25317fee4868SAl Viro } 25327fee4868SAl Viro 25337fee4868SAl Viro static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd, 25347fee4868SAl Viro void *cookie) 25357fee4868SAl Viro { 25367fee4868SAl Viro char *s = nd_get_link(nd); 25377fee4868SAl Viro if (!IS_ERR(s)) 25387fee4868SAl Viro __putname(s); 25391da177e4SLinus Torvalds } 25401da177e4SLinus Torvalds 2541c5ef1c42SArjan van de Ven static const struct inode_operations proc_self_inode_operations = { 25421da177e4SLinus Torvalds .readlink = proc_self_readlink, 25431da177e4SLinus Torvalds .follow_link = proc_self_follow_link, 25447fee4868SAl Viro .put_link = proc_self_put_link, 25451da177e4SLinus Torvalds }; 25461da177e4SLinus Torvalds 254728a6d671SEric W. Biederman /* 2548801199ceSEric W. Biederman * proc base 2549801199ceSEric W. Biederman * 2550801199ceSEric W. Biederman * These are the directory entries in the root directory of /proc 2551801199ceSEric W. Biederman * that properly belong to the /proc filesystem, as they describe 2552801199ceSEric W. Biederman * describe something that is process related. 2553801199ceSEric W. Biederman */ 2554c5141e6dSEric Dumazet static const struct pid_entry proc_base_stuff[] = { 255561a28784SEric W. Biederman NOD("self", S_IFLNK|S_IRWXUGO, 2556801199ceSEric W. Biederman &proc_self_inode_operations, NULL, {}), 2557801199ceSEric W. Biederman }; 2558801199ceSEric W. Biederman 2559801199ceSEric W. Biederman /* 2560801199ceSEric W. Biederman * Exceptional case: normally we are not allowed to unhash a busy 2561801199ceSEric W. Biederman * directory. In this case, however, we can do it - no aliasing problems 2562801199ceSEric W. Biederman * due to the way we treat inodes. 2563801199ceSEric W. Biederman */ 2564801199ceSEric W. Biederman static int proc_base_revalidate(struct dentry *dentry, struct nameidata *nd) 2565801199ceSEric W. Biederman { 2566801199ceSEric W. Biederman struct inode *inode = dentry->d_inode; 2567801199ceSEric W. Biederman struct task_struct *task = get_proc_task(inode); 2568801199ceSEric W. Biederman if (task) { 2569801199ceSEric W. Biederman put_task_struct(task); 2570801199ceSEric W. Biederman return 1; 2571801199ceSEric W. Biederman } 2572801199ceSEric W. Biederman d_drop(dentry); 2573801199ceSEric W. Biederman return 0; 2574801199ceSEric W. Biederman } 2575801199ceSEric W. Biederman 2576d72f71ebSAl Viro static const struct dentry_operations proc_base_dentry_operations = 2577801199ceSEric W. Biederman { 2578801199ceSEric W. Biederman .d_revalidate = proc_base_revalidate, 2579801199ceSEric W. Biederman .d_delete = pid_delete_dentry, 2580801199ceSEric W. Biederman }; 2581801199ceSEric W. Biederman 2582444ceed8SEric W. Biederman static struct dentry *proc_base_instantiate(struct inode *dir, 2583c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 2584801199ceSEric W. Biederman { 2585c5141e6dSEric Dumazet const struct pid_entry *p = ptr; 2586801199ceSEric W. Biederman struct inode *inode; 2587801199ceSEric W. Biederman struct proc_inode *ei; 258873d36460SDan Carpenter struct dentry *error; 2589801199ceSEric W. Biederman 2590801199ceSEric W. Biederman /* Allocate the inode */ 2591801199ceSEric W. Biederman error = ERR_PTR(-ENOMEM); 2592801199ceSEric W. Biederman inode = new_inode(dir->i_sb); 2593801199ceSEric W. Biederman if (!inode) 2594801199ceSEric W. Biederman goto out; 2595801199ceSEric W. Biederman 2596801199ceSEric W. Biederman /* Initialize the inode */ 2597801199ceSEric W. Biederman ei = PROC_I(inode); 259885fe4025SChristoph Hellwig inode->i_ino = get_next_ino(); 2599801199ceSEric W. Biederman inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; 2600801199ceSEric W. Biederman 2601801199ceSEric W. Biederman /* 2602801199ceSEric W. Biederman * grab the reference to the task. 2603801199ceSEric W. Biederman */ 26041a657f78SOleg Nesterov ei->pid = get_task_pid(task, PIDTYPE_PID); 2605801199ceSEric W. Biederman if (!ei->pid) 2606801199ceSEric W. Biederman goto out_iput; 2607801199ceSEric W. Biederman 2608801199ceSEric W. Biederman inode->i_mode = p->mode; 2609801199ceSEric W. Biederman if (S_ISDIR(inode->i_mode)) 2610801199ceSEric W. Biederman inode->i_nlink = 2; 2611801199ceSEric W. Biederman if (S_ISLNK(inode->i_mode)) 2612801199ceSEric W. Biederman inode->i_size = 64; 2613801199ceSEric W. Biederman if (p->iop) 2614801199ceSEric W. Biederman inode->i_op = p->iop; 2615801199ceSEric W. Biederman if (p->fop) 2616801199ceSEric W. Biederman inode->i_fop = p->fop; 2617801199ceSEric W. Biederman ei->op = p->op; 2618*fb045adbSNick Piggin d_set_d_op(dentry, &proc_base_dentry_operations); 2619801199ceSEric W. Biederman d_add(dentry, inode); 2620801199ceSEric W. Biederman error = NULL; 2621801199ceSEric W. Biederman out: 2622801199ceSEric W. Biederman return error; 2623801199ceSEric W. Biederman out_iput: 2624801199ceSEric W. Biederman iput(inode); 2625801199ceSEric W. Biederman goto out; 2626801199ceSEric W. Biederman } 2627801199ceSEric W. Biederman 2628444ceed8SEric W. Biederman static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry) 2629444ceed8SEric W. Biederman { 2630444ceed8SEric W. Biederman struct dentry *error; 2631444ceed8SEric W. Biederman struct task_struct *task = get_proc_task(dir); 2632c5141e6dSEric Dumazet const struct pid_entry *p, *last; 2633444ceed8SEric W. Biederman 2634444ceed8SEric W. Biederman error = ERR_PTR(-ENOENT); 2635444ceed8SEric W. Biederman 2636444ceed8SEric W. Biederman if (!task) 2637444ceed8SEric W. Biederman goto out_no_task; 2638444ceed8SEric W. Biederman 2639444ceed8SEric W. Biederman /* Lookup the directory entry */ 26407bcd6b0eSEric W. Biederman last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1]; 26417bcd6b0eSEric W. Biederman for (p = proc_base_stuff; p <= last; p++) { 2642444ceed8SEric W. Biederman if (p->len != dentry->d_name.len) 2643444ceed8SEric W. Biederman continue; 2644444ceed8SEric W. Biederman if (!memcmp(dentry->d_name.name, p->name, p->len)) 2645444ceed8SEric W. Biederman break; 2646444ceed8SEric W. Biederman } 26477bcd6b0eSEric W. Biederman if (p > last) 2648444ceed8SEric W. Biederman goto out; 2649444ceed8SEric W. Biederman 2650444ceed8SEric W. Biederman error = proc_base_instantiate(dir, dentry, task, p); 2651444ceed8SEric W. Biederman 2652444ceed8SEric W. Biederman out: 2653444ceed8SEric W. Biederman put_task_struct(task); 2654444ceed8SEric W. Biederman out_no_task: 2655444ceed8SEric W. Biederman return error; 2656444ceed8SEric W. Biederman } 2657444ceed8SEric W. Biederman 2658c5141e6dSEric Dumazet static int proc_base_fill_cache(struct file *filp, void *dirent, 2659c5141e6dSEric Dumazet filldir_t filldir, struct task_struct *task, const struct pid_entry *p) 266061a28784SEric W. Biederman { 266161a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, p->name, p->len, 266261a28784SEric W. Biederman proc_base_instantiate, task, p); 266361a28784SEric W. Biederman } 266461a28784SEric W. Biederman 2665aba76fdbSAndrew Morton #ifdef CONFIG_TASK_IO_ACCOUNTING 2666297c5d92SAndrea Righi static int do_io_accounting(struct task_struct *task, char *buffer, int whole) 2667aba76fdbSAndrew Morton { 2668940389b8SAndrea Righi struct task_io_accounting acct = task->ioac; 2669297c5d92SAndrea Righi unsigned long flags; 2670297c5d92SAndrea Righi 26715995477aSAndrea Righi if (whole && lock_task_sighand(task, &flags)) { 2672b2d002dbSAndrea Righi struct task_struct *t = task; 2673297c5d92SAndrea Righi 26745995477aSAndrea Righi task_io_accounting_add(&acct, &task->signal->ioac); 26755995477aSAndrea Righi while_each_thread(task, t) 26765995477aSAndrea Righi task_io_accounting_add(&acct, &t->ioac); 2677297c5d92SAndrea Righi 2678297c5d92SAndrea Righi unlock_task_sighand(task, &flags); 2679297c5d92SAndrea Righi } 2680aba76fdbSAndrew Morton return sprintf(buffer, 2681aba76fdbSAndrew Morton "rchar: %llu\n" 2682aba76fdbSAndrew Morton "wchar: %llu\n" 2683aba76fdbSAndrew Morton "syscr: %llu\n" 2684aba76fdbSAndrew Morton "syscw: %llu\n" 2685aba76fdbSAndrew Morton "read_bytes: %llu\n" 2686aba76fdbSAndrew Morton "write_bytes: %llu\n" 2687aba76fdbSAndrew Morton "cancelled_write_bytes: %llu\n", 26887c44319dSAlexander Beregalov (unsigned long long)acct.rchar, 26897c44319dSAlexander Beregalov (unsigned long long)acct.wchar, 26907c44319dSAlexander Beregalov (unsigned long long)acct.syscr, 26917c44319dSAlexander Beregalov (unsigned long long)acct.syscw, 26927c44319dSAlexander Beregalov (unsigned long long)acct.read_bytes, 26937c44319dSAlexander Beregalov (unsigned long long)acct.write_bytes, 26947c44319dSAlexander Beregalov (unsigned long long)acct.cancelled_write_bytes); 2695aba76fdbSAndrew Morton } 2696297c5d92SAndrea Righi 2697297c5d92SAndrea Righi static int proc_tid_io_accounting(struct task_struct *task, char *buffer) 2698297c5d92SAndrea Righi { 2699297c5d92SAndrea Righi return do_io_accounting(task, buffer, 0); 2700297c5d92SAndrea Righi } 2701297c5d92SAndrea Righi 2702297c5d92SAndrea Righi static int proc_tgid_io_accounting(struct task_struct *task, char *buffer) 2703297c5d92SAndrea Righi { 2704297c5d92SAndrea Righi return do_io_accounting(task, buffer, 1); 2705297c5d92SAndrea Righi } 2706297c5d92SAndrea Righi #endif /* CONFIG_TASK_IO_ACCOUNTING */ 2707aba76fdbSAndrew Morton 270847830723SKees Cook static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns, 270947830723SKees Cook struct pid *pid, struct task_struct *task) 271047830723SKees Cook { 271147830723SKees Cook seq_printf(m, "%08x\n", task->personality); 271247830723SKees Cook return 0; 271347830723SKees Cook } 271447830723SKees Cook 2715801199ceSEric W. Biederman /* 271628a6d671SEric W. Biederman * Thread groups 271728a6d671SEric W. Biederman */ 271800977a59SArjan van de Ven static const struct file_operations proc_task_operations; 2719c5ef1c42SArjan van de Ven static const struct inode_operations proc_task_inode_operations; 272020cdc894SEric W. Biederman 2721c5141e6dSEric Dumazet static const struct pid_entry tgid_base_stuff[] = { 2722631f9c18SAlexey Dobriyan DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations), 2723631f9c18SAlexey Dobriyan DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations), 2724631f9c18SAlexey Dobriyan DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations), 2725b2211a36SAndrew Morton #ifdef CONFIG_NET 2726631f9c18SAlexey Dobriyan DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations), 2727b2211a36SAndrew Morton #endif 2728631f9c18SAlexey Dobriyan REG("environ", S_IRUSR, proc_environ_operations), 2729631f9c18SAlexey Dobriyan INF("auxv", S_IRUSR, proc_pid_auxv), 2730631f9c18SAlexey Dobriyan ONE("status", S_IRUGO, proc_pid_status), 2731631f9c18SAlexey Dobriyan ONE("personality", S_IRUSR, proc_pid_personality), 27323036e7b4SJiri Olsa INF("limits", S_IRUGO, proc_pid_limits), 273343ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 2734631f9c18SAlexey Dobriyan REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations), 273543ae34cbSIngo Molnar #endif 27364614a696Sjohn stultz REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations), 2737ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK 2738631f9c18SAlexey Dobriyan INF("syscall", S_IRUSR, proc_pid_syscall), 2739ebcb6734SRoland McGrath #endif 2740631f9c18SAlexey Dobriyan INF("cmdline", S_IRUGO, proc_pid_cmdline), 2741631f9c18SAlexey Dobriyan ONE("stat", S_IRUGO, proc_tgid_stat), 2742631f9c18SAlexey Dobriyan ONE("statm", S_IRUGO, proc_pid_statm), 2743631f9c18SAlexey Dobriyan REG("maps", S_IRUGO, proc_maps_operations), 274428a6d671SEric W. Biederman #ifdef CONFIG_NUMA 2745631f9c18SAlexey Dobriyan REG("numa_maps", S_IRUGO, proc_numa_maps_operations), 274628a6d671SEric W. Biederman #endif 2747631f9c18SAlexey Dobriyan REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations), 2748631f9c18SAlexey Dobriyan LNK("cwd", proc_cwd_link), 2749631f9c18SAlexey Dobriyan LNK("root", proc_root_link), 2750631f9c18SAlexey Dobriyan LNK("exe", proc_exe_link), 2751631f9c18SAlexey Dobriyan REG("mounts", S_IRUGO, proc_mounts_operations), 2752631f9c18SAlexey Dobriyan REG("mountinfo", S_IRUGO, proc_mountinfo_operations), 2753631f9c18SAlexey Dobriyan REG("mountstats", S_IRUSR, proc_mountstats_operations), 27541e883281SMatt Mackall #ifdef CONFIG_PROC_PAGE_MONITOR 2755631f9c18SAlexey Dobriyan REG("clear_refs", S_IWUSR, proc_clear_refs_operations), 2756631f9c18SAlexey Dobriyan REG("smaps", S_IRUGO, proc_smaps_operations), 2757631f9c18SAlexey Dobriyan REG("pagemap", S_IRUSR, proc_pagemap_operations), 275828a6d671SEric W. Biederman #endif 275928a6d671SEric W. Biederman #ifdef CONFIG_SECURITY 2760631f9c18SAlexey Dobriyan DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations), 276128a6d671SEric W. Biederman #endif 276228a6d671SEric W. Biederman #ifdef CONFIG_KALLSYMS 2763631f9c18SAlexey Dobriyan INF("wchan", S_IRUGO, proc_pid_wchan), 276428a6d671SEric W. Biederman #endif 27652ec220e2SKen Chen #ifdef CONFIG_STACKTRACE 27662ec220e2SKen Chen ONE("stack", S_IRUSR, proc_pid_stack), 276728a6d671SEric W. Biederman #endif 276828a6d671SEric W. Biederman #ifdef CONFIG_SCHEDSTATS 2769631f9c18SAlexey Dobriyan INF("schedstat", S_IRUGO, proc_pid_schedstat), 277028a6d671SEric W. Biederman #endif 27719745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP 2772631f9c18SAlexey Dobriyan REG("latency", S_IRUGO, proc_lstats_operations), 27739745512cSArjan van de Ven #endif 27748793d854SPaul Menage #ifdef CONFIG_PROC_PID_CPUSET 2775631f9c18SAlexey Dobriyan REG("cpuset", S_IRUGO, proc_cpuset_operations), 277628a6d671SEric W. Biederman #endif 2777a424316cSPaul Menage #ifdef CONFIG_CGROUPS 2778631f9c18SAlexey Dobriyan REG("cgroup", S_IRUGO, proc_cgroup_operations), 2779a424316cSPaul Menage #endif 2780631f9c18SAlexey Dobriyan INF("oom_score", S_IRUGO, proc_oom_score), 2781631f9c18SAlexey Dobriyan REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations), 2782a63d83f4SDavid Rientjes REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations), 278328a6d671SEric W. Biederman #ifdef CONFIG_AUDITSYSCALL 2784631f9c18SAlexey Dobriyan REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations), 2785631f9c18SAlexey Dobriyan REG("sessionid", S_IRUGO, proc_sessionid_operations), 278628a6d671SEric W. Biederman #endif 2787f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION 2788631f9c18SAlexey Dobriyan REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), 2789f4f154fdSAkinobu Mita #endif 2790698ba7b5SChristoph Hellwig #ifdef CONFIG_ELF_CORE 2791631f9c18SAlexey Dobriyan REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations), 27923cb4a0bbSKawai, Hidehiro #endif 2793aba76fdbSAndrew Morton #ifdef CONFIG_TASK_IO_ACCOUNTING 2794631f9c18SAlexey Dobriyan INF("io", S_IRUGO, proc_tgid_io_accounting), 2795aba76fdbSAndrew Morton #endif 279628a6d671SEric W. Biederman }; 279728a6d671SEric W. Biederman 279828a6d671SEric W. Biederman static int proc_tgid_base_readdir(struct file * filp, 279928a6d671SEric W. Biederman void * dirent, filldir_t filldir) 280028a6d671SEric W. Biederman { 280128a6d671SEric W. Biederman return proc_pident_readdir(filp,dirent,filldir, 280228a6d671SEric W. Biederman tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff)); 280328a6d671SEric W. Biederman } 280428a6d671SEric W. Biederman 280500977a59SArjan van de Ven static const struct file_operations proc_tgid_base_operations = { 280628a6d671SEric W. Biederman .read = generic_read_dir, 280728a6d671SEric W. Biederman .readdir = proc_tgid_base_readdir, 28086038f373SArnd Bergmann .llseek = default_llseek, 280928a6d671SEric W. Biederman }; 281028a6d671SEric W. Biederman 281128a6d671SEric W. Biederman static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){ 28127bcd6b0eSEric W. Biederman return proc_pident_lookup(dir, dentry, 28137bcd6b0eSEric W. Biederman tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff)); 281428a6d671SEric W. Biederman } 281528a6d671SEric W. Biederman 2816c5ef1c42SArjan van de Ven static const struct inode_operations proc_tgid_base_inode_operations = { 281728a6d671SEric W. Biederman .lookup = proc_tgid_base_lookup, 281828a6d671SEric W. Biederman .getattr = pid_getattr, 281928a6d671SEric W. Biederman .setattr = proc_setattr, 282028a6d671SEric W. Biederman }; 282128a6d671SEric W. Biederman 282260347f67SPavel Emelyanov static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid) 28231da177e4SLinus Torvalds { 282448e6484dSEric W. Biederman struct dentry *dentry, *leader, *dir; 28258578cea7SEric W. Biederman char buf[PROC_NUMBUF]; 282648e6484dSEric W. Biederman struct qstr name; 28271da177e4SLinus Torvalds 282848e6484dSEric W. Biederman name.name = buf; 282960347f67SPavel Emelyanov name.len = snprintf(buf, sizeof(buf), "%d", pid); 283060347f67SPavel Emelyanov dentry = d_hash_and_lookup(mnt->mnt_root, &name); 283148e6484dSEric W. Biederman if (dentry) { 283248e6484dSEric W. Biederman shrink_dcache_parent(dentry); 283348e6484dSEric W. Biederman d_drop(dentry); 283448e6484dSEric W. Biederman dput(dentry); 28351da177e4SLinus Torvalds } 28361da177e4SLinus Torvalds 283748e6484dSEric W. Biederman name.name = buf; 283860347f67SPavel Emelyanov name.len = snprintf(buf, sizeof(buf), "%d", tgid); 283960347f67SPavel Emelyanov leader = d_hash_and_lookup(mnt->mnt_root, &name); 284048e6484dSEric W. Biederman if (!leader) 284148e6484dSEric W. Biederman goto out; 284248e6484dSEric W. Biederman 284348e6484dSEric W. Biederman name.name = "task"; 284448e6484dSEric W. Biederman name.len = strlen(name.name); 284548e6484dSEric W. Biederman dir = d_hash_and_lookup(leader, &name); 284648e6484dSEric W. Biederman if (!dir) 284748e6484dSEric W. Biederman goto out_put_leader; 284848e6484dSEric W. Biederman 284948e6484dSEric W. Biederman name.name = buf; 285060347f67SPavel Emelyanov name.len = snprintf(buf, sizeof(buf), "%d", pid); 285148e6484dSEric W. Biederman dentry = d_hash_and_lookup(dir, &name); 285248e6484dSEric W. Biederman if (dentry) { 285348e6484dSEric W. Biederman shrink_dcache_parent(dentry); 285448e6484dSEric W. Biederman d_drop(dentry); 285548e6484dSEric W. Biederman dput(dentry); 28561da177e4SLinus Torvalds } 285748e6484dSEric W. Biederman 285848e6484dSEric W. Biederman dput(dir); 285948e6484dSEric W. Biederman out_put_leader: 286048e6484dSEric W. Biederman dput(leader); 286148e6484dSEric W. Biederman out: 286248e6484dSEric W. Biederman return; 28631da177e4SLinus Torvalds } 28641da177e4SLinus Torvalds 28650895e91dSRandy Dunlap /** 28660895e91dSRandy Dunlap * proc_flush_task - Remove dcache entries for @task from the /proc dcache. 28670895e91dSRandy Dunlap * @task: task that should be flushed. 28680895e91dSRandy Dunlap * 28690895e91dSRandy Dunlap * When flushing dentries from proc, one needs to flush them from global 287060347f67SPavel Emelyanov * proc (proc_mnt) and from all the namespaces' procs this task was seen 28710895e91dSRandy Dunlap * in. This call is supposed to do all of this job. 28720895e91dSRandy Dunlap * 28730895e91dSRandy Dunlap * Looks in the dcache for 28740895e91dSRandy Dunlap * /proc/@pid 28750895e91dSRandy Dunlap * /proc/@tgid/task/@pid 28760895e91dSRandy Dunlap * if either directory is present flushes it and all of it'ts children 28770895e91dSRandy Dunlap * from the dcache. 28780895e91dSRandy Dunlap * 28790895e91dSRandy Dunlap * It is safe and reasonable to cache /proc entries for a task until 28800895e91dSRandy Dunlap * that task exits. After that they just clog up the dcache with 28810895e91dSRandy Dunlap * useless entries, possibly causing useful dcache entries to be 28820895e91dSRandy Dunlap * flushed instead. This routine is proved to flush those useless 28830895e91dSRandy Dunlap * dcache entries at process exit time. 28840895e91dSRandy Dunlap * 28850895e91dSRandy Dunlap * NOTE: This routine is just an optimization so it does not guarantee 28860895e91dSRandy Dunlap * that no dcache entries will exist at process exit time it 28870895e91dSRandy Dunlap * just makes it very unlikely that any will persist. 288860347f67SPavel Emelyanov */ 288960347f67SPavel Emelyanov 289060347f67SPavel Emelyanov void proc_flush_task(struct task_struct *task) 289160347f67SPavel Emelyanov { 28929fcc2d15SEric W. Biederman int i; 28939b4d1cbeSOleg Nesterov struct pid *pid, *tgid; 2894130f77ecSPavel Emelyanov struct upid *upid; 2895130f77ecSPavel Emelyanov 2896130f77ecSPavel Emelyanov pid = task_pid(task); 2897130f77ecSPavel Emelyanov tgid = task_tgid(task); 28989fcc2d15SEric W. Biederman 28999fcc2d15SEric W. Biederman for (i = 0; i <= pid->level; i++) { 2900130f77ecSPavel Emelyanov upid = &pid->numbers[i]; 2901130f77ecSPavel Emelyanov proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr, 29029b4d1cbeSOleg Nesterov tgid->numbers[i].nr); 2903130f77ecSPavel Emelyanov } 29046f4e6433SPavel Emelyanov 29056f4e6433SPavel Emelyanov upid = &pid->numbers[pid->level]; 29066f4e6433SPavel Emelyanov if (upid->nr == 1) 29076f4e6433SPavel Emelyanov pid_ns_release_proc(upid->ns); 290860347f67SPavel Emelyanov } 290960347f67SPavel Emelyanov 29109711ef99SAdrian Bunk static struct dentry *proc_pid_instantiate(struct inode *dir, 29119711ef99SAdrian Bunk struct dentry * dentry, 2912c5141e6dSEric Dumazet struct task_struct *task, const void *ptr) 2913444ceed8SEric W. Biederman { 2914444ceed8SEric W. Biederman struct dentry *error = ERR_PTR(-ENOENT); 2915444ceed8SEric W. Biederman struct inode *inode; 2916444ceed8SEric W. Biederman 291761a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 2918444ceed8SEric W. Biederman if (!inode) 2919444ceed8SEric W. Biederman goto out; 2920444ceed8SEric W. Biederman 2921444ceed8SEric W. Biederman inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO; 2922444ceed8SEric W. Biederman inode->i_op = &proc_tgid_base_inode_operations; 2923444ceed8SEric W. Biederman inode->i_fop = &proc_tgid_base_operations; 2924444ceed8SEric W. Biederman inode->i_flags|=S_IMMUTABLE; 2925aed54175SVegard Nossum 2926aed54175SVegard Nossum inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff, 2927aed54175SVegard Nossum ARRAY_SIZE(tgid_base_stuff)); 2928444ceed8SEric W. Biederman 2929*fb045adbSNick Piggin d_set_d_op(dentry, &pid_dentry_operations); 2930444ceed8SEric W. Biederman 2931444ceed8SEric W. Biederman d_add(dentry, inode); 2932444ceed8SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 2933444ceed8SEric W. Biederman if (pid_revalidate(dentry, NULL)) 2934444ceed8SEric W. Biederman error = NULL; 2935444ceed8SEric W. Biederman out: 2936444ceed8SEric W. Biederman return error; 2937444ceed8SEric W. Biederman } 2938444ceed8SEric W. Biederman 29391da177e4SLinus Torvalds struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd) 29401da177e4SLinus Torvalds { 294173d36460SDan Carpenter struct dentry *result; 29421da177e4SLinus Torvalds struct task_struct *task; 29431da177e4SLinus Torvalds unsigned tgid; 2944b488893aSPavel Emelyanov struct pid_namespace *ns; 29451da177e4SLinus Torvalds 2946801199ceSEric W. Biederman result = proc_base_lookup(dir, dentry); 2947801199ceSEric W. Biederman if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT) 2948801199ceSEric W. Biederman goto out; 2949801199ceSEric W. Biederman 29501da177e4SLinus Torvalds tgid = name_to_int(dentry); 29511da177e4SLinus Torvalds if (tgid == ~0U) 29521da177e4SLinus Torvalds goto out; 29531da177e4SLinus Torvalds 2954b488893aSPavel Emelyanov ns = dentry->d_sb->s_fs_info; 2955de758734SEric W. Biederman rcu_read_lock(); 2956b488893aSPavel Emelyanov task = find_task_by_pid_ns(tgid, ns); 29571da177e4SLinus Torvalds if (task) 29581da177e4SLinus Torvalds get_task_struct(task); 2959de758734SEric W. Biederman rcu_read_unlock(); 29601da177e4SLinus Torvalds if (!task) 29611da177e4SLinus Torvalds goto out; 29621da177e4SLinus Torvalds 2963444ceed8SEric W. Biederman result = proc_pid_instantiate(dir, dentry, task, NULL); 296448e6484dSEric W. Biederman put_task_struct(task); 29651da177e4SLinus Torvalds out: 2966cd6a3ce9SEric W. Biederman return result; 29671da177e4SLinus Torvalds } 29681da177e4SLinus Torvalds 29691da177e4SLinus Torvalds /* 29700804ef4bSEric W. Biederman * Find the first task with tgid >= tgid 29710bc58a91SEric W. Biederman * 29721da177e4SLinus Torvalds */ 297319fd4bb2SEric W. Biederman struct tgid_iter { 297419fd4bb2SEric W. Biederman unsigned int tgid; 29750804ef4bSEric W. Biederman struct task_struct *task; 297619fd4bb2SEric W. Biederman }; 297719fd4bb2SEric W. Biederman static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter) 297819fd4bb2SEric W. Biederman { 29790804ef4bSEric W. Biederman struct pid *pid; 29801da177e4SLinus Torvalds 298119fd4bb2SEric W. Biederman if (iter.task) 298219fd4bb2SEric W. Biederman put_task_struct(iter.task); 29830804ef4bSEric W. Biederman rcu_read_lock(); 29840804ef4bSEric W. Biederman retry: 298519fd4bb2SEric W. Biederman iter.task = NULL; 298619fd4bb2SEric W. Biederman pid = find_ge_pid(iter.tgid, ns); 29870804ef4bSEric W. Biederman if (pid) { 298819fd4bb2SEric W. Biederman iter.tgid = pid_nr_ns(pid, ns); 298919fd4bb2SEric W. Biederman iter.task = pid_task(pid, PIDTYPE_PID); 29900804ef4bSEric W. Biederman /* What we to know is if the pid we have find is the 29910804ef4bSEric W. Biederman * pid of a thread_group_leader. Testing for task 29920804ef4bSEric W. Biederman * being a thread_group_leader is the obvious thing 29930804ef4bSEric W. Biederman * todo but there is a window when it fails, due to 29940804ef4bSEric W. Biederman * the pid transfer logic in de_thread. 29950804ef4bSEric W. Biederman * 29960804ef4bSEric W. Biederman * So we perform the straight forward test of seeing 29970804ef4bSEric W. Biederman * if the pid we have found is the pid of a thread 29980804ef4bSEric W. Biederman * group leader, and don't worry if the task we have 29990804ef4bSEric W. Biederman * found doesn't happen to be a thread group leader. 30000804ef4bSEric W. Biederman * As we don't care in the case of readdir. 30010bc58a91SEric W. Biederman */ 300219fd4bb2SEric W. Biederman if (!iter.task || !has_group_leader_pid(iter.task)) { 300319fd4bb2SEric W. Biederman iter.tgid += 1; 30040804ef4bSEric W. Biederman goto retry; 300519fd4bb2SEric W. Biederman } 300619fd4bb2SEric W. Biederman get_task_struct(iter.task); 30071da177e4SLinus Torvalds } 3008454cc105SEric W. Biederman rcu_read_unlock(); 300919fd4bb2SEric W. Biederman return iter; 30101da177e4SLinus Torvalds } 30111da177e4SLinus Torvalds 30127bcd6b0eSEric W. Biederman #define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff)) 30131da177e4SLinus Torvalds 301461a28784SEric W. Biederman static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir, 301519fd4bb2SEric W. Biederman struct tgid_iter iter) 301661a28784SEric W. Biederman { 301761a28784SEric W. Biederman char name[PROC_NUMBUF]; 301819fd4bb2SEric W. Biederman int len = snprintf(name, sizeof(name), "%d", iter.tgid); 301961a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, name, len, 302019fd4bb2SEric W. Biederman proc_pid_instantiate, iter.task, NULL); 302161a28784SEric W. Biederman } 302261a28784SEric W. Biederman 30231da177e4SLinus Torvalds /* for the /proc/ directory itself, after non-process stuff has been done */ 30241da177e4SLinus Torvalds int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir) 30251da177e4SLinus Torvalds { 30261da177e4SLinus Torvalds unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY; 30272fddfeefSJosef "Jeff" Sipek struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode); 302819fd4bb2SEric W. Biederman struct tgid_iter iter; 3029b488893aSPavel Emelyanov struct pid_namespace *ns; 30301da177e4SLinus Torvalds 303161a28784SEric W. Biederman if (!reaper) 303261a28784SEric W. Biederman goto out_no_task; 303361a28784SEric W. Biederman 30347bcd6b0eSEric W. Biederman for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) { 3035c5141e6dSEric Dumazet const struct pid_entry *p = &proc_base_stuff[nr]; 303661a28784SEric W. Biederman if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0) 3037801199ceSEric W. Biederman goto out; 30381da177e4SLinus Torvalds } 30391da177e4SLinus Torvalds 3040b488893aSPavel Emelyanov ns = filp->f_dentry->d_sb->s_fs_info; 304119fd4bb2SEric W. Biederman iter.task = NULL; 304219fd4bb2SEric W. Biederman iter.tgid = filp->f_pos - TGID_OFFSET; 304319fd4bb2SEric W. Biederman for (iter = next_tgid(ns, iter); 304419fd4bb2SEric W. Biederman iter.task; 304519fd4bb2SEric W. Biederman iter.tgid += 1, iter = next_tgid(ns, iter)) { 304619fd4bb2SEric W. Biederman filp->f_pos = iter.tgid + TGID_OFFSET; 304719fd4bb2SEric W. Biederman if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) { 304819fd4bb2SEric W. Biederman put_task_struct(iter.task); 30490804ef4bSEric W. Biederman goto out; 30501da177e4SLinus Torvalds } 30511da177e4SLinus Torvalds } 30520804ef4bSEric W. Biederman filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET; 30530804ef4bSEric W. Biederman out: 305461a28784SEric W. Biederman put_task_struct(reaper); 305561a28784SEric W. Biederman out_no_task: 30561da177e4SLinus Torvalds return 0; 30571da177e4SLinus Torvalds } 30581da177e4SLinus Torvalds 30590bc58a91SEric W. Biederman /* 306028a6d671SEric W. Biederman * Tasks 306128a6d671SEric W. Biederman */ 3062c5141e6dSEric Dumazet static const struct pid_entry tid_base_stuff[] = { 3063631f9c18SAlexey Dobriyan DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations), 30643835541dSJerome Marchand DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations), 3065631f9c18SAlexey Dobriyan REG("environ", S_IRUSR, proc_environ_operations), 3066631f9c18SAlexey Dobriyan INF("auxv", S_IRUSR, proc_pid_auxv), 3067631f9c18SAlexey Dobriyan ONE("status", S_IRUGO, proc_pid_status), 3068631f9c18SAlexey Dobriyan ONE("personality", S_IRUSR, proc_pid_personality), 30693036e7b4SJiri Olsa INF("limits", S_IRUGO, proc_pid_limits), 307043ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 3071631f9c18SAlexey Dobriyan REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations), 307243ae34cbSIngo Molnar #endif 30734614a696Sjohn stultz REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations), 3074ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK 3075631f9c18SAlexey Dobriyan INF("syscall", S_IRUSR, proc_pid_syscall), 3076ebcb6734SRoland McGrath #endif 3077631f9c18SAlexey Dobriyan INF("cmdline", S_IRUGO, proc_pid_cmdline), 3078631f9c18SAlexey Dobriyan ONE("stat", S_IRUGO, proc_tid_stat), 3079631f9c18SAlexey Dobriyan ONE("statm", S_IRUGO, proc_pid_statm), 3080631f9c18SAlexey Dobriyan REG("maps", S_IRUGO, proc_maps_operations), 308128a6d671SEric W. Biederman #ifdef CONFIG_NUMA 3082631f9c18SAlexey Dobriyan REG("numa_maps", S_IRUGO, proc_numa_maps_operations), 308328a6d671SEric W. Biederman #endif 3084631f9c18SAlexey Dobriyan REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations), 3085631f9c18SAlexey Dobriyan LNK("cwd", proc_cwd_link), 3086631f9c18SAlexey Dobriyan LNK("root", proc_root_link), 3087631f9c18SAlexey Dobriyan LNK("exe", proc_exe_link), 3088631f9c18SAlexey Dobriyan REG("mounts", S_IRUGO, proc_mounts_operations), 3089631f9c18SAlexey Dobriyan REG("mountinfo", S_IRUGO, proc_mountinfo_operations), 30901e883281SMatt Mackall #ifdef CONFIG_PROC_PAGE_MONITOR 3091631f9c18SAlexey Dobriyan REG("clear_refs", S_IWUSR, proc_clear_refs_operations), 3092631f9c18SAlexey Dobriyan REG("smaps", S_IRUGO, proc_smaps_operations), 3093631f9c18SAlexey Dobriyan REG("pagemap", S_IRUSR, proc_pagemap_operations), 309428a6d671SEric W. Biederman #endif 309528a6d671SEric W. Biederman #ifdef CONFIG_SECURITY 3096631f9c18SAlexey Dobriyan DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations), 309728a6d671SEric W. Biederman #endif 309828a6d671SEric W. Biederman #ifdef CONFIG_KALLSYMS 3099631f9c18SAlexey Dobriyan INF("wchan", S_IRUGO, proc_pid_wchan), 310028a6d671SEric W. Biederman #endif 31012ec220e2SKen Chen #ifdef CONFIG_STACKTRACE 31022ec220e2SKen Chen ONE("stack", S_IRUSR, proc_pid_stack), 310328a6d671SEric W. Biederman #endif 310428a6d671SEric W. Biederman #ifdef CONFIG_SCHEDSTATS 3105631f9c18SAlexey Dobriyan INF("schedstat", S_IRUGO, proc_pid_schedstat), 310628a6d671SEric W. Biederman #endif 31079745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP 3108631f9c18SAlexey Dobriyan REG("latency", S_IRUGO, proc_lstats_operations), 31099745512cSArjan van de Ven #endif 31108793d854SPaul Menage #ifdef CONFIG_PROC_PID_CPUSET 3111631f9c18SAlexey Dobriyan REG("cpuset", S_IRUGO, proc_cpuset_operations), 311228a6d671SEric W. Biederman #endif 3113a424316cSPaul Menage #ifdef CONFIG_CGROUPS 3114631f9c18SAlexey Dobriyan REG("cgroup", S_IRUGO, proc_cgroup_operations), 3115a424316cSPaul Menage #endif 3116631f9c18SAlexey Dobriyan INF("oom_score", S_IRUGO, proc_oom_score), 3117631f9c18SAlexey Dobriyan REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations), 3118a63d83f4SDavid Rientjes REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations), 311928a6d671SEric W. Biederman #ifdef CONFIG_AUDITSYSCALL 3120631f9c18SAlexey Dobriyan REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations), 3121631f9c18SAlexey Dobriyan REG("sessionid", S_IRUSR, proc_sessionid_operations), 312228a6d671SEric W. Biederman #endif 3123f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION 3124631f9c18SAlexey Dobriyan REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), 3125f4f154fdSAkinobu Mita #endif 3126297c5d92SAndrea Righi #ifdef CONFIG_TASK_IO_ACCOUNTING 3127631f9c18SAlexey Dobriyan INF("io", S_IRUGO, proc_tid_io_accounting), 3128297c5d92SAndrea Righi #endif 312928a6d671SEric W. Biederman }; 313028a6d671SEric W. Biederman 313128a6d671SEric W. Biederman static int proc_tid_base_readdir(struct file * filp, 313228a6d671SEric W. Biederman void * dirent, filldir_t filldir) 313328a6d671SEric W. Biederman { 313428a6d671SEric W. Biederman return proc_pident_readdir(filp,dirent,filldir, 313528a6d671SEric W. Biederman tid_base_stuff,ARRAY_SIZE(tid_base_stuff)); 313628a6d671SEric W. Biederman } 313728a6d671SEric W. Biederman 313828a6d671SEric W. Biederman static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){ 31397bcd6b0eSEric W. Biederman return proc_pident_lookup(dir, dentry, 31407bcd6b0eSEric W. Biederman tid_base_stuff, ARRAY_SIZE(tid_base_stuff)); 314128a6d671SEric W. Biederman } 314228a6d671SEric W. Biederman 314300977a59SArjan van de Ven static const struct file_operations proc_tid_base_operations = { 314428a6d671SEric W. Biederman .read = generic_read_dir, 314528a6d671SEric W. Biederman .readdir = proc_tid_base_readdir, 31466038f373SArnd Bergmann .llseek = default_llseek, 314728a6d671SEric W. Biederman }; 314828a6d671SEric W. Biederman 3149c5ef1c42SArjan van de Ven static const struct inode_operations proc_tid_base_inode_operations = { 315028a6d671SEric W. Biederman .lookup = proc_tid_base_lookup, 315128a6d671SEric W. Biederman .getattr = pid_getattr, 315228a6d671SEric W. Biederman .setattr = proc_setattr, 315328a6d671SEric W. Biederman }; 315428a6d671SEric W. Biederman 3155444ceed8SEric W. Biederman static struct dentry *proc_task_instantiate(struct inode *dir, 3156c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 3157444ceed8SEric W. Biederman { 3158444ceed8SEric W. Biederman struct dentry *error = ERR_PTR(-ENOENT); 3159444ceed8SEric W. Biederman struct inode *inode; 316061a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 3161444ceed8SEric W. Biederman 3162444ceed8SEric W. Biederman if (!inode) 3163444ceed8SEric W. Biederman goto out; 3164444ceed8SEric W. Biederman inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO; 3165444ceed8SEric W. Biederman inode->i_op = &proc_tid_base_inode_operations; 3166444ceed8SEric W. Biederman inode->i_fop = &proc_tid_base_operations; 3167444ceed8SEric W. Biederman inode->i_flags|=S_IMMUTABLE; 3168aed54175SVegard Nossum 3169aed54175SVegard Nossum inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff, 3170aed54175SVegard Nossum ARRAY_SIZE(tid_base_stuff)); 3171444ceed8SEric W. Biederman 3172*fb045adbSNick Piggin d_set_d_op(dentry, &pid_dentry_operations); 3173444ceed8SEric W. Biederman 3174444ceed8SEric W. Biederman d_add(dentry, inode); 3175444ceed8SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 3176444ceed8SEric W. Biederman if (pid_revalidate(dentry, NULL)) 3177444ceed8SEric W. Biederman error = NULL; 3178444ceed8SEric W. Biederman out: 3179444ceed8SEric W. Biederman return error; 3180444ceed8SEric W. Biederman } 3181444ceed8SEric W. Biederman 318228a6d671SEric W. Biederman static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd) 318328a6d671SEric W. Biederman { 318428a6d671SEric W. Biederman struct dentry *result = ERR_PTR(-ENOENT); 318528a6d671SEric W. Biederman struct task_struct *task; 318628a6d671SEric W. Biederman struct task_struct *leader = get_proc_task(dir); 318728a6d671SEric W. Biederman unsigned tid; 3188b488893aSPavel Emelyanov struct pid_namespace *ns; 318928a6d671SEric W. Biederman 319028a6d671SEric W. Biederman if (!leader) 319128a6d671SEric W. Biederman goto out_no_task; 319228a6d671SEric W. Biederman 319328a6d671SEric W. Biederman tid = name_to_int(dentry); 319428a6d671SEric W. Biederman if (tid == ~0U) 319528a6d671SEric W. Biederman goto out; 319628a6d671SEric W. Biederman 3197b488893aSPavel Emelyanov ns = dentry->d_sb->s_fs_info; 319828a6d671SEric W. Biederman rcu_read_lock(); 3199b488893aSPavel Emelyanov task = find_task_by_pid_ns(tid, ns); 320028a6d671SEric W. Biederman if (task) 320128a6d671SEric W. Biederman get_task_struct(task); 320228a6d671SEric W. Biederman rcu_read_unlock(); 320328a6d671SEric W. Biederman if (!task) 320428a6d671SEric W. Biederman goto out; 3205bac0abd6SPavel Emelyanov if (!same_thread_group(leader, task)) 320628a6d671SEric W. Biederman goto out_drop_task; 320728a6d671SEric W. Biederman 3208444ceed8SEric W. Biederman result = proc_task_instantiate(dir, dentry, task, NULL); 320928a6d671SEric W. Biederman out_drop_task: 321028a6d671SEric W. Biederman put_task_struct(task); 321128a6d671SEric W. Biederman out: 321228a6d671SEric W. Biederman put_task_struct(leader); 321328a6d671SEric W. Biederman out_no_task: 321428a6d671SEric W. Biederman return result; 321528a6d671SEric W. Biederman } 321628a6d671SEric W. Biederman 321728a6d671SEric W. Biederman /* 32180bc58a91SEric W. Biederman * Find the first tid of a thread group to return to user space. 32190bc58a91SEric W. Biederman * 32200bc58a91SEric W. Biederman * Usually this is just the thread group leader, but if the users 32210bc58a91SEric W. Biederman * buffer was too small or there was a seek into the middle of the 32220bc58a91SEric W. Biederman * directory we have more work todo. 32230bc58a91SEric W. Biederman * 32240bc58a91SEric W. Biederman * In the case of a short read we start with find_task_by_pid. 32250bc58a91SEric W. Biederman * 32260bc58a91SEric W. Biederman * In the case of a seek we start with the leader and walk nr 32270bc58a91SEric W. Biederman * threads past it. 32280bc58a91SEric W. Biederman */ 3229cc288738SEric W. Biederman static struct task_struct *first_tid(struct task_struct *leader, 3230b488893aSPavel Emelyanov int tid, int nr, struct pid_namespace *ns) 32310bc58a91SEric W. Biederman { 3232a872ff0cSOleg Nesterov struct task_struct *pos; 32330bc58a91SEric W. Biederman 3234cc288738SEric W. Biederman rcu_read_lock(); 32350bc58a91SEric W. Biederman /* Attempt to start with the pid of a thread */ 32360bc58a91SEric W. Biederman if (tid && (nr > 0)) { 3237b488893aSPavel Emelyanov pos = find_task_by_pid_ns(tid, ns); 3238a872ff0cSOleg Nesterov if (pos && (pos->group_leader == leader)) 3239a872ff0cSOleg Nesterov goto found; 32400bc58a91SEric W. Biederman } 32410bc58a91SEric W. Biederman 32420bc58a91SEric W. Biederman /* If nr exceeds the number of threads there is nothing todo */ 32430bc58a91SEric W. Biederman pos = NULL; 3244a872ff0cSOleg Nesterov if (nr && nr >= get_nr_threads(leader)) 3245a872ff0cSOleg Nesterov goto out; 3246a872ff0cSOleg Nesterov 3247a872ff0cSOleg Nesterov /* If we haven't found our starting place yet start 3248a872ff0cSOleg Nesterov * with the leader and walk nr threads forward. 3249a872ff0cSOleg Nesterov */ 3250a872ff0cSOleg Nesterov for (pos = leader; nr > 0; --nr) { 3251a872ff0cSOleg Nesterov pos = next_thread(pos); 3252a872ff0cSOleg Nesterov if (pos == leader) { 3253a872ff0cSOleg Nesterov pos = NULL; 3254a872ff0cSOleg Nesterov goto out; 3255a872ff0cSOleg Nesterov } 3256a872ff0cSOleg Nesterov } 3257a872ff0cSOleg Nesterov found: 3258a872ff0cSOleg Nesterov get_task_struct(pos); 3259a872ff0cSOleg Nesterov out: 3260cc288738SEric W. Biederman rcu_read_unlock(); 32610bc58a91SEric W. Biederman return pos; 32620bc58a91SEric W. Biederman } 32630bc58a91SEric W. Biederman 32640bc58a91SEric W. Biederman /* 32650bc58a91SEric W. Biederman * Find the next thread in the thread list. 32660bc58a91SEric W. Biederman * Return NULL if there is an error or no next thread. 32670bc58a91SEric W. Biederman * 32680bc58a91SEric W. Biederman * The reference to the input task_struct is released. 32690bc58a91SEric W. Biederman */ 32700bc58a91SEric W. Biederman static struct task_struct *next_tid(struct task_struct *start) 32710bc58a91SEric W. Biederman { 3272c1df7fb8SOleg Nesterov struct task_struct *pos = NULL; 3273cc288738SEric W. Biederman rcu_read_lock(); 3274c1df7fb8SOleg Nesterov if (pid_alive(start)) { 32750bc58a91SEric W. Biederman pos = next_thread(start); 3276c1df7fb8SOleg Nesterov if (thread_group_leader(pos)) 32770bc58a91SEric W. Biederman pos = NULL; 3278c1df7fb8SOleg Nesterov else 3279c1df7fb8SOleg Nesterov get_task_struct(pos); 3280c1df7fb8SOleg Nesterov } 3281cc288738SEric W. Biederman rcu_read_unlock(); 32820bc58a91SEric W. Biederman put_task_struct(start); 32830bc58a91SEric W. Biederman return pos; 32840bc58a91SEric W. Biederman } 32850bc58a91SEric W. Biederman 328661a28784SEric W. Biederman static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir, 328761a28784SEric W. Biederman struct task_struct *task, int tid) 328861a28784SEric W. Biederman { 328961a28784SEric W. Biederman char name[PROC_NUMBUF]; 329061a28784SEric W. Biederman int len = snprintf(name, sizeof(name), "%d", tid); 329161a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, name, len, 329261a28784SEric W. Biederman proc_task_instantiate, task, NULL); 329361a28784SEric W. Biederman } 329461a28784SEric W. Biederman 32951da177e4SLinus Torvalds /* for the /proc/TGID/task/ directories */ 32961da177e4SLinus Torvalds static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir) 32971da177e4SLinus Torvalds { 32982fddfeefSJosef "Jeff" Sipek struct dentry *dentry = filp->f_path.dentry; 32991da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 33007d895244SGuillaume Chazarain struct task_struct *leader = NULL; 33010bc58a91SEric W. Biederman struct task_struct *task; 33021da177e4SLinus Torvalds int retval = -ENOENT; 33031da177e4SLinus Torvalds ino_t ino; 33040bc58a91SEric W. Biederman int tid; 3305b488893aSPavel Emelyanov struct pid_namespace *ns; 33061da177e4SLinus Torvalds 33077d895244SGuillaume Chazarain task = get_proc_task(inode); 33087d895244SGuillaume Chazarain if (!task) 33097d895244SGuillaume Chazarain goto out_no_task; 33107d895244SGuillaume Chazarain rcu_read_lock(); 33117d895244SGuillaume Chazarain if (pid_alive(task)) { 33127d895244SGuillaume Chazarain leader = task->group_leader; 33137d895244SGuillaume Chazarain get_task_struct(leader); 33147d895244SGuillaume Chazarain } 33157d895244SGuillaume Chazarain rcu_read_unlock(); 33167d895244SGuillaume Chazarain put_task_struct(task); 331799f89551SEric W. Biederman if (!leader) 331899f89551SEric W. Biederman goto out_no_task; 33191da177e4SLinus Torvalds retval = 0; 33201da177e4SLinus Torvalds 3321ee568b25SLinus Torvalds switch ((unsigned long)filp->f_pos) { 33221da177e4SLinus Torvalds case 0: 33231da177e4SLinus Torvalds ino = inode->i_ino; 3324ee6f779bSZhang Le if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0) 33251da177e4SLinus Torvalds goto out; 3326ee6f779bSZhang Le filp->f_pos++; 33271da177e4SLinus Torvalds /* fall through */ 33281da177e4SLinus Torvalds case 1: 33291da177e4SLinus Torvalds ino = parent_ino(dentry); 3330ee6f779bSZhang Le if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0) 33311da177e4SLinus Torvalds goto out; 3332ee6f779bSZhang Le filp->f_pos++; 33331da177e4SLinus Torvalds /* fall through */ 33341da177e4SLinus Torvalds } 33351da177e4SLinus Torvalds 33360bc58a91SEric W. Biederman /* f_version caches the tgid value that the last readdir call couldn't 33370bc58a91SEric W. Biederman * return. lseek aka telldir automagically resets f_version to 0. 33380bc58a91SEric W. Biederman */ 3339b488893aSPavel Emelyanov ns = filp->f_dentry->d_sb->s_fs_info; 33402b47c361SMathieu Desnoyers tid = (int)filp->f_version; 33410bc58a91SEric W. Biederman filp->f_version = 0; 3342ee6f779bSZhang Le for (task = first_tid(leader, tid, filp->f_pos - 2, ns); 33430bc58a91SEric W. Biederman task; 3344ee6f779bSZhang Le task = next_tid(task), filp->f_pos++) { 3345b488893aSPavel Emelyanov tid = task_pid_nr_ns(task, ns); 334661a28784SEric W. Biederman if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) { 33470bc58a91SEric W. Biederman /* returning this tgid failed, save it as the first 33480bc58a91SEric W. Biederman * pid for the next readir call */ 33492b47c361SMathieu Desnoyers filp->f_version = (u64)tid; 33500bc58a91SEric W. Biederman put_task_struct(task); 33511da177e4SLinus Torvalds break; 33520bc58a91SEric W. Biederman } 33531da177e4SLinus Torvalds } 33541da177e4SLinus Torvalds out: 335599f89551SEric W. Biederman put_task_struct(leader); 335699f89551SEric W. Biederman out_no_task: 33571da177e4SLinus Torvalds return retval; 33581da177e4SLinus Torvalds } 33596e66b52bSEric W. Biederman 33606e66b52bSEric W. Biederman static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) 33616e66b52bSEric W. Biederman { 33626e66b52bSEric W. Biederman struct inode *inode = dentry->d_inode; 336399f89551SEric W. Biederman struct task_struct *p = get_proc_task(inode); 33646e66b52bSEric W. Biederman generic_fillattr(inode, stat); 33656e66b52bSEric W. Biederman 336699f89551SEric W. Biederman if (p) { 336799f89551SEric W. Biederman stat->nlink += get_nr_threads(p); 336899f89551SEric W. Biederman put_task_struct(p); 33696e66b52bSEric W. Biederman } 33706e66b52bSEric W. Biederman 33716e66b52bSEric W. Biederman return 0; 33726e66b52bSEric W. Biederman } 337328a6d671SEric W. Biederman 3374c5ef1c42SArjan van de Ven static const struct inode_operations proc_task_inode_operations = { 337528a6d671SEric W. Biederman .lookup = proc_task_lookup, 337628a6d671SEric W. Biederman .getattr = proc_task_getattr, 337728a6d671SEric W. Biederman .setattr = proc_setattr, 337828a6d671SEric W. Biederman }; 337928a6d671SEric W. Biederman 338000977a59SArjan van de Ven static const struct file_operations proc_task_operations = { 338128a6d671SEric W. Biederman .read = generic_read_dir, 338228a6d671SEric W. Biederman .readdir = proc_task_readdir, 33836038f373SArnd Bergmann .llseek = default_llseek, 338428a6d671SEric W. Biederman }; 3385