]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
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> | |
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... */ |
35 | struct files_stat_struct files_stat = { | |
36 | .max_files = NR_FILE | |
37 | }; | |
38 | ||
4b2c551f | 39 | DEFINE_STATIC_LGLOCK(files_lglock); |
1da177e4 | 40 | |
b6b3fdea ED |
41 | /* SLAB cache for file structures */ |
42 | static struct kmem_cache *filp_cachep __read_mostly; | |
43 | ||
529bf6be | 44 | static struct percpu_counter nr_files __cacheline_aligned_in_smp; |
1da177e4 | 45 | |
5c33b183 | 46 | static 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 | 54 | static 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 | 64 | static 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 | 72 | unsigned long get_max_files(void) |
ab2af1f5 | 73 | { |
529bf6be | 74 | return files_stat.max_files; |
ab2af1f5 | 75 | } |
529bf6be DS |
76 | EXPORT_SYMBOL_GPL(get_max_files); |
77 | ||
78 | /* | |
79 | * Handle nr_files sysctl | |
80 | */ | |
81 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS) | |
8d65af78 | 82 | int 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 | 89 | int 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 LT |
96 | /* Find an unused file structure and return a pointer to it. |
97 | * Returns NULL, if there are no more free file structures or | |
98 | * we run out of memory. | |
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 | */ |
106 | struct file *get_empty_filp(void) | |
107 | { | |
86a264ab | 108 | const struct cred *cred = current_cred(); |
518de9b3 | 109 | static long old_max; |
1da177e4 LT |
110 | struct file * f; |
111 | ||
112 | /* | |
113 | * Privileged users can go above max_files | |
114 | */ | |
529bf6be DS |
115 | if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) { |
116 | /* | |
117 | * percpu_counters are inaccurate. Do an expensive check before | |
118 | * we go and fail. | |
119 | */ | |
52d9f3b4 | 120 | if (percpu_counter_sum_positive(&nr_files) >= files_stat.max_files) |
529bf6be DS |
121 | goto over; |
122 | } | |
af4d2ecb | 123 | |
4975e45f | 124 | f = kmem_cache_zalloc(filp_cachep, GFP_KERNEL); |
af4d2ecb KK |
125 | if (f == NULL) |
126 | goto fail; | |
127 | ||
529bf6be | 128 | percpu_counter_inc(&nr_files); |
78d29788 | 129 | f->f_cred = get_cred(cred); |
af4d2ecb KK |
130 | if (security_file_alloc(f)) |
131 | goto fail_sec; | |
1da177e4 | 132 | |
5a6b7951 | 133 | INIT_LIST_HEAD(&f->f_u.fu_list); |
516e0cc5 | 134 | atomic_long_set(&f->f_count, 1); |
af4d2ecb | 135 | rwlock_init(&f->f_owner.lock); |
68499914 | 136 | spin_lock_init(&f->f_lock); |
5a6b7951 | 137 | eventpoll_init_file(f); |
af4d2ecb | 138 | /* f->f_version: 0 */ |
af4d2ecb KK |
139 | return f; |
140 | ||
141 | over: | |
1da177e4 | 142 | /* Ran out of filps - report that */ |
529bf6be | 143 | if (get_nr_files() > old_max) { |
518de9b3 | 144 | pr_info("VFS: file-max limit %lu reached\n", get_max_files()); |
529bf6be | 145 | old_max = get_nr_files(); |
1da177e4 | 146 | } |
af4d2ecb KK |
147 | goto fail; |
148 | ||
149 | fail_sec: | |
150 | file_free(f); | |
1da177e4 LT |
151 | fail: |
152 | return NULL; | |
153 | } | |
154 | ||
ce8d2cdf DH |
155 | /** |
156 | * alloc_file - allocate and initialize a 'struct file' | |
157 | * @mnt: the vfsmount on which the file will reside | |
158 | * @dentry: the dentry representing the new file | |
159 | * @mode: the mode with which the new file will be opened | |
160 | * @fop: the 'struct file_operations' for the new file | |
161 | * | |
162 | * Use this instead of get_empty_filp() to get a new | |
163 | * 'struct file'. Do so because of the same initialization | |
164 | * pitfalls reasons listed for init_file(). This is a | |
165 | * preferred interface to using init_file(). | |
166 | * | |
167 | * If all the callers of init_file() are eliminated, its | |
168 | * code should be moved into this function. | |
169 | */ | |
2c48b9c4 AV |
170 | struct file *alloc_file(struct path *path, fmode_t mode, |
171 | const struct file_operations *fop) | |
ce8d2cdf DH |
172 | { |
173 | struct file *file; | |
ce8d2cdf DH |
174 | |
175 | file = get_empty_filp(); | |
176 | if (!file) | |
177 | return NULL; | |
178 | ||
2c48b9c4 AV |
179 | file->f_path = *path; |
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 | 198 | EXPORT_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 | 208 | static 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 | 226 | static 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; | |
1da177e4 LT |
230 | struct inode *inode = dentry->d_inode; |
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; | |
1da177e4 LT |
262 | file_free(file); |
263 | dput(dentry); | |
264 | mntput(mnt); | |
265 | } | |
266 | ||
4a9d4b02 AV |
267 | static DEFINE_SPINLOCK(delayed_fput_lock); |
268 | static LIST_HEAD(delayed_fput_list); | |
269 | static void delayed_fput(struct work_struct *unused) | |
270 | { | |
271 | LIST_HEAD(head); | |
272 | spin_lock_irq(&delayed_fput_lock); | |
273 | list_splice_init(&delayed_fput_list, &head); | |
274 | spin_unlock_irq(&delayed_fput_lock); | |
275 | while (!list_empty(&head)) { | |
276 | struct file *f = list_first_entry(&head, struct file, f_u.fu_list); | |
277 | list_del_init(&f->f_u.fu_list); | |
278 | __fput(f); | |
279 | } | |
280 | } | |
281 | ||
282 | static void ____fput(struct callback_head *work) | |
283 | { | |
284 | __fput(container_of(work, struct file, f_u.fu_rcuhead)); | |
285 | } | |
286 | ||
287 | /* | |
288 | * If kernel thread really needs to have the final fput() it has done | |
289 | * to complete, call this. The only user right now is the boot - we | |
290 | * *do* need to make sure our writes to binaries on initramfs has | |
291 | * not left us with opened struct file waiting for __fput() - execve() | |
292 | * won't work without that. Please, don't add more callers without | |
293 | * very good reasons; in particular, never call that with locks | |
294 | * held and never call that from a thread that might need to do | |
295 | * some work on any kind of umount. | |
296 | */ | |
297 | void flush_delayed_fput(void) | |
298 | { | |
299 | delayed_fput(NULL); | |
300 | } | |
301 | ||
302 | static DECLARE_WORK(delayed_fput_work, delayed_fput); | |
303 | ||
d7065da0 AV |
304 | void fput(struct file *file) |
305 | { | |
4a9d4b02 AV |
306 | if (atomic_long_dec_and_test(&file->f_count)) { |
307 | struct task_struct *task = current; | |
308 | file_sb_list_del(file); | |
309 | if (unlikely(in_interrupt() || task->flags & PF_KTHREAD)) { | |
310 | unsigned long flags; | |
311 | spin_lock_irqsave(&delayed_fput_lock, flags); | |
312 | list_add(&file->f_u.fu_list, &delayed_fput_list); | |
313 | schedule_work(&delayed_fput_work); | |
314 | spin_unlock_irqrestore(&delayed_fput_lock, flags); | |
315 | return; | |
316 | } | |
317 | init_task_work(&file->f_u.fu_rcuhead, ____fput); | |
318 | task_work_add(task, &file->f_u.fu_rcuhead, true); | |
319 | } | |
320 | } | |
321 | ||
322 | /* | |
323 | * synchronous analog of fput(); for kernel threads that might be needed | |
324 | * in some umount() (and thus can't use flush_delayed_fput() without | |
325 | * risking deadlocks), need to wait for completion of __fput() and know | |
326 | * for this specific struct file it won't involve anything that would | |
327 | * need them. Use only if you really need it - at the very least, | |
328 | * don't blindly convert fput() by kernel thread to that. | |
329 | */ | |
330 | void __fput_sync(struct file *file) | |
331 | { | |
332 | if (atomic_long_dec_and_test(&file->f_count)) { | |
333 | struct task_struct *task = current; | |
334 | file_sb_list_del(file); | |
335 | BUG_ON(!(task->flags & PF_KTHREAD)); | |
d7065da0 | 336 | __fput(file); |
4a9d4b02 | 337 | } |
d7065da0 AV |
338 | } |
339 | ||
340 | EXPORT_SYMBOL(fput); | |
341 | ||
1da177e4 LT |
342 | void put_filp(struct file *file) |
343 | { | |
516e0cc5 | 344 | if (atomic_long_dec_and_test(&file->f_count)) { |
1da177e4 | 345 | security_file_free(file); |
ee2ffa0d | 346 | file_sb_list_del(file); |
1da177e4 LT |
347 | file_free(file); |
348 | } | |
349 | } | |
350 | ||
6416ccb7 NP |
351 | static inline int file_list_cpu(struct file *file) |
352 | { | |
353 | #ifdef CONFIG_SMP | |
354 | return file->f_sb_list_cpu; | |
355 | #else | |
356 | return smp_processor_id(); | |
357 | #endif | |
358 | } | |
359 | ||
360 | /* helper for file_sb_list_add to reduce ifdefs */ | |
361 | static inline void __file_sb_list_add(struct file *file, struct super_block *sb) | |
362 | { | |
363 | struct list_head *list; | |
364 | #ifdef CONFIG_SMP | |
365 | int cpu; | |
366 | cpu = smp_processor_id(); | |
367 | file->f_sb_list_cpu = cpu; | |
368 | list = per_cpu_ptr(sb->s_files, cpu); | |
369 | #else | |
370 | list = &sb->s_files; | |
371 | #endif | |
372 | list_add(&file->f_u.fu_list, list); | |
373 | } | |
374 | ||
375 | /** | |
376 | * file_sb_list_add - add a file to the sb's file list | |
377 | * @file: file to add | |
378 | * @sb: sb to add it to | |
379 | * | |
380 | * Use this function to associate a file with the superblock of the inode it | |
381 | * refers to. | |
382 | */ | |
ee2ffa0d | 383 | void file_sb_list_add(struct file *file, struct super_block *sb) |
1da177e4 | 384 | { |
962830df | 385 | lg_local_lock(&files_lglock); |
6416ccb7 | 386 | __file_sb_list_add(file, sb); |
962830df | 387 | lg_local_unlock(&files_lglock); |
1da177e4 LT |
388 | } |
389 | ||
6416ccb7 NP |
390 | /** |
391 | * file_sb_list_del - remove a file from the sb's file list | |
392 | * @file: file to remove | |
393 | * @sb: sb to remove it from | |
394 | * | |
395 | * Use this function to remove a file from its superblock. | |
396 | */ | |
ee2ffa0d | 397 | void file_sb_list_del(struct file *file) |
1da177e4 | 398 | { |
2f512016 | 399 | if (!list_empty(&file->f_u.fu_list)) { |
962830df | 400 | lg_local_lock_cpu(&files_lglock, file_list_cpu(file)); |
2f512016 | 401 | list_del_init(&file->f_u.fu_list); |
962830df | 402 | lg_local_unlock_cpu(&files_lglock, file_list_cpu(file)); |
1da177e4 LT |
403 | } |
404 | } | |
405 | ||
6416ccb7 NP |
406 | #ifdef CONFIG_SMP |
407 | ||
408 | /* | |
409 | * These macros iterate all files on all CPUs for a given superblock. | |
410 | * files_lglock must be held globally. | |
411 | */ | |
412 | #define do_file_list_for_each_entry(__sb, __file) \ | |
413 | { \ | |
414 | int i; \ | |
415 | for_each_possible_cpu(i) { \ | |
416 | struct list_head *list; \ | |
417 | list = per_cpu_ptr((__sb)->s_files, i); \ | |
418 | list_for_each_entry((__file), list, f_u.fu_list) | |
419 | ||
420 | #define while_file_list_for_each_entry \ | |
421 | } \ | |
422 | } | |
423 | ||
424 | #else | |
425 | ||
426 | #define do_file_list_for_each_entry(__sb, __file) \ | |
427 | { \ | |
428 | struct list_head *list; \ | |
429 | list = &(sb)->s_files; \ | |
430 | list_for_each_entry((__file), list, f_u.fu_list) | |
431 | ||
432 | #define while_file_list_for_each_entry \ | |
433 | } | |
434 | ||
435 | #endif | |
436 | ||
864d7c4c NP |
437 | /** |
438 | * mark_files_ro - mark all files read-only | |
439 | * @sb: superblock in question | |
440 | * | |
441 | * All files are marked read-only. We don't care about pending | |
442 | * delete files so this should be used in 'force' mode only. | |
443 | */ | |
444 | void mark_files_ro(struct super_block *sb) | |
445 | { | |
446 | struct file *f; | |
447 | ||
962830df | 448 | lg_global_lock(&files_lglock); |
6416ccb7 | 449 | do_file_list_for_each_entry(sb, f) { |
864d7c4c NP |
450 | if (!S_ISREG(f->f_path.dentry->d_inode->i_mode)) |
451 | continue; | |
452 | if (!file_count(f)) | |
453 | continue; | |
454 | if (!(f->f_mode & FMODE_WRITE)) | |
455 | continue; | |
42e49608 | 456 | spin_lock(&f->f_lock); |
864d7c4c | 457 | f->f_mode &= ~FMODE_WRITE; |
42e49608 | 458 | spin_unlock(&f->f_lock); |
864d7c4c NP |
459 | if (file_check_writeable(f) != 0) |
460 | continue; | |
461 | file_release_write(f); | |
85d7d618 | 462 | mnt_drop_write_file(f); |
6416ccb7 | 463 | } while_file_list_for_each_entry; |
962830df | 464 | lg_global_unlock(&files_lglock); |
864d7c4c NP |
465 | } |
466 | ||
1da177e4 LT |
467 | void __init files_init(unsigned long mempages) |
468 | { | |
518de9b3 | 469 | unsigned long n; |
b6b3fdea ED |
470 | |
471 | filp_cachep = kmem_cache_create("filp", sizeof(struct file), 0, | |
472 | SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL); | |
473 | ||
474 | /* | |
475 | * One file with associated inode and dcache is very roughly 1K. | |
1da177e4 LT |
476 | * Per default don't use more than 10% of our memory for files. |
477 | */ | |
478 | ||
479 | n = (mempages * (PAGE_SIZE / 1024)) / 10; | |
518de9b3 | 480 | files_stat.max_files = max_t(unsigned long, n, NR_FILE); |
ab2af1f5 | 481 | files_defer_init(); |
962830df | 482 | lg_lock_init(&files_lglock, "files_lglock"); |
0216bfcf | 483 | percpu_counter_init(&nr_files, 0); |
1da177e4 | 484 | } |