close_range — close all file descriptors in a given range
#include <linux/close_range.h>
int
close_range( |
unsigned int first, |
unsigned int last, | |
unsigned int flags) ; |
Note | |
---|---|
There is no glibc wrapper for this system call; see NOTES. |
The close_range
() system
call closes all open file descriptors from first
to last
(included).
Errors closing a given file descriptor are currently ignored.
flags
is a bit
mask containing 0 or more of the following:
CLOSE_RANGE_CLOEXEC
(since Linux
5.11)Set the close-on-exec flag on the specified file descriptors, rather than immediately closing them.
CLOSE_RANGE_UNSHARE
Unshare the specified file descriptors from any other processes before closing them, avoiding races with other threads sharing the file descriptor table.
On success, close_range
()
returns 0. On error, −1 is returned and errno
is set to indicate the error.
flags
is not
valid, or first
is greater than last
.
The following can occur with CLOSE_RANGE_UNSHARE
(when constructing the
new descriptor table):
The number of open file descriptors exceeds the
limit specified in /proc/sys/fs/nr_open
(see proc(5)). This error
can occur in situations where that limit was lowered
before a call to close_range
() where the CLOSE_RANGE_UNSHARE
flag is
specified.
Insufficient kernel memory was available.
Glibc does not provide a wrapper for this system call; call it using syscall(2).
To avoid blindly closing file descriptors in the range
of possible file descriptors, this is sometimes implemented
(on Linux) by listing open file descriptors in /proc/self/fd/
and calling close(2) on each one.
close_range
() can take care
of this without requiring /proc
and within a single system call,
which provides significant performance benefits.
File descriptors can be closed safely using
/* we don't want anything past stderr here */ close_range(3, ~0U, CLOSE_RANGE_UNSHARE); execve(....);
CLOSE_RANGE_UNSHARE
is
conceptually equivalent to
unshare(CLONE_FILES); close_range(first, last, 0);
but can be more efficient: if the unshared range extends
past the current maximum number of file descriptors
allocated in the caller's file descriptor table (the common
case when last
is
~0U), the kernel will unshare a new file descriptor table
for the caller up to first
, copying as few file
descriptors as possible. This avoids subsequent close(2) calls entirely;
the whole operation is complete once the table is
unshared.
exec
This is particularly useful in cases where multiple
pre-exec
setup
steps risk conflicting with each other. For example,
setting up a seccomp(2) profile can
conflict with a close_range
()
call: if the file descriptors are closed before the
seccomp(2) profile is set
up, the profile setup can't use them itself, or control
their closure; if the file descriptors are closed
afterwards, the seccomp profile can't block the
close_range
() call or any
fallbacks. Using CLOSE_RANGE_CLOEXEC
avoids this: the
descriptors can be marked before the seccomp(2) profile is set
up, and the profile can control access to close_range
() without affecting the
calling process.
The program shown below opens the files named in its
command-line arguments, displays the list of files that it
has opened (by iterating through the entries in /proc/PID/fd
), uses close_range
() to close all file descriptors
greater than or equal to 3, and then once more displays the
process's list of open files. The following example
demonstrates the use of the program:
$ touch /tmp/a /tmp/b /tmp/c $ ./a.out /tmp/a /tmp/b /tmp/c /tmp/a opened as FD 3 /tmp/b opened as FD 4 /tmp/c opened as FD 5 /proc/self/fd/0 ==> /dev/pts/1 /proc/self/fd/1 ==> /dev/pts/1 /proc/self/fd/2 ==> /dev/pts/1 /proc/self/fd/3 ==> /tmp/a /proc/self/fd/4 ==> /tmp/b /proc/self/fd/5 ==> /tmp/b /proc/self/fd/6 ==> /proc/9005/fd ========= About to call close_range() ======= /proc/self/fd/0 ==> /dev/pts/1 /proc/self/fd/1 ==> /dev/pts/1 /proc/self/fd/2 ==> /dev/pts/1 /proc/self/fd/3 ==> /proc/9005/fd
Note that the lines showing the pathname /proc/9005/fd
result from the calls to
opendir(3).
#define _GNU_SOURCE #include <fcntl.h> #include <linux/close_range.h> #include <stdio.h> #include <stdlib.h> #include <sys/syscall.h> #include <string.h> #include <unistd.h> #include <dirent.h> /* Show the contents of the symbolic links in /proc/self/fd */ static void show_fds(void) { DIR *dirp = opendir("/proc/self/fd"); if (dirp == NULL) { perror("opendir"); exit(EXIT_FAILURE); } for (;;) { struct dirent *dp = readdir(dirp); if (dp == NULL) break; if (dp−>d_type == DT_LNK) { char path[PATH_MAX], target[PATH_MAX]; snprintf(path, sizeof(path), "/proc/self/fd/%s", dp−>d_name); ssize_t len = readlink(path, target, sizeof(target)); printf("%s ==> %.*s\n", path, (int) len, target); } } closedir(dirp); } int main(int argc, char *argv[]) { for (int j = 1; j < argc; j++) { int fd = open(argv[j], O_RDONLY); if (fd == −1) { perror(argv[j]); exit(EXIT_FAILURE); } printf("%s opened as FD %d\n", argv[j], fd); } show_fds(); printf("========= About to call close_range() =======\n"); if (syscall(__NR_close_range, 3, ~0U, 0) == −1) { perror("close_range"); exit(EXIT_FAILURE); } show_fds(); exit(EXIT_FAILURE); }
This page is part of release 5.11 of the Linux man-pages
project. A
description of the project, information about reporting bugs,
and the latest version of this page, can be found at
https://www.kernel.org/doc/man−pages/.
Copyright (c) 2020 Stephen Kitt <stevesk2.org> and Copyright (c) 2021 Michael Kerrisk <mtk.manpagesgmail.com> %%%LICENSE_START(VERBATIM) Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Since the Linux kernel and libraries are constantly changing, this manual page may be incorrect or out-of-date. The author(s) assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. The author(s) may not have taken the same level of care in the production of this manual, which is licensed free of charge, as they might when working professionally. Formatted or processed versions of this manual, if unaccompanied by the source, must acknowledge the copyright and authors of this work. %%%LICENSE_END |