]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/file_table.c
ext[34]: fix double put in tmpfile
[mirror_ubuntu-artful-kernel.git] / fs / file_table.c
CommitLineData
1da177e4
LT
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>
9f3acc31 11#include <linux/fdtable.h>
1da177e4
LT
12#include <linux/init.h>
13#include <linux/module.h>
1da177e4
LT
14#include <linux/fs.h>
15#include <linux/security.h>
16#include <linux/eventpoll.h>
ab2af1f5 17#include <linux/rcupdate.h>
1da177e4 18#include <linux/mount.h>
16f7e0fe 19#include <linux/capability.h>
1da177e4 20#include <linux/cdev.h>
0eeca283 21#include <linux/fsnotify.h>
529bf6be 22#include <linux/sysctl.h>
6416ccb7 23#include <linux/lglock.h>
529bf6be 24#include <linux/percpu_counter.h>
6416ccb7 25#include <linux/percpu.h>
4a9d4b02
AV
26#include <linux/hardirq.h>
27#include <linux/task_work.h>
0552f879 28#include <linux/ima.h>
529bf6be 29
60063497 30#include <linux/atomic.h>
1da177e4 31
e81e3f4d
EP
32#include "internal.h"
33
1da177e4
LT
34/* sysctl tunables... */
35struct files_stat_struct files_stat = {
36 .max_files = NR_FILE
37};
38
4b2c551f 39DEFINE_STATIC_LGLOCK(files_lglock);
1da177e4 40
b6b3fdea
ED
41/* SLAB cache for file structures */
42static struct kmem_cache *filp_cachep __read_mostly;
43
529bf6be 44static struct percpu_counter nr_files __cacheline_aligned_in_smp;
1da177e4 45
5c33b183 46static void file_free_rcu(struct rcu_head *head)
1da177e4 47{
d76b0d9b
DH
48 struct file *f = container_of(head, struct file, f_u.fu_rcuhead);
49
50 put_cred(f->f_cred);
529bf6be 51 kmem_cache_free(filp_cachep, f);
1da177e4
LT
52}
53
529bf6be 54static inline void file_free(struct file *f)
1da177e4 55{
529bf6be 56 percpu_counter_dec(&nr_files);
ad775f5a 57 file_check_state(f);
529bf6be 58 call_rcu(&f->f_u.fu_rcuhead, file_free_rcu);
1da177e4
LT
59}
60
529bf6be
DS
61/*
62 * Return the total number of open files in the system
63 */
518de9b3 64static long get_nr_files(void)
1da177e4 65{
529bf6be 66 return percpu_counter_read_positive(&nr_files);
1da177e4
LT
67}
68
529bf6be
DS
69/*
70 * Return the maximum number of open files in the system
71 */
518de9b3 72unsigned long get_max_files(void)
ab2af1f5 73{
529bf6be 74 return files_stat.max_files;
ab2af1f5 75}
529bf6be
DS
76EXPORT_SYMBOL_GPL(get_max_files);
77
78/*
79 * Handle nr_files sysctl
80 */
81#if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
8d65af78 82int proc_nr_files(ctl_table *table, int write,
529bf6be
DS
83 void __user *buffer, size_t *lenp, loff_t *ppos)
84{
85 files_stat.nr_files = get_nr_files();
518de9b3 86 return proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
529bf6be
DS
87}
88#else
8d65af78 89int proc_nr_files(ctl_table *table, int write,
529bf6be
DS
90 void __user *buffer, size_t *lenp, loff_t *ppos)
91{
92 return -ENOSYS;
93}
94#endif
ab2af1f5 95
1da177e4 96/* Find an unused file structure and return a pointer to it.
1afc99be
AV
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.
430e285e
DH
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.
1da177e4
LT
105 */
106struct file *get_empty_filp(void)
107{
86a264ab 108 const struct cred *cred = current_cred();
518de9b3 109 static long old_max;
1afc99be
AV
110 struct file *f;
111 int error;
1da177e4
LT
112
113 /*
114 * Privileged users can go above max_files
115 */
529bf6be
DS
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 */
52d9f3b4 121 if (percpu_counter_sum_positive(&nr_files) >= files_stat.max_files)
529bf6be
DS
122 goto over;
123 }
af4d2ecb 124
4975e45f 125 f = kmem_cache_zalloc(filp_cachep, GFP_KERNEL);
1afc99be
AV
126 if (unlikely(!f))
127 return ERR_PTR(-ENOMEM);
af4d2ecb 128
529bf6be 129 percpu_counter_inc(&nr_files);
78d29788 130 f->f_cred = get_cred(cred);
1afc99be
AV
131 error = security_file_alloc(f);
132 if (unlikely(error)) {
133 file_free(f);
134 return ERR_PTR(error);
135 }
1da177e4 136
5a6b7951 137 INIT_LIST_HEAD(&f->f_u.fu_list);
516e0cc5 138 atomic_long_set(&f->f_count, 1);
af4d2ecb 139 rwlock_init(&f->f_owner.lock);
68499914 140 spin_lock_init(&f->f_lock);
5a6b7951 141 eventpoll_init_file(f);
af4d2ecb 142 /* f->f_version: 0 */
af4d2ecb
KK
143 return f;
144
145over:
1da177e4 146 /* Ran out of filps - report that */
529bf6be 147 if (get_nr_files() > old_max) {
518de9b3 148 pr_info("VFS: file-max limit %lu reached\n", get_max_files());
529bf6be 149 old_max = get_nr_files();
1da177e4 150 }
1afc99be 151 return ERR_PTR(-ENFILE);
1da177e4
LT
152}
153
ce8d2cdf
DH
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 */
2c48b9c4
AV
169struct file *alloc_file(struct path *path, fmode_t mode,
170 const struct file_operations *fop)
ce8d2cdf
DH
171{
172 struct file *file;
ce8d2cdf
DH
173
174 file = get_empty_filp();
1afc99be 175 if (IS_ERR(file))
39b65252 176 return file;
ce8d2cdf 177
2c48b9c4 178 file->f_path = *path;
dd37978c 179 file->f_inode = path->dentry->d_inode;
2c48b9c4 180 file->f_mapping = path->dentry->d_inode->i_mapping;
ce8d2cdf
DH
181 file->f_mode = mode;
182 file->f_op = fop;
4a3fd211
DH
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 */
2c48b9c4 190 if ((mode & FMODE_WRITE) && !special_file(path->dentry->d_inode->i_mode)) {
ad775f5a 191 file_take_write(file);
385e3ed4 192 WARN_ON(mnt_clone_write(path->mnt));
4a3fd211 193 }
890275b5
MZ
194 if ((mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ)
195 i_readcount_inc(path->dentry->d_inode);
3d1e4631 196 return file;
ce8d2cdf 197}
73efc468 198EXPORT_SYMBOL(alloc_file);
ce8d2cdf 199
aceaf78d
DH
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 */
b57ce969 208static void drop_file_write_access(struct file *file)
aceaf78d 209{
4a3fd211 210 struct vfsmount *mnt = file->f_path.mnt;
aceaf78d
DH
211 struct dentry *dentry = file->f_path.dentry;
212 struct inode *inode = dentry->d_inode;
213
214 put_write_access(inode);
ad775f5a
DH
215
216 if (special_file(inode->i_mode))
217 return;
218 if (file_check_writeable(file) != 0)
219 return;
eb04c282 220 __mnt_drop_write(mnt);
ad775f5a 221 file_release_write(file);
aceaf78d 222}
aceaf78d 223
d7065da0 224/* the real guts of fput() - releasing the last reference to file
1da177e4 225 */
d7065da0 226static void __fput(struct file *file)
1da177e4 227{
0f7fc9e4
JJS
228 struct dentry *dentry = file->f_path.dentry;
229 struct vfsmount *mnt = file->f_path.mnt;
c77cecee 230 struct inode *inode = file->f_inode;
1da177e4
LT
231
232 might_sleep();
0eeca283
RL
233
234 fsnotify_close(file);
1da177e4
LT
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
233e70f4
AV
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 }
4199d35c 246 ima_file_free(file);
1da177e4
LT
247 if (file->f_op && file->f_op->release)
248 file->f_op->release(inode, file);
249 security_file_free(file);
60ed8cf7
MS
250 if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL &&
251 !(file->f_mode & FMODE_PATH))) {
1da177e4 252 cdev_put(inode->i_cdev);
60ed8cf7 253 }
1da177e4 254 fops_put(file->f_op);
609d7fa9 255 put_pid(file->f_owner.pid);
890275b5
MZ
256 if ((file->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ)
257 i_readcount_dec(inode);
aceaf78d
DH
258 if (file->f_mode & FMODE_WRITE)
259 drop_file_write_access(file);
0f7fc9e4
JJS
260 file->f_path.dentry = NULL;
261 file->f_path.mnt = NULL;
dd37978c 262 file->f_inode = NULL;
1da177e4
LT
263 file_free(file);
264 dput(dentry);
265 mntput(mnt);
266}
267
4f5e65a1 268static LLIST_HEAD(delayed_fput_list);
4a9d4b02
AV
269static void delayed_fput(struct work_struct *unused)
270{
4f5e65a1
ON
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));
4a9d4b02
AV
277 }
278}
279
280static 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 */
295void flush_delayed_fput(void)
296{
297 delayed_fput(NULL);
298}
299
300static DECLARE_WORK(delayed_fput_work, delayed_fput);
301
d7065da0
AV
302void fput(struct file *file)
303{
4a9d4b02
AV
304 if (atomic_long_dec_and_test(&file->f_count)) {
305 struct task_struct *task = current;
e7b2c406 306
4a9d4b02 307 file_sb_list_del(file);
e7b2c406
ON
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;
64372501
AM
312 /*
313 * After this task has run exit_task_work(),
be49b30a 314 * task_work_add() will fail. Fall through to delayed
64372501
AM
315 * fput to avoid leaking *file.
316 */
4a9d4b02 317 }
4f5e65a1
ON
318
319 if (llist_add(&file->f_u.fu_llist, &delayed_fput_list))
320 schedule_work(&delayed_fput_work);
4a9d4b02
AV
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 */
332void __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));
d7065da0 338 __fput(file);
4a9d4b02 339 }
d7065da0
AV
340}
341
342EXPORT_SYMBOL(fput);
343
1da177e4
LT
344void put_filp(struct file *file)
345{
516e0cc5 346 if (atomic_long_dec_and_test(&file->f_count)) {
1da177e4 347 security_file_free(file);
ee2ffa0d 348 file_sb_list_del(file);
1da177e4
LT
349 file_free(file);
350 }
351}
352
6416ccb7
NP
353static inline int file_list_cpu(struct file *file)
354{
355#ifdef CONFIG_SMP
356 return file->f_sb_list_cpu;
357#else
358 return smp_processor_id();
359#endif
360}
361
362/* helper for file_sb_list_add to reduce ifdefs */
363static 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 */
ee2ffa0d 385void file_sb_list_add(struct file *file, struct super_block *sb)
1da177e4 386{
184cacab
AV
387 if (likely(!(file->f_mode & FMODE_WRITE)))
388 return;
389 if (!S_ISREG(file_inode(file)->i_mode))
390 return;
962830df 391 lg_local_lock(&files_lglock);
6416ccb7 392 __file_sb_list_add(file, sb);
962830df 393 lg_local_unlock(&files_lglock);
1da177e4
LT
394}
395
6416ccb7
NP
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 */
ee2ffa0d 403void file_sb_list_del(struct file *file)
1da177e4 404{
2f512016 405 if (!list_empty(&file->f_u.fu_list)) {
962830df 406 lg_local_lock_cpu(&files_lglock, file_list_cpu(file));
2f512016 407 list_del_init(&file->f_u.fu_list);
962830df 408 lg_local_unlock_cpu(&files_lglock, file_list_cpu(file));
1da177e4
LT
409 }
410}
411
6416ccb7
NP
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
864d7c4c 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 */
450void mark_files_ro(struct super_block *sb)
451{
452 struct file *f;
453
962830df 454 lg_global_lock(&files_lglock);
6416ccb7 455 do_file_list_for_each_entry(sb, f) {
864d7c4c 456 if (!file_count(f))
457 continue;
458 if (!(f->f_mode & FMODE_WRITE))
459 continue;
42e49608 460 spin_lock(&f->f_lock);
864d7c4c 461 f->f_mode &= ~FMODE_WRITE;
42e49608 462 spin_unlock(&f->f_lock);
864d7c4c 463 if (file_check_writeable(f) != 0)
464 continue;
72651cac 465 __mnt_drop_write(f->f_path.mnt);
864d7c4c 466 file_release_write(f);
6416ccb7 467 } while_file_list_for_each_entry;
962830df 468 lg_global_unlock(&files_lglock);
864d7c4c 469}
470
1da177e4
LT
471void __init files_init(unsigned long mempages)
472{
518de9b3 473 unsigned long n;
b6b3fdea
ED
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.
1da177e4
LT
480 * Per default don't use more than 10% of our memory for files.
481 */
482
483 n = (mempages * (PAGE_SIZE / 1024)) / 10;
518de9b3 484 files_stat.max_files = max_t(unsigned long, n, NR_FILE);
ab2af1f5 485 files_defer_init();
962830df 486 lg_lock_init(&files_lglock, "files_lglock");
0216bfcf 487 percpu_counter_init(&nr_files, 0);
1da177e4 488}