From: Richard Henderson <richard.henderson@linaro.org>
To: Ilya Leoshkevich <iii@linux.ibm.com>, Laurent Vivier <laurent@vivier.eu>
Cc: qemu-devel@nongnu.org
Subject: Re: [PATCH] linux-user: Trace wait4()'s and waitpid()'s wstatus
Date: Sat, 5 Oct 2024 10:57:05 -0700 [thread overview]
Message-ID: <cb4ccc1a-cb6c-4c1c-bc46-2ec81543e6da@linaro.org> (raw)
In-Reply-To: <20241001193244.14939-1-iii@linux.ibm.com>
On 10/1/24 12:32, Ilya Leoshkevich wrote:
> Borrow the code for formatting the most frequent WIFEXITED() and
> WIFSIGNALED() special cases from from the strace's printstatus().
>
> Output examples:
>
> 474729 wait4(-1,0x7f00767ff0a0,0,(nil)) = 474733 (wstatus={WIFEXITED(s) && WEXITSTATUS(s) == 1})
> 475833 wait4(-1,0x7f7de61ff0a0,0,(nil)) = 475837 (wstatus={WIFSIGNALED(s) && WTERMSIG(s) == SIGKILL})
> 1168 waitpid(1171,0x7f44eea00340,0) = 1171 (wstatus={WIFSIGNALED(s) && WTERMSIG(s) == SIGKILL})
>
> Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
> ---
> linux-user/strace.c | 61 ++++++++++++++++++++++++++++++++++++++++++
> linux-user/strace.list | 6 +++--
> 2 files changed, 65 insertions(+), 2 deletions(-)
>
> diff --git a/linux-user/strace.c b/linux-user/strace.c
> index b4d1098170e..d5d1f18304d 100644
> --- a/linux-user/strace.c
> +++ b/linux-user/strace.c
> @@ -4168,6 +4168,67 @@ print_ioctl(CPUArchState *cpu_env, const struct syscallname *name,
> }
> #endif
>
> +#if defined(TARGET_NR_wait4) || defined(TARGET_NR_waitpid)
> +static void print_wstatus(int wstatus)
> +{
> + if (WIFSIGNALED(wstatus)) {
> + qemu_log("{WIFSIGNALED(s) && WTERMSIG(s) == ");
> + print_signal(WTERMSIG(wstatus), 1);
> + if (WCOREDUMP(wstatus)) {
> + qemu_log(" && WCOREDUMP(s)");
> + }
> + qemu_log("}");
> + } else if (WIFEXITED(wstatus)) {
> + qemu_log("{WIFEXITED(s) && WEXITSTATUS(s) == %d}",
> + WEXITSTATUS(wstatus));
> + } else {
> + print_number(wstatus, 1);
> + }
> +}
> +
> +static void print_ret_wstatus(abi_long ret, abi_long wstatus_addr)
> +{
> + if (!print_syscall_err(ret)) {
> + qemu_log(TARGET_ABI_FMT_ld " (wstatus=", ret);
> + if (wstatus_addr == 0) {
> + qemu_log("NULL");
I think you could merge the == 0 check into the outer IF, and avoid printing the returned
wstatus entirely.
Otherwise
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
r~
next prev parent reply other threads:[~2024-10-05 17:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-01 19:32 [PATCH] linux-user: Trace wait4()'s and waitpid()'s wstatus Ilya Leoshkevich
2024-10-05 17:57 ` Richard Henderson [this message]
2024-10-05 18:04 ` Richard Henderson
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=cb4ccc1a-cb6c-4c1c-bc46-2ec81543e6da@linaro.org \
--to=richard.henderson@linaro.org \
--cc=iii@linux.ibm.com \
--cc=laurent@vivier.eu \
--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).