Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/fs/proc/inode.c |
| 4 | * |
| 5 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 6 | */ |
| 7 | |
Alexey Dobriyan | efb1a57 | 2018-02-06 15:37:24 -0800 | [diff] [blame] | 8 | #include <linux/cache.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/time.h> |
| 10 | #include <linux/proc_fs.h> |
| 11 | #include <linux/kernel.h> |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 12 | #include <linux/pid_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/mm.h> |
| 14 | #include <linux/string.h> |
| 15 | #include <linux/stat.h> |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 16 | #include <linux/completion.h> |
Alexey Dobriyan | dd23aae | 2007-09-11 15:23:55 -0700 | [diff] [blame] | 17 | #include <linux/poll.h> |
Andrew Morton | 87ebdc0 | 2013-02-27 17:03:16 -0800 | [diff] [blame] | 18 | #include <linux/printk.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/file.h> |
| 20 | #include <linux/limits.h> |
| 21 | #include <linux/init.h> |
| 22 | #include <linux/module.h> |
Al Viro | 9043476f | 2008-07-15 08:54:06 -0400 | [diff] [blame] | 23 | #include <linux/sysctl.h> |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 24 | #include <linux/seq_file.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/slab.h> |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 26 | #include <linux/mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 28 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Adrian Bunk | fee781e | 2006-01-08 01:04:16 -0800 | [diff] [blame] | 30 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Al Viro | 8267952 | 2010-06-04 22:17:56 -0400 | [diff] [blame] | 32 | static void proc_evict_inode(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { |
| 34 | struct proc_dir_entry *de; |
Al Viro | dfef6dcd3 | 2011-03-08 01:25:28 -0500 | [diff] [blame] | 35 | struct ctl_table_header *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 37 | truncate_inode_pages_final(&inode->i_data); |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 38 | clear_inode(inode); |
Mark Fasheh | fef2665 | 2005-09-09 13:01:31 -0700 | [diff] [blame] | 39 | |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 40 | /* Stop tracking associated processes */ |
Eric W. Biederman | 13b41b0 | 2006-06-26 00:25:56 -0700 | [diff] [blame] | 41 | put_pid(PROC_I(inode)->pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | /* Let go of any associated proc directory entry */ |
Alexander Kuleshov | 6bee55f | 2015-02-12 15:01:03 -0800 | [diff] [blame] | 44 | de = PDE(inode); |
Alexey Dobriyan | 99b7623 | 2009-03-25 22:48:06 +0300 | [diff] [blame] | 45 | if (de) |
Alexey Dobriyan | 135d565 | 2009-12-15 16:45:39 -0800 | [diff] [blame] | 46 | pde_put(de); |
Konstantin Khlebnikov | d6cffbb | 2017-02-10 10:35:02 +0300 | [diff] [blame] | 47 | |
Al Viro | dfef6dcd3 | 2011-03-08 01:25:28 -0500 | [diff] [blame] | 48 | head = PROC_I(inode)->sysctl; |
| 49 | if (head) { |
Monam Agarwal | 1c44dbc | 2014-04-07 15:38:35 -0700 | [diff] [blame] | 50 | RCU_INIT_POINTER(PROC_I(inode)->sysctl, NULL); |
Konstantin Khlebnikov | d6cffbb | 2017-02-10 10:35:02 +0300 | [diff] [blame] | 51 | proc_sys_evict_inode(inode, head); |
Al Viro | dfef6dcd3 | 2011-03-08 01:25:28 -0500 | [diff] [blame] | 52 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | } |
| 54 | |
Alexey Dobriyan | efb1a57 | 2018-02-06 15:37:24 -0800 | [diff] [blame] | 55 | static struct kmem_cache *proc_inode_cachep __ro_after_init; |
Alexey Dobriyan | 195b8cf | 2018-04-10 16:31:09 -0700 | [diff] [blame] | 56 | static struct kmem_cache *pde_opener_cache __ro_after_init; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | static struct inode *proc_alloc_inode(struct super_block *sb) |
| 59 | { |
| 60 | struct proc_inode *ei; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Tobin C. Harding | f245e1c17 | 2017-05-08 15:54:55 -0700 | [diff] [blame] | 62 | ei = kmem_cache_alloc(proc_inode_cachep, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | if (!ei) |
| 64 | return NULL; |
Eric W. Biederman | 13b41b0 | 2006-06-26 00:25:56 -0700 | [diff] [blame] | 65 | ei->pid = NULL; |
Eric W. Biederman | aed7a6c | 2006-06-26 00:25:44 -0700 | [diff] [blame] | 66 | ei->fd = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | ei->op.proc_get_link = NULL; |
| 68 | ei->pde = NULL; |
Al Viro | 9043476f | 2008-07-15 08:54:06 -0400 | [diff] [blame] | 69 | ei->sysctl = NULL; |
| 70 | ei->sysctl_entry = NULL; |
Eric W. Biederman | 0afa5ca | 2020-02-19 17:17:34 -0600 | [diff] [blame] | 71 | INIT_HLIST_NODE(&ei->sibling_inodes); |
Al Viro | 3d3d35b | 2014-11-01 11:10:28 -0400 | [diff] [blame] | 72 | ei->ns_ops = NULL; |
Alexey Dobriyan | 230f72e | 2019-01-03 15:26:05 -0800 | [diff] [blame] | 73 | return &ei->vfs_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Al Viro | 4aa6b55 | 2019-04-15 20:28:38 -0400 | [diff] [blame] | 76 | static void proc_free_inode(struct inode *inode) |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 77 | { |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 78 | kmem_cache_free(proc_inode_cachep, PROC_I(inode)); |
| 79 | } |
| 80 | |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 81 | static void init_once(void *foo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { |
| 83 | struct proc_inode *ei = (struct proc_inode *) foo; |
| 84 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 85 | inode_init_once(&ei->vfs_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 87 | |
Alexey Dobriyan | 195b8cf | 2018-04-10 16:31:09 -0700 | [diff] [blame] | 88 | void __init proc_init_kmemcache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
| 90 | proc_inode_cachep = kmem_cache_create("proc_inode_cache", |
| 91 | sizeof(struct proc_inode), |
Paul Jackson | fffb60f | 2006-03-24 03:16:06 -0800 | [diff] [blame] | 92 | 0, (SLAB_RECLAIM_ACCOUNT| |
Vladimir Davydov | 5d09705 | 2016-01-14 15:18:21 -0800 | [diff] [blame] | 93 | SLAB_MEM_SPREAD|SLAB_ACCOUNT| |
| 94 | SLAB_PANIC), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 95 | init_once); |
Alexey Dobriyan | 195b8cf | 2018-04-10 16:31:09 -0700 | [diff] [blame] | 96 | pde_opener_cache = |
| 97 | kmem_cache_create("pde_opener", sizeof(struct pde_opener), 0, |
Alexey Dobriyan | 2acddbe | 2018-04-10 16:31:12 -0700 | [diff] [blame] | 98 | SLAB_ACCOUNT|SLAB_PANIC, NULL); |
Alexey Dobriyan | b4884f2 | 2018-04-10 16:31:52 -0700 | [diff] [blame] | 99 | proc_dir_entry_cache = kmem_cache_create_usercopy( |
Alexey Dobriyan | 2d6e4e8 | 2018-08-21 21:54:09 -0700 | [diff] [blame] | 100 | "proc_dir_entry", SIZEOF_PDE, 0, SLAB_PANIC, |
| 101 | offsetof(struct proc_dir_entry, inline_name), |
| 102 | SIZEOF_PDE_INLINE_NAME, NULL); |
| 103 | BUILD_BUG_ON(sizeof(struct proc_dir_entry) >= SIZEOF_PDE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Eric W. Biederman | f90f3ca | 2020-02-21 08:43:23 -0600 | [diff] [blame^] | 106 | void proc_invalidate_siblings_dcache(struct hlist_head *inodes, spinlock_t *lock) |
Eric W. Biederman | 26dbc60 | 2020-02-20 08:34:44 -0600 | [diff] [blame] | 107 | { |
| 108 | struct inode *inode; |
| 109 | struct proc_inode *ei; |
| 110 | struct hlist_node *node; |
Eric W. Biederman | 080f627 | 2020-02-21 08:33:57 -0600 | [diff] [blame] | 111 | struct super_block *old_sb = NULL; |
Eric W. Biederman | 26dbc60 | 2020-02-20 08:34:44 -0600 | [diff] [blame] | 112 | |
| 113 | rcu_read_lock(); |
| 114 | for (;;) { |
Eric W. Biederman | 080f627 | 2020-02-21 08:33:57 -0600 | [diff] [blame] | 115 | struct super_block *sb; |
Eric W. Biederman | 26dbc60 | 2020-02-20 08:34:44 -0600 | [diff] [blame] | 116 | node = hlist_first_rcu(inodes); |
| 117 | if (!node) |
| 118 | break; |
| 119 | ei = hlist_entry(node, struct proc_inode, sibling_inodes); |
| 120 | spin_lock(lock); |
| 121 | hlist_del_init_rcu(&ei->sibling_inodes); |
| 122 | spin_unlock(lock); |
| 123 | |
| 124 | inode = &ei->vfs_inode; |
| 125 | sb = inode->i_sb; |
Eric W. Biederman | 080f627 | 2020-02-21 08:33:57 -0600 | [diff] [blame] | 126 | if ((sb != old_sb) && !atomic_inc_not_zero(&sb->s_active)) |
Eric W. Biederman | 26dbc60 | 2020-02-20 08:34:44 -0600 | [diff] [blame] | 127 | continue; |
| 128 | inode = igrab(inode); |
| 129 | rcu_read_unlock(); |
Eric W. Biederman | 080f627 | 2020-02-21 08:33:57 -0600 | [diff] [blame] | 130 | if (sb != old_sb) { |
| 131 | if (old_sb) |
| 132 | deactivate_super(old_sb); |
| 133 | old_sb = sb; |
| 134 | } |
Eric W. Biederman | 26dbc60 | 2020-02-20 08:34:44 -0600 | [diff] [blame] | 135 | if (unlikely(!inode)) { |
Eric W. Biederman | 26dbc60 | 2020-02-20 08:34:44 -0600 | [diff] [blame] | 136 | rcu_read_lock(); |
| 137 | continue; |
| 138 | } |
| 139 | |
Eric W. Biederman | f90f3ca | 2020-02-21 08:43:23 -0600 | [diff] [blame^] | 140 | if (S_ISDIR(inode->i_mode)) { |
| 141 | struct dentry *dir = d_find_any_alias(inode); |
| 142 | if (dir) { |
| 143 | d_invalidate(dir); |
| 144 | dput(dir); |
| 145 | } |
| 146 | } else { |
| 147 | struct dentry *dentry; |
| 148 | while ((dentry = d_find_alias(inode))) { |
| 149 | d_invalidate(dentry); |
| 150 | dput(dentry); |
| 151 | } |
| 152 | } |
Eric W. Biederman | 26dbc60 | 2020-02-20 08:34:44 -0600 | [diff] [blame] | 153 | iput(inode); |
Eric W. Biederman | 26dbc60 | 2020-02-20 08:34:44 -0600 | [diff] [blame] | 154 | |
| 155 | rcu_read_lock(); |
| 156 | } |
| 157 | rcu_read_unlock(); |
Eric W. Biederman | 080f627 | 2020-02-21 08:33:57 -0600 | [diff] [blame] | 158 | if (old_sb) |
| 159 | deactivate_super(old_sb); |
Eric W. Biederman | 26dbc60 | 2020-02-20 08:34:44 -0600 | [diff] [blame] | 160 | } |
| 161 | |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 162 | static int proc_show_options(struct seq_file *seq, struct dentry *root) |
| 163 | { |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 164 | struct super_block *sb = root->d_sb; |
| 165 | struct pid_namespace *pid = sb->s_fs_info; |
| 166 | |
Eric W. Biederman | dcb0f22 | 2012-02-09 08:48:21 -0800 | [diff] [blame] | 167 | if (!gid_eq(pid->pid_gid, GLOBAL_ROOT_GID)) |
| 168 | seq_printf(seq, ",gid=%u", from_kgid_munged(&init_user_ns, pid->pid_gid)); |
Lafcadio Wluiki | 796f571 | 2017-02-24 15:00:23 -0800 | [diff] [blame] | 169 | if (pid->hide_pid != HIDEPID_OFF) |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 170 | seq_printf(seq, ",hidepid=%u", pid->hide_pid); |
| 171 | |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 172 | return 0; |
| 173 | } |
| 174 | |
David Howells | 60a3c3a | 2018-11-01 23:07:25 +0000 | [diff] [blame] | 175 | const struct super_operations proc_sops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | .alloc_inode = proc_alloc_inode, |
Al Viro | 4aa6b55 | 2019-04-15 20:28:38 -0400 | [diff] [blame] | 177 | .free_inode = proc_free_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | .drop_inode = generic_delete_inode, |
Al Viro | 8267952 | 2010-06-04 22:17:56 -0400 | [diff] [blame] | 179 | .evict_inode = proc_evict_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | .statfs = simple_statfs, |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 181 | .show_options = proc_show_options, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | }; |
| 183 | |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 184 | enum {BIAS = -1U<<31}; |
| 185 | |
| 186 | static inline int use_pde(struct proc_dir_entry *pde) |
| 187 | { |
Alexey Dobriyan | 15b158b | 2018-02-06 15:37:28 -0800 | [diff] [blame] | 188 | return likely(atomic_inc_unless_negative(&pde->in_use)); |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 189 | } |
| 190 | |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 191 | static void unuse_pde(struct proc_dir_entry *pde) |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 192 | { |
Alexey Dobriyan | 15b158b | 2018-02-06 15:37:28 -0800 | [diff] [blame] | 193 | if (unlikely(atomic_dec_return(&pde->in_use) == BIAS)) |
Al Viro | 05c0ae2 | 2013-04-04 16:28:47 -0400 | [diff] [blame] | 194 | complete(pde->pde_unload_completion); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Alexey Dobriyan | 2f89742 | 2018-04-10 16:30:54 -0700 | [diff] [blame] | 197 | /* pde is locked on entry, unlocked on exit */ |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 198 | static void close_pdeo(struct proc_dir_entry *pde, struct pde_opener *pdeo) |
| 199 | { |
Alexey Dobriyan | 492b2da | 2016-12-12 16:45:22 -0800 | [diff] [blame] | 200 | /* |
| 201 | * close() (proc_reg_release()) can't delete an entry and proceed: |
| 202 | * ->release hook needs to be available at the right moment. |
| 203 | * |
| 204 | * rmmod (remove_proc_entry() et al) can't delete an entry and proceed: |
| 205 | * "struct file" needs to be available at the right moment. |
| 206 | * |
| 207 | * Therefore, first process to enter this function does ->release() and |
| 208 | * signals its completion to the other process which does nothing. |
| 209 | */ |
Al Viro | 05c0ae2 | 2013-04-04 16:28:47 -0400 | [diff] [blame] | 210 | if (pdeo->closing) { |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 211 | /* somebody else is doing that, just wait */ |
Al Viro | 05c0ae2 | 2013-04-04 16:28:47 -0400 | [diff] [blame] | 212 | DECLARE_COMPLETION_ONSTACK(c); |
| 213 | pdeo->c = &c; |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 214 | spin_unlock(&pde->pde_unload_lock); |
Al Viro | 05c0ae2 | 2013-04-04 16:28:47 -0400 | [diff] [blame] | 215 | wait_for_completion(&c); |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 216 | } else { |
| 217 | struct file *file; |
Alexey Dobriyan | 2f89742 | 2018-04-10 16:30:54 -0700 | [diff] [blame] | 218 | struct completion *c; |
| 219 | |
Alexey Dobriyan | f5887c71 | 2016-12-12 16:45:17 -0800 | [diff] [blame] | 220 | pdeo->closing = true; |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 221 | spin_unlock(&pde->pde_unload_lock); |
| 222 | file = pdeo->file; |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 223 | pde->proc_ops->proc_release(file_inode(file), file); |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 224 | spin_lock(&pde->pde_unload_lock); |
Alexey Dobriyan | 492b2da | 2016-12-12 16:45:22 -0800 | [diff] [blame] | 225 | /* After ->release. */ |
Alexey Dobriyan | 06a0c41 | 2016-12-12 16:45:14 -0800 | [diff] [blame] | 226 | list_del(&pdeo->lh); |
Alexey Dobriyan | 2f89742 | 2018-04-10 16:30:54 -0700 | [diff] [blame] | 227 | c = pdeo->c; |
| 228 | spin_unlock(&pde->pde_unload_lock); |
| 229 | if (unlikely(c)) |
| 230 | complete(c); |
Alexey Dobriyan | 195b8cf | 2018-04-10 16:31:09 -0700 | [diff] [blame] | 231 | kmem_cache_free(pde_opener_cache, pdeo); |
Al Viro | 05c0ae2 | 2013-04-04 16:28:47 -0400 | [diff] [blame] | 232 | } |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 233 | } |
| 234 | |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 235 | void proc_entry_rundown(struct proc_dir_entry *de) |
| 236 | { |
Al Viro | 05c0ae2 | 2013-04-04 16:28:47 -0400 | [diff] [blame] | 237 | DECLARE_COMPLETION_ONSTACK(c); |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 238 | /* Wait until all existing callers into module are done. */ |
Al Viro | 05c0ae2 | 2013-04-04 16:28:47 -0400 | [diff] [blame] | 239 | de->pde_unload_completion = &c; |
| 240 | if (atomic_add_return(BIAS, &de->in_use) != BIAS) |
| 241 | wait_for_completion(&c); |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 242 | |
Alexey Dobriyan | 492b2da | 2016-12-12 16:45:22 -0800 | [diff] [blame] | 243 | /* ->pde_openers list can't grow from now on. */ |
| 244 | |
Al Viro | 05c0ae2 | 2013-04-04 16:28:47 -0400 | [diff] [blame] | 245 | spin_lock(&de->pde_unload_lock); |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 246 | while (!list_empty(&de->pde_openers)) { |
| 247 | struct pde_opener *pdeo; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 248 | pdeo = list_first_entry(&de->pde_openers, struct pde_opener, lh); |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 249 | close_pdeo(de, pdeo); |
Alexey Dobriyan | 2f89742 | 2018-04-10 16:30:54 -0700 | [diff] [blame] | 250 | spin_lock(&de->pde_unload_lock); |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 251 | } |
| 252 | spin_unlock(&de->pde_unload_lock); |
| 253 | } |
| 254 | |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 255 | static loff_t proc_reg_llseek(struct file *file, loff_t offset, int whence) |
| 256 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 257 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 258 | loff_t rv = -EINVAL; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 259 | if (use_pde(pde)) { |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 260 | typeof_member(struct proc_ops, proc_lseek) lseek; |
Alexey Dobriyan | 9af27b2 | 2019-07-16 16:26:45 -0700 | [diff] [blame] | 261 | |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 262 | lseek = pde->proc_ops->proc_lseek; |
| 263 | if (!lseek) |
| 264 | lseek = default_llseek; |
| 265 | rv = lseek(file, offset, whence); |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 266 | unuse_pde(pde); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 267 | } |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 268 | return rv; |
| 269 | } |
| 270 | |
| 271 | static ssize_t proc_reg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) |
| 272 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 273 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 274 | ssize_t rv = -EIO; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 275 | if (use_pde(pde)) { |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 276 | typeof_member(struct proc_ops, proc_read) read; |
Alexey Dobriyan | 9af27b2 | 2019-07-16 16:26:45 -0700 | [diff] [blame] | 277 | |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 278 | read = pde->proc_ops->proc_read; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 279 | if (read) |
| 280 | rv = read(file, buf, count, ppos); |
| 281 | unuse_pde(pde); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 282 | } |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 283 | return rv; |
| 284 | } |
| 285 | |
| 286 | static ssize_t proc_reg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) |
| 287 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 288 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 289 | ssize_t rv = -EIO; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 290 | if (use_pde(pde)) { |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 291 | typeof_member(struct proc_ops, proc_write) write; |
Alexey Dobriyan | 9af27b2 | 2019-07-16 16:26:45 -0700 | [diff] [blame] | 292 | |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 293 | write = pde->proc_ops->proc_write; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 294 | if (write) |
| 295 | rv = write(file, buf, count, ppos); |
| 296 | unuse_pde(pde); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 297 | } |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 298 | return rv; |
| 299 | } |
| 300 | |
Al Viro | 076ccb7 | 2017-07-03 01:02:18 -0400 | [diff] [blame] | 301 | static __poll_t proc_reg_poll(struct file *file, struct poll_table_struct *pts) |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 302 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 303 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Al Viro | e6c8adc | 2017-07-03 22:25:56 -0400 | [diff] [blame] | 304 | __poll_t rv = DEFAULT_POLLMASK; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 305 | if (use_pde(pde)) { |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 306 | typeof_member(struct proc_ops, proc_poll) poll; |
Alexey Dobriyan | 9af27b2 | 2019-07-16 16:26:45 -0700 | [diff] [blame] | 307 | |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 308 | poll = pde->proc_ops->proc_poll; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 309 | if (poll) |
| 310 | rv = poll(file, pts); |
| 311 | unuse_pde(pde); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 312 | } |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 313 | return rv; |
| 314 | } |
| 315 | |
| 316 | static long proc_reg_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 317 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 318 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 319 | long rv = -ENOTTY; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 320 | if (use_pde(pde)) { |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 321 | typeof_member(struct proc_ops, proc_ioctl) ioctl; |
Alexey Dobriyan | 9af27b2 | 2019-07-16 16:26:45 -0700 | [diff] [blame] | 322 | |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 323 | ioctl = pde->proc_ops->proc_ioctl; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 324 | if (ioctl) |
| 325 | rv = ioctl(file, cmd, arg); |
| 326 | unuse_pde(pde); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 327 | } |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 328 | return rv; |
| 329 | } |
| 330 | |
| 331 | #ifdef CONFIG_COMPAT |
| 332 | static long proc_reg_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 333 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 334 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 335 | long rv = -ENOTTY; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 336 | if (use_pde(pde)) { |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 337 | typeof_member(struct proc_ops, proc_compat_ioctl) compat_ioctl; |
Alexey Dobriyan | 9af27b2 | 2019-07-16 16:26:45 -0700 | [diff] [blame] | 338 | |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 339 | compat_ioctl = pde->proc_ops->proc_compat_ioctl; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 340 | if (compat_ioctl) |
| 341 | rv = compat_ioctl(file, cmd, arg); |
| 342 | unuse_pde(pde); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 343 | } |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 344 | return rv; |
| 345 | } |
| 346 | #endif |
| 347 | |
| 348 | static int proc_reg_mmap(struct file *file, struct vm_area_struct *vma) |
| 349 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 350 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 351 | int rv = -EIO; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 352 | if (use_pde(pde)) { |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 353 | typeof_member(struct proc_ops, proc_mmap) mmap; |
Alexey Dobriyan | 9af27b2 | 2019-07-16 16:26:45 -0700 | [diff] [blame] | 354 | |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 355 | mmap = pde->proc_ops->proc_mmap; |
Al Viro | 866ad9a7 | 2013-04-03 19:07:30 -0400 | [diff] [blame] | 356 | if (mmap) |
| 357 | rv = mmap(file, vma); |
| 358 | unuse_pde(pde); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 359 | } |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 360 | return rv; |
| 361 | } |
| 362 | |
HATAYAMA Daisuke | 5721cf8 | 2013-11-12 15:11:15 -0800 | [diff] [blame] | 363 | static unsigned long |
| 364 | proc_reg_get_unmapped_area(struct file *file, unsigned long orig_addr, |
| 365 | unsigned long len, unsigned long pgoff, |
| 366 | unsigned long flags) |
Alexey Dobriyan | c4fe244 | 2013-08-20 22:17:24 +0300 | [diff] [blame] | 367 | { |
| 368 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
HATAYAMA Daisuke | 2cbe3b0 | 2013-10-16 13:47:04 -0700 | [diff] [blame] | 369 | unsigned long rv = -EIO; |
Jan Beulich | ae5758a | 2013-12-12 17:12:22 -0800 | [diff] [blame] | 370 | |
Alexey Dobriyan | c4fe244 | 2013-08-20 22:17:24 +0300 | [diff] [blame] | 371 | if (use_pde(pde)) { |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 372 | typeof_member(struct proc_ops, proc_get_unmapped_area) get_area; |
Jan Beulich | ae5758a | 2013-12-12 17:12:22 -0800 | [diff] [blame] | 373 | |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 374 | get_area = pde->proc_ops->proc_get_unmapped_area; |
HATAYAMA Daisuke | fad1a86 | 2013-10-16 13:47:05 -0700 | [diff] [blame] | 375 | #ifdef CONFIG_MMU |
Jan Beulich | ae5758a | 2013-12-12 17:12:22 -0800 | [diff] [blame] | 376 | if (!get_area) |
| 377 | get_area = current->mm->get_unmapped_area; |
HATAYAMA Daisuke | fad1a86 | 2013-10-16 13:47:05 -0700 | [diff] [blame] | 378 | #endif |
Jan Beulich | ae5758a | 2013-12-12 17:12:22 -0800 | [diff] [blame] | 379 | |
HATAYAMA Daisuke | 5721cf8 | 2013-11-12 15:11:15 -0800 | [diff] [blame] | 380 | if (get_area) |
| 381 | rv = get_area(file, orig_addr, len, pgoff, flags); |
Jan Beulich | ae5758a | 2013-12-12 17:12:22 -0800 | [diff] [blame] | 382 | else |
| 383 | rv = orig_addr; |
Alexey Dobriyan | c4fe244 | 2013-08-20 22:17:24 +0300 | [diff] [blame] | 384 | unuse_pde(pde); |
| 385 | } |
| 386 | return rv; |
| 387 | } |
| 388 | |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 389 | static int proc_reg_open(struct inode *inode, struct file *file) |
| 390 | { |
| 391 | struct proc_dir_entry *pde = PDE(inode); |
| 392 | int rv = 0; |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 393 | typeof_member(struct proc_ops, proc_open) open; |
| 394 | typeof_member(struct proc_ops, proc_release) release; |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 395 | struct pde_opener *pdeo; |
| 396 | |
| 397 | /* |
Alexey Dobriyan | 492b2da | 2016-12-12 16:45:22 -0800 | [diff] [blame] | 398 | * Ensure that |
| 399 | * 1) PDE's ->release hook will be called no matter what |
| 400 | * either normally by close()/->release, or forcefully by |
| 401 | * rmmod/remove_proc_entry. |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 402 | * |
Alexey Dobriyan | 492b2da | 2016-12-12 16:45:22 -0800 | [diff] [blame] | 403 | * 2) rmmod isn't blocked by opening file in /proc and sitting on |
| 404 | * the descriptor (including "rmmod foo </proc/foo" scenario). |
| 405 | * |
| 406 | * Save every "struct file" with custom ->release hook. |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 407 | */ |
Alexey Dobriyan | e7a6e29 | 2018-04-10 16:31:01 -0700 | [diff] [blame] | 408 | if (!use_pde(pde)) |
Daisuke Ogino | d2857e7 | 2011-07-26 16:08:37 -0700 | [diff] [blame] | 409 | return -ENOENT; |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 410 | |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 411 | release = pde->proc_ops->proc_release; |
Alexey Dobriyan | e7a6e29 | 2018-04-10 16:31:01 -0700 | [diff] [blame] | 412 | if (release) { |
Alexey Dobriyan | 195b8cf | 2018-04-10 16:31:09 -0700 | [diff] [blame] | 413 | pdeo = kmem_cache_alloc(pde_opener_cache, GFP_KERNEL); |
Alexey Dobriyan | e7a6e29 | 2018-04-10 16:31:01 -0700 | [diff] [blame] | 414 | if (!pdeo) { |
| 415 | rv = -ENOMEM; |
| 416 | goto out_unuse; |
| 417 | } |
| 418 | } |
| 419 | |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 420 | open = pde->proc_ops->proc_open; |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 421 | if (open) |
| 422 | rv = open(inode, file); |
| 423 | |
Alexey Dobriyan | e7a6e29 | 2018-04-10 16:31:01 -0700 | [diff] [blame] | 424 | if (release) { |
| 425 | if (rv == 0) { |
| 426 | /* To know what to release. */ |
| 427 | pdeo->file = file; |
| 428 | pdeo->closing = false; |
| 429 | pdeo->c = NULL; |
| 430 | spin_lock(&pde->pde_unload_lock); |
| 431 | list_add(&pdeo->lh, &pde->pde_openers); |
| 432 | spin_unlock(&pde->pde_unload_lock); |
| 433 | } else |
Alexey Dobriyan | 195b8cf | 2018-04-10 16:31:09 -0700 | [diff] [blame] | 434 | kmem_cache_free(pde_opener_cache, pdeo); |
Alexey Dobriyan | e7a6e29 | 2018-04-10 16:31:01 -0700 | [diff] [blame] | 435 | } |
Al Viro | 05c0ae2 | 2013-04-04 16:28:47 -0400 | [diff] [blame] | 436 | |
Alexey Dobriyan | e7a6e29 | 2018-04-10 16:31:01 -0700 | [diff] [blame] | 437 | out_unuse: |
Al Viro | 05c0ae2 | 2013-04-04 16:28:47 -0400 | [diff] [blame] | 438 | unuse_pde(pde); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 439 | return rv; |
| 440 | } |
| 441 | |
| 442 | static int proc_reg_release(struct inode *inode, struct file *file) |
| 443 | { |
| 444 | struct proc_dir_entry *pde = PDE(inode); |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 445 | struct pde_opener *pdeo; |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 446 | spin_lock(&pde->pde_unload_lock); |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 447 | list_for_each_entry(pdeo, &pde->pde_openers, lh) { |
| 448 | if (pdeo->file == file) { |
| 449 | close_pdeo(pde, pdeo); |
Alexey Dobriyan | 2f89742 | 2018-04-10 16:30:54 -0700 | [diff] [blame] | 450 | return 0; |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 451 | } |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 452 | } |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 453 | spin_unlock(&pde->pde_unload_lock); |
Al Viro | ca469f3 | 2013-04-03 19:57:00 -0400 | [diff] [blame] | 454 | return 0; |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | static const struct file_operations proc_reg_file_ops = { |
| 458 | .llseek = proc_reg_llseek, |
| 459 | .read = proc_reg_read, |
| 460 | .write = proc_reg_write, |
| 461 | .poll = proc_reg_poll, |
| 462 | .unlocked_ioctl = proc_reg_unlocked_ioctl, |
| 463 | #ifdef CONFIG_COMPAT |
| 464 | .compat_ioctl = proc_reg_compat_ioctl, |
| 465 | #endif |
| 466 | .mmap = proc_reg_mmap, |
Alexey Dobriyan | c4fe244 | 2013-08-20 22:17:24 +0300 | [diff] [blame] | 467 | .get_unmapped_area = proc_reg_get_unmapped_area, |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 468 | .open = proc_reg_open, |
| 469 | .release = proc_reg_release, |
| 470 | }; |
| 471 | |
David Miller | 778f3dd | 2007-07-27 22:58:37 -0700 | [diff] [blame] | 472 | #ifdef CONFIG_COMPAT |
| 473 | static const struct file_operations proc_reg_file_ops_no_compat = { |
| 474 | .llseek = proc_reg_llseek, |
| 475 | .read = proc_reg_read, |
| 476 | .write = proc_reg_write, |
| 477 | .poll = proc_reg_poll, |
| 478 | .unlocked_ioctl = proc_reg_unlocked_ioctl, |
| 479 | .mmap = proc_reg_mmap, |
Alexey Dobriyan | c4fe244 | 2013-08-20 22:17:24 +0300 | [diff] [blame] | 480 | .get_unmapped_area = proc_reg_get_unmapped_area, |
David Miller | 778f3dd | 2007-07-27 22:58:37 -0700 | [diff] [blame] | 481 | .open = proc_reg_open, |
| 482 | .release = proc_reg_release, |
| 483 | }; |
| 484 | #endif |
| 485 | |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 486 | static void proc_put_link(void *p) |
| 487 | { |
| 488 | unuse_pde(p); |
| 489 | } |
| 490 | |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 491 | static const char *proc_get_link(struct dentry *dentry, |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 492 | struct inode *inode, |
| 493 | struct delayed_call *done) |
Al Viro | 7e0e953 | 2015-02-21 22:16:11 -0500 | [diff] [blame] | 494 | { |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 495 | struct proc_dir_entry *pde = PDE(inode); |
Alexey Dobriyan | 15b158b | 2018-02-06 15:37:28 -0800 | [diff] [blame] | 496 | if (!use_pde(pde)) |
Al Viro | 7e0e953 | 2015-02-21 22:16:11 -0500 | [diff] [blame] | 497 | return ERR_PTR(-EINVAL); |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 498 | set_delayed_call(done, proc_put_link, pde); |
Al Viro | 680baac | 2015-05-02 13:32:22 -0400 | [diff] [blame] | 499 | return pde->data; |
Al Viro | 7e0e953 | 2015-02-21 22:16:11 -0500 | [diff] [blame] | 500 | } |
| 501 | |
Al Viro | 7e0e953 | 2015-02-21 22:16:11 -0500 | [diff] [blame] | 502 | const struct inode_operations proc_link_inode_operations = { |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 503 | .get_link = proc_get_link, |
Al Viro | 7e0e953 | 2015-02-21 22:16:11 -0500 | [diff] [blame] | 504 | }; |
| 505 | |
Alexey Dobriyan | 6d1b6e4 | 2011-01-12 17:00:33 -0800 | [diff] [blame] | 506 | struct inode *proc_get_inode(struct super_block *sb, struct proc_dir_entry *de) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | { |
Linus Torvalds | 51f0885 | 2013-03-22 11:44:04 -0700 | [diff] [blame] | 508 | struct inode *inode = new_inode_pseudo(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
Linus Torvalds | 51f0885 | 2013-03-22 11:44:04 -0700 | [diff] [blame] | 510 | if (inode) { |
| 511 | inode->i_ino = de->low_ino; |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 512 | inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); |
David Howells | a1d4aeb | 2008-02-07 00:15:45 -0800 | [diff] [blame] | 513 | PROC_I(inode)->pde = de; |
Alexey Dobriyan | 5e971dc | 2008-04-29 01:01:41 -0700 | [diff] [blame] | 514 | |
Eric W. Biederman | eb6d38d | 2015-05-11 16:44:25 -0500 | [diff] [blame] | 515 | if (is_empty_pde(de)) { |
| 516 | make_empty_dir_inode(inode); |
| 517 | return inode; |
| 518 | } |
Alexey Dobriyan | 5e971dc | 2008-04-29 01:01:41 -0700 | [diff] [blame] | 519 | if (de->mode) { |
| 520 | inode->i_mode = de->mode; |
| 521 | inode->i_uid = de->uid; |
| 522 | inode->i_gid = de->gid; |
| 523 | } |
| 524 | if (de->size) |
| 525 | inode->i_size = de->size; |
| 526 | if (de->nlink) |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 527 | set_nlink(inode, de->nlink); |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 528 | |
| 529 | if (S_ISREG(inode->i_mode)) { |
| 530 | inode->i_op = de->proc_iops; |
| 531 | inode->i_fop = &proc_reg_file_ops; |
David Howells | a1d4aeb | 2008-02-07 00:15:45 -0800 | [diff] [blame] | 532 | #ifdef CONFIG_COMPAT |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 533 | if (!de->proc_ops->proc_compat_ioctl) { |
| 534 | inode->i_fop = &proc_reg_file_ops_no_compat; |
David Howells | a1d4aeb | 2008-02-07 00:15:45 -0800 | [diff] [blame] | 535 | } |
Alexey Dobriyan | d56c0d4 | 2020-02-03 17:37:14 -0800 | [diff] [blame] | 536 | #endif |
| 537 | } else if (S_ISDIR(inode->i_mode)) { |
| 538 | inode->i_op = de->proc_iops; |
| 539 | inode->i_fop = de->proc_dir_ops; |
| 540 | } else if (S_ISLNK(inode->i_mode)) { |
| 541 | inode->i_op = de->proc_iops; |
| 542 | inode->i_fop = NULL; |
| 543 | } else |
| 544 | BUG(); |
Alexey Dobriyan | 99b7623 | 2009-03-25 22:48:06 +0300 | [diff] [blame] | 545 | } else |
Alexey Dobriyan | 135d565 | 2009-12-15 16:45:39 -0800 | [diff] [blame] | 546 | pde_put(de); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | return inode; |
Al Viro | d3d009c | 2013-01-25 20:11:22 -0500 | [diff] [blame] | 548 | } |