toaruos/kernel/sys/signal.c

273 lines
6.5 KiB
C
Raw Normal View History

2021-05-31 04:47:02 +03:00
/**
* @file kernel/sys/signal.c
* @brief Signal handling.
*
* Provides signal entry and delivery; also handles suspending
* and resuming jobs (SIGTSTP, SIGCONT).
*
* Signal delivery in ToaruOS is a bit odd; we save a lot of the
* kernel context from before the signal, including the entire
* kernel stack, so that we can resume userspace in a new context;
* essentially we build a whole new kernel thread for the signal
* handler to run in, and then restore the original when the signal
* handler exits. Signal handler exits are generally handled by
* a page fault at a magic known address.
*
* @copyright
2018-03-16 15:56:19 +03:00
* This file is part of ToaruOS and is released under the terms
* of the NCSA / University of Illinois License - see LICENSE.md
2021-05-31 04:47:02 +03:00
* Copyright (C) 2012-2021 K. Lange
2018-03-16 15:56:19 +03:00
*/
2021-05-31 04:47:02 +03:00
#include <errno.h>
#include <stdint.h>
#include <sys/signal.h>
#include <sys/signal_defs.h>
#include <kernel/printf.h>
#include <kernel/string.h>
#include <kernel/process.h>
2018-03-19 05:38:11 +03:00
#include <kernel/signal.h>
2021-05-31 04:47:02 +03:00
#include <kernel/spinlock.h>
#include <kernel/ptrace.h>
2018-03-16 15:56:19 +03:00
static spin_lock_t sig_lock;
static spin_lock_t sig_lock_b;
char isdeadly[] = {
0, /* 0? */
2021-05-31 04:47:02 +03:00
[SIGHUP ] = 1,
[SIGINT ] = 1,
[SIGQUIT ] = 2,
[SIGILL ] = 2,
[SIGTRAP ] = 2,
[SIGABRT ] = 2,
[SIGEMT ] = 2,
[SIGFPE ] = 2,
[SIGKILL ] = 1,
[SIGBUS ] = 2,
[SIGSEGV ] = 2,
[SIGSYS ] = 2,
[SIGPIPE ] = 1,
[SIGALRM ] = 1,
[SIGTERM ] = 1,
[SIGUSR1 ] = 1,
[SIGUSR2 ] = 1,
[SIGCHLD ] = 0,
[SIGPWR ] = 0,
[SIGWINCH ] = 0,
[SIGURG ] = 0,
[SIGPOLL ] = 0,
[SIGSTOP ] = 3,
[SIGTSTP ] = 3,
[SIGCONT ] = 4,
[SIGTTIN ] = 3,
[SIGTTOUT ] = 3,
[SIGVTALRM ] = 1,
[SIGPROF ] = 1,
[SIGXCPU ] = 2,
[SIGXFSZ ] = 2,
[SIGWAITING ] = 0,
[SIGDIAF ] = 1,
[SIGHATE ] = 0,
[SIGWINEVENT] = 0,
[SIGCAT ] = 0,
2018-03-16 15:56:19 +03:00
};
void handle_signal(process_t * proc, signal_t * sig) {
uintptr_t handler = sig->handler;
uintptr_t signum = sig->signum;
free(sig);
/* Are we being traced? */
if (this_core->current_process->flags & PROC_FLAG_TRACE_SIGNALS) {
signum = ptrace_signal(signum, 0);
}
2021-05-31 04:47:02 +03:00
if (proc->flags & PROC_FLAG_FINISHED) {
2018-03-16 15:56:19 +03:00
return;
}
if (signum == 0 || signum >= NUMSIGNALS) {
/* Ignore */
return;
}
if (!handler) {
char dowhat = isdeadly[signum];
if (dowhat == 1 || dowhat == 2) {
2021-05-31 04:47:02 +03:00
task_exit(((128 + signum) << 8) | signum);
2018-03-16 15:56:19 +03:00
__builtin_unreachable();
2018-10-26 14:34:15 +03:00
} else if (dowhat == 3) {
2021-05-31 04:47:02 +03:00
__sync_or_and_fetch(&this_core->current_process->flags, PROC_FLAG_SUSPENDED);
this_core->current_process->status = 0x7F;
2018-10-26 14:34:15 +03:00
2021-05-31 04:47:02 +03:00
process_t * parent = process_get_parent((process_t *)this_core->current_process);
2018-10-26 14:34:15 +03:00
2021-05-31 04:47:02 +03:00
if (parent && !(parent->flags & PROC_FLAG_FINISHED)) {
2018-10-26 14:34:15 +03:00
wakeup_queue(parent->wait_queue);
}
switch_task(0);
} else if (dowhat == 4) {
switch_task(1);
return;
2018-03-16 15:56:19 +03:00
}
/* XXX dowhat == 2: should dump core */
/* XXX dowhat == 3: stop */
return;
}
if (handler == 1) /* Ignore */ {
return;
}
2021-05-31 04:47:02 +03:00
arch_enter_signal_handler(handler, signum);
2018-03-16 15:56:19 +03:00
}
list_t * rets_from_sig;
void return_from_signal_handler(void) {
if (__builtin_expect(!rets_from_sig, 0)) {
2021-05-31 04:47:02 +03:00
rets_from_sig = list_create("global return-from-signal queue",NULL);
2018-03-16 15:56:19 +03:00
}
spin_lock(sig_lock);
2021-05-31 04:47:02 +03:00
list_insert(rets_from_sig, (process_t *)this_core->current_process);
2018-03-16 15:56:19 +03:00
spin_unlock(sig_lock);
switch_next();
}
void fix_signal_stacks(void) {
uint8_t redo_me = 0;
if (rets_from_sig) {
spin_lock(sig_lock_b);
while (rets_from_sig->head) {
spin_lock(sig_lock);
node_t * n = list_dequeue(rets_from_sig);
spin_unlock(sig_lock);
if (!n) {
continue;
}
process_t * p = n->value;
free(n);
2021-05-31 04:47:02 +03:00
if (p == this_core->current_process) {
2018-03-16 15:56:19 +03:00
redo_me = 1;
continue;
}
2021-05-31 04:47:02 +03:00
memcpy(&p->thread, &p->signal_state, sizeof(thread_t));
2018-09-25 11:04:32 +03:00
if (!p->signal_kstack) {
2021-05-31 04:47:02 +03:00
printf("Cannot restore signal stack for pid=%d - unset?\n", p->id);
2018-09-25 11:04:32 +03:00
} else {
memcpy((char *)(p->image.stack - KERNEL_STACK_SIZE + 0x1000), p->signal_kstack + 0x1000, KERNEL_STACK_SIZE - 0x1000);
2018-09-25 11:04:32 +03:00
free(p->signal_kstack);
p->signal_kstack = NULL;
}
2018-03-16 15:56:19 +03:00
make_process_ready(p);
}
spin_unlock(sig_lock_b);
}
if (redo_me) {
spin_lock(sig_lock);
2021-05-31 04:47:02 +03:00
list_insert(rets_from_sig, (process_t *)this_core->current_process);
2018-03-16 15:56:19 +03:00
spin_unlock(sig_lock);
switch_next();
}
}
2021-05-31 04:47:02 +03:00
int send_signal(pid_t process, int signal, int force_root) {
2018-03-16 15:56:19 +03:00
process_t * receiver = process_from_pid(process);
if (!receiver) {
/* Invalid pid */
2018-10-08 04:23:10 +03:00
return -ESRCH;
2018-03-16 15:56:19 +03:00
}
2021-05-31 04:47:02 +03:00
if (!force_root && receiver->user != this_core->current_process->user && this_core->current_process->user != USER_ROOT_UID) {
if (!(signal == SIGCONT && receiver->session == this_core->current_process->session)) {
return -EPERM;
}
2018-03-16 15:56:19 +03:00
}
2021-05-31 04:47:02 +03:00
if (receiver->flags & PROC_FLAG_IS_TASKLET) {
/* Can not send signals to kernel tasklets */
return -EINVAL;
}
2018-03-16 15:56:19 +03:00
if (signal > NUMSIGNALS) {
/* Invalid signal */
2018-10-08 04:23:10 +03:00
return -EINVAL;
2018-03-16 15:56:19 +03:00
}
2021-05-31 04:47:02 +03:00
if (receiver->flags & PROC_FLAG_FINISHED) {
2018-03-16 15:56:19 +03:00
/* Can't send signals to finished processes */
2018-10-08 04:23:10 +03:00
return -EINVAL;
2018-03-16 15:56:19 +03:00
}
2021-05-31 04:47:02 +03:00
if (!receiver->signals[signal] && !isdeadly[signal]) {
2018-03-16 15:56:19 +03:00
/* If we're blocking a signal and it's not going to kill us, don't deliver it */
2018-10-08 04:23:10 +03:00
return 0;
2018-03-16 15:56:19 +03:00
}
2018-10-26 14:34:15 +03:00
if (isdeadly[signal] == 4) {
2021-05-31 04:47:02 +03:00
if (!(receiver->flags & PROC_FLAG_SUSPENDED)) {
2018-10-26 14:34:15 +03:00
return -EINVAL;
} else {
2021-05-31 04:47:02 +03:00
__sync_and_and_fetch(&receiver->flags, ~(PROC_FLAG_SUSPENDED));
2018-10-26 14:34:15 +03:00
receiver->status = 0;
}
}
2018-03-16 15:56:19 +03:00
/* Append signal to list */
signal_t * sig = malloc(sizeof(signal_t));
2021-05-31 04:47:02 +03:00
sig->handler = (uintptr_t)receiver->signals[signal];
2018-03-16 15:56:19 +03:00
sig->signum = signal;
2021-05-31 04:47:02 +03:00
memset(&sig->registers_before, 0x00, sizeof(struct regs));
list_insert(receiver->signal_queue, sig);
2018-03-16 15:56:19 +03:00
process_awaken_signal(receiver);
2021-05-31 04:47:02 +03:00
if (!process_is_ready(receiver) || receiver == this_core->current_process) {
2018-03-16 15:56:19 +03:00
make_process_ready(receiver);
}
2021-05-31 04:47:02 +03:00
if (receiver == this_core->current_process) {
2018-09-25 11:04:32 +03:00
/* Forces us to be rescheduled and enter signal handler */
if (receiver->signal_kstack) {
switch_next();
} else {
switch_task(0);
}
2018-09-25 11:04:32 +03:00
}
2018-03-16 15:56:19 +03:00
return 0;
}
2021-05-31 04:47:02 +03:00
int group_send_signal(pid_t group, int signal, int force_root) {
2018-10-26 17:19:46 +03:00
int kill_self = 0;
int killed_something = 0;
foreach(node, process_list) {
process_t * proc = node->value;
if (proc->group == proc->id && proc->job == group) {
/* Only thread group leaders */
2021-05-31 04:47:02 +03:00
if (proc->group == this_core->current_process->group) {
2018-10-26 17:19:46 +03:00
kill_self = 1;
} else {
if (send_signal(proc->group, signal, force_root) == 0) {
killed_something = 1;
}
}
}
}
if (kill_self) {
2021-05-31 04:47:02 +03:00
if (send_signal(this_core->current_process->group, signal, force_root) == 0) {
2018-10-26 17:19:46 +03:00
killed_something = 1;
}
}
return !!killed_something;
}