blob: ba6acd300ce19bf4efb3f758a8096ef2b2b41b9b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/proc/inode.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 */
7
Alexey Dobriyanefb1a572018-02-06 15:37:24 -08008#include <linux/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/time.h>
10#include <linux/proc_fs.h>
11#include <linux/kernel.h>
Vasiliy Kulikov97412952012-01-10 15:11:27 -080012#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/mm.h>
14#include <linux/string.h>
15#include <linux/stat.h>
Alexey Dobriyan786d7e12007-07-15 23:39:00 -070016#include <linux/completion.h>
Alexey Dobriyandd23aae2007-09-11 15:23:55 -070017#include <linux/poll.h>
Andrew Morton87ebdc02013-02-27 17:03:16 -080018#include <linux/printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/file.h>
20#include <linux/limits.h>
21#include <linux/init.h>
22#include <linux/module.h>
Al Viro9043476f2008-07-15 08:54:06 -040023#include <linux/sysctl.h>
Vasiliy Kulikov97412952012-01-10 15:11:27 -080024#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Vasiliy Kulikov97412952012-01-10 15:11:27 -080026#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080028#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Adrian Bunkfee781e2006-01-08 01:04:16 -080030#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Al Viro82679522010-06-04 22:17:56 -040032static void proc_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
34 struct proc_dir_entry *de;
Al Virodfef6dcd32011-03-08 01:25:28 -050035 struct ctl_table_header *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Johannes Weiner91b0abe2014-04-03 14:47:49 -070037 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +020038 clear_inode(inode);
Mark Fashehfef26652005-09-09 13:01:31 -070039
Eric W. Biederman99f89552006-06-26 00:25:55 -070040 /* Stop tracking associated processes */
Eric W. Biederman13b41b02006-06-26 00:25:56 -070041 put_pid(PROC_I(inode)->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 /* Let go of any associated proc directory entry */
Alexander Kuleshov6bee55f2015-02-12 15:01:03 -080044 de = PDE(inode);
Alexey Dobriyan99b76232009-03-25 22:48:06 +030045 if (de)
Alexey Dobriyan135d5652009-12-15 16:45:39 -080046 pde_put(de);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +030047
Al Virodfef6dcd32011-03-08 01:25:28 -050048 head = PROC_I(inode)->sysctl;
49 if (head) {
Monam Agarwal1c44dbc2014-04-07 15:38:35 -070050 RCU_INIT_POINTER(PROC_I(inode)->sysctl, NULL);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +030051 proc_sys_evict_inode(inode, head);
Al Virodfef6dcd32011-03-08 01:25:28 -050052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
Alexey Dobriyanefb1a572018-02-06 15:37:24 -080055static struct kmem_cache *proc_inode_cachep __ro_after_init;
Alexey Dobriyan195b8cf2018-04-10 16:31:09 -070056static struct kmem_cache *pde_opener_cache __ro_after_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58static struct inode *proc_alloc_inode(struct super_block *sb)
59{
60 struct proc_inode *ei;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Tobin C. Hardingf245e1c172017-05-08 15:54:55 -070062 ei = kmem_cache_alloc(proc_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 if (!ei)
64 return NULL;
Eric W. Biederman13b41b02006-06-26 00:25:56 -070065 ei->pid = NULL;
Eric W. Biedermanaed7a6c2006-06-26 00:25:44 -070066 ei->fd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 ei->op.proc_get_link = NULL;
68 ei->pde = NULL;
Al Viro9043476f2008-07-15 08:54:06 -040069 ei->sysctl = NULL;
70 ei->sysctl_entry = NULL;
Eric W. Biederman0afa5ca2020-02-19 17:17:34 -060071 INIT_HLIST_NODE(&ei->sibling_inodes);
Al Viro3d3d35b2014-11-01 11:10:28 -040072 ei->ns_ops = NULL;
Alexey Dobriyan230f72e2019-01-03 15:26:05 -080073 return &ei->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
Al Viro4aa6b552019-04-15 20:28:38 -040076static void proc_free_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110077{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110078 kmem_cache_free(proc_inode_cachep, PROC_I(inode));
79}
80
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070081static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 struct proc_inode *ei = (struct proc_inode *) foo;
84
Christoph Lametera35afb82007-05-16 22:10:57 -070085 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
Paul Mundt20c2df82007-07-20 10:11:58 +090087
Alexey Dobriyan195b8cf2018-04-10 16:31:09 -070088void __init proc_init_kmemcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 proc_inode_cachep = kmem_cache_create("proc_inode_cache",
91 sizeof(struct proc_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -080092 0, (SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -080093 SLAB_MEM_SPREAD|SLAB_ACCOUNT|
94 SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +090095 init_once);
Alexey Dobriyan195b8cf2018-04-10 16:31:09 -070096 pde_opener_cache =
97 kmem_cache_create("pde_opener", sizeof(struct pde_opener), 0,
Alexey Dobriyan2acddbe2018-04-10 16:31:12 -070098 SLAB_ACCOUNT|SLAB_PANIC, NULL);
Alexey Dobriyanb4884f22018-04-10 16:31:52 -070099 proc_dir_entry_cache = kmem_cache_create_usercopy(
Alexey Dobriyan2d6e4e82018-08-21 21:54:09 -0700100 "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 Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Eric W. Biedermanf90f3ca2020-02-21 08:43:23 -0600106void proc_invalidate_siblings_dcache(struct hlist_head *inodes, spinlock_t *lock)
Eric W. Biederman26dbc602020-02-20 08:34:44 -0600107{
108 struct inode *inode;
109 struct proc_inode *ei;
110 struct hlist_node *node;
Eric W. Biederman080f6272020-02-21 08:33:57 -0600111 struct super_block *old_sb = NULL;
Eric W. Biederman26dbc602020-02-20 08:34:44 -0600112
113 rcu_read_lock();
114 for (;;) {
Eric W. Biederman080f6272020-02-21 08:33:57 -0600115 struct super_block *sb;
Eric W. Biederman26dbc602020-02-20 08:34:44 -0600116 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. Biederman080f6272020-02-21 08:33:57 -0600126 if ((sb != old_sb) && !atomic_inc_not_zero(&sb->s_active))
Eric W. Biederman26dbc602020-02-20 08:34:44 -0600127 continue;
128 inode = igrab(inode);
129 rcu_read_unlock();
Eric W. Biederman080f6272020-02-21 08:33:57 -0600130 if (sb != old_sb) {
131 if (old_sb)
132 deactivate_super(old_sb);
133 old_sb = sb;
134 }
Eric W. Biederman26dbc602020-02-20 08:34:44 -0600135 if (unlikely(!inode)) {
Eric W. Biederman26dbc602020-02-20 08:34:44 -0600136 rcu_read_lock();
137 continue;
138 }
139
Eric W. Biedermanf90f3ca2020-02-21 08:43:23 -0600140 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. Biederman26dbc602020-02-20 08:34:44 -0600153 iput(inode);
Eric W. Biederman26dbc602020-02-20 08:34:44 -0600154
155 rcu_read_lock();
156 }
157 rcu_read_unlock();
Eric W. Biederman080f6272020-02-21 08:33:57 -0600158 if (old_sb)
159 deactivate_super(old_sb);
Eric W. Biederman26dbc602020-02-20 08:34:44 -0600160}
161
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800162static int proc_show_options(struct seq_file *seq, struct dentry *root)
163{
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800164 struct super_block *sb = root->d_sb;
165 struct pid_namespace *pid = sb->s_fs_info;
166
Eric W. Biedermandcb0f222012-02-09 08:48:21 -0800167 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 Wluiki796f5712017-02-24 15:00:23 -0800169 if (pid->hide_pid != HIDEPID_OFF)
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800170 seq_printf(seq, ",hidepid=%u", pid->hide_pid);
171
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800172 return 0;
173}
174
David Howells60a3c3a2018-11-01 23:07:25 +0000175const struct super_operations proc_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .alloc_inode = proc_alloc_inode,
Al Viro4aa6b552019-04-15 20:28:38 -0400177 .free_inode = proc_free_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .drop_inode = generic_delete_inode,
Al Viro82679522010-06-04 22:17:56 -0400179 .evict_inode = proc_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .statfs = simple_statfs,
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800181 .show_options = proc_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182};
183
Al Viro866ad9a72013-04-03 19:07:30 -0400184enum {BIAS = -1U<<31};
185
186static inline int use_pde(struct proc_dir_entry *pde)
187{
Alexey Dobriyan15b158b2018-02-06 15:37:28 -0800188 return likely(atomic_inc_unless_negative(&pde->in_use));
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700189}
190
Al Viro866ad9a72013-04-03 19:07:30 -0400191static void unuse_pde(struct proc_dir_entry *pde)
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700192{
Alexey Dobriyan15b158b2018-02-06 15:37:28 -0800193 if (unlikely(atomic_dec_return(&pde->in_use) == BIAS))
Al Viro05c0ae22013-04-04 16:28:47 -0400194 complete(pde->pde_unload_completion);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700195}
196
Alexey Dobriyan2f897422018-04-10 16:30:54 -0700197/* pde is locked on entry, unlocked on exit */
Al Viroca469f32013-04-03 19:57:00 -0400198static void close_pdeo(struct proc_dir_entry *pde, struct pde_opener *pdeo)
199{
Alexey Dobriyan492b2da2016-12-12 16:45:22 -0800200 /*
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 Viro05c0ae22013-04-04 16:28:47 -0400210 if (pdeo->closing) {
Al Viroca469f32013-04-03 19:57:00 -0400211 /* somebody else is doing that, just wait */
Al Viro05c0ae22013-04-04 16:28:47 -0400212 DECLARE_COMPLETION_ONSTACK(c);
213 pdeo->c = &c;
Al Viroca469f32013-04-03 19:57:00 -0400214 spin_unlock(&pde->pde_unload_lock);
Al Viro05c0ae22013-04-04 16:28:47 -0400215 wait_for_completion(&c);
Al Viroca469f32013-04-03 19:57:00 -0400216 } else {
217 struct file *file;
Alexey Dobriyan2f897422018-04-10 16:30:54 -0700218 struct completion *c;
219
Alexey Dobriyanf5887c712016-12-12 16:45:17 -0800220 pdeo->closing = true;
Al Viroca469f32013-04-03 19:57:00 -0400221 spin_unlock(&pde->pde_unload_lock);
222 file = pdeo->file;
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800223 pde->proc_ops->proc_release(file_inode(file), file);
Al Viroca469f32013-04-03 19:57:00 -0400224 spin_lock(&pde->pde_unload_lock);
Alexey Dobriyan492b2da2016-12-12 16:45:22 -0800225 /* After ->release. */
Alexey Dobriyan06a0c412016-12-12 16:45:14 -0800226 list_del(&pdeo->lh);
Alexey Dobriyan2f897422018-04-10 16:30:54 -0700227 c = pdeo->c;
228 spin_unlock(&pde->pde_unload_lock);
229 if (unlikely(c))
230 complete(c);
Alexey Dobriyan195b8cf2018-04-10 16:31:09 -0700231 kmem_cache_free(pde_opener_cache, pdeo);
Al Viro05c0ae22013-04-04 16:28:47 -0400232 }
Al Viroca469f32013-04-03 19:57:00 -0400233}
234
Al Viro866ad9a72013-04-03 19:07:30 -0400235void proc_entry_rundown(struct proc_dir_entry *de)
236{
Al Viro05c0ae22013-04-04 16:28:47 -0400237 DECLARE_COMPLETION_ONSTACK(c);
Al Viro866ad9a72013-04-03 19:07:30 -0400238 /* Wait until all existing callers into module are done. */
Al Viro05c0ae22013-04-04 16:28:47 -0400239 de->pde_unload_completion = &c;
240 if (atomic_add_return(BIAS, &de->in_use) != BIAS)
241 wait_for_completion(&c);
Al Viro866ad9a72013-04-03 19:07:30 -0400242
Alexey Dobriyan492b2da2016-12-12 16:45:22 -0800243 /* ->pde_openers list can't grow from now on. */
244
Al Viro05c0ae22013-04-04 16:28:47 -0400245 spin_lock(&de->pde_unload_lock);
Al Viro866ad9a72013-04-03 19:07:30 -0400246 while (!list_empty(&de->pde_openers)) {
247 struct pde_opener *pdeo;
Al Viro866ad9a72013-04-03 19:07:30 -0400248 pdeo = list_first_entry(&de->pde_openers, struct pde_opener, lh);
Al Viroca469f32013-04-03 19:57:00 -0400249 close_pdeo(de, pdeo);
Alexey Dobriyan2f897422018-04-10 16:30:54 -0700250 spin_lock(&de->pde_unload_lock);
Al Viro866ad9a72013-04-03 19:07:30 -0400251 }
252 spin_unlock(&de->pde_unload_lock);
253}
254
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700255static loff_t proc_reg_llseek(struct file *file, loff_t offset, int whence)
256{
Al Viro496ad9a2013-01-23 17:07:38 -0500257 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700258 loff_t rv = -EINVAL;
Al Viro866ad9a72013-04-03 19:07:30 -0400259 if (use_pde(pde)) {
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800260 typeof_member(struct proc_ops, proc_lseek) lseek;
Alexey Dobriyan9af27b22019-07-16 16:26:45 -0700261
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800262 lseek = pde->proc_ops->proc_lseek;
263 if (!lseek)
264 lseek = default_llseek;
265 rv = lseek(file, offset, whence);
Al Viro866ad9a72013-04-03 19:07:30 -0400266 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700267 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700268 return rv;
269}
270
271static ssize_t proc_reg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
272{
Al Viro496ad9a2013-01-23 17:07:38 -0500273 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700274 ssize_t rv = -EIO;
Al Viro866ad9a72013-04-03 19:07:30 -0400275 if (use_pde(pde)) {
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800276 typeof_member(struct proc_ops, proc_read) read;
Alexey Dobriyan9af27b22019-07-16 16:26:45 -0700277
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800278 read = pde->proc_ops->proc_read;
Al Viro866ad9a72013-04-03 19:07:30 -0400279 if (read)
280 rv = read(file, buf, count, ppos);
281 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700282 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700283 return rv;
284}
285
286static ssize_t proc_reg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
287{
Al Viro496ad9a2013-01-23 17:07:38 -0500288 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700289 ssize_t rv = -EIO;
Al Viro866ad9a72013-04-03 19:07:30 -0400290 if (use_pde(pde)) {
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800291 typeof_member(struct proc_ops, proc_write) write;
Alexey Dobriyan9af27b22019-07-16 16:26:45 -0700292
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800293 write = pde->proc_ops->proc_write;
Al Viro866ad9a72013-04-03 19:07:30 -0400294 if (write)
295 rv = write(file, buf, count, ppos);
296 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700297 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700298 return rv;
299}
300
Al Viro076ccb72017-07-03 01:02:18 -0400301static __poll_t proc_reg_poll(struct file *file, struct poll_table_struct *pts)
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700302{
Al Viro496ad9a2013-01-23 17:07:38 -0500303 struct proc_dir_entry *pde = PDE(file_inode(file));
Al Viroe6c8adc2017-07-03 22:25:56 -0400304 __poll_t rv = DEFAULT_POLLMASK;
Al Viro866ad9a72013-04-03 19:07:30 -0400305 if (use_pde(pde)) {
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800306 typeof_member(struct proc_ops, proc_poll) poll;
Alexey Dobriyan9af27b22019-07-16 16:26:45 -0700307
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800308 poll = pde->proc_ops->proc_poll;
Al Viro866ad9a72013-04-03 19:07:30 -0400309 if (poll)
310 rv = poll(file, pts);
311 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700312 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700313 return rv;
314}
315
316static long proc_reg_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
317{
Al Viro496ad9a2013-01-23 17:07:38 -0500318 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700319 long rv = -ENOTTY;
Al Viro866ad9a72013-04-03 19:07:30 -0400320 if (use_pde(pde)) {
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800321 typeof_member(struct proc_ops, proc_ioctl) ioctl;
Alexey Dobriyan9af27b22019-07-16 16:26:45 -0700322
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800323 ioctl = pde->proc_ops->proc_ioctl;
Al Viro866ad9a72013-04-03 19:07:30 -0400324 if (ioctl)
325 rv = ioctl(file, cmd, arg);
326 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700327 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700328 return rv;
329}
330
331#ifdef CONFIG_COMPAT
332static long proc_reg_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
333{
Al Viro496ad9a2013-01-23 17:07:38 -0500334 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700335 long rv = -ENOTTY;
Al Viro866ad9a72013-04-03 19:07:30 -0400336 if (use_pde(pde)) {
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800337 typeof_member(struct proc_ops, proc_compat_ioctl) compat_ioctl;
Alexey Dobriyan9af27b22019-07-16 16:26:45 -0700338
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800339 compat_ioctl = pde->proc_ops->proc_compat_ioctl;
Al Viro866ad9a72013-04-03 19:07:30 -0400340 if (compat_ioctl)
341 rv = compat_ioctl(file, cmd, arg);
342 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700343 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700344 return rv;
345}
346#endif
347
348static int proc_reg_mmap(struct file *file, struct vm_area_struct *vma)
349{
Al Viro496ad9a2013-01-23 17:07:38 -0500350 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700351 int rv = -EIO;
Al Viro866ad9a72013-04-03 19:07:30 -0400352 if (use_pde(pde)) {
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800353 typeof_member(struct proc_ops, proc_mmap) mmap;
Alexey Dobriyan9af27b22019-07-16 16:26:45 -0700354
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800355 mmap = pde->proc_ops->proc_mmap;
Al Viro866ad9a72013-04-03 19:07:30 -0400356 if (mmap)
357 rv = mmap(file, vma);
358 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700359 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700360 return rv;
361}
362
HATAYAMA Daisuke5721cf82013-11-12 15:11:15 -0800363static unsigned long
364proc_reg_get_unmapped_area(struct file *file, unsigned long orig_addr,
365 unsigned long len, unsigned long pgoff,
366 unsigned long flags)
Alexey Dobriyanc4fe2442013-08-20 22:17:24 +0300367{
368 struct proc_dir_entry *pde = PDE(file_inode(file));
HATAYAMA Daisuke2cbe3b02013-10-16 13:47:04 -0700369 unsigned long rv = -EIO;
Jan Beulichae5758a2013-12-12 17:12:22 -0800370
Alexey Dobriyanc4fe2442013-08-20 22:17:24 +0300371 if (use_pde(pde)) {
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800372 typeof_member(struct proc_ops, proc_get_unmapped_area) get_area;
Jan Beulichae5758a2013-12-12 17:12:22 -0800373
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800374 get_area = pde->proc_ops->proc_get_unmapped_area;
HATAYAMA Daisukefad1a862013-10-16 13:47:05 -0700375#ifdef CONFIG_MMU
Jan Beulichae5758a2013-12-12 17:12:22 -0800376 if (!get_area)
377 get_area = current->mm->get_unmapped_area;
HATAYAMA Daisukefad1a862013-10-16 13:47:05 -0700378#endif
Jan Beulichae5758a2013-12-12 17:12:22 -0800379
HATAYAMA Daisuke5721cf82013-11-12 15:11:15 -0800380 if (get_area)
381 rv = get_area(file, orig_addr, len, pgoff, flags);
Jan Beulichae5758a2013-12-12 17:12:22 -0800382 else
383 rv = orig_addr;
Alexey Dobriyanc4fe2442013-08-20 22:17:24 +0300384 unuse_pde(pde);
385 }
386 return rv;
387}
388
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700389static int proc_reg_open(struct inode *inode, struct file *file)
390{
391 struct proc_dir_entry *pde = PDE(inode);
392 int rv = 0;
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800393 typeof_member(struct proc_ops, proc_open) open;
394 typeof_member(struct proc_ops, proc_release) release;
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700395 struct pde_opener *pdeo;
396
397 /*
Alexey Dobriyan492b2da2016-12-12 16:45:22 -0800398 * 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 Dobriyan881adb82008-07-25 01:48:29 -0700402 *
Alexey Dobriyan492b2da2016-12-12 16:45:22 -0800403 * 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 Dobriyan881adb82008-07-25 01:48:29 -0700407 */
Alexey Dobriyane7a6e292018-04-10 16:31:01 -0700408 if (!use_pde(pde))
Daisuke Oginod2857e72011-07-26 16:08:37 -0700409 return -ENOENT;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700410
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800411 release = pde->proc_ops->proc_release;
Alexey Dobriyane7a6e292018-04-10 16:31:01 -0700412 if (release) {
Alexey Dobriyan195b8cf2018-04-10 16:31:09 -0700413 pdeo = kmem_cache_alloc(pde_opener_cache, GFP_KERNEL);
Alexey Dobriyane7a6e292018-04-10 16:31:01 -0700414 if (!pdeo) {
415 rv = -ENOMEM;
416 goto out_unuse;
417 }
418 }
419
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800420 open = pde->proc_ops->proc_open;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700421 if (open)
422 rv = open(inode, file);
423
Alexey Dobriyane7a6e292018-04-10 16:31:01 -0700424 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 Dobriyan195b8cf2018-04-10 16:31:09 -0700434 kmem_cache_free(pde_opener_cache, pdeo);
Alexey Dobriyane7a6e292018-04-10 16:31:01 -0700435 }
Al Viro05c0ae22013-04-04 16:28:47 -0400436
Alexey Dobriyane7a6e292018-04-10 16:31:01 -0700437out_unuse:
Al Viro05c0ae22013-04-04 16:28:47 -0400438 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700439 return rv;
440}
441
442static int proc_reg_release(struct inode *inode, struct file *file)
443{
444 struct proc_dir_entry *pde = PDE(inode);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700445 struct pde_opener *pdeo;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700446 spin_lock(&pde->pde_unload_lock);
Al Viroca469f32013-04-03 19:57:00 -0400447 list_for_each_entry(pdeo, &pde->pde_openers, lh) {
448 if (pdeo->file == file) {
449 close_pdeo(pde, pdeo);
Alexey Dobriyan2f897422018-04-10 16:30:54 -0700450 return 0;
Al Viroca469f32013-04-03 19:57:00 -0400451 }
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700452 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700453 spin_unlock(&pde->pde_unload_lock);
Al Viroca469f32013-04-03 19:57:00 -0400454 return 0;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700455}
456
457static 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 Dobriyanc4fe2442013-08-20 22:17:24 +0300467 .get_unmapped_area = proc_reg_get_unmapped_area,
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700468 .open = proc_reg_open,
469 .release = proc_reg_release,
470};
471
David Miller778f3dd2007-07-27 22:58:37 -0700472#ifdef CONFIG_COMPAT
473static 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 Dobriyanc4fe2442013-08-20 22:17:24 +0300480 .get_unmapped_area = proc_reg_get_unmapped_area,
David Miller778f3dd2007-07-27 22:58:37 -0700481 .open = proc_reg_open,
482 .release = proc_reg_release,
483};
484#endif
485
Al Virofceef392015-12-29 15:58:39 -0500486static void proc_put_link(void *p)
487{
488 unuse_pde(p);
489}
490
Al Viro6b255392015-11-17 10:20:54 -0500491static const char *proc_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -0500492 struct inode *inode,
493 struct delayed_call *done)
Al Viro7e0e9532015-02-21 22:16:11 -0500494{
Al Viro6b255392015-11-17 10:20:54 -0500495 struct proc_dir_entry *pde = PDE(inode);
Alexey Dobriyan15b158b2018-02-06 15:37:28 -0800496 if (!use_pde(pde))
Al Viro7e0e9532015-02-21 22:16:11 -0500497 return ERR_PTR(-EINVAL);
Al Virofceef392015-12-29 15:58:39 -0500498 set_delayed_call(done, proc_put_link, pde);
Al Viro680baac2015-05-02 13:32:22 -0400499 return pde->data;
Al Viro7e0e9532015-02-21 22:16:11 -0500500}
501
Al Viro7e0e9532015-02-21 22:16:11 -0500502const struct inode_operations proc_link_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -0500503 .get_link = proc_get_link,
Al Viro7e0e9532015-02-21 22:16:11 -0500504};
505
Alexey Dobriyan6d1b6e42011-01-12 17:00:33 -0800506struct inode *proc_get_inode(struct super_block *sb, struct proc_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Linus Torvalds51f08852013-03-22 11:44:04 -0700508 struct inode *inode = new_inode_pseudo(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Linus Torvalds51f08852013-03-22 11:44:04 -0700510 if (inode) {
511 inode->i_ino = de->low_ino;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700512 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
David Howellsa1d4aeb2008-02-07 00:15:45 -0800513 PROC_I(inode)->pde = de;
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700514
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500515 if (is_empty_pde(de)) {
516 make_empty_dir_inode(inode);
517 return inode;
518 }
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700519 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 Szeredibfe86842011-10-28 14:13:29 +0200527 set_nlink(inode, de->nlink);
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800528
529 if (S_ISREG(inode->i_mode)) {
530 inode->i_op = de->proc_iops;
531 inode->i_fop = &proc_reg_file_ops;
David Howellsa1d4aeb2008-02-07 00:15:45 -0800532#ifdef CONFIG_COMPAT
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800533 if (!de->proc_ops->proc_compat_ioctl) {
534 inode->i_fop = &proc_reg_file_ops_no_compat;
David Howellsa1d4aeb2008-02-07 00:15:45 -0800535 }
Alexey Dobriyand56c0d42020-02-03 17:37:14 -0800536#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 Dobriyan99b76232009-03-25 22:48:06 +0300545 } else
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800546 pde_put(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return inode;
Al Virod3d009c2013-01-25 20:11:22 -0500548}