Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/proc/inode.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | */ |
| 6 | |
| 7 | #include <linux/time.h> |
| 8 | #include <linux/proc_fs.h> |
| 9 | #include <linux/kernel.h> |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 10 | #include <linux/pid_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/mm.h> |
| 12 | #include <linux/string.h> |
| 13 | #include <linux/stat.h> |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 14 | #include <linux/completion.h> |
Alexey Dobriyan | dd23aae | 2007-09-11 15:23:55 -0700 | [diff] [blame] | 15 | #include <linux/poll.h> |
Andrew Morton | 87ebdc0 | 2013-02-27 17:03:16 -0800 | [diff] [blame] | 16 | #include <linux/printk.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/file.h> |
| 18 | #include <linux/limits.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/module.h> |
Al Viro | 9043476f | 2008-07-15 08:54:06 -0400 | [diff] [blame] | 21 | #include <linux/sysctl.h> |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 22 | #include <linux/seq_file.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 24 | #include <linux/mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/uaccess.h> |
| 27 | |
Adrian Bunk | fee781e | 2006-01-08 01:04:16 -0800 | [diff] [blame] | 28 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Al Viro | 8267952 | 2010-06-04 22:17:56 -0400 | [diff] [blame] | 30 | static void proc_evict_inode(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | { |
| 32 | struct proc_dir_entry *de; |
Al Viro | dfef6dcd3 | 2011-03-08 01:25:28 -0500 | [diff] [blame] | 33 | struct ctl_table_header *head; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 34 | const struct proc_ns_operations *ns_ops; |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 35 | void *ns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Mark Fasheh | fef2665 | 2005-09-09 13:01:31 -0700 | [diff] [blame] | 37 | truncate_inode_pages(&inode->i_data, 0); |
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 */ |
| 44 | de = PROC_I(inode)->pde; |
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); |
Al Viro | dfef6dcd3 | 2011-03-08 01:25:28 -0500 | [diff] [blame] | 47 | head = PROC_I(inode)->sysctl; |
| 48 | if (head) { |
| 49 | rcu_assign_pointer(PROC_I(inode)->sysctl, NULL); |
| 50 | sysctl_head_put(head); |
| 51 | } |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 52 | /* Release any associated namespace */ |
| 53 | ns_ops = PROC_I(inode)->ns_ops; |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 54 | ns = PROC_I(inode)->ns; |
| 55 | if (ns_ops && ns) |
| 56 | ns_ops->put(ns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 59 | static struct kmem_cache * proc_inode_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | static struct inode *proc_alloc_inode(struct super_block *sb) |
| 62 | { |
| 63 | struct proc_inode *ei; |
| 64 | struct inode *inode; |
| 65 | |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 66 | ei = (struct proc_inode *)kmem_cache_alloc(proc_inode_cachep, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | if (!ei) |
| 68 | return NULL; |
Eric W. Biederman | 13b41b0 | 2006-06-26 00:25:56 -0700 | [diff] [blame] | 69 | ei->pid = NULL; |
Eric W. Biederman | aed7a6c | 2006-06-26 00:25:44 -0700 | [diff] [blame] | 70 | ei->fd = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | ei->op.proc_get_link = NULL; |
| 72 | ei->pde = NULL; |
Al Viro | 9043476f | 2008-07-15 08:54:06 -0400 | [diff] [blame] | 73 | ei->sysctl = NULL; |
| 74 | ei->sysctl_entry = NULL; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 75 | ei->ns = NULL; |
| 76 | ei->ns_ops = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | inode = &ei->vfs_inode; |
| 78 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; |
| 79 | return inode; |
| 80 | } |
| 81 | |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 82 | static void proc_i_callback(struct rcu_head *head) |
| 83 | { |
| 84 | struct inode *inode = container_of(head, struct inode, i_rcu); |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 85 | kmem_cache_free(proc_inode_cachep, PROC_I(inode)); |
| 86 | } |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | static void proc_destroy_inode(struct inode *inode) |
| 89 | { |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 90 | call_rcu(&inode->i_rcu, proc_i_callback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 93 | static void init_once(void *foo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | { |
| 95 | struct proc_inode *ei = (struct proc_inode *) foo; |
| 96 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 97 | inode_init_once(&ei->vfs_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 99 | |
Alexey Dobriyan | 5bcd7ff | 2008-10-17 03:43:55 +0400 | [diff] [blame] | 100 | void __init proc_init_inodecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | { |
| 102 | proc_inode_cachep = kmem_cache_create("proc_inode_cache", |
| 103 | sizeof(struct proc_inode), |
Paul Jackson | fffb60f | 2006-03-24 03:16:06 -0800 | [diff] [blame] | 104 | 0, (SLAB_RECLAIM_ACCOUNT| |
Alexey Dobriyan | 040b5c6 | 2007-10-16 23:26:10 -0700 | [diff] [blame] | 105 | SLAB_MEM_SPREAD|SLAB_PANIC), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 106 | init_once); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 109 | static int proc_show_options(struct seq_file *seq, struct dentry *root) |
| 110 | { |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 111 | struct super_block *sb = root->d_sb; |
| 112 | struct pid_namespace *pid = sb->s_fs_info; |
| 113 | |
Eric W. Biederman | dcb0f22 | 2012-02-09 08:48:21 -0800 | [diff] [blame] | 114 | if (!gid_eq(pid->pid_gid, GLOBAL_ROOT_GID)) |
| 115 | seq_printf(seq, ",gid=%u", from_kgid_munged(&init_user_ns, pid->pid_gid)); |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 116 | if (pid->hide_pid != 0) |
| 117 | seq_printf(seq, ",hidepid=%u", pid->hide_pid); |
| 118 | |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 119 | return 0; |
| 120 | } |
| 121 | |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 122 | static const struct super_operations proc_sops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | .alloc_inode = proc_alloc_inode, |
| 124 | .destroy_inode = proc_destroy_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | .drop_inode = generic_delete_inode, |
Al Viro | 8267952 | 2010-06-04 22:17:56 -0400 | [diff] [blame] | 126 | .evict_inode = proc_evict_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | .statfs = simple_statfs, |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 128 | .remount_fs = proc_remount, |
| 129 | .show_options = proc_show_options, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | }; |
| 131 | |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 132 | static void __pde_users_dec(struct proc_dir_entry *pde) |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 133 | { |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 134 | pde->pde_users--; |
| 135 | if (pde->pde_unload_completion && pde->pde_users == 0) |
| 136 | complete(pde->pde_unload_completion); |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 137 | } |
| 138 | |
Alexey Dobriyan | 3dec7f5 | 2009-02-20 17:04:33 +0300 | [diff] [blame] | 139 | void pde_users_dec(struct proc_dir_entry *pde) |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 140 | { |
| 141 | spin_lock(&pde->pde_unload_lock); |
| 142 | __pde_users_dec(pde); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 143 | spin_unlock(&pde->pde_unload_lock); |
| 144 | } |
| 145 | |
| 146 | static loff_t proc_reg_llseek(struct file *file, loff_t offset, int whence) |
| 147 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 148 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 149 | loff_t rv = -EINVAL; |
| 150 | loff_t (*llseek)(struct file *, loff_t, int); |
| 151 | |
| 152 | spin_lock(&pde->pde_unload_lock); |
| 153 | /* |
| 154 | * remove_proc_entry() is going to delete PDE (as part of module |
| 155 | * cleanup sequence). No new callers into module allowed. |
| 156 | */ |
| 157 | if (!pde->proc_fops) { |
| 158 | spin_unlock(&pde->pde_unload_lock); |
| 159 | return rv; |
| 160 | } |
| 161 | /* |
| 162 | * Bump refcount so that remove_proc_entry will wail for ->llseek to |
| 163 | * complete. |
| 164 | */ |
| 165 | pde->pde_users++; |
| 166 | /* |
| 167 | * Save function pointer under lock, to protect against ->proc_fops |
| 168 | * NULL'ifying right after ->pde_unload_lock is dropped. |
| 169 | */ |
| 170 | llseek = pde->proc_fops->llseek; |
| 171 | spin_unlock(&pde->pde_unload_lock); |
| 172 | |
| 173 | if (!llseek) |
| 174 | llseek = default_llseek; |
| 175 | rv = llseek(file, offset, whence); |
| 176 | |
| 177 | pde_users_dec(pde); |
| 178 | return rv; |
| 179 | } |
| 180 | |
| 181 | static ssize_t proc_reg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) |
| 182 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 183 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 184 | ssize_t rv = -EIO; |
| 185 | ssize_t (*read)(struct file *, char __user *, size_t, loff_t *); |
| 186 | |
| 187 | spin_lock(&pde->pde_unload_lock); |
| 188 | if (!pde->proc_fops) { |
| 189 | spin_unlock(&pde->pde_unload_lock); |
| 190 | return rv; |
| 191 | } |
| 192 | pde->pde_users++; |
| 193 | read = pde->proc_fops->read; |
| 194 | spin_unlock(&pde->pde_unload_lock); |
| 195 | |
| 196 | if (read) |
| 197 | rv = read(file, buf, count, ppos); |
| 198 | |
| 199 | pde_users_dec(pde); |
| 200 | return rv; |
| 201 | } |
| 202 | |
| 203 | static ssize_t proc_reg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) |
| 204 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 205 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 206 | ssize_t rv = -EIO; |
| 207 | ssize_t (*write)(struct file *, const char __user *, size_t, loff_t *); |
| 208 | |
| 209 | spin_lock(&pde->pde_unload_lock); |
| 210 | if (!pde->proc_fops) { |
| 211 | spin_unlock(&pde->pde_unload_lock); |
| 212 | return rv; |
| 213 | } |
| 214 | pde->pde_users++; |
| 215 | write = pde->proc_fops->write; |
| 216 | spin_unlock(&pde->pde_unload_lock); |
| 217 | |
| 218 | if (write) |
| 219 | rv = write(file, buf, count, ppos); |
| 220 | |
| 221 | pde_users_dec(pde); |
| 222 | return rv; |
| 223 | } |
| 224 | |
| 225 | static unsigned int proc_reg_poll(struct file *file, struct poll_table_struct *pts) |
| 226 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 227 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | dd23aae | 2007-09-11 15:23:55 -0700 | [diff] [blame] | 228 | unsigned int rv = DEFAULT_POLLMASK; |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 229 | unsigned int (*poll)(struct file *, struct poll_table_struct *); |
| 230 | |
| 231 | spin_lock(&pde->pde_unload_lock); |
| 232 | if (!pde->proc_fops) { |
| 233 | spin_unlock(&pde->pde_unload_lock); |
| 234 | return rv; |
| 235 | } |
| 236 | pde->pde_users++; |
| 237 | poll = pde->proc_fops->poll; |
| 238 | spin_unlock(&pde->pde_unload_lock); |
| 239 | |
| 240 | if (poll) |
| 241 | rv = poll(file, pts); |
| 242 | |
| 243 | pde_users_dec(pde); |
| 244 | return rv; |
| 245 | } |
| 246 | |
| 247 | static long proc_reg_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 248 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 249 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 250 | long rv = -ENOTTY; |
Arnd Bergmann | b19dd42 | 2010-07-04 00:15:10 +0200 | [diff] [blame] | 251 | long (*ioctl)(struct file *, unsigned int, unsigned long); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 252 | |
| 253 | spin_lock(&pde->pde_unload_lock); |
| 254 | if (!pde->proc_fops) { |
| 255 | spin_unlock(&pde->pde_unload_lock); |
| 256 | return rv; |
| 257 | } |
| 258 | pde->pde_users++; |
Arnd Bergmann | b19dd42 | 2010-07-04 00:15:10 +0200 | [diff] [blame] | 259 | ioctl = pde->proc_fops->unlocked_ioctl; |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 260 | spin_unlock(&pde->pde_unload_lock); |
| 261 | |
Arnd Bergmann | b19dd42 | 2010-07-04 00:15:10 +0200 | [diff] [blame] | 262 | if (ioctl) |
| 263 | rv = ioctl(file, cmd, arg); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 264 | |
| 265 | pde_users_dec(pde); |
| 266 | return rv; |
| 267 | } |
| 268 | |
| 269 | #ifdef CONFIG_COMPAT |
| 270 | static long proc_reg_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 271 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 272 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 273 | long rv = -ENOTTY; |
| 274 | long (*compat_ioctl)(struct file *, unsigned int, unsigned long); |
| 275 | |
| 276 | spin_lock(&pde->pde_unload_lock); |
| 277 | if (!pde->proc_fops) { |
| 278 | spin_unlock(&pde->pde_unload_lock); |
| 279 | return rv; |
| 280 | } |
| 281 | pde->pde_users++; |
| 282 | compat_ioctl = pde->proc_fops->compat_ioctl; |
| 283 | spin_unlock(&pde->pde_unload_lock); |
| 284 | |
| 285 | if (compat_ioctl) |
| 286 | rv = compat_ioctl(file, cmd, arg); |
| 287 | |
| 288 | pde_users_dec(pde); |
| 289 | return rv; |
| 290 | } |
| 291 | #endif |
| 292 | |
| 293 | static int proc_reg_mmap(struct file *file, struct vm_area_struct *vma) |
| 294 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 295 | struct proc_dir_entry *pde = PDE(file_inode(file)); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 296 | int rv = -EIO; |
| 297 | int (*mmap)(struct file *, struct vm_area_struct *); |
| 298 | |
| 299 | spin_lock(&pde->pde_unload_lock); |
| 300 | if (!pde->proc_fops) { |
| 301 | spin_unlock(&pde->pde_unload_lock); |
| 302 | return rv; |
| 303 | } |
| 304 | pde->pde_users++; |
| 305 | mmap = pde->proc_fops->mmap; |
| 306 | spin_unlock(&pde->pde_unload_lock); |
| 307 | |
| 308 | if (mmap) |
| 309 | rv = mmap(file, vma); |
| 310 | |
| 311 | pde_users_dec(pde); |
| 312 | return rv; |
| 313 | } |
| 314 | |
| 315 | static int proc_reg_open(struct inode *inode, struct file *file) |
| 316 | { |
| 317 | struct proc_dir_entry *pde = PDE(inode); |
| 318 | int rv = 0; |
| 319 | int (*open)(struct inode *, struct file *); |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 320 | int (*release)(struct inode *, struct file *); |
| 321 | struct pde_opener *pdeo; |
| 322 | |
| 323 | /* |
| 324 | * What for, you ask? Well, we can have open, rmmod, remove_proc_entry |
| 325 | * sequence. ->release won't be called because ->proc_fops will be |
| 326 | * cleared. Depending on complexity of ->release, consequences vary. |
| 327 | * |
| 328 | * We can't wait for mercy when close will be done for real, it's |
| 329 | * deadlockable: rmmod foo </proc/foo . So, we're going to do ->release |
| 330 | * by hand in remove_proc_entry(). For this, save opener's credentials |
| 331 | * for later. |
| 332 | */ |
| 333 | pdeo = kmalloc(sizeof(struct pde_opener), GFP_KERNEL); |
| 334 | if (!pdeo) |
| 335 | return -ENOMEM; |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 336 | |
| 337 | spin_lock(&pde->pde_unload_lock); |
| 338 | if (!pde->proc_fops) { |
| 339 | spin_unlock(&pde->pde_unload_lock); |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 340 | kfree(pdeo); |
Daisuke Ogino | d2857e7 | 2011-07-26 16:08:37 -0700 | [diff] [blame] | 341 | return -ENOENT; |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 342 | } |
| 343 | pde->pde_users++; |
| 344 | open = pde->proc_fops->open; |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 345 | release = pde->proc_fops->release; |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 346 | spin_unlock(&pde->pde_unload_lock); |
| 347 | |
| 348 | if (open) |
| 349 | rv = open(inode, file); |
| 350 | |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 351 | spin_lock(&pde->pde_unload_lock); |
| 352 | if (rv == 0 && release) { |
| 353 | /* To know what to release. */ |
| 354 | pdeo->inode = inode; |
| 355 | pdeo->file = file; |
| 356 | /* Strictly for "too late" ->release in proc_reg_release(). */ |
| 357 | pdeo->release = release; |
| 358 | list_add(&pdeo->lh, &pde->pde_openers); |
| 359 | } else |
| 360 | kfree(pdeo); |
| 361 | __pde_users_dec(pde); |
| 362 | spin_unlock(&pde->pde_unload_lock); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 363 | return rv; |
| 364 | } |
| 365 | |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 366 | static struct pde_opener *find_pde_opener(struct proc_dir_entry *pde, |
| 367 | struct inode *inode, struct file *file) |
| 368 | { |
| 369 | struct pde_opener *pdeo; |
| 370 | |
| 371 | list_for_each_entry(pdeo, &pde->pde_openers, lh) { |
| 372 | if (pdeo->inode == inode && pdeo->file == file) |
| 373 | return pdeo; |
| 374 | } |
| 375 | return NULL; |
| 376 | } |
| 377 | |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 378 | static int proc_reg_release(struct inode *inode, struct file *file) |
| 379 | { |
| 380 | struct proc_dir_entry *pde = PDE(inode); |
| 381 | int rv = 0; |
| 382 | int (*release)(struct inode *, struct file *); |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 383 | struct pde_opener *pdeo; |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 384 | |
| 385 | spin_lock(&pde->pde_unload_lock); |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 386 | pdeo = find_pde_opener(pde, inode, file); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 387 | if (!pde->proc_fops) { |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 388 | /* |
| 389 | * Can't simply exit, __fput() will think that everything is OK, |
| 390 | * and move on to freeing struct file. remove_proc_entry() will |
| 391 | * find slacker in opener's list and will try to do non-trivial |
| 392 | * things with struct file. Therefore, remove opener from list. |
| 393 | * |
| 394 | * But if opener is removed from list, who will ->release it? |
| 395 | */ |
| 396 | if (pdeo) { |
| 397 | list_del(&pdeo->lh); |
| 398 | spin_unlock(&pde->pde_unload_lock); |
| 399 | rv = pdeo->release(inode, file); |
| 400 | kfree(pdeo); |
| 401 | } else |
| 402 | spin_unlock(&pde->pde_unload_lock); |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 403 | return rv; |
| 404 | } |
| 405 | pde->pde_users++; |
| 406 | release = pde->proc_fops->release; |
Alexey Dobriyan | 881adb8 | 2008-07-25 01:48:29 -0700 | [diff] [blame] | 407 | if (pdeo) { |
| 408 | list_del(&pdeo->lh); |
| 409 | kfree(pdeo); |
| 410 | } |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 411 | spin_unlock(&pde->pde_unload_lock); |
| 412 | |
| 413 | if (release) |
| 414 | rv = release(inode, file); |
| 415 | |
| 416 | pde_users_dec(pde); |
| 417 | return rv; |
| 418 | } |
| 419 | |
| 420 | static const struct file_operations proc_reg_file_ops = { |
| 421 | .llseek = proc_reg_llseek, |
| 422 | .read = proc_reg_read, |
| 423 | .write = proc_reg_write, |
| 424 | .poll = proc_reg_poll, |
| 425 | .unlocked_ioctl = proc_reg_unlocked_ioctl, |
| 426 | #ifdef CONFIG_COMPAT |
| 427 | .compat_ioctl = proc_reg_compat_ioctl, |
| 428 | #endif |
| 429 | .mmap = proc_reg_mmap, |
| 430 | .open = proc_reg_open, |
| 431 | .release = proc_reg_release, |
| 432 | }; |
| 433 | |
David Miller | 778f3dd | 2007-07-27 22:58:37 -0700 | [diff] [blame] | 434 | #ifdef CONFIG_COMPAT |
| 435 | static const struct file_operations proc_reg_file_ops_no_compat = { |
| 436 | .llseek = proc_reg_llseek, |
| 437 | .read = proc_reg_read, |
| 438 | .write = proc_reg_write, |
| 439 | .poll = proc_reg_poll, |
| 440 | .unlocked_ioctl = proc_reg_unlocked_ioctl, |
| 441 | .mmap = proc_reg_mmap, |
| 442 | .open = proc_reg_open, |
| 443 | .release = proc_reg_release, |
| 444 | }; |
| 445 | #endif |
| 446 | |
Alexey Dobriyan | 6d1b6e4 | 2011-01-12 17:00:33 -0800 | [diff] [blame] | 447 | 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] | 448 | { |
Linus Torvalds | 51f0885 | 2013-03-22 11:44:04 -0700 | [diff] [blame] | 449 | struct inode *inode = new_inode_pseudo(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Linus Torvalds | 51f0885 | 2013-03-22 11:44:04 -0700 | [diff] [blame] | 451 | if (inode) { |
| 452 | inode->i_ino = de->low_ino; |
David Howells | a1d4aeb | 2008-02-07 00:15:45 -0800 | [diff] [blame] | 453 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; |
David Howells | a1d4aeb | 2008-02-07 00:15:45 -0800 | [diff] [blame] | 454 | PROC_I(inode)->pde = de; |
Alexey Dobriyan | 5e971dc | 2008-04-29 01:01:41 -0700 | [diff] [blame] | 455 | |
| 456 | if (de->mode) { |
| 457 | inode->i_mode = de->mode; |
| 458 | inode->i_uid = de->uid; |
| 459 | inode->i_gid = de->gid; |
| 460 | } |
| 461 | if (de->size) |
| 462 | inode->i_size = de->size; |
| 463 | if (de->nlink) |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 464 | set_nlink(inode, de->nlink); |
Alexey Dobriyan | 5e971dc | 2008-04-29 01:01:41 -0700 | [diff] [blame] | 465 | if (de->proc_iops) |
| 466 | inode->i_op = de->proc_iops; |
| 467 | if (de->proc_fops) { |
| 468 | if (S_ISREG(inode->i_mode)) { |
David Howells | a1d4aeb | 2008-02-07 00:15:45 -0800 | [diff] [blame] | 469 | #ifdef CONFIG_COMPAT |
Alexey Dobriyan | 5e971dc | 2008-04-29 01:01:41 -0700 | [diff] [blame] | 470 | if (!de->proc_fops->compat_ioctl) |
| 471 | inode->i_fop = |
| 472 | &proc_reg_file_ops_no_compat; |
| 473 | else |
David Howells | a1d4aeb | 2008-02-07 00:15:45 -0800 | [diff] [blame] | 474 | #endif |
Alexey Dobriyan | 5e971dc | 2008-04-29 01:01:41 -0700 | [diff] [blame] | 475 | inode->i_fop = &proc_reg_file_ops; |
| 476 | } else { |
| 477 | inode->i_fop = de->proc_fops; |
David Howells | a1d4aeb | 2008-02-07 00:15:45 -0800 | [diff] [blame] | 478 | } |
Alexey Dobriyan | 786d7e1 | 2007-07-15 23:39:00 -0700 | [diff] [blame] | 479 | } |
Alexey Dobriyan | 99b7623 | 2009-03-25 22:48:06 +0300 | [diff] [blame] | 480 | } else |
Alexey Dobriyan | 135d565 | 2009-12-15 16:45:39 -0800 | [diff] [blame] | 481 | pde_put(de); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | return inode; |
Al Viro | d3d009c | 2013-01-25 20:11:22 -0500 | [diff] [blame] | 483 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
Pavel Emelyanov | 07543f5 | 2007-10-18 23:40:08 -0700 | [diff] [blame] | 485 | int proc_fill_super(struct super_block *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | { |
Maxim Patlasov | 87e0aab | 2013-02-20 13:13:32 +1100 | [diff] [blame] | 487 | struct inode *root_inode; |
| 488 | |
Linus Torvalds | 92d0328 | 2006-07-15 12:20:05 -0700 | [diff] [blame] | 489 | s->s_flags |= MS_NODIRATIME | MS_NOSUID | MS_NOEXEC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | s->s_blocksize = 1024; |
| 491 | s->s_blocksize_bits = 10; |
| 492 | s->s_magic = PROC_SUPER_MAGIC; |
| 493 | s->s_op = &proc_sops; |
| 494 | s->s_time_gran = 1; |
| 495 | |
Alexey Dobriyan | 135d565 | 2009-12-15 16:45:39 -0800 | [diff] [blame] | 496 | pde_get(&proc_root); |
Maxim Patlasov | 87e0aab | 2013-02-20 13:13:32 +1100 | [diff] [blame] | 497 | root_inode = proc_get_inode(s, &proc_root); |
| 498 | if (!root_inode) { |
Andrew Morton | 87ebdc0 | 2013-02-27 17:03:16 -0800 | [diff] [blame] | 499 | pr_err("proc_fill_super: get root inode failed\n"); |
Maxim Patlasov | 87e0aab | 2013-02-20 13:13:32 +1100 | [diff] [blame] | 500 | return -ENOMEM; |
| 501 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
Maxim Patlasov | 87e0aab | 2013-02-20 13:13:32 +1100 | [diff] [blame] | 503 | s->s_root = d_make_root(root_inode); |
| 504 | if (!s->s_root) { |
Andrew Morton | 87ebdc0 | 2013-02-27 17:03:16 -0800 | [diff] [blame] | 505 | pr_err("proc_fill_super: allocate dentry failed\n"); |
Maxim Patlasov | 87e0aab | 2013-02-20 13:13:32 +1100 | [diff] [blame] | 506 | return -ENOMEM; |
| 507 | } |
| 508 | |
| 509 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |