diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-02-12 18:17:50 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2021-02-12 18:17:50 +0000 |
commit | f94e976efbdfdd885ecc81745542bedf315768fd (patch) | |
tree | 79ebb144d9a3cc62ab851c753414adb94b168438 /src/shutdown/hpr_wallv.c | |
parent | 355a75e08bbc8af8af97576bad07471dd1b431d8 (diff) | |
download | s6-linux-init-f94e976efbdfdd885ecc81745542bedf315768fd.tar.xz |
bugfix: wall message on non-immediate shutdown(8)
Diffstat (limited to 'src/shutdown/hpr_wallv.c')
-rw-r--r-- | src/shutdown/hpr_wallv.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/shutdown/hpr_wallv.c b/src/shutdown/hpr_wallv.c new file mode 100644 index 0000000..50523c5 --- /dev/null +++ b/src/shutdown/hpr_wallv.c @@ -0,0 +1,38 @@ +/* ISC license. */ + +#include <string.h> +#include <sys/uio.h> +#include <utmpx.h> + +#include <skalibs/allreadwrite.h> +#include <skalibs/strerr2.h> +#include <skalibs/djbunix.h> +#include <skalibs/posixishard.h> + +#include "hpr.h" + +#ifndef UT_LINESIZE +#define UT_LINESIZE 32 +#endif + +void hpr_wallv (struct iovec const *v, unsigned int n) +{ + char tty[10 + UT_LINESIZE] = "/dev/" ; + setutxent() ; + for (;;) + { + size_t linelen ; + int fd ; + struct utmpx *utx = getutxent() ; + if (!utx) break ; + if (utx->ut_type != USER_PROCESS) continue ; + linelen = strnlen(utx->ut_line, UT_LINESIZE) ; + memcpy(tty + 5, utx->ut_line, linelen) ; + tty[5 + linelen] = 0 ; + fd = open_append(tty) ; + if (fd == -1) continue ; + allwritev(fd, v, n) ; + fd_close(fd) ; + } + endutxent() ; +} |