blob: f906ac8c9a9fd80aed9ac9bd5f530244182c24c1 [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 ([email protected])
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#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>
24
25#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27/* sysctl tunables... */
28struct files_stat_struct files_stat = {
29 .max_files = NR_FILE
30};
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/* public. Not pretty! */
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080033__cacheline_aligned_in_smp DEFINE_SPINLOCK(files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Eric Dumazetb6b3fde2008-12-10 09:35:45 -080035/* SLAB cache for file structures */
36static struct kmem_cache *filp_cachep __read_mostly;
37
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080038static struct percpu_counter nr_files __cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070040static inline void file_free_rcu(struct rcu_head *head)
41{
David Howellsd76b0d92008-11-14 10:39:25 +110042 struct file *f = container_of(head, struct file, f_u.fu_rcuhead);
43
44 put_cred(f->f_cred);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070045 kmem_cache_free(filp_cachep, f);
46}
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static inline void file_free(struct file *f)
49{
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080050 percpu_counter_dec(&nr_files);
Dave Hansenad775f52008-02-15 14:38:01 -080051 file_check_state(f);
Eric Dumazet2f512012005-10-30 15:02:16 -080052 call_rcu(&f->f_u.fu_rcuhead, file_free_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080055/*
56 * Return the total number of open files in the system
57 */
58static int get_nr_files(void)
59{
60 return percpu_counter_read_positive(&nr_files);
61}
62
63/*
64 * Return the maximum number of open files in the system
65 */
66int get_max_files(void)
67{
68 return files_stat.max_files;
69}
70EXPORT_SYMBOL_GPL(get_max_files);
71
72/*
73 * Handle nr_files sysctl
74 */
75#if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070076int proc_nr_files(ctl_table *table, int write,
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080077 void __user *buffer, size_t *lenp, loff_t *ppos)
78{
79 files_stat.nr_files = get_nr_files();
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070080 return proc_dointvec(table, write, buffer, lenp, ppos);
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080081}
82#else
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070083int proc_nr_files(ctl_table *table, int write,
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080084 void __user *buffer, size_t *lenp, loff_t *ppos)
85{
86 return -ENOSYS;
87}
88#endif
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/* Find an unused file structure and return a pointer to it.
91 * Returns NULL, if there are no more free file structures or
92 * we run out of memory.
Dave Hansen430e2852008-02-15 14:37:26 -080093 *
94 * Be very careful using this. You are responsible for
95 * getting write access to any mount that you might assign
96 * to this filp, if it is opened for write. If this is not
97 * done, you will imbalance int the mount's writer count
98 * and a warning at __fput() time.
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 */
100struct file *get_empty_filp(void)
101{
David Howells86a264a2008-11-14 10:39:18 +1100102 const struct cred *cred = current_cred();
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700103 static int old_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct file * f;
105
106 /*
107 * Privileged users can go above max_files
108 */
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800109 if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) {
110 /*
111 * percpu_counters are inaccurate. Do an expensive check before
112 * we go and fail.
113 */
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -0700114 if (percpu_counter_sum_positive(&nr_files) >= files_stat.max_files)
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800115 goto over;
116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Denis Cheng4975e452007-10-16 23:26:19 -0700118 f = kmem_cache_zalloc(filp_cachep, GFP_KERNEL);
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700119 if (f == NULL)
120 goto fail;
121
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800122 percpu_counter_inc(&nr_files);
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700123 if (security_file_alloc(f))
124 goto fail_sec;
125
Eric Dumazet2f512012005-10-30 15:02:16 -0800126 INIT_LIST_HEAD(&f->f_u.fu_list);
Al Viro516e0cc2008-07-26 00:39:17 -0400127 atomic_long_set(&f->f_count, 1);
Benjamin LaHaise5a6b7952006-03-23 03:01:03 -0800128 rwlock_init(&f->f_owner.lock);
David Howellsd76b0d92008-11-14 10:39:25 +1100129 f->f_cred = get_cred(cred);
Jonathan Corbet68499912009-02-06 13:52:43 -0700130 spin_lock_init(&f->f_lock);
Benjamin LaHaise5a6b7952006-03-23 03:01:03 -0800131 eventpoll_init_file(f);
132 /* f->f_version: 0 */
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700133 return f;
134
135over:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 /* Ran out of filps - report that */
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800137 if (get_nr_files() > old_max) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 printk(KERN_INFO "VFS: file-max limit %d reached\n",
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800139 get_max_files());
140 old_max = get_nr_files();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700142 goto fail;
143
144fail_sec:
145 file_free(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146fail:
147 return NULL;
148}
149
Dave Hansence8d2cd2007-10-16 23:31:13 -0700150/**
151 * alloc_file - allocate and initialize a 'struct file'
152 * @mnt: the vfsmount on which the file will reside
153 * @dentry: the dentry representing the new file
154 * @mode: the mode with which the new file will be opened
155 * @fop: the 'struct file_operations' for the new file
156 *
157 * Use this instead of get_empty_filp() to get a new
158 * 'struct file'. Do so because of the same initialization
159 * pitfalls reasons listed for init_file(). This is a
160 * preferred interface to using init_file().
161 *
162 * If all the callers of init_file() are eliminated, its
163 * code should be moved into this function.
164 */
165struct file *alloc_file(struct vfsmount *mnt, struct dentry *dentry,
Al Viroaeb5d722008-09-02 15:28:45 -0400166 fmode_t mode, const struct file_operations *fop)
Dave Hansence8d2cd2007-10-16 23:31:13 -0700167{
168 struct file *file;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700169
170 file = get_empty_filp();
171 if (!file)
172 return NULL;
173
174 init_file(file, mnt, dentry, mode, fop);
175 return file;
176}
177EXPORT_SYMBOL(alloc_file);
178
179/**
180 * init_file - initialize a 'struct file'
181 * @file: the already allocated 'struct file' to initialized
182 * @mnt: the vfsmount on which the file resides
183 * @dentry: the dentry representing this file
184 * @mode: the mode the file is opened with
185 * @fop: the 'struct file_operations' for this file
186 *
187 * Use this instead of setting the members directly. Doing so
188 * avoids making mistakes like forgetting the mntget() or
189 * forgetting to take a write on the mnt.
190 *
191 * Note: This is a crappy interface. It is here to make
192 * merging with the existing users of get_empty_filp()
193 * who have complex failure logic easier. All users
194 * of this should be moving to alloc_file().
195 */
196int init_file(struct file *file, struct vfsmount *mnt, struct dentry *dentry,
Al Viroaeb5d722008-09-02 15:28:45 -0400197 fmode_t mode, const struct file_operations *fop)
Dave Hansence8d2cd2007-10-16 23:31:13 -0700198{
199 int error = 0;
200 file->f_path.dentry = dentry;
201 file->f_path.mnt = mntget(mnt);
202 file->f_mapping = dentry->d_inode->i_mapping;
203 file->f_mode = mode;
204 file->f_op = fop;
Dave Hansen4a3fd212008-02-15 14:37:48 -0800205
206 /*
207 * These mounts don't really matter in practice
208 * for r/o bind mounts. They aren't userspace-
209 * visible. We do this for consistency, and so
210 * that we can do debugging checks at __fput()
211 */
212 if ((mode & FMODE_WRITE) && !special_file(dentry->d_inode->i_mode)) {
Dave Hansenad775f52008-02-15 14:38:01 -0800213 file_take_write(file);
[email protected]96029c42009-04-26 20:25:55 +1000214 error = mnt_clone_write(mnt);
Dave Hansen4a3fd212008-02-15 14:37:48 -0800215 WARN_ON(error);
216 }
Dave Hansence8d2cd2007-10-16 23:31:13 -0700217 return error;
218}
219EXPORT_SYMBOL(init_file);
220
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800221void fput(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Al Viro516e0cc2008-07-26 00:39:17 -0400223 if (atomic_long_dec_and_test(&file->f_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 __fput(file);
225}
226
227EXPORT_SYMBOL(fput);
228
Dave Hansenaceaf782008-02-15 14:37:31 -0800229/**
230 * drop_file_write_access - give up ability to write to a file
231 * @file: the file to which we will stop writing
232 *
233 * This is a central place which will give up the ability
234 * to write to @file, along with access to write through
235 * its vfsmount.
236 */
237void drop_file_write_access(struct file *file)
238{
Dave Hansen4a3fd212008-02-15 14:37:48 -0800239 struct vfsmount *mnt = file->f_path.mnt;
Dave Hansenaceaf782008-02-15 14:37:31 -0800240 struct dentry *dentry = file->f_path.dentry;
241 struct inode *inode = dentry->d_inode;
242
243 put_write_access(inode);
Dave Hansenad775f52008-02-15 14:38:01 -0800244
245 if (special_file(inode->i_mode))
246 return;
247 if (file_check_writeable(file) != 0)
248 return;
249 mnt_drop_write(mnt);
250 file_release_write(file);
Dave Hansenaceaf782008-02-15 14:37:31 -0800251}
252EXPORT_SYMBOL_GPL(drop_file_write_access);
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/* __fput is called from task context when aio completion releases the last
255 * last use of a struct file *. Do not use otherwise.
256 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800257void __fput(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800259 struct dentry *dentry = file->f_path.dentry;
260 struct vfsmount *mnt = file->f_path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 struct inode *inode = dentry->d_inode;
262
263 might_sleep();
Robert Love0eeca282005-07-12 17:06:03 -0400264
265 fsnotify_close(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /*
267 * The function eventpoll_release() should be the first called
268 * in the file cleanup chain.
269 */
270 eventpoll_release(file);
271 locks_remove_flock(file);
272
Al Viro233e70f2008-10-31 23:28:30 +0000273 if (unlikely(file->f_flags & FASYNC)) {
274 if (file->f_op && file->f_op->fasync)
275 file->f_op->fasync(-1, file, 0);
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (file->f_op && file->f_op->release)
278 file->f_op->release(inode, file);
279 security_file_free(file);
Theodore Ts'o577c4eb2006-09-27 01:50:49 -0700280 if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 cdev_put(inode->i_cdev);
282 fops_put(file->f_op);
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700283 put_pid(file->f_owner.pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 file_kill(file);
Dave Hansenaceaf782008-02-15 14:37:31 -0800285 if (file->f_mode & FMODE_WRITE)
286 drop_file_write_access(file);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800287 file->f_path.dentry = NULL;
288 file->f_path.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 file_free(file);
290 dput(dentry);
291 mntput(mnt);
292}
293
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800294struct file *fget(unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct file *file;
297 struct files_struct *files = current->files;
298
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700299 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 file = fcheck_files(files, fd);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700301 if (file) {
Al Viro516e0cc2008-07-26 00:39:17 -0400302 if (!atomic_long_inc_not_zero(&file->f_count)) {
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700303 /* File object ref couldn't be taken */
304 rcu_read_unlock();
305 return NULL;
306 }
307 }
308 rcu_read_unlock();
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return file;
311}
312
313EXPORT_SYMBOL(fget);
314
315/*
316 * Lightweight file lookup - no refcnt increment if fd table isn't shared.
317 * You can use this only if it is guranteed that the current task already
318 * holds a refcnt to that file. That check has to be done at fget() only
319 * and a flag is returned to be passed to the corresponding fput_light().
320 * There must not be a cloning between an fget_light/fput_light pair.
321 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800322struct file *fget_light(unsigned int fd, int *fput_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 struct file *file;
325 struct files_struct *files = current->files;
326
327 *fput_needed = 0;
328 if (likely((atomic_read(&files->count) == 1))) {
329 file = fcheck_files(files, fd);
330 } else {
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700331 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 file = fcheck_files(files, fd);
333 if (file) {
Al Viro516e0cc2008-07-26 00:39:17 -0400334 if (atomic_long_inc_not_zero(&file->f_count))
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700335 *fput_needed = 1;
336 else
337 /* Didn't get the reference, someone's freed */
338 file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700340 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return file;
344}
345
346
347void put_filp(struct file *file)
348{
Al Viro516e0cc2008-07-26 00:39:17 -0400349 if (atomic_long_dec_and_test(&file->f_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 security_file_free(file);
351 file_kill(file);
352 file_free(file);
353 }
354}
355
356void file_move(struct file *file, struct list_head *list)
357{
358 if (!list)
359 return;
360 file_list_lock();
Eric Dumazet2f512012005-10-30 15:02:16 -0800361 list_move(&file->f_u.fu_list, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 file_list_unlock();
363}
364
365void file_kill(struct file *file)
366{
Eric Dumazet2f512012005-10-30 15:02:16 -0800367 if (!list_empty(&file->f_u.fu_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 file_list_lock();
Eric Dumazet2f512012005-10-30 15:02:16 -0800369 list_del_init(&file->f_u.fu_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 file_list_unlock();
371 }
372}
373
374int fs_may_remount_ro(struct super_block *sb)
375{
Matthias Kaehlckecfdaf9e2007-10-18 23:39:56 -0700376 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 /* Check that no files are currently opened for writing. */
379 file_list_lock();
Matthias Kaehlckecfdaf9e2007-10-18 23:39:56 -0700380 list_for_each_entry(file, &sb->s_files, f_u.fu_list) {
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800381 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /* File with pending delete? */
384 if (inode->i_nlink == 0)
385 goto too_bad;
386
387 /* Writeable file? */
388 if (S_ISREG(inode->i_mode) && (file->f_mode & FMODE_WRITE))
389 goto too_bad;
390 }
391 file_list_unlock();
392 return 1; /* Tis' cool bro. */
393too_bad:
394 file_list_unlock();
395 return 0;
396}
397
[email protected]864d7c42009-04-26 20:25:56 +1000398/**
399 * mark_files_ro - mark all files read-only
400 * @sb: superblock in question
401 *
402 * All files are marked read-only. We don't care about pending
403 * delete files so this should be used in 'force' mode only.
404 */
405void mark_files_ro(struct super_block *sb)
406{
407 struct file *f;
408
409retry:
410 file_list_lock();
411 list_for_each_entry(f, &sb->s_files, f_u.fu_list) {
412 struct vfsmount *mnt;
413 if (!S_ISREG(f->f_path.dentry->d_inode->i_mode))
414 continue;
415 if (!file_count(f))
416 continue;
417 if (!(f->f_mode & FMODE_WRITE))
418 continue;
419 f->f_mode &= ~FMODE_WRITE;
420 if (file_check_writeable(f) != 0)
421 continue;
422 file_release_write(f);
423 mnt = mntget(f->f_path.mnt);
424 file_list_unlock();
425 /*
426 * This can sleep, so we can't hold
427 * the file_list_lock() spinlock.
428 */
429 mnt_drop_write(mnt);
430 mntput(mnt);
431 goto retry;
432 }
433 file_list_unlock();
434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436void __init files_init(unsigned long mempages)
437{
438 int n;
Eric Dumazetb6b3fde2008-12-10 09:35:45 -0800439
440 filp_cachep = kmem_cache_create("filp", sizeof(struct file), 0,
441 SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
442
443 /*
444 * One file with associated inode and dcache is very roughly 1K.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * Per default don't use more than 10% of our memory for files.
446 */
447
448 n = (mempages * (PAGE_SIZE / 1024)) / 10;
449 files_stat.max_files = n;
450 if (files_stat.max_files < NR_FILE)
451 files_stat.max_files = NR_FILE;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700452 files_defer_init();
Mingming Cao0216bfc2006-06-23 02:05:41 -0700453 percpu_counter_init(&nr_files, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}