]> Git Repo - linux.git/blame - fs/file.c
pidfd: Replace open-coded receive_fd()
[linux.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
LT
12#include <linux/fs.h>
13#include <linux/mm.h>
3f07c014 14#include <linux/sched/signal.h>
1da177e4 15#include <linux/slab.h>
1da177e4 16#include <linux/file.h>
9f3acc31 17#include <linux/fdtable.h>
1da177e4 18#include <linux/bitops.h>
ab2af1f5
DS
19#include <linux/spinlock.h>
20#include <linux/rcupdate.h>
66590610 21#include <net/sock.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
66590610
KC
617/*
618 * This consumes the "file" refcount, so callers should treat it
619 * as if they had called fput(file).
620 */
f869e8a7
AV
621void fd_install(unsigned int fd, struct file *file)
622{
623 __fd_install(current->files, fd, file);
624}
625
56007cae 626EXPORT_SYMBOL(fd_install);
0ee8cdfe 627
483ce1d4
AV
628/*
629 * The same warnings as for __alloc_fd()/__fd_install() apply here...
630 */
631int __close_fd(struct files_struct *files, unsigned fd)
632{
633 struct file *file;
634 struct fdtable *fdt;
635
636 spin_lock(&files->file_lock);
637 fdt = files_fdtable(files);
638 if (fd >= fdt->max_fds)
639 goto out_unlock;
640 file = fdt->fd[fd];
641 if (!file)
642 goto out_unlock;
643 rcu_assign_pointer(fdt->fd[fd], NULL);
483ce1d4
AV
644 __put_unused_fd(files, fd);
645 spin_unlock(&files->file_lock);
646 return filp_close(file, files);
647
648out_unlock:
649 spin_unlock(&files->file_lock);
650 return -EBADF;
651}
2ca2a09d 652EXPORT_SYMBOL(__close_fd); /* for ksys_close() */
483ce1d4 653
80cd7956 654/*
6e802a4b
JA
655 * variant of __close_fd that gets a ref on the file for later fput.
656 * The caller must ensure that filp_close() called on the file, and then
657 * an fput().
80cd7956
TK
658 */
659int __close_fd_get_file(unsigned int fd, struct file **res)
660{
661 struct files_struct *files = current->files;
662 struct file *file;
663 struct fdtable *fdt;
664
665 spin_lock(&files->file_lock);
666 fdt = files_fdtable(files);
667 if (fd >= fdt->max_fds)
668 goto out_unlock;
669 file = fdt->fd[fd];
670 if (!file)
671 goto out_unlock;
672 rcu_assign_pointer(fdt->fd[fd], NULL);
673 __put_unused_fd(files, fd);
674 spin_unlock(&files->file_lock);
675 get_file(file);
676 *res = file;
6e802a4b 677 return 0;
80cd7956
TK
678
679out_unlock:
680 spin_unlock(&files->file_lock);
681 *res = NULL;
682 return -ENOENT;
683}
684
6a6d27de
AV
685void do_close_on_exec(struct files_struct *files)
686{
687 unsigned i;
688 struct fdtable *fdt;
689
690 /* exec unshares first */
6a6d27de
AV
691 spin_lock(&files->file_lock);
692 for (i = 0; ; i++) {
693 unsigned long set;
694 unsigned fd = i * BITS_PER_LONG;
695 fdt = files_fdtable(files);
696 if (fd >= fdt->max_fds)
697 break;
698 set = fdt->close_on_exec[i];
699 if (!set)
700 continue;
701 fdt->close_on_exec[i] = 0;
702 for ( ; set ; fd++, set >>= 1) {
703 struct file *file;
704 if (!(set & 1))
705 continue;
706 file = fdt->fd[fd];
707 if (!file)
708 continue;
709 rcu_assign_pointer(fdt->fd[fd], NULL);
710 __put_unused_fd(files, fd);
711 spin_unlock(&files->file_lock);
712 filp_close(file, files);
713 cond_resched();
714 spin_lock(&files->file_lock);
715 }
716
717 }
718 spin_unlock(&files->file_lock);
719}
720
5e876fb4
SD
721static struct file *__fget_files(struct files_struct *files, unsigned int fd,
722 fmode_t mask, unsigned int refs)
0ee8cdfe 723{
1deb46e2 724 struct file *file;
0ee8cdfe
AV
725
726 rcu_read_lock();
5ba97d28 727loop:
0ee8cdfe
AV
728 file = fcheck_files(files, fd);
729 if (file) {
5ba97d28
ED
730 /* File object ref couldn't be taken.
731 * dup2() atomicity guarantee is the reason
732 * we loop to catch the new file (or NULL pointer)
733 */
734 if (file->f_mode & mask)
0ee8cdfe 735 file = NULL;
091141a4 736 else if (!get_file_rcu_many(file, refs))
5ba97d28 737 goto loop;
0ee8cdfe
AV
738 }
739 rcu_read_unlock();
740
741 return file;
742}
743
5e876fb4
SD
744static inline struct file *__fget(unsigned int fd, fmode_t mask,
745 unsigned int refs)
746{
747 return __fget_files(current->files, fd, mask, refs);
748}
749
091141a4
JA
750struct file *fget_many(unsigned int fd, unsigned int refs)
751{
752 return __fget(fd, FMODE_PATH, refs);
753}
754
1deb46e2
ON
755struct file *fget(unsigned int fd)
756{
091141a4 757 return __fget(fd, FMODE_PATH, 1);
1deb46e2 758}
0ee8cdfe
AV
759EXPORT_SYMBOL(fget);
760
761struct file *fget_raw(unsigned int fd)
762{
091141a4 763 return __fget(fd, 0, 1);
0ee8cdfe 764}
0ee8cdfe
AV
765EXPORT_SYMBOL(fget_raw);
766
5e876fb4
SD
767struct file *fget_task(struct task_struct *task, unsigned int fd)
768{
769 struct file *file = NULL;
770
771 task_lock(task);
772 if (task->files)
773 file = __fget_files(task->files, fd, 0, 1);
774 task_unlock(task);
775
776 return file;
777}
778
0ee8cdfe
AV
779/*
780 * Lightweight file lookup - no refcnt increment if fd table isn't shared.
781 *
782 * You can use this instead of fget if you satisfy all of the following
783 * conditions:
784 * 1) You must call fput_light before exiting the syscall and returning control
785 * to userspace (i.e. you cannot remember the returned struct file * after
786 * returning to userspace).
787 * 2) You must not call filp_close on the returned struct file * in between
788 * calls to fget_light and fput_light.
789 * 3) You must not clone the current task in between the calls to fget_light
790 * and fput_light.
791 *
792 * The fput_needed flag returned by fget_light should be passed to the
793 * corresponding fput_light.
794 */
bd2a31d5 795static unsigned long __fget_light(unsigned int fd, fmode_t mask)
0ee8cdfe 796{
0ee8cdfe 797 struct files_struct *files = current->files;
ad461834 798 struct file *file;
0ee8cdfe 799
0ee8cdfe 800 if (atomic_read(&files->count) == 1) {
a8d4b834 801 file = __fcheck_files(files, fd);
bd2a31d5
AV
802 if (!file || unlikely(file->f_mode & mask))
803 return 0;
804 return (unsigned long)file;
0ee8cdfe 805 } else {
091141a4 806 file = __fget(fd, mask, 1);
bd2a31d5
AV
807 if (!file)
808 return 0;
809 return FDPUT_FPUT | (unsigned long)file;
0ee8cdfe 810 }
0ee8cdfe 811}
bd2a31d5 812unsigned long __fdget(unsigned int fd)
ad461834 813{
bd2a31d5 814 return __fget_light(fd, FMODE_PATH);
ad461834 815}
bd2a31d5 816EXPORT_SYMBOL(__fdget);
0ee8cdfe 817
bd2a31d5 818unsigned long __fdget_raw(unsigned int fd)
0ee8cdfe 819{
bd2a31d5 820 return __fget_light(fd, 0);
0ee8cdfe 821}
fe17f22d 822
bd2a31d5
AV
823unsigned long __fdget_pos(unsigned int fd)
824{
99aea681
EB
825 unsigned long v = __fdget(fd);
826 struct file *file = (struct file *)(v & ~3);
bd2a31d5 827
2be7d348 828 if (file && (file->f_mode & FMODE_ATOMIC_POS)) {
bd2a31d5
AV
829 if (file_count(file) > 1) {
830 v |= FDPUT_POS_UNLOCK;
831 mutex_lock(&file->f_pos_lock);
832 }
833 }
99aea681 834 return v;
bd2a31d5
AV
835}
836
63b6df14
AV
837void __f_unlock_pos(struct file *f)
838{
839 mutex_unlock(&f->f_pos_lock);
840}
841
bd2a31d5
AV
842/*
843 * We only lock f_pos if we have threads or if the file might be
844 * shared with another process. In both cases we'll have an elevated
845 * file count (done either by fdget() or by fork()).
846 */
847
fe17f22d
AV
848void set_close_on_exec(unsigned int fd, int flag)
849{
850 struct files_struct *files = current->files;
851 struct fdtable *fdt;
852 spin_lock(&files->file_lock);
853 fdt = files_fdtable(files);
854 if (flag)
855 __set_close_on_exec(fd, fdt);
856 else
857 __clear_close_on_exec(fd, fdt);
858 spin_unlock(&files->file_lock);
859}
860
861bool get_close_on_exec(unsigned int fd)
862{
863 struct files_struct *files = current->files;
864 struct fdtable *fdt;
865 bool res;
866 rcu_read_lock();
867 fdt = files_fdtable(files);
868 res = close_on_exec(fd, fdt);
869 rcu_read_unlock();
870 return res;
871}
872
8280d161
AV
873static int do_dup2(struct files_struct *files,
874 struct file *file, unsigned fd, unsigned flags)
e983094d 875__releases(&files->file_lock)
fe17f22d 876{
8280d161 877 struct file *tofree;
fe17f22d
AV
878 struct fdtable *fdt;
879
fe17f22d
AV
880 /*
881 * We need to detect attempts to do dup2() over allocated but still
882 * not finished descriptor. NB: OpenBSD avoids that at the price of
883 * extra work in their equivalent of fget() - they insert struct
884 * file immediately after grabbing descriptor, mark it larval if
885 * more work (e.g. actual opening) is needed and make sure that
886 * fget() treats larval files as absent. Potentially interesting,
887 * but while extra work in fget() is trivial, locking implications
888 * and amount of surgery on open()-related paths in VFS are not.
889 * FreeBSD fails with -EBADF in the same situation, NetBSD "solution"
890 * deadlocks in rather amusing ways, AFAICS. All of that is out of
891 * scope of POSIX or SUS, since neither considers shared descriptor
892 * tables and this condition does not arise without those.
893 */
fe17f22d 894 fdt = files_fdtable(files);
8280d161
AV
895 tofree = fdt->fd[fd];
896 if (!tofree && fd_is_open(fd, fdt))
897 goto Ebusy;
fe17f22d 898 get_file(file);
8280d161
AV
899 rcu_assign_pointer(fdt->fd[fd], file);
900 __set_open_fd(fd, fdt);
fe17f22d 901 if (flags & O_CLOEXEC)
8280d161 902 __set_close_on_exec(fd, fdt);
fe17f22d 903 else
8280d161 904 __clear_close_on_exec(fd, fdt);
fe17f22d
AV
905 spin_unlock(&files->file_lock);
906
907 if (tofree)
908 filp_close(tofree, files);
909
8280d161
AV
910 return fd;
911
912Ebusy:
913 spin_unlock(&files->file_lock);
914 return -EBUSY;
915}
916
917int replace_fd(unsigned fd, struct file *file, unsigned flags)
918{
919 int err;
920 struct files_struct *files = current->files;
921
922 if (!file)
923 return __close_fd(files, fd);
924
925 if (fd >= rlimit(RLIMIT_NOFILE))
08f05c49 926 return -EBADF;
8280d161
AV
927
928 spin_lock(&files->file_lock);
929 err = expand_files(files, fd);
930 if (unlikely(err < 0))
931 goto out_unlock;
932 return do_dup2(files, file, fd, flags);
933
934out_unlock:
935 spin_unlock(&files->file_lock);
936 return err;
937}
938
66590610
KC
939/**
940 * __receive_fd() - Install received file into file descriptor table
941 *
942 * @file: struct file that was received from another process
943 * @ufd: __user pointer to write new fd number to
944 * @o_flags: the O_* flags to apply to the new fd entry
945 *
946 * Installs a received file into the file descriptor table, with appropriate
deefa7f3
KC
947 * checks and count updates. Optionally writes the fd number to userspace, if
948 * @ufd is non-NULL.
66590610
KC
949 *
950 * This helper handles its own reference counting of the incoming
951 * struct file.
952 *
deefa7f3 953 * Returns newly install fd or -ve on error.
66590610
KC
954 */
955int __receive_fd(struct file *file, int __user *ufd, unsigned int o_flags)
956{
957 int new_fd;
958 int error;
959
960 error = security_file_receive(file);
961 if (error)
962 return error;
963
964 new_fd = get_unused_fd_flags(o_flags);
965 if (new_fd < 0)
966 return new_fd;
967
deefa7f3
KC
968 if (ufd) {
969 error = put_user(new_fd, ufd);
970 if (error) {
971 put_unused_fd(new_fd);
972 return error;
973 }
66590610
KC
974 }
975
976 /* Bump the sock usage counts, if any. */
977 __receive_sock(file);
978 fd_install(new_fd, get_file(file));
deefa7f3 979 return new_fd;
66590610
KC
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);
This page took 1.259691 seconds and 4 git commands to generate.