[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 13/14] linux-user: Detect and report host SIGILL, SIGFPE, SIGTRAP
|
From: |
Richard Henderson |
|
Subject: |
[PULL 13/14] linux-user: Detect and report host SIGILL, SIGFPE, SIGTRAP |
|
Date: |
Wed, 18 Oct 2023 16:31:33 -0700 |
These signals, when not spoofed via kill(), are always bugs.
Use die_from_signal to report this sensibly.
Acked-by: Helge Deller <deller@gmx.de>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
linux-user/signal.c | 44 +++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 43 insertions(+), 1 deletion(-)
diff --git a/linux-user/signal.c b/linux-user/signal.c
index 706b8ac7a7..b67077f320 100644
--- a/linux-user/signal.c
+++ b/linux-user/signal.c
@@ -796,6 +796,43 @@ void die_from_signal(siginfo_t *info)
break;
}
break;
+ case SIGILL:
+ sig = "ILL";
+ switch (info->si_code) {
+ case ILL_ILLOPC:
+ code = "ILLOPC";
+ break;
+ case ILL_ILLOPN:
+ code = "ILLOPN";
+ break;
+ case ILL_ILLADR:
+ code = "ILLADR";
+ break;
+ case ILL_PRVOPC:
+ code = "PRVOPC";
+ break;
+ case ILL_PRVREG:
+ code = "PRVREG";
+ break;
+ case ILL_COPROC:
+ code = "COPROC";
+ break;
+ }
+ break;
+ case SIGFPE:
+ sig = "FPE";
+ switch (info->si_code) {
+ case FPE_INTDIV:
+ code = "INTDIV";
+ break;
+ case FPE_INTOVF:
+ code = "INTOVF";
+ break;
+ }
+ break;
+ case SIGTRAP:
+ sig = "TRAP";
+ break;
default:
snprintf(sigbuf, sizeof(sigbuf), "%d", info->si_signo);
sig = sigbuf;
@@ -900,7 +937,8 @@ static void host_signal_handler(int host_sig, siginfo_t
*info, void *puc)
/*
* Non-spoofed SIGSEGV and SIGBUS are synchronous, and need special
- * handling wrt signal blocking and unwinding.
+ * handling wrt signal blocking and unwinding. Non-spoofed SIGILL,
+ * SIGFPE, SIGTRAP are always host bugs.
*/
if (info->si_code > 0) {
switch (host_sig) {
@@ -912,6 +950,10 @@ static void host_signal_handler(int host_sig, siginfo_t
*info, void *puc)
host_sigbus_handler(cpu, info, uc);
sync_sig = true;
break;
+ case SIGILL:
+ case SIGFPE:
+ case SIGTRAP:
+ die_from_signal(info);
}
}
--
2.34.1
- [PULL 02/14] linux-user/mips: fix abort on integer overflow, (continued)
- [PULL 02/14] linux-user/mips: fix abort on integer overflow, Richard Henderson, 2023/10/18
- [PULL 03/14] linux-user/sh4: Fix crashes on signal delivery, Richard Henderson, 2023/10/18
- [PULL 04/14] linux-user/elfload: Enable LSX/LASX in HWCAP for LoongArch, Richard Henderson, 2023/10/18
- [PULL 07/14] linux-user: Exit not abort in die_with_backtrace, Richard Henderson, 2023/10/18
- [PULL 08/14] linux-user: Detect and report host crashes, Richard Henderson, 2023/10/18
- [PULL 09/14] linux-user: Only register handlers for core_dump_signal by default, Richard Henderson, 2023/10/18
- [PULL 05/14] linux-user: Propagate failure in mmap_reserve_or_unmap back to target_munmap, Richard Henderson, 2023/10/18
- [PULL 06/14] linux-user: Split out die_with_signal, Richard Henderson, 2023/10/18
- [PULL 10/14] linux-user: Map unsupported signals to an out-of-bounds value, Richard Henderson, 2023/10/18
- [PULL 11/14] linux-user: Simplify signal_init, Richard Henderson, 2023/10/18
- [PULL 13/14] linux-user: Detect and report host SIGILL, SIGFPE, SIGTRAP,
Richard Henderson <=
- [PULL 14/14] linux-user: Remap guest SIGABRT, Richard Henderson, 2023/10/18
- [PULL 12/14] linux-user: Split out host_sig{segv,bus}_handler, Richard Henderson, 2023/10/18
- Re: [PULL 00/14] linux-user patch queue, Stefan Hajnoczi, 2023/10/20