blob: 6f0e62ecfdddfd29bba313e1387ab06656acf0e5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Viro9f3acc32008-04-24 07:44:08 -040011#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
13#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/fs.h>
15#include <linux/security.h>
16#include <linux/eventpoll.h>
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070017#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/mount.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080019#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/cdev.h>
Robert Love0eeca282005-07-12 17:06:03 -040021#include <linux/fsnotify.h>
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080022#include <linux/sysctl.h>
23#include <linux/percpu_counter.h>
Al Viro0552f872009-12-16 04:53:03 -050024#include <linux/ima.h>
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080025
26#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Eric Parise81e3f42009-12-04 15:47:36 -050028#include "internal.h"
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/* sysctl tunables... */
31struct files_stat_struct files_stat = {
32 .max_files = NR_FILE
33};
34
Nick Pigginee2ffa02010-08-18 04:37:35 +100035static __cacheline_aligned_in_smp DEFINE_SPINLOCK(files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Eric Dumazetb6b3fde2008-12-10 09:35:45 -080037/* SLAB cache for file structures */
38static struct kmem_cache *filp_cachep __read_mostly;
39
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080040static struct percpu_counter nr_files __cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070042static inline void file_free_rcu(struct rcu_head *head)
43{
David Howellsd76b0d92008-11-14 10:39:25 +110044 struct file *f = container_of(head, struct file, f_u.fu_rcuhead);
45
46 put_cred(f->f_cred);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070047 kmem_cache_free(filp_cachep, f);
48}
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static inline void file_free(struct file *f)
51{
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080052 percpu_counter_dec(&nr_files);
Dave Hansenad775f52008-02-15 14:38:01 -080053 file_check_state(f);
Eric Dumazet2f512012005-10-30 15:02:16 -080054 call_rcu(&f->f_u.fu_rcuhead, file_free_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080057/*
58 * Return the total number of open files in the system
59 */
60static int get_nr_files(void)
61{
62 return percpu_counter_read_positive(&nr_files);
63}
64
65/*
66 * Return the maximum number of open files in the system
67 */
68int get_max_files(void)
69{
70 return files_stat.max_files;
71}
72EXPORT_SYMBOL_GPL(get_max_files);
73
74/*
75 * Handle nr_files sysctl
76 */
77#if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070078int proc_nr_files(ctl_table *table, int write,
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080079 void __user *buffer, size_t *lenp, loff_t *ppos)
80{
81 files_stat.nr_files = get_nr_files();
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070082 return proc_dointvec(table, write, buffer, lenp, ppos);
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080083}
84#else
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070085int proc_nr_files(ctl_table *table, int write,
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080086 void __user *buffer, size_t *lenp, loff_t *ppos)
87{
88 return -ENOSYS;
89}
90#endif
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* Find an unused file structure and return a pointer to it.
93 * Returns NULL, if there are no more free file structures or
94 * we run out of memory.
Dave Hansen430e2852008-02-15 14:37:26 -080095 *
96 * Be very careful using this. You are responsible for
97 * getting write access to any mount that you might assign
98 * to this filp, if it is opened for write. If this is not
99 * done, you will imbalance int the mount's writer count
100 * and a warning at __fput() time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 */
102struct file *get_empty_filp(void)
103{
David Howells86a264a2008-11-14 10:39:18 +1100104 const struct cred *cred = current_cred();
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700105 static int old_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 struct file * f;
107
108 /*
109 * Privileged users can go above max_files
110 */
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800111 if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) {
112 /*
113 * percpu_counters are inaccurate. Do an expensive check before
114 * we go and fail.
115 */
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -0700116 if (percpu_counter_sum_positive(&nr_files) >= files_stat.max_files)
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800117 goto over;
118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Denis Cheng4975e452007-10-16 23:26:19 -0700120 f = kmem_cache_zalloc(filp_cachep, GFP_KERNEL);
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700121 if (f == NULL)
122 goto fail;
123
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800124 percpu_counter_inc(&nr_files);
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700125 if (security_file_alloc(f))
126 goto fail_sec;
127
Eric Dumazet2f512012005-10-30 15:02:16 -0800128 INIT_LIST_HEAD(&f->f_u.fu_list);
Al Viro516e0cc2008-07-26 00:39:17 -0400129 atomic_long_set(&f->f_count, 1);
Benjamin LaHaise5a6b79512006-03-23 03:01:03 -0800130 rwlock_init(&f->f_owner.lock);
David Howellsd76b0d92008-11-14 10:39:25 +1100131 f->f_cred = get_cred(cred);
Jonathan Corbet68499912009-02-06 13:52:43 -0700132 spin_lock_init(&f->f_lock);
Benjamin LaHaise5a6b79512006-03-23 03:01:03 -0800133 eventpoll_init_file(f);
134 /* f->f_version: 0 */
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700135 return f;
136
137over:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /* Ran out of filps - report that */
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800139 if (get_nr_files() > old_max) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 printk(KERN_INFO "VFS: file-max limit %d reached\n",
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800141 get_max_files());
142 old_max = get_nr_files();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700144 goto fail;
145
146fail_sec:
147 file_free(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148fail:
149 return NULL;
150}
151
Dave Hansence8d2cd2007-10-16 23:31:13 -0700152/**
153 * alloc_file - allocate and initialize a 'struct file'
154 * @mnt: the vfsmount on which the file will reside
155 * @dentry: the dentry representing the new file
156 * @mode: the mode with which the new file will be opened
157 * @fop: the 'struct file_operations' for the new file
158 *
159 * Use this instead of get_empty_filp() to get a new
160 * 'struct file'. Do so because of the same initialization
161 * pitfalls reasons listed for init_file(). This is a
162 * preferred interface to using init_file().
163 *
164 * If all the callers of init_file() are eliminated, its
165 * code should be moved into this function.
166 */
Al Viro2c48b9c2009-08-09 00:52:35 +0400167struct file *alloc_file(struct path *path, fmode_t mode,
168 const struct file_operations *fop)
Dave Hansence8d2cd2007-10-16 23:31:13 -0700169{
170 struct file *file;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700171
172 file = get_empty_filp();
173 if (!file)
174 return NULL;
175
Al Viro2c48b9c2009-08-09 00:52:35 +0400176 file->f_path = *path;
177 file->f_mapping = path->dentry->d_inode->i_mapping;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700178 file->f_mode = mode;
179 file->f_op = fop;
Dave Hansen4a3fd212008-02-15 14:37:48 -0800180
181 /*
182 * These mounts don't really matter in practice
183 * for r/o bind mounts. They aren't userspace-
184 * visible. We do this for consistency, and so
185 * that we can do debugging checks at __fput()
186 */
Al Viro2c48b9c2009-08-09 00:52:35 +0400187 if ((mode & FMODE_WRITE) && !special_file(path->dentry->d_inode->i_mode)) {
Dave Hansenad775f52008-02-15 14:38:01 -0800188 file_take_write(file);
Roland Dreier385e3ed2009-12-16 12:48:44 -0800189 WARN_ON(mnt_clone_write(path->mnt));
Dave Hansen4a3fd212008-02-15 14:37:48 -0800190 }
Al Viro0552f872009-12-16 04:53:03 -0500191 ima_counts_get(file);
Al Viro3d1e4632009-08-08 23:56:29 +0400192 return file;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700193}
Roland Dreier73efc462009-12-16 12:43:11 -0800194EXPORT_SYMBOL(alloc_file);
Dave Hansence8d2cd2007-10-16 23:31:13 -0700195
Dave Hansenaceaf782008-02-15 14:37:31 -0800196/**
197 * drop_file_write_access - give up ability to write to a file
198 * @file: the file to which we will stop writing
199 *
200 * This is a central place which will give up the ability
201 * to write to @file, along with access to write through
202 * its vfsmount.
203 */
204void drop_file_write_access(struct file *file)
205{
Dave Hansen4a3fd212008-02-15 14:37:48 -0800206 struct vfsmount *mnt = file->f_path.mnt;
Dave Hansenaceaf782008-02-15 14:37:31 -0800207 struct dentry *dentry = file->f_path.dentry;
208 struct inode *inode = dentry->d_inode;
209
210 put_write_access(inode);
Dave Hansenad775f52008-02-15 14:38:01 -0800211
212 if (special_file(inode->i_mode))
213 return;
214 if (file_check_writeable(file) != 0)
215 return;
216 mnt_drop_write(mnt);
217 file_release_write(file);
Dave Hansenaceaf782008-02-15 14:37:31 -0800218}
219EXPORT_SYMBOL_GPL(drop_file_write_access);
220
Al Virod7065da2010-05-26 15:13:55 -0400221/* the real guts of fput() - releasing the last reference to file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 */
Al Virod7065da2010-05-26 15:13:55 -0400223static void __fput(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800225 struct dentry *dentry = file->f_path.dentry;
226 struct vfsmount *mnt = file->f_path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 struct inode *inode = dentry->d_inode;
228
229 might_sleep();
Robert Love0eeca282005-07-12 17:06:03 -0400230
231 fsnotify_close(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /*
233 * The function eventpoll_release() should be the first called
234 * in the file cleanup chain.
235 */
236 eventpoll_release(file);
237 locks_remove_flock(file);
238
Al Viro233e70f2008-10-31 23:28:30 +0000239 if (unlikely(file->f_flags & FASYNC)) {
240 if (file->f_op && file->f_op->fasync)
241 file->f_op->fasync(-1, file, 0);
242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (file->f_op && file->f_op->release)
244 file->f_op->release(inode, file);
245 security_file_free(file);
Al Viro89068c52010-02-07 03:07:29 -0500246 ima_file_free(file);
Theodore Ts'o577c4eb2006-09-27 01:50:49 -0700247 if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 cdev_put(inode->i_cdev);
249 fops_put(file->f_op);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700250 put_pid(file->f_owner.pid);
Nick Pigginee2ffa02010-08-18 04:37:35 +1000251 file_sb_list_del(file);
Dave Hansenaceaf782008-02-15 14:37:31 -0800252 if (file->f_mode & FMODE_WRITE)
253 drop_file_write_access(file);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800254 file->f_path.dentry = NULL;
255 file->f_path.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 file_free(file);
257 dput(dentry);
258 mntput(mnt);
259}
260
Al Virod7065da2010-05-26 15:13:55 -0400261void fput(struct file *file)
262{
263 if (atomic_long_dec_and_test(&file->f_count))
264 __fput(file);
265}
266
267EXPORT_SYMBOL(fput);
268
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800269struct file *fget(unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 struct file *file;
272 struct files_struct *files = current->files;
273
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700274 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 file = fcheck_files(files, fd);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700276 if (file) {
Al Viro516e0cc2008-07-26 00:39:17 -0400277 if (!atomic_long_inc_not_zero(&file->f_count)) {
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700278 /* File object ref couldn't be taken */
279 rcu_read_unlock();
280 return NULL;
281 }
282 }
283 rcu_read_unlock();
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return file;
286}
287
288EXPORT_SYMBOL(fget);
289
290/*
Tony Battersby58939472010-08-10 18:01:29 -0700291 * Lightweight file lookup - no refcnt increment if fd table isn't shared.
292 *
293 * You can use this instead of fget if you satisfy all of the following
294 * conditions:
295 * 1) You must call fput_light before exiting the syscall and returning control
296 * to userspace (i.e. you cannot remember the returned struct file * after
297 * returning to userspace).
298 * 2) You must not call filp_close on the returned struct file * in between
299 * calls to fget_light and fput_light.
300 * 3) You must not clone the current task in between the calls to fget_light
301 * and fput_light.
302 *
303 * The fput_needed flag returned by fget_light should be passed to the
304 * corresponding fput_light.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800306struct file *fget_light(unsigned int fd, int *fput_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 struct file *file;
309 struct files_struct *files = current->files;
310
311 *fput_needed = 0;
312 if (likely((atomic_read(&files->count) == 1))) {
313 file = fcheck_files(files, fd);
314 } else {
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700315 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 file = fcheck_files(files, fd);
317 if (file) {
Al Viro516e0cc2008-07-26 00:39:17 -0400318 if (atomic_long_inc_not_zero(&file->f_count))
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700319 *fput_needed = 1;
320 else
321 /* Didn't get the reference, someone's freed */
322 file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700324 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return file;
328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330void put_filp(struct file *file)
331{
Al Viro516e0cc2008-07-26 00:39:17 -0400332 if (atomic_long_dec_and_test(&file->f_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 security_file_free(file);
Nick Pigginee2ffa02010-08-18 04:37:35 +1000334 file_sb_list_del(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 file_free(file);
336 }
337}
338
Nick Pigginee2ffa02010-08-18 04:37:35 +1000339void file_sb_list_add(struct file *file, struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Nick Pigginee2ffa02010-08-18 04:37:35 +1000341 spin_lock(&files_lock);
342 BUG_ON(!list_empty(&file->f_u.fu_list));
343 list_add(&file->f_u.fu_list, &sb->s_files);
344 spin_unlock(&files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Nick Pigginee2ffa02010-08-18 04:37:35 +1000347void file_sb_list_del(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Eric Dumazet2f512012005-10-30 15:02:16 -0800349 if (!list_empty(&file->f_u.fu_list)) {
Nick Pigginee2ffa02010-08-18 04:37:35 +1000350 spin_lock(&files_lock);
Eric Dumazet2f512012005-10-30 15:02:16 -0800351 list_del_init(&file->f_u.fu_list);
Nick Pigginee2ffa02010-08-18 04:37:35 +1000352 spin_unlock(&files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354}
355
356int fs_may_remount_ro(struct super_block *sb)
357{
Matthias Kaehlckecfdaf9e2007-10-18 23:39:56 -0700358 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 /* Check that no files are currently opened for writing. */
Nick Pigginee2ffa02010-08-18 04:37:35 +1000361 spin_lock(&files_lock);
Matthias Kaehlckecfdaf9e2007-10-18 23:39:56 -0700362 list_for_each_entry(file, &sb->s_files, f_u.fu_list) {
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800363 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* File with pending delete? */
366 if (inode->i_nlink == 0)
367 goto too_bad;
368
369 /* Writeable file? */
370 if (S_ISREG(inode->i_mode) && (file->f_mode & FMODE_WRITE))
371 goto too_bad;
372 }
Nick Pigginee2ffa02010-08-18 04:37:35 +1000373 spin_unlock(&files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return 1; /* Tis' cool bro. */
375too_bad:
Nick Pigginee2ffa02010-08-18 04:37:35 +1000376 spin_unlock(&files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return 0;
378}
379
npiggin@suse.de864d7c42009-04-26 20:25:56 +1000380/**
381 * mark_files_ro - mark all files read-only
382 * @sb: superblock in question
383 *
384 * All files are marked read-only. We don't care about pending
385 * delete files so this should be used in 'force' mode only.
386 */
387void mark_files_ro(struct super_block *sb)
388{
389 struct file *f;
390
391retry:
Nick Pigginee2ffa02010-08-18 04:37:35 +1000392 spin_lock(&files_lock);
npiggin@suse.de864d7c42009-04-26 20:25:56 +1000393 list_for_each_entry(f, &sb->s_files, f_u.fu_list) {
394 struct vfsmount *mnt;
395 if (!S_ISREG(f->f_path.dentry->d_inode->i_mode))
396 continue;
397 if (!file_count(f))
398 continue;
399 if (!(f->f_mode & FMODE_WRITE))
400 continue;
Wu Fengguang42e49602010-03-05 13:42:01 -0800401 spin_lock(&f->f_lock);
npiggin@suse.de864d7c42009-04-26 20:25:56 +1000402 f->f_mode &= ~FMODE_WRITE;
Wu Fengguang42e49602010-03-05 13:42:01 -0800403 spin_unlock(&f->f_lock);
npiggin@suse.de864d7c42009-04-26 20:25:56 +1000404 if (file_check_writeable(f) != 0)
405 continue;
406 file_release_write(f);
407 mnt = mntget(f->f_path.mnt);
Nick Pigginee2ffa02010-08-18 04:37:35 +1000408 /* This can sleep, so we can't hold the spinlock. */
409 spin_unlock(&files_lock);
npiggin@suse.de864d7c42009-04-26 20:25:56 +1000410 mnt_drop_write(mnt);
411 mntput(mnt);
412 goto retry;
413 }
Nick Pigginee2ffa02010-08-18 04:37:35 +1000414 spin_unlock(&files_lock);
npiggin@suse.de864d7c42009-04-26 20:25:56 +1000415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417void __init files_init(unsigned long mempages)
418{
419 int n;
Eric Dumazetb6b3fde2008-12-10 09:35:45 -0800420
421 filp_cachep = kmem_cache_create("filp", sizeof(struct file), 0,
422 SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
423
424 /*
425 * One file with associated inode and dcache is very roughly 1K.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 * Per default don't use more than 10% of our memory for files.
427 */
428
429 n = (mempages * (PAGE_SIZE / 1024)) / 10;
430 files_stat.max_files = n;
431 if (files_stat.max_files < NR_FILE)
432 files_stat.max_files = NR_FILE;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700433 files_defer_init();
Mingming Cao0216bfc2006-06-23 02:05:41 -0700434 percpu_counter_init(&nr_files, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}