From d3926009b63ab2c4754e4c6488d89eb3239ec8b8 Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Fri, 19 Jan 2024 20:15:05 +0900 Subject: [PATCH] tty: Support SIGTTOU, SIGTTIN behavior --- kernel/vfs/tty.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/kernel/vfs/tty.c b/kernel/vfs/tty.c index 8812da86..fe4fc40e 100644 --- a/kernel/vfs/tty.c +++ b/kernel/vfs/tty.c @@ -382,9 +382,24 @@ void close_pty_master(fs_node_t * node) { return; } +static int ignoring(int sig) { + if (this_core->current_process->blocked_signals & (1ULL << sig)) return 1; + if (this_core->current_process->signals[sig].handler == 1) return 1; + return 0; +} + ssize_t read_pty_slave(fs_node_t * node, off_t offset, size_t size, uint8_t *buffer) { pty_t * pty = (pty_t *)node->device; + /* If this process *is* part of this tty's session, but is NOT in the foreground job + * and it tries to read from the TTY, then send it SIGTTIN - but only if it's not + * ignoring it. If it is ignoring, make the write fail with EIO. */ + if (pty->ct_proc == this_core->current_process->session && pty->fg_proc && this_core->current_process->job != pty->fg_proc) { + if (ignoring(SIGTTIN)) return -EIO; + group_send_signal(this_core->current_process->job, SIGTTIN, 1); + return -ERESTARTSYS; + } + if (pty->tios.c_lflag & ICANON) { return ring_buffer_read(pty->in, size, buffer); } else { @@ -406,6 +421,19 @@ ssize_t read_pty_slave(fs_node_t * node, off_t offset, size_t size, uint8_t *buf ssize_t write_pty_slave(fs_node_t * node, off_t offset, size_t size, uint8_t *buffer) { pty_t * pty = (pty_t *)node->device; + if (pty->tios.c_lflag & TOSTOP) { + /* If TOSTOP is enabled and this process *is* part of this tty's session but + * is NOT in the foreground job, then send the whole job SIGTTOU - but only + * if we weren't ignoring SIGTTOU ourselves. If we were ignoring it, then + * the write can continue without issue. */ + if (pty->ct_proc == this_core->current_process->session && pty->fg_proc && this_core->current_process->job != pty->fg_proc) { + if (!ignoring(SIGTTOU)) { + group_send_signal(this_core->current_process->job, SIGTTOU, 1); + return -ERESTARTSYS; + } + } + } + size_t l = 0; for (uint8_t * c = buffer; l < size; ++c, ++l) { output_process_slave(pty, *c);