From: riku.voipio@linaro.org
To: qemu-devel@nongnu.org
Cc: Alexander Graf <agraf@suse.de>
Subject: [Qemu-devel] [PULL 20/21] linux-user: Unlock mmap_lock when resuming guest from page_unprotect
Date: Tue, 23 Jul 2013 18:49:10 +0300 [thread overview]
Message-ID: <d02532f08e207419e412ea7cd4eb8b36f04f426d.1374593203.git.riku.voipio@linaro.org> (raw)
In-Reply-To: <cover.1374593203.git.riku.voipio@linaro.org>
From: Alexander Graf <agraf@suse.de>
The page_unprotect() function is running everything locked. Before every
potential exit path of the function mmap_unlock() gets called to make sure
we don't leak the lock.
However, the function calls tb_invalidate_phys_page() which again can
exit a signal through longjmp, leaving our mmap_unlock() attempts in vain.
Add a hint to tb_invalidate_phys_page() that we need to unlock before we
can leave back into guest context, so that we don't leak the lock.
This fixes 16-bit i386 wine programs running in linux-user for me.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
---
translate-all.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/translate-all.c b/translate-all.c
index e8683d2..3b5fc7c 100644
--- a/translate-all.c
+++ b/translate-all.c
@@ -1148,7 +1148,8 @@ void tb_invalidate_phys_page_fast(tb_page_addr_t start, int len)
#if !defined(CONFIG_SOFTMMU)
static void tb_invalidate_phys_page(tb_page_addr_t addr,
- uintptr_t pc, void *puc)
+ uintptr_t pc, void *puc,
+ bool locked)
{
TranslationBlock *tb;
PageDesc *p;
@@ -1206,6 +1207,9 @@ static void tb_invalidate_phys_page(tb_page_addr_t addr,
itself */
cpu->current_tb = NULL;
tb_gen_code(env, current_pc, current_cs_base, current_flags, 1);
+ if (locked) {
+ mmap_unlock();
+ }
cpu_resume_from_signal(env, puc);
}
#endif
@@ -1723,7 +1727,7 @@ void page_set_flags(target_ulong start, target_ulong end, int flags)
if (!(p->flags & PAGE_WRITE) &&
(flags & PAGE_WRITE) &&
p->first_tb) {
- tb_invalidate_phys_page(addr, 0, NULL);
+ tb_invalidate_phys_page(addr, 0, NULL, false);
}
p->flags = flags;
}
@@ -1818,7 +1822,7 @@ int page_unprotect(target_ulong address, uintptr_t pc, void *puc)
/* and since the content will be modified, we must invalidate
the corresponding translated code. */
- tb_invalidate_phys_page(addr, pc, puc);
+ tb_invalidate_phys_page(addr, pc, puc, true);
#ifdef DEBUG_TB_CHECK
tb_invalidate_check(addr);
#endif
--
1.8.1.2
next prev parent reply other threads:[~2013-07-23 15:50 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-23 15:48 [Qemu-devel] [PULL 00/21] Linux-user updates riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 01/21] configure: Flip default of target_nptl riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 02/21] configure: Don't say target_nptl="no" if there is no linux-user target riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 03/21] configure: Enable threading on all ppc and mips linux-user targets riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 04/21] configure: Enable threading for unicore32-linux-user riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 05/21] linux-user: Move includes of target-specific headers to end of qemu.h riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 06/21] linux-user: Enable NPTL for OpenRISC riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 07/21] linux-user: Enable NPTL for SPARC targets riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 08/21] linux-user: Enable NPTL for m68k riku.voipio
2013-07-23 15:48 ` [Qemu-devel] [PULL 09/21] linux-user: Add missing 'break' in i386 get_thread_area syscall riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 10/21] linux-user: Clean up handling of clone() argument order riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 11/21] linux-user: Add i386 TLS setter riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 12/21] linux-user: Enable NPTL for x86-64 riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 13/21] configure: Make NPTL non-optional riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 14/21] linux-user: Avoid conditional cpu_reset() riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 15/21] linux-user: Fix target_stat and target_stat64 for OpenRISC riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 16/21] linux-user: Fix pipe syscall return for SPARC riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 17/21] linux-user: fix segmentation fault passing with h2g(x) != x riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 18/21] linux-user: Fix epoll on ARM hosts riku.voipio
2013-07-23 15:49 ` [Qemu-devel] [PULL 19/21] linux-user: Reset copied CPUs in cpu_copy() always riku.voipio
2013-07-23 15:49 ` riku.voipio [this message]
2013-07-23 15:49 ` [Qemu-devel] [PULL 21/21] linux-user: Handle compressed ISA encodings when processing MIPS exceptions riku.voipio
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d02532f08e207419e412ea7cd4eb8b36f04f426d.1374593203.git.riku.voipio@linaro.org \
--to=riku.voipio@linaro.org \
--cc=agraf@suse.de \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).