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> |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 23 | #include <linux/lglock.h> |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 24 | #include <linux/percpu_counter.h> |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 25 | #include <linux/percpu.h> |
Al Viro | 4a9d4b0 | 2012-06-24 09:56:45 +0400 | [diff] [blame] | 26 | #include <linux/hardirq.h> |
| 27 | #include <linux/task_work.h> |
Al Viro | 0552f87 | 2009-12-16 04:53:03 -0500 | [diff] [blame] | 28 | #include <linux/ima.h> |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 29 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 30 | #include <linux/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Eric Paris | e81e3f4 | 2009-12-04 15:47:36 -0500 | [diff] [blame] | 32 | #include "internal.h" |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | /* sysctl tunables... */ |
| 35 | struct files_stat_struct files_stat = { |
| 36 | .max_files = NR_FILE |
| 37 | }; |
| 38 | |
Lai Jiangshan | 4b2c551f | 2012-10-09 14:49:54 -0700 | [diff] [blame] | 39 | DEFINE_STATIC_LGLOCK(files_lglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Eric Dumazet | b6b3fde | 2008-12-10 09:35:45 -0800 | [diff] [blame] | 41 | /* SLAB cache for file structures */ |
| 42 | static struct kmem_cache *filp_cachep __read_mostly; |
| 43 | |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 44 | static struct percpu_counter nr_files __cacheline_aligned_in_smp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Al Viro | 5c33b18 | 2012-07-20 23:05:59 +0400 | [diff] [blame] | 46 | static void file_free_rcu(struct rcu_head *head) |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 47 | { |
David Howells | d76b0d9 | 2008-11-14 10:39:25 +1100 | [diff] [blame] | 48 | struct file *f = container_of(head, struct file, f_u.fu_rcuhead); |
| 49 | |
| 50 | put_cred(f->f_cred); |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 51 | kmem_cache_free(filp_cachep, f); |
| 52 | } |
| 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | static inline void file_free(struct file *f) |
| 55 | { |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 56 | percpu_counter_dec(&nr_files); |
Dave Hansen | ad775f5 | 2008-02-15 14:38:01 -0800 | [diff] [blame] | 57 | file_check_state(f); |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 58 | call_rcu(&f->f_u.fu_rcuhead, file_free_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
| 60 | |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 61 | /* |
| 62 | * Return the total number of open files in the system |
| 63 | */ |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 64 | static long get_nr_files(void) |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 65 | { |
| 66 | return percpu_counter_read_positive(&nr_files); |
| 67 | } |
| 68 | |
| 69 | /* |
| 70 | * Return the maximum number of open files in the system |
| 71 | */ |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 72 | unsigned long get_max_files(void) |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 73 | { |
| 74 | return files_stat.max_files; |
| 75 | } |
| 76 | EXPORT_SYMBOL_GPL(get_max_files); |
| 77 | |
| 78 | /* |
| 79 | * Handle nr_files sysctl |
| 80 | */ |
| 81 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS) |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 82 | int proc_nr_files(ctl_table *table, int write, |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 83 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 84 | { |
| 85 | files_stat.nr_files = get_nr_files(); |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 86 | return proc_doulongvec_minmax(table, write, buffer, lenp, ppos); |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 87 | } |
| 88 | #else |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 89 | int proc_nr_files(ctl_table *table, int write, |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 90 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 91 | { |
| 92 | return -ENOSYS; |
| 93 | } |
| 94 | #endif |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | /* Find an unused file structure and return a pointer to it. |
Al Viro | 1afc99b | 2013-02-14 20:41:04 -0500 | [diff] [blame] | 97 | * Returns an error pointer if some error happend e.g. we over file |
| 98 | * structures limit, run out of memory or operation is not permitted. |
Dave Hansen | 430e285 | 2008-02-15 14:37:26 -0800 | [diff] [blame] | 99 | * |
| 100 | * Be very careful using this. You are responsible for |
| 101 | * getting write access to any mount that you might assign |
| 102 | * to this filp, if it is opened for write. If this is not |
| 103 | * done, you will imbalance int the mount's writer count |
| 104 | * and a warning at __fput() time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | */ |
| 106 | struct file *get_empty_filp(void) |
| 107 | { |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 108 | const struct cred *cred = current_cred(); |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 109 | static long old_max; |
Al Viro | 1afc99b | 2013-02-14 20:41:04 -0500 | [diff] [blame] | 110 | struct file *f; |
| 111 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | /* |
| 114 | * Privileged users can go above max_files |
| 115 | */ |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 116 | if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) { |
| 117 | /* |
| 118 | * percpu_counters are inaccurate. Do an expensive check before |
| 119 | * we go and fail. |
| 120 | */ |
Peter Zijlstra | 52d9f3b | 2007-10-16 23:25:44 -0700 | [diff] [blame] | 121 | if (percpu_counter_sum_positive(&nr_files) >= files_stat.max_files) |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 122 | goto over; |
| 123 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Denis Cheng | 4975e45 | 2007-10-16 23:26:19 -0700 | [diff] [blame] | 125 | f = kmem_cache_zalloc(filp_cachep, GFP_KERNEL); |
Al Viro | 1afc99b | 2013-02-14 20:41:04 -0500 | [diff] [blame] | 126 | if (unlikely(!f)) |
| 127 | return ERR_PTR(-ENOMEM); |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 128 | |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 129 | percpu_counter_inc(&nr_files); |
Tetsuo Handa | 78d2978 | 2011-02-04 18:13:24 +0000 | [diff] [blame] | 130 | f->f_cred = get_cred(cred); |
Al Viro | 1afc99b | 2013-02-14 20:41:04 -0500 | [diff] [blame] | 131 | error = security_file_alloc(f); |
| 132 | if (unlikely(error)) { |
| 133 | file_free(f); |
| 134 | return ERR_PTR(error); |
| 135 | } |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 136 | |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 137 | INIT_LIST_HEAD(&f->f_u.fu_list); |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 138 | atomic_long_set(&f->f_count, 1); |
Benjamin LaHaise | 5a6b7951 | 2006-03-23 03:01:03 -0800 | [diff] [blame] | 139 | rwlock_init(&f->f_owner.lock); |
Jonathan Corbet | 6849991 | 2009-02-06 13:52:43 -0700 | [diff] [blame] | 140 | spin_lock_init(&f->f_lock); |
Benjamin LaHaise | 5a6b7951 | 2006-03-23 03:01:03 -0800 | [diff] [blame] | 141 | eventpoll_init_file(f); |
| 142 | /* f->f_version: 0 */ |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 143 | return f; |
| 144 | |
| 145 | over: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | /* Ran out of filps - report that */ |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 147 | if (get_nr_files() > old_max) { |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 148 | pr_info("VFS: file-max limit %lu reached\n", get_max_files()); |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 149 | old_max = get_nr_files(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } |
Al Viro | 1afc99b | 2013-02-14 20:41:04 -0500 | [diff] [blame] | 151 | return ERR_PTR(-ENFILE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 154 | /** |
| 155 | * alloc_file - allocate and initialize a 'struct file' |
| 156 | * @mnt: the vfsmount on which the file will reside |
| 157 | * @dentry: the dentry representing the new file |
| 158 | * @mode: the mode with which the new file will be opened |
| 159 | * @fop: the 'struct file_operations' for the new file |
| 160 | * |
| 161 | * Use this instead of get_empty_filp() to get a new |
| 162 | * 'struct file'. Do so because of the same initialization |
| 163 | * pitfalls reasons listed for init_file(). This is a |
| 164 | * preferred interface to using init_file(). |
| 165 | * |
| 166 | * If all the callers of init_file() are eliminated, its |
| 167 | * code should be moved into this function. |
| 168 | */ |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 169 | struct file *alloc_file(struct path *path, fmode_t mode, |
| 170 | const struct file_operations *fop) |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 171 | { |
| 172 | struct file *file; |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 173 | |
| 174 | file = get_empty_filp(); |
Al Viro | 1afc99b | 2013-02-14 20:41:04 -0500 | [diff] [blame] | 175 | if (IS_ERR(file)) |
Anatol Pomozov | 39b6525 | 2012-09-12 20:11:55 -0700 | [diff] [blame] | 176 | return file; |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 177 | |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 178 | file->f_path = *path; |
Al Viro | dd37978 | 2013-03-01 19:48:30 -0500 | [diff] [blame] | 179 | file->f_inode = path->dentry->d_inode; |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 180 | file->f_mapping = path->dentry->d_inode->i_mapping; |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 181 | file->f_mode = mode; |
| 182 | file->f_op = fop; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 183 | |
| 184 | /* |
| 185 | * These mounts don't really matter in practice |
| 186 | * for r/o bind mounts. They aren't userspace- |
| 187 | * visible. We do this for consistency, and so |
| 188 | * that we can do debugging checks at __fput() |
| 189 | */ |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 190 | if ((mode & FMODE_WRITE) && !special_file(path->dentry->d_inode->i_mode)) { |
Dave Hansen | ad775f5 | 2008-02-15 14:38:01 -0800 | [diff] [blame] | 191 | file_take_write(file); |
Roland Dreier | 385e3ed | 2009-12-16 12:48:44 -0800 | [diff] [blame] | 192 | WARN_ON(mnt_clone_write(path->mnt)); |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 193 | } |
Mimi Zohar | 890275b5 | 2010-11-02 10:13:07 -0400 | [diff] [blame] | 194 | if ((mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ) |
| 195 | i_readcount_inc(path->dentry->d_inode); |
Al Viro | 3d1e463 | 2009-08-08 23:56:29 +0400 | [diff] [blame] | 196 | return file; |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 197 | } |
Roland Dreier | 73efc46 | 2009-12-16 12:43:11 -0800 | [diff] [blame] | 198 | EXPORT_SYMBOL(alloc_file); |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 199 | |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 200 | /** |
| 201 | * drop_file_write_access - give up ability to write to a file |
| 202 | * @file: the file to which we will stop writing |
| 203 | * |
| 204 | * This is a central place which will give up the ability |
| 205 | * to write to @file, along with access to write through |
| 206 | * its vfsmount. |
| 207 | */ |
Al Viro | b57ce96 | 2012-02-12 02:38:16 -0500 | [diff] [blame] | 208 | static void drop_file_write_access(struct file *file) |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 209 | { |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 210 | struct vfsmount *mnt = file->f_path.mnt; |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 211 | struct dentry *dentry = file->f_path.dentry; |
| 212 | struct inode *inode = dentry->d_inode; |
| 213 | |
| 214 | put_write_access(inode); |
Dave Hansen | ad775f5 | 2008-02-15 14:38:01 -0800 | [diff] [blame] | 215 | |
| 216 | if (special_file(inode->i_mode)) |
| 217 | return; |
| 218 | if (file_check_writeable(file) != 0) |
| 219 | return; |
Jan Kara | eb04c28 | 2012-06-12 16:20:35 +0200 | [diff] [blame] | 220 | __mnt_drop_write(mnt); |
Dave Hansen | ad775f5 | 2008-02-15 14:38:01 -0800 | [diff] [blame] | 221 | file_release_write(file); |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 222 | } |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 223 | |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 224 | /* the real guts of fput() - releasing the last reference to file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | */ |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 226 | static void __fput(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 228 | struct dentry *dentry = file->f_path.dentry; |
| 229 | struct vfsmount *mnt = file->f_path.mnt; |
David Howells | c77cece | 2013-06-13 23:37:49 +0100 | [diff] [blame] | 230 | struct inode *inode = file->f_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
| 232 | might_sleep(); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 233 | |
| 234 | fsnotify_close(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | /* |
| 236 | * The function eventpoll_release() should be the first called |
| 237 | * in the file cleanup chain. |
| 238 | */ |
| 239 | eventpoll_release(file); |
| 240 | locks_remove_flock(file); |
| 241 | |
Al Viro | 233e70f | 2008-10-31 23:28:30 +0000 | [diff] [blame] | 242 | if (unlikely(file->f_flags & FASYNC)) { |
| 243 | if (file->f_op && file->f_op->fasync) |
| 244 | file->f_op->fasync(-1, file, 0); |
| 245 | } |
Mimi Zohar | 4199d35 | 2011-03-16 22:48:43 -0400 | [diff] [blame] | 246 | ima_file_free(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | if (file->f_op && file->f_op->release) |
| 248 | file->f_op->release(inode, file); |
| 249 | security_file_free(file); |
Miklos Szeredi | 60ed8cf | 2011-03-16 18:17:54 +0100 | [diff] [blame] | 250 | if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL && |
| 251 | !(file->f_mode & FMODE_PATH))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | cdev_put(inode->i_cdev); |
Miklos Szeredi | 60ed8cf | 2011-03-16 18:17:54 +0100 | [diff] [blame] | 253 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | fops_put(file->f_op); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 255 | put_pid(file->f_owner.pid); |
Mimi Zohar | 890275b5 | 2010-11-02 10:13:07 -0400 | [diff] [blame] | 256 | if ((file->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ) |
| 257 | i_readcount_dec(inode); |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 258 | if (file->f_mode & FMODE_WRITE) |
| 259 | drop_file_write_access(file); |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 260 | file->f_path.dentry = NULL; |
| 261 | file->f_path.mnt = NULL; |
Al Viro | dd37978 | 2013-03-01 19:48:30 -0500 | [diff] [blame] | 262 | file->f_inode = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | file_free(file); |
| 264 | dput(dentry); |
| 265 | mntput(mnt); |
| 266 | } |
| 267 | |
Oleg Nesterov | 4f5e65a | 2013-07-08 14:24:16 -0700 | [diff] [blame] | 268 | static LLIST_HEAD(delayed_fput_list); |
Al Viro | 4a9d4b0 | 2012-06-24 09:56:45 +0400 | [diff] [blame] | 269 | static void delayed_fput(struct work_struct *unused) |
| 270 | { |
Oleg Nesterov | 4f5e65a | 2013-07-08 14:24:16 -0700 | [diff] [blame] | 271 | struct llist_node *node = llist_del_all(&delayed_fput_list); |
| 272 | struct llist_node *next; |
| 273 | |
| 274 | for (; node; node = next) { |
| 275 | next = llist_next(node); |
| 276 | __fput(llist_entry(node, struct file, f_u.fu_llist)); |
Al Viro | 4a9d4b0 | 2012-06-24 09:56:45 +0400 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | |
| 280 | static void ____fput(struct callback_head *work) |
| 281 | { |
| 282 | __fput(container_of(work, struct file, f_u.fu_rcuhead)); |
| 283 | } |
| 284 | |
| 285 | /* |
| 286 | * If kernel thread really needs to have the final fput() it has done |
| 287 | * to complete, call this. The only user right now is the boot - we |
| 288 | * *do* need to make sure our writes to binaries on initramfs has |
| 289 | * not left us with opened struct file waiting for __fput() - execve() |
| 290 | * won't work without that. Please, don't add more callers without |
| 291 | * very good reasons; in particular, never call that with locks |
| 292 | * held and never call that from a thread that might need to do |
| 293 | * some work on any kind of umount. |
| 294 | */ |
| 295 | void flush_delayed_fput(void) |
| 296 | { |
| 297 | delayed_fput(NULL); |
| 298 | } |
| 299 | |
| 300 | static DECLARE_WORK(delayed_fput_work, delayed_fput); |
| 301 | |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 302 | void fput(struct file *file) |
| 303 | { |
Al Viro | 4a9d4b0 | 2012-06-24 09:56:45 +0400 | [diff] [blame] | 304 | if (atomic_long_dec_and_test(&file->f_count)) { |
| 305 | struct task_struct *task = current; |
Oleg Nesterov | e7b2c40 | 2013-06-14 21:09:47 +0200 | [diff] [blame] | 306 | |
Al Viro | 4a9d4b0 | 2012-06-24 09:56:45 +0400 | [diff] [blame] | 307 | file_sb_list_del(file); |
Oleg Nesterov | e7b2c40 | 2013-06-14 21:09:47 +0200 | [diff] [blame] | 308 | if (likely(!in_interrupt() && !(task->flags & PF_KTHREAD))) { |
| 309 | init_task_work(&file->f_u.fu_rcuhead, ____fput); |
| 310 | if (!task_work_add(task, &file->f_u.fu_rcuhead, true)) |
| 311 | return; |
Andrew Morton | 6437250 | 2013-07-08 14:24:15 -0700 | [diff] [blame] | 312 | /* |
| 313 | * After this task has run exit_task_work(), |
Andrew Morton | be49b30 | 2013-09-11 14:24:34 -0700 | [diff] [blame] | 314 | * task_work_add() will fail. Fall through to delayed |
Andrew Morton | 6437250 | 2013-07-08 14:24:15 -0700 | [diff] [blame] | 315 | * fput to avoid leaking *file. |
| 316 | */ |
Al Viro | 4a9d4b0 | 2012-06-24 09:56:45 +0400 | [diff] [blame] | 317 | } |
Oleg Nesterov | 4f5e65a | 2013-07-08 14:24:16 -0700 | [diff] [blame] | 318 | |
| 319 | if (llist_add(&file->f_u.fu_llist, &delayed_fput_list)) |
| 320 | schedule_work(&delayed_fput_work); |
Al Viro | 4a9d4b0 | 2012-06-24 09:56:45 +0400 | [diff] [blame] | 321 | } |
| 322 | } |
| 323 | |
| 324 | /* |
| 325 | * synchronous analog of fput(); for kernel threads that might be needed |
| 326 | * in some umount() (and thus can't use flush_delayed_fput() without |
| 327 | * risking deadlocks), need to wait for completion of __fput() and know |
| 328 | * for this specific struct file it won't involve anything that would |
| 329 | * need them. Use only if you really need it - at the very least, |
| 330 | * don't blindly convert fput() by kernel thread to that. |
| 331 | */ |
| 332 | void __fput_sync(struct file *file) |
| 333 | { |
| 334 | if (atomic_long_dec_and_test(&file->f_count)) { |
| 335 | struct task_struct *task = current; |
| 336 | file_sb_list_del(file); |
| 337 | BUG_ON(!(task->flags & PF_KTHREAD)); |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 338 | __fput(file); |
Al Viro | 4a9d4b0 | 2012-06-24 09:56:45 +0400 | [diff] [blame] | 339 | } |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | EXPORT_SYMBOL(fput); |
| 343 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | void put_filp(struct file *file) |
| 345 | { |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 346 | if (atomic_long_dec_and_test(&file->f_count)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | security_file_free(file); |
Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 348 | file_sb_list_del(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | file_free(file); |
| 350 | } |
| 351 | } |
| 352 | |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 353 | static inline int file_list_cpu(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | { |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 355 | #ifdef CONFIG_SMP |
| 356 | return file->f_sb_list_cpu; |
| 357 | #else |
| 358 | return smp_processor_id(); |
| 359 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | } |
| 361 | |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 362 | /* helper for file_sb_list_add to reduce ifdefs */ |
| 363 | static inline void __file_sb_list_add(struct file *file, struct super_block *sb) |
| 364 | { |
| 365 | struct list_head *list; |
| 366 | #ifdef CONFIG_SMP |
| 367 | int cpu; |
| 368 | cpu = smp_processor_id(); |
| 369 | file->f_sb_list_cpu = cpu; |
| 370 | list = per_cpu_ptr(sb->s_files, cpu); |
| 371 | #else |
| 372 | list = &sb->s_files; |
| 373 | #endif |
| 374 | list_add(&file->f_u.fu_list, list); |
| 375 | } |
| 376 | |
| 377 | /** |
| 378 | * file_sb_list_add - add a file to the sb's file list |
| 379 | * @file: file to add |
| 380 | * @sb: sb to add it to |
| 381 | * |
| 382 | * Use this function to associate a file with the superblock of the inode it |
| 383 | * refers to. |
| 384 | */ |
| 385 | void file_sb_list_add(struct file *file, struct super_block *sb) |
| 386 | { |
Al Viro | 184caca | 2013-08-30 15:46:46 -0400 | [diff] [blame] | 387 | if (likely(!(file->f_mode & FMODE_WRITE))) |
| 388 | return; |
| 389 | if (!S_ISREG(file_inode(file)->i_mode)) |
| 390 | return; |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 391 | lg_local_lock(&files_lglock); |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 392 | __file_sb_list_add(file, sb); |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 393 | lg_local_unlock(&files_lglock); |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | /** |
| 397 | * file_sb_list_del - remove a file from the sb's file list |
| 398 | * @file: file to remove |
| 399 | * @sb: sb to remove it from |
| 400 | * |
| 401 | * Use this function to remove a file from its superblock. |
| 402 | */ |
Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 403 | void file_sb_list_del(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | { |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 405 | if (!list_empty(&file->f_u.fu_list)) { |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 406 | lg_local_lock_cpu(&files_lglock, file_list_cpu(file)); |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 407 | list_del_init(&file->f_u.fu_list); |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 408 | lg_local_unlock_cpu(&files_lglock, file_list_cpu(file)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | } |
| 410 | } |
| 411 | |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 412 | #ifdef CONFIG_SMP |
| 413 | |
| 414 | /* |
| 415 | * These macros iterate all files on all CPUs for a given superblock. |
| 416 | * files_lglock must be held globally. |
| 417 | */ |
| 418 | #define do_file_list_for_each_entry(__sb, __file) \ |
| 419 | { \ |
| 420 | int i; \ |
| 421 | for_each_possible_cpu(i) { \ |
| 422 | struct list_head *list; \ |
| 423 | list = per_cpu_ptr((__sb)->s_files, i); \ |
| 424 | list_for_each_entry((__file), list, f_u.fu_list) |
| 425 | |
| 426 | #define while_file_list_for_each_entry \ |
| 427 | } \ |
| 428 | } |
| 429 | |
| 430 | #else |
| 431 | |
| 432 | #define do_file_list_for_each_entry(__sb, __file) \ |
| 433 | { \ |
| 434 | struct list_head *list; \ |
| 435 | list = &(sb)->s_files; \ |
| 436 | list_for_each_entry((__file), list, f_u.fu_list) |
| 437 | |
| 438 | #define while_file_list_for_each_entry \ |
| 439 | } |
| 440 | |
| 441 | #endif |
| 442 | |
npiggin@suse.de | 864d7c4 | 2009-04-26 20:25:56 +1000 | [diff] [blame] | 443 | /** |
| 444 | * mark_files_ro - mark all files read-only |
| 445 | * @sb: superblock in question |
| 446 | * |
| 447 | * All files are marked read-only. We don't care about pending |
| 448 | * delete files so this should be used in 'force' mode only. |
| 449 | */ |
| 450 | void mark_files_ro(struct super_block *sb) |
| 451 | { |
| 452 | struct file *f; |
| 453 | |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 454 | lg_global_lock(&files_lglock); |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 455 | do_file_list_for_each_entry(sb, f) { |
npiggin@suse.de | 864d7c4 | 2009-04-26 20:25:56 +1000 | [diff] [blame] | 456 | if (!file_count(f)) |
| 457 | continue; |
| 458 | if (!(f->f_mode & FMODE_WRITE)) |
| 459 | continue; |
Wu Fengguang | 42e4960 | 2010-03-05 13:42:01 -0800 | [diff] [blame] | 460 | spin_lock(&f->f_lock); |
npiggin@suse.de | 864d7c4 | 2009-04-26 20:25:56 +1000 | [diff] [blame] | 461 | f->f_mode &= ~FMODE_WRITE; |
Wu Fengguang | 42e4960 | 2010-03-05 13:42:01 -0800 | [diff] [blame] | 462 | spin_unlock(&f->f_lock); |
npiggin@suse.de | 864d7c4 | 2009-04-26 20:25:56 +1000 | [diff] [blame] | 463 | if (file_check_writeable(f) != 0) |
| 464 | continue; |
Jan Kara | 72651ca | 2012-12-05 14:40:14 +0100 | [diff] [blame] | 465 | __mnt_drop_write(f->f_path.mnt); |
npiggin@suse.de | 864d7c4 | 2009-04-26 20:25:56 +1000 | [diff] [blame] | 466 | file_release_write(f); |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 467 | } while_file_list_for_each_entry; |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 468 | lg_global_unlock(&files_lglock); |
npiggin@suse.de | 864d7c4 | 2009-04-26 20:25:56 +1000 | [diff] [blame] | 469 | } |
| 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | void __init files_init(unsigned long mempages) |
| 472 | { |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 473 | unsigned long n; |
Eric Dumazet | b6b3fde | 2008-12-10 09:35:45 -0800 | [diff] [blame] | 474 | |
| 475 | filp_cachep = kmem_cache_create("filp", sizeof(struct file), 0, |
| 476 | SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL); |
| 477 | |
| 478 | /* |
| 479 | * One file with associated inode and dcache is very roughly 1K. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | * Per default don't use more than 10% of our memory for files. |
| 481 | */ |
| 482 | |
| 483 | n = (mempages * (PAGE_SIZE / 1024)) / 10; |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 484 | files_stat.max_files = max_t(unsigned long, n, NR_FILE); |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 485 | files_defer_init(); |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 486 | lg_lock_init(&files_lglock, "files_lglock"); |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 487 | percpu_counter_init(&nr_files, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | } |