summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2021-01-27 17:33:39 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2021-01-27 17:33:39 +0000
commit355a75e08bbc8af8af97576bad07471dd1b431d8 (patch)
tree1fb9383f9b289cb290adda3b5b73aadaecd660c5
parent42b0e2b3c7e40c3cb27973e97edf686daf1b930c (diff)
downloads6-linux-init-355a75e08bbc8af8af97576bad07471dd1b431d8.tar.xz
bugfix: actually log to catch-all in shutdownd.
Also support more options in telinit.
-rw-r--r--src/init/s6-linux-init-telinit.c13
-rw-r--r--src/shutdown/s6-linux-init-shutdownd.c32
2 files changed, 30 insertions, 15 deletions
diff --git a/src/init/s6-linux-init-telinit.c b/src/init/s6-linux-init-telinit.c
index 3c8d3fe..2baa6c2 100644
--- a/src/init/s6-linux-init-telinit.c
+++ b/src/init/s6-linux-init-telinit.c
@@ -25,18 +25,21 @@ int main (int argc, char const *const *argv, char const *const *envp)
subgetopt_t l = SUBGETOPT_ZERO ;
for (;;)
{
- int opt = subgetopt_r(argc, argv, "CBc:p:s:m:d:D:", &l) ;
+ int opt = subgetopt_r(argc, argv, "c:p:s:m:d:D:nNCB", &l) ;
if (opt == -1) break ;
switch (opt)
{
- case 'C' : /* s6-linux-init may be called with these options, don't choke on them */
- case 'B' :
- case 'c' :
+ case 'c' : /* s6-linux-init may be called with these options, don't choke on them */
case 'p' :
case 's' :
case 'm' :
case 'd' :
- case 'D' : break ;
+ case 'D' :
+ case 'n' :
+ case 'N' :
+ case 'C' :
+ case 'B' :
+ break ;
default : dieusage() ;
}
}
diff --git a/src/shutdown/s6-linux-init-shutdownd.c b/src/shutdown/s6-linux-init-shutdownd.c
index edf5adb..76e1540 100644
--- a/src/shutdown/s6-linux-init-shutdownd.c
+++ b/src/shutdown/s6-linux-init-shutdownd.c
@@ -146,13 +146,11 @@ static inline void handle_fifo (buffer *b, char *what, tain_t *deadline, unsigne
static void restore_console (void)
{
- if (!inns && !nologger)
- {
- fd_close(1) ;
- if (open("/dev/console", O_WRONLY) != 1)
- strerr_diefu1sys(111, "open /dev/console for writing") ;
- if (fd_copy(2, 1) < 0) strerr_warnwu1sys("fd_copy") ;
- }
+ fd_close(1) ;
+ if (open("/dev/console", O_WRONLY) != 1)
+ strerr_warnwu1sys("open /dev/console for writing") ;
+ else if (fd_copy(2, 1) < 0)
+ strerr_warnwu1sys("fd_copy") ;
}
static inline void prepare_stage4 (char const *basedir, char what)
@@ -289,8 +287,22 @@ int main (int argc, char const *const *argv, char const *const *envp)
/* if we're in stage 4, exec it immediately */
{
char const *stage4_argv[2] = { "./" STAGE4_FILE, 0 } ;
- restore_console() ;
- execve(stage4_argv[0], (char **)stage4_argv, (char *const *)envp) ;
+ if (!inns && !nologger)
+ {
+ int fd[2] ;
+ int e ;
+ fd[0] = fcntl(1, F_DUPFD_CLOEXEC, 0) ;
+ if (fd[0] < 0) strerr_diefu2sys(111, "dup std", "out") ;
+ fd[1] = fcntl(2, F_DUPFD_CLOEXEC, 0) ;
+ if (fd[1] < 0) strerr_diefu2sys(111, "dup std", "err") ;
+ restore_console() ;
+ execve(stage4_argv[0], (char **)stage4_argv, (char *const *)envp) ;
+ e = errno ;
+ if (fd_move2(1, fd[0], 2, fd[1]) < 0) strerr_warnwu1sys("restore fds") ;
+ errno = e ;
+ }
+ else
+ execve(stage4_argv[0], (char **)stage4_argv, (char *const *)envp) ;
if (errno != ENOENT)
strerr_warnwu2sys("exec ", stage4_argv[0]) ;
}
@@ -326,7 +338,7 @@ int main (int argc, char const *const *argv, char const *const *envp)
fd_close(fdw) ;
fd_close(fdr) ;
- restore_console() ;
+ if (!inns && !nologger) restore_console() ;
/* The end is coming! */