From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Cc: patches@linaro.org,
Timothy Edward Baldwin <T.E.Baldwin99@members.leeds.ac.uk>,
Riku Voipio <riku.voipio@iki.fi>,
Richard Henderson <rth@twiddle.net>
Subject: [Qemu-devel] [PATCH v2 00/28] linux-user: fix race between signals and syscalls
Date: Thu, 12 May 2016 18:47:24 +0100 [thread overview]
Message-ID: <1463075272-9933-1-git-send-email-peter.maydell@linaro.org> (raw)
This patch series is an updated version of the original series
sent by Timothy Baldwin in autumn of last year
(https://lists.gnu.org/archive/html/qemu-devel/2015-09/msg01388.html).
I have attempted to address various code review comments made on that
original patchset.
Changes v1->v2:
* more description in comments and commit messages of what is going on
* implement restarting for all guest architectures (tilegx wasn't
in the tree when v1 was sent out)
* reordered the patches in the series a bit; in particular we add
support for restarting syscalls to all targets and so we don't
need the TARGET_USE_ERESTARTSYS define
* fixed a bug in the Alpha restart code where we were incorrectly
treating env->ir[IR_PV] as the PC, not env->pc
* restrict scope of patchset to just providing and using the
safe_syscall mechanism. (I plan to upstream the other race fixes
in the second half of Timothy's patchset separately once this lot
are in.)
* avoid per-architecture if-ladders in configure and C code by
creating a linux-user/host/$(HOSTARCH) type directory structure
so the makefiles can pull in the right files for the host
automatically
* added patches to use safe_syscall for futex, select and pselect
(in particular fixing futex() allows binaries that use the Boehm
garbage collector, like the Mono runtime, to work)
* include a patch which sets r14 on exit from microblaze syscalls,
which I think clarifies how that architecture does things
(though it is not ABI-wise strictly required)
* fixed bug in wrapping of waitid syscall -- it has five args, not four
* switched safe_syscall() to use a "return -1 and set errno"
convention for failure; this matches syscall(), and seemed to
me to be more intuitive for switching code around and for when
there's a mix of code paths using safe_syscall() and directly
calling libc functions (though it does mean that we push error
numbers into errno and then fish them out again later)
* added the magic GNU-stack rune that avoids incorrectly tainting
our whole binary as "needs an executable stack" when an asm
file is linked into it
Notes:
* safe_syscall is supported for all guest architectures, but
only the x86_64 host architecture; adding the asm fragment
for our other hosts should be straightforward
* there are a fair number of other system calls that should be
using safe_syscall too
In both cases I thought it was better to avoid making this patchset
any larger or later; we can easily do these in later patches if
the general concept and mechanism has made it into master.
I've tested mostly by running the LTP test suite for 32-bit ARM
guests; this patchset neither improves nor worsens our pass rate.
I think the fixing of select/pselect ought to deal with hangs when
running cmake (https://bugs.launchpad.net/qemu/+bug/955379), but
I have no reliable reproducer for that bug so can't say for sure.
The "Mono hangs due to it using Boehm GC" bug is
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/530000
and that is definitely fixed by this patchset.
thanks
-- PMM
Peter Maydell (5):
linux-user: Consistently return host errnos from do_openat()
linux-user: Support for restarting system calls for tilegx targets
linux-user: Set r14 on exit from microblaze syscall
linux-user: Use safe_syscall for pselect, select syscalls
linux-user: Use safe_syscall for futex syscall
Timothy E Baldwin (23):
linux-user: Check array bounds in errno conversion
linux-user: Reindent signal handling
linux-user: Define TARGET_ERESTART* errno values
linux-user: Renumber TARGET_QEMU_ESIGRETURN, make it not arch-specific
linux-user: Support for restarting system calls for x86 targets
linux-user: Support for restarting system calls for ARM targets
linux-user: Support for restarting system calls for MIPS targets
linux-user: Support for restarting system calls for PPC targets
linux-user: Support for restarting system calls for SPARC targets
linux-user: Support for restarting system calls for SH4 targets
linux-user: Support for restarting system calls for Alpha targets
linux-user: Support for restarting system calls for UniCore32 targets
linux-user: Support for restarting system calls for OpenRISC targets
linux-user: Support for restarting system calls for M68K targets
linux-user: Support for restarting system calls for S390 targets
linux-user: Support for restarting system calls for CRIS targets
linux-user: Support for restarting system calls for Microblaze targets
linux-user: Add debug code to exercise restarting system calls
linux-user: Provide safe_syscall for fixing races between signals and
syscalls
linux-user: Use safe_syscall for read and write system calls
linux-user: Use safe_syscall for open and openat system calls
linux-user: Use safe_syscall for wait system calls
linux-user: Use safe_syscall for execve syscall
Makefile.target | 4 +-
linux-user/Makefile.objs | 3 +-
linux-user/alpha/target_signal.h | 1 +
linux-user/arm/target_signal.h | 1 +
linux-user/cris/target_signal.h | 1 +
linux-user/errno_defs.h | 17 +
linux-user/host/x86_64/hostdep.h | 38 +
linux-user/host/x86_64/safe-syscall.inc.S | 81 ++
linux-user/m68k/target_signal.h | 1 +
linux-user/main.c | 225 ++--
linux-user/microblaze/target_signal.h | 1 +
linux-user/mips/target_signal.h | 1 +
linux-user/mips/target_syscall.h | 4 -
linux-user/mips64/target_signal.h | 1 +
linux-user/mips64/target_syscall.h | 4 -
linux-user/openrisc/target_signal.h | 1 +
linux-user/ppc/target_signal.h | 1 +
linux-user/ppc/target_syscall.h | 2 -
linux-user/qemu.h | 127 ++-
linux-user/s390x/target_signal.h | 1 +
linux-user/safe-syscall.S | 30 +
linux-user/sh4/target_signal.h | 1 +
linux-user/signal.c | 1610 +++++++++++++++--------------
linux-user/sparc/target_signal.h | 1 +
linux-user/sparc64/target_signal.h | 1 +
linux-user/syscall.c | 188 +++-
linux-user/tilegx/target_signal.h | 1 +
27 files changed, 1428 insertions(+), 919 deletions(-)
create mode 100644 linux-user/host/x86_64/hostdep.h
create mode 100644 linux-user/host/x86_64/safe-syscall.inc.S
create mode 100644 linux-user/safe-syscall.S
--
1.9.1
next reply other threads:[~2016-05-12 17:48 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-12 17:47 Peter Maydell [this message]
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 01/28] linux-user: Check array bounds in errno conversion Peter Maydell
2016-05-23 23:54 ` Laurent Vivier
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 02/28] linux-user: Consistently return host errnos from do_openat() Peter Maydell
2016-05-24 0:05 ` Laurent Vivier
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 03/28] linux-user: Reindent signal handling Peter Maydell
2016-05-24 0:21 ` Laurent Vivier
2016-05-24 6:47 ` Riku Voipio
2016-05-24 7:31 ` Laurent Vivier
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 04/28] linux-user: Define TARGET_ERESTART* errno values Peter Maydell
2016-05-24 9:42 ` Laurent Vivier
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 05/28] linux-user: Renumber TARGET_QEMU_ESIGRETURN, make it not arch-specific Peter Maydell
2016-05-24 0:29 ` Laurent Vivier
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 06/28] linux-user: Support for restarting system calls for x86 targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 07/28] linux-user: Support for restarting system calls for ARM targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 08/28] linux-user: Support for restarting system calls for MIPS targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 09/28] linux-user: Support for restarting system calls for PPC targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 10/28] linux-user: Support for restarting system calls for SPARC targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 11/28] linux-user: Support for restarting system calls for SH4 targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 12/28] linux-user: Support for restarting system calls for Alpha targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 13/28] linux-user: Support for restarting system calls for UniCore32 targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 14/28] linux-user: Support for restarting system calls for OpenRISC targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 15/28] linux-user: Support for restarting system calls for M68K targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 16/28] linux-user: Support for restarting system calls for S390 targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 17/28] linux-user: Support for restarting system calls for CRIS targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 18/28] linux-user: Support for restarting system calls for tilegx targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 19/28] linux-user: Set r14 on exit from microblaze syscall Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 20/28] linux-user: Support for restarting system calls for Microblaze targets Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 21/28] linux-user: Add debug code to exercise restarting system calls Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 22/28] linux-user: Provide safe_syscall for fixing races between signals and syscalls Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 23/28] linux-user: Use safe_syscall for read and write system calls Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 24/28] linux-user: Use safe_syscall for open and openat " Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 25/28] linux-user: Use safe_syscall for wait " Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 26/28] linux-user: Use safe_syscall for execve syscall Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 27/28] linux-user: Use safe_syscall for pselect, select syscalls Peter Maydell
2016-05-12 17:47 ` [Qemu-devel] [PATCH v2 28/28] linux-user: Use safe_syscall for futex syscall Peter Maydell
2016-05-23 18:55 ` [Qemu-devel] [PATCH v2 00/28] linux-user: fix race between signals and syscalls Peter Maydell
2016-05-24 8:04 ` 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=1463075272-9933-1-git-send-email-peter.maydell@linaro.org \
--to=peter.maydell@linaro.org \
--cc=T.E.Baldwin99@members.leeds.ac.uk \
--cc=patches@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@iki.fi \
--cc=rth@twiddle.net \
/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).