mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 11:56:16 +01:00
Merge branch 'close-range-freebsd' into 'main'
gspawn.c: prefer close_range() on FreeBSD if available See merge request GNOME/glib!3144
This commit is contained in:
commit
bebf13d5d6
@ -1618,6 +1618,18 @@ safe_closefrom (int lowfd)
|
||||
{
|
||||
int ret;
|
||||
|
||||
#if defined(HAVE_CLOSE_RANGE)
|
||||
/* close_range() is available in Linux since kernel 5.9, and on FreeBSD at
|
||||
* around the same time. It was designed for use in async-signal-safe
|
||||
* situations: https://bugs.python.org/issue38061
|
||||
*
|
||||
* Handle ENOSYS in case it’s supported in libc but not the kernel; if so,
|
||||
* fall back to safe_fdwalk(). */
|
||||
ret = close_range (lowfd, G_MAXUINT, 0);
|
||||
if (ret == 0 || errno != ENOSYS)
|
||||
return ret;
|
||||
#endif /* HAVE_CLOSE_RANGE */
|
||||
|
||||
#if defined(__FreeBSD__) || defined(__OpenBSD__) || \
|
||||
(defined(__sun__) && defined(F_CLOSEFROM))
|
||||
/* Use closefrom function provided by the system if it is known to be
|
||||
@ -1649,18 +1661,6 @@ safe_closefrom (int lowfd)
|
||||
*/
|
||||
return fcntl (lowfd, F_CLOSEM);
|
||||
#else
|
||||
|
||||
#if defined(HAVE_CLOSE_RANGE)
|
||||
/* close_range() is available in Linux since kernel 5.9, and on FreeBSD at
|
||||
* around the same time. It was designed for use in async-signal-safe
|
||||
* situations: https://bugs.python.org/issue38061
|
||||
*
|
||||
* Handle ENOSYS in case it’s supported in libc but not the kernel; if so,
|
||||
* fall back to safe_fdwalk(). */
|
||||
ret = close_range (lowfd, G_MAXUINT, 0);
|
||||
if (ret == 0 || errno != ENOSYS)
|
||||
return ret;
|
||||
#endif /* HAVE_CLOSE_RANGE */
|
||||
ret = safe_fdwalk (close_func_with_invalid_fds, GINT_TO_POINTER (lowfd));
|
||||
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user