[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 11/40] bsd-user/signal.c: implement cpu_loop_exit_sigbus
|
From: |
Warner Losh |
|
Subject: |
[PATCH v3 11/40] bsd-user/signal.c: implement cpu_loop_exit_sigbus |
|
Date: |
Fri, 28 Jan 2022 16:27:36 -0700 |
First attempt at implementing cpu_loop_exit_sigbus, mostly copied from
linux-user version of this function.
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Kyle Evans <kevans@freebsd.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
bsd-user/signal.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/bsd-user/signal.c b/bsd-user/signal.c
index 12de0e2dea4..844dfa19095 100644
--- a/bsd-user/signal.c
+++ b/bsd-user/signal.c
@@ -80,7 +80,13 @@ void cpu_loop_exit_sigsegv(CPUState *cpu, target_ulong addr,
void cpu_loop_exit_sigbus(CPUState *cpu, target_ulong addr,
MMUAccessType access_type, uintptr_t ra)
{
- qemu_log_mask(LOG_UNIMP, "No signal support for SIGBUS\n");
- /* unreachable */
- abort();
+ const struct TCGCPUOps *tcg_ops = CPU_GET_CLASS(cpu)->tcg_ops;
+
+ if (tcg_ops->record_sigbus) {
+ tcg_ops->record_sigbus(cpu, addr, access_type, ra);
+ }
+
+ force_sig_fault(TARGET_SIGBUS, TARGET_BUS_ADRALN, addr);
+ cpu->exception_index = EXCP_INTERRUPT;
+ cpu_loop_exit_restore(cpu, ra);
}
--
2.33.1
- [PATCH v3 02/40] bsd-user: Create setup_sigframe_arch to setup sigframe context, (continued)
- [PATCH v3 02/40] bsd-user: Create setup_sigframe_arch to setup sigframe context, Warner Losh, 2022/01/28
- [PATCH v3 04/40] bsd-user/arm/signal.c: get_mcontext should zero vfp data, Warner Losh, 2022/01/28
- [PATCH v3 07/40] bsd-user/arm/target_arch_cpu.h: Move EXCP_ATOMIC to match linux-user, Warner Losh, 2022/01/28
- [PATCH v3 05/40] bsd-user: Remove vestiges of signal queueing code, Warner Losh, 2022/01/28
- [PATCH v3 06/40] bsd-user: Bring in docs from linux-user for signal_pending, Warner Losh, 2022/01/28
- [PATCH v3 08/40] bsd-user/signal.c: implement force_sig_fault, Warner Losh, 2022/01/28
- [PATCH v3 09/40] bsd-user/signal-common.h: Move signal functions prototypes to here, Warner Losh, 2022/01/28
- [PATCH v3 10/40] bsd-user/signal.c: Implement cpu_loop_exit_sigsegv, Warner Losh, 2022/01/28
- [PATCH v3 12/40] bsd-user/arm/arget_arch_cpu.h: Move EXCP_DEBUG and EXCP_BKPT together, Warner Losh, 2022/01/28
- [PATCH v3 13/40] bsd-user/arm/target_arch_cpu.h: Correct code pointer, Warner Losh, 2022/01/28
- [PATCH v3 11/40] bsd-user/signal.c: implement cpu_loop_exit_sigbus,
Warner Losh <=
- [PATCH v3 15/40] bsd-user/arm/target_arch_cpu.h: Implement data faults, Warner Losh, 2022/01/28
- [PATCH v3 16/40] bsd-user/signal.c: implement abstract target / host signal translation, Warner Losh, 2022/01/28
- [PATCH v3 14/40] bsd-user/arm/target_arch_cpu.h: Use force_sig_fault for EXCP_UDEF, Warner Losh, 2022/01/28
- [PATCH v3 21/40] bsd-user/host/x86_64/host-signal.h: Implement host_signal_*, Warner Losh, 2022/01/28
- [PATCH v3 20/40] bsd-user/host/i386/host-signal.h: Implement host_signal_*, Warner Losh, 2022/01/28
- [PATCH v3 18/40] bsd-user/signal.c: Add si_type argument to queue_signal, Warner Losh, 2022/01/28
- [PATCH v3 35/40] bsd-user/signal.c: implement do_sigreturn, Warner Losh, 2022/01/28
- [PATCH v3 36/40] bsd-user/signal.c: implement do_sigaction, Warner Losh, 2022/01/28