aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/shepherd.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-09-10 23:19:02 +0200
committerLudovic Courtès <ludo@gnu.org>2022-09-11 00:16:57 +0200
commit081bb6a7bd9642ee3d5bb9b697c24f89535416de (patch)
treed26efecb5a983ee095518811badd9784227bb840 /gnu/services/shepherd.scm
parent6ee40c3d9970cbedfbaf078e93ac2440cc3416f1 (diff)
downloadguix-081bb6a7bd9642ee3d5bb9b697c24f89535416de.tar
guix-081bb6a7bd9642ee3d5bb9b697c24f89535416de.tar.gz
services: shepherd: Open /dev/null as O_CLOEXEC.
Failing to do that, that file descriptor could be inherited by child processes as of Shepherd 0.9.2. * gnu/services/shepherd.scm (shepherd-configuration-file): Open /dev/null as O_CLOEXEC.
Diffstat (limited to 'gnu/services/shepherd.scm')
-rw-r--r--gnu/services/shepherd.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/shepherd.scm b/gnu/services/shepherd.scm
index 4fd4b2a497..a8f6db9ce2 100644
--- a/gnu/services/shepherd.scm
+++ b/gnu/services/shepherd.scm
@@ -387,7 +387,7 @@ as shepherd package."
;; call; this avoids situations where services wrongfully lead
;; PID 1 to read from stdin (the console), which users may not
;; have access to (see <https://bugs.gnu.org/23697>).
- (redirect-port (open-input-file "/dev/null")
+ (redirect-port (open "/dev/null" (logior O_RDONLY O_CLOEXEC))
(current-input-port)))))
(scheme-file "shepherd.conf" config)))