ecbff1
From 5a7f49bb38bc1d7965d497e775b7cc8053b0c465 Mon Sep 17 00:00:00 2001
ecbff1
From: Jan Synacek <jsynacek@redhat.com>
ecbff1
Date: Fri, 18 Aug 2017 10:17:22 +0200
ecbff1
Subject: [PATCH] log: never log into foreign fd #2 in PID 1 or its
ecbff1
 pre-execve() children
ecbff1
ecbff1
(cherry picked from commit 48a601fe5de8aa0d89ba6dadde168769fa7ce992)
ecbff1
Resolves: #1420505
ecbff1
---
ecbff1
 src/core/main.c  | 11 +++++++++--
ecbff1
 src/shared/log.c |  7 ++++++-
ecbff1
 src/shared/log.h |  1 +
ecbff1
 3 files changed, 16 insertions(+), 3 deletions(-)
ecbff1
ecbff1
diff --git a/src/core/main.c b/src/core/main.c
ecbff1
index 37e3ea0ce..66393ed6a 100644
ecbff1
--- a/src/core/main.c
ecbff1
+++ b/src/core/main.c
ecbff1
@@ -1310,10 +1310,17 @@ int main(int argc, char *argv[]) {
ecbff1
         log_show_color(isatty(STDERR_FILENO) > 0);
ecbff1
         log_set_upgrade_syslog_to_journal(true);
ecbff1
 
ecbff1
-        /* Disable the umask logic */
ecbff1
-        if (getpid() == 1)
ecbff1
+        if (getpid() == 1) {
ecbff1
+                /* Disable the umask logic */
ecbff1
                 umask(0);
ecbff1
 
ecbff1
+                /* Always reopen /dev/console when running as PID 1 or one of its pre-execve() children. This is
ecbff1
+                 * important so that we never end up logging to any foreign stderr, for example if we have to log in a
ecbff1
+                 * child process right before execve()'ing the actual binary, at a point in time where socket
ecbff1
+                 * activation stderr/stdout area already set up. */
ecbff1
+                log_set_always_reopen_console(true);
ecbff1
+        }
ecbff1
+
ecbff1
         if (getpid() == 1 && detect_container(NULL) <= 0) {
ecbff1
 
ecbff1
                 /* Running outside of a container as PID 1 */
ecbff1
diff --git a/src/shared/log.c b/src/shared/log.c
ecbff1
index 646a1d638..349142030 100644
ecbff1
--- a/src/shared/log.c
ecbff1
+++ b/src/shared/log.c
ecbff1
@@ -52,6 +52,7 @@ static bool show_color = false;
ecbff1
 static bool show_location = false;
ecbff1
 
ecbff1
 static bool upgrade_syslog_to_journal = false;
ecbff1
+static bool always_reopen_console = false;
ecbff1
 
ecbff1
 /* Akin to glibc's __abort_msg; which is private and we hence cannot
ecbff1
  * use here. */
ecbff1
@@ -75,7 +76,7 @@ static int log_open_console(void) {
ecbff1
         if (console_fd >= 0)
ecbff1
                 return 0;
ecbff1
 
ecbff1
-        if (getpid() == 1) {
ecbff1
+        if (always_reopen_console) {
ecbff1
                 console_fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
ecbff1
                 if (console_fd < 0)
ecbff1
                         return console_fd;
ecbff1
@@ -1061,3 +1062,7 @@ void log_received_signal(int level, const struct signalfd_siginfo *si) {
ecbff1
 void log_set_upgrade_syslog_to_journal(bool b) {
ecbff1
         upgrade_syslog_to_journal = b;
ecbff1
 }
ecbff1
+
ecbff1
+void log_set_always_reopen_console(bool b) {
ecbff1
+        always_reopen_console = b;
ecbff1
+}
ecbff1
diff --git a/src/shared/log.h b/src/shared/log.h
ecbff1
index 2889e1e77..3c9448f1a 100644
ecbff1
--- a/src/shared/log.h
ecbff1
+++ b/src/shared/log.h
ecbff1
@@ -210,3 +210,4 @@ LogTarget log_target_from_string(const char *s) _pure_;
ecbff1
 void log_received_signal(int level, const struct signalfd_siginfo *si);
ecbff1
 
ecbff1
 void log_set_upgrade_syslog_to_journal(bool b);
ecbff1
+void log_set_always_reopen_console(bool b);