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