2 * linux/fs/file_table.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
8 #include <linux/string.h>
9 #include <linux/slab.h>
10 #include <linux/file.h>
11 #include <linux/fdtable.h>
12 #include <linux/init.h>
13 #include <linux/module.h>
15 #include <linux/security.h>
16 #include <linux/eventpoll.h>
17 #include <linux/rcupdate.h>
18 #include <linux/mount.h>
19 #include <linux/capability.h>
20 #include <linux/cdev.h>
21 #include <linux/fsnotify.h>
22 #include <linux/sysctl.h>
23 #include <linux/percpu_counter.h>
25 #include <asm/atomic.h>
27 /* sysctl tunables... */
28 struct files_stat_struct files_stat
= {
32 /* public. Not pretty! */
33 __cacheline_aligned_in_smp
DEFINE_SPINLOCK(files_lock
);
35 static struct percpu_counter nr_files __cacheline_aligned_in_smp
;
37 static inline void file_free_rcu(struct rcu_head
*head
)
39 struct file
*f
= container_of(head
, struct file
, f_u
.fu_rcuhead
);
40 kmem_cache_free(filp_cachep
, f
);
43 static inline void file_free(struct file
*f
)
45 percpu_counter_dec(&nr_files
);
47 call_rcu(&f
->f_u
.fu_rcuhead
, file_free_rcu
);
51 * Return the total number of open files in the system
53 static int get_nr_files(void)
55 return percpu_counter_read_positive(&nr_files
);
59 * Return the maximum number of open files in the system
61 int get_max_files(void)
63 return files_stat
.max_files
;
65 EXPORT_SYMBOL_GPL(get_max_files
);
68 * Handle nr_files sysctl
70 #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
71 int proc_nr_files(ctl_table
*table
, int write
, struct file
*filp
,
72 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
74 files_stat
.nr_files
= get_nr_files();
75 return proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
);
78 int proc_nr_files(ctl_table
*table
, int write
, struct file
*filp
,
79 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
85 /* 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.
89 * Be very careful using this. You are responsible for
90 * getting write access to any mount that you might assign
91 * to this filp, if it is opened for write. If this is not
92 * done, you will imbalance int the mount's writer count
93 * and a warning at __fput() time.
95 struct file
*get_empty_filp(void)
97 struct task_struct
*tsk
;
102 * Privileged users can go above max_files
104 if (get_nr_files() >= files_stat
.max_files
&& !capable(CAP_SYS_ADMIN
)) {
106 * percpu_counters are inaccurate. Do an expensive check before
109 if (percpu_counter_sum_positive(&nr_files
) >= files_stat
.max_files
)
113 f
= kmem_cache_zalloc(filp_cachep
, GFP_KERNEL
);
117 percpu_counter_inc(&nr_files
);
118 if (security_file_alloc(f
))
122 INIT_LIST_HEAD(&f
->f_u
.fu_list
);
123 atomic_long_set(&f
->f_count
, 1);
124 rwlock_init(&f
->f_owner
.lock
);
125 f
->f_uid
= tsk
->fsuid
;
126 f
->f_gid
= tsk
->fsgid
;
127 eventpoll_init_file(f
);
128 /* f->f_version: 0 */
132 /* Ran out of filps - report that */
133 if (get_nr_files() > old_max
) {
134 printk(KERN_INFO
"VFS: file-max limit %d reached\n",
136 old_max
= get_nr_files();
146 EXPORT_SYMBOL(get_empty_filp
);
149 * alloc_file - allocate and initialize a 'struct file'
150 * @mnt: the vfsmount on which the file will reside
151 * @dentry: the dentry representing the new file
152 * @mode: the mode with which the new file will be opened
153 * @fop: the 'struct file_operations' for the new file
155 * Use this instead of get_empty_filp() to get a new
156 * 'struct file'. Do so because of the same initialization
157 * pitfalls reasons listed for init_file(). This is a
158 * preferred interface to using init_file().
160 * If all the callers of init_file() are eliminated, its
161 * code should be moved into this function.
163 struct file
*alloc_file(struct vfsmount
*mnt
, struct dentry
*dentry
,
164 mode_t mode
, const struct file_operations
*fop
)
169 file
= get_empty_filp();
173 init_file(file
, mnt
, dentry
, mode
, fop
);
176 EXPORT_SYMBOL(alloc_file
);
179 * init_file - initialize a 'struct file'
180 * @file: the already allocated 'struct file' to initialized
181 * @mnt: the vfsmount on which the file resides
182 * @dentry: the dentry representing this file
183 * @mode: the mode the file is opened with
184 * @fop: the 'struct file_operations' for this file
186 * Use this instead of setting the members directly. Doing so
187 * avoids making mistakes like forgetting the mntget() or
188 * forgetting to take a write on the mnt.
190 * Note: This is a crappy interface. It is here to make
191 * merging with the existing users of get_empty_filp()
192 * who have complex failure logic easier. All users
193 * of this should be moving to alloc_file().
195 int init_file(struct file
*file
, struct vfsmount
*mnt
, struct dentry
*dentry
,
196 mode_t mode
, const struct file_operations
*fop
)
199 file
->f_path
.dentry
= dentry
;
200 file
->f_path
.mnt
= mntget(mnt
);
201 file
->f_mapping
= dentry
->d_inode
->i_mapping
;
206 * These mounts don't really matter in practice
207 * for r/o bind mounts. They aren't userspace-
208 * visible. We do this for consistency, and so
209 * that we can do debugging checks at __fput()
211 if ((mode
& FMODE_WRITE
) && !special_file(dentry
->d_inode
->i_mode
)) {
212 file_take_write(file
);
213 error
= mnt_want_write(mnt
);
218 EXPORT_SYMBOL(init_file
);
220 void fput(struct file
*file
)
222 if (atomic_long_dec_and_test(&file
->f_count
))
229 * drop_file_write_access - give up ability to write to a file
230 * @file: the file to which we will stop writing
232 * This is a central place which will give up the ability
233 * to write to @file, along with access to write through
236 void drop_file_write_access(struct file
*file
)
238 struct vfsmount
*mnt
= file
->f_path
.mnt
;
239 struct dentry
*dentry
= file
->f_path
.dentry
;
240 struct inode
*inode
= dentry
->d_inode
;
242 put_write_access(inode
);
244 if (special_file(inode
->i_mode
))
246 if (file_check_writeable(file
) != 0)
249 file_release_write(file
);
251 EXPORT_SYMBOL_GPL(drop_file_write_access
);
253 /* __fput is called from task context when aio completion releases the last
254 * last use of a struct file *. Do not use otherwise.
256 void __fput(struct file
*file
)
258 struct dentry
*dentry
= file
->f_path
.dentry
;
259 struct vfsmount
*mnt
= file
->f_path
.mnt
;
260 struct inode
*inode
= dentry
->d_inode
;
264 fsnotify_close(file
);
266 * The function eventpoll_release() should be the first called
267 * in the file cleanup chain.
269 eventpoll_release(file
);
270 locks_remove_flock(file
);
272 if (file
->f_op
&& file
->f_op
->release
)
273 file
->f_op
->release(inode
, file
);
274 security_file_free(file
);
275 if (unlikely(S_ISCHR(inode
->i_mode
) && inode
->i_cdev
!= NULL
))
276 cdev_put(inode
->i_cdev
);
277 fops_put(file
->f_op
);
278 put_pid(file
->f_owner
.pid
);
280 if (file
->f_mode
& FMODE_WRITE
)
281 drop_file_write_access(file
);
282 file
->f_path
.dentry
= NULL
;
283 file
->f_path
.mnt
= NULL
;
289 struct file
*fget(unsigned int fd
)
292 struct files_struct
*files
= current
->files
;
295 file
= fcheck_files(files
, fd
);
297 if (!atomic_long_inc_not_zero(&file
->f_count
)) {
298 /* File object ref couldn't be taken */
311 * Lightweight file lookup - no refcnt increment if fd table isn't shared.
312 * You can use this only if it is guranteed that the current task already
313 * holds a refcnt to that file. That check has to be done at fget() only
314 * and a flag is returned to be passed to the corresponding fput_light().
315 * There must not be a cloning between an fget_light/fput_light pair.
317 struct file
*fget_light(unsigned int fd
, int *fput_needed
)
320 struct files_struct
*files
= current
->files
;
323 if (likely((atomic_read(&files
->count
) == 1))) {
324 file
= fcheck_files(files
, fd
);
327 file
= fcheck_files(files
, fd
);
329 if (atomic_long_inc_not_zero(&file
->f_count
))
332 /* Didn't get the reference, someone's freed */
342 void put_filp(struct file
*file
)
344 if (atomic_long_dec_and_test(&file
->f_count
)) {
345 security_file_free(file
);
351 void file_move(struct file
*file
, struct list_head
*list
)
356 list_move(&file
->f_u
.fu_list
, list
);
360 void file_kill(struct file
*file
)
362 if (!list_empty(&file
->f_u
.fu_list
)) {
364 list_del_init(&file
->f_u
.fu_list
);
369 int fs_may_remount_ro(struct super_block
*sb
)
373 /* Check that no files are currently opened for writing. */
375 list_for_each_entry(file
, &sb
->s_files
, f_u
.fu_list
) {
376 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
378 /* File with pending delete? */
379 if (inode
->i_nlink
== 0)
382 /* Writeable file? */
383 if (S_ISREG(inode
->i_mode
) && (file
->f_mode
& FMODE_WRITE
))
387 return 1; /* Tis' cool bro. */
393 void __init
files_init(unsigned long mempages
)
396 /* One file with associated inode and dcache is very roughly 1K.
397 * Per default don't use more than 10% of our memory for files.
400 n
= (mempages
* (PAGE_SIZE
/ 1024)) / 10;
401 files_stat
.max_files
= n
;
402 if (files_stat
.max_files
< NR_FILE
)
403 files_stat
.max_files
= NR_FILE
;
405 percpu_counter_init(&nr_files
, 0);