open: add close_range()
[linux-block.git] / fs / file.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * linux/fs/file.c
4 *
5 * Copyright (C) 1998-1999, Stephen Tweedie and Bill Hawes
6 *
7 * Manage the dynamic fd arrays in the process files_struct.
8 */
9
fe17f22d 10#include <linux/syscalls.h>
630d9c47 11#include <linux/export.h>
1da177e4 12#include <linux/fs.h>
278a5fba 13#include <linux/kernel.h>
1da177e4 14#include <linux/mm.h>
3f07c014 15#include <linux/sched/signal.h>
1da177e4 16#include <linux/slab.h>
1da177e4 17#include <linux/file.h>
9f3acc31 18#include <linux/fdtable.h>
1da177e4 19#include <linux/bitops.h>
ab2af1f5
DS
20#include <linux/spinlock.h>
21#include <linux/rcupdate.h>
ab2af1f5 22
9b80a184
AD
23unsigned int sysctl_nr_open __read_mostly = 1024*1024;
24unsigned int sysctl_nr_open_min = BITS_PER_LONG;
752343be
RV
25/* our min() is unusable in constant expressions ;-/ */
26#define __const_min(x, y) ((x) < (y) ? (x) : (y))
9b80a184
AD
27unsigned int sysctl_nr_open_max =
28 __const_min(INT_MAX, ~(size_t)0/sizeof(void *)) & -BITS_PER_LONG;
9cfe015a 29
a892e2d7 30static void __free_fdtable(struct fdtable *fdt)
1da177e4 31{
f6c0a192
AV
32 kvfree(fdt->fd);
33 kvfree(fdt->open_fds);
a892e2d7 34 kfree(fdt);
ab2af1f5 35}
1da177e4 36
7cf4dc3c 37static void free_fdtable_rcu(struct rcu_head *rcu)
ab2af1f5 38{
ac3e3c5b 39 __free_fdtable(container_of(rcu, struct fdtable, rcu));
ab2af1f5
DS
40}
41
f3f86e33
LT
42#define BITBIT_NR(nr) BITS_TO_LONGS(BITS_TO_LONGS(nr))
43#define BITBIT_SIZE(nr) (BITBIT_NR(nr) * sizeof(long))
44
ab2af1f5 45/*
ea5c58e7
EB
46 * Copy 'count' fd bits from the old table to the new table and clear the extra
47 * space if any. This does not copy the file pointers. Called with the files
48 * spinlock held for write.
49 */
50static void copy_fd_bitmaps(struct fdtable *nfdt, struct fdtable *ofdt,
51 unsigned int count)
52{
53 unsigned int cpy, set;
54
55 cpy = count / BITS_PER_BYTE;
56 set = (nfdt->max_fds - count) / BITS_PER_BYTE;
57 memcpy(nfdt->open_fds, ofdt->open_fds, cpy);
58 memset((char *)nfdt->open_fds + cpy, 0, set);
59 memcpy(nfdt->close_on_exec, ofdt->close_on_exec, cpy);
60 memset((char *)nfdt->close_on_exec + cpy, 0, set);
61
62 cpy = BITBIT_SIZE(count);
63 set = BITBIT_SIZE(nfdt->max_fds) - cpy;
64 memcpy(nfdt->full_fds_bits, ofdt->full_fds_bits, cpy);
65 memset((char *)nfdt->full_fds_bits + cpy, 0, set);
66}
67
68/*
69 * Copy all file descriptors from the old table to the new, expanded table and
70 * clear the extra space. Called with the files spinlock held for write.
ab2af1f5 71 */
5466b456 72static void copy_fdtable(struct fdtable *nfdt, struct fdtable *ofdt)
ab2af1f5 73{
4e89b721 74 size_t cpy, set;
ab2af1f5 75
5466b456 76 BUG_ON(nfdt->max_fds < ofdt->max_fds);
5466b456
VL
77
78 cpy = ofdt->max_fds * sizeof(struct file *);
79 set = (nfdt->max_fds - ofdt->max_fds) * sizeof(struct file *);
80 memcpy(nfdt->fd, ofdt->fd, cpy);
ea5c58e7 81 memset((char *)nfdt->fd + cpy, 0, set);
5466b456 82
ea5c58e7 83 copy_fd_bitmaps(nfdt, ofdt, ofdt->max_fds);
1da177e4
LT
84}
85
5466b456 86static struct fdtable * alloc_fdtable(unsigned int nr)
1da177e4 87{
5466b456 88 struct fdtable *fdt;
1fd36adc 89 void *data;
1da177e4 90
ab2af1f5 91 /*
5466b456
VL
92 * Figure out how many fds we actually want to support in this fdtable.
93 * Allocation steps are keyed to the size of the fdarray, since it
94 * grows far faster than any of the other dynamic data. We try to fit
95 * the fdarray into comfortable page-tuned chunks: starting at 1024B
96 * and growing in powers of two from there on.
ab2af1f5 97 */
5466b456
VL
98 nr /= (1024 / sizeof(struct file *));
99 nr = roundup_pow_of_two(nr + 1);
100 nr *= (1024 / sizeof(struct file *));
5c598b34
AV
101 /*
102 * Note that this can drive nr *below* what we had passed if sysctl_nr_open
103 * had been set lower between the check in expand_files() and here. Deal
104 * with that in caller, it's cheaper that way.
105 *
106 * We make sure that nr remains a multiple of BITS_PER_LONG - otherwise
107 * bitmaps handling below becomes unpleasant, to put it mildly...
108 */
109 if (unlikely(nr > sysctl_nr_open))
110 nr = ((sysctl_nr_open - 1) | (BITS_PER_LONG - 1)) + 1;
bbea9f69 111
5d097056 112 fdt = kmalloc(sizeof(struct fdtable), GFP_KERNEL_ACCOUNT);
5466b456 113 if (!fdt)
bbea9f69 114 goto out;
5466b456 115 fdt->max_fds = nr;
c823bd92 116 data = kvmalloc_array(nr, sizeof(struct file *), GFP_KERNEL_ACCOUNT);
5466b456
VL
117 if (!data)
118 goto out_fdt;
1fd36adc
DH
119 fdt->fd = data;
120
c823bd92
MH
121 data = kvmalloc(max_t(size_t,
122 2 * nr / BITS_PER_BYTE + BITBIT_SIZE(nr), L1_CACHE_BYTES),
123 GFP_KERNEL_ACCOUNT);
5466b456
VL
124 if (!data)
125 goto out_arr;
1fd36adc 126 fdt->open_fds = data;
5466b456 127 data += nr / BITS_PER_BYTE;
1fd36adc 128 fdt->close_on_exec = data;
f3f86e33
LT
129 data += nr / BITS_PER_BYTE;
130 fdt->full_fds_bits = data;
5466b456 131
ab2af1f5 132 return fdt;
5466b456
VL
133
134out_arr:
f6c0a192 135 kvfree(fdt->fd);
5466b456 136out_fdt:
ab2af1f5 137 kfree(fdt);
5466b456 138out:
ab2af1f5
DS
139 return NULL;
140}
1da177e4 141
ab2af1f5 142/*
74d392aa
VL
143 * Expand the file descriptor table.
144 * This function will allocate a new fdtable and both fd array and fdset, of
145 * the given size.
146 * Return <0 error code on error; 1 on successful completion.
147 * The files->file_lock should be held on entry, and will be held on exit.
ab2af1f5 148 */
9b80a184 149static int expand_fdtable(struct files_struct *files, unsigned int nr)
ab2af1f5
DS
150 __releases(files->file_lock)
151 __acquires(files->file_lock)
152{
74d392aa 153 struct fdtable *new_fdt, *cur_fdt;
ab2af1f5
DS
154
155 spin_unlock(&files->file_lock);
74d392aa 156 new_fdt = alloc_fdtable(nr);
8a81252b
ED
157
158 /* make sure all __fd_install() have seen resize_in_progress
159 * or have finished their rcu_read_lock_sched() section.
160 */
161 if (atomic_read(&files->count) > 1)
c93ffc15 162 synchronize_rcu();
8a81252b 163
ab2af1f5 164 spin_lock(&files->file_lock);
74d392aa
VL
165 if (!new_fdt)
166 return -ENOMEM;
5c598b34
AV
167 /*
168 * extremely unlikely race - sysctl_nr_open decreased between the check in
169 * caller and alloc_fdtable(). Cheaper to catch it here...
170 */
171 if (unlikely(new_fdt->max_fds <= nr)) {
a892e2d7 172 __free_fdtable(new_fdt);
5c598b34
AV
173 return -EMFILE;
174 }
74d392aa 175 cur_fdt = files_fdtable(files);
8a81252b
ED
176 BUG_ON(nr < cur_fdt->max_fds);
177 copy_fdtable(new_fdt, cur_fdt);
178 rcu_assign_pointer(files->fdt, new_fdt);
179 if (cur_fdt != &files->fdtab)
180 call_rcu(&cur_fdt->rcu, free_fdtable_rcu);
181 /* coupled with smp_rmb() in __fd_install() */
182 smp_wmb();
74d392aa 183 return 1;
1da177e4
LT
184}
185
186/*
187 * Expand files.
74d392aa
VL
188 * This function will expand the file structures, if the requested size exceeds
189 * the current capacity and there is room for expansion.
190 * Return <0 error code on error; 0 when nothing done; 1 when files were
191 * expanded and execution may have blocked.
192 * The files->file_lock should be held on entry, and will be held on exit.
1da177e4 193 */
9b80a184 194static int expand_files(struct files_struct *files, unsigned int nr)
8a81252b
ED
195 __releases(files->file_lock)
196 __acquires(files->file_lock)
1da177e4 197{
badf1662 198 struct fdtable *fdt;
8a81252b 199 int expanded = 0;
1da177e4 200
8a81252b 201repeat:
badf1662 202 fdt = files_fdtable(files);
4e1e018e 203
74d392aa 204 /* Do we need to expand? */
bbea9f69 205 if (nr < fdt->max_fds)
8a81252b 206 return expanded;
4e1e018e 207
74d392aa 208 /* Can we expand? */
9cfe015a 209 if (nr >= sysctl_nr_open)
74d392aa
VL
210 return -EMFILE;
211
8a81252b
ED
212 if (unlikely(files->resize_in_progress)) {
213 spin_unlock(&files->file_lock);
214 expanded = 1;
215 wait_event(files->resize_wait, !files->resize_in_progress);
216 spin_lock(&files->file_lock);
217 goto repeat;
218 }
219
74d392aa 220 /* All good, so we try */
8a81252b
ED
221 files->resize_in_progress = true;
222 expanded = expand_fdtable(files, nr);
223 files->resize_in_progress = false;
224
225 wake_up_all(&files->resize_wait);
226 return expanded;
1da177e4 227}
ab2af1f5 228
9b80a184 229static inline void __set_close_on_exec(unsigned int fd, struct fdtable *fdt)
b8318b01
AV
230{
231 __set_bit(fd, fdt->close_on_exec);
232}
233
9b80a184 234static inline void __clear_close_on_exec(unsigned int fd, struct fdtable *fdt)
b8318b01 235{
fc90888d
LT
236 if (test_bit(fd, fdt->close_on_exec))
237 __clear_bit(fd, fdt->close_on_exec);
b8318b01
AV
238}
239
f3f86e33 240static inline void __set_open_fd(unsigned int fd, struct fdtable *fdt)
b8318b01
AV
241{
242 __set_bit(fd, fdt->open_fds);
f3f86e33
LT
243 fd /= BITS_PER_LONG;
244 if (!~fdt->open_fds[fd])
245 __set_bit(fd, fdt->full_fds_bits);
b8318b01
AV
246}
247
f3f86e33 248static inline void __clear_open_fd(unsigned int fd, struct fdtable *fdt)
b8318b01
AV
249{
250 __clear_bit(fd, fdt->open_fds);
f3f86e33 251 __clear_bit(fd / BITS_PER_LONG, fdt->full_fds_bits);
b8318b01
AV
252}
253
9b80a184 254static unsigned int count_open_files(struct fdtable *fdt)
02afc626 255{
9b80a184
AD
256 unsigned int size = fdt->max_fds;
257 unsigned int i;
02afc626
AV
258
259 /* Find the last open fd */
1fd36adc
DH
260 for (i = size / BITS_PER_LONG; i > 0; ) {
261 if (fdt->open_fds[--i])
02afc626
AV
262 break;
263 }
1fd36adc 264 i = (i + 1) * BITS_PER_LONG;
02afc626
AV
265 return i;
266}
267
02afc626
AV
268/*
269 * Allocate a new files structure and copy contents from the
270 * passed in files structure.
271 * errorp will be valid only when the returned files_struct is NULL.
272 */
273struct files_struct *dup_fd(struct files_struct *oldf, int *errorp)
274{
275 struct files_struct *newf;
276 struct file **old_fds, **new_fds;
9b80a184 277 unsigned int open_files, i;
02afc626
AV
278 struct fdtable *old_fdt, *new_fdt;
279
280 *errorp = -ENOMEM;
afbec7ff 281 newf = kmem_cache_alloc(files_cachep, GFP_KERNEL);
02afc626
AV
282 if (!newf)
283 goto out;
284
afbec7ff
AV
285 atomic_set(&newf->count, 1);
286
287 spin_lock_init(&newf->file_lock);
8a81252b
ED
288 newf->resize_in_progress = false;
289 init_waitqueue_head(&newf->resize_wait);
afbec7ff
AV
290 newf->next_fd = 0;
291 new_fdt = &newf->fdtab;
292 new_fdt->max_fds = NR_OPEN_DEFAULT;
1fd36adc
DH
293 new_fdt->close_on_exec = newf->close_on_exec_init;
294 new_fdt->open_fds = newf->open_fds_init;
f3f86e33 295 new_fdt->full_fds_bits = newf->full_fds_bits_init;
afbec7ff 296 new_fdt->fd = &newf->fd_array[0];
afbec7ff 297
02afc626
AV
298 spin_lock(&oldf->file_lock);
299 old_fdt = files_fdtable(oldf);
02afc626
AV
300 open_files = count_open_files(old_fdt);
301
302 /*
303 * Check whether we need to allocate a larger fd array and fd set.
02afc626 304 */
adbecb12 305 while (unlikely(open_files > new_fdt->max_fds)) {
02afc626 306 spin_unlock(&oldf->file_lock);
9dec3c4d 307
a892e2d7
CG
308 if (new_fdt != &newf->fdtab)
309 __free_fdtable(new_fdt);
adbecb12 310
9dec3c4d
AV
311 new_fdt = alloc_fdtable(open_files - 1);
312 if (!new_fdt) {
313 *errorp = -ENOMEM;
314 goto out_release;
315 }
316
317 /* beyond sysctl_nr_open; nothing to do */
318 if (unlikely(new_fdt->max_fds < open_files)) {
a892e2d7 319 __free_fdtable(new_fdt);
9dec3c4d 320 *errorp = -EMFILE;
02afc626 321 goto out_release;
9dec3c4d 322 }
9dec3c4d 323
02afc626
AV
324 /*
325 * Reacquire the oldf lock and a pointer to its fd table
326 * who knows it may have a new bigger fd table. We need
327 * the latest pointer.
328 */
329 spin_lock(&oldf->file_lock);
330 old_fdt = files_fdtable(oldf);
adbecb12 331 open_files = count_open_files(old_fdt);
02afc626
AV
332 }
333
ea5c58e7
EB
334 copy_fd_bitmaps(new_fdt, old_fdt, open_files);
335
02afc626
AV
336 old_fds = old_fdt->fd;
337 new_fds = new_fdt->fd;
338
02afc626
AV
339 for (i = open_files; i != 0; i--) {
340 struct file *f = *old_fds++;
341 if (f) {
342 get_file(f);
343 } else {
344 /*
345 * The fd may be claimed in the fd bitmap but not yet
346 * instantiated in the files array if a sibling thread
347 * is partway through open(). So make sure that this
348 * fd is available to the new process.
349 */
1dce27c5 350 __clear_open_fd(open_files - i, new_fdt);
02afc626
AV
351 }
352 rcu_assign_pointer(*new_fds++, f);
353 }
354 spin_unlock(&oldf->file_lock);
355
ea5c58e7
EB
356 /* clear the remainder */
357 memset(new_fds, 0, (new_fdt->max_fds - open_files) * sizeof(struct file *));
02afc626 358
afbec7ff
AV
359 rcu_assign_pointer(newf->fdt, new_fdt);
360
02afc626
AV
361 return newf;
362
363out_release:
364 kmem_cache_free(files_cachep, newf);
365out:
366 return NULL;
367}
368
ce08b62d 369static struct fdtable *close_files(struct files_struct * files)
7cf4dc3c 370{
7cf4dc3c
AV
371 /*
372 * It is safe to dereference the fd table without RCU or
373 * ->file_lock because this is the last reference to the
ce08b62d 374 * files structure.
7cf4dc3c 375 */
ce08b62d 376 struct fdtable *fdt = rcu_dereference_raw(files->fdt);
9b80a184 377 unsigned int i, j = 0;
ce08b62d 378
7cf4dc3c
AV
379 for (;;) {
380 unsigned long set;
381 i = j * BITS_PER_LONG;
382 if (i >= fdt->max_fds)
383 break;
384 set = fdt->open_fds[j++];
385 while (set) {
386 if (set & 1) {
387 struct file * file = xchg(&fdt->fd[i], NULL);
388 if (file) {
389 filp_close(file, files);
388a4c88 390 cond_resched();
7cf4dc3c
AV
391 }
392 }
393 i++;
394 set >>= 1;
395 }
396 }
ce08b62d
ON
397
398 return fdt;
7cf4dc3c
AV
399}
400
401struct files_struct *get_files_struct(struct task_struct *task)
402{
403 struct files_struct *files;
404
405 task_lock(task);
406 files = task->files;
407 if (files)
408 atomic_inc(&files->count);
409 task_unlock(task);
410
411 return files;
412}
413
414void put_files_struct(struct files_struct *files)
415{
7cf4dc3c 416 if (atomic_dec_and_test(&files->count)) {
ce08b62d
ON
417 struct fdtable *fdt = close_files(files);
418
b9e02af0
AV
419 /* free the arrays if they are not embedded */
420 if (fdt != &files->fdtab)
421 __free_fdtable(fdt);
422 kmem_cache_free(files_cachep, files);
7cf4dc3c
AV
423 }
424}
425
426void reset_files_struct(struct files_struct *files)
427{
428 struct task_struct *tsk = current;
429 struct files_struct *old;
430
431 old = tsk->files;
432 task_lock(tsk);
433 tsk->files = files;
434 task_unlock(tsk);
435 put_files_struct(old);
436}
437
438void exit_files(struct task_struct *tsk)
439{
440 struct files_struct * files = tsk->files;
441
442 if (files) {
443 task_lock(tsk);
444 tsk->files = NULL;
445 task_unlock(tsk);
446 put_files_struct(files);
447 }
448}
449
f52111b1
AV
450struct files_struct init_files = {
451 .count = ATOMIC_INIT(1),
452 .fdt = &init_files.fdtab,
453 .fdtab = {
454 .max_fds = NR_OPEN_DEFAULT,
455 .fd = &init_files.fd_array[0],
1fd36adc
DH
456 .close_on_exec = init_files.close_on_exec_init,
457 .open_fds = init_files.open_fds_init,
f3f86e33 458 .full_fds_bits = init_files.full_fds_bits_init,
f52111b1 459 },
eece09ec 460 .file_lock = __SPIN_LOCK_UNLOCKED(init_files.file_lock),
5704a068 461 .resize_wait = __WAIT_QUEUE_HEAD_INITIALIZER(init_files.resize_wait),
f52111b1 462};
1027abe8 463
9b80a184 464static unsigned int find_next_fd(struct fdtable *fdt, unsigned int start)
f3f86e33 465{
9b80a184
AD
466 unsigned int maxfd = fdt->max_fds;
467 unsigned int maxbit = maxfd / BITS_PER_LONG;
468 unsigned int bitbit = start / BITS_PER_LONG;
f3f86e33
LT
469
470 bitbit = find_next_zero_bit(fdt->full_fds_bits, maxbit, bitbit) * BITS_PER_LONG;
471 if (bitbit > maxfd)
472 return maxfd;
473 if (bitbit > start)
474 start = bitbit;
475 return find_next_zero_bit(fdt->open_fds, maxfd, start);
476}
477
1027abe8
AV
478/*
479 * allocate a file descriptor, mark it busy.
480 */
dcfadfa4
AV
481int __alloc_fd(struct files_struct *files,
482 unsigned start, unsigned end, unsigned flags)
1027abe8 483{
1027abe8
AV
484 unsigned int fd;
485 int error;
486 struct fdtable *fdt;
487
488 spin_lock(&files->file_lock);
489repeat:
490 fdt = files_fdtable(files);
491 fd = start;
492 if (fd < files->next_fd)
493 fd = files->next_fd;
494
495 if (fd < fdt->max_fds)
f3f86e33 496 fd = find_next_fd(fdt, fd);
1027abe8 497
f33ff992
AV
498 /*
499 * N.B. For clone tasks sharing a files structure, this test
500 * will limit the total number of files that can be opened.
501 */
502 error = -EMFILE;
503 if (fd >= end)
504 goto out;
505
1027abe8
AV
506 error = expand_files(files, fd);
507 if (error < 0)
508 goto out;
509
510 /*
511 * If we needed to expand the fs array we
512 * might have blocked - try again.
513 */
514 if (error)
515 goto repeat;
516
517 if (start <= files->next_fd)
518 files->next_fd = fd + 1;
519
1dce27c5 520 __set_open_fd(fd, fdt);
1027abe8 521 if (flags & O_CLOEXEC)
1dce27c5 522 __set_close_on_exec(fd, fdt);
1027abe8 523 else
1dce27c5 524 __clear_close_on_exec(fd, fdt);
1027abe8
AV
525 error = fd;
526#if 1
527 /* Sanity check */
add1f099 528 if (rcu_access_pointer(fdt->fd[fd]) != NULL) {
1027abe8
AV
529 printk(KERN_WARNING "alloc_fd: slot %d not NULL!\n", fd);
530 rcu_assign_pointer(fdt->fd[fd], NULL);
531 }
532#endif
533
534out:
535 spin_unlock(&files->file_lock);
536 return error;
537}
538
ad47bd72 539static int alloc_fd(unsigned start, unsigned flags)
dcfadfa4
AV
540{
541 return __alloc_fd(current->files, start, rlimit(RLIMIT_NOFILE), flags);
542}
543
4022e7af
JA
544int __get_unused_fd_flags(unsigned flags, unsigned long nofile)
545{
546 return __alloc_fd(current->files, 0, nofile, flags);
547}
548
1a7bd226 549int get_unused_fd_flags(unsigned flags)
1027abe8 550{
4022e7af 551 return __get_unused_fd_flags(flags, rlimit(RLIMIT_NOFILE));
1027abe8 552}
1a7bd226 553EXPORT_SYMBOL(get_unused_fd_flags);
56007cae
AV
554
555static void __put_unused_fd(struct files_struct *files, unsigned int fd)
556{
557 struct fdtable *fdt = files_fdtable(files);
558 __clear_open_fd(fd, fdt);
559 if (fd < files->next_fd)
560 files->next_fd = fd;
561}
562
563void put_unused_fd(unsigned int fd)
564{
565 struct files_struct *files = current->files;
566 spin_lock(&files->file_lock);
567 __put_unused_fd(files, fd);
568 spin_unlock(&files->file_lock);
569}
570
571EXPORT_SYMBOL(put_unused_fd);
572
573/*
574 * Install a file pointer in the fd array.
575 *
576 * The VFS is full of places where we drop the files lock between
577 * setting the open_fds bitmap and installing the file in the file
578 * array. At any such point, we are vulnerable to a dup2() race
579 * installing a file in the array before us. We need to detect this and
580 * fput() the struct file we are about to overwrite in this case.
581 *
582 * It should never happen - if we allow dup2() do it, _really_ bad things
583 * will follow.
f869e8a7
AV
584 *
585 * NOTE: __fd_install() variant is really, really low-level; don't
586 * use it unless you are forced to by truly lousy API shoved down
587 * your throat. 'files' *MUST* be either current->files or obtained
588 * by get_files_struct(current) done by whoever had given it to you,
589 * or really bad things will happen. Normally you want to use
590 * fd_install() instead.
56007cae
AV
591 */
592
f869e8a7
AV
593void __fd_install(struct files_struct *files, unsigned int fd,
594 struct file *file)
56007cae 595{
56007cae 596 struct fdtable *fdt;
8a81252b 597
8a81252b
ED
598 rcu_read_lock_sched();
599
c02b1a9b 600 if (unlikely(files->resize_in_progress)) {
8a81252b 601 rcu_read_unlock_sched();
c02b1a9b
MG
602 spin_lock(&files->file_lock);
603 fdt = files_fdtable(files);
604 BUG_ON(fdt->fd[fd] != NULL);
605 rcu_assign_pointer(fdt->fd[fd], file);
606 spin_unlock(&files->file_lock);
607 return;
8a81252b
ED
608 }
609 /* coupled with smp_wmb() in expand_fdtable() */
610 smp_rmb();
611 fdt = rcu_dereference_sched(files->fdt);
56007cae
AV
612 BUG_ON(fdt->fd[fd] != NULL);
613 rcu_assign_pointer(fdt->fd[fd], file);
8a81252b 614 rcu_read_unlock_sched();
56007cae
AV
615}
616
f869e8a7
AV
617void fd_install(unsigned int fd, struct file *file)
618{
619 __fd_install(current->files, fd, file);
620}
621
56007cae 622EXPORT_SYMBOL(fd_install);
0ee8cdfe 623
278a5fba 624static struct file *pick_file(struct files_struct *files, unsigned fd)
483ce1d4 625{
278a5fba 626 struct file *file = NULL;
483ce1d4
AV
627 struct fdtable *fdt;
628
629 spin_lock(&files->file_lock);
630 fdt = files_fdtable(files);
631 if (fd >= fdt->max_fds)
632 goto out_unlock;
633 file = fdt->fd[fd];
634 if (!file)
635 goto out_unlock;
636 rcu_assign_pointer(fdt->fd[fd], NULL);
483ce1d4 637 __put_unused_fd(files, fd);
483ce1d4
AV
638
639out_unlock:
640 spin_unlock(&files->file_lock);
278a5fba
CB
641 return file;
642}
643
644/*
645 * The same warnings as for __alloc_fd()/__fd_install() apply here...
646 */
647int __close_fd(struct files_struct *files, unsigned fd)
648{
649 struct file *file;
650
651 file = pick_file(files, fd);
652 if (!file)
653 return -EBADF;
654
655 return filp_close(file, files);
483ce1d4 656}
2ca2a09d 657EXPORT_SYMBOL(__close_fd); /* for ksys_close() */
483ce1d4 658
278a5fba
CB
659/**
660 * __close_range() - Close all file descriptors in a given range.
661 *
662 * @fd: starting file descriptor to close
663 * @max_fd: last file descriptor to close
664 *
665 * This closes a range of file descriptors. All file descriptors
666 * from @fd up to and including @max_fd are closed.
667 */
668int __close_range(struct files_struct *files, unsigned fd, unsigned max_fd)
669{
670 unsigned int cur_max;
671
672 if (fd > max_fd)
673 return -EINVAL;
674
675 rcu_read_lock();
676 cur_max = files_fdtable(files)->max_fds;
677 rcu_read_unlock();
678
679 /* cap to last valid index into fdtable */
680 cur_max--;
681
682 max_fd = min(max_fd, cur_max);
683 while (fd <= max_fd) {
684 struct file *file;
685
686 file = pick_file(files, fd++);
687 if (!file)
688 continue;
689
690 filp_close(file, files);
691 cond_resched();
692 }
693
694 return 0;
695}
696
80cd7956 697/*
6e802a4b
JA
698 * variant of __close_fd that gets a ref on the file for later fput.
699 * The caller must ensure that filp_close() called on the file, and then
700 * an fput().
80cd7956
TK
701 */
702int __close_fd_get_file(unsigned int fd, struct file **res)
703{
704 struct files_struct *files = current->files;
705 struct file *file;
706 struct fdtable *fdt;
707
708 spin_lock(&files->file_lock);
709 fdt = files_fdtable(files);
710 if (fd >= fdt->max_fds)
711 goto out_unlock;
712 file = fdt->fd[fd];
713 if (!file)
714 goto out_unlock;
715 rcu_assign_pointer(fdt->fd[fd], NULL);
716 __put_unused_fd(files, fd);
717 spin_unlock(&files->file_lock);
718 get_file(file);
719 *res = file;
6e802a4b 720 return 0;
80cd7956
TK
721
722out_unlock:
723 spin_unlock(&files->file_lock);
724 *res = NULL;
725 return -ENOENT;
726}
727
6a6d27de
AV
728void do_close_on_exec(struct files_struct *files)
729{
730 unsigned i;
731 struct fdtable *fdt;
732
733 /* exec unshares first */
6a6d27de
AV
734 spin_lock(&files->file_lock);
735 for (i = 0; ; i++) {
736 unsigned long set;
737 unsigned fd = i * BITS_PER_LONG;
738 fdt = files_fdtable(files);
739 if (fd >= fdt->max_fds)
740 break;
741 set = fdt->close_on_exec[i];
742 if (!set)
743 continue;
744 fdt->close_on_exec[i] = 0;
745 for ( ; set ; fd++, set >>= 1) {
746 struct file *file;
747 if (!(set & 1))
748 continue;
749 file = fdt->fd[fd];
750 if (!file)
751 continue;
752 rcu_assign_pointer(fdt->fd[fd], NULL);
753 __put_unused_fd(files, fd);
754 spin_unlock(&files->file_lock);
755 filp_close(file, files);
756 cond_resched();
757 spin_lock(&files->file_lock);
758 }
759
760 }
761 spin_unlock(&files->file_lock);
762}
763
5e876fb4
SD
764static struct file *__fget_files(struct files_struct *files, unsigned int fd,
765 fmode_t mask, unsigned int refs)
0ee8cdfe 766{
1deb46e2 767 struct file *file;
0ee8cdfe
AV
768
769 rcu_read_lock();
5ba97d28 770loop:
0ee8cdfe
AV
771 file = fcheck_files(files, fd);
772 if (file) {
5ba97d28
ED
773 /* File object ref couldn't be taken.
774 * dup2() atomicity guarantee is the reason
775 * we loop to catch the new file (or NULL pointer)
776 */
777 if (file->f_mode & mask)
0ee8cdfe 778 file = NULL;
091141a4 779 else if (!get_file_rcu_many(file, refs))
5ba97d28 780 goto loop;
0ee8cdfe
AV
781 }
782 rcu_read_unlock();
783
784 return file;
785}
786
5e876fb4
SD
787static inline struct file *__fget(unsigned int fd, fmode_t mask,
788 unsigned int refs)
789{
790 return __fget_files(current->files, fd, mask, refs);
791}
792
091141a4
JA
793struct file *fget_many(unsigned int fd, unsigned int refs)
794{
795 return __fget(fd, FMODE_PATH, refs);
796}
797
1deb46e2
ON
798struct file *fget(unsigned int fd)
799{
091141a4 800 return __fget(fd, FMODE_PATH, 1);
1deb46e2 801}
0ee8cdfe
AV
802EXPORT_SYMBOL(fget);
803
804struct file *fget_raw(unsigned int fd)
805{
091141a4 806 return __fget(fd, 0, 1);
0ee8cdfe 807}
0ee8cdfe
AV
808EXPORT_SYMBOL(fget_raw);
809
5e876fb4
SD
810struct file *fget_task(struct task_struct *task, unsigned int fd)
811{
812 struct file *file = NULL;
813
814 task_lock(task);
815 if (task->files)
816 file = __fget_files(task->files, fd, 0, 1);
817 task_unlock(task);
818
819 return file;
820}
821
0ee8cdfe
AV
822/*
823 * Lightweight file lookup - no refcnt increment if fd table isn't shared.
824 *
825 * You can use this instead of fget if you satisfy all of the following
826 * conditions:
827 * 1) You must call fput_light before exiting the syscall and returning control
828 * to userspace (i.e. you cannot remember the returned struct file * after
829 * returning to userspace).
830 * 2) You must not call filp_close on the returned struct file * in between
831 * calls to fget_light and fput_light.
832 * 3) You must not clone the current task in between the calls to fget_light
833 * and fput_light.
834 *
835 * The fput_needed flag returned by fget_light should be passed to the
836 * corresponding fput_light.
837 */
bd2a31d5 838static unsigned long __fget_light(unsigned int fd, fmode_t mask)
0ee8cdfe 839{
0ee8cdfe 840 struct files_struct *files = current->files;
ad461834 841 struct file *file;
0ee8cdfe 842
0ee8cdfe 843 if (atomic_read(&files->count) == 1) {
a8d4b834 844 file = __fcheck_files(files, fd);
bd2a31d5
AV
845 if (!file || unlikely(file->f_mode & mask))
846 return 0;
847 return (unsigned long)file;
0ee8cdfe 848 } else {
091141a4 849 file = __fget(fd, mask, 1);
bd2a31d5
AV
850 if (!file)
851 return 0;
852 return FDPUT_FPUT | (unsigned long)file;
0ee8cdfe 853 }
0ee8cdfe 854}
bd2a31d5 855unsigned long __fdget(unsigned int fd)
ad461834 856{
bd2a31d5 857 return __fget_light(fd, FMODE_PATH);
ad461834 858}
bd2a31d5 859EXPORT_SYMBOL(__fdget);
0ee8cdfe 860
bd2a31d5 861unsigned long __fdget_raw(unsigned int fd)
0ee8cdfe 862{
bd2a31d5 863 return __fget_light(fd, 0);
0ee8cdfe 864}
fe17f22d 865
bd2a31d5
AV
866unsigned long __fdget_pos(unsigned int fd)
867{
99aea681
EB
868 unsigned long v = __fdget(fd);
869 struct file *file = (struct file *)(v & ~3);
bd2a31d5 870
2be7d348 871 if (file && (file->f_mode & FMODE_ATOMIC_POS)) {
bd2a31d5
AV
872 if (file_count(file) > 1) {
873 v |= FDPUT_POS_UNLOCK;
874 mutex_lock(&file->f_pos_lock);
875 }
876 }
99aea681 877 return v;
bd2a31d5
AV
878}
879
63b6df14
AV
880void __f_unlock_pos(struct file *f)
881{
882 mutex_unlock(&f->f_pos_lock);
883}
884
bd2a31d5
AV
885/*
886 * We only lock f_pos if we have threads or if the file might be
887 * shared with another process. In both cases we'll have an elevated
888 * file count (done either by fdget() or by fork()).
889 */
890
fe17f22d
AV
891void set_close_on_exec(unsigned int fd, int flag)
892{
893 struct files_struct *files = current->files;
894 struct fdtable *fdt;
895 spin_lock(&files->file_lock);
896 fdt = files_fdtable(files);
897 if (flag)
898 __set_close_on_exec(fd, fdt);
899 else
900 __clear_close_on_exec(fd, fdt);
901 spin_unlock(&files->file_lock);
902}
903
904bool get_close_on_exec(unsigned int fd)
905{
906 struct files_struct *files = current->files;
907 struct fdtable *fdt;
908 bool res;
909 rcu_read_lock();
910 fdt = files_fdtable(files);
911 res = close_on_exec(fd, fdt);
912 rcu_read_unlock();
913 return res;
914}
915
8280d161
AV
916static int do_dup2(struct files_struct *files,
917 struct file *file, unsigned fd, unsigned flags)
e983094d 918__releases(&files->file_lock)
fe17f22d 919{
8280d161 920 struct file *tofree;
fe17f22d
AV
921 struct fdtable *fdt;
922
fe17f22d
AV
923 /*
924 * We need to detect attempts to do dup2() over allocated but still
925 * not finished descriptor. NB: OpenBSD avoids that at the price of
926 * extra work in their equivalent of fget() - they insert struct
927 * file immediately after grabbing descriptor, mark it larval if
928 * more work (e.g. actual opening) is needed and make sure that
929 * fget() treats larval files as absent. Potentially interesting,
930 * but while extra work in fget() is trivial, locking implications
931 * and amount of surgery on open()-related paths in VFS are not.
932 * FreeBSD fails with -EBADF in the same situation, NetBSD "solution"
933 * deadlocks in rather amusing ways, AFAICS. All of that is out of
934 * scope of POSIX or SUS, since neither considers shared descriptor
935 * tables and this condition does not arise without those.
936 */
fe17f22d 937 fdt = files_fdtable(files);
8280d161
AV
938 tofree = fdt->fd[fd];
939 if (!tofree && fd_is_open(fd, fdt))
940 goto Ebusy;
fe17f22d 941 get_file(file);
8280d161
AV
942 rcu_assign_pointer(fdt->fd[fd], file);
943 __set_open_fd(fd, fdt);
fe17f22d 944 if (flags & O_CLOEXEC)
8280d161 945 __set_close_on_exec(fd, fdt);
fe17f22d 946 else
8280d161 947 __clear_close_on_exec(fd, fdt);
fe17f22d
AV
948 spin_unlock(&files->file_lock);
949
950 if (tofree)
951 filp_close(tofree, files);
952
8280d161
AV
953 return fd;
954
955Ebusy:
956 spin_unlock(&files->file_lock);
957 return -EBUSY;
958}
959
960int replace_fd(unsigned fd, struct file *file, unsigned flags)
961{
962 int err;
963 struct files_struct *files = current->files;
964
965 if (!file)
966 return __close_fd(files, fd);
967
968 if (fd >= rlimit(RLIMIT_NOFILE))
08f05c49 969 return -EBADF;
8280d161
AV
970
971 spin_lock(&files->file_lock);
972 err = expand_files(files, fd);
973 if (unlikely(err < 0))
974 goto out_unlock;
975 return do_dup2(files, file, fd, flags);
976
977out_unlock:
978 spin_unlock(&files->file_lock);
979 return err;
980}
981
c7248321 982static int ksys_dup3(unsigned int oldfd, unsigned int newfd, int flags)
8280d161
AV
983{
984 int err = -EBADF;
985 struct file *file;
986 struct files_struct *files = current->files;
987
988 if ((flags & ~O_CLOEXEC) != 0)
989 return -EINVAL;
990
aed97647
RJ
991 if (unlikely(oldfd == newfd))
992 return -EINVAL;
993
8280d161 994 if (newfd >= rlimit(RLIMIT_NOFILE))
08f05c49 995 return -EBADF;
8280d161
AV
996
997 spin_lock(&files->file_lock);
998 err = expand_files(files, newfd);
999 file = fcheck(oldfd);
1000 if (unlikely(!file))
1001 goto Ebadf;
1002 if (unlikely(err < 0)) {
1003 if (err == -EMFILE)
1004 goto Ebadf;
1005 goto out_unlock;
1006 }
1007 return do_dup2(files, file, newfd, flags);
fe17f22d
AV
1008
1009Ebadf:
1010 err = -EBADF;
1011out_unlock:
1012 spin_unlock(&files->file_lock);
1013 return err;
1014}
1015
c7248321
DB
1016SYSCALL_DEFINE3(dup3, unsigned int, oldfd, unsigned int, newfd, int, flags)
1017{
1018 return ksys_dup3(oldfd, newfd, flags);
1019}
1020
fe17f22d
AV
1021SYSCALL_DEFINE2(dup2, unsigned int, oldfd, unsigned int, newfd)
1022{
1023 if (unlikely(newfd == oldfd)) { /* corner case */
1024 struct files_struct *files = current->files;
1025 int retval = oldfd;
1026
1027 rcu_read_lock();
1028 if (!fcheck_files(files, oldfd))
1029 retval = -EBADF;
1030 rcu_read_unlock();
1031 return retval;
1032 }
c7248321 1033 return ksys_dup3(oldfd, newfd, 0);
fe17f22d
AV
1034}
1035
74f1a299 1036int ksys_dup(unsigned int fildes)
fe17f22d
AV
1037{
1038 int ret = -EBADF;
1039 struct file *file = fget_raw(fildes);
1040
1041 if (file) {
8d10a035 1042 ret = get_unused_fd_flags(0);
fe17f22d
AV
1043 if (ret >= 0)
1044 fd_install(ret, file);
1045 else
1046 fput(file);
1047 }
1048 return ret;
1049}
1050
74f1a299
DB
1051SYSCALL_DEFINE1(dup, unsigned int, fildes)
1052{
1053 return ksys_dup(fildes);
1054}
1055
fe17f22d
AV
1056int f_dupfd(unsigned int from, struct file *file, unsigned flags)
1057{
1058 int err;
1059 if (from >= rlimit(RLIMIT_NOFILE))
1060 return -EINVAL;
1061 err = alloc_fd(from, flags);
1062 if (err >= 0) {
1063 get_file(file);
1064 fd_install(err, file);
1065 }
1066 return err;
1067}
c3c073f8
AV
1068
1069int iterate_fd(struct files_struct *files, unsigned n,
1070 int (*f)(const void *, struct file *, unsigned),
1071 const void *p)
1072{
1073 struct fdtable *fdt;
c3c073f8
AV
1074 int res = 0;
1075 if (!files)
1076 return 0;
1077 spin_lock(&files->file_lock);
a77cfcb4
AV
1078 for (fdt = files_fdtable(files); n < fdt->max_fds; n++) {
1079 struct file *file;
1080 file = rcu_dereference_check_fdtable(files, fdt->fd[n]);
1081 if (!file)
1082 continue;
1083 res = f(p, file, n);
1084 if (res)
1085 break;
c3c073f8
AV
1086 }
1087 spin_unlock(&files->file_lock);
1088 return res;
1089}
1090EXPORT_SYMBOL(iterate_fd);