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++) { 37634e49d4fSJoe Perches struct latency_record *lr = &task->latency_record[i]; 37734e49d4fSJoe Perches if (lr->backtrace[0]) { 3789745512cSArjan van de Ven int q; 3799745512cSArjan van de Ven seq_printf(m, "%i %li %li", 38034e49d4fSJoe Perches lr->count, lr->time, lr->max); 3819745512cSArjan van de Ven for (q = 0; q < LT_BACKTRACEDEPTH; q++) { 38234e49d4fSJoe Perches unsigned long bt = lr->backtrace[q]; 38334e49d4fSJoe Perches if (!bt) 3849745512cSArjan van de Ven break; 38534e49d4fSJoe Perches if (bt == ULONG_MAX) 3869745512cSArjan van de Ven break; 38734e49d4fSJoe Perches seq_printf(m, " %ps", (void *)bt); 3889745512cSArjan van de Ven } 3899d6de12fSAlexey Dobriyan seq_putc(m, '\n'); 3909745512cSArjan van de Ven } 3919745512cSArjan van de Ven 3929745512cSArjan van de Ven } 39313d77c37SHiroshi Shimamoto put_task_struct(task); 3949745512cSArjan van de Ven return 0; 3959745512cSArjan van de Ven } 3969745512cSArjan van de Ven 3979745512cSArjan van de Ven static int lstats_open(struct inode *inode, struct file *file) 3989745512cSArjan van de Ven { 39913d77c37SHiroshi Shimamoto return single_open(file, lstats_show_proc, inode); 400d6643d12SHiroshi Shimamoto } 401d6643d12SHiroshi Shimamoto 4029745512cSArjan van de Ven static ssize_t lstats_write(struct file *file, const char __user *buf, 4039745512cSArjan van de Ven size_t count, loff_t *offs) 4049745512cSArjan van de Ven { 40513d77c37SHiroshi Shimamoto struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 4069745512cSArjan van de Ven 40713d77c37SHiroshi Shimamoto if (!task) 40813d77c37SHiroshi Shimamoto return -ESRCH; 4099745512cSArjan van de Ven clear_all_latency_tracing(task); 41013d77c37SHiroshi Shimamoto put_task_struct(task); 4119745512cSArjan van de Ven 4129745512cSArjan van de Ven return count; 4139745512cSArjan van de Ven } 4149745512cSArjan van de Ven 4159745512cSArjan van de Ven static const struct file_operations proc_lstats_operations = { 4169745512cSArjan van de Ven .open = lstats_open, 4179745512cSArjan van de Ven .read = seq_read, 4189745512cSArjan van de Ven .write = lstats_write, 4199745512cSArjan van de Ven .llseek = seq_lseek, 42013d77c37SHiroshi Shimamoto .release = single_release, 4219745512cSArjan van de Ven }; 4229745512cSArjan van de Ven 4239745512cSArjan van de Ven #endif 4249745512cSArjan van de Ven 4251da177e4SLinus Torvalds static int proc_oom_score(struct task_struct *task, char *buffer) 4261da177e4SLinus Torvalds { 427b95c35e7SOleg Nesterov unsigned long points = 0; 4281da177e4SLinus Torvalds 42919c5d45aSAlexey Dobriyan read_lock(&tasklist_lock); 430b95c35e7SOleg Nesterov if (pid_alive(task)) 431a63d83f4SDavid Rientjes points = oom_badness(task, NULL, NULL, 432a63d83f4SDavid Rientjes totalram_pages + total_swap_pages); 43319c5d45aSAlexey Dobriyan read_unlock(&tasklist_lock); 4341da177e4SLinus Torvalds return sprintf(buffer, "%lu\n", points); 4351da177e4SLinus Torvalds } 4361da177e4SLinus Torvalds 437d85f50d5SNeil Horman struct limit_names { 438d85f50d5SNeil Horman char *name; 439d85f50d5SNeil Horman char *unit; 440d85f50d5SNeil Horman }; 441d85f50d5SNeil Horman 442d85f50d5SNeil Horman static const struct limit_names lnames[RLIM_NLIMITS] = { 443cff4edb5SKees Cook [RLIMIT_CPU] = {"Max cpu time", "seconds"}, 444d85f50d5SNeil Horman [RLIMIT_FSIZE] = {"Max file size", "bytes"}, 445d85f50d5SNeil Horman [RLIMIT_DATA] = {"Max data size", "bytes"}, 446d85f50d5SNeil Horman [RLIMIT_STACK] = {"Max stack size", "bytes"}, 447d85f50d5SNeil Horman [RLIMIT_CORE] = {"Max core file size", "bytes"}, 448d85f50d5SNeil Horman [RLIMIT_RSS] = {"Max resident set", "bytes"}, 449d85f50d5SNeil Horman [RLIMIT_NPROC] = {"Max processes", "processes"}, 450d85f50d5SNeil Horman [RLIMIT_NOFILE] = {"Max open files", "files"}, 451d85f50d5SNeil Horman [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"}, 452d85f50d5SNeil Horman [RLIMIT_AS] = {"Max address space", "bytes"}, 453d85f50d5SNeil Horman [RLIMIT_LOCKS] = {"Max file locks", "locks"}, 454d85f50d5SNeil Horman [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"}, 455d85f50d5SNeil Horman [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"}, 456d85f50d5SNeil Horman [RLIMIT_NICE] = {"Max nice priority", NULL}, 457d85f50d5SNeil Horman [RLIMIT_RTPRIO] = {"Max realtime priority", NULL}, 4588808117cSEugene Teo [RLIMIT_RTTIME] = {"Max realtime timeout", "us"}, 459d85f50d5SNeil Horman }; 460d85f50d5SNeil Horman 461d85f50d5SNeil Horman /* Display limits for a process */ 462d85f50d5SNeil Horman static int proc_pid_limits(struct task_struct *task, char *buffer) 463d85f50d5SNeil Horman { 464d85f50d5SNeil Horman unsigned int i; 465d85f50d5SNeil Horman int count = 0; 466d85f50d5SNeil Horman unsigned long flags; 467d85f50d5SNeil Horman char *bufptr = buffer; 468d85f50d5SNeil Horman 469d85f50d5SNeil Horman struct rlimit rlim[RLIM_NLIMITS]; 470d85f50d5SNeil Horman 471a6bebbc8SLai Jiangshan if (!lock_task_sighand(task, &flags)) 472d85f50d5SNeil Horman return 0; 473d85f50d5SNeil Horman memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS); 474d85f50d5SNeil Horman unlock_task_sighand(task, &flags); 475d85f50d5SNeil Horman 476d85f50d5SNeil Horman /* 477d85f50d5SNeil Horman * print the file header 478d85f50d5SNeil Horman */ 479d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n", 480d85f50d5SNeil Horman "Limit", "Soft Limit", "Hard Limit", "Units"); 481d85f50d5SNeil Horman 482d85f50d5SNeil Horman for (i = 0; i < RLIM_NLIMITS; i++) { 483d85f50d5SNeil Horman if (rlim[i].rlim_cur == RLIM_INFINITY) 484d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-25s %-20s ", 485d85f50d5SNeil Horman lnames[i].name, "unlimited"); 486d85f50d5SNeil Horman else 487d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-25s %-20lu ", 488d85f50d5SNeil Horman lnames[i].name, rlim[i].rlim_cur); 489d85f50d5SNeil Horman 490d85f50d5SNeil Horman if (rlim[i].rlim_max == RLIM_INFINITY) 491d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-20s ", "unlimited"); 492d85f50d5SNeil Horman else 493d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-20lu ", 494d85f50d5SNeil Horman rlim[i].rlim_max); 495d85f50d5SNeil Horman 496d85f50d5SNeil Horman if (lnames[i].unit) 497d85f50d5SNeil Horman count += sprintf(&bufptr[count], "%-10s\n", 498d85f50d5SNeil Horman lnames[i].unit); 499d85f50d5SNeil Horman else 500d85f50d5SNeil Horman count += sprintf(&bufptr[count], "\n"); 501d85f50d5SNeil Horman } 502d85f50d5SNeil Horman 503d85f50d5SNeil Horman return count; 504d85f50d5SNeil Horman } 505d85f50d5SNeil Horman 506ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK 507ebcb6734SRoland McGrath static int proc_pid_syscall(struct task_struct *task, char *buffer) 508ebcb6734SRoland McGrath { 509ebcb6734SRoland McGrath long nr; 510ebcb6734SRoland McGrath unsigned long args[6], sp, pc; 511ebcb6734SRoland McGrath 512ebcb6734SRoland McGrath if (task_current_syscall(task, &nr, args, 6, &sp, &pc)) 513ebcb6734SRoland McGrath return sprintf(buffer, "running\n"); 514ebcb6734SRoland McGrath 515ebcb6734SRoland McGrath if (nr < 0) 516ebcb6734SRoland McGrath return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc); 517ebcb6734SRoland McGrath 518ebcb6734SRoland McGrath return sprintf(buffer, 519ebcb6734SRoland McGrath "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n", 520ebcb6734SRoland McGrath nr, 521ebcb6734SRoland McGrath args[0], args[1], args[2], args[3], args[4], args[5], 522ebcb6734SRoland McGrath sp, pc); 523ebcb6734SRoland McGrath } 524ebcb6734SRoland McGrath #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */ 525ebcb6734SRoland McGrath 5261da177e4SLinus Torvalds /************************************************************************/ 5271da177e4SLinus Torvalds /* Here the fs part begins */ 5281da177e4SLinus Torvalds /************************************************************************/ 5291da177e4SLinus Torvalds 5301da177e4SLinus Torvalds /* permission checks */ 531778c1144SEric W. Biederman static int proc_fd_access_allowed(struct inode *inode) 5321da177e4SLinus Torvalds { 533778c1144SEric W. Biederman struct task_struct *task; 534778c1144SEric W. Biederman int allowed = 0; 535df26c40eSEric W. Biederman /* Allow access to a task's file descriptors if it is us or we 536df26c40eSEric W. Biederman * may use ptrace attach to the process and find out that 537df26c40eSEric W. Biederman * information. 538778c1144SEric W. Biederman */ 539778c1144SEric W. Biederman task = get_proc_task(inode); 540df26c40eSEric W. Biederman if (task) { 541006ebb40SStephen Smalley allowed = ptrace_may_access(task, PTRACE_MODE_READ); 542778c1144SEric W. Biederman put_task_struct(task); 543df26c40eSEric W. Biederman } 544778c1144SEric W. Biederman return allowed; 5451da177e4SLinus Torvalds } 5461da177e4SLinus Torvalds 5476d76fa58SLinus Torvalds static int proc_setattr(struct dentry *dentry, struct iattr *attr) 5486d76fa58SLinus Torvalds { 5496d76fa58SLinus Torvalds int error; 5506d76fa58SLinus Torvalds struct inode *inode = dentry->d_inode; 5516d76fa58SLinus Torvalds 5526d76fa58SLinus Torvalds if (attr->ia_valid & ATTR_MODE) 5536d76fa58SLinus Torvalds return -EPERM; 5546d76fa58SLinus Torvalds 5556d76fa58SLinus Torvalds error = inode_change_ok(inode, attr); 5561025774cSChristoph Hellwig if (error) 5576d76fa58SLinus Torvalds return error; 5581025774cSChristoph Hellwig 5591025774cSChristoph Hellwig if ((attr->ia_valid & ATTR_SIZE) && 5601025774cSChristoph Hellwig attr->ia_size != i_size_read(inode)) { 5611025774cSChristoph Hellwig error = vmtruncate(inode, attr->ia_size); 5621025774cSChristoph Hellwig if (error) 5631025774cSChristoph Hellwig return error; 5641025774cSChristoph Hellwig } 5651025774cSChristoph Hellwig 5661025774cSChristoph Hellwig setattr_copy(inode, attr); 5671025774cSChristoph Hellwig mark_inode_dirty(inode); 5681025774cSChristoph Hellwig return 0; 5696d76fa58SLinus Torvalds } 5706d76fa58SLinus Torvalds 571c5ef1c42SArjan van de Ven static const struct inode_operations proc_def_inode_operations = { 5726d76fa58SLinus Torvalds .setattr = proc_setattr, 5736d76fa58SLinus Torvalds }; 5746d76fa58SLinus Torvalds 575a1a2c409SMiklos Szeredi static int mounts_open_common(struct inode *inode, struct file *file, 576a1a2c409SMiklos Szeredi const struct seq_operations *op) 5771da177e4SLinus Torvalds { 57899f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 579cf7b708cSPavel Emelyanov struct nsproxy *nsp; 5806b3286edSKirill Korotaev struct mnt_namespace *ns = NULL; 581a1a2c409SMiklos Szeredi struct path root; 5825addc5ddSAl Viro struct proc_mounts *p; 5835addc5ddSAl Viro int ret = -EINVAL; 5845addc5ddSAl Viro 58599f89551SEric W. Biederman if (task) { 586cf7b708cSPavel Emelyanov rcu_read_lock(); 587cf7b708cSPavel Emelyanov nsp = task_nsproxy(task); 588cf7b708cSPavel Emelyanov if (nsp) { 589cf7b708cSPavel Emelyanov ns = nsp->mnt_ns; 5906b3286edSKirill Korotaev if (ns) 5916b3286edSKirill Korotaev get_mnt_ns(ns); 592863c4702SAlexey Dobriyan } 593cf7b708cSPavel Emelyanov rcu_read_unlock(); 594f7ad3c6bSMiklos Szeredi if (ns && get_task_root(task, &root) == 0) 5957c2c7d99SHugh Dickins ret = 0; 59699f89551SEric W. Biederman put_task_struct(task); 59799f89551SEric W. Biederman } 5981da177e4SLinus Torvalds 599a1a2c409SMiklos Szeredi if (!ns) 600a1a2c409SMiklos Szeredi goto err; 6017c2c7d99SHugh Dickins if (ret) 602a1a2c409SMiklos Szeredi goto err_put_ns; 603a1a2c409SMiklos Szeredi 6045addc5ddSAl Viro ret = -ENOMEM; 6055addc5ddSAl Viro p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL); 606a1a2c409SMiklos Szeredi if (!p) 607a1a2c409SMiklos Szeredi goto err_put_path; 608a1a2c409SMiklos Szeredi 6095addc5ddSAl Viro file->private_data = &p->m; 610a1a2c409SMiklos Szeredi ret = seq_open(file, op); 611a1a2c409SMiklos Szeredi if (ret) 612a1a2c409SMiklos Szeredi goto err_free; 613a1a2c409SMiklos Szeredi 614a1a2c409SMiklos Szeredi p->m.private = p; 615a1a2c409SMiklos Szeredi p->ns = ns; 616a1a2c409SMiklos Szeredi p->root = root; 6176b3286edSKirill Korotaev p->event = ns->event; 618a1a2c409SMiklos Szeredi 6195addc5ddSAl Viro return 0; 620a1a2c409SMiklos Szeredi 621a1a2c409SMiklos Szeredi err_free: 6225addc5ddSAl Viro kfree(p); 623a1a2c409SMiklos Szeredi err_put_path: 624a1a2c409SMiklos Szeredi path_put(&root); 625a1a2c409SMiklos Szeredi err_put_ns: 6266b3286edSKirill Korotaev put_mnt_ns(ns); 627a1a2c409SMiklos Szeredi err: 6281da177e4SLinus Torvalds return ret; 6291da177e4SLinus Torvalds } 6301da177e4SLinus Torvalds 6311da177e4SLinus Torvalds static int mounts_release(struct inode *inode, struct file *file) 6321da177e4SLinus Torvalds { 633a1a2c409SMiklos Szeredi struct proc_mounts *p = file->private_data; 634a1a2c409SMiklos Szeredi path_put(&p->root); 635a1a2c409SMiklos Szeredi put_mnt_ns(p->ns); 6361da177e4SLinus Torvalds return seq_release(inode, file); 6371da177e4SLinus Torvalds } 6381da177e4SLinus Torvalds 6395addc5ddSAl Viro static unsigned mounts_poll(struct file *file, poll_table *wait) 6405addc5ddSAl Viro { 6415addc5ddSAl Viro struct proc_mounts *p = file->private_data; 64231b07093SKOSAKI Motohiro unsigned res = POLLIN | POLLRDNORM; 6435addc5ddSAl Viro 6449f5596afSAl Viro poll_wait(file, &p->ns->poll, wait); 6459f5596afSAl Viro if (mnt_had_events(p)) 64631b07093SKOSAKI Motohiro res |= POLLERR | POLLPRI; 6475addc5ddSAl Viro 6485addc5ddSAl Viro return res; 6495addc5ddSAl Viro } 6505addc5ddSAl Viro 651a1a2c409SMiklos Szeredi static int mounts_open(struct inode *inode, struct file *file) 652a1a2c409SMiklos Szeredi { 653a1a2c409SMiklos Szeredi return mounts_open_common(inode, file, &mounts_op); 654a1a2c409SMiklos Szeredi } 655a1a2c409SMiklos Szeredi 65600977a59SArjan van de Ven static const struct file_operations proc_mounts_operations = { 6571da177e4SLinus Torvalds .open = mounts_open, 6581da177e4SLinus Torvalds .read = seq_read, 6591da177e4SLinus Torvalds .llseek = seq_lseek, 6601da177e4SLinus Torvalds .release = mounts_release, 6615addc5ddSAl Viro .poll = mounts_poll, 6621da177e4SLinus Torvalds }; 6631da177e4SLinus Torvalds 6642d4d4864SRam Pai static int mountinfo_open(struct inode *inode, struct file *file) 6652d4d4864SRam Pai { 6662d4d4864SRam Pai return mounts_open_common(inode, file, &mountinfo_op); 6672d4d4864SRam Pai } 6682d4d4864SRam Pai 6692d4d4864SRam Pai static const struct file_operations proc_mountinfo_operations = { 6702d4d4864SRam Pai .open = mountinfo_open, 6712d4d4864SRam Pai .read = seq_read, 6722d4d4864SRam Pai .llseek = seq_lseek, 6732d4d4864SRam Pai .release = mounts_release, 6742d4d4864SRam Pai .poll = mounts_poll, 6752d4d4864SRam Pai }; 6762d4d4864SRam Pai 677b4629fe2SChuck Lever static int mountstats_open(struct inode *inode, struct file *file) 678b4629fe2SChuck Lever { 679a1a2c409SMiklos Szeredi return mounts_open_common(inode, file, &mountstats_op); 680b4629fe2SChuck Lever } 681b4629fe2SChuck Lever 68200977a59SArjan van de Ven static const struct file_operations proc_mountstats_operations = { 683b4629fe2SChuck Lever .open = mountstats_open, 684b4629fe2SChuck Lever .read = seq_read, 685b4629fe2SChuck Lever .llseek = seq_lseek, 686b4629fe2SChuck Lever .release = mounts_release, 687b4629fe2SChuck Lever }; 688b4629fe2SChuck Lever 6891da177e4SLinus Torvalds #define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */ 6901da177e4SLinus Torvalds 6911da177e4SLinus Torvalds static ssize_t proc_info_read(struct file * file, char __user * buf, 6921da177e4SLinus Torvalds size_t count, loff_t *ppos) 6931da177e4SLinus Torvalds { 6942fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 6951da177e4SLinus Torvalds unsigned long page; 6961da177e4SLinus Torvalds ssize_t length; 69799f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 69899f89551SEric W. Biederman 69999f89551SEric W. Biederman length = -ESRCH; 70099f89551SEric W. Biederman if (!task) 70199f89551SEric W. Biederman goto out_no_task; 7021da177e4SLinus Torvalds 7031da177e4SLinus Torvalds if (count > PROC_BLOCK_SIZE) 7041da177e4SLinus Torvalds count = PROC_BLOCK_SIZE; 70599f89551SEric W. Biederman 70699f89551SEric W. Biederman length = -ENOMEM; 707e12ba74dSMel Gorman if (!(page = __get_free_page(GFP_TEMPORARY))) 70899f89551SEric W. Biederman goto out; 7091da177e4SLinus Torvalds 7101da177e4SLinus Torvalds length = PROC_I(inode)->op.proc_read(task, (char*)page); 7111da177e4SLinus Torvalds 7121da177e4SLinus Torvalds if (length >= 0) 7131da177e4SLinus Torvalds length = simple_read_from_buffer(buf, count, ppos, (char *)page, length); 7141da177e4SLinus Torvalds free_page(page); 71599f89551SEric W. Biederman out: 71699f89551SEric W. Biederman put_task_struct(task); 71799f89551SEric W. Biederman out_no_task: 7181da177e4SLinus Torvalds return length; 7191da177e4SLinus Torvalds } 7201da177e4SLinus Torvalds 72100977a59SArjan van de Ven static const struct file_operations proc_info_file_operations = { 7221da177e4SLinus Torvalds .read = proc_info_read, 72387df8424SArnd Bergmann .llseek = generic_file_llseek, 7241da177e4SLinus Torvalds }; 7251da177e4SLinus Torvalds 726be614086SEric W. Biederman static int proc_single_show(struct seq_file *m, void *v) 727be614086SEric W. Biederman { 728be614086SEric W. Biederman struct inode *inode = m->private; 729be614086SEric W. Biederman struct pid_namespace *ns; 730be614086SEric W. Biederman struct pid *pid; 731be614086SEric W. Biederman struct task_struct *task; 732be614086SEric W. Biederman int ret; 733be614086SEric W. Biederman 734be614086SEric W. Biederman ns = inode->i_sb->s_fs_info; 735be614086SEric W. Biederman pid = proc_pid(inode); 736be614086SEric W. Biederman task = get_pid_task(pid, PIDTYPE_PID); 737be614086SEric W. Biederman if (!task) 738be614086SEric W. Biederman return -ESRCH; 739be614086SEric W. Biederman 740be614086SEric W. Biederman ret = PROC_I(inode)->op.proc_show(m, ns, pid, task); 741be614086SEric W. Biederman 742be614086SEric W. Biederman put_task_struct(task); 743be614086SEric W. Biederman return ret; 744be614086SEric W. Biederman } 745be614086SEric W. Biederman 746be614086SEric W. Biederman static int proc_single_open(struct inode *inode, struct file *filp) 747be614086SEric W. Biederman { 748*c6a34058SJovi Zhang return single_open(filp, proc_single_show, inode); 749be614086SEric W. Biederman } 750be614086SEric W. Biederman 751be614086SEric W. Biederman static const struct file_operations proc_single_file_operations = { 752be614086SEric W. Biederman .open = proc_single_open, 753be614086SEric W. Biederman .read = seq_read, 754be614086SEric W. Biederman .llseek = seq_lseek, 755be614086SEric W. Biederman .release = single_release, 756be614086SEric W. Biederman }; 757be614086SEric W. Biederman 7581da177e4SLinus Torvalds static int mem_open(struct inode* inode, struct file* file) 7591da177e4SLinus Torvalds { 7601da177e4SLinus Torvalds file->private_data = (void*)((long)current->self_exec_id); 7614a3956c7SKAMEZAWA Hiroyuki /* OK to pass negative loff_t, we can catch out-of-range */ 7624a3956c7SKAMEZAWA Hiroyuki file->f_mode |= FMODE_UNSIGNED_OFFSET; 7631da177e4SLinus Torvalds return 0; 7641da177e4SLinus Torvalds } 7651da177e4SLinus Torvalds 7661da177e4SLinus Torvalds static ssize_t mem_read(struct file * file, char __user * buf, 7671da177e4SLinus Torvalds size_t count, loff_t *ppos) 7681da177e4SLinus Torvalds { 7692fddfeefSJosef "Jeff" Sipek struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 7701da177e4SLinus Torvalds char *page; 7711da177e4SLinus Torvalds unsigned long src = *ppos; 7721da177e4SLinus Torvalds int ret = -ESRCH; 7731da177e4SLinus Torvalds struct mm_struct *mm; 7741da177e4SLinus Torvalds 77599f89551SEric W. Biederman if (!task) 77699f89551SEric W. Biederman goto out_no_task; 77799f89551SEric W. Biederman 778638fa202SRoland McGrath if (check_mem_permission(task)) 7791da177e4SLinus Torvalds goto out; 7801da177e4SLinus Torvalds 7811da177e4SLinus Torvalds ret = -ENOMEM; 782e12ba74dSMel Gorman page = (char *)__get_free_page(GFP_TEMPORARY); 7831da177e4SLinus Torvalds if (!page) 7841da177e4SLinus Torvalds goto out; 7851da177e4SLinus Torvalds 7861da177e4SLinus Torvalds ret = 0; 7871da177e4SLinus Torvalds 7881da177e4SLinus Torvalds mm = get_task_mm(task); 7891da177e4SLinus Torvalds if (!mm) 7901da177e4SLinus Torvalds goto out_free; 7911da177e4SLinus Torvalds 7921da177e4SLinus Torvalds ret = -EIO; 7931da177e4SLinus Torvalds 7941da177e4SLinus Torvalds if (file->private_data != (void*)((long)current->self_exec_id)) 7951da177e4SLinus Torvalds goto out_put; 7961da177e4SLinus Torvalds 7971da177e4SLinus Torvalds ret = 0; 7981da177e4SLinus Torvalds 7991da177e4SLinus Torvalds while (count > 0) { 8001da177e4SLinus Torvalds int this_len, retval; 8011da177e4SLinus Torvalds 8021da177e4SLinus Torvalds this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; 8031da177e4SLinus Torvalds retval = access_process_vm(task, src, page, this_len, 0); 804638fa202SRoland McGrath if (!retval || check_mem_permission(task)) { 8051da177e4SLinus Torvalds if (!ret) 8061da177e4SLinus Torvalds ret = -EIO; 8071da177e4SLinus Torvalds break; 8081da177e4SLinus Torvalds } 8091da177e4SLinus Torvalds 8101da177e4SLinus Torvalds if (copy_to_user(buf, page, retval)) { 8111da177e4SLinus Torvalds ret = -EFAULT; 8121da177e4SLinus Torvalds break; 8131da177e4SLinus Torvalds } 8141da177e4SLinus Torvalds 8151da177e4SLinus Torvalds ret += retval; 8161da177e4SLinus Torvalds src += retval; 8171da177e4SLinus Torvalds buf += retval; 8181da177e4SLinus Torvalds count -= retval; 8191da177e4SLinus Torvalds } 8201da177e4SLinus Torvalds *ppos = src; 8211da177e4SLinus Torvalds 8221da177e4SLinus Torvalds out_put: 8231da177e4SLinus Torvalds mmput(mm); 8241da177e4SLinus Torvalds out_free: 8251da177e4SLinus Torvalds free_page((unsigned long) page); 8261da177e4SLinus Torvalds out: 82799f89551SEric W. Biederman put_task_struct(task); 82899f89551SEric W. Biederman out_no_task: 8291da177e4SLinus Torvalds return ret; 8301da177e4SLinus Torvalds } 8311da177e4SLinus Torvalds 8321da177e4SLinus Torvalds #define mem_write NULL 8331da177e4SLinus Torvalds 8341da177e4SLinus Torvalds #ifndef mem_write 8351da177e4SLinus Torvalds /* This is a security hazard */ 83663967fa9SGlauber de Oliveira Costa static ssize_t mem_write(struct file * file, const char __user *buf, 8371da177e4SLinus Torvalds size_t count, loff_t *ppos) 8381da177e4SLinus Torvalds { 839f7ca54f4SFrederik Deweerdt int copied; 8401da177e4SLinus Torvalds char *page; 8412fddfeefSJosef "Jeff" Sipek struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 8421da177e4SLinus Torvalds unsigned long dst = *ppos; 8431da177e4SLinus Torvalds 84499f89551SEric W. Biederman copied = -ESRCH; 84599f89551SEric W. Biederman if (!task) 84699f89551SEric W. Biederman goto out_no_task; 8471da177e4SLinus Torvalds 848638fa202SRoland McGrath if (check_mem_permission(task)) 84999f89551SEric W. Biederman goto out; 85099f89551SEric W. Biederman 85199f89551SEric W. Biederman copied = -ENOMEM; 852e12ba74dSMel Gorman page = (char *)__get_free_page(GFP_TEMPORARY); 8531da177e4SLinus Torvalds if (!page) 85499f89551SEric W. Biederman goto out; 8551da177e4SLinus Torvalds 856f7ca54f4SFrederik Deweerdt copied = 0; 8571da177e4SLinus Torvalds while (count > 0) { 8581da177e4SLinus Torvalds int this_len, retval; 8591da177e4SLinus Torvalds 8601da177e4SLinus Torvalds this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; 8611da177e4SLinus Torvalds if (copy_from_user(page, buf, this_len)) { 8621da177e4SLinus Torvalds copied = -EFAULT; 8631da177e4SLinus Torvalds break; 8641da177e4SLinus Torvalds } 8651da177e4SLinus Torvalds retval = access_process_vm(task, dst, page, this_len, 1); 8661da177e4SLinus Torvalds if (!retval) { 8671da177e4SLinus Torvalds if (!copied) 8681da177e4SLinus Torvalds copied = -EIO; 8691da177e4SLinus Torvalds break; 8701da177e4SLinus Torvalds } 8711da177e4SLinus Torvalds copied += retval; 8721da177e4SLinus Torvalds buf += retval; 8731da177e4SLinus Torvalds dst += retval; 8741da177e4SLinus Torvalds count -= retval; 8751da177e4SLinus Torvalds } 8761da177e4SLinus Torvalds *ppos = dst; 8771da177e4SLinus Torvalds free_page((unsigned long) page); 87899f89551SEric W. Biederman out: 87999f89551SEric W. Biederman put_task_struct(task); 88099f89551SEric W. Biederman out_no_task: 8811da177e4SLinus Torvalds return copied; 8821da177e4SLinus Torvalds } 8831da177e4SLinus Torvalds #endif 8841da177e4SLinus Torvalds 88585863e47SMatt Mackall loff_t mem_lseek(struct file *file, loff_t offset, int orig) 8861da177e4SLinus Torvalds { 8871da177e4SLinus Torvalds switch (orig) { 8881da177e4SLinus Torvalds case 0: 8891da177e4SLinus Torvalds file->f_pos = offset; 8901da177e4SLinus Torvalds break; 8911da177e4SLinus Torvalds case 1: 8921da177e4SLinus Torvalds file->f_pos += offset; 8931da177e4SLinus Torvalds break; 8941da177e4SLinus Torvalds default: 8951da177e4SLinus Torvalds return -EINVAL; 8961da177e4SLinus Torvalds } 8971da177e4SLinus Torvalds force_successful_syscall_return(); 8981da177e4SLinus Torvalds return file->f_pos; 8991da177e4SLinus Torvalds } 9001da177e4SLinus Torvalds 90100977a59SArjan van de Ven static const struct file_operations proc_mem_operations = { 9021da177e4SLinus Torvalds .llseek = mem_lseek, 9031da177e4SLinus Torvalds .read = mem_read, 9041da177e4SLinus Torvalds .write = mem_write, 9051da177e4SLinus Torvalds .open = mem_open, 9061da177e4SLinus Torvalds }; 9071da177e4SLinus Torvalds 908315e28c8SJames Pearson static ssize_t environ_read(struct file *file, char __user *buf, 909315e28c8SJames Pearson size_t count, loff_t *ppos) 910315e28c8SJames Pearson { 911315e28c8SJames Pearson struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 912315e28c8SJames Pearson char *page; 913315e28c8SJames Pearson unsigned long src = *ppos; 914315e28c8SJames Pearson int ret = -ESRCH; 915315e28c8SJames Pearson struct mm_struct *mm; 916315e28c8SJames Pearson 917315e28c8SJames Pearson if (!task) 918315e28c8SJames Pearson goto out_no_task; 919315e28c8SJames Pearson 920006ebb40SStephen Smalley if (!ptrace_may_access(task, PTRACE_MODE_READ)) 921315e28c8SJames Pearson goto out; 922315e28c8SJames Pearson 923315e28c8SJames Pearson ret = -ENOMEM; 924315e28c8SJames Pearson page = (char *)__get_free_page(GFP_TEMPORARY); 925315e28c8SJames Pearson if (!page) 926315e28c8SJames Pearson goto out; 927315e28c8SJames Pearson 928315e28c8SJames Pearson ret = 0; 929315e28c8SJames Pearson 930315e28c8SJames Pearson mm = get_task_mm(task); 931315e28c8SJames Pearson if (!mm) 932315e28c8SJames Pearson goto out_free; 933315e28c8SJames Pearson 934315e28c8SJames Pearson while (count > 0) { 935315e28c8SJames Pearson int this_len, retval, max_len; 936315e28c8SJames Pearson 937315e28c8SJames Pearson this_len = mm->env_end - (mm->env_start + src); 938315e28c8SJames Pearson 939315e28c8SJames Pearson if (this_len <= 0) 940315e28c8SJames Pearson break; 941315e28c8SJames Pearson 942315e28c8SJames Pearson max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count; 943315e28c8SJames Pearson this_len = (this_len > max_len) ? max_len : this_len; 944315e28c8SJames Pearson 945315e28c8SJames Pearson retval = access_process_vm(task, (mm->env_start + src), 946315e28c8SJames Pearson page, this_len, 0); 947315e28c8SJames Pearson 948315e28c8SJames Pearson if (retval <= 0) { 949315e28c8SJames Pearson ret = retval; 950315e28c8SJames Pearson break; 951315e28c8SJames Pearson } 952315e28c8SJames Pearson 953315e28c8SJames Pearson if (copy_to_user(buf, page, retval)) { 954315e28c8SJames Pearson ret = -EFAULT; 955315e28c8SJames Pearson break; 956315e28c8SJames Pearson } 957315e28c8SJames Pearson 958315e28c8SJames Pearson ret += retval; 959315e28c8SJames Pearson src += retval; 960315e28c8SJames Pearson buf += retval; 961315e28c8SJames Pearson count -= retval; 962315e28c8SJames Pearson } 963315e28c8SJames Pearson *ppos = src; 964315e28c8SJames Pearson 965315e28c8SJames Pearson mmput(mm); 966315e28c8SJames Pearson out_free: 967315e28c8SJames Pearson free_page((unsigned long) page); 968315e28c8SJames Pearson out: 969315e28c8SJames Pearson put_task_struct(task); 970315e28c8SJames Pearson out_no_task: 971315e28c8SJames Pearson return ret; 972315e28c8SJames Pearson } 973315e28c8SJames Pearson 974315e28c8SJames Pearson static const struct file_operations proc_environ_operations = { 975315e28c8SJames Pearson .read = environ_read, 97687df8424SArnd Bergmann .llseek = generic_file_llseek, 977315e28c8SJames Pearson }; 978315e28c8SJames Pearson 9791da177e4SLinus Torvalds static ssize_t oom_adjust_read(struct file *file, char __user *buf, 9801da177e4SLinus Torvalds size_t count, loff_t *ppos) 9811da177e4SLinus Torvalds { 9822fddfeefSJosef "Jeff" Sipek struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 9838578cea7SEric W. Biederman char buffer[PROC_NUMBUF]; 9841da177e4SLinus Torvalds size_t len; 98528b83c51SKOSAKI Motohiro int oom_adjust = OOM_DISABLE; 98628b83c51SKOSAKI Motohiro unsigned long flags; 9871da177e4SLinus Torvalds 98899f89551SEric W. Biederman if (!task) 98999f89551SEric W. Biederman return -ESRCH; 99028b83c51SKOSAKI Motohiro 99128b83c51SKOSAKI Motohiro if (lock_task_sighand(task, &flags)) { 99228b83c51SKOSAKI Motohiro oom_adjust = task->signal->oom_adj; 99328b83c51SKOSAKI Motohiro unlock_task_sighand(task, &flags); 99428b83c51SKOSAKI Motohiro } 99528b83c51SKOSAKI Motohiro 99699f89551SEric W. Biederman put_task_struct(task); 99799f89551SEric W. Biederman 9988578cea7SEric W. Biederman len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust); 9990c28f287SAkinobu Mita 10000c28f287SAkinobu Mita return simple_read_from_buffer(buf, count, ppos, buffer, len); 10011da177e4SLinus Torvalds } 10021da177e4SLinus Torvalds 10031da177e4SLinus Torvalds static ssize_t oom_adjust_write(struct file *file, const char __user *buf, 10041da177e4SLinus Torvalds size_t count, loff_t *ppos) 10051da177e4SLinus Torvalds { 100699f89551SEric W. Biederman struct task_struct *task; 10075d863b89SKOSAKI Motohiro char buffer[PROC_NUMBUF]; 10085d863b89SKOSAKI Motohiro long oom_adjust; 100928b83c51SKOSAKI Motohiro unsigned long flags; 10105d863b89SKOSAKI Motohiro int err; 10111da177e4SLinus Torvalds 10128578cea7SEric W. Biederman memset(buffer, 0, sizeof(buffer)); 10138578cea7SEric W. Biederman if (count > sizeof(buffer) - 1) 10148578cea7SEric W. Biederman count = sizeof(buffer) - 1; 1015723548bfSDavid Rientjes if (copy_from_user(buffer, buf, count)) { 1016723548bfSDavid Rientjes err = -EFAULT; 1017723548bfSDavid Rientjes goto out; 1018723548bfSDavid Rientjes } 10195d863b89SKOSAKI Motohiro 10205d863b89SKOSAKI Motohiro err = strict_strtol(strstrip(buffer), 0, &oom_adjust); 10215d863b89SKOSAKI Motohiro if (err) 1022723548bfSDavid Rientjes goto out; 10238ac773b4SAlexey Dobriyan if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) && 1024723548bfSDavid Rientjes oom_adjust != OOM_DISABLE) { 1025723548bfSDavid Rientjes err = -EINVAL; 1026723548bfSDavid Rientjes goto out; 1027723548bfSDavid Rientjes } 10285d863b89SKOSAKI Motohiro 10292fddfeefSJosef "Jeff" Sipek task = get_proc_task(file->f_path.dentry->d_inode); 1030723548bfSDavid Rientjes if (!task) { 1031723548bfSDavid Rientjes err = -ESRCH; 1032723548bfSDavid Rientjes goto out; 1033723548bfSDavid Rientjes } 103428b83c51SKOSAKI Motohiro 10353d5992d2SYing Han task_lock(task); 10363d5992d2SYing Han if (!task->mm) { 1037723548bfSDavid Rientjes err = -EINVAL; 1038723548bfSDavid Rientjes goto err_task_lock; 10393d5992d2SYing Han } 10403d5992d2SYing Han 1041d19d5476SDavid Rientjes if (!lock_task_sighand(task, &flags)) { 1042d19d5476SDavid Rientjes err = -ESRCH; 1043d19d5476SDavid Rientjes goto err_task_lock; 1044d19d5476SDavid Rientjes } 1045d19d5476SDavid Rientjes 1046d19d5476SDavid Rientjes if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) { 1047d19d5476SDavid Rientjes err = -EACCES; 1048d19d5476SDavid Rientjes goto err_sighand; 1049d19d5476SDavid Rientjes } 1050d19d5476SDavid Rientjes 10513d5992d2SYing Han if (oom_adjust != task->signal->oom_adj) { 10523d5992d2SYing Han if (oom_adjust == OOM_DISABLE) 10533d5992d2SYing Han atomic_inc(&task->mm->oom_disable_count); 10543d5992d2SYing Han if (task->signal->oom_adj == OOM_DISABLE) 10553d5992d2SYing Han atomic_dec(&task->mm->oom_disable_count); 10563d5992d2SYing Han } 10573d5992d2SYing Han 105851b1bd2aSDavid Rientjes /* 105951b1bd2aSDavid Rientjes * Warn that /proc/pid/oom_adj is deprecated, see 106051b1bd2aSDavid Rientjes * Documentation/feature-removal-schedule.txt. 106151b1bd2aSDavid Rientjes */ 106251b1bd2aSDavid Rientjes printk_once(KERN_WARNING "%s (%d): /proc/%d/oom_adj is deprecated, " 106351b1bd2aSDavid Rientjes "please use /proc/%d/oom_score_adj instead.\n", 106451b1bd2aSDavid Rientjes current->comm, task_pid_nr(current), 106551b1bd2aSDavid Rientjes task_pid_nr(task), task_pid_nr(task)); 106628b83c51SKOSAKI Motohiro task->signal->oom_adj = oom_adjust; 1067a63d83f4SDavid Rientjes /* 1068a63d83f4SDavid Rientjes * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum 1069a63d83f4SDavid Rientjes * value is always attainable. 1070a63d83f4SDavid Rientjes */ 1071a63d83f4SDavid Rientjes if (task->signal->oom_adj == OOM_ADJUST_MAX) 1072a63d83f4SDavid Rientjes task->signal->oom_score_adj = OOM_SCORE_ADJ_MAX; 1073a63d83f4SDavid Rientjes else 1074a63d83f4SDavid Rientjes task->signal->oom_score_adj = (oom_adjust * OOM_SCORE_ADJ_MAX) / 1075a63d83f4SDavid Rientjes -OOM_DISABLE; 1076723548bfSDavid Rientjes err_sighand: 107728b83c51SKOSAKI Motohiro unlock_task_sighand(task, &flags); 1078d19d5476SDavid Rientjes err_task_lock: 1079d19d5476SDavid Rientjes task_unlock(task); 108099f89551SEric W. Biederman put_task_struct(task); 1081723548bfSDavid Rientjes out: 1082723548bfSDavid Rientjes return err < 0 ? err : count; 10831da177e4SLinus Torvalds } 10841da177e4SLinus Torvalds 108500977a59SArjan van de Ven static const struct file_operations proc_oom_adjust_operations = { 10861da177e4SLinus Torvalds .read = oom_adjust_read, 10871da177e4SLinus Torvalds .write = oom_adjust_write, 108887df8424SArnd Bergmann .llseek = generic_file_llseek, 10891da177e4SLinus Torvalds }; 10901da177e4SLinus Torvalds 1091a63d83f4SDavid Rientjes static ssize_t oom_score_adj_read(struct file *file, char __user *buf, 1092a63d83f4SDavid Rientjes size_t count, loff_t *ppos) 1093a63d83f4SDavid Rientjes { 1094a63d83f4SDavid Rientjes struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode); 1095a63d83f4SDavid Rientjes char buffer[PROC_NUMBUF]; 1096a63d83f4SDavid Rientjes int oom_score_adj = OOM_SCORE_ADJ_MIN; 1097a63d83f4SDavid Rientjes unsigned long flags; 1098a63d83f4SDavid Rientjes size_t len; 1099a63d83f4SDavid Rientjes 1100a63d83f4SDavid Rientjes if (!task) 1101a63d83f4SDavid Rientjes return -ESRCH; 1102a63d83f4SDavid Rientjes if (lock_task_sighand(task, &flags)) { 1103a63d83f4SDavid Rientjes oom_score_adj = task->signal->oom_score_adj; 1104a63d83f4SDavid Rientjes unlock_task_sighand(task, &flags); 1105a63d83f4SDavid Rientjes } 1106a63d83f4SDavid Rientjes put_task_struct(task); 1107a63d83f4SDavid Rientjes len = snprintf(buffer, sizeof(buffer), "%d\n", oom_score_adj); 1108a63d83f4SDavid Rientjes return simple_read_from_buffer(buf, count, ppos, buffer, len); 1109a63d83f4SDavid Rientjes } 1110a63d83f4SDavid Rientjes 1111a63d83f4SDavid Rientjes static ssize_t oom_score_adj_write(struct file *file, const char __user *buf, 1112a63d83f4SDavid Rientjes size_t count, loff_t *ppos) 1113a63d83f4SDavid Rientjes { 1114a63d83f4SDavid Rientjes struct task_struct *task; 1115a63d83f4SDavid Rientjes char buffer[PROC_NUMBUF]; 1116a63d83f4SDavid Rientjes unsigned long flags; 1117a63d83f4SDavid Rientjes long oom_score_adj; 1118a63d83f4SDavid Rientjes int err; 1119a63d83f4SDavid Rientjes 1120a63d83f4SDavid Rientjes memset(buffer, 0, sizeof(buffer)); 1121a63d83f4SDavid Rientjes if (count > sizeof(buffer) - 1) 1122a63d83f4SDavid Rientjes count = sizeof(buffer) - 1; 1123723548bfSDavid Rientjes if (copy_from_user(buffer, buf, count)) { 1124723548bfSDavid Rientjes err = -EFAULT; 1125723548bfSDavid Rientjes goto out; 1126723548bfSDavid Rientjes } 1127a63d83f4SDavid Rientjes 1128a63d83f4SDavid Rientjes err = strict_strtol(strstrip(buffer), 0, &oom_score_adj); 1129a63d83f4SDavid Rientjes if (err) 1130723548bfSDavid Rientjes goto out; 1131a63d83f4SDavid Rientjes if (oom_score_adj < OOM_SCORE_ADJ_MIN || 1132723548bfSDavid Rientjes oom_score_adj > OOM_SCORE_ADJ_MAX) { 1133723548bfSDavid Rientjes err = -EINVAL; 1134723548bfSDavid Rientjes goto out; 1135723548bfSDavid Rientjes } 1136a63d83f4SDavid Rientjes 1137a63d83f4SDavid Rientjes task = get_proc_task(file->f_path.dentry->d_inode); 1138723548bfSDavid Rientjes if (!task) { 1139723548bfSDavid Rientjes err = -ESRCH; 1140723548bfSDavid Rientjes goto out; 1141723548bfSDavid Rientjes } 1142a63d83f4SDavid Rientjes 11433d5992d2SYing Han task_lock(task); 11443d5992d2SYing Han if (!task->mm) { 1145723548bfSDavid Rientjes err = -EINVAL; 1146723548bfSDavid Rientjes goto err_task_lock; 11473d5992d2SYing Han } 1148d19d5476SDavid Rientjes 1149d19d5476SDavid Rientjes if (!lock_task_sighand(task, &flags)) { 1150d19d5476SDavid Rientjes err = -ESRCH; 1151d19d5476SDavid Rientjes goto err_task_lock; 1152d19d5476SDavid Rientjes } 1153d19d5476SDavid Rientjes 1154d19d5476SDavid Rientjes if (oom_score_adj < task->signal->oom_score_adj && 1155d19d5476SDavid Rientjes !capable(CAP_SYS_RESOURCE)) { 1156d19d5476SDavid Rientjes err = -EACCES; 1157d19d5476SDavid Rientjes goto err_sighand; 1158d19d5476SDavid Rientjes } 1159d19d5476SDavid Rientjes 11603d5992d2SYing Han if (oom_score_adj != task->signal->oom_score_adj) { 11613d5992d2SYing Han if (oom_score_adj == OOM_SCORE_ADJ_MIN) 11623d5992d2SYing Han atomic_inc(&task->mm->oom_disable_count); 11633d5992d2SYing Han if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) 11643d5992d2SYing Han atomic_dec(&task->mm->oom_disable_count); 11653d5992d2SYing Han } 1166a63d83f4SDavid Rientjes task->signal->oom_score_adj = oom_score_adj; 1167a63d83f4SDavid Rientjes /* 1168a63d83f4SDavid Rientjes * Scale /proc/pid/oom_adj appropriately ensuring that OOM_DISABLE is 1169a63d83f4SDavid Rientjes * always attainable. 1170a63d83f4SDavid Rientjes */ 1171a63d83f4SDavid Rientjes if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) 1172a63d83f4SDavid Rientjes task->signal->oom_adj = OOM_DISABLE; 1173a63d83f4SDavid Rientjes else 1174a63d83f4SDavid Rientjes task->signal->oom_adj = (oom_score_adj * OOM_ADJUST_MAX) / 1175a63d83f4SDavid Rientjes OOM_SCORE_ADJ_MAX; 1176723548bfSDavid Rientjes err_sighand: 1177a63d83f4SDavid Rientjes unlock_task_sighand(task, &flags); 1178d19d5476SDavid Rientjes err_task_lock: 1179d19d5476SDavid Rientjes task_unlock(task); 1180a63d83f4SDavid Rientjes put_task_struct(task); 1181723548bfSDavid Rientjes out: 1182723548bfSDavid Rientjes return err < 0 ? err : count; 1183a63d83f4SDavid Rientjes } 1184a63d83f4SDavid Rientjes 1185a63d83f4SDavid Rientjes static const struct file_operations proc_oom_score_adj_operations = { 1186a63d83f4SDavid Rientjes .read = oom_score_adj_read, 1187a63d83f4SDavid Rientjes .write = oom_score_adj_write, 11886038f373SArnd Bergmann .llseek = default_llseek, 1189a63d83f4SDavid Rientjes }; 1190a63d83f4SDavid Rientjes 11911da177e4SLinus Torvalds #ifdef CONFIG_AUDITSYSCALL 11921da177e4SLinus Torvalds #define TMPBUFLEN 21 11931da177e4SLinus Torvalds static ssize_t proc_loginuid_read(struct file * file, char __user * buf, 11941da177e4SLinus Torvalds size_t count, loff_t *ppos) 11951da177e4SLinus Torvalds { 11962fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 119799f89551SEric W. Biederman struct task_struct *task = get_proc_task(inode); 11981da177e4SLinus Torvalds ssize_t length; 11991da177e4SLinus Torvalds char tmpbuf[TMPBUFLEN]; 12001da177e4SLinus Torvalds 120199f89551SEric W. Biederman if (!task) 120299f89551SEric W. Biederman return -ESRCH; 12031da177e4SLinus Torvalds length = scnprintf(tmpbuf, TMPBUFLEN, "%u", 12040c11b942SAl Viro audit_get_loginuid(task)); 120599f89551SEric W. Biederman put_task_struct(task); 12061da177e4SLinus Torvalds return simple_read_from_buffer(buf, count, ppos, tmpbuf, length); 12071da177e4SLinus Torvalds } 12081da177e4SLinus Torvalds 12091da177e4SLinus Torvalds static ssize_t proc_loginuid_write(struct file * file, const char __user * buf, 12101da177e4SLinus Torvalds size_t count, loff_t *ppos) 12111da177e4SLinus Torvalds { 12122fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 12131da177e4SLinus Torvalds char *page, *tmp; 12141da177e4SLinus Torvalds ssize_t length; 12151da177e4SLinus Torvalds uid_t loginuid; 12161da177e4SLinus Torvalds 12171da177e4SLinus Torvalds if (!capable(CAP_AUDIT_CONTROL)) 12181da177e4SLinus Torvalds return -EPERM; 12191da177e4SLinus Torvalds 12207dc52157SPaul E. McKenney rcu_read_lock(); 12217dc52157SPaul E. McKenney if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) { 12227dc52157SPaul E. McKenney rcu_read_unlock(); 12231da177e4SLinus Torvalds return -EPERM; 12247dc52157SPaul E. McKenney } 12257dc52157SPaul E. McKenney rcu_read_unlock(); 12261da177e4SLinus Torvalds 1227e0182909SAl Viro if (count >= PAGE_SIZE) 1228e0182909SAl Viro count = PAGE_SIZE - 1; 12291da177e4SLinus Torvalds 12301da177e4SLinus Torvalds if (*ppos != 0) { 12311da177e4SLinus Torvalds /* No partial writes. */ 12321da177e4SLinus Torvalds return -EINVAL; 12331da177e4SLinus Torvalds } 1234e12ba74dSMel Gorman page = (char*)__get_free_page(GFP_TEMPORARY); 12351da177e4SLinus Torvalds if (!page) 12361da177e4SLinus Torvalds return -ENOMEM; 12371da177e4SLinus Torvalds length = -EFAULT; 12381da177e4SLinus Torvalds if (copy_from_user(page, buf, count)) 12391da177e4SLinus Torvalds goto out_free_page; 12401da177e4SLinus Torvalds 1241e0182909SAl Viro page[count] = '\0'; 12421da177e4SLinus Torvalds loginuid = simple_strtoul(page, &tmp, 10); 12431da177e4SLinus Torvalds if (tmp == page) { 12441da177e4SLinus Torvalds length = -EINVAL; 12451da177e4SLinus Torvalds goto out_free_page; 12461da177e4SLinus Torvalds 12471da177e4SLinus Torvalds } 124899f89551SEric W. Biederman length = audit_set_loginuid(current, loginuid); 12491da177e4SLinus Torvalds if (likely(length == 0)) 12501da177e4SLinus Torvalds length = count; 12511da177e4SLinus Torvalds 12521da177e4SLinus Torvalds out_free_page: 12531da177e4SLinus Torvalds free_page((unsigned long) page); 12541da177e4SLinus Torvalds return length; 12551da177e4SLinus Torvalds } 12561da177e4SLinus Torvalds 125700977a59SArjan van de Ven static const struct file_operations proc_loginuid_operations = { 12581da177e4SLinus Torvalds .read = proc_loginuid_read, 12591da177e4SLinus Torvalds .write = proc_loginuid_write, 126087df8424SArnd Bergmann .llseek = generic_file_llseek, 12611da177e4SLinus Torvalds }; 12621e0bd755SEric Paris 12631e0bd755SEric Paris static ssize_t proc_sessionid_read(struct file * file, char __user * buf, 12641e0bd755SEric Paris size_t count, loff_t *ppos) 12651e0bd755SEric Paris { 12661e0bd755SEric Paris struct inode * inode = file->f_path.dentry->d_inode; 12671e0bd755SEric Paris struct task_struct *task = get_proc_task(inode); 12681e0bd755SEric Paris ssize_t length; 12691e0bd755SEric Paris char tmpbuf[TMPBUFLEN]; 12701e0bd755SEric Paris 12711e0bd755SEric Paris if (!task) 12721e0bd755SEric Paris return -ESRCH; 12731e0bd755SEric Paris length = scnprintf(tmpbuf, TMPBUFLEN, "%u", 12741e0bd755SEric Paris audit_get_sessionid(task)); 12751e0bd755SEric Paris put_task_struct(task); 12761e0bd755SEric Paris return simple_read_from_buffer(buf, count, ppos, tmpbuf, length); 12771e0bd755SEric Paris } 12781e0bd755SEric Paris 12791e0bd755SEric Paris static const struct file_operations proc_sessionid_operations = { 12801e0bd755SEric Paris .read = proc_sessionid_read, 128187df8424SArnd Bergmann .llseek = generic_file_llseek, 12821e0bd755SEric Paris }; 12831da177e4SLinus Torvalds #endif 12841da177e4SLinus Torvalds 1285f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION 1286f4f154fdSAkinobu Mita static ssize_t proc_fault_inject_read(struct file * file, char __user * buf, 1287f4f154fdSAkinobu Mita size_t count, loff_t *ppos) 1288f4f154fdSAkinobu Mita { 1289f4f154fdSAkinobu Mita struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 1290f4f154fdSAkinobu Mita char buffer[PROC_NUMBUF]; 1291f4f154fdSAkinobu Mita size_t len; 1292f4f154fdSAkinobu Mita int make_it_fail; 1293f4f154fdSAkinobu Mita 1294f4f154fdSAkinobu Mita if (!task) 1295f4f154fdSAkinobu Mita return -ESRCH; 1296f4f154fdSAkinobu Mita make_it_fail = task->make_it_fail; 1297f4f154fdSAkinobu Mita put_task_struct(task); 1298f4f154fdSAkinobu Mita 1299f4f154fdSAkinobu Mita len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail); 13000c28f287SAkinobu Mita 13010c28f287SAkinobu Mita return simple_read_from_buffer(buf, count, ppos, buffer, len); 1302f4f154fdSAkinobu Mita } 1303f4f154fdSAkinobu Mita 1304f4f154fdSAkinobu Mita static ssize_t proc_fault_inject_write(struct file * file, 1305f4f154fdSAkinobu Mita const char __user * buf, size_t count, loff_t *ppos) 1306f4f154fdSAkinobu Mita { 1307f4f154fdSAkinobu Mita struct task_struct *task; 1308f4f154fdSAkinobu Mita char buffer[PROC_NUMBUF], *end; 1309f4f154fdSAkinobu Mita int make_it_fail; 1310f4f154fdSAkinobu Mita 1311f4f154fdSAkinobu Mita if (!capable(CAP_SYS_RESOURCE)) 1312f4f154fdSAkinobu Mita return -EPERM; 1313f4f154fdSAkinobu Mita memset(buffer, 0, sizeof(buffer)); 1314f4f154fdSAkinobu Mita if (count > sizeof(buffer) - 1) 1315f4f154fdSAkinobu Mita count = sizeof(buffer) - 1; 1316f4f154fdSAkinobu Mita if (copy_from_user(buffer, buf, count)) 1317f4f154fdSAkinobu Mita return -EFAULT; 1318cba8aafeSVincent Li make_it_fail = simple_strtol(strstrip(buffer), &end, 0); 1319cba8aafeSVincent Li if (*end) 1320cba8aafeSVincent Li return -EINVAL; 1321f4f154fdSAkinobu Mita task = get_proc_task(file->f_dentry->d_inode); 1322f4f154fdSAkinobu Mita if (!task) 1323f4f154fdSAkinobu Mita return -ESRCH; 1324f4f154fdSAkinobu Mita task->make_it_fail = make_it_fail; 1325f4f154fdSAkinobu Mita put_task_struct(task); 1326cba8aafeSVincent Li 1327cba8aafeSVincent Li return count; 1328f4f154fdSAkinobu Mita } 1329f4f154fdSAkinobu Mita 133000977a59SArjan van de Ven static const struct file_operations proc_fault_inject_operations = { 1331f4f154fdSAkinobu Mita .read = proc_fault_inject_read, 1332f4f154fdSAkinobu Mita .write = proc_fault_inject_write, 133387df8424SArnd Bergmann .llseek = generic_file_llseek, 1334f4f154fdSAkinobu Mita }; 1335f4f154fdSAkinobu Mita #endif 1336f4f154fdSAkinobu Mita 13379745512cSArjan van de Ven 133843ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 133943ae34cbSIngo Molnar /* 134043ae34cbSIngo Molnar * Print out various scheduling related per-task fields: 134143ae34cbSIngo Molnar */ 134243ae34cbSIngo Molnar static int sched_show(struct seq_file *m, void *v) 134343ae34cbSIngo Molnar { 134443ae34cbSIngo Molnar struct inode *inode = m->private; 134543ae34cbSIngo Molnar struct task_struct *p; 134643ae34cbSIngo Molnar 134743ae34cbSIngo Molnar p = get_proc_task(inode); 134843ae34cbSIngo Molnar if (!p) 134943ae34cbSIngo Molnar return -ESRCH; 135043ae34cbSIngo Molnar proc_sched_show_task(p, m); 135143ae34cbSIngo Molnar 135243ae34cbSIngo Molnar put_task_struct(p); 135343ae34cbSIngo Molnar 135443ae34cbSIngo Molnar return 0; 135543ae34cbSIngo Molnar } 135643ae34cbSIngo Molnar 135743ae34cbSIngo Molnar static ssize_t 135843ae34cbSIngo Molnar sched_write(struct file *file, const char __user *buf, 135943ae34cbSIngo Molnar size_t count, loff_t *offset) 136043ae34cbSIngo Molnar { 136143ae34cbSIngo Molnar struct inode *inode = file->f_path.dentry->d_inode; 136243ae34cbSIngo Molnar struct task_struct *p; 136343ae34cbSIngo Molnar 136443ae34cbSIngo Molnar p = get_proc_task(inode); 136543ae34cbSIngo Molnar if (!p) 136643ae34cbSIngo Molnar return -ESRCH; 136743ae34cbSIngo Molnar proc_sched_set_task(p); 136843ae34cbSIngo Molnar 136943ae34cbSIngo Molnar put_task_struct(p); 137043ae34cbSIngo Molnar 137143ae34cbSIngo Molnar return count; 137243ae34cbSIngo Molnar } 137343ae34cbSIngo Molnar 137443ae34cbSIngo Molnar static int sched_open(struct inode *inode, struct file *filp) 137543ae34cbSIngo Molnar { 1376*c6a34058SJovi Zhang return single_open(filp, sched_show, inode); 137743ae34cbSIngo Molnar } 137843ae34cbSIngo Molnar 137943ae34cbSIngo Molnar static const struct file_operations proc_pid_sched_operations = { 138043ae34cbSIngo Molnar .open = sched_open, 138143ae34cbSIngo Molnar .read = seq_read, 138243ae34cbSIngo Molnar .write = sched_write, 138343ae34cbSIngo Molnar .llseek = seq_lseek, 13845ea473a1SAlexey Dobriyan .release = single_release, 138543ae34cbSIngo Molnar }; 138643ae34cbSIngo Molnar 138743ae34cbSIngo Molnar #endif 138843ae34cbSIngo Molnar 13895091faa4SMike Galbraith #ifdef CONFIG_SCHED_AUTOGROUP 13905091faa4SMike Galbraith /* 13915091faa4SMike Galbraith * Print out autogroup related information: 13925091faa4SMike Galbraith */ 13935091faa4SMike Galbraith static int sched_autogroup_show(struct seq_file *m, void *v) 13945091faa4SMike Galbraith { 13955091faa4SMike Galbraith struct inode *inode = m->private; 13965091faa4SMike Galbraith struct task_struct *p; 13975091faa4SMike Galbraith 13985091faa4SMike Galbraith p = get_proc_task(inode); 13995091faa4SMike Galbraith if (!p) 14005091faa4SMike Galbraith return -ESRCH; 14015091faa4SMike Galbraith proc_sched_autogroup_show_task(p, m); 14025091faa4SMike Galbraith 14035091faa4SMike Galbraith put_task_struct(p); 14045091faa4SMike Galbraith 14055091faa4SMike Galbraith return 0; 14065091faa4SMike Galbraith } 14075091faa4SMike Galbraith 14085091faa4SMike Galbraith static ssize_t 14095091faa4SMike Galbraith sched_autogroup_write(struct file *file, const char __user *buf, 14105091faa4SMike Galbraith size_t count, loff_t *offset) 14115091faa4SMike Galbraith { 14125091faa4SMike Galbraith struct inode *inode = file->f_path.dentry->d_inode; 14135091faa4SMike Galbraith struct task_struct *p; 14145091faa4SMike Galbraith char buffer[PROC_NUMBUF]; 14155091faa4SMike Galbraith long nice; 14165091faa4SMike Galbraith int err; 14175091faa4SMike Galbraith 14185091faa4SMike Galbraith memset(buffer, 0, sizeof(buffer)); 14195091faa4SMike Galbraith if (count > sizeof(buffer) - 1) 14205091faa4SMike Galbraith count = sizeof(buffer) - 1; 14215091faa4SMike Galbraith if (copy_from_user(buffer, buf, count)) 14225091faa4SMike Galbraith return -EFAULT; 14235091faa4SMike Galbraith 14245091faa4SMike Galbraith err = strict_strtol(strstrip(buffer), 0, &nice); 14255091faa4SMike Galbraith if (err) 14265091faa4SMike Galbraith return -EINVAL; 14275091faa4SMike Galbraith 14285091faa4SMike Galbraith p = get_proc_task(inode); 14295091faa4SMike Galbraith if (!p) 14305091faa4SMike Galbraith return -ESRCH; 14315091faa4SMike Galbraith 14325091faa4SMike Galbraith err = nice; 14335091faa4SMike Galbraith err = proc_sched_autogroup_set_nice(p, &err); 14345091faa4SMike Galbraith if (err) 14355091faa4SMike Galbraith count = err; 14365091faa4SMike Galbraith 14375091faa4SMike Galbraith put_task_struct(p); 14385091faa4SMike Galbraith 14395091faa4SMike Galbraith return count; 14405091faa4SMike Galbraith } 14415091faa4SMike Galbraith 14425091faa4SMike Galbraith static int sched_autogroup_open(struct inode *inode, struct file *filp) 14435091faa4SMike Galbraith { 14445091faa4SMike Galbraith int ret; 14455091faa4SMike Galbraith 14465091faa4SMike Galbraith ret = single_open(filp, sched_autogroup_show, NULL); 14475091faa4SMike Galbraith if (!ret) { 14485091faa4SMike Galbraith struct seq_file *m = filp->private_data; 14495091faa4SMike Galbraith 14505091faa4SMike Galbraith m->private = inode; 14515091faa4SMike Galbraith } 14525091faa4SMike Galbraith return ret; 14535091faa4SMike Galbraith } 14545091faa4SMike Galbraith 14555091faa4SMike Galbraith static const struct file_operations proc_pid_sched_autogroup_operations = { 14565091faa4SMike Galbraith .open = sched_autogroup_open, 14575091faa4SMike Galbraith .read = seq_read, 14585091faa4SMike Galbraith .write = sched_autogroup_write, 14595091faa4SMike Galbraith .llseek = seq_lseek, 14605091faa4SMike Galbraith .release = single_release, 14615091faa4SMike Galbraith }; 14625091faa4SMike Galbraith 14635091faa4SMike Galbraith #endif /* CONFIG_SCHED_AUTOGROUP */ 14645091faa4SMike Galbraith 14654614a696Sjohn stultz static ssize_t comm_write(struct file *file, const char __user *buf, 14664614a696Sjohn stultz size_t count, loff_t *offset) 14674614a696Sjohn stultz { 14684614a696Sjohn stultz struct inode *inode = file->f_path.dentry->d_inode; 14694614a696Sjohn stultz struct task_struct *p; 14704614a696Sjohn stultz char buffer[TASK_COMM_LEN]; 14714614a696Sjohn stultz 14724614a696Sjohn stultz memset(buffer, 0, sizeof(buffer)); 14734614a696Sjohn stultz if (count > sizeof(buffer) - 1) 14744614a696Sjohn stultz count = sizeof(buffer) - 1; 14754614a696Sjohn stultz if (copy_from_user(buffer, buf, count)) 14764614a696Sjohn stultz return -EFAULT; 14774614a696Sjohn stultz 14784614a696Sjohn stultz p = get_proc_task(inode); 14794614a696Sjohn stultz if (!p) 14804614a696Sjohn stultz return -ESRCH; 14814614a696Sjohn stultz 14824614a696Sjohn stultz if (same_thread_group(current, p)) 14834614a696Sjohn stultz set_task_comm(p, buffer); 14844614a696Sjohn stultz else 14854614a696Sjohn stultz count = -EINVAL; 14864614a696Sjohn stultz 14874614a696Sjohn stultz put_task_struct(p); 14884614a696Sjohn stultz 14894614a696Sjohn stultz return count; 14904614a696Sjohn stultz } 14914614a696Sjohn stultz 14924614a696Sjohn stultz static int comm_show(struct seq_file *m, void *v) 14934614a696Sjohn stultz { 14944614a696Sjohn stultz struct inode *inode = m->private; 14954614a696Sjohn stultz struct task_struct *p; 14964614a696Sjohn stultz 14974614a696Sjohn stultz p = get_proc_task(inode); 14984614a696Sjohn stultz if (!p) 14994614a696Sjohn stultz return -ESRCH; 15004614a696Sjohn stultz 15014614a696Sjohn stultz task_lock(p); 15024614a696Sjohn stultz seq_printf(m, "%s\n", p->comm); 15034614a696Sjohn stultz task_unlock(p); 15044614a696Sjohn stultz 15054614a696Sjohn stultz put_task_struct(p); 15064614a696Sjohn stultz 15074614a696Sjohn stultz return 0; 15084614a696Sjohn stultz } 15094614a696Sjohn stultz 15104614a696Sjohn stultz static int comm_open(struct inode *inode, struct file *filp) 15114614a696Sjohn stultz { 1512*c6a34058SJovi Zhang return single_open(filp, comm_show, inode); 15134614a696Sjohn stultz } 15144614a696Sjohn stultz 15154614a696Sjohn stultz static const struct file_operations proc_pid_set_comm_operations = { 15164614a696Sjohn stultz .open = comm_open, 15174614a696Sjohn stultz .read = seq_read, 15184614a696Sjohn stultz .write = comm_write, 15194614a696Sjohn stultz .llseek = seq_lseek, 15204614a696Sjohn stultz .release = single_release, 15214614a696Sjohn stultz }; 15224614a696Sjohn stultz 1523925d1c40SMatt Helsley /* 1524925d1c40SMatt Helsley * We added or removed a vma mapping the executable. The vmas are only mapped 1525925d1c40SMatt Helsley * during exec and are not mapped with the mmap system call. 1526925d1c40SMatt Helsley * Callers must hold down_write() on the mm's mmap_sem for these 1527925d1c40SMatt Helsley */ 1528925d1c40SMatt Helsley void added_exe_file_vma(struct mm_struct *mm) 1529925d1c40SMatt Helsley { 1530925d1c40SMatt Helsley mm->num_exe_file_vmas++; 1531925d1c40SMatt Helsley } 1532925d1c40SMatt Helsley 1533925d1c40SMatt Helsley void removed_exe_file_vma(struct mm_struct *mm) 1534925d1c40SMatt Helsley { 1535925d1c40SMatt Helsley mm->num_exe_file_vmas--; 1536925d1c40SMatt Helsley if ((mm->num_exe_file_vmas == 0) && mm->exe_file){ 1537925d1c40SMatt Helsley fput(mm->exe_file); 1538925d1c40SMatt Helsley mm->exe_file = NULL; 1539925d1c40SMatt Helsley } 1540925d1c40SMatt Helsley 1541925d1c40SMatt Helsley } 1542925d1c40SMatt Helsley 1543925d1c40SMatt Helsley void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) 1544925d1c40SMatt Helsley { 1545925d1c40SMatt Helsley if (new_exe_file) 1546925d1c40SMatt Helsley get_file(new_exe_file); 1547925d1c40SMatt Helsley if (mm->exe_file) 1548925d1c40SMatt Helsley fput(mm->exe_file); 1549925d1c40SMatt Helsley mm->exe_file = new_exe_file; 1550925d1c40SMatt Helsley mm->num_exe_file_vmas = 0; 1551925d1c40SMatt Helsley } 1552925d1c40SMatt Helsley 1553925d1c40SMatt Helsley struct file *get_mm_exe_file(struct mm_struct *mm) 1554925d1c40SMatt Helsley { 1555925d1c40SMatt Helsley struct file *exe_file; 1556925d1c40SMatt Helsley 1557925d1c40SMatt Helsley /* We need mmap_sem to protect against races with removal of 1558925d1c40SMatt Helsley * VM_EXECUTABLE vmas */ 1559925d1c40SMatt Helsley down_read(&mm->mmap_sem); 1560925d1c40SMatt Helsley exe_file = mm->exe_file; 1561925d1c40SMatt Helsley if (exe_file) 1562925d1c40SMatt Helsley get_file(exe_file); 1563925d1c40SMatt Helsley up_read(&mm->mmap_sem); 1564925d1c40SMatt Helsley return exe_file; 1565925d1c40SMatt Helsley } 1566925d1c40SMatt Helsley 1567925d1c40SMatt Helsley void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm) 1568925d1c40SMatt Helsley { 1569925d1c40SMatt Helsley /* It's safe to write the exe_file pointer without exe_file_lock because 1570925d1c40SMatt Helsley * this is called during fork when the task is not yet in /proc */ 1571925d1c40SMatt Helsley newmm->exe_file = get_mm_exe_file(oldmm); 1572925d1c40SMatt Helsley } 1573925d1c40SMatt Helsley 1574925d1c40SMatt Helsley static int proc_exe_link(struct inode *inode, struct path *exe_path) 1575925d1c40SMatt Helsley { 1576925d1c40SMatt Helsley struct task_struct *task; 1577925d1c40SMatt Helsley struct mm_struct *mm; 1578925d1c40SMatt Helsley struct file *exe_file; 1579925d1c40SMatt Helsley 1580925d1c40SMatt Helsley task = get_proc_task(inode); 1581925d1c40SMatt Helsley if (!task) 1582925d1c40SMatt Helsley return -ENOENT; 1583925d1c40SMatt Helsley mm = get_task_mm(task); 1584925d1c40SMatt Helsley put_task_struct(task); 1585925d1c40SMatt Helsley if (!mm) 1586925d1c40SMatt Helsley return -ENOENT; 1587925d1c40SMatt Helsley exe_file = get_mm_exe_file(mm); 1588925d1c40SMatt Helsley mmput(mm); 1589925d1c40SMatt Helsley if (exe_file) { 1590925d1c40SMatt Helsley *exe_path = exe_file->f_path; 1591925d1c40SMatt Helsley path_get(&exe_file->f_path); 1592925d1c40SMatt Helsley fput(exe_file); 1593925d1c40SMatt Helsley return 0; 1594925d1c40SMatt Helsley } else 1595925d1c40SMatt Helsley return -ENOENT; 1596925d1c40SMatt Helsley } 1597925d1c40SMatt Helsley 1598008b150aSAl Viro static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd) 15991da177e4SLinus Torvalds { 16001da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 16011da177e4SLinus Torvalds int error = -EACCES; 16021da177e4SLinus Torvalds 16031da177e4SLinus Torvalds /* We don't need a base pointer in the /proc filesystem */ 16041d957f9bSJan Blunck path_put(&nd->path); 16051da177e4SLinus Torvalds 1606778c1144SEric W. Biederman /* Are we allowed to snoop on the tasks file descriptors? */ 1607778c1144SEric W. Biederman if (!proc_fd_access_allowed(inode)) 16081da177e4SLinus Torvalds goto out; 16091da177e4SLinus Torvalds 16103dcd25f3SJan Blunck error = PROC_I(inode)->op.proc_get_link(inode, &nd->path); 16111da177e4SLinus Torvalds out: 1612008b150aSAl Viro return ERR_PTR(error); 16131da177e4SLinus Torvalds } 16141da177e4SLinus Torvalds 16153dcd25f3SJan Blunck static int do_proc_readlink(struct path *path, char __user *buffer, int buflen) 16161da177e4SLinus Torvalds { 1617e12ba74dSMel Gorman char *tmp = (char*)__get_free_page(GFP_TEMPORARY); 16183dcd25f3SJan Blunck char *pathname; 16191da177e4SLinus Torvalds int len; 16201da177e4SLinus Torvalds 16211da177e4SLinus Torvalds if (!tmp) 16221da177e4SLinus Torvalds return -ENOMEM; 16231da177e4SLinus Torvalds 16247b2a69baSEric W. Biederman pathname = d_path(path, tmp, PAGE_SIZE); 16253dcd25f3SJan Blunck len = PTR_ERR(pathname); 16263dcd25f3SJan Blunck if (IS_ERR(pathname)) 16271da177e4SLinus Torvalds goto out; 16283dcd25f3SJan Blunck len = tmp + PAGE_SIZE - 1 - pathname; 16291da177e4SLinus Torvalds 16301da177e4SLinus Torvalds if (len > buflen) 16311da177e4SLinus Torvalds len = buflen; 16323dcd25f3SJan Blunck if (copy_to_user(buffer, pathname, len)) 16331da177e4SLinus Torvalds len = -EFAULT; 16341da177e4SLinus Torvalds out: 16351da177e4SLinus Torvalds free_page((unsigned long)tmp); 16361da177e4SLinus Torvalds return len; 16371da177e4SLinus Torvalds } 16381da177e4SLinus Torvalds 16391da177e4SLinus Torvalds static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen) 16401da177e4SLinus Torvalds { 16411da177e4SLinus Torvalds int error = -EACCES; 16421da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 16433dcd25f3SJan Blunck struct path path; 16441da177e4SLinus Torvalds 1645778c1144SEric W. Biederman /* Are we allowed to snoop on the tasks file descriptors? */ 1646778c1144SEric W. Biederman if (!proc_fd_access_allowed(inode)) 16471da177e4SLinus Torvalds goto out; 16481da177e4SLinus Torvalds 16493dcd25f3SJan Blunck error = PROC_I(inode)->op.proc_get_link(inode, &path); 16501da177e4SLinus Torvalds if (error) 16511da177e4SLinus Torvalds goto out; 16521da177e4SLinus Torvalds 16533dcd25f3SJan Blunck error = do_proc_readlink(&path, buffer, buflen); 16543dcd25f3SJan Blunck path_put(&path); 16551da177e4SLinus Torvalds out: 16561da177e4SLinus Torvalds return error; 16571da177e4SLinus Torvalds } 16581da177e4SLinus Torvalds 1659c5ef1c42SArjan van de Ven static const struct inode_operations proc_pid_link_inode_operations = { 16601da177e4SLinus Torvalds .readlink = proc_pid_readlink, 16616d76fa58SLinus Torvalds .follow_link = proc_pid_follow_link, 16626d76fa58SLinus Torvalds .setattr = proc_setattr, 16631da177e4SLinus Torvalds }; 16641da177e4SLinus Torvalds 166528a6d671SEric W. Biederman 166628a6d671SEric W. Biederman /* building an inode */ 166728a6d671SEric W. Biederman 166828a6d671SEric W. Biederman static int task_dumpable(struct task_struct *task) 166928a6d671SEric W. Biederman { 167028a6d671SEric W. Biederman int dumpable = 0; 167128a6d671SEric W. Biederman struct mm_struct *mm; 167228a6d671SEric W. Biederman 167328a6d671SEric W. Biederman task_lock(task); 167428a6d671SEric W. Biederman mm = task->mm; 167528a6d671SEric W. Biederman if (mm) 16766c5d5238SKawai, Hidehiro dumpable = get_dumpable(mm); 167728a6d671SEric W. Biederman task_unlock(task); 167828a6d671SEric W. Biederman if(dumpable == 1) 167928a6d671SEric W. Biederman return 1; 168028a6d671SEric W. Biederman return 0; 168128a6d671SEric W. Biederman } 168228a6d671SEric W. Biederman 168328a6d671SEric W. Biederman 168461a28784SEric W. Biederman static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task) 168528a6d671SEric W. Biederman { 168628a6d671SEric W. Biederman struct inode * inode; 168728a6d671SEric W. Biederman struct proc_inode *ei; 1688c69e8d9cSDavid Howells const struct cred *cred; 168928a6d671SEric W. Biederman 169028a6d671SEric W. Biederman /* We need a new inode */ 169128a6d671SEric W. Biederman 169228a6d671SEric W. Biederman inode = new_inode(sb); 169328a6d671SEric W. Biederman if (!inode) 169428a6d671SEric W. Biederman goto out; 169528a6d671SEric W. Biederman 169628a6d671SEric W. Biederman /* Common stuff */ 169728a6d671SEric W. Biederman ei = PROC_I(inode); 169885fe4025SChristoph Hellwig inode->i_ino = get_next_ino(); 169928a6d671SEric W. Biederman inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; 170028a6d671SEric W. Biederman inode->i_op = &proc_def_inode_operations; 170128a6d671SEric W. Biederman 170228a6d671SEric W. Biederman /* 170328a6d671SEric W. Biederman * grab the reference to task. 170428a6d671SEric W. Biederman */ 17051a657f78SOleg Nesterov ei->pid = get_task_pid(task, PIDTYPE_PID); 170628a6d671SEric W. Biederman if (!ei->pid) 170728a6d671SEric W. Biederman goto out_unlock; 170828a6d671SEric W. Biederman 170928a6d671SEric W. Biederman if (task_dumpable(task)) { 1710c69e8d9cSDavid Howells rcu_read_lock(); 1711c69e8d9cSDavid Howells cred = __task_cred(task); 1712c69e8d9cSDavid Howells inode->i_uid = cred->euid; 1713c69e8d9cSDavid Howells inode->i_gid = cred->egid; 1714c69e8d9cSDavid Howells rcu_read_unlock(); 171528a6d671SEric W. Biederman } 171628a6d671SEric W. Biederman security_task_to_inode(task, inode); 171728a6d671SEric W. Biederman 171828a6d671SEric W. Biederman out: 171928a6d671SEric W. Biederman return inode; 172028a6d671SEric W. Biederman 172128a6d671SEric W. Biederman out_unlock: 172228a6d671SEric W. Biederman iput(inode); 172328a6d671SEric W. Biederman return NULL; 172428a6d671SEric W. Biederman } 172528a6d671SEric W. Biederman 172628a6d671SEric W. Biederman static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) 172728a6d671SEric W. Biederman { 172828a6d671SEric W. Biederman struct inode *inode = dentry->d_inode; 172928a6d671SEric W. Biederman struct task_struct *task; 1730c69e8d9cSDavid Howells const struct cred *cred; 1731c69e8d9cSDavid Howells 173228a6d671SEric W. Biederman generic_fillattr(inode, stat); 173328a6d671SEric W. Biederman 173428a6d671SEric W. Biederman rcu_read_lock(); 173528a6d671SEric W. Biederman stat->uid = 0; 173628a6d671SEric W. Biederman stat->gid = 0; 173728a6d671SEric W. Biederman task = pid_task(proc_pid(inode), PIDTYPE_PID); 173828a6d671SEric W. Biederman if (task) { 173928a6d671SEric W. Biederman if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) || 174028a6d671SEric W. Biederman task_dumpable(task)) { 1741c69e8d9cSDavid Howells cred = __task_cred(task); 1742c69e8d9cSDavid Howells stat->uid = cred->euid; 1743c69e8d9cSDavid Howells stat->gid = cred->egid; 174428a6d671SEric W. Biederman } 174528a6d671SEric W. Biederman } 174628a6d671SEric W. Biederman rcu_read_unlock(); 174728a6d671SEric W. Biederman return 0; 174828a6d671SEric W. Biederman } 174928a6d671SEric W. Biederman 175028a6d671SEric W. Biederman /* dentry stuff */ 175128a6d671SEric W. Biederman 175228a6d671SEric W. Biederman /* 175328a6d671SEric W. Biederman * Exceptional case: normally we are not allowed to unhash a busy 175428a6d671SEric W. Biederman * directory. In this case, however, we can do it - no aliasing problems 175528a6d671SEric W. Biederman * due to the way we treat inodes. 175628a6d671SEric W. Biederman * 175728a6d671SEric W. Biederman * Rewrite the inode's ownerships here because the owning task may have 175828a6d671SEric W. Biederman * performed a setuid(), etc. 175928a6d671SEric W. Biederman * 176028a6d671SEric W. Biederman * Before the /proc/pid/status file was created the only way to read 176128a6d671SEric W. Biederman * the effective uid of a /process was to stat /proc/pid. Reading 176228a6d671SEric W. Biederman * /proc/pid/status is slow enough that procps and other packages 176328a6d671SEric W. Biederman * kept stating /proc/pid. To keep the rules in /proc simple I have 176428a6d671SEric W. Biederman * made this apply to all per process world readable and executable 176528a6d671SEric W. Biederman * directories. 176628a6d671SEric W. Biederman */ 176728a6d671SEric W. Biederman static int pid_revalidate(struct dentry *dentry, struct nameidata *nd) 176828a6d671SEric W. Biederman { 176934286d66SNick Piggin struct inode *inode; 177034286d66SNick Piggin struct task_struct *task; 1771c69e8d9cSDavid Howells const struct cred *cred; 1772c69e8d9cSDavid Howells 177334286d66SNick Piggin if (nd && nd->flags & LOOKUP_RCU) 177434286d66SNick Piggin return -ECHILD; 177534286d66SNick Piggin 177634286d66SNick Piggin inode = dentry->d_inode; 177734286d66SNick Piggin task = get_proc_task(inode); 177834286d66SNick Piggin 177928a6d671SEric W. Biederman if (task) { 178028a6d671SEric W. Biederman if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) || 178128a6d671SEric W. Biederman task_dumpable(task)) { 1782c69e8d9cSDavid Howells rcu_read_lock(); 1783c69e8d9cSDavid Howells cred = __task_cred(task); 1784c69e8d9cSDavid Howells inode->i_uid = cred->euid; 1785c69e8d9cSDavid Howells inode->i_gid = cred->egid; 1786c69e8d9cSDavid Howells rcu_read_unlock(); 178728a6d671SEric W. Biederman } else { 178828a6d671SEric W. Biederman inode->i_uid = 0; 178928a6d671SEric W. Biederman inode->i_gid = 0; 179028a6d671SEric W. Biederman } 179128a6d671SEric W. Biederman inode->i_mode &= ~(S_ISUID | S_ISGID); 179228a6d671SEric W. Biederman security_task_to_inode(task, inode); 179328a6d671SEric W. Biederman put_task_struct(task); 179428a6d671SEric W. Biederman return 1; 179528a6d671SEric W. Biederman } 179628a6d671SEric W. Biederman d_drop(dentry); 179728a6d671SEric W. Biederman return 0; 179828a6d671SEric W. Biederman } 179928a6d671SEric W. Biederman 1800fe15ce44SNick Piggin static int pid_delete_dentry(const struct dentry * dentry) 180128a6d671SEric W. Biederman { 180228a6d671SEric W. Biederman /* Is the task we represent dead? 180328a6d671SEric W. Biederman * If so, then don't put the dentry on the lru list, 180428a6d671SEric W. Biederman * kill it immediately. 180528a6d671SEric W. Biederman */ 180628a6d671SEric W. Biederman return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first; 180728a6d671SEric W. Biederman } 180828a6d671SEric W. Biederman 1809d72f71ebSAl Viro static const struct dentry_operations pid_dentry_operations = 181028a6d671SEric W. Biederman { 181128a6d671SEric W. Biederman .d_revalidate = pid_revalidate, 181228a6d671SEric W. Biederman .d_delete = pid_delete_dentry, 181328a6d671SEric W. Biederman }; 181428a6d671SEric W. Biederman 181528a6d671SEric W. Biederman /* Lookups */ 181628a6d671SEric W. Biederman 1817c5141e6dSEric Dumazet typedef struct dentry *instantiate_t(struct inode *, struct dentry *, 1818c5141e6dSEric Dumazet struct task_struct *, const void *); 181961a28784SEric W. Biederman 18201c0d04c9SEric W. Biederman /* 18211c0d04c9SEric W. Biederman * Fill a directory entry. 18221c0d04c9SEric W. Biederman * 18231c0d04c9SEric W. Biederman * If possible create the dcache entry and derive our inode number and 18241c0d04c9SEric W. Biederman * file type from dcache entry. 18251c0d04c9SEric W. Biederman * 18261c0d04c9SEric W. Biederman * Since all of the proc inode numbers are dynamically generated, the inode 18271c0d04c9SEric W. Biederman * numbers do not exist until the inode is cache. This means creating the 18281c0d04c9SEric W. Biederman * the dcache entry in readdir is necessary to keep the inode numbers 18291c0d04c9SEric W. Biederman * reported by readdir in sync with the inode numbers reported 18301c0d04c9SEric W. Biederman * by stat. 18311c0d04c9SEric W. Biederman */ 183261a28784SEric W. Biederman static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir, 183361a28784SEric W. Biederman char *name, int len, 1834c5141e6dSEric Dumazet instantiate_t instantiate, struct task_struct *task, const void *ptr) 183561a28784SEric W. Biederman { 18362fddfeefSJosef "Jeff" Sipek struct dentry *child, *dir = filp->f_path.dentry; 183761a28784SEric W. Biederman struct inode *inode; 183861a28784SEric W. Biederman struct qstr qname; 183961a28784SEric W. Biederman ino_t ino = 0; 184061a28784SEric W. Biederman unsigned type = DT_UNKNOWN; 184161a28784SEric W. Biederman 184261a28784SEric W. Biederman qname.name = name; 184361a28784SEric W. Biederman qname.len = len; 184461a28784SEric W. Biederman qname.hash = full_name_hash(name, len); 184561a28784SEric W. Biederman 184661a28784SEric W. Biederman child = d_lookup(dir, &qname); 184761a28784SEric W. Biederman if (!child) { 184861a28784SEric W. Biederman struct dentry *new; 184961a28784SEric W. Biederman new = d_alloc(dir, &qname); 185061a28784SEric W. Biederman if (new) { 185161a28784SEric W. Biederman child = instantiate(dir->d_inode, new, task, ptr); 185261a28784SEric W. Biederman if (child) 185361a28784SEric W. Biederman dput(new); 185461a28784SEric W. Biederman else 185561a28784SEric W. Biederman child = new; 185661a28784SEric W. Biederman } 185761a28784SEric W. Biederman } 185861a28784SEric W. Biederman if (!child || IS_ERR(child) || !child->d_inode) 185961a28784SEric W. Biederman goto end_instantiate; 186061a28784SEric W. Biederman inode = child->d_inode; 186161a28784SEric W. Biederman if (inode) { 186261a28784SEric W. Biederman ino = inode->i_ino; 186361a28784SEric W. Biederman type = inode->i_mode >> 12; 186461a28784SEric W. Biederman } 186561a28784SEric W. Biederman dput(child); 186661a28784SEric W. Biederman end_instantiate: 186761a28784SEric W. Biederman if (!ino) 186861a28784SEric W. Biederman ino = find_inode_number(dir, &qname); 186961a28784SEric W. Biederman if (!ino) 187061a28784SEric W. Biederman ino = 1; 187161a28784SEric W. Biederman return filldir(dirent, name, len, filp->f_pos, ino, type); 187261a28784SEric W. Biederman } 187361a28784SEric W. Biederman 187428a6d671SEric W. Biederman static unsigned name_to_int(struct dentry *dentry) 187528a6d671SEric W. Biederman { 187628a6d671SEric W. Biederman const char *name = dentry->d_name.name; 187728a6d671SEric W. Biederman int len = dentry->d_name.len; 187828a6d671SEric W. Biederman unsigned n = 0; 187928a6d671SEric W. Biederman 188028a6d671SEric W. Biederman if (len > 1 && *name == '0') 188128a6d671SEric W. Biederman goto out; 188228a6d671SEric W. Biederman while (len-- > 0) { 188328a6d671SEric W. Biederman unsigned c = *name++ - '0'; 188428a6d671SEric W. Biederman if (c > 9) 188528a6d671SEric W. Biederman goto out; 188628a6d671SEric W. Biederman if (n >= (~0U-9)/10) 188728a6d671SEric W. Biederman goto out; 188828a6d671SEric W. Biederman n *= 10; 188928a6d671SEric W. Biederman n += c; 189028a6d671SEric W. Biederman } 189128a6d671SEric W. Biederman return n; 189228a6d671SEric W. Biederman out: 189328a6d671SEric W. Biederman return ~0U; 189428a6d671SEric W. Biederman } 189528a6d671SEric W. Biederman 189627932742SMiklos Szeredi #define PROC_FDINFO_MAX 64 189727932742SMiklos Szeredi 18983dcd25f3SJan Blunck static int proc_fd_info(struct inode *inode, struct path *path, char *info) 189928a6d671SEric W. Biederman { 190028a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 190128a6d671SEric W. Biederman struct files_struct *files = NULL; 190228a6d671SEric W. Biederman struct file *file; 190328a6d671SEric W. Biederman int fd = proc_fd(inode); 190428a6d671SEric W. Biederman 190528a6d671SEric W. Biederman if (task) { 190628a6d671SEric W. Biederman files = get_files_struct(task); 190728a6d671SEric W. Biederman put_task_struct(task); 190828a6d671SEric W. Biederman } 190928a6d671SEric W. Biederman if (files) { 191028a6d671SEric W. Biederman /* 191128a6d671SEric W. Biederman * We are not taking a ref to the file structure, so we must 191228a6d671SEric W. Biederman * hold ->file_lock. 191328a6d671SEric W. Biederman */ 191428a6d671SEric W. Biederman spin_lock(&files->file_lock); 191528a6d671SEric W. Biederman file = fcheck_files(files, fd); 191628a6d671SEric W. Biederman if (file) { 19173dcd25f3SJan Blunck if (path) { 19183dcd25f3SJan Blunck *path = file->f_path; 19193dcd25f3SJan Blunck path_get(&file->f_path); 19203dcd25f3SJan Blunck } 192127932742SMiklos Szeredi if (info) 192227932742SMiklos Szeredi snprintf(info, PROC_FDINFO_MAX, 192327932742SMiklos Szeredi "pos:\t%lli\n" 192427932742SMiklos Szeredi "flags:\t0%o\n", 192527932742SMiklos Szeredi (long long) file->f_pos, 192627932742SMiklos Szeredi file->f_flags); 192728a6d671SEric W. Biederman spin_unlock(&files->file_lock); 192828a6d671SEric W. Biederman put_files_struct(files); 192928a6d671SEric W. Biederman return 0; 193028a6d671SEric W. Biederman } 193128a6d671SEric W. Biederman spin_unlock(&files->file_lock); 193228a6d671SEric W. Biederman put_files_struct(files); 193328a6d671SEric W. Biederman } 193428a6d671SEric W. Biederman return -ENOENT; 193528a6d671SEric W. Biederman } 193628a6d671SEric W. Biederman 19373dcd25f3SJan Blunck static int proc_fd_link(struct inode *inode, struct path *path) 193827932742SMiklos Szeredi { 19393dcd25f3SJan Blunck return proc_fd_info(inode, path, NULL); 194027932742SMiklos Szeredi } 194127932742SMiklos Szeredi 194228a6d671SEric W. Biederman static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd) 194328a6d671SEric W. Biederman { 194434286d66SNick Piggin struct inode *inode; 194534286d66SNick Piggin struct task_struct *task; 194634286d66SNick Piggin int fd; 194728a6d671SEric W. Biederman struct files_struct *files; 1948c69e8d9cSDavid Howells const struct cred *cred; 194928a6d671SEric W. Biederman 195034286d66SNick Piggin if (nd && nd->flags & LOOKUP_RCU) 195134286d66SNick Piggin return -ECHILD; 195234286d66SNick Piggin 195334286d66SNick Piggin inode = dentry->d_inode; 195434286d66SNick Piggin task = get_proc_task(inode); 195534286d66SNick Piggin fd = proc_fd(inode); 195634286d66SNick Piggin 195728a6d671SEric W. Biederman if (task) { 195828a6d671SEric W. Biederman files = get_files_struct(task); 195928a6d671SEric W. Biederman if (files) { 196028a6d671SEric W. Biederman rcu_read_lock(); 196128a6d671SEric W. Biederman if (fcheck_files(files, fd)) { 196228a6d671SEric W. Biederman rcu_read_unlock(); 196328a6d671SEric W. Biederman put_files_struct(files); 196428a6d671SEric W. Biederman if (task_dumpable(task)) { 1965c69e8d9cSDavid Howells rcu_read_lock(); 1966c69e8d9cSDavid Howells cred = __task_cred(task); 1967c69e8d9cSDavid Howells inode->i_uid = cred->euid; 1968c69e8d9cSDavid Howells inode->i_gid = cred->egid; 1969c69e8d9cSDavid Howells rcu_read_unlock(); 197028a6d671SEric W. Biederman } else { 197128a6d671SEric W. Biederman inode->i_uid = 0; 197228a6d671SEric W. Biederman inode->i_gid = 0; 197328a6d671SEric W. Biederman } 197428a6d671SEric W. Biederman inode->i_mode &= ~(S_ISUID | S_ISGID); 197528a6d671SEric W. Biederman security_task_to_inode(task, inode); 197628a6d671SEric W. Biederman put_task_struct(task); 197728a6d671SEric W. Biederman return 1; 197828a6d671SEric W. Biederman } 197928a6d671SEric W. Biederman rcu_read_unlock(); 198028a6d671SEric W. Biederman put_files_struct(files); 198128a6d671SEric W. Biederman } 198228a6d671SEric W. Biederman put_task_struct(task); 198328a6d671SEric W. Biederman } 198428a6d671SEric W. Biederman d_drop(dentry); 198528a6d671SEric W. Biederman return 0; 198628a6d671SEric W. Biederman } 198728a6d671SEric W. Biederman 1988d72f71ebSAl Viro static const struct dentry_operations tid_fd_dentry_operations = 198928a6d671SEric W. Biederman { 199028a6d671SEric W. Biederman .d_revalidate = tid_fd_revalidate, 199128a6d671SEric W. Biederman .d_delete = pid_delete_dentry, 199228a6d671SEric W. Biederman }; 199328a6d671SEric W. Biederman 1994444ceed8SEric W. Biederman static struct dentry *proc_fd_instantiate(struct inode *dir, 1995c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 199628a6d671SEric W. Biederman { 1997c5141e6dSEric Dumazet unsigned fd = *(const unsigned *)ptr; 199828a6d671SEric W. Biederman struct file *file; 199928a6d671SEric W. Biederman struct files_struct *files; 200028a6d671SEric W. Biederman struct inode *inode; 200128a6d671SEric W. Biederman struct proc_inode *ei; 2002444ceed8SEric W. Biederman struct dentry *error = ERR_PTR(-ENOENT); 200328a6d671SEric W. Biederman 200461a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 200528a6d671SEric W. Biederman if (!inode) 200628a6d671SEric W. Biederman goto out; 200728a6d671SEric W. Biederman ei = PROC_I(inode); 200828a6d671SEric W. Biederman ei->fd = fd; 200928a6d671SEric W. Biederman files = get_files_struct(task); 201028a6d671SEric W. Biederman if (!files) 2011444ceed8SEric W. Biederman goto out_iput; 201228a6d671SEric W. Biederman inode->i_mode = S_IFLNK; 201328a6d671SEric W. Biederman 201428a6d671SEric W. Biederman /* 201528a6d671SEric W. Biederman * We are not taking a ref to the file structure, so we must 201628a6d671SEric W. Biederman * hold ->file_lock. 201728a6d671SEric W. Biederman */ 201828a6d671SEric W. Biederman spin_lock(&files->file_lock); 201928a6d671SEric W. Biederman file = fcheck_files(files, fd); 202028a6d671SEric W. Biederman if (!file) 2021444ceed8SEric W. Biederman goto out_unlock; 2022aeb5d727SAl Viro if (file->f_mode & FMODE_READ) 202328a6d671SEric W. Biederman inode->i_mode |= S_IRUSR | S_IXUSR; 2024aeb5d727SAl Viro if (file->f_mode & FMODE_WRITE) 202528a6d671SEric W. Biederman inode->i_mode |= S_IWUSR | S_IXUSR; 202628a6d671SEric W. Biederman spin_unlock(&files->file_lock); 202728a6d671SEric W. Biederman put_files_struct(files); 2028444ceed8SEric W. Biederman 202928a6d671SEric W. Biederman inode->i_op = &proc_pid_link_inode_operations; 203028a6d671SEric W. Biederman inode->i_size = 64; 203128a6d671SEric W. Biederman ei->op.proc_get_link = proc_fd_link; 2032fb045adbSNick Piggin d_set_d_op(dentry, &tid_fd_dentry_operations); 203328a6d671SEric W. Biederman d_add(dentry, inode); 203428a6d671SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 203528a6d671SEric W. Biederman if (tid_fd_revalidate(dentry, NULL)) 2036444ceed8SEric W. Biederman error = NULL; 2037444ceed8SEric W. Biederman 2038444ceed8SEric W. Biederman out: 2039444ceed8SEric W. Biederman return error; 2040444ceed8SEric W. Biederman out_unlock: 2041444ceed8SEric W. Biederman spin_unlock(&files->file_lock); 2042444ceed8SEric W. Biederman put_files_struct(files); 2043444ceed8SEric W. Biederman out_iput: 2044444ceed8SEric W. Biederman iput(inode); 2045444ceed8SEric W. Biederman goto out; 2046444ceed8SEric W. Biederman } 2047444ceed8SEric W. Biederman 204827932742SMiklos Szeredi static struct dentry *proc_lookupfd_common(struct inode *dir, 204927932742SMiklos Szeredi struct dentry *dentry, 205027932742SMiklos Szeredi instantiate_t instantiate) 2051444ceed8SEric W. Biederman { 2052444ceed8SEric W. Biederman struct task_struct *task = get_proc_task(dir); 2053444ceed8SEric W. Biederman unsigned fd = name_to_int(dentry); 2054444ceed8SEric W. Biederman struct dentry *result = ERR_PTR(-ENOENT); 2055444ceed8SEric W. Biederman 2056444ceed8SEric W. Biederman if (!task) 2057444ceed8SEric W. Biederman goto out_no_task; 2058444ceed8SEric W. Biederman if (fd == ~0U) 2059444ceed8SEric W. Biederman goto out; 2060444ceed8SEric W. Biederman 206127932742SMiklos Szeredi result = instantiate(dir, dentry, task, &fd); 206228a6d671SEric W. Biederman out: 206328a6d671SEric W. Biederman put_task_struct(task); 206428a6d671SEric W. Biederman out_no_task: 206528a6d671SEric W. Biederman return result; 206628a6d671SEric W. Biederman } 206728a6d671SEric W. Biederman 206827932742SMiklos Szeredi static int proc_readfd_common(struct file * filp, void * dirent, 206927932742SMiklos Szeredi filldir_t filldir, instantiate_t instantiate) 20701da177e4SLinus Torvalds { 20712fddfeefSJosef "Jeff" Sipek struct dentry *dentry = filp->f_path.dentry; 20725634708bSEric W. Biederman struct inode *inode = dentry->d_inode; 207399f89551SEric W. Biederman struct task_struct *p = get_proc_task(inode); 2074457c2510SPavel Emelyanov unsigned int fd, ino; 20751da177e4SLinus Torvalds int retval; 20761da177e4SLinus Torvalds struct files_struct * files; 20771da177e4SLinus Torvalds 20781da177e4SLinus Torvalds retval = -ENOENT; 207999f89551SEric W. Biederman if (!p) 208099f89551SEric W. Biederman goto out_no_task; 20811da177e4SLinus Torvalds retval = 0; 20821da177e4SLinus Torvalds 20831da177e4SLinus Torvalds fd = filp->f_pos; 20841da177e4SLinus Torvalds switch (fd) { 20851da177e4SLinus Torvalds case 0: 20861da177e4SLinus Torvalds if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0) 20871da177e4SLinus Torvalds goto out; 20881da177e4SLinus Torvalds filp->f_pos++; 20891da177e4SLinus Torvalds case 1: 20905634708bSEric W. Biederman ino = parent_ino(dentry); 20911da177e4SLinus Torvalds if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0) 20921da177e4SLinus Torvalds goto out; 20931da177e4SLinus Torvalds filp->f_pos++; 20941da177e4SLinus Torvalds default: 20951da177e4SLinus Torvalds files = get_files_struct(p); 20961da177e4SLinus Torvalds if (!files) 20971da177e4SLinus Torvalds goto out; 2098b835996fSDipankar Sarma rcu_read_lock(); 20991da177e4SLinus Torvalds for (fd = filp->f_pos-2; 21009b4f526cSAl Viro fd < files_fdtable(files)->max_fds; 21011da177e4SLinus Torvalds fd++, filp->f_pos++) { 210227932742SMiklos Szeredi char name[PROC_NUMBUF]; 210327932742SMiklos Szeredi int len; 21041da177e4SLinus Torvalds 21051da177e4SLinus Torvalds if (!fcheck_files(files, fd)) 21061da177e4SLinus Torvalds continue; 2107b835996fSDipankar Sarma rcu_read_unlock(); 21081da177e4SLinus Torvalds 210927932742SMiklos Szeredi len = snprintf(name, sizeof(name), "%d", fd); 211027932742SMiklos Szeredi if (proc_fill_cache(filp, dirent, filldir, 211127932742SMiklos Szeredi name, len, instantiate, 211227932742SMiklos Szeredi p, &fd) < 0) { 2113b835996fSDipankar Sarma rcu_read_lock(); 21141da177e4SLinus Torvalds break; 21151da177e4SLinus Torvalds } 2116b835996fSDipankar Sarma rcu_read_lock(); 21171da177e4SLinus Torvalds } 2118b835996fSDipankar Sarma rcu_read_unlock(); 21191da177e4SLinus Torvalds put_files_struct(files); 21201da177e4SLinus Torvalds } 21211da177e4SLinus Torvalds out: 212299f89551SEric W. Biederman put_task_struct(p); 212399f89551SEric W. Biederman out_no_task: 21241da177e4SLinus Torvalds return retval; 21251da177e4SLinus Torvalds } 21261da177e4SLinus Torvalds 212727932742SMiklos Szeredi static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry, 212827932742SMiklos Szeredi struct nameidata *nd) 212927932742SMiklos Szeredi { 213027932742SMiklos Szeredi return proc_lookupfd_common(dir, dentry, proc_fd_instantiate); 213127932742SMiklos Szeredi } 213227932742SMiklos Szeredi 213327932742SMiklos Szeredi static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir) 213427932742SMiklos Szeredi { 213527932742SMiklos Szeredi return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate); 213627932742SMiklos Szeredi } 213727932742SMiklos Szeredi 213827932742SMiklos Szeredi static ssize_t proc_fdinfo_read(struct file *file, char __user *buf, 213927932742SMiklos Szeredi size_t len, loff_t *ppos) 214027932742SMiklos Szeredi { 214127932742SMiklos Szeredi char tmp[PROC_FDINFO_MAX]; 21423dcd25f3SJan Blunck int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp); 214327932742SMiklos Szeredi if (!err) 214427932742SMiklos Szeredi err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp)); 214527932742SMiklos Szeredi return err; 214627932742SMiklos Szeredi } 214727932742SMiklos Szeredi 214827932742SMiklos Szeredi static const struct file_operations proc_fdinfo_file_operations = { 214927932742SMiklos Szeredi .open = nonseekable_open, 215027932742SMiklos Szeredi .read = proc_fdinfo_read, 21516038f373SArnd Bergmann .llseek = no_llseek, 215227932742SMiklos Szeredi }; 215327932742SMiklos Szeredi 215400977a59SArjan van de Ven static const struct file_operations proc_fd_operations = { 21551da177e4SLinus Torvalds .read = generic_read_dir, 21561da177e4SLinus Torvalds .readdir = proc_readfd, 21576038f373SArnd Bergmann .llseek = default_llseek, 21581da177e4SLinus Torvalds }; 21591da177e4SLinus Torvalds 21601da177e4SLinus Torvalds /* 21618948e11fSAlexey Dobriyan * /proc/pid/fd needs a special permission handler so that a process can still 21628948e11fSAlexey Dobriyan * access /proc/self/fd after it has executed a setuid(). 21638948e11fSAlexey Dobriyan */ 2164b74c79e9SNick Piggin static int proc_fd_permission(struct inode *inode, int mask, unsigned int flags) 21658948e11fSAlexey Dobriyan { 21668948e11fSAlexey Dobriyan int rv; 21678948e11fSAlexey Dobriyan 2168b74c79e9SNick Piggin if (flags & IPERM_FLAG_RCU) 2169b74c79e9SNick Piggin return -ECHILD; 2170b74c79e9SNick Piggin rv = generic_permission(inode, mask, flags, NULL); 21718948e11fSAlexey Dobriyan if (rv == 0) 21728948e11fSAlexey Dobriyan return 0; 21738948e11fSAlexey Dobriyan if (task_pid(current) == proc_pid(inode)) 21748948e11fSAlexey Dobriyan rv = 0; 21758948e11fSAlexey Dobriyan return rv; 21768948e11fSAlexey Dobriyan } 21778948e11fSAlexey Dobriyan 21788948e11fSAlexey Dobriyan /* 21791da177e4SLinus Torvalds * proc directories can do almost nothing.. 21801da177e4SLinus Torvalds */ 2181c5ef1c42SArjan van de Ven static const struct inode_operations proc_fd_inode_operations = { 21821da177e4SLinus Torvalds .lookup = proc_lookupfd, 21838948e11fSAlexey Dobriyan .permission = proc_fd_permission, 21846d76fa58SLinus Torvalds .setattr = proc_setattr, 21851da177e4SLinus Torvalds }; 21861da177e4SLinus Torvalds 218727932742SMiklos Szeredi static struct dentry *proc_fdinfo_instantiate(struct inode *dir, 218827932742SMiklos Szeredi struct dentry *dentry, struct task_struct *task, const void *ptr) 218927932742SMiklos Szeredi { 219027932742SMiklos Szeredi unsigned fd = *(unsigned *)ptr; 219127932742SMiklos Szeredi struct inode *inode; 219227932742SMiklos Szeredi struct proc_inode *ei; 219327932742SMiklos Szeredi struct dentry *error = ERR_PTR(-ENOENT); 219427932742SMiklos Szeredi 219527932742SMiklos Szeredi inode = proc_pid_make_inode(dir->i_sb, task); 219627932742SMiklos Szeredi if (!inode) 219727932742SMiklos Szeredi goto out; 219827932742SMiklos Szeredi ei = PROC_I(inode); 219927932742SMiklos Szeredi ei->fd = fd; 220027932742SMiklos Szeredi inode->i_mode = S_IFREG | S_IRUSR; 220127932742SMiklos Szeredi inode->i_fop = &proc_fdinfo_file_operations; 2202fb045adbSNick Piggin d_set_d_op(dentry, &tid_fd_dentry_operations); 220327932742SMiklos Szeredi d_add(dentry, inode); 220427932742SMiklos Szeredi /* Close the race of the process dying before we return the dentry */ 220527932742SMiklos Szeredi if (tid_fd_revalidate(dentry, NULL)) 220627932742SMiklos Szeredi error = NULL; 220727932742SMiklos Szeredi 220827932742SMiklos Szeredi out: 220927932742SMiklos Szeredi return error; 221027932742SMiklos Szeredi } 221127932742SMiklos Szeredi 221227932742SMiklos Szeredi static struct dentry *proc_lookupfdinfo(struct inode *dir, 221327932742SMiklos Szeredi struct dentry *dentry, 221427932742SMiklos Szeredi struct nameidata *nd) 221527932742SMiklos Szeredi { 221627932742SMiklos Szeredi return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate); 221727932742SMiklos Szeredi } 221827932742SMiklos Szeredi 221927932742SMiklos Szeredi static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir) 222027932742SMiklos Szeredi { 222127932742SMiklos Szeredi return proc_readfd_common(filp, dirent, filldir, 222227932742SMiklos Szeredi proc_fdinfo_instantiate); 222327932742SMiklos Szeredi } 222427932742SMiklos Szeredi 222527932742SMiklos Szeredi static const struct file_operations proc_fdinfo_operations = { 222627932742SMiklos Szeredi .read = generic_read_dir, 222727932742SMiklos Szeredi .readdir = proc_readfdinfo, 22286038f373SArnd Bergmann .llseek = default_llseek, 222927932742SMiklos Szeredi }; 223027932742SMiklos Szeredi 223127932742SMiklos Szeredi /* 223227932742SMiklos Szeredi * proc directories can do almost nothing.. 223327932742SMiklos Szeredi */ 223427932742SMiklos Szeredi static const struct inode_operations proc_fdinfo_inode_operations = { 223527932742SMiklos Szeredi .lookup = proc_lookupfdinfo, 223627932742SMiklos Szeredi .setattr = proc_setattr, 223727932742SMiklos Szeredi }; 223827932742SMiklos Szeredi 223927932742SMiklos Szeredi 2240444ceed8SEric W. Biederman static struct dentry *proc_pident_instantiate(struct inode *dir, 2241c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 2242444ceed8SEric W. Biederman { 2243c5141e6dSEric Dumazet const struct pid_entry *p = ptr; 2244444ceed8SEric W. Biederman struct inode *inode; 2245444ceed8SEric W. Biederman struct proc_inode *ei; 2246bd6daba9SKOSAKI Motohiro struct dentry *error = ERR_PTR(-ENOENT); 2247444ceed8SEric W. Biederman 224861a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 2249444ceed8SEric W. Biederman if (!inode) 2250444ceed8SEric W. Biederman goto out; 2251444ceed8SEric W. Biederman 2252444ceed8SEric W. Biederman ei = PROC_I(inode); 2253444ceed8SEric W. Biederman inode->i_mode = p->mode; 2254444ceed8SEric W. Biederman if (S_ISDIR(inode->i_mode)) 2255444ceed8SEric W. Biederman inode->i_nlink = 2; /* Use getattr to fix if necessary */ 2256444ceed8SEric W. Biederman if (p->iop) 2257444ceed8SEric W. Biederman inode->i_op = p->iop; 2258444ceed8SEric W. Biederman if (p->fop) 2259444ceed8SEric W. Biederman inode->i_fop = p->fop; 2260444ceed8SEric W. Biederman ei->op = p->op; 2261fb045adbSNick Piggin d_set_d_op(dentry, &pid_dentry_operations); 2262444ceed8SEric W. Biederman d_add(dentry, inode); 2263444ceed8SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 2264444ceed8SEric W. Biederman if (pid_revalidate(dentry, NULL)) 2265444ceed8SEric W. Biederman error = NULL; 2266444ceed8SEric W. Biederman out: 2267444ceed8SEric W. Biederman return error; 2268444ceed8SEric W. Biederman } 2269444ceed8SEric W. Biederman 22701da177e4SLinus Torvalds static struct dentry *proc_pident_lookup(struct inode *dir, 22711da177e4SLinus Torvalds struct dentry *dentry, 2272c5141e6dSEric Dumazet const struct pid_entry *ents, 22737bcd6b0eSEric W. Biederman unsigned int nents) 22741da177e4SLinus Torvalds { 2275cd6a3ce9SEric W. Biederman struct dentry *error; 227699f89551SEric W. Biederman struct task_struct *task = get_proc_task(dir); 2277c5141e6dSEric Dumazet const struct pid_entry *p, *last; 22781da177e4SLinus Torvalds 2279cd6a3ce9SEric W. Biederman error = ERR_PTR(-ENOENT); 22801da177e4SLinus Torvalds 228199f89551SEric W. Biederman if (!task) 228299f89551SEric W. Biederman goto out_no_task; 22831da177e4SLinus Torvalds 228420cdc894SEric W. Biederman /* 228520cdc894SEric W. Biederman * Yes, it does not scale. And it should not. Don't add 228620cdc894SEric W. Biederman * new entries into /proc/<tgid>/ without very good reasons. 228720cdc894SEric W. Biederman */ 22887bcd6b0eSEric W. Biederman last = &ents[nents - 1]; 22897bcd6b0eSEric W. Biederman for (p = ents; p <= last; p++) { 22901da177e4SLinus Torvalds if (p->len != dentry->d_name.len) 22911da177e4SLinus Torvalds continue; 22921da177e4SLinus Torvalds if (!memcmp(dentry->d_name.name, p->name, p->len)) 22931da177e4SLinus Torvalds break; 22941da177e4SLinus Torvalds } 22957bcd6b0eSEric W. Biederman if (p > last) 22961da177e4SLinus Torvalds goto out; 22971da177e4SLinus Torvalds 2298444ceed8SEric W. Biederman error = proc_pident_instantiate(dir, dentry, task, p); 22991da177e4SLinus Torvalds out: 230099f89551SEric W. Biederman put_task_struct(task); 230199f89551SEric W. Biederman out_no_task: 2302cd6a3ce9SEric W. Biederman return error; 23031da177e4SLinus Torvalds } 23041da177e4SLinus Torvalds 2305c5141e6dSEric Dumazet static int proc_pident_fill_cache(struct file *filp, void *dirent, 2306c5141e6dSEric Dumazet filldir_t filldir, struct task_struct *task, const struct pid_entry *p) 230761a28784SEric W. Biederman { 230861a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, p->name, p->len, 230961a28784SEric W. Biederman proc_pident_instantiate, task, p); 231061a28784SEric W. Biederman } 231161a28784SEric W. Biederman 231228a6d671SEric W. Biederman static int proc_pident_readdir(struct file *filp, 231328a6d671SEric W. Biederman void *dirent, filldir_t filldir, 2314c5141e6dSEric Dumazet const struct pid_entry *ents, unsigned int nents) 231528a6d671SEric W. Biederman { 231628a6d671SEric W. Biederman int i; 23172fddfeefSJosef "Jeff" Sipek struct dentry *dentry = filp->f_path.dentry; 231828a6d671SEric W. Biederman struct inode *inode = dentry->d_inode; 231928a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 2320c5141e6dSEric Dumazet const struct pid_entry *p, *last; 232128a6d671SEric W. Biederman ino_t ino; 232228a6d671SEric W. Biederman int ret; 232328a6d671SEric W. Biederman 232428a6d671SEric W. Biederman ret = -ENOENT; 232528a6d671SEric W. Biederman if (!task) 232661a28784SEric W. Biederman goto out_no_task; 232728a6d671SEric W. Biederman 232828a6d671SEric W. Biederman ret = 0; 232928a6d671SEric W. Biederman i = filp->f_pos; 233028a6d671SEric W. Biederman switch (i) { 233128a6d671SEric W. Biederman case 0: 233228a6d671SEric W. Biederman ino = inode->i_ino; 233328a6d671SEric W. Biederman if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0) 233428a6d671SEric W. Biederman goto out; 233528a6d671SEric W. Biederman i++; 233628a6d671SEric W. Biederman filp->f_pos++; 233728a6d671SEric W. Biederman /* fall through */ 233828a6d671SEric W. Biederman case 1: 233928a6d671SEric W. Biederman ino = parent_ino(dentry); 234028a6d671SEric W. Biederman if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0) 234128a6d671SEric W. Biederman goto out; 234228a6d671SEric W. Biederman i++; 234328a6d671SEric W. Biederman filp->f_pos++; 234428a6d671SEric W. Biederman /* fall through */ 234528a6d671SEric W. Biederman default: 234628a6d671SEric W. Biederman i -= 2; 234728a6d671SEric W. Biederman if (i >= nents) { 234828a6d671SEric W. Biederman ret = 1; 234928a6d671SEric W. Biederman goto out; 235028a6d671SEric W. Biederman } 235128a6d671SEric W. Biederman p = ents + i; 23527bcd6b0eSEric W. Biederman last = &ents[nents - 1]; 23537bcd6b0eSEric W. Biederman while (p <= last) { 235461a28784SEric W. Biederman if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0) 235528a6d671SEric W. Biederman goto out; 235628a6d671SEric W. Biederman filp->f_pos++; 235728a6d671SEric W. Biederman p++; 235828a6d671SEric W. Biederman } 23591da177e4SLinus Torvalds } 23601da177e4SLinus Torvalds 236128a6d671SEric W. Biederman ret = 1; 236228a6d671SEric W. Biederman out: 236361a28784SEric W. Biederman put_task_struct(task); 236461a28784SEric W. Biederman out_no_task: 236528a6d671SEric W. Biederman return ret; 23661da177e4SLinus Torvalds } 23671da177e4SLinus Torvalds 23681da177e4SLinus Torvalds #ifdef CONFIG_SECURITY 236928a6d671SEric W. Biederman static ssize_t proc_pid_attr_read(struct file * file, char __user * buf, 237028a6d671SEric W. Biederman size_t count, loff_t *ppos) 237128a6d671SEric W. Biederman { 23722fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 237304ff9708SAl Viro char *p = NULL; 237428a6d671SEric W. Biederman ssize_t length; 237528a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 237628a6d671SEric W. Biederman 237728a6d671SEric W. Biederman if (!task) 237804ff9708SAl Viro return -ESRCH; 237928a6d671SEric W. Biederman 238028a6d671SEric W. Biederman length = security_getprocattr(task, 23812fddfeefSJosef "Jeff" Sipek (char*)file->f_path.dentry->d_name.name, 238204ff9708SAl Viro &p); 238328a6d671SEric W. Biederman put_task_struct(task); 238404ff9708SAl Viro if (length > 0) 238504ff9708SAl Viro length = simple_read_from_buffer(buf, count, ppos, p, length); 238604ff9708SAl Viro kfree(p); 238728a6d671SEric W. Biederman return length; 238828a6d671SEric W. Biederman } 238928a6d671SEric W. Biederman 239028a6d671SEric W. Biederman static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf, 239128a6d671SEric W. Biederman size_t count, loff_t *ppos) 239228a6d671SEric W. Biederman { 23932fddfeefSJosef "Jeff" Sipek struct inode * inode = file->f_path.dentry->d_inode; 239428a6d671SEric W. Biederman char *page; 239528a6d671SEric W. Biederman ssize_t length; 239628a6d671SEric W. Biederman struct task_struct *task = get_proc_task(inode); 239728a6d671SEric W. Biederman 239828a6d671SEric W. Biederman length = -ESRCH; 239928a6d671SEric W. Biederman if (!task) 240028a6d671SEric W. Biederman goto out_no_task; 240128a6d671SEric W. Biederman if (count > PAGE_SIZE) 240228a6d671SEric W. Biederman count = PAGE_SIZE; 240328a6d671SEric W. Biederman 240428a6d671SEric W. Biederman /* No partial writes. */ 240528a6d671SEric W. Biederman length = -EINVAL; 240628a6d671SEric W. Biederman if (*ppos != 0) 240728a6d671SEric W. Biederman goto out; 240828a6d671SEric W. Biederman 240928a6d671SEric W. Biederman length = -ENOMEM; 2410e12ba74dSMel Gorman page = (char*)__get_free_page(GFP_TEMPORARY); 241128a6d671SEric W. Biederman if (!page) 241228a6d671SEric W. Biederman goto out; 241328a6d671SEric W. Biederman 241428a6d671SEric W. Biederman length = -EFAULT; 241528a6d671SEric W. Biederman if (copy_from_user(page, buf, count)) 241628a6d671SEric W. Biederman goto out_free; 241728a6d671SEric W. Biederman 2418107db7c7SDavid Howells /* Guard against adverse ptrace interaction */ 24199b1bf12dSKOSAKI Motohiro length = mutex_lock_interruptible(&task->signal->cred_guard_mutex); 2420107db7c7SDavid Howells if (length < 0) 2421107db7c7SDavid Howells goto out_free; 2422107db7c7SDavid Howells 242328a6d671SEric W. Biederman length = security_setprocattr(task, 24242fddfeefSJosef "Jeff" Sipek (char*)file->f_path.dentry->d_name.name, 242528a6d671SEric W. Biederman (void*)page, count); 24269b1bf12dSKOSAKI Motohiro mutex_unlock(&task->signal->cred_guard_mutex); 242728a6d671SEric W. Biederman out_free: 242828a6d671SEric W. Biederman free_page((unsigned long) page); 242928a6d671SEric W. Biederman out: 243028a6d671SEric W. Biederman put_task_struct(task); 243128a6d671SEric W. Biederman out_no_task: 243228a6d671SEric W. Biederman return length; 243328a6d671SEric W. Biederman } 243428a6d671SEric W. Biederman 243500977a59SArjan van de Ven static const struct file_operations proc_pid_attr_operations = { 243628a6d671SEric W. Biederman .read = proc_pid_attr_read, 243728a6d671SEric W. Biederman .write = proc_pid_attr_write, 243887df8424SArnd Bergmann .llseek = generic_file_llseek, 243928a6d671SEric W. Biederman }; 244028a6d671SEric W. Biederman 2441c5141e6dSEric Dumazet static const struct pid_entry attr_dir_stuff[] = { 2442631f9c18SAlexey Dobriyan REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2443631f9c18SAlexey Dobriyan REG("prev", S_IRUGO, proc_pid_attr_operations), 2444631f9c18SAlexey Dobriyan REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2445631f9c18SAlexey Dobriyan REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2446631f9c18SAlexey Dobriyan REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 2447631f9c18SAlexey Dobriyan REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations), 244828a6d671SEric W. Biederman }; 244928a6d671SEric W. Biederman 245072d9dcfcSEric W. Biederman static int proc_attr_dir_readdir(struct file * filp, 24511da177e4SLinus Torvalds void * dirent, filldir_t filldir) 24521da177e4SLinus Torvalds { 24531da177e4SLinus Torvalds return proc_pident_readdir(filp,dirent,filldir, 245472d9dcfcSEric W. Biederman attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff)); 24551da177e4SLinus Torvalds } 24561da177e4SLinus Torvalds 245700977a59SArjan van de Ven static const struct file_operations proc_attr_dir_operations = { 24581da177e4SLinus Torvalds .read = generic_read_dir, 245972d9dcfcSEric W. Biederman .readdir = proc_attr_dir_readdir, 24606038f373SArnd Bergmann .llseek = default_llseek, 24611da177e4SLinus Torvalds }; 24621da177e4SLinus Torvalds 246372d9dcfcSEric W. Biederman static struct dentry *proc_attr_dir_lookup(struct inode *dir, 24641da177e4SLinus Torvalds struct dentry *dentry, struct nameidata *nd) 24651da177e4SLinus Torvalds { 24667bcd6b0eSEric W. Biederman return proc_pident_lookup(dir, dentry, 24677bcd6b0eSEric W. Biederman attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff)); 24681da177e4SLinus Torvalds } 24691da177e4SLinus Torvalds 2470c5ef1c42SArjan van de Ven static const struct inode_operations proc_attr_dir_inode_operations = { 247172d9dcfcSEric W. Biederman .lookup = proc_attr_dir_lookup, 247299f89551SEric W. Biederman .getattr = pid_getattr, 24736d76fa58SLinus Torvalds .setattr = proc_setattr, 24741da177e4SLinus Torvalds }; 24751da177e4SLinus Torvalds 24761da177e4SLinus Torvalds #endif 24771da177e4SLinus Torvalds 2478698ba7b5SChristoph Hellwig #ifdef CONFIG_ELF_CORE 24793cb4a0bbSKawai, Hidehiro static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf, 24803cb4a0bbSKawai, Hidehiro size_t count, loff_t *ppos) 24813cb4a0bbSKawai, Hidehiro { 24823cb4a0bbSKawai, Hidehiro struct task_struct *task = get_proc_task(file->f_dentry->d_inode); 24833cb4a0bbSKawai, Hidehiro struct mm_struct *mm; 24843cb4a0bbSKawai, Hidehiro char buffer[PROC_NUMBUF]; 24853cb4a0bbSKawai, Hidehiro size_t len; 24863cb4a0bbSKawai, Hidehiro int ret; 24873cb4a0bbSKawai, Hidehiro 24883cb4a0bbSKawai, Hidehiro if (!task) 24893cb4a0bbSKawai, Hidehiro return -ESRCH; 24903cb4a0bbSKawai, Hidehiro 24913cb4a0bbSKawai, Hidehiro ret = 0; 24923cb4a0bbSKawai, Hidehiro mm = get_task_mm(task); 24933cb4a0bbSKawai, Hidehiro if (mm) { 24943cb4a0bbSKawai, Hidehiro len = snprintf(buffer, sizeof(buffer), "%08lx\n", 24953cb4a0bbSKawai, Hidehiro ((mm->flags & MMF_DUMP_FILTER_MASK) >> 24963cb4a0bbSKawai, Hidehiro MMF_DUMP_FILTER_SHIFT)); 24973cb4a0bbSKawai, Hidehiro mmput(mm); 24983cb4a0bbSKawai, Hidehiro ret = simple_read_from_buffer(buf, count, ppos, buffer, len); 24993cb4a0bbSKawai, Hidehiro } 25003cb4a0bbSKawai, Hidehiro 25013cb4a0bbSKawai, Hidehiro put_task_struct(task); 25023cb4a0bbSKawai, Hidehiro 25033cb4a0bbSKawai, Hidehiro return ret; 25043cb4a0bbSKawai, Hidehiro } 25053cb4a0bbSKawai, Hidehiro 25063cb4a0bbSKawai, Hidehiro static ssize_t proc_coredump_filter_write(struct file *file, 25073cb4a0bbSKawai, Hidehiro const char __user *buf, 25083cb4a0bbSKawai, Hidehiro size_t count, 25093cb4a0bbSKawai, Hidehiro loff_t *ppos) 25103cb4a0bbSKawai, Hidehiro { 25113cb4a0bbSKawai, Hidehiro struct task_struct *task; 25123cb4a0bbSKawai, Hidehiro struct mm_struct *mm; 25133cb4a0bbSKawai, Hidehiro char buffer[PROC_NUMBUF], *end; 25143cb4a0bbSKawai, Hidehiro unsigned int val; 25153cb4a0bbSKawai, Hidehiro int ret; 25163cb4a0bbSKawai, Hidehiro int i; 25173cb4a0bbSKawai, Hidehiro unsigned long mask; 25183cb4a0bbSKawai, Hidehiro 25193cb4a0bbSKawai, Hidehiro ret = -EFAULT; 25203cb4a0bbSKawai, Hidehiro memset(buffer, 0, sizeof(buffer)); 25213cb4a0bbSKawai, Hidehiro if (count > sizeof(buffer) - 1) 25223cb4a0bbSKawai, Hidehiro count = sizeof(buffer) - 1; 25233cb4a0bbSKawai, Hidehiro if (copy_from_user(buffer, buf, count)) 25243cb4a0bbSKawai, Hidehiro goto out_no_task; 25253cb4a0bbSKawai, Hidehiro 25263cb4a0bbSKawai, Hidehiro ret = -EINVAL; 25273cb4a0bbSKawai, Hidehiro val = (unsigned int)simple_strtoul(buffer, &end, 0); 25283cb4a0bbSKawai, Hidehiro if (*end == '\n') 25293cb4a0bbSKawai, Hidehiro end++; 25303cb4a0bbSKawai, Hidehiro if (end - buffer == 0) 25313cb4a0bbSKawai, Hidehiro goto out_no_task; 25323cb4a0bbSKawai, Hidehiro 25333cb4a0bbSKawai, Hidehiro ret = -ESRCH; 25343cb4a0bbSKawai, Hidehiro task = get_proc_task(file->f_dentry->d_inode); 25353cb4a0bbSKawai, Hidehiro if (!task) 25363cb4a0bbSKawai, Hidehiro goto out_no_task; 25373cb4a0bbSKawai, Hidehiro 25383cb4a0bbSKawai, Hidehiro ret = end - buffer; 25393cb4a0bbSKawai, Hidehiro mm = get_task_mm(task); 25403cb4a0bbSKawai, Hidehiro if (!mm) 25413cb4a0bbSKawai, Hidehiro goto out_no_mm; 25423cb4a0bbSKawai, Hidehiro 25433cb4a0bbSKawai, Hidehiro for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) { 25443cb4a0bbSKawai, Hidehiro if (val & mask) 25453cb4a0bbSKawai, Hidehiro set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags); 25463cb4a0bbSKawai, Hidehiro else 25473cb4a0bbSKawai, Hidehiro clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags); 25483cb4a0bbSKawai, Hidehiro } 25493cb4a0bbSKawai, Hidehiro 25503cb4a0bbSKawai, Hidehiro mmput(mm); 25513cb4a0bbSKawai, Hidehiro out_no_mm: 25523cb4a0bbSKawai, Hidehiro put_task_struct(task); 25533cb4a0bbSKawai, Hidehiro out_no_task: 25543cb4a0bbSKawai, Hidehiro return ret; 25553cb4a0bbSKawai, Hidehiro } 25563cb4a0bbSKawai, Hidehiro 25573cb4a0bbSKawai, Hidehiro static const struct file_operations proc_coredump_filter_operations = { 25583cb4a0bbSKawai, Hidehiro .read = proc_coredump_filter_read, 25593cb4a0bbSKawai, Hidehiro .write = proc_coredump_filter_write, 256087df8424SArnd Bergmann .llseek = generic_file_llseek, 25613cb4a0bbSKawai, Hidehiro }; 25623cb4a0bbSKawai, Hidehiro #endif 25633cb4a0bbSKawai, Hidehiro 25641da177e4SLinus Torvalds /* 25651da177e4SLinus Torvalds * /proc/self: 25661da177e4SLinus Torvalds */ 25671da177e4SLinus Torvalds static int proc_self_readlink(struct dentry *dentry, char __user *buffer, 25681da177e4SLinus Torvalds int buflen) 25691da177e4SLinus Torvalds { 2570488e5bc4SEric W. Biederman struct pid_namespace *ns = dentry->d_sb->s_fs_info; 2571b55fcb22SAndrew Morton pid_t tgid = task_tgid_nr_ns(current, ns); 25728578cea7SEric W. Biederman char tmp[PROC_NUMBUF]; 2573b55fcb22SAndrew Morton if (!tgid) 2574488e5bc4SEric W. Biederman return -ENOENT; 2575b55fcb22SAndrew Morton sprintf(tmp, "%d", tgid); 25761da177e4SLinus Torvalds return vfs_readlink(dentry,buffer,buflen,tmp); 25771da177e4SLinus Torvalds } 25781da177e4SLinus Torvalds 2579008b150aSAl Viro static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd) 25801da177e4SLinus Torvalds { 2581488e5bc4SEric W. Biederman struct pid_namespace *ns = dentry->d_sb->s_fs_info; 2582b55fcb22SAndrew Morton pid_t tgid = task_tgid_nr_ns(current, ns); 25837fee4868SAl Viro char *name = ERR_PTR(-ENOENT); 25847fee4868SAl Viro if (tgid) { 25857fee4868SAl Viro name = __getname(); 25867fee4868SAl Viro if (!name) 25877fee4868SAl Viro name = ERR_PTR(-ENOMEM); 25887fee4868SAl Viro else 25897fee4868SAl Viro sprintf(name, "%d", tgid); 25907fee4868SAl Viro } 25917fee4868SAl Viro nd_set_link(nd, name); 25927fee4868SAl Viro return NULL; 25937fee4868SAl Viro } 25947fee4868SAl Viro 25957fee4868SAl Viro static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd, 25967fee4868SAl Viro void *cookie) 25977fee4868SAl Viro { 25987fee4868SAl Viro char *s = nd_get_link(nd); 25997fee4868SAl Viro if (!IS_ERR(s)) 26007fee4868SAl Viro __putname(s); 26011da177e4SLinus Torvalds } 26021da177e4SLinus Torvalds 2603c5ef1c42SArjan van de Ven static const struct inode_operations proc_self_inode_operations = { 26041da177e4SLinus Torvalds .readlink = proc_self_readlink, 26051da177e4SLinus Torvalds .follow_link = proc_self_follow_link, 26067fee4868SAl Viro .put_link = proc_self_put_link, 26071da177e4SLinus Torvalds }; 26081da177e4SLinus Torvalds 260928a6d671SEric W. Biederman /* 2610801199ceSEric W. Biederman * proc base 2611801199ceSEric W. Biederman * 2612801199ceSEric W. Biederman * These are the directory entries in the root directory of /proc 2613801199ceSEric W. Biederman * that properly belong to the /proc filesystem, as they describe 2614801199ceSEric W. Biederman * describe something that is process related. 2615801199ceSEric W. Biederman */ 2616c5141e6dSEric Dumazet static const struct pid_entry proc_base_stuff[] = { 261761a28784SEric W. Biederman NOD("self", S_IFLNK|S_IRWXUGO, 2618801199ceSEric W. Biederman &proc_self_inode_operations, NULL, {}), 2619801199ceSEric W. Biederman }; 2620801199ceSEric W. Biederman 2621801199ceSEric W. Biederman /* 2622801199ceSEric W. Biederman * Exceptional case: normally we are not allowed to unhash a busy 2623801199ceSEric W. Biederman * directory. In this case, however, we can do it - no aliasing problems 2624801199ceSEric W. Biederman * due to the way we treat inodes. 2625801199ceSEric W. Biederman */ 2626801199ceSEric W. Biederman static int proc_base_revalidate(struct dentry *dentry, struct nameidata *nd) 2627801199ceSEric W. Biederman { 262834286d66SNick Piggin struct inode *inode; 262934286d66SNick Piggin struct task_struct *task; 263034286d66SNick Piggin 263134286d66SNick Piggin if (nd->flags & LOOKUP_RCU) 263234286d66SNick Piggin return -ECHILD; 263334286d66SNick Piggin 263434286d66SNick Piggin inode = dentry->d_inode; 263534286d66SNick Piggin task = get_proc_task(inode); 2636801199ceSEric W. Biederman if (task) { 2637801199ceSEric W. Biederman put_task_struct(task); 2638801199ceSEric W. Biederman return 1; 2639801199ceSEric W. Biederman } 2640801199ceSEric W. Biederman d_drop(dentry); 2641801199ceSEric W. Biederman return 0; 2642801199ceSEric W. Biederman } 2643801199ceSEric W. Biederman 2644d72f71ebSAl Viro static const struct dentry_operations proc_base_dentry_operations = 2645801199ceSEric W. Biederman { 2646801199ceSEric W. Biederman .d_revalidate = proc_base_revalidate, 2647801199ceSEric W. Biederman .d_delete = pid_delete_dentry, 2648801199ceSEric W. Biederman }; 2649801199ceSEric W. Biederman 2650444ceed8SEric W. Biederman static struct dentry *proc_base_instantiate(struct inode *dir, 2651c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 2652801199ceSEric W. Biederman { 2653c5141e6dSEric Dumazet const struct pid_entry *p = ptr; 2654801199ceSEric W. Biederman struct inode *inode; 2655801199ceSEric W. Biederman struct proc_inode *ei; 265673d36460SDan Carpenter struct dentry *error; 2657801199ceSEric W. Biederman 2658801199ceSEric W. Biederman /* Allocate the inode */ 2659801199ceSEric W. Biederman error = ERR_PTR(-ENOMEM); 2660801199ceSEric W. Biederman inode = new_inode(dir->i_sb); 2661801199ceSEric W. Biederman if (!inode) 2662801199ceSEric W. Biederman goto out; 2663801199ceSEric W. Biederman 2664801199ceSEric W. Biederman /* Initialize the inode */ 2665801199ceSEric W. Biederman ei = PROC_I(inode); 266685fe4025SChristoph Hellwig inode->i_ino = get_next_ino(); 2667801199ceSEric W. Biederman inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; 2668801199ceSEric W. Biederman 2669801199ceSEric W. Biederman /* 2670801199ceSEric W. Biederman * grab the reference to the task. 2671801199ceSEric W. Biederman */ 26721a657f78SOleg Nesterov ei->pid = get_task_pid(task, PIDTYPE_PID); 2673801199ceSEric W. Biederman if (!ei->pid) 2674801199ceSEric W. Biederman goto out_iput; 2675801199ceSEric W. Biederman 2676801199ceSEric W. Biederman inode->i_mode = p->mode; 2677801199ceSEric W. Biederman if (S_ISDIR(inode->i_mode)) 2678801199ceSEric W. Biederman inode->i_nlink = 2; 2679801199ceSEric W. Biederman if (S_ISLNK(inode->i_mode)) 2680801199ceSEric W. Biederman inode->i_size = 64; 2681801199ceSEric W. Biederman if (p->iop) 2682801199ceSEric W. Biederman inode->i_op = p->iop; 2683801199ceSEric W. Biederman if (p->fop) 2684801199ceSEric W. Biederman inode->i_fop = p->fop; 2685801199ceSEric W. Biederman ei->op = p->op; 2686fb045adbSNick Piggin d_set_d_op(dentry, &proc_base_dentry_operations); 2687801199ceSEric W. Biederman d_add(dentry, inode); 2688801199ceSEric W. Biederman error = NULL; 2689801199ceSEric W. Biederman out: 2690801199ceSEric W. Biederman return error; 2691801199ceSEric W. Biederman out_iput: 2692801199ceSEric W. Biederman iput(inode); 2693801199ceSEric W. Biederman goto out; 2694801199ceSEric W. Biederman } 2695801199ceSEric W. Biederman 2696444ceed8SEric W. Biederman static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry) 2697444ceed8SEric W. Biederman { 2698444ceed8SEric W. Biederman struct dentry *error; 2699444ceed8SEric W. Biederman struct task_struct *task = get_proc_task(dir); 2700c5141e6dSEric Dumazet const struct pid_entry *p, *last; 2701444ceed8SEric W. Biederman 2702444ceed8SEric W. Biederman error = ERR_PTR(-ENOENT); 2703444ceed8SEric W. Biederman 2704444ceed8SEric W. Biederman if (!task) 2705444ceed8SEric W. Biederman goto out_no_task; 2706444ceed8SEric W. Biederman 2707444ceed8SEric W. Biederman /* Lookup the directory entry */ 27087bcd6b0eSEric W. Biederman last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1]; 27097bcd6b0eSEric W. Biederman for (p = proc_base_stuff; p <= last; p++) { 2710444ceed8SEric W. Biederman if (p->len != dentry->d_name.len) 2711444ceed8SEric W. Biederman continue; 2712444ceed8SEric W. Biederman if (!memcmp(dentry->d_name.name, p->name, p->len)) 2713444ceed8SEric W. Biederman break; 2714444ceed8SEric W. Biederman } 27157bcd6b0eSEric W. Biederman if (p > last) 2716444ceed8SEric W. Biederman goto out; 2717444ceed8SEric W. Biederman 2718444ceed8SEric W. Biederman error = proc_base_instantiate(dir, dentry, task, p); 2719444ceed8SEric W. Biederman 2720444ceed8SEric W. Biederman out: 2721444ceed8SEric W. Biederman put_task_struct(task); 2722444ceed8SEric W. Biederman out_no_task: 2723444ceed8SEric W. Biederman return error; 2724444ceed8SEric W. Biederman } 2725444ceed8SEric W. Biederman 2726c5141e6dSEric Dumazet static int proc_base_fill_cache(struct file *filp, void *dirent, 2727c5141e6dSEric Dumazet filldir_t filldir, struct task_struct *task, const struct pid_entry *p) 272861a28784SEric W. Biederman { 272961a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, p->name, p->len, 273061a28784SEric W. Biederman proc_base_instantiate, task, p); 273161a28784SEric W. Biederman } 273261a28784SEric W. Biederman 2733aba76fdbSAndrew Morton #ifdef CONFIG_TASK_IO_ACCOUNTING 2734297c5d92SAndrea Righi static int do_io_accounting(struct task_struct *task, char *buffer, int whole) 2735aba76fdbSAndrew Morton { 2736940389b8SAndrea Righi struct task_io_accounting acct = task->ioac; 2737297c5d92SAndrea Righi unsigned long flags; 2738297c5d92SAndrea Righi 27395995477aSAndrea Righi if (whole && lock_task_sighand(task, &flags)) { 2740b2d002dbSAndrea Righi struct task_struct *t = task; 2741297c5d92SAndrea Righi 27425995477aSAndrea Righi task_io_accounting_add(&acct, &task->signal->ioac); 27435995477aSAndrea Righi while_each_thread(task, t) 27445995477aSAndrea Righi task_io_accounting_add(&acct, &t->ioac); 2745297c5d92SAndrea Righi 2746297c5d92SAndrea Righi unlock_task_sighand(task, &flags); 2747297c5d92SAndrea Righi } 2748aba76fdbSAndrew Morton return sprintf(buffer, 2749aba76fdbSAndrew Morton "rchar: %llu\n" 2750aba76fdbSAndrew Morton "wchar: %llu\n" 2751aba76fdbSAndrew Morton "syscr: %llu\n" 2752aba76fdbSAndrew Morton "syscw: %llu\n" 2753aba76fdbSAndrew Morton "read_bytes: %llu\n" 2754aba76fdbSAndrew Morton "write_bytes: %llu\n" 2755aba76fdbSAndrew Morton "cancelled_write_bytes: %llu\n", 27567c44319dSAlexander Beregalov (unsigned long long)acct.rchar, 27577c44319dSAlexander Beregalov (unsigned long long)acct.wchar, 27587c44319dSAlexander Beregalov (unsigned long long)acct.syscr, 27597c44319dSAlexander Beregalov (unsigned long long)acct.syscw, 27607c44319dSAlexander Beregalov (unsigned long long)acct.read_bytes, 27617c44319dSAlexander Beregalov (unsigned long long)acct.write_bytes, 27627c44319dSAlexander Beregalov (unsigned long long)acct.cancelled_write_bytes); 2763aba76fdbSAndrew Morton } 2764297c5d92SAndrea Righi 2765297c5d92SAndrea Righi static int proc_tid_io_accounting(struct task_struct *task, char *buffer) 2766297c5d92SAndrea Righi { 2767297c5d92SAndrea Righi return do_io_accounting(task, buffer, 0); 2768297c5d92SAndrea Righi } 2769297c5d92SAndrea Righi 2770297c5d92SAndrea Righi static int proc_tgid_io_accounting(struct task_struct *task, char *buffer) 2771297c5d92SAndrea Righi { 2772297c5d92SAndrea Righi return do_io_accounting(task, buffer, 1); 2773297c5d92SAndrea Righi } 2774297c5d92SAndrea Righi #endif /* CONFIG_TASK_IO_ACCOUNTING */ 2775aba76fdbSAndrew Morton 277647830723SKees Cook static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns, 277747830723SKees Cook struct pid *pid, struct task_struct *task) 277847830723SKees Cook { 277947830723SKees Cook seq_printf(m, "%08x\n", task->personality); 278047830723SKees Cook return 0; 278147830723SKees Cook } 278247830723SKees Cook 2783801199ceSEric W. Biederman /* 278428a6d671SEric W. Biederman * Thread groups 278528a6d671SEric W. Biederman */ 278600977a59SArjan van de Ven static const struct file_operations proc_task_operations; 2787c5ef1c42SArjan van de Ven static const struct inode_operations proc_task_inode_operations; 278820cdc894SEric W. Biederman 2789c5141e6dSEric Dumazet static const struct pid_entry tgid_base_stuff[] = { 2790631f9c18SAlexey Dobriyan DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations), 2791631f9c18SAlexey Dobriyan DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations), 2792631f9c18SAlexey Dobriyan DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations), 2793b2211a36SAndrew Morton #ifdef CONFIG_NET 2794631f9c18SAlexey Dobriyan DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations), 2795b2211a36SAndrew Morton #endif 2796631f9c18SAlexey Dobriyan REG("environ", S_IRUSR, proc_environ_operations), 2797631f9c18SAlexey Dobriyan INF("auxv", S_IRUSR, proc_pid_auxv), 2798631f9c18SAlexey Dobriyan ONE("status", S_IRUGO, proc_pid_status), 2799631f9c18SAlexey Dobriyan ONE("personality", S_IRUSR, proc_pid_personality), 28003036e7b4SJiri Olsa INF("limits", S_IRUGO, proc_pid_limits), 280143ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 2802631f9c18SAlexey Dobriyan REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations), 280343ae34cbSIngo Molnar #endif 28045091faa4SMike Galbraith #ifdef CONFIG_SCHED_AUTOGROUP 28055091faa4SMike Galbraith REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations), 28065091faa4SMike Galbraith #endif 28074614a696Sjohn stultz REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations), 2808ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK 2809631f9c18SAlexey Dobriyan INF("syscall", S_IRUSR, proc_pid_syscall), 2810ebcb6734SRoland McGrath #endif 2811631f9c18SAlexey Dobriyan INF("cmdline", S_IRUGO, proc_pid_cmdline), 2812631f9c18SAlexey Dobriyan ONE("stat", S_IRUGO, proc_tgid_stat), 2813631f9c18SAlexey Dobriyan ONE("statm", S_IRUGO, proc_pid_statm), 2814631f9c18SAlexey Dobriyan REG("maps", S_IRUGO, proc_maps_operations), 281528a6d671SEric W. Biederman #ifdef CONFIG_NUMA 2816631f9c18SAlexey Dobriyan REG("numa_maps", S_IRUGO, proc_numa_maps_operations), 281728a6d671SEric W. Biederman #endif 2818631f9c18SAlexey Dobriyan REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations), 2819631f9c18SAlexey Dobriyan LNK("cwd", proc_cwd_link), 2820631f9c18SAlexey Dobriyan LNK("root", proc_root_link), 2821631f9c18SAlexey Dobriyan LNK("exe", proc_exe_link), 2822631f9c18SAlexey Dobriyan REG("mounts", S_IRUGO, proc_mounts_operations), 2823631f9c18SAlexey Dobriyan REG("mountinfo", S_IRUGO, proc_mountinfo_operations), 2824631f9c18SAlexey Dobriyan REG("mountstats", S_IRUSR, proc_mountstats_operations), 28251e883281SMatt Mackall #ifdef CONFIG_PROC_PAGE_MONITOR 2826631f9c18SAlexey Dobriyan REG("clear_refs", S_IWUSR, proc_clear_refs_operations), 2827631f9c18SAlexey Dobriyan REG("smaps", S_IRUGO, proc_smaps_operations), 2828631f9c18SAlexey Dobriyan REG("pagemap", S_IRUSR, proc_pagemap_operations), 282928a6d671SEric W. Biederman #endif 283028a6d671SEric W. Biederman #ifdef CONFIG_SECURITY 2831631f9c18SAlexey Dobriyan DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations), 283228a6d671SEric W. Biederman #endif 283328a6d671SEric W. Biederman #ifdef CONFIG_KALLSYMS 2834631f9c18SAlexey Dobriyan INF("wchan", S_IRUGO, proc_pid_wchan), 283528a6d671SEric W. Biederman #endif 28362ec220e2SKen Chen #ifdef CONFIG_STACKTRACE 28372ec220e2SKen Chen ONE("stack", S_IRUSR, proc_pid_stack), 283828a6d671SEric W. Biederman #endif 283928a6d671SEric W. Biederman #ifdef CONFIG_SCHEDSTATS 2840631f9c18SAlexey Dobriyan INF("schedstat", S_IRUGO, proc_pid_schedstat), 284128a6d671SEric W. Biederman #endif 28429745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP 2843631f9c18SAlexey Dobriyan REG("latency", S_IRUGO, proc_lstats_operations), 28449745512cSArjan van de Ven #endif 28458793d854SPaul Menage #ifdef CONFIG_PROC_PID_CPUSET 2846631f9c18SAlexey Dobriyan REG("cpuset", S_IRUGO, proc_cpuset_operations), 284728a6d671SEric W. Biederman #endif 2848a424316cSPaul Menage #ifdef CONFIG_CGROUPS 2849631f9c18SAlexey Dobriyan REG("cgroup", S_IRUGO, proc_cgroup_operations), 2850a424316cSPaul Menage #endif 2851631f9c18SAlexey Dobriyan INF("oom_score", S_IRUGO, proc_oom_score), 2852631f9c18SAlexey Dobriyan REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations), 2853a63d83f4SDavid Rientjes REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations), 285428a6d671SEric W. Biederman #ifdef CONFIG_AUDITSYSCALL 2855631f9c18SAlexey Dobriyan REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations), 2856631f9c18SAlexey Dobriyan REG("sessionid", S_IRUGO, proc_sessionid_operations), 285728a6d671SEric W. Biederman #endif 2858f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION 2859631f9c18SAlexey Dobriyan REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), 2860f4f154fdSAkinobu Mita #endif 2861698ba7b5SChristoph Hellwig #ifdef CONFIG_ELF_CORE 2862631f9c18SAlexey Dobriyan REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations), 28633cb4a0bbSKawai, Hidehiro #endif 2864aba76fdbSAndrew Morton #ifdef CONFIG_TASK_IO_ACCOUNTING 2865631f9c18SAlexey Dobriyan INF("io", S_IRUGO, proc_tgid_io_accounting), 2866aba76fdbSAndrew Morton #endif 286728a6d671SEric W. Biederman }; 286828a6d671SEric W. Biederman 286928a6d671SEric W. Biederman static int proc_tgid_base_readdir(struct file * filp, 287028a6d671SEric W. Biederman void * dirent, filldir_t filldir) 287128a6d671SEric W. Biederman { 287228a6d671SEric W. Biederman return proc_pident_readdir(filp,dirent,filldir, 287328a6d671SEric W. Biederman tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff)); 287428a6d671SEric W. Biederman } 287528a6d671SEric W. Biederman 287600977a59SArjan van de Ven static const struct file_operations proc_tgid_base_operations = { 287728a6d671SEric W. Biederman .read = generic_read_dir, 287828a6d671SEric W. Biederman .readdir = proc_tgid_base_readdir, 28796038f373SArnd Bergmann .llseek = default_llseek, 288028a6d671SEric W. Biederman }; 288128a6d671SEric W. Biederman 288228a6d671SEric W. Biederman static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){ 28837bcd6b0eSEric W. Biederman return proc_pident_lookup(dir, dentry, 28847bcd6b0eSEric W. Biederman tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff)); 288528a6d671SEric W. Biederman } 288628a6d671SEric W. Biederman 2887c5ef1c42SArjan van de Ven static const struct inode_operations proc_tgid_base_inode_operations = { 288828a6d671SEric W. Biederman .lookup = proc_tgid_base_lookup, 288928a6d671SEric W. Biederman .getattr = pid_getattr, 289028a6d671SEric W. Biederman .setattr = proc_setattr, 289128a6d671SEric W. Biederman }; 289228a6d671SEric W. Biederman 289360347f67SPavel Emelyanov static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid) 28941da177e4SLinus Torvalds { 289548e6484dSEric W. Biederman struct dentry *dentry, *leader, *dir; 28968578cea7SEric W. Biederman char buf[PROC_NUMBUF]; 289748e6484dSEric W. Biederman struct qstr name; 28981da177e4SLinus Torvalds 289948e6484dSEric W. Biederman name.name = buf; 290060347f67SPavel Emelyanov name.len = snprintf(buf, sizeof(buf), "%d", pid); 290160347f67SPavel Emelyanov dentry = d_hash_and_lookup(mnt->mnt_root, &name); 290248e6484dSEric W. Biederman if (dentry) { 290348e6484dSEric W. Biederman shrink_dcache_parent(dentry); 290448e6484dSEric W. Biederman d_drop(dentry); 290548e6484dSEric W. Biederman dput(dentry); 29061da177e4SLinus Torvalds } 29071da177e4SLinus Torvalds 290848e6484dSEric W. Biederman name.name = buf; 290960347f67SPavel Emelyanov name.len = snprintf(buf, sizeof(buf), "%d", tgid); 291060347f67SPavel Emelyanov leader = d_hash_and_lookup(mnt->mnt_root, &name); 291148e6484dSEric W. Biederman if (!leader) 291248e6484dSEric W. Biederman goto out; 291348e6484dSEric W. Biederman 291448e6484dSEric W. Biederman name.name = "task"; 291548e6484dSEric W. Biederman name.len = strlen(name.name); 291648e6484dSEric W. Biederman dir = d_hash_and_lookup(leader, &name); 291748e6484dSEric W. Biederman if (!dir) 291848e6484dSEric W. Biederman goto out_put_leader; 291948e6484dSEric W. Biederman 292048e6484dSEric W. Biederman name.name = buf; 292160347f67SPavel Emelyanov name.len = snprintf(buf, sizeof(buf), "%d", pid); 292248e6484dSEric W. Biederman dentry = d_hash_and_lookup(dir, &name); 292348e6484dSEric W. Biederman if (dentry) { 292448e6484dSEric W. Biederman shrink_dcache_parent(dentry); 292548e6484dSEric W. Biederman d_drop(dentry); 292648e6484dSEric W. Biederman dput(dentry); 29271da177e4SLinus Torvalds } 292848e6484dSEric W. Biederman 292948e6484dSEric W. Biederman dput(dir); 293048e6484dSEric W. Biederman out_put_leader: 293148e6484dSEric W. Biederman dput(leader); 293248e6484dSEric W. Biederman out: 293348e6484dSEric W. Biederman return; 29341da177e4SLinus Torvalds } 29351da177e4SLinus Torvalds 29360895e91dSRandy Dunlap /** 29370895e91dSRandy Dunlap * proc_flush_task - Remove dcache entries for @task from the /proc dcache. 29380895e91dSRandy Dunlap * @task: task that should be flushed. 29390895e91dSRandy Dunlap * 29400895e91dSRandy Dunlap * When flushing dentries from proc, one needs to flush them from global 294160347f67SPavel Emelyanov * proc (proc_mnt) and from all the namespaces' procs this task was seen 29420895e91dSRandy Dunlap * in. This call is supposed to do all of this job. 29430895e91dSRandy Dunlap * 29440895e91dSRandy Dunlap * Looks in the dcache for 29450895e91dSRandy Dunlap * /proc/@pid 29460895e91dSRandy Dunlap * /proc/@tgid/task/@pid 29470895e91dSRandy Dunlap * if either directory is present flushes it and all of it'ts children 29480895e91dSRandy Dunlap * from the dcache. 29490895e91dSRandy Dunlap * 29500895e91dSRandy Dunlap * It is safe and reasonable to cache /proc entries for a task until 29510895e91dSRandy Dunlap * that task exits. After that they just clog up the dcache with 29520895e91dSRandy Dunlap * useless entries, possibly causing useful dcache entries to be 29530895e91dSRandy Dunlap * flushed instead. This routine is proved to flush those useless 29540895e91dSRandy Dunlap * dcache entries at process exit time. 29550895e91dSRandy Dunlap * 29560895e91dSRandy Dunlap * NOTE: This routine is just an optimization so it does not guarantee 29570895e91dSRandy Dunlap * that no dcache entries will exist at process exit time it 29580895e91dSRandy Dunlap * just makes it very unlikely that any will persist. 295960347f67SPavel Emelyanov */ 296060347f67SPavel Emelyanov 296160347f67SPavel Emelyanov void proc_flush_task(struct task_struct *task) 296260347f67SPavel Emelyanov { 29639fcc2d15SEric W. Biederman int i; 29649b4d1cbeSOleg Nesterov struct pid *pid, *tgid; 2965130f77ecSPavel Emelyanov struct upid *upid; 2966130f77ecSPavel Emelyanov 2967130f77ecSPavel Emelyanov pid = task_pid(task); 2968130f77ecSPavel Emelyanov tgid = task_tgid(task); 29699fcc2d15SEric W. Biederman 29709fcc2d15SEric W. Biederman for (i = 0; i <= pid->level; i++) { 2971130f77ecSPavel Emelyanov upid = &pid->numbers[i]; 2972130f77ecSPavel Emelyanov proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr, 29739b4d1cbeSOleg Nesterov tgid->numbers[i].nr); 2974130f77ecSPavel Emelyanov } 29756f4e6433SPavel Emelyanov 29766f4e6433SPavel Emelyanov upid = &pid->numbers[pid->level]; 29776f4e6433SPavel Emelyanov if (upid->nr == 1) 29786f4e6433SPavel Emelyanov pid_ns_release_proc(upid->ns); 297960347f67SPavel Emelyanov } 298060347f67SPavel Emelyanov 29819711ef99SAdrian Bunk static struct dentry *proc_pid_instantiate(struct inode *dir, 29829711ef99SAdrian Bunk struct dentry * dentry, 2983c5141e6dSEric Dumazet struct task_struct *task, const void *ptr) 2984444ceed8SEric W. Biederman { 2985444ceed8SEric W. Biederman struct dentry *error = ERR_PTR(-ENOENT); 2986444ceed8SEric W. Biederman struct inode *inode; 2987444ceed8SEric W. Biederman 298861a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 2989444ceed8SEric W. Biederman if (!inode) 2990444ceed8SEric W. Biederman goto out; 2991444ceed8SEric W. Biederman 2992444ceed8SEric W. Biederman inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO; 2993444ceed8SEric W. Biederman inode->i_op = &proc_tgid_base_inode_operations; 2994444ceed8SEric W. Biederman inode->i_fop = &proc_tgid_base_operations; 2995444ceed8SEric W. Biederman inode->i_flags|=S_IMMUTABLE; 2996aed54175SVegard Nossum 2997aed54175SVegard Nossum inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff, 2998aed54175SVegard Nossum ARRAY_SIZE(tgid_base_stuff)); 2999444ceed8SEric W. Biederman 3000fb045adbSNick Piggin d_set_d_op(dentry, &pid_dentry_operations); 3001444ceed8SEric W. Biederman 3002444ceed8SEric W. Biederman d_add(dentry, inode); 3003444ceed8SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 3004444ceed8SEric W. Biederman if (pid_revalidate(dentry, NULL)) 3005444ceed8SEric W. Biederman error = NULL; 3006444ceed8SEric W. Biederman out: 3007444ceed8SEric W. Biederman return error; 3008444ceed8SEric W. Biederman } 3009444ceed8SEric W. Biederman 30101da177e4SLinus Torvalds struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd) 30111da177e4SLinus Torvalds { 301273d36460SDan Carpenter struct dentry *result; 30131da177e4SLinus Torvalds struct task_struct *task; 30141da177e4SLinus Torvalds unsigned tgid; 3015b488893aSPavel Emelyanov struct pid_namespace *ns; 30161da177e4SLinus Torvalds 3017801199ceSEric W. Biederman result = proc_base_lookup(dir, dentry); 3018801199ceSEric W. Biederman if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT) 3019801199ceSEric W. Biederman goto out; 3020801199ceSEric W. Biederman 30211da177e4SLinus Torvalds tgid = name_to_int(dentry); 30221da177e4SLinus Torvalds if (tgid == ~0U) 30231da177e4SLinus Torvalds goto out; 30241da177e4SLinus Torvalds 3025b488893aSPavel Emelyanov ns = dentry->d_sb->s_fs_info; 3026de758734SEric W. Biederman rcu_read_lock(); 3027b488893aSPavel Emelyanov task = find_task_by_pid_ns(tgid, ns); 30281da177e4SLinus Torvalds if (task) 30291da177e4SLinus Torvalds get_task_struct(task); 3030de758734SEric W. Biederman rcu_read_unlock(); 30311da177e4SLinus Torvalds if (!task) 30321da177e4SLinus Torvalds goto out; 30331da177e4SLinus Torvalds 3034444ceed8SEric W. Biederman result = proc_pid_instantiate(dir, dentry, task, NULL); 303548e6484dSEric W. Biederman put_task_struct(task); 30361da177e4SLinus Torvalds out: 3037cd6a3ce9SEric W. Biederman return result; 30381da177e4SLinus Torvalds } 30391da177e4SLinus Torvalds 30401da177e4SLinus Torvalds /* 30410804ef4bSEric W. Biederman * Find the first task with tgid >= tgid 30420bc58a91SEric W. Biederman * 30431da177e4SLinus Torvalds */ 304419fd4bb2SEric W. Biederman struct tgid_iter { 304519fd4bb2SEric W. Biederman unsigned int tgid; 30460804ef4bSEric W. Biederman struct task_struct *task; 304719fd4bb2SEric W. Biederman }; 304819fd4bb2SEric W. Biederman static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter) 304919fd4bb2SEric W. Biederman { 30500804ef4bSEric W. Biederman struct pid *pid; 30511da177e4SLinus Torvalds 305219fd4bb2SEric W. Biederman if (iter.task) 305319fd4bb2SEric W. Biederman put_task_struct(iter.task); 30540804ef4bSEric W. Biederman rcu_read_lock(); 30550804ef4bSEric W. Biederman retry: 305619fd4bb2SEric W. Biederman iter.task = NULL; 305719fd4bb2SEric W. Biederman pid = find_ge_pid(iter.tgid, ns); 30580804ef4bSEric W. Biederman if (pid) { 305919fd4bb2SEric W. Biederman iter.tgid = pid_nr_ns(pid, ns); 306019fd4bb2SEric W. Biederman iter.task = pid_task(pid, PIDTYPE_PID); 30610804ef4bSEric W. Biederman /* What we to know is if the pid we have find is the 30620804ef4bSEric W. Biederman * pid of a thread_group_leader. Testing for task 30630804ef4bSEric W. Biederman * being a thread_group_leader is the obvious thing 30640804ef4bSEric W. Biederman * todo but there is a window when it fails, due to 30650804ef4bSEric W. Biederman * the pid transfer logic in de_thread. 30660804ef4bSEric W. Biederman * 30670804ef4bSEric W. Biederman * So we perform the straight forward test of seeing 30680804ef4bSEric W. Biederman * if the pid we have found is the pid of a thread 30690804ef4bSEric W. Biederman * group leader, and don't worry if the task we have 30700804ef4bSEric W. Biederman * found doesn't happen to be a thread group leader. 30710804ef4bSEric W. Biederman * As we don't care in the case of readdir. 30720bc58a91SEric W. Biederman */ 307319fd4bb2SEric W. Biederman if (!iter.task || !has_group_leader_pid(iter.task)) { 307419fd4bb2SEric W. Biederman iter.tgid += 1; 30750804ef4bSEric W. Biederman goto retry; 307619fd4bb2SEric W. Biederman } 307719fd4bb2SEric W. Biederman get_task_struct(iter.task); 30781da177e4SLinus Torvalds } 3079454cc105SEric W. Biederman rcu_read_unlock(); 308019fd4bb2SEric W. Biederman return iter; 30811da177e4SLinus Torvalds } 30821da177e4SLinus Torvalds 30837bcd6b0eSEric W. Biederman #define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff)) 30841da177e4SLinus Torvalds 308561a28784SEric W. Biederman static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir, 308619fd4bb2SEric W. Biederman struct tgid_iter iter) 308761a28784SEric W. Biederman { 308861a28784SEric W. Biederman char name[PROC_NUMBUF]; 308919fd4bb2SEric W. Biederman int len = snprintf(name, sizeof(name), "%d", iter.tgid); 309061a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, name, len, 309119fd4bb2SEric W. Biederman proc_pid_instantiate, iter.task, NULL); 309261a28784SEric W. Biederman } 309361a28784SEric W. Biederman 30941da177e4SLinus Torvalds /* for the /proc/ directory itself, after non-process stuff has been done */ 30951da177e4SLinus Torvalds int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir) 30961da177e4SLinus Torvalds { 30971da177e4SLinus Torvalds unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY; 30982fddfeefSJosef "Jeff" Sipek struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode); 309919fd4bb2SEric W. Biederman struct tgid_iter iter; 3100b488893aSPavel Emelyanov struct pid_namespace *ns; 31011da177e4SLinus Torvalds 310261a28784SEric W. Biederman if (!reaper) 310361a28784SEric W. Biederman goto out_no_task; 310461a28784SEric W. Biederman 31057bcd6b0eSEric W. Biederman for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) { 3106c5141e6dSEric Dumazet const struct pid_entry *p = &proc_base_stuff[nr]; 310761a28784SEric W. Biederman if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0) 3108801199ceSEric W. Biederman goto out; 31091da177e4SLinus Torvalds } 31101da177e4SLinus Torvalds 3111b488893aSPavel Emelyanov ns = filp->f_dentry->d_sb->s_fs_info; 311219fd4bb2SEric W. Biederman iter.task = NULL; 311319fd4bb2SEric W. Biederman iter.tgid = filp->f_pos - TGID_OFFSET; 311419fd4bb2SEric W. Biederman for (iter = next_tgid(ns, iter); 311519fd4bb2SEric W. Biederman iter.task; 311619fd4bb2SEric W. Biederman iter.tgid += 1, iter = next_tgid(ns, iter)) { 311719fd4bb2SEric W. Biederman filp->f_pos = iter.tgid + TGID_OFFSET; 311819fd4bb2SEric W. Biederman if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) { 311919fd4bb2SEric W. Biederman put_task_struct(iter.task); 31200804ef4bSEric W. Biederman goto out; 31211da177e4SLinus Torvalds } 31221da177e4SLinus Torvalds } 31230804ef4bSEric W. Biederman filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET; 31240804ef4bSEric W. Biederman out: 312561a28784SEric W. Biederman put_task_struct(reaper); 312661a28784SEric W. Biederman out_no_task: 31271da177e4SLinus Torvalds return 0; 31281da177e4SLinus Torvalds } 31291da177e4SLinus Torvalds 31300bc58a91SEric W. Biederman /* 313128a6d671SEric W. Biederman * Tasks 313228a6d671SEric W. Biederman */ 3133c5141e6dSEric Dumazet static const struct pid_entry tid_base_stuff[] = { 3134631f9c18SAlexey Dobriyan DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations), 31353835541dSJerome Marchand DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations), 3136631f9c18SAlexey Dobriyan REG("environ", S_IRUSR, proc_environ_operations), 3137631f9c18SAlexey Dobriyan INF("auxv", S_IRUSR, proc_pid_auxv), 3138631f9c18SAlexey Dobriyan ONE("status", S_IRUGO, proc_pid_status), 3139631f9c18SAlexey Dobriyan ONE("personality", S_IRUSR, proc_pid_personality), 31403036e7b4SJiri Olsa INF("limits", S_IRUGO, proc_pid_limits), 314143ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 3142631f9c18SAlexey Dobriyan REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations), 314343ae34cbSIngo Molnar #endif 31444614a696Sjohn stultz REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations), 3145ebcb6734SRoland McGrath #ifdef CONFIG_HAVE_ARCH_TRACEHOOK 3146631f9c18SAlexey Dobriyan INF("syscall", S_IRUSR, proc_pid_syscall), 3147ebcb6734SRoland McGrath #endif 3148631f9c18SAlexey Dobriyan INF("cmdline", S_IRUGO, proc_pid_cmdline), 3149631f9c18SAlexey Dobriyan ONE("stat", S_IRUGO, proc_tid_stat), 3150631f9c18SAlexey Dobriyan ONE("statm", S_IRUGO, proc_pid_statm), 3151631f9c18SAlexey Dobriyan REG("maps", S_IRUGO, proc_maps_operations), 315228a6d671SEric W. Biederman #ifdef CONFIG_NUMA 3153631f9c18SAlexey Dobriyan REG("numa_maps", S_IRUGO, proc_numa_maps_operations), 315428a6d671SEric W. Biederman #endif 3155631f9c18SAlexey Dobriyan REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations), 3156631f9c18SAlexey Dobriyan LNK("cwd", proc_cwd_link), 3157631f9c18SAlexey Dobriyan LNK("root", proc_root_link), 3158631f9c18SAlexey Dobriyan LNK("exe", proc_exe_link), 3159631f9c18SAlexey Dobriyan REG("mounts", S_IRUGO, proc_mounts_operations), 3160631f9c18SAlexey Dobriyan REG("mountinfo", S_IRUGO, proc_mountinfo_operations), 31611e883281SMatt Mackall #ifdef CONFIG_PROC_PAGE_MONITOR 3162631f9c18SAlexey Dobriyan REG("clear_refs", S_IWUSR, proc_clear_refs_operations), 3163631f9c18SAlexey Dobriyan REG("smaps", S_IRUGO, proc_smaps_operations), 3164631f9c18SAlexey Dobriyan REG("pagemap", S_IRUSR, proc_pagemap_operations), 316528a6d671SEric W. Biederman #endif 316628a6d671SEric W. Biederman #ifdef CONFIG_SECURITY 3167631f9c18SAlexey Dobriyan DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations), 316828a6d671SEric W. Biederman #endif 316928a6d671SEric W. Biederman #ifdef CONFIG_KALLSYMS 3170631f9c18SAlexey Dobriyan INF("wchan", S_IRUGO, proc_pid_wchan), 317128a6d671SEric W. Biederman #endif 31722ec220e2SKen Chen #ifdef CONFIG_STACKTRACE 31732ec220e2SKen Chen ONE("stack", S_IRUSR, proc_pid_stack), 317428a6d671SEric W. Biederman #endif 317528a6d671SEric W. Biederman #ifdef CONFIG_SCHEDSTATS 3176631f9c18SAlexey Dobriyan INF("schedstat", S_IRUGO, proc_pid_schedstat), 317728a6d671SEric W. Biederman #endif 31789745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP 3179631f9c18SAlexey Dobriyan REG("latency", S_IRUGO, proc_lstats_operations), 31809745512cSArjan van de Ven #endif 31818793d854SPaul Menage #ifdef CONFIG_PROC_PID_CPUSET 3182631f9c18SAlexey Dobriyan REG("cpuset", S_IRUGO, proc_cpuset_operations), 318328a6d671SEric W. Biederman #endif 3184a424316cSPaul Menage #ifdef CONFIG_CGROUPS 3185631f9c18SAlexey Dobriyan REG("cgroup", S_IRUGO, proc_cgroup_operations), 3186a424316cSPaul Menage #endif 3187631f9c18SAlexey Dobriyan INF("oom_score", S_IRUGO, proc_oom_score), 3188631f9c18SAlexey Dobriyan REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations), 3189a63d83f4SDavid Rientjes REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations), 319028a6d671SEric W. Biederman #ifdef CONFIG_AUDITSYSCALL 3191631f9c18SAlexey Dobriyan REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations), 3192631f9c18SAlexey Dobriyan REG("sessionid", S_IRUSR, proc_sessionid_operations), 319328a6d671SEric W. Biederman #endif 3194f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION 3195631f9c18SAlexey Dobriyan REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), 3196f4f154fdSAkinobu Mita #endif 3197297c5d92SAndrea Righi #ifdef CONFIG_TASK_IO_ACCOUNTING 3198631f9c18SAlexey Dobriyan INF("io", S_IRUGO, proc_tid_io_accounting), 3199297c5d92SAndrea Righi #endif 320028a6d671SEric W. Biederman }; 320128a6d671SEric W. Biederman 320228a6d671SEric W. Biederman static int proc_tid_base_readdir(struct file * filp, 320328a6d671SEric W. Biederman void * dirent, filldir_t filldir) 320428a6d671SEric W. Biederman { 320528a6d671SEric W. Biederman return proc_pident_readdir(filp,dirent,filldir, 320628a6d671SEric W. Biederman tid_base_stuff,ARRAY_SIZE(tid_base_stuff)); 320728a6d671SEric W. Biederman } 320828a6d671SEric W. Biederman 320928a6d671SEric W. Biederman static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){ 32107bcd6b0eSEric W. Biederman return proc_pident_lookup(dir, dentry, 32117bcd6b0eSEric W. Biederman tid_base_stuff, ARRAY_SIZE(tid_base_stuff)); 321228a6d671SEric W. Biederman } 321328a6d671SEric W. Biederman 321400977a59SArjan van de Ven static const struct file_operations proc_tid_base_operations = { 321528a6d671SEric W. Biederman .read = generic_read_dir, 321628a6d671SEric W. Biederman .readdir = proc_tid_base_readdir, 32176038f373SArnd Bergmann .llseek = default_llseek, 321828a6d671SEric W. Biederman }; 321928a6d671SEric W. Biederman 3220c5ef1c42SArjan van de Ven static const struct inode_operations proc_tid_base_inode_operations = { 322128a6d671SEric W. Biederman .lookup = proc_tid_base_lookup, 322228a6d671SEric W. Biederman .getattr = pid_getattr, 322328a6d671SEric W. Biederman .setattr = proc_setattr, 322428a6d671SEric W. Biederman }; 322528a6d671SEric W. Biederman 3226444ceed8SEric W. Biederman static struct dentry *proc_task_instantiate(struct inode *dir, 3227c5141e6dSEric Dumazet struct dentry *dentry, struct task_struct *task, const void *ptr) 3228444ceed8SEric W. Biederman { 3229444ceed8SEric W. Biederman struct dentry *error = ERR_PTR(-ENOENT); 3230444ceed8SEric W. Biederman struct inode *inode; 323161a28784SEric W. Biederman inode = proc_pid_make_inode(dir->i_sb, task); 3232444ceed8SEric W. Biederman 3233444ceed8SEric W. Biederman if (!inode) 3234444ceed8SEric W. Biederman goto out; 3235444ceed8SEric W. Biederman inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO; 3236444ceed8SEric W. Biederman inode->i_op = &proc_tid_base_inode_operations; 3237444ceed8SEric W. Biederman inode->i_fop = &proc_tid_base_operations; 3238444ceed8SEric W. Biederman inode->i_flags|=S_IMMUTABLE; 3239aed54175SVegard Nossum 3240aed54175SVegard Nossum inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff, 3241aed54175SVegard Nossum ARRAY_SIZE(tid_base_stuff)); 3242444ceed8SEric W. Biederman 3243fb045adbSNick Piggin d_set_d_op(dentry, &pid_dentry_operations); 3244444ceed8SEric W. Biederman 3245444ceed8SEric W. Biederman d_add(dentry, inode); 3246444ceed8SEric W. Biederman /* Close the race of the process dying before we return the dentry */ 3247444ceed8SEric W. Biederman if (pid_revalidate(dentry, NULL)) 3248444ceed8SEric W. Biederman error = NULL; 3249444ceed8SEric W. Biederman out: 3250444ceed8SEric W. Biederman return error; 3251444ceed8SEric W. Biederman } 3252444ceed8SEric W. Biederman 325328a6d671SEric W. Biederman static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd) 325428a6d671SEric W. Biederman { 325528a6d671SEric W. Biederman struct dentry *result = ERR_PTR(-ENOENT); 325628a6d671SEric W. Biederman struct task_struct *task; 325728a6d671SEric W. Biederman struct task_struct *leader = get_proc_task(dir); 325828a6d671SEric W. Biederman unsigned tid; 3259b488893aSPavel Emelyanov struct pid_namespace *ns; 326028a6d671SEric W. Biederman 326128a6d671SEric W. Biederman if (!leader) 326228a6d671SEric W. Biederman goto out_no_task; 326328a6d671SEric W. Biederman 326428a6d671SEric W. Biederman tid = name_to_int(dentry); 326528a6d671SEric W. Biederman if (tid == ~0U) 326628a6d671SEric W. Biederman goto out; 326728a6d671SEric W. Biederman 3268b488893aSPavel Emelyanov ns = dentry->d_sb->s_fs_info; 326928a6d671SEric W. Biederman rcu_read_lock(); 3270b488893aSPavel Emelyanov task = find_task_by_pid_ns(tid, ns); 327128a6d671SEric W. Biederman if (task) 327228a6d671SEric W. Biederman get_task_struct(task); 327328a6d671SEric W. Biederman rcu_read_unlock(); 327428a6d671SEric W. Biederman if (!task) 327528a6d671SEric W. Biederman goto out; 3276bac0abd6SPavel Emelyanov if (!same_thread_group(leader, task)) 327728a6d671SEric W. Biederman goto out_drop_task; 327828a6d671SEric W. Biederman 3279444ceed8SEric W. Biederman result = proc_task_instantiate(dir, dentry, task, NULL); 328028a6d671SEric W. Biederman out_drop_task: 328128a6d671SEric W. Biederman put_task_struct(task); 328228a6d671SEric W. Biederman out: 328328a6d671SEric W. Biederman put_task_struct(leader); 328428a6d671SEric W. Biederman out_no_task: 328528a6d671SEric W. Biederman return result; 328628a6d671SEric W. Biederman } 328728a6d671SEric W. Biederman 328828a6d671SEric W. Biederman /* 32890bc58a91SEric W. Biederman * Find the first tid of a thread group to return to user space. 32900bc58a91SEric W. Biederman * 32910bc58a91SEric W. Biederman * Usually this is just the thread group leader, but if the users 32920bc58a91SEric W. Biederman * buffer was too small or there was a seek into the middle of the 32930bc58a91SEric W. Biederman * directory we have more work todo. 32940bc58a91SEric W. Biederman * 32950bc58a91SEric W. Biederman * In the case of a short read we start with find_task_by_pid. 32960bc58a91SEric W. Biederman * 32970bc58a91SEric W. Biederman * In the case of a seek we start with the leader and walk nr 32980bc58a91SEric W. Biederman * threads past it. 32990bc58a91SEric W. Biederman */ 3300cc288738SEric W. Biederman static struct task_struct *first_tid(struct task_struct *leader, 3301b488893aSPavel Emelyanov int tid, int nr, struct pid_namespace *ns) 33020bc58a91SEric W. Biederman { 3303a872ff0cSOleg Nesterov struct task_struct *pos; 33040bc58a91SEric W. Biederman 3305cc288738SEric W. Biederman rcu_read_lock(); 33060bc58a91SEric W. Biederman /* Attempt to start with the pid of a thread */ 33070bc58a91SEric W. Biederman if (tid && (nr > 0)) { 3308b488893aSPavel Emelyanov pos = find_task_by_pid_ns(tid, ns); 3309a872ff0cSOleg Nesterov if (pos && (pos->group_leader == leader)) 3310a872ff0cSOleg Nesterov goto found; 33110bc58a91SEric W. Biederman } 33120bc58a91SEric W. Biederman 33130bc58a91SEric W. Biederman /* If nr exceeds the number of threads there is nothing todo */ 33140bc58a91SEric W. Biederman pos = NULL; 3315a872ff0cSOleg Nesterov if (nr && nr >= get_nr_threads(leader)) 3316a872ff0cSOleg Nesterov goto out; 3317a872ff0cSOleg Nesterov 3318a872ff0cSOleg Nesterov /* If we haven't found our starting place yet start 3319a872ff0cSOleg Nesterov * with the leader and walk nr threads forward. 3320a872ff0cSOleg Nesterov */ 3321a872ff0cSOleg Nesterov for (pos = leader; nr > 0; --nr) { 3322a872ff0cSOleg Nesterov pos = next_thread(pos); 3323a872ff0cSOleg Nesterov if (pos == leader) { 3324a872ff0cSOleg Nesterov pos = NULL; 3325a872ff0cSOleg Nesterov goto out; 3326a872ff0cSOleg Nesterov } 3327a872ff0cSOleg Nesterov } 3328a872ff0cSOleg Nesterov found: 3329a872ff0cSOleg Nesterov get_task_struct(pos); 3330a872ff0cSOleg Nesterov out: 3331cc288738SEric W. Biederman rcu_read_unlock(); 33320bc58a91SEric W. Biederman return pos; 33330bc58a91SEric W. Biederman } 33340bc58a91SEric W. Biederman 33350bc58a91SEric W. Biederman /* 33360bc58a91SEric W. Biederman * Find the next thread in the thread list. 33370bc58a91SEric W. Biederman * Return NULL if there is an error or no next thread. 33380bc58a91SEric W. Biederman * 33390bc58a91SEric W. Biederman * The reference to the input task_struct is released. 33400bc58a91SEric W. Biederman */ 33410bc58a91SEric W. Biederman static struct task_struct *next_tid(struct task_struct *start) 33420bc58a91SEric W. Biederman { 3343c1df7fb8SOleg Nesterov struct task_struct *pos = NULL; 3344cc288738SEric W. Biederman rcu_read_lock(); 3345c1df7fb8SOleg Nesterov if (pid_alive(start)) { 33460bc58a91SEric W. Biederman pos = next_thread(start); 3347c1df7fb8SOleg Nesterov if (thread_group_leader(pos)) 33480bc58a91SEric W. Biederman pos = NULL; 3349c1df7fb8SOleg Nesterov else 3350c1df7fb8SOleg Nesterov get_task_struct(pos); 3351c1df7fb8SOleg Nesterov } 3352cc288738SEric W. Biederman rcu_read_unlock(); 33530bc58a91SEric W. Biederman put_task_struct(start); 33540bc58a91SEric W. Biederman return pos; 33550bc58a91SEric W. Biederman } 33560bc58a91SEric W. Biederman 335761a28784SEric W. Biederman static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir, 335861a28784SEric W. Biederman struct task_struct *task, int tid) 335961a28784SEric W. Biederman { 336061a28784SEric W. Biederman char name[PROC_NUMBUF]; 336161a28784SEric W. Biederman int len = snprintf(name, sizeof(name), "%d", tid); 336261a28784SEric W. Biederman return proc_fill_cache(filp, dirent, filldir, name, len, 336361a28784SEric W. Biederman proc_task_instantiate, task, NULL); 336461a28784SEric W. Biederman } 336561a28784SEric W. Biederman 33661da177e4SLinus Torvalds /* for the /proc/TGID/task/ directories */ 33671da177e4SLinus Torvalds static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir) 33681da177e4SLinus Torvalds { 33692fddfeefSJosef "Jeff" Sipek struct dentry *dentry = filp->f_path.dentry; 33701da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 33717d895244SGuillaume Chazarain struct task_struct *leader = NULL; 33720bc58a91SEric W. Biederman struct task_struct *task; 33731da177e4SLinus Torvalds int retval = -ENOENT; 33741da177e4SLinus Torvalds ino_t ino; 33750bc58a91SEric W. Biederman int tid; 3376b488893aSPavel Emelyanov struct pid_namespace *ns; 33771da177e4SLinus Torvalds 33787d895244SGuillaume Chazarain task = get_proc_task(inode); 33797d895244SGuillaume Chazarain if (!task) 33807d895244SGuillaume Chazarain goto out_no_task; 33817d895244SGuillaume Chazarain rcu_read_lock(); 33827d895244SGuillaume Chazarain if (pid_alive(task)) { 33837d895244SGuillaume Chazarain leader = task->group_leader; 33847d895244SGuillaume Chazarain get_task_struct(leader); 33857d895244SGuillaume Chazarain } 33867d895244SGuillaume Chazarain rcu_read_unlock(); 33877d895244SGuillaume Chazarain put_task_struct(task); 338899f89551SEric W. Biederman if (!leader) 338999f89551SEric W. Biederman goto out_no_task; 33901da177e4SLinus Torvalds retval = 0; 33911da177e4SLinus Torvalds 3392ee568b25SLinus Torvalds switch ((unsigned long)filp->f_pos) { 33931da177e4SLinus Torvalds case 0: 33941da177e4SLinus Torvalds ino = inode->i_ino; 3395ee6f779bSZhang Le if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0) 33961da177e4SLinus Torvalds goto out; 3397ee6f779bSZhang Le filp->f_pos++; 33981da177e4SLinus Torvalds /* fall through */ 33991da177e4SLinus Torvalds case 1: 34001da177e4SLinus Torvalds ino = parent_ino(dentry); 3401ee6f779bSZhang Le if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0) 34021da177e4SLinus Torvalds goto out; 3403ee6f779bSZhang Le filp->f_pos++; 34041da177e4SLinus Torvalds /* fall through */ 34051da177e4SLinus Torvalds } 34061da177e4SLinus Torvalds 34070bc58a91SEric W. Biederman /* f_version caches the tgid value that the last readdir call couldn't 34080bc58a91SEric W. Biederman * return. lseek aka telldir automagically resets f_version to 0. 34090bc58a91SEric W. Biederman */ 3410b488893aSPavel Emelyanov ns = filp->f_dentry->d_sb->s_fs_info; 34112b47c361SMathieu Desnoyers tid = (int)filp->f_version; 34120bc58a91SEric W. Biederman filp->f_version = 0; 3413ee6f779bSZhang Le for (task = first_tid(leader, tid, filp->f_pos - 2, ns); 34140bc58a91SEric W. Biederman task; 3415ee6f779bSZhang Le task = next_tid(task), filp->f_pos++) { 3416b488893aSPavel Emelyanov tid = task_pid_nr_ns(task, ns); 341761a28784SEric W. Biederman if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) { 34180bc58a91SEric W. Biederman /* returning this tgid failed, save it as the first 34190bc58a91SEric W. Biederman * pid for the next readir call */ 34202b47c361SMathieu Desnoyers filp->f_version = (u64)tid; 34210bc58a91SEric W. Biederman put_task_struct(task); 34221da177e4SLinus Torvalds break; 34230bc58a91SEric W. Biederman } 34241da177e4SLinus Torvalds } 34251da177e4SLinus Torvalds out: 342699f89551SEric W. Biederman put_task_struct(leader); 342799f89551SEric W. Biederman out_no_task: 34281da177e4SLinus Torvalds return retval; 34291da177e4SLinus Torvalds } 34306e66b52bSEric W. Biederman 34316e66b52bSEric W. Biederman static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) 34326e66b52bSEric W. Biederman { 34336e66b52bSEric W. Biederman struct inode *inode = dentry->d_inode; 343499f89551SEric W. Biederman struct task_struct *p = get_proc_task(inode); 34356e66b52bSEric W. Biederman generic_fillattr(inode, stat); 34366e66b52bSEric W. Biederman 343799f89551SEric W. Biederman if (p) { 343899f89551SEric W. Biederman stat->nlink += get_nr_threads(p); 343999f89551SEric W. Biederman put_task_struct(p); 34406e66b52bSEric W. Biederman } 34416e66b52bSEric W. Biederman 34426e66b52bSEric W. Biederman return 0; 34436e66b52bSEric W. Biederman } 344428a6d671SEric W. Biederman 3445c5ef1c42SArjan van de Ven static const struct inode_operations proc_task_inode_operations = { 344628a6d671SEric W. Biederman .lookup = proc_task_lookup, 344728a6d671SEric W. Biederman .getattr = proc_task_getattr, 344828a6d671SEric W. Biederman .setattr = proc_setattr, 344928a6d671SEric W. Biederman }; 345028a6d671SEric W. Biederman 345100977a59SArjan van de Ven static const struct file_operations proc_task_operations = { 345228a6d671SEric W. Biederman .read = generic_read_dir, 345328a6d671SEric W. Biederman .readdir = proc_task_readdir, 34546038f373SArnd Bergmann .llseek = default_llseek, 345528a6d671SEric W. Biederman }; 3456