Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/file_table.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) |
| 6 | */ |
| 7 | |
| 8 | #include <linux/string.h> |
| 9 | #include <linux/slab.h> |
| 10 | #include <linux/file.h> |
Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 11 | #include <linux/fdtable.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/init.h> |
| 13 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/fs.h> |
| 15 | #include <linux/security.h> |
| 16 | #include <linux/eventpoll.h> |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 17 | #include <linux/rcupdate.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/mount.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 19 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/cdev.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 21 | #include <linux/fsnotify.h> |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 22 | #include <linux/sysctl.h> |
| 23 | #include <linux/percpu_counter.h> |
Al Viro | 0552f87 | 2009-12-16 04:53:03 -0500 | [diff] [blame] | 24 | #include <linux/ima.h> |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 25 | |
| 26 | #include <asm/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Eric Paris | e81e3f4 | 2009-12-04 15:47:36 -0500 | [diff] [blame] | 28 | #include "internal.h" |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | /* sysctl tunables... */ |
| 31 | struct files_stat_struct files_stat = { |
| 32 | .max_files = NR_FILE |
| 33 | }; |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | /* public. Not pretty! */ |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 36 | __cacheline_aligned_in_smp DEFINE_SPINLOCK(files_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Eric Dumazet | b6b3fde | 2008-12-10 09:35:45 -0800 | [diff] [blame] | 38 | /* SLAB cache for file structures */ |
| 39 | static struct kmem_cache *filp_cachep __read_mostly; |
| 40 | |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 41 | static struct percpu_counter nr_files __cacheline_aligned_in_smp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 43 | static inline void file_free_rcu(struct rcu_head *head) |
| 44 | { |
David Howells | d76b0d9 | 2008-11-14 10:39:25 +1100 | [diff] [blame] | 45 | struct file *f = container_of(head, struct file, f_u.fu_rcuhead); |
| 46 | |
| 47 | put_cred(f->f_cred); |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 48 | kmem_cache_free(filp_cachep, f); |
| 49 | } |
| 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | static inline void file_free(struct file *f) |
| 52 | { |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 53 | percpu_counter_dec(&nr_files); |
Dave Hansen | ad775f5 | 2008-02-15 14:38:01 -0800 | [diff] [blame] | 54 | file_check_state(f); |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 55 | call_rcu(&f->f_u.fu_rcuhead, file_free_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 58 | /* |
| 59 | * Return the total number of open files in the system |
| 60 | */ |
| 61 | static int get_nr_files(void) |
| 62 | { |
| 63 | return percpu_counter_read_positive(&nr_files); |
| 64 | } |
| 65 | |
| 66 | /* |
| 67 | * Return the maximum number of open files in the system |
| 68 | */ |
| 69 | int get_max_files(void) |
| 70 | { |
| 71 | return files_stat.max_files; |
| 72 | } |
| 73 | EXPORT_SYMBOL_GPL(get_max_files); |
| 74 | |
| 75 | /* |
| 76 | * Handle nr_files sysctl |
| 77 | */ |
| 78 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS) |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 79 | int proc_nr_files(ctl_table *table, int write, |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 80 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 81 | { |
| 82 | files_stat.nr_files = get_nr_files(); |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 83 | return proc_dointvec(table, write, buffer, lenp, ppos); |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 84 | } |
| 85 | #else |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 86 | int proc_nr_files(ctl_table *table, int write, |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 87 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 88 | { |
| 89 | return -ENOSYS; |
| 90 | } |
| 91 | #endif |
| 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | /* Find an unused file structure and return a pointer to it. |
| 94 | * Returns NULL, if there are no more free file structures or |
| 95 | * we run out of memory. |
Dave Hansen | 430e285 | 2008-02-15 14:37:26 -0800 | [diff] [blame] | 96 | * |
| 97 | * Be very careful using this. You are responsible for |
| 98 | * getting write access to any mount that you might assign |
| 99 | * to this filp, if it is opened for write. If this is not |
| 100 | * done, you will imbalance int the mount's writer count |
| 101 | * and a warning at __fput() time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | */ |
| 103 | struct file *get_empty_filp(void) |
| 104 | { |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 105 | const struct cred *cred = current_cred(); |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 106 | static int old_max; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | struct file * f; |
| 108 | |
| 109 | /* |
| 110 | * Privileged users can go above max_files |
| 111 | */ |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 112 | if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) { |
| 113 | /* |
| 114 | * percpu_counters are inaccurate. Do an expensive check before |
| 115 | * we go and fail. |
| 116 | */ |
Peter Zijlstra | 52d9f3b | 2007-10-16 23:25:44 -0700 | [diff] [blame] | 117 | if (percpu_counter_sum_positive(&nr_files) >= files_stat.max_files) |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 118 | goto over; |
| 119 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Denis Cheng | 4975e45 | 2007-10-16 23:26:19 -0700 | [diff] [blame] | 121 | f = kmem_cache_zalloc(filp_cachep, GFP_KERNEL); |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 122 | if (f == NULL) |
| 123 | goto fail; |
| 124 | |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 125 | percpu_counter_inc(&nr_files); |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 126 | if (security_file_alloc(f)) |
| 127 | goto fail_sec; |
| 128 | |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 129 | INIT_LIST_HEAD(&f->f_u.fu_list); |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 130 | atomic_long_set(&f->f_count, 1); |
Benjamin LaHaise | 5a6b795 | 2006-03-23 03:01:03 -0800 | [diff] [blame] | 131 | rwlock_init(&f->f_owner.lock); |
David Howells | d76b0d9 | 2008-11-14 10:39:25 +1100 | [diff] [blame] | 132 | f->f_cred = get_cred(cred); |
Jonathan Corbet | 6849991 | 2009-02-06 13:52:43 -0700 | [diff] [blame] | 133 | spin_lock_init(&f->f_lock); |
Benjamin LaHaise | 5a6b795 | 2006-03-23 03:01:03 -0800 | [diff] [blame] | 134 | eventpoll_init_file(f); |
| 135 | /* f->f_version: 0 */ |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 136 | return f; |
| 137 | |
| 138 | over: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | /* Ran out of filps - report that */ |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 140 | if (get_nr_files() > old_max) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | printk(KERN_INFO "VFS: file-max limit %d reached\n", |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 142 | get_max_files()); |
| 143 | old_max = get_nr_files(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 145 | goto fail; |
| 146 | |
| 147 | fail_sec: |
| 148 | file_free(f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | fail: |
| 150 | return NULL; |
| 151 | } |
| 152 | |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 153 | /** |
| 154 | * alloc_file - allocate and initialize a 'struct file' |
| 155 | * @mnt: the vfsmount on which the file will reside |
| 156 | * @dentry: the dentry representing the new file |
| 157 | * @mode: the mode with which the new file will be opened |
| 158 | * @fop: the 'struct file_operations' for the new file |
| 159 | * |
| 160 | * Use this instead of get_empty_filp() to get a new |
| 161 | * 'struct file'. Do so because of the same initialization |
| 162 | * pitfalls reasons listed for init_file(). This is a |
| 163 | * preferred interface to using init_file(). |
| 164 | * |
| 165 | * If all the callers of init_file() are eliminated, its |
| 166 | * code should be moved into this function. |
| 167 | */ |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 168 | struct file *alloc_file(struct path *path, fmode_t mode, |
| 169 | const struct file_operations *fop) |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 170 | { |
| 171 | struct file *file; |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 172 | |
| 173 | file = get_empty_filp(); |
| 174 | if (!file) |
| 175 | return NULL; |
| 176 | |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 177 | file->f_path = *path; |
| 178 | file->f_mapping = path->dentry->d_inode->i_mapping; |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 179 | file->f_mode = mode; |
| 180 | file->f_op = fop; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 181 | |
| 182 | /* |
| 183 | * These mounts don't really matter in practice |
| 184 | * for r/o bind mounts. They aren't userspace- |
| 185 | * visible. We do this for consistency, and so |
| 186 | * that we can do debugging checks at __fput() |
| 187 | */ |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 188 | if ((mode & FMODE_WRITE) && !special_file(path->dentry->d_inode->i_mode)) { |
Dave Hansen | ad775f5 | 2008-02-15 14:38:01 -0800 | [diff] [blame] | 189 | file_take_write(file); |
Roland Dreier | 385e3ed | 2009-12-16 12:48:44 -0800 | [diff] [blame] | 190 | WARN_ON(mnt_clone_write(path->mnt)); |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 191 | } |
Al Viro | 0552f87 | 2009-12-16 04:53:03 -0500 | [diff] [blame] | 192 | ima_counts_get(file); |
Al Viro | 3d1e463 | 2009-08-08 23:56:29 +0400 | [diff] [blame] | 193 | return file; |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 194 | } |
Roland Dreier | 73efc46 | 2009-12-16 12:43:11 -0800 | [diff] [blame] | 195 | EXPORT_SYMBOL(alloc_file); |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 196 | |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 197 | /** |
| 198 | * drop_file_write_access - give up ability to write to a file |
| 199 | * @file: the file to which we will stop writing |
| 200 | * |
| 201 | * This is a central place which will give up the ability |
| 202 | * to write to @file, along with access to write through |
| 203 | * its vfsmount. |
| 204 | */ |
| 205 | void drop_file_write_access(struct file *file) |
| 206 | { |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 207 | struct vfsmount *mnt = file->f_path.mnt; |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 208 | struct dentry *dentry = file->f_path.dentry; |
| 209 | struct inode *inode = dentry->d_inode; |
| 210 | |
| 211 | put_write_access(inode); |
Dave Hansen | ad775f5 | 2008-02-15 14:38:01 -0800 | [diff] [blame] | 212 | |
| 213 | if (special_file(inode->i_mode)) |
| 214 | return; |
| 215 | if (file_check_writeable(file) != 0) |
| 216 | return; |
| 217 | mnt_drop_write(mnt); |
| 218 | file_release_write(file); |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 219 | } |
| 220 | EXPORT_SYMBOL_GPL(drop_file_write_access); |
| 221 | |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 222 | /* the real guts of fput() - releasing the last reference to file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | */ |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 224 | static void __fput(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | { |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 226 | struct dentry *dentry = file->f_path.dentry; |
| 227 | struct vfsmount *mnt = file->f_path.mnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | struct inode *inode = dentry->d_inode; |
| 229 | |
| 230 | might_sleep(); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 231 | |
| 232 | fsnotify_close(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | /* |
| 234 | * The function eventpoll_release() should be the first called |
| 235 | * in the file cleanup chain. |
| 236 | */ |
| 237 | eventpoll_release(file); |
| 238 | locks_remove_flock(file); |
| 239 | |
Al Viro | 233e70f | 2008-10-31 23:28:30 +0000 | [diff] [blame] | 240 | if (unlikely(file->f_flags & FASYNC)) { |
| 241 | if (file->f_op && file->f_op->fasync) |
| 242 | file->f_op->fasync(-1, file, 0); |
| 243 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | if (file->f_op && file->f_op->release) |
| 245 | file->f_op->release(inode, file); |
| 246 | security_file_free(file); |
Al Viro | 89068c5 | 2010-02-07 03:07:29 -0500 | [diff] [blame] | 247 | ima_file_free(file); |
Theodore Ts'o | 577c4eb | 2006-09-27 01:50:49 -0700 | [diff] [blame] | 248 | if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | cdev_put(inode->i_cdev); |
| 250 | fops_put(file->f_op); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 251 | put_pid(file->f_owner.pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | file_kill(file); |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 253 | if (file->f_mode & FMODE_WRITE) |
| 254 | drop_file_write_access(file); |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 255 | file->f_path.dentry = NULL; |
| 256 | file->f_path.mnt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | file_free(file); |
| 258 | dput(dentry); |
| 259 | mntput(mnt); |
| 260 | } |
| 261 | |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 262 | void fput(struct file *file) |
| 263 | { |
| 264 | if (atomic_long_dec_and_test(&file->f_count)) |
| 265 | __fput(file); |
| 266 | } |
| 267 | |
| 268 | EXPORT_SYMBOL(fput); |
| 269 | |
Harvey Harrison | fc9b52c | 2008-02-08 04:19:52 -0800 | [diff] [blame] | 270 | struct file *fget(unsigned int fd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { |
| 272 | struct file *file; |
| 273 | struct files_struct *files = current->files; |
| 274 | |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 275 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | file = fcheck_files(files, fd); |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 277 | if (file) { |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 278 | if (!atomic_long_inc_not_zero(&file->f_count)) { |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 279 | /* File object ref couldn't be taken */ |
| 280 | rcu_read_unlock(); |
| 281 | return NULL; |
| 282 | } |
| 283 | } |
| 284 | rcu_read_unlock(); |
| 285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | return file; |
| 287 | } |
| 288 | |
| 289 | EXPORT_SYMBOL(fget); |
| 290 | |
| 291 | /* |
| 292 | * Lightweight file lookup - no refcnt increment if fd table isn't shared. |
| 293 | * You can use this only if it is guranteed that the current task already |
| 294 | * holds a refcnt to that file. That check has to be done at fget() only |
| 295 | * and a flag is returned to be passed to the corresponding fput_light(). |
| 296 | * There must not be a cloning between an fget_light/fput_light pair. |
| 297 | */ |
Harvey Harrison | fc9b52c | 2008-02-08 04:19:52 -0800 | [diff] [blame] | 298 | struct file *fget_light(unsigned int fd, int *fput_needed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | { |
| 300 | struct file *file; |
| 301 | struct files_struct *files = current->files; |
| 302 | |
| 303 | *fput_needed = 0; |
| 304 | if (likely((atomic_read(&files->count) == 1))) { |
| 305 | file = fcheck_files(files, fd); |
| 306 | } else { |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 307 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | file = fcheck_files(files, fd); |
| 309 | if (file) { |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 310 | if (atomic_long_inc_not_zero(&file->f_count)) |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 311 | *fput_needed = 1; |
| 312 | else |
| 313 | /* Didn't get the reference, someone's freed */ |
| 314 | file = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 316 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | return file; |
| 320 | } |
| 321 | |
| 322 | |
| 323 | void put_filp(struct file *file) |
| 324 | { |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 325 | if (atomic_long_dec_and_test(&file->f_count)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | security_file_free(file); |
| 327 | file_kill(file); |
| 328 | file_free(file); |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | void file_move(struct file *file, struct list_head *list) |
| 333 | { |
| 334 | if (!list) |
| 335 | return; |
| 336 | file_list_lock(); |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 337 | list_move(&file->f_u.fu_list, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | file_list_unlock(); |
| 339 | } |
| 340 | |
| 341 | void file_kill(struct file *file) |
| 342 | { |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 343 | if (!list_empty(&file->f_u.fu_list)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | file_list_lock(); |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 345 | list_del_init(&file->f_u.fu_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | file_list_unlock(); |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | int fs_may_remount_ro(struct super_block *sb) |
| 351 | { |
Matthias Kaehlcke | cfdaf9e | 2007-10-18 23:39:56 -0700 | [diff] [blame] | 352 | struct file *file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
| 354 | /* Check that no files are currently opened for writing. */ |
| 355 | file_list_lock(); |
Matthias Kaehlcke | cfdaf9e | 2007-10-18 23:39:56 -0700 | [diff] [blame] | 356 | list_for_each_entry(file, &sb->s_files, f_u.fu_list) { |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 357 | struct inode *inode = file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
| 359 | /* File with pending delete? */ |
| 360 | if (inode->i_nlink == 0) |
| 361 | goto too_bad; |
| 362 | |
| 363 | /* Writeable file? */ |
| 364 | if (S_ISREG(inode->i_mode) && (file->f_mode & FMODE_WRITE)) |
| 365 | goto too_bad; |
| 366 | } |
| 367 | file_list_unlock(); |
| 368 | return 1; /* Tis' cool bro. */ |
| 369 | too_bad: |
| 370 | file_list_unlock(); |
| 371 | return 0; |
| 372 | } |
| 373 | |
npiggin@suse.de | 864d7c4 | 2009-04-26 20:25:56 +1000 | [diff] [blame] | 374 | /** |
| 375 | * mark_files_ro - mark all files read-only |
| 376 | * @sb: superblock in question |
| 377 | * |
| 378 | * All files are marked read-only. We don't care about pending |
| 379 | * delete files so this should be used in 'force' mode only. |
| 380 | */ |
| 381 | void mark_files_ro(struct super_block *sb) |
| 382 | { |
| 383 | struct file *f; |
| 384 | |
| 385 | retry: |
| 386 | file_list_lock(); |
| 387 | list_for_each_entry(f, &sb->s_files, f_u.fu_list) { |
| 388 | struct vfsmount *mnt; |
| 389 | if (!S_ISREG(f->f_path.dentry->d_inode->i_mode)) |
| 390 | continue; |
| 391 | if (!file_count(f)) |
| 392 | continue; |
| 393 | if (!(f->f_mode & FMODE_WRITE)) |
| 394 | continue; |
Wu Fengguang | 42e4960 | 2010-03-05 13:42:01 -0800 | [diff] [blame] | 395 | spin_lock(&f->f_lock); |
npiggin@suse.de | 864d7c4 | 2009-04-26 20:25:56 +1000 | [diff] [blame] | 396 | f->f_mode &= ~FMODE_WRITE; |
Wu Fengguang | 42e4960 | 2010-03-05 13:42:01 -0800 | [diff] [blame] | 397 | spin_unlock(&f->f_lock); |
npiggin@suse.de | 864d7c4 | 2009-04-26 20:25:56 +1000 | [diff] [blame] | 398 | if (file_check_writeable(f) != 0) |
| 399 | continue; |
| 400 | file_release_write(f); |
| 401 | mnt = mntget(f->f_path.mnt); |
| 402 | file_list_unlock(); |
| 403 | /* |
| 404 | * This can sleep, so we can't hold |
| 405 | * the file_list_lock() spinlock. |
| 406 | */ |
| 407 | mnt_drop_write(mnt); |
| 408 | mntput(mnt); |
| 409 | goto retry; |
| 410 | } |
| 411 | file_list_unlock(); |
| 412 | } |
| 413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | void __init files_init(unsigned long mempages) |
| 415 | { |
| 416 | int n; |
Eric Dumazet | b6b3fde | 2008-12-10 09:35:45 -0800 | [diff] [blame] | 417 | |
| 418 | filp_cachep = kmem_cache_create("filp", sizeof(struct file), 0, |
| 419 | SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL); |
| 420 | |
| 421 | /* |
| 422 | * One file with associated inode and dcache is very roughly 1K. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | * Per default don't use more than 10% of our memory for files. |
| 424 | */ |
| 425 | |
| 426 | n = (mempages * (PAGE_SIZE / 1024)) / 10; |
| 427 | files_stat.max_files = n; |
| 428 | if (files_stat.max_files < NR_FILE) |
| 429 | files_stat.max_files = NR_FILE; |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 430 | files_defer_init(); |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 431 | percpu_counter_init(&nr_files, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } |