2018-02-22 23:01:24 +01:00
|
|
|
From e61d37b1ec17800a82e06a9231a4708f232da4ea Mon Sep 17 00:00:00 2001
|
2012-02-01 00:10:40 +01:00
|
|
|
From: Alexander Graf <agraf@suse.de>
|
|
|
|
Date: Fri, 13 Jan 2012 17:05:41 +0100
|
|
|
|
Subject: [PATCH] linux-user: fix segfault deadlock
|
2013-05-14 22:46:08 +02:00
|
|
|
MIME-Version: 1.0
|
|
|
|
Content-Type: text/plain; charset=UTF-8
|
|
|
|
Content-Transfer-Encoding: 8bit
|
2012-02-01 00:10:40 +01:00
|
|
|
|
|
|
|
When entering the guest we take a lock to ensure that nobody else messes
|
|
|
|
with our TB chaining while we're doing it. If we get a segfault inside that
|
|
|
|
code, we manage to work on, but will not unlock the lock.
|
|
|
|
|
|
|
|
This patch forces unlocking of that lock in the segv handler. I'm not sure
|
|
|
|
this is the right approach though. Maybe we should rather make sure we don't
|
|
|
|
segfault in the code? I would greatly appreciate someone more intelligible
|
|
|
|
than me to look at this :).
|
|
|
|
|
|
|
|
Example code to trigger this is at: http://csgraf.de/tmp/conftest.c
|
|
|
|
|
|
|
|
Reported-by: Fabio Erculiani <lxnay@sabayon.org>
|
|
|
|
Signed-off-by: Alexander Graf <agraf@suse.de>
|
2016-01-19 19:31:32 +01:00
|
|
|
[AF: Drop spinlock_safe_unlock() and switch to tb_lock_reset() (bonzini)]
|
2013-05-14 22:46:08 +02:00
|
|
|
Signed-off-by: Andreas Färber <afaerber@suse.de>
|
2012-02-01 00:10:40 +01:00
|
|
|
---
|
2017-12-14 01:53:24 +01:00
|
|
|
accel/tcg/user-exec.c | 4 ++++
|
2016-01-19 19:31:32 +01:00
|
|
|
1 file changed, 4 insertions(+)
|
2012-02-01 00:10:40 +01:00
|
|
|
|
2017-12-14 01:53:24 +01:00
|
|
|
diff --git a/accel/tcg/user-exec.c b/accel/tcg/user-exec.c
|
|
|
|
index f42285ea1c..a96c56aa33 100644
|
|
|
|
--- a/accel/tcg/user-exec.c
|
|
|
|
+++ b/accel/tcg/user-exec.c
|
|
|
|
@@ -102,6 +102,10 @@ static inline int handle_cpu_signal(uintptr_t pc, unsigned long address,
|
2016-01-19 19:31:32 +01:00
|
|
|
printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
|
|
|
|
pc, address, is_write, *(unsigned long *)old_set);
|
2012-02-01 00:10:40 +01:00
|
|
|
#endif
|
|
|
|
+
|
|
|
|
+ /* Maybe we're still holding the TB fiddling lock? */
|
2016-01-19 19:31:32 +01:00
|
|
|
+ tb_lock_reset();
|
2012-02-01 00:10:40 +01:00
|
|
|
+
|
|
|
|
/* XXX: locking issue */
|
2016-09-19 19:06:58 +02:00
|
|
|
if (is_write && h2g_valid(address)) {
|
|
|
|
switch (page_unprotect(h2g(address), pc)) {
|