blob: 44fabeaa9415b315155b7bf92497491a8ef1bb08 [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
Dipankar Sarma529bf6b2006-03-07 21:55:35 -08008#include <linux/config.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/string.h>
10#include <linux/slab.h>
11#include <linux/file.h>
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/smp_lock.h>
15#include <linux/fs.h>
16#include <linux/security.h>
17#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
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080036static struct percpu_counter nr_files __cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070038static inline void file_free_rcu(struct rcu_head *head)
39{
Eric Dumazet2f512012005-10-30 15:02:16 -080040 struct file *f = container_of(head, struct file, f_u.fu_rcuhead);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070041 kmem_cache_free(filp_cachep, f);
42}
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static inline void file_free(struct file *f)
45{
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080046 percpu_counter_dec(&nr_files);
Eric Dumazet2f512012005-10-30 15:02:16 -080047 call_rcu(&f->f_u.fu_rcuhead, file_free_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048}
49
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080050/*
51 * Return the total number of open files in the system
52 */
53static int get_nr_files(void)
54{
55 return percpu_counter_read_positive(&nr_files);
56}
57
58/*
59 * Return the maximum number of open files in the system
60 */
61int get_max_files(void)
62{
63 return files_stat.max_files;
64}
65EXPORT_SYMBOL_GPL(get_max_files);
66
67/*
68 * Handle nr_files sysctl
69 */
70#if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
71int proc_nr_files(ctl_table *table, int write, struct file *filp,
72 void __user *buffer, size_t *lenp, loff_t *ppos)
73{
74 files_stat.nr_files = get_nr_files();
75 return proc_dointvec(table, write, filp, buffer, lenp, ppos);
76}
77#else
78int proc_nr_files(ctl_table *table, int write, struct file *filp,
79 void __user *buffer, size_t *lenp, loff_t *ppos)
80{
81 return -ENOSYS;
82}
83#endif
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* Find an unused file structure and return a pointer to it.
86 * Returns NULL, if there are no more free file structures or
87 * we run out of memory.
88 */
89struct file *get_empty_filp(void)
90{
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -070091 static int old_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 struct file * f;
93
94 /*
95 * Privileged users can go above max_files
96 */
Dipankar Sarma529bf6b2006-03-07 21:55:35 -080097 if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) {
98 /*
99 * percpu_counters are inaccurate. Do an expensive check before
100 * we go and fail.
101 */
102 if (percpu_counter_sum(&nr_files) >= files_stat.max_files)
103 goto over;
104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700106 f = kmem_cache_alloc(filp_cachep, GFP_KERNEL);
107 if (f == NULL)
108 goto fail;
109
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800110 percpu_counter_inc(&nr_files);
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700111 memset(f, 0, sizeof(*f));
112 if (security_file_alloc(f))
113 goto fail_sec;
114
115 eventpoll_init_file(f);
116 atomic_set(&f->f_count, 1);
117 f->f_uid = current->fsuid;
118 f->f_gid = current->fsgid;
119 rwlock_init(&f->f_owner.lock);
120 /* f->f_version: 0 */
Eric Dumazet2f512012005-10-30 15:02:16 -0800121 INIT_LIST_HEAD(&f->f_u.fu_list);
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700122 return f;
123
124over:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* Ran out of filps - report that */
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800126 if (get_nr_files() > old_max) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 printk(KERN_INFO "VFS: file-max limit %d reached\n",
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800128 get_max_files());
129 old_max = get_nr_files();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
Kirill Korotaevaf4d2ec2005-06-23 00:09:50 -0700131 goto fail;
132
133fail_sec:
134 file_free(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135fail:
136 return NULL;
137}
138
139EXPORT_SYMBOL(get_empty_filp);
140
141void fastcall fput(struct file *file)
142{
Nick Piggin095975d2006-01-08 01:02:19 -0800143 if (atomic_dec_and_test(&file->f_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 __fput(file);
145}
146
147EXPORT_SYMBOL(fput);
148
149/* __fput is called from task context when aio completion releases the last
150 * last use of a struct file *. Do not use otherwise.
151 */
152void fastcall __fput(struct file *file)
153{
154 struct dentry *dentry = file->f_dentry;
155 struct vfsmount *mnt = file->f_vfsmnt;
156 struct inode *inode = dentry->d_inode;
157
158 might_sleep();
Robert Love0eeca282005-07-12 17:06:03 -0400159
160 fsnotify_close(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 /*
162 * The function eventpoll_release() should be the first called
163 * in the file cleanup chain.
164 */
165 eventpoll_release(file);
166 locks_remove_flock(file);
167
168 if (file->f_op && file->f_op->release)
169 file->f_op->release(inode, file);
170 security_file_free(file);
171 if (unlikely(inode->i_cdev != NULL))
172 cdev_put(inode->i_cdev);
173 fops_put(file->f_op);
174 if (file->f_mode & FMODE_WRITE)
175 put_write_access(inode);
176 file_kill(file);
177 file->f_dentry = NULL;
178 file->f_vfsmnt = NULL;
179 file_free(file);
180 dput(dentry);
181 mntput(mnt);
182}
183
184struct file fastcall *fget(unsigned int fd)
185{
186 struct file *file;
187 struct files_struct *files = current->files;
188
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700189 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 file = fcheck_files(files, fd);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700191 if (file) {
Nick Piggin095975d2006-01-08 01:02:19 -0800192 if (!atomic_inc_not_zero(&file->f_count)) {
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700193 /* File object ref couldn't be taken */
194 rcu_read_unlock();
195 return NULL;
196 }
197 }
198 rcu_read_unlock();
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return file;
201}
202
203EXPORT_SYMBOL(fget);
204
205/*
206 * Lightweight file lookup - no refcnt increment if fd table isn't shared.
207 * You can use this only if it is guranteed that the current task already
208 * holds a refcnt to that file. That check has to be done at fget() only
209 * and a flag is returned to be passed to the corresponding fput_light().
210 * There must not be a cloning between an fget_light/fput_light pair.
211 */
212struct file fastcall *fget_light(unsigned int fd, int *fput_needed)
213{
214 struct file *file;
215 struct files_struct *files = current->files;
216
217 *fput_needed = 0;
218 if (likely((atomic_read(&files->count) == 1))) {
219 file = fcheck_files(files, fd);
220 } else {
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700221 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 file = fcheck_files(files, fd);
223 if (file) {
Nick Piggin095975d2006-01-08 01:02:19 -0800224 if (atomic_inc_not_zero(&file->f_count))
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700225 *fput_needed = 1;
226 else
227 /* Didn't get the reference, someone's freed */
228 file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700230 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return file;
234}
235
236
237void put_filp(struct file *file)
238{
Nick Piggin095975d2006-01-08 01:02:19 -0800239 if (atomic_dec_and_test(&file->f_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 security_file_free(file);
241 file_kill(file);
242 file_free(file);
243 }
244}
245
246void file_move(struct file *file, struct list_head *list)
247{
248 if (!list)
249 return;
250 file_list_lock();
Eric Dumazet2f512012005-10-30 15:02:16 -0800251 list_move(&file->f_u.fu_list, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 file_list_unlock();
253}
254
255void file_kill(struct file *file)
256{
Eric Dumazet2f512012005-10-30 15:02:16 -0800257 if (!list_empty(&file->f_u.fu_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 file_list_lock();
Eric Dumazet2f512012005-10-30 15:02:16 -0800259 list_del_init(&file->f_u.fu_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 file_list_unlock();
261 }
262}
263
264int fs_may_remount_ro(struct super_block *sb)
265{
266 struct list_head *p;
267
268 /* Check that no files are currently opened for writing. */
269 file_list_lock();
270 list_for_each(p, &sb->s_files) {
Eric Dumazet2f512012005-10-30 15:02:16 -0800271 struct file *file = list_entry(p, struct file, f_u.fu_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 struct inode *inode = file->f_dentry->d_inode;
273
274 /* File with pending delete? */
275 if (inode->i_nlink == 0)
276 goto too_bad;
277
278 /* Writeable file? */
279 if (S_ISREG(inode->i_mode) && (file->f_mode & FMODE_WRITE))
280 goto too_bad;
281 }
282 file_list_unlock();
283 return 1; /* Tis' cool bro. */
284too_bad:
285 file_list_unlock();
286 return 0;
287}
288
289void __init files_init(unsigned long mempages)
290{
291 int n;
292 /* One file with associated inode and dcache is very roughly 1K.
293 * Per default don't use more than 10% of our memory for files.
294 */
295
296 n = (mempages * (PAGE_SIZE / 1024)) / 10;
297 files_stat.max_files = n;
298 if (files_stat.max_files < NR_FILE)
299 files_stat.max_files = NR_FILE;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700300 files_defer_init();
Dipankar Sarma529bf6b2006-03-07 21:55:35 -0800301 percpu_counter_init(&nr_files);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}