From: Laurent Vivier <laurent@vivier.eu>
To: Filip Bozuta <filip.bozuta@syrmia.com>, qemu-devel@nongnu.org
Subject: Re: [PATCH 3/5] linux-user: Add strace support for printing arguments of lseek()
Date: Wed, 3 Jun 2020 16:41:01 +0200 [thread overview]
Message-ID: <02fa898f-729b-4ecb-ec29-718d70a5dabf@vivier.eu> (raw)
In-Reply-To: <20200602115331.1659-4-filip.bozuta@syrmia.com>
Le 02/06/2020 à 13:53, Filip Bozuta a écrit :
> From: Filip Bozuta <Filip.Bozuta@syrmia.com>
>
> This patch implements strace argument printing functionality for syscall:
>
> *lseek - reposition read/write file offset
>
> off_t lseek(int fd, off_t offset, int whence)
> man page: https://www.man7.org/linux/man-pages/man2/lseek.2.html
>
> Implementation notes:
>
> The syscall's third argument "whence" has predefined values:
> "SEEK_SET","SEEK_CUR","SEEK_END","SEEK_DATA","SEEK_HOLE"
> and thus a separate printing function "print_lseek" was stated
> in file "strace.list". This function is defined in "strace.c"
> by using an existing function "print_raw_param()" to print
> the first and second argument and a switch(case) statement
> for the predefined values of the third argument.
> Values "SEEK_DATA" and "SEEK_HOLE" are defined in kernel version 3.1.
> That is the reason why case statements for these values are
> enwrapped in #ifdef directive.
>
> Signed-off-by: Filip Bozuta <Filip.Bozuta@syrmia.com>
> ---
> linux-user/strace.c | 32 ++++++++++++++++++++++++++++++++
> linux-user/strace.list | 2 +-
> 2 files changed, 33 insertions(+), 1 deletion(-)
>
> diff --git a/linux-user/strace.c b/linux-user/strace.c
> index 5cf419989c..b7f012f1b5 100644
> --- a/linux-user/strace.c
> +++ b/linux-user/strace.c
> @@ -1768,6 +1768,38 @@ print__llseek(const struct syscallname *name,
> }
> #endif
>
> +#ifdef TARGET_NR_lseek
> +static void
> +print_lseek(const struct syscallname *name,
> + abi_long arg0, abi_long arg1, abi_long arg2,
> + abi_long arg3, abi_long arg4, abi_long arg5)
> +{
> + print_syscall_prologue(name);
> + print_raw_param("%d", arg0, 0);
> + print_raw_param("%ld", arg1, 0);
TARGET_ABI_FMT_ld is better than "%ld", because abi_long can be a 32bit
or a 64bit value, and be different between host and target.
> + switch (arg2) {
> + case SEEK_SET:
> + qemu_log("SEEK_SET"); break;
> + case SEEK_CUR:
> + qemu_log("SEEK_CUR"); break;
> + case SEEK_END:
> + qemu_log("SEEK_END"); break;
> +#ifdef SEEK_DATA
> + case SEEK_DATA:
> + qemu_log("SEEK_DATA"); break;
> +#endif
> +#ifdef SEEK_HOLE
> + case SEEK_HOLE:
> + qemu_log("SEEK_HOLE"); break;
> +#endif
> + default:
> + print_raw_param("%#x", arg2, 1);
> + qemu_log(" /* SEEK_??? */");
remove this line ^^^
> + }
> + print_syscall_epilogue(name);
> +}
> +#endif
> +
> #if defined(TARGET_NR_socket)
> static void
> print_socket(const struct syscallname *name,
> diff --git a/linux-user/strace.list b/linux-user/strace.list
> index 8d51c54bca..5a56212532 100644
> --- a/linux-user/strace.list
> +++ b/linux-user/strace.list
> @@ -513,7 +513,7 @@
> { TARGET_NR_lremovexattr, "lremovexattr" , NULL, NULL, NULL },
> #endif
> #ifdef TARGET_NR_lseek
> -{ TARGET_NR_lseek, "lseek" , NULL, NULL, NULL },
> +{ TARGET_NR_lseek, "lseek" , NULL, print_lseek, NULL },
> #endif
> #ifdef TARGET_NR_lsetxattr
> { TARGET_NR_lsetxattr, "lsetxattr" , NULL, NULL, NULL },
>
Thanks,
Laurent
next prev parent reply other threads:[~2020-06-03 14:42 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-02 11:53 [PATCH 0/5] Add strace support for printing arguments of selected syscalls Filip Bozuta
2020-06-02 11:53 ` [PATCH 1/5] linux-user: Add strace support for a group of syscalls Filip Bozuta
2020-06-03 14:23 ` Laurent Vivier
2020-06-02 11:53 ` [PATCH 2/5] linux-user: Add strace support for printing argument of syscalls used for extend attributes Filip Bozuta
2020-06-03 16:20 ` Laurent Vivier
2020-06-02 11:53 ` [PATCH 3/5] linux-user: Add strace support for printing arguments of lseek() Filip Bozuta
2020-06-03 14:41 ` Laurent Vivier [this message]
2020-06-02 11:53 ` [PATCH 4/5] linux-user: Add strace support for printing arguments of chown()/lchown() Filip Bozuta
2020-06-03 14:44 ` Laurent Vivier
2020-06-02 11:53 ` [PATCH 5/5] linux-user: Add strace support for printing arguments of fallocate() Filip Bozuta
2020-06-03 14:54 ` Laurent Vivier
2020-06-02 13:42 ` [PATCH 0/5] Add strace support for printing arguments of selected syscalls no-reply
2020-06-03 14:43 ` Alex Bennée
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=02fa898f-729b-4ecb-ec29-718d70a5dabf@vivier.eu \
--to=laurent@vivier.eu \
--cc=filip.bozuta@syrmia.com \
--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).