aboutsummaryrefslogtreecommitdiff
path: root/src/shared/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/misc.c')
-rw-r--r--src/shared/misc.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/shared/misc.c b/src/shared/misc.c
index c987ce8c..429407d4 100644
--- a/src/shared/misc.c
+++ b/src/shared/misc.c
@@ -15,6 +15,11 @@
* except according to the terms contained in the LICENSE file.
*/
+#ifdef HAVE_CLOSE_RANGE
+/* For close_range() */
+# define _GNU_SOURCE
+#endif
+
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
@@ -500,3 +505,25 @@ pid_t get_pid(const char *applet,const char *pidfile)
return pid;
}
+
+#ifndef HAVE_CLOSE_RANGE
+static inline int close_range(int first RC_UNUSED,
+ int last RC_UNUSED,
+ unsigned int flags RC_UNUSED)
+{
+ return -1;
+}
+#endif
+#ifndef CLOSE_RANGE_CLOEXEC
+# define CLOSE_RANGE_CLOEXEC (1U << 2)
+#endif
+
+void
+cloexec_fds_from(int first)
+{
+ int i;
+ if (close_range(first, UINT_MAX, CLOSE_RANGE_CLOEXEC) < 0) {
+ for (i = getdtablesize() - 1; i >= first; --i)
+ fcntl(i, F_SETFD, FD_CLOEXEC);
+ }
+}