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