diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-04-20 00:00:22 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska-skaware@skarnet.org> | 2021-04-20 00:00:22 +0000 |
| commit | 1172c1e817d26d5f9bb0ec289dd9a71aadf2759c (patch) | |
| tree | 6c7e5eb2ebb255c7be81d1535559fa7c4a63af4b /src/os/linux-os_kbspecials.c | |
| parent | 3bde455795bb3273922ec7be293e3911913576c2 (diff) | |
| download | s6-linux-init-1172c1e817d26d5f9bb0ec289dd9a71aadf2759c.tar.gz | |
Add portability infrastructure
Diffstat (limited to 'src/os/linux-os_kbspecials.c')
| -rw-r--r-- | src/os/linux-os_kbspecials.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/os/linux-os_kbspecials.c b/src/os/linux-os_kbspecials.c new file mode 100644 index 0000000..0d407ab --- /dev/null +++ b/src/os/linux-os_kbspecials.c @@ -0,0 +1,33 @@ +/* ISC license. */ + +#include <fcntl.h> +#include <unistd.h> +#include <signal.h> + +#include <sys/reboot.h> +#include <sys/ioctl.h> +#include <linux/kd.h> + +#include <skalibs/strerr2.h> +#include <skalibs/sig.h> + +#include "os.h" + +void os_kbspecials (int inns) +{ + int fd ; + if (inns) return ; + fd = open("/dev/tty0", O_RDONLY | O_NOCTTY) ; + if (fd < 0) + strerr_warnwu2sys("open /dev/", "tty0 (kbrequest will not be handled)") ; + else + { + if (ioctl(fd, KDSIGACCEPT, SIGWINCH) < 0) + strerr_warnwu2sys("ioctl KDSIGACCEPT on ", "tty0 (kbrequest will not be handled)") ; + close(fd) ; + } + + sig_block(SIGINT) ; /* don't panic on early cad before s6-svscan catches it */ + if (reboot(RB_DISABLE_CAD) == -1) + strerr_warnwu1sys("trap ctrl-alt-del") ; +} |
