From: David Hildenbrand <david@redhat.com>
To: Richard Henderson <richard.henderson@linaro.org>, qemu-devel@nongnu.org
Cc: thuth@redhat.com, qemu-s390x@nongnu.org, cohuck@redhat.com,
laurent@vivier.eu
Subject: Re: [PATCH v2 14/15] linux-user/s390x: Clean up signal.c
Date: Thu, 29 Apr 2021 09:29:42 +0200 [thread overview]
Message-ID: <d5529bd4-b348-fd2b-9606-aca9f14856f4@redhat.com> (raw)
In-Reply-To: <20210428193408.233706-15-richard.henderson@linaro.org>
On 28.04.21 21:34, Richard Henderson wrote:
> Reorder the function bodies to correspond to the kernel source.
>
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
> linux-user/s390x/signal.c | 67 ++++++++++++++++++++++++---------------
> 1 file changed, 41 insertions(+), 26 deletions(-)
>
> diff --git a/linux-user/s390x/signal.c b/linux-user/s390x/signal.c
> index 839a7ae4b3..9d470e4ca0 100644
> --- a/linux-user/s390x/signal.c
> +++ b/linux-user/s390x/signal.c
> @@ -133,6 +133,7 @@ void setup_frame(int sig, struct target_sigaction *ka,
> {
> sigframe *frame;
> abi_ulong frame_addr;
> + abi_ulong restorer;
>
> frame_addr = get_sigframe(ka, env, sizeof(*frame));
> trace_user_setup_frame(env, frame_addr);
> @@ -141,28 +142,39 @@ void setup_frame(int sig, struct target_sigaction *ka,
> return;
> }
>
> + /* Set up backchain. */
> + __put_user(env->regs[15], (abi_ulong *) frame);
> +
> + /* Create struct sigcontext on the signal stack. */
> /* Make sure that we're initializing all of oldmask. */
> QEMU_BUILD_BUG_ON(ARRAY_SIZE(frame->sc.oldmask) != 1);
> __put_user(set->sig[0], &frame->sc.oldmask[0]);
> -
> - save_sigregs(env, &frame->sregs);
> -
> __put_user(frame_addr + offsetof(sigframe, sregs), &frame->sc.sregs);
>
> - /* Set up to return from userspace. If provided, use a stub
> - already in userspace. */
> + /* Create _sigregs on the signal stack */
> + save_sigregs(env, &frame->sregs);
> +
> + /*
> + * ??? The kernel uses regs->gprs[2] here, which is not yet the signo.
> + * Moreover the comment talks about allowing backtrace, which is really
> + * done by the r15 copy above.
> + */
> + __put_user(sig, &frame->signo);
> +
> + /*
> + * Set up to return from userspace.
> + * If provided, use a stub already in userspace.
> + */
> if (ka->sa_flags & TARGET_SA_RESTORER) {
> - env->regs[14] = ka->sa_restorer;
> + restorer = ka->sa_restorer;
> } else {
> - env->regs[14] = frame_addr + offsetof(sigframe, retcode);
> + restorer = frame_addr + offsetof(sigframe, retcode);
> __put_user(S390_SYSCALL_OPCODE | TARGET_NR_sigreturn,
> &frame->retcode);
> }
>
> - /* Set up backchain. */
> - __put_user(env->regs[15], (abi_ulong *) frame);
> -
> /* Set up registers for signal handler */
> + env->regs[14] = restorer;
> env->regs[15] = frame_addr;
> /* Force default amode and default user address space control. */
> env->psw.mask = PSW_MASK_64 | PSW_MASK_32 | PSW_ASC_PRIMARY
> @@ -180,8 +192,6 @@ void setup_frame(int sig, struct target_sigaction *ka,
> env->regs[5] = 0; /* FIXME: regs->int_parm_long */
> env->regs[6] = 0; /* FIXME: current->thread.last_break */
>
> - /* Place signal number on stack to allow backtrace from handler. */
> - __put_user(env->regs[2], &frame->signo);
> unlock_user_struct(frame, frame_addr, 1);
> }
>
> @@ -191,6 +201,7 @@ void setup_rt_frame(int sig, struct target_sigaction *ka,
> {
> rt_sigframe *frame;
> abi_ulong frame_addr;
> + abi_ulong restorer;
>
> frame_addr = get_sigframe(ka, env, sizeof *frame);
> trace_user_setup_rt_frame(env, frame_addr);
> @@ -199,29 +210,33 @@ void setup_rt_frame(int sig, struct target_sigaction *ka,
> return;
> }
>
> - tswap_siginfo(&frame->info, info);
> + /* Set up backchain. */
> + __put_user(env->regs[15], (abi_ulong *) frame);
>
> - /* Create the ucontext. */
> - __put_user(0, &frame->uc.tuc_flags);
> - __put_user((abi_ulong)0, (abi_ulong *)&frame->uc.tuc_link);
> - target_save_altstack(&frame->uc.tuc_stack, env);
> - save_sigregs(env, &frame->uc.tuc_mcontext);
> - tswap_sigset(&frame->uc.tuc_sigmask, set);
> -
> - /* Set up to return from userspace. If provided, use a stub
> - already in userspace. */
> + /*
> + * Set up to return from userspace.
> + * If provided, use a stub already in userspace.
> + */
> if (ka->sa_flags & TARGET_SA_RESTORER) {
> - env->regs[14] = ka->sa_restorer;
> + restorer = ka->sa_restorer;
> } else {
> - env->regs[14] = frame_addr + offsetof(typeof(*frame), retcode);
> + restorer = frame_addr + offsetof(typeof(*frame), retcode);
> __put_user(S390_SYSCALL_OPCODE | TARGET_NR_rt_sigreturn,
> &frame->retcode);
> }
>
> - /* Set up backchain. */
> - __put_user(env->regs[15], (abi_ulong *) frame);
> + /* Create siginfo on the signal stack. */
> + tswap_siginfo(&frame->info, info);
> +
> + /* Create ucontext on the signal stack. */
> + __put_user(0, &frame->uc.tuc_flags);
> + __put_user(0, &frame->uc.tuc_link);
> + target_save_altstack(&frame->uc.tuc_stack, env);
> + save_sigregs(env, &frame->uc.tuc_mcontext);
> + tswap_sigset(&frame->uc.tuc_sigmask, set);
>
> /* Set up registers for signal handler */
> + env->regs[14] = restorer;
> env->regs[15] = frame_addr;
> /* Force default amode and default user address space control. */
> env->psw.mask = PSW_MASK_64 | PSW_MASK_32 | PSW_ASC_PRIMARY
>
Reviewed-by: David Hildenbrand <david@redhat.com>
--
Thanks,
David / dhildenb
next prev parent reply other threads:[~2021-04-29 7:32 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-28 19:33 [PATCH v2 00/15] linux-user/s390x: some signal fixes Richard Henderson
2021-04-28 19:33 ` [PATCH v2 01/15] linux-user/s390x: Fix sigframe types Richard Henderson
2021-04-29 7:10 ` David Hildenbrand
2021-04-28 19:33 ` [PATCH v2 02/15] linux-user/s390x: Use uint16_t for signal retcode Richard Henderson
2021-04-29 7:10 ` David Hildenbrand
2021-04-28 19:33 ` [PATCH v2 03/15] linux-user/s390x: Remove PSW_ADDR_AMODE Richard Henderson
2021-04-29 7:11 ` David Hildenbrand
2021-04-28 19:33 ` [PATCH v2 04/15] linux-user/s390x: Remove restore_sigregs return value Richard Henderson
2021-04-29 7:11 ` David Hildenbrand
2021-04-28 19:33 ` [PATCH v2 05/15] linux-user/s390x: Fix trace in restore_regs Richard Henderson
2021-04-29 7:12 ` David Hildenbrand
2021-04-28 19:33 ` [PATCH v2 06/15] linux-user/s390x: Fix sigcontext sregs value Richard Henderson
2021-04-29 7:13 ` David Hildenbrand
2021-04-28 19:34 ` [PATCH v2 07/15] linux-user/s390x: Use tswap_sigset in setup_rt_frame Richard Henderson
2021-04-29 7:14 ` David Hildenbrand
2021-04-28 19:34 ` [PATCH v2 08/15] linux-user/s390x: Tidy save_sigregs Richard Henderson
2021-04-29 7:14 ` David Hildenbrand
2021-04-28 19:34 ` [PATCH v2 09/15] linux-user/s390x: Clean up single-use gotos in signal.c Richard Henderson
2021-04-29 7:15 ` David Hildenbrand
2021-04-28 19:34 ` [PATCH v2 10/15] linux-user/s390x: Set psw.mask properly for the signal handler Richard Henderson
2021-04-29 7:20 ` David Hildenbrand
2021-04-28 19:34 ` [PATCH v2 11/15] linux-user/s390x: Add stub sigframe argument for last_break Richard Henderson
2021-04-29 7:21 ` David Hildenbrand
2021-04-28 19:34 ` [PATCH v2 12/15] linux-user/s390x: Fix frame_addr corruption in setup_frame Richard Henderson
2021-04-29 7:21 ` David Hildenbrand
2021-04-28 19:34 ` [PATCH v2 13/15] linux-user/s390x: Add build asserts for sigset sizes Richard Henderson
2021-04-29 7:21 ` David Hildenbrand
2021-04-28 19:34 ` [PATCH v2 14/15] linux-user/s390x: Clean up signal.c Richard Henderson
2021-04-29 7:29 ` David Hildenbrand [this message]
2021-04-28 19:34 ` [PATCH v2 15/15] linux-user/s390x: Handle vector regs in signal stack Richard Henderson
2021-04-29 7:32 ` David Hildenbrand
2021-04-28 19:40 ` [PATCH v2 00/15] linux-user/s390x: some signal fixes Richard Henderson
2021-04-29 7:33 ` David Hildenbrand
2021-05-06 11:54 ` Cornelia Huck
2021-05-06 13:31 ` Laurent Vivier
2021-05-15 19:44 ` Laurent Vivier
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=d5529bd4-b348-fd2b-9606-aca9f14856f4@redhat.com \
--to=david@redhat.com \
--cc=cohuck@redhat.com \
--cc=laurent@vivier.eu \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=thuth@redhat.com \
/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).