blob: b74a8e1da913c95033bc494e39c6c9f0ff87316d [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>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050016#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/eventpoll.h>
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070018#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/mount.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080020#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/cdev.h>
Robert Love0eeca282005-07-12 17:06:03 -040022#include <linux/fsnotify.h>
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080023#include <linux/sysctl.h>
24#include <linux/percpu_counter.h>
25
26#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/* sysctl tunables... */
29struct files_stat_struct files_stat = {
30 .max_files = NR_FILE
31};
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/* public. Not pretty! */
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080034__cacheline_aligned_in_smp DEFINE_SPINLOCK(files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Eric Dumazetb6b3fde2008-12-10 09:35:45 -080036/* SLAB cache for file structures */
37static struct kmem_cache *filp_cachep __read_mostly;
38
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080039static struct percpu_counter nr_files __cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070041static inline void file_free_rcu(struct rcu_head *head)
42{
David Howellsd76b0d92008-11-14 10:39:25 +110043 struct file *f = container_of(head, struct file, f_u.fu_rcuhead);
44
45 put_cred(f->f_cred);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070046 kmem_cache_free(filp_cachep, f);
47}
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static inline void file_free(struct file *f)
50{
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080051 percpu_counter_dec(&nr_files);
Dave Hansenad775f52008-02-15 14:38:01 -080052 file_check_state(f);
Eric Dumazet2f512012005-10-30 15:02:16 -080053 call_rcu(&f->f_u.fu_rcuhead, file_free_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080056/*
57 * Return the total number of open files in the system
58 */
59static int get_nr_files(void)
60{
61 return percpu_counter_read_positive(&nr_files);
62}
63
64/*
65 * Return the maximum number of open files in the system
66 */
67int get_max_files(void)
68{
69 return files_stat.max_files;
70}
71EXPORT_SYMBOL_GPL(get_max_files);
72
73/*
74 * Handle nr_files sysctl
75 */
76#if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
77int proc_nr_files(ctl_table *table, int write, struct file *filp,
78 void __user *buffer, size_t *lenp, loff_t *ppos)
79{
80 files_stat.nr_files = get_nr_files();
81 return proc_dointvec(table, write, filp, buffer, lenp, ppos);
82}
83#else
84int proc_nr_files(ctl_table *table, int write, struct file *filp,
85 void __user *buffer, size_t *lenp, loff_t *ppos)
86{
87 return -ENOSYS;
88}
89#endif
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* Find an unused file structure and return a pointer to it.
92 * Returns NULL, if there are no more free file structures or
93 * we run out of memory.
Dave Hansen430e2852008-02-15 14:37:26 -080094 *
95 * Be very careful using this. You are responsible for
96 * getting write access to any mount that you might assign
97 * to this filp, if it is opened for write. If this is not
98 * done, you will imbalance int the mount's writer count
99 * and a warning at __fput() time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 */
101struct file *get_empty_filp(void)
102{
David Howells86a264a2008-11-14 10:39:18 +1100103 const struct cred *cred = current_cred();
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700104 static int old_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 struct file * f;
106
107 /*
108 * Privileged users can go above max_files
109 */
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800110 if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) {
111 /*
112 * percpu_counters are inaccurate. Do an expensive check before
113 * we go and fail.
114 */
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -0700115 if (percpu_counter_sum_positive(&nr_files) >= files_stat.max_files)
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800116 goto over;
117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Denis Cheng4975e452007-10-16 23:26:19 -0700119 f = kmem_cache_zalloc(filp_cachep, GFP_KERNEL);
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700120 if (f == NULL)
121 goto fail;
122
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800123 percpu_counter_inc(&nr_files);
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700124 if (security_file_alloc(f))
125 goto fail_sec;
126
Eric Dumazet2f512012005-10-30 15:02:16 -0800127 INIT_LIST_HEAD(&f->f_u.fu_list);
Al Viro516e0cc2008-07-26 00:39:17 -0400128 atomic_long_set(&f->f_count, 1);
Benjamin LaHaise5a6b79512006-03-23 03:01:03 -0800129 rwlock_init(&f->f_owner.lock);
David Howellsd76b0d92008-11-14 10:39:25 +1100130 f->f_cred = get_cred(cred);
Jonathan Corbet68499912009-02-06 13:52:43 -0700131 spin_lock_init(&f->f_lock);
Benjamin LaHaise5a6b79512006-03-23 03:01:03 -0800132 eventpoll_init_file(f);
133 /* f->f_version: 0 */
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700134 return f;
135
136over:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 /* Ran out of filps - report that */
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800138 if (get_nr_files() > old_max) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 printk(KERN_INFO "VFS: file-max limit %d reached\n",
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800140 get_max_files());
141 old_max = get_nr_files();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700143 goto fail;
144
145fail_sec:
146 file_free(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147fail:
148 return NULL;
149}
150
151EXPORT_SYMBOL(get_empty_filp);
152
Dave Hansence8d2cd2007-10-16 23:31:13 -0700153/**
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 */
168struct file *alloc_file(struct vfsmount *mnt, struct dentry *dentry,
Al Viroaeb5d722008-09-02 15:28:45 -0400169 fmode_t mode, const struct file_operations *fop)
Dave Hansence8d2cd2007-10-16 23:31:13 -0700170{
171 struct file *file;
172 struct path;
173
174 file = get_empty_filp();
175 if (!file)
176 return NULL;
177
178 init_file(file, mnt, dentry, mode, fop);
179 return file;
180}
181EXPORT_SYMBOL(alloc_file);
182
183/**
184 * init_file - initialize a 'struct file'
185 * @file: the already allocated 'struct file' to initialized
186 * @mnt: the vfsmount on which the file resides
187 * @dentry: the dentry representing this file
188 * @mode: the mode the file is opened with
189 * @fop: the 'struct file_operations' for this file
190 *
191 * Use this instead of setting the members directly. Doing so
192 * avoids making mistakes like forgetting the mntget() or
193 * forgetting to take a write on the mnt.
194 *
195 * Note: This is a crappy interface. It is here to make
196 * merging with the existing users of get_empty_filp()
197 * who have complex failure logic easier. All users
198 * of this should be moving to alloc_file().
199 */
200int init_file(struct file *file, struct vfsmount *mnt, struct dentry *dentry,
Al Viroaeb5d722008-09-02 15:28:45 -0400201 fmode_t mode, const struct file_operations *fop)
Dave Hansence8d2cd2007-10-16 23:31:13 -0700202{
203 int error = 0;
204 file->f_path.dentry = dentry;
205 file->f_path.mnt = mntget(mnt);
206 file->f_mapping = dentry->d_inode->i_mapping;
207 file->f_mode = mode;
208 file->f_op = fop;
Dave Hansen4a3fd212008-02-15 14:37:48 -0800209
210 /*
211 * These mounts don't really matter in practice
212 * for r/o bind mounts. They aren't userspace-
213 * visible. We do this for consistency, and so
214 * that we can do debugging checks at __fput()
215 */
216 if ((mode & FMODE_WRITE) && !special_file(dentry->d_inode->i_mode)) {
Dave Hansenad775f52008-02-15 14:38:01 -0800217 file_take_write(file);
Dave Hansen4a3fd212008-02-15 14:37:48 -0800218 error = mnt_want_write(mnt);
219 WARN_ON(error);
220 }
Dave Hansence8d2cd2007-10-16 23:31:13 -0700221 return error;
222}
223EXPORT_SYMBOL(init_file);
224
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800225void fput(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Al Viro516e0cc2008-07-26 00:39:17 -0400227 if (atomic_long_dec_and_test(&file->f_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 __fput(file);
229}
230
231EXPORT_SYMBOL(fput);
232
Dave Hansenaceaf782008-02-15 14:37:31 -0800233/**
234 * drop_file_write_access - give up ability to write to a file
235 * @file: the file to which we will stop writing
236 *
237 * This is a central place which will give up the ability
238 * to write to @file, along with access to write through
239 * its vfsmount.
240 */
241void drop_file_write_access(struct file *file)
242{
Dave Hansen4a3fd212008-02-15 14:37:48 -0800243 struct vfsmount *mnt = file->f_path.mnt;
Dave Hansenaceaf782008-02-15 14:37:31 -0800244 struct dentry *dentry = file->f_path.dentry;
245 struct inode *inode = dentry->d_inode;
246
247 put_write_access(inode);
Dave Hansenad775f52008-02-15 14:38:01 -0800248
249 if (special_file(inode->i_mode))
250 return;
251 if (file_check_writeable(file) != 0)
252 return;
253 mnt_drop_write(mnt);
254 file_release_write(file);
Dave Hansenaceaf782008-02-15 14:37:31 -0800255}
256EXPORT_SYMBOL_GPL(drop_file_write_access);
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/* __fput is called from task context when aio completion releases the last
259 * last use of a struct file *. Do not use otherwise.
260 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800261void __fput(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800263 struct dentry *dentry = file->f_path.dentry;
264 struct vfsmount *mnt = file->f_path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 struct inode *inode = dentry->d_inode;
266
267 might_sleep();
Robert Love0eeca282005-07-12 17:06:03 -0400268
269 fsnotify_close(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /*
271 * The function eventpoll_release() should be the first called
272 * in the file cleanup chain.
273 */
274 eventpoll_release(file);
275 locks_remove_flock(file);
276
Al Viro233e70f2008-10-31 23:28:30 +0000277 if (unlikely(file->f_flags & FASYNC)) {
278 if (file->f_op && file->f_op->fasync)
279 file->f_op->fasync(-1, file, 0);
280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (file->f_op && file->f_op->release)
282 file->f_op->release(inode, file);
283 security_file_free(file);
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500284 ima_file_free(file);
Theodore Ts'o577c4eb2006-09-27 01:50:49 -0700285 if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 cdev_put(inode->i_cdev);
287 fops_put(file->f_op);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700288 put_pid(file->f_owner.pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 file_kill(file);
Dave Hansenaceaf782008-02-15 14:37:31 -0800290 if (file->f_mode & FMODE_WRITE)
291 drop_file_write_access(file);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800292 file->f_path.dentry = NULL;
293 file->f_path.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 file_free(file);
295 dput(dentry);
296 mntput(mnt);
297}
298
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800299struct file *fget(unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 struct file *file;
302 struct files_struct *files = current->files;
303
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700304 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 file = fcheck_files(files, fd);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700306 if (file) {
Al Viro516e0cc2008-07-26 00:39:17 -0400307 if (!atomic_long_inc_not_zero(&file->f_count)) {
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700308 /* File object ref couldn't be taken */
309 rcu_read_unlock();
310 return NULL;
311 }
312 }
313 rcu_read_unlock();
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return file;
316}
317
318EXPORT_SYMBOL(fget);
319
320/*
321 * Lightweight file lookup - no refcnt increment if fd table isn't shared.
322 * You can use this only if it is guranteed that the current task already
323 * holds a refcnt to that file. That check has to be done at fget() only
324 * and a flag is returned to be passed to the corresponding fput_light().
325 * There must not be a cloning between an fget_light/fput_light pair.
326 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800327struct file *fget_light(unsigned int fd, int *fput_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct file *file;
330 struct files_struct *files = current->files;
331
332 *fput_needed = 0;
333 if (likely((atomic_read(&files->count) == 1))) {
334 file = fcheck_files(files, fd);
335 } else {
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700336 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 file = fcheck_files(files, fd);
338 if (file) {
Al Viro516e0cc2008-07-26 00:39:17 -0400339 if (atomic_long_inc_not_zero(&file->f_count))
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700340 *fput_needed = 1;
341 else
342 /* Didn't get the reference, someone's freed */
343 file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700345 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return file;
349}
350
351
352void put_filp(struct file *file)
353{
Al Viro516e0cc2008-07-26 00:39:17 -0400354 if (atomic_long_dec_and_test(&file->f_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 security_file_free(file);
356 file_kill(file);
357 file_free(file);
358 }
359}
360
361void file_move(struct file *file, struct list_head *list)
362{
363 if (!list)
364 return;
365 file_list_lock();
Eric Dumazet2f512012005-10-30 15:02:16 -0800366 list_move(&file->f_u.fu_list, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 file_list_unlock();
368}
369
370void file_kill(struct file *file)
371{
Eric Dumazet2f512012005-10-30 15:02:16 -0800372 if (!list_empty(&file->f_u.fu_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 file_list_lock();
Eric Dumazet2f512012005-10-30 15:02:16 -0800374 list_del_init(&file->f_u.fu_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 file_list_unlock();
376 }
377}
378
379int fs_may_remount_ro(struct super_block *sb)
380{
Matthias Kaehlckecfdaf9e2007-10-18 23:39:56 -0700381 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /* Check that no files are currently opened for writing. */
384 file_list_lock();
Matthias Kaehlckecfdaf9e2007-10-18 23:39:56 -0700385 list_for_each_entry(file, &sb->s_files, f_u.fu_list) {
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800386 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 /* File with pending delete? */
389 if (inode->i_nlink == 0)
390 goto too_bad;
391
392 /* Writeable file? */
393 if (S_ISREG(inode->i_mode) && (file->f_mode & FMODE_WRITE))
394 goto too_bad;
395 }
396 file_list_unlock();
397 return 1; /* Tis' cool bro. */
398too_bad:
399 file_list_unlock();
400 return 0;
401}
402
403void __init files_init(unsigned long mempages)
404{
405 int n;
Eric Dumazetb6b3fde2008-12-10 09:35:45 -0800406
407 filp_cachep = kmem_cache_create("filp", sizeof(struct file), 0,
408 SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
409
410 /*
411 * One file with associated inode and dcache is very roughly 1K.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * Per default don't use more than 10% of our memory for files.
413 */
414
415 n = (mempages * (PAGE_SIZE / 1024)) / 10;
416 files_stat.max_files = n;
417 if (files_stat.max_files < NR_FILE)
418 files_stat.max_files = NR_FILE;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700419 files_defer_init();
Mingming Cao0216bfc2006-06-23 02:05:41 -0700420 percpu_counter_init(&nr_files, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}