1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0 23f07c014SIngo Molnar #include <linux/sched/signal.h> 3faf60af1SCyrill Gorcunov #include <linux/errno.h> 4faf60af1SCyrill Gorcunov #include <linux/dcache.h> 5faf60af1SCyrill Gorcunov #include <linux/path.h> 6faf60af1SCyrill Gorcunov #include <linux/fdtable.h> 7faf60af1SCyrill Gorcunov #include <linux/namei.h> 8faf60af1SCyrill Gorcunov #include <linux/pid.h> 9faf60af1SCyrill Gorcunov #include <linux/security.h> 10ddd3e077SCyrill Gorcunov #include <linux/file.h> 11ddd3e077SCyrill Gorcunov #include <linux/seq_file.h> 126c8c9031SAndrey Vagin #include <linux/fs.h> 13faf60af1SCyrill Gorcunov 14faf60af1SCyrill Gorcunov #include <linux/proc_fs.h> 15faf60af1SCyrill Gorcunov 1649d063cbSAndrey Vagin #include "../mount.h" 17faf60af1SCyrill Gorcunov #include "internal.h" 18faf60af1SCyrill Gorcunov #include "fd.h" 19faf60af1SCyrill Gorcunov 20ddd3e077SCyrill Gorcunov static int seq_show(struct seq_file *m, void *v) 21faf60af1SCyrill Gorcunov { 22faf60af1SCyrill Gorcunov struct files_struct *files = NULL; 23ddd3e077SCyrill Gorcunov int f_flags = 0, ret = -ENOENT; 24ddd3e077SCyrill Gorcunov struct file *file = NULL; 25ddd3e077SCyrill Gorcunov struct task_struct *task; 26faf60af1SCyrill Gorcunov 27ddd3e077SCyrill Gorcunov task = get_proc_task(m->private); 28ddd3e077SCyrill Gorcunov if (!task) 29ddd3e077SCyrill Gorcunov return -ENOENT; 30ddd3e077SCyrill Gorcunov 31*775e0656SEric W. Biederman task_lock(task); 32*775e0656SEric W. Biederman files = task->files; 33faf60af1SCyrill Gorcunov if (files) { 34771187d6SAlexey Dobriyan unsigned int fd = proc_fd(m->private); 35ddd3e077SCyrill Gorcunov 36faf60af1SCyrill Gorcunov spin_lock(&files->file_lock); 37120ce2b0SEric W. Biederman file = files_lookup_fd_locked(files, fd); 38faf60af1SCyrill Gorcunov if (file) { 39ddd3e077SCyrill Gorcunov struct fdtable *fdt = files_fdtable(files); 40faf60af1SCyrill Gorcunov 41c6f3d811SAl Viro f_flags = file->f_flags; 42faf60af1SCyrill Gorcunov if (close_on_exec(fd, fdt)) 43faf60af1SCyrill Gorcunov f_flags |= O_CLOEXEC; 44faf60af1SCyrill Gorcunov 45ddd3e077SCyrill Gorcunov get_file(file); 46ddd3e077SCyrill Gorcunov ret = 0; 47faf60af1SCyrill Gorcunov } 48faf60af1SCyrill Gorcunov spin_unlock(&files->file_lock); 49faf60af1SCyrill Gorcunov } 50*775e0656SEric W. Biederman task_unlock(task); 51*775e0656SEric W. Biederman put_task_struct(task); 52ddd3e077SCyrill Gorcunov 536c8c9031SAndrey Vagin if (ret) 546c8c9031SAndrey Vagin return ret; 556c8c9031SAndrey Vagin 5649d063cbSAndrey Vagin seq_printf(m, "pos:\t%lli\nflags:\t0%o\nmnt_id:\t%i\n", 5749d063cbSAndrey Vagin (long long)file->f_pos, f_flags, 5849d063cbSAndrey Vagin real_mount(file->f_path.mnt)->mnt_id); 596c8c9031SAndrey Vagin 60*775e0656SEric W. Biederman /* show_fd_locks() never deferences files so a stale value is safe */ 616c8c9031SAndrey Vagin show_fd_locks(m, file, files); 626c8c9031SAndrey Vagin if (seq_has_overflowed(m)) 636c8c9031SAndrey Vagin goto out; 646c8c9031SAndrey Vagin 6555985dd7SCyrill Gorcunov if (file->f_op->show_fdinfo) 66a3816ab0SJoe Perches file->f_op->show_fdinfo(m, file); 67faf60af1SCyrill Gorcunov 686c8c9031SAndrey Vagin out: 696c8c9031SAndrey Vagin fput(file); 706c8c9031SAndrey Vagin return 0; 71ddd3e077SCyrill Gorcunov } 72ddd3e077SCyrill Gorcunov 73ddd3e077SCyrill Gorcunov static int seq_fdinfo_open(struct inode *inode, struct file *file) 74ddd3e077SCyrill Gorcunov { 75ddd3e077SCyrill Gorcunov return single_open(file, seq_show, inode); 76ddd3e077SCyrill Gorcunov } 77ddd3e077SCyrill Gorcunov 78ddd3e077SCyrill Gorcunov static const struct file_operations proc_fdinfo_file_operations = { 79ddd3e077SCyrill Gorcunov .open = seq_fdinfo_open, 80ddd3e077SCyrill Gorcunov .read = seq_read, 81ddd3e077SCyrill Gorcunov .llseek = seq_lseek, 82ddd3e077SCyrill Gorcunov .release = single_release, 83ddd3e077SCyrill Gorcunov }; 84ddd3e077SCyrill Gorcunov 851ae9bd8bSAl Viro static bool tid_fd_mode(struct task_struct *task, unsigned fd, fmode_t *mode) 861ae9bd8bSAl Viro { 871ae9bd8bSAl Viro struct file *file; 881ae9bd8bSAl Viro 891ae9bd8bSAl Viro rcu_read_lock(); 9064eb661fSEric W. Biederman file = task_lookup_fd_rcu(task, fd); 911ae9bd8bSAl Viro if (file) 921ae9bd8bSAl Viro *mode = file->f_mode; 931ae9bd8bSAl Viro rcu_read_unlock(); 941ae9bd8bSAl Viro return !!file; 951ae9bd8bSAl Viro } 961ae9bd8bSAl Viro 9798836386SAl Viro static void tid_fd_update_inode(struct task_struct *task, struct inode *inode, 9898836386SAl Viro fmode_t f_mode) 99faf60af1SCyrill Gorcunov { 10068eb94f1SEric W. Biederman task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid); 101faf60af1SCyrill Gorcunov 102faf60af1SCyrill Gorcunov if (S_ISLNK(inode->i_mode)) { 103faf60af1SCyrill Gorcunov unsigned i_mode = S_IFLNK; 104faf60af1SCyrill Gorcunov if (f_mode & FMODE_READ) 105faf60af1SCyrill Gorcunov i_mode |= S_IRUSR | S_IXUSR; 106faf60af1SCyrill Gorcunov if (f_mode & FMODE_WRITE) 107faf60af1SCyrill Gorcunov i_mode |= S_IWUSR | S_IXUSR; 108faf60af1SCyrill Gorcunov inode->i_mode = i_mode; 109faf60af1SCyrill Gorcunov } 110faf60af1SCyrill Gorcunov security_task_to_inode(task, inode); 11198836386SAl Viro } 11298836386SAl Viro 11398836386SAl Viro static int tid_fd_revalidate(struct dentry *dentry, unsigned int flags) 11498836386SAl Viro { 11598836386SAl Viro struct task_struct *task; 11698836386SAl Viro struct inode *inode; 11798836386SAl Viro unsigned int fd; 11898836386SAl Viro 11998836386SAl Viro if (flags & LOOKUP_RCU) 12098836386SAl Viro return -ECHILD; 12198836386SAl Viro 12298836386SAl Viro inode = d_inode(dentry); 12398836386SAl Viro task = get_proc_task(inode); 12498836386SAl Viro fd = proc_fd(inode); 12598836386SAl Viro 12698836386SAl Viro if (task) { 12798836386SAl Viro fmode_t f_mode; 12898836386SAl Viro if (tid_fd_mode(task, fd, &f_mode)) { 12998836386SAl Viro tid_fd_update_inode(task, inode, f_mode); 130faf60af1SCyrill Gorcunov put_task_struct(task); 131faf60af1SCyrill Gorcunov return 1; 132faf60af1SCyrill Gorcunov } 133faf60af1SCyrill Gorcunov put_task_struct(task); 134faf60af1SCyrill Gorcunov } 135faf60af1SCyrill Gorcunov return 0; 136faf60af1SCyrill Gorcunov } 137faf60af1SCyrill Gorcunov 138faf60af1SCyrill Gorcunov static const struct dentry_operations tid_fd_dentry_operations = { 139faf60af1SCyrill Gorcunov .d_revalidate = tid_fd_revalidate, 140faf60af1SCyrill Gorcunov .d_delete = pid_delete_dentry, 141faf60af1SCyrill Gorcunov }; 142faf60af1SCyrill Gorcunov 143faf60af1SCyrill Gorcunov static int proc_fd_link(struct dentry *dentry, struct path *path) 144faf60af1SCyrill Gorcunov { 145ddd3e077SCyrill Gorcunov struct task_struct *task; 146ddd3e077SCyrill Gorcunov int ret = -ENOENT; 147ddd3e077SCyrill Gorcunov 1482b0143b5SDavid Howells task = get_proc_task(d_inode(dentry)); 149ddd3e077SCyrill Gorcunov if (task) { 150771187d6SAlexey Dobriyan unsigned int fd = proc_fd(d_inode(dentry)); 151ddd3e077SCyrill Gorcunov struct file *fd_file; 152ddd3e077SCyrill Gorcunov 153439be326SEric W. Biederman fd_file = fget_task(task, fd); 154ddd3e077SCyrill Gorcunov if (fd_file) { 155ddd3e077SCyrill Gorcunov *path = fd_file->f_path; 156ddd3e077SCyrill Gorcunov path_get(&fd_file->f_path); 157ddd3e077SCyrill Gorcunov ret = 0; 158439be326SEric W. Biederman fput(fd_file); 159ddd3e077SCyrill Gorcunov } 160439be326SEric W. Biederman put_task_struct(task); 161ddd3e077SCyrill Gorcunov } 162ddd3e077SCyrill Gorcunov 163ddd3e077SCyrill Gorcunov return ret; 164faf60af1SCyrill Gorcunov } 165faf60af1SCyrill Gorcunov 16698836386SAl Viro struct fd_data { 16798836386SAl Viro fmode_t mode; 16898836386SAl Viro unsigned fd; 16998836386SAl Viro }; 17098836386SAl Viro 1710168b9e3SAl Viro static struct dentry *proc_fd_instantiate(struct dentry *dentry, 172faf60af1SCyrill Gorcunov struct task_struct *task, const void *ptr) 173faf60af1SCyrill Gorcunov { 17498836386SAl Viro const struct fd_data *data = ptr; 175faf60af1SCyrill Gorcunov struct proc_inode *ei; 176faf60af1SCyrill Gorcunov struct inode *inode; 177faf60af1SCyrill Gorcunov 1780168b9e3SAl Viro inode = proc_pid_make_inode(dentry->d_sb, task, S_IFLNK); 179faf60af1SCyrill Gorcunov if (!inode) 1800168b9e3SAl Viro return ERR_PTR(-ENOENT); 181faf60af1SCyrill Gorcunov 182faf60af1SCyrill Gorcunov ei = PROC_I(inode); 18398836386SAl Viro ei->fd = data->fd; 184faf60af1SCyrill Gorcunov 185faf60af1SCyrill Gorcunov inode->i_op = &proc_pid_link_inode_operations; 186faf60af1SCyrill Gorcunov inode->i_size = 64; 187faf60af1SCyrill Gorcunov 188faf60af1SCyrill Gorcunov ei->op.proc_get_link = proc_fd_link; 18998836386SAl Viro tid_fd_update_inode(task, inode, data->mode); 190faf60af1SCyrill Gorcunov 191faf60af1SCyrill Gorcunov d_set_d_op(dentry, &tid_fd_dentry_operations); 1920168b9e3SAl Viro return d_splice_alias(inode, dentry); 193faf60af1SCyrill Gorcunov } 194faf60af1SCyrill Gorcunov 195faf60af1SCyrill Gorcunov static struct dentry *proc_lookupfd_common(struct inode *dir, 196faf60af1SCyrill Gorcunov struct dentry *dentry, 197faf60af1SCyrill Gorcunov instantiate_t instantiate) 198faf60af1SCyrill Gorcunov { 199faf60af1SCyrill Gorcunov struct task_struct *task = get_proc_task(dir); 20098836386SAl Viro struct fd_data data = {.fd = name_to_int(&dentry->d_name)}; 2010168b9e3SAl Viro struct dentry *result = ERR_PTR(-ENOENT); 202faf60af1SCyrill Gorcunov 203faf60af1SCyrill Gorcunov if (!task) 204faf60af1SCyrill Gorcunov goto out_no_task; 20598836386SAl Viro if (data.fd == ~0U) 206faf60af1SCyrill Gorcunov goto out; 20798836386SAl Viro if (!tid_fd_mode(task, data.fd, &data.mode)) 2081ae9bd8bSAl Viro goto out; 209faf60af1SCyrill Gorcunov 2100168b9e3SAl Viro result = instantiate(dentry, task, &data); 211faf60af1SCyrill Gorcunov out: 212faf60af1SCyrill Gorcunov put_task_struct(task); 213faf60af1SCyrill Gorcunov out_no_task: 2140168b9e3SAl Viro return result; 215faf60af1SCyrill Gorcunov } 216faf60af1SCyrill Gorcunov 217f0c3b509SAl Viro static int proc_readfd_common(struct file *file, struct dir_context *ctx, 218f0c3b509SAl Viro instantiate_t instantiate) 219faf60af1SCyrill Gorcunov { 220f0c3b509SAl Viro struct task_struct *p = get_proc_task(file_inode(file)); 221f0c3b509SAl Viro unsigned int fd; 222faf60af1SCyrill Gorcunov 223faf60af1SCyrill Gorcunov if (!p) 224f0c3b509SAl Viro return -ENOENT; 225faf60af1SCyrill Gorcunov 226f0c3b509SAl Viro if (!dir_emit_dots(file, ctx)) 227faf60af1SCyrill Gorcunov goto out; 228f0c3b509SAl Viro 229faf60af1SCyrill Gorcunov rcu_read_lock(); 2305b17b618SEric W. Biederman for (fd = ctx->pos - 2;; fd++) { 23198836386SAl Viro struct file *f; 23298836386SAl Viro struct fd_data data; 233e3912ac3SAlexey Dobriyan char name[10 + 1]; 234a4ef3895SAlexey Dobriyan unsigned int len; 235faf60af1SCyrill Gorcunov 2365b17b618SEric W. Biederman f = task_lookup_next_fd_rcu(p, &fd); 2375b17b618SEric W. Biederman ctx->pos = fd + 2LL; 23898836386SAl Viro if (!f) 2395b17b618SEric W. Biederman break; 24098836386SAl Viro data.mode = f->f_mode; 241faf60af1SCyrill Gorcunov rcu_read_unlock(); 24298836386SAl Viro data.fd = fd; 243faf60af1SCyrill Gorcunov 244771187d6SAlexey Dobriyan len = snprintf(name, sizeof(name), "%u", fd); 245f0c3b509SAl Viro if (!proc_fill_cache(file, ctx, 246faf60af1SCyrill Gorcunov name, len, instantiate, p, 24798836386SAl Viro &data)) 2485b17b618SEric W. Biederman goto out; 2493cc4a84eSEric Dumazet cond_resched(); 250faf60af1SCyrill Gorcunov rcu_read_lock(); 251faf60af1SCyrill Gorcunov } 252faf60af1SCyrill Gorcunov rcu_read_unlock(); 253faf60af1SCyrill Gorcunov out: 254faf60af1SCyrill Gorcunov put_task_struct(p); 255f0c3b509SAl Viro return 0; 256faf60af1SCyrill Gorcunov } 257faf60af1SCyrill Gorcunov 258f0c3b509SAl Viro static int proc_readfd(struct file *file, struct dir_context *ctx) 259faf60af1SCyrill Gorcunov { 260f0c3b509SAl Viro return proc_readfd_common(file, ctx, proc_fd_instantiate); 261faf60af1SCyrill Gorcunov } 262faf60af1SCyrill Gorcunov 263faf60af1SCyrill Gorcunov const struct file_operations proc_fd_operations = { 264faf60af1SCyrill Gorcunov .read = generic_read_dir, 265f50752eaSAl Viro .iterate_shared = proc_readfd, 266f50752eaSAl Viro .llseek = generic_file_llseek, 267faf60af1SCyrill Gorcunov }; 268faf60af1SCyrill Gorcunov 269faf60af1SCyrill Gorcunov static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry, 270faf60af1SCyrill Gorcunov unsigned int flags) 271faf60af1SCyrill Gorcunov { 272faf60af1SCyrill Gorcunov return proc_lookupfd_common(dir, dentry, proc_fd_instantiate); 273faf60af1SCyrill Gorcunov } 274faf60af1SCyrill Gorcunov 275faf60af1SCyrill Gorcunov /* 276faf60af1SCyrill Gorcunov * /proc/pid/fd needs a special permission handler so that a process can still 277faf60af1SCyrill Gorcunov * access /proc/self/fd after it has executed a setuid(). 278faf60af1SCyrill Gorcunov */ 279faf60af1SCyrill Gorcunov int proc_fd_permission(struct inode *inode, int mask) 280faf60af1SCyrill Gorcunov { 28154708d28SOleg Nesterov struct task_struct *p; 28254708d28SOleg Nesterov int rv; 28354708d28SOleg Nesterov 28454708d28SOleg Nesterov rv = generic_permission(inode, mask); 285faf60af1SCyrill Gorcunov if (rv == 0) 28654708d28SOleg Nesterov return rv; 28754708d28SOleg Nesterov 28854708d28SOleg Nesterov rcu_read_lock(); 28954708d28SOleg Nesterov p = pid_task(proc_pid(inode), PIDTYPE_PID); 29054708d28SOleg Nesterov if (p && same_thread_group(p, current)) 291faf60af1SCyrill Gorcunov rv = 0; 29254708d28SOleg Nesterov rcu_read_unlock(); 29354708d28SOleg Nesterov 294faf60af1SCyrill Gorcunov return rv; 295faf60af1SCyrill Gorcunov } 296faf60af1SCyrill Gorcunov 297faf60af1SCyrill Gorcunov const struct inode_operations proc_fd_inode_operations = { 298faf60af1SCyrill Gorcunov .lookup = proc_lookupfd, 299faf60af1SCyrill Gorcunov .permission = proc_fd_permission, 300faf60af1SCyrill Gorcunov .setattr = proc_setattr, 301faf60af1SCyrill Gorcunov }; 302faf60af1SCyrill Gorcunov 3030168b9e3SAl Viro static struct dentry *proc_fdinfo_instantiate(struct dentry *dentry, 304faf60af1SCyrill Gorcunov struct task_struct *task, const void *ptr) 305faf60af1SCyrill Gorcunov { 30698836386SAl Viro const struct fd_data *data = ptr; 307faf60af1SCyrill Gorcunov struct proc_inode *ei; 308faf60af1SCyrill Gorcunov struct inode *inode; 309faf60af1SCyrill Gorcunov 3100168b9e3SAl Viro inode = proc_pid_make_inode(dentry->d_sb, task, S_IFREG | S_IRUSR); 311faf60af1SCyrill Gorcunov if (!inode) 3120168b9e3SAl Viro return ERR_PTR(-ENOENT); 313faf60af1SCyrill Gorcunov 314faf60af1SCyrill Gorcunov ei = PROC_I(inode); 31598836386SAl Viro ei->fd = data->fd; 316faf60af1SCyrill Gorcunov 317faf60af1SCyrill Gorcunov inode->i_fop = &proc_fdinfo_file_operations; 31898836386SAl Viro tid_fd_update_inode(task, inode, 0); 319faf60af1SCyrill Gorcunov 320faf60af1SCyrill Gorcunov d_set_d_op(dentry, &tid_fd_dentry_operations); 3210168b9e3SAl Viro return d_splice_alias(inode, dentry); 322faf60af1SCyrill Gorcunov } 323faf60af1SCyrill Gorcunov 324faf60af1SCyrill Gorcunov static struct dentry * 325faf60af1SCyrill Gorcunov proc_lookupfdinfo(struct inode *dir, struct dentry *dentry, unsigned int flags) 326faf60af1SCyrill Gorcunov { 327faf60af1SCyrill Gorcunov return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate); 328faf60af1SCyrill Gorcunov } 329faf60af1SCyrill Gorcunov 330f0c3b509SAl Viro static int proc_readfdinfo(struct file *file, struct dir_context *ctx) 331faf60af1SCyrill Gorcunov { 332f0c3b509SAl Viro return proc_readfd_common(file, ctx, 333faf60af1SCyrill Gorcunov proc_fdinfo_instantiate); 334faf60af1SCyrill Gorcunov } 335faf60af1SCyrill Gorcunov 336faf60af1SCyrill Gorcunov const struct inode_operations proc_fdinfo_inode_operations = { 337faf60af1SCyrill Gorcunov .lookup = proc_lookupfdinfo, 338faf60af1SCyrill Gorcunov .setattr = proc_setattr, 339faf60af1SCyrill Gorcunov }; 340faf60af1SCyrill Gorcunov 341faf60af1SCyrill Gorcunov const struct file_operations proc_fdinfo_operations = { 342faf60af1SCyrill Gorcunov .read = generic_read_dir, 343f50752eaSAl Viro .iterate_shared = proc_readfdinfo, 344f50752eaSAl Viro .llseek = generic_file_llseek, 345faf60af1SCyrill Gorcunov }; 346