mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Don't restrict ourselves to a "max" fd when closing fds before exec()
when we have a way to get an actual list of all open fds from the OS. Fixes issue #21618: The subprocess module would ignore fds that were inherited by the calling process and already higher than POSIX resource limits would otherwise allow. On systems with a functioning /proc/self/fd or /dev/fd interface the max is now ignored and all fds are closed.
This commit is contained in:
parent
694c3153b0
commit
d4dcb70287
3 changed files with 102 additions and 43 deletions
|
@ -44,10 +44,6 @@
|
|||
#define POSIX_CALL(call) do { if ((call) == -1) goto error; } while (0)
|
||||
|
||||
|
||||
/* Maximum file descriptor, initialized on module load. */
|
||||
static long max_fd;
|
||||
|
||||
|
||||
/* Given the gc module call gc.enable() and return 0 on success. */
|
||||
static int
|
||||
_enable_gc(PyObject *gc_module)
|
||||
|
@ -166,14 +162,39 @@ make_inheritable(PyObject *py_fds_to_keep, int errpipe_write)
|
|||
}
|
||||
|
||||
|
||||
/* Close all file descriptors in the range start_fd inclusive to
|
||||
* end_fd exclusive except for those in py_fds_to_keep. If the
|
||||
* range defined by [start_fd, end_fd) is large this will take a
|
||||
* long time as it calls close() on EVERY possible fd.
|
||||
/* Get the maximum file descriptor that could be opened by this process.
|
||||
* This function is async signal safe for use between fork() and exec().
|
||||
*/
|
||||
static long
|
||||
safe_get_max_fd(void)
|
||||
{
|
||||
long local_max_fd;
|
||||
#if defined(__NetBSD__)
|
||||
local_max_fd = fcntl(0, F_MAXFD);
|
||||
if (local_max_fd >= 0)
|
||||
return local_max_fd;
|
||||
#endif
|
||||
#ifdef _SC_OPEN_MAX
|
||||
local_max_fd = sysconf(_SC_OPEN_MAX);
|
||||
if (local_max_fd == -1)
|
||||
#endif
|
||||
local_max_fd = 256; /* Matches legacy Lib/subprocess.py behavior. */
|
||||
return local_max_fd;
|
||||
}
|
||||
|
||||
|
||||
/* Close all file descriptors in the range from start_fd and higher
|
||||
* except for those in py_fds_to_keep. If the range defined by
|
||||
* [start_fd, safe_get_max_fd()) is large this will take a long
|
||||
* time as it calls close() on EVERY possible fd.
|
||||
*
|
||||
* It isn't possible to know for sure what the max fd to go up to
|
||||
* is for processes with the capability of raising their maximum.
|
||||
*/
|
||||
static void
|
||||
_close_fds_by_brute_force(int start_fd, int end_fd, PyObject *py_fds_to_keep)
|
||||
_close_fds_by_brute_force(long start_fd, PyObject *py_fds_to_keep)
|
||||
{
|
||||
long end_fd = safe_get_max_fd();
|
||||
Py_ssize_t num_fds_to_keep = PySequence_Length(py_fds_to_keep);
|
||||
Py_ssize_t keep_seq_idx;
|
||||
int fd_num;
|
||||
|
@ -229,16 +250,14 @@ struct linux_dirent64 {
|
|||
* it with some cpp #define magic to work on other OSes as well if you want.
|
||||
*/
|
||||
static void
|
||||
_close_open_fd_range_safe(int start_fd, int end_fd, PyObject* py_fds_to_keep)
|
||||
_close_open_fds_safe(int start_fd, PyObject* py_fds_to_keep)
|
||||
{
|
||||
int fd_dir_fd;
|
||||
if (start_fd >= end_fd)
|
||||
return;
|
||||
|
||||
fd_dir_fd = _Py_open(FD_DIR, O_RDONLY);
|
||||
if (fd_dir_fd == -1) {
|
||||
/* No way to get a list of open fds. */
|
||||
_close_fds_by_brute_force(start_fd, end_fd, py_fds_to_keep);
|
||||
_close_fds_by_brute_force(start_fd, py_fds_to_keep);
|
||||
return;
|
||||
} else {
|
||||
char buffer[sizeof(struct linux_dirent64)];
|
||||
|
@ -253,23 +272,23 @@ _close_open_fd_range_safe(int start_fd, int end_fd, PyObject* py_fds_to_keep)
|
|||
entry = (struct linux_dirent64 *)(buffer + offset);
|
||||
if ((fd = _pos_int_from_ascii(entry->d_name)) < 0)
|
||||
continue; /* Not a number. */
|
||||
if (fd != fd_dir_fd && fd >= start_fd && fd < end_fd &&
|
||||
if (fd != fd_dir_fd && fd >= start_fd &&
|
||||
!_is_fd_in_sorted_fd_sequence(fd, py_fds_to_keep)) {
|
||||
while (close(fd) < 0 && errno == EINTR);
|
||||
}
|
||||
}
|
||||
}
|
||||
close(fd_dir_fd);
|
||||
while (close(fd_dir_fd) < 0 && errno == EINTR);
|
||||
}
|
||||
}
|
||||
|
||||
#define _close_open_fd_range _close_open_fd_range_safe
|
||||
#define _close_open_fds _close_open_fds_safe
|
||||
|
||||
#else /* NOT (defined(__linux__) && defined(HAVE_SYS_SYSCALL_H)) */
|
||||
|
||||
|
||||
/* Close all open file descriptors in the range start_fd inclusive to end_fd
|
||||
* exclusive. Do not close any in the sorted py_fds_to_keep list.
|
||||
/* Close all open file descriptors from start_fd and higher.
|
||||
* Do not close any in the sorted py_fds_to_keep list.
|
||||
*
|
||||
* This function violates the strict use of async signal safe functions. :(
|
||||
* It calls opendir(), readdir() and closedir(). Of these, the one most
|
||||
|
@ -282,17 +301,13 @@ _close_open_fd_range_safe(int start_fd, int end_fd, PyObject* py_fds_to_keep)
|
|||
* http://womble.decadent.org.uk/readdir_r-advisory.html
|
||||
*/
|
||||
static void
|
||||
_close_open_fd_range_maybe_unsafe(int start_fd, int end_fd,
|
||||
PyObject* py_fds_to_keep)
|
||||
_close_open_fds_maybe_unsafe(long start_fd, PyObject* py_fds_to_keep)
|
||||
{
|
||||
DIR *proc_fd_dir;
|
||||
#ifndef HAVE_DIRFD
|
||||
while (_is_fd_in_sorted_fd_sequence(start_fd, py_fds_to_keep) &&
|
||||
(start_fd < end_fd)) {
|
||||
while (_is_fd_in_sorted_fd_sequence(start_fd, py_fds_to_keep)) {
|
||||
++start_fd;
|
||||
}
|
||||
if (start_fd >= end_fd)
|
||||
return;
|
||||
/* Close our lowest fd before we call opendir so that it is likely to
|
||||
* reuse that fd otherwise we might close opendir's file descriptor in
|
||||
* our loop. This trick assumes that fd's are allocated on a lowest
|
||||
|
@ -300,8 +315,6 @@ _close_open_fd_range_maybe_unsafe(int start_fd, int end_fd,
|
|||
while (close(start_fd) < 0 && errno == EINTR);
|
||||
++start_fd;
|
||||
#endif
|
||||
if (start_fd >= end_fd)
|
||||
return;
|
||||
|
||||
#if defined(__FreeBSD__)
|
||||
if (!_is_fdescfs_mounted_on_dev_fd())
|
||||
|
@ -311,7 +324,7 @@ _close_open_fd_range_maybe_unsafe(int start_fd, int end_fd,
|
|||
proc_fd_dir = opendir(FD_DIR);
|
||||
if (!proc_fd_dir) {
|
||||
/* No way to get a list of open fds. */
|
||||
_close_fds_by_brute_force(start_fd, end_fd, py_fds_to_keep);
|
||||
_close_fds_by_brute_force(start_fd, py_fds_to_keep);
|
||||
} else {
|
||||
struct dirent *dir_entry;
|
||||
#ifdef HAVE_DIRFD
|
||||
|
@ -324,7 +337,7 @@ _close_open_fd_range_maybe_unsafe(int start_fd, int end_fd,
|
|||
int fd;
|
||||
if ((fd = _pos_int_from_ascii(dir_entry->d_name)) < 0)
|
||||
continue; /* Not a number. */
|
||||
if (fd != fd_used_by_opendir && fd >= start_fd && fd < end_fd &&
|
||||
if (fd != fd_used_by_opendir && fd >= start_fd &&
|
||||
!_is_fd_in_sorted_fd_sequence(fd, py_fds_to_keep)) {
|
||||
while (close(fd) < 0 && errno == EINTR);
|
||||
}
|
||||
|
@ -332,13 +345,13 @@ _close_open_fd_range_maybe_unsafe(int start_fd, int end_fd,
|
|||
}
|
||||
if (errno) {
|
||||
/* readdir error, revert behavior. Highly Unlikely. */
|
||||
_close_fds_by_brute_force(start_fd, end_fd, py_fds_to_keep);
|
||||
_close_fds_by_brute_force(start_fd, py_fds_to_keep);
|
||||
}
|
||||
closedir(proc_fd_dir);
|
||||
}
|
||||
}
|
||||
|
||||
#define _close_open_fd_range _close_open_fd_range_maybe_unsafe
|
||||
#define _close_open_fds _close_open_fds_maybe_unsafe
|
||||
|
||||
#endif /* else NOT (defined(__linux__) && defined(HAVE_SYS_SYSCALL_H)) */
|
||||
|
||||
|
@ -457,14 +470,8 @@ child_exec(char *const exec_array[],
|
|||
|
||||
/* close FDs after executing preexec_fn, which might open FDs */
|
||||
if (close_fds) {
|
||||
int local_max_fd = max_fd;
|
||||
#if defined(__NetBSD__)
|
||||
local_max_fd = fcntl(0, F_MAXFD);
|
||||
if (local_max_fd < 0)
|
||||
local_max_fd = max_fd;
|
||||
#endif
|
||||
/* TODO HP-UX could use pstat_getproc() if anyone cares about it. */
|
||||
_close_open_fd_range(3, local_max_fd, py_fds_to_keep);
|
||||
_close_open_fds(3, py_fds_to_keep);
|
||||
}
|
||||
|
||||
/* This loop matches the Lib/os.py _execvpe()'s PATH search when */
|
||||
|
@ -759,11 +766,5 @@ static struct PyModuleDef _posixsubprocessmodule = {
|
|||
PyMODINIT_FUNC
|
||||
PyInit__posixsubprocess(void)
|
||||
{
|
||||
#ifdef _SC_OPEN_MAX
|
||||
max_fd = sysconf(_SC_OPEN_MAX);
|
||||
if (max_fd == -1)
|
||||
#endif
|
||||
max_fd = 256; /* Matches Lib/subprocess.py */
|
||||
|
||||
return PyModule_Create(&_posixsubprocessmodule);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue