From: Laurent Vivier <laurent@vivier.eu>
To: "Alex Bennée" <alex.bennee@linaro.org>,
"Nicolas Surbayrole" <nsurbayrole@quarkslab.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [PATCH v2] linux-user: Fix executable page of /proc/self/maps
Date: Mon, 8 Mar 2021 11:47:07 +0100 [thread overview]
Message-ID: <c74adef9-fb5f-06ee-9dfc-083576a5a607@vivier.eu> (raw)
In-Reply-To: <20210308091959.986540-1-nsurbayrole@quarkslab.com>
Le 08/03/2021 à 10:19, Nicolas Surbayrole a écrit :
> The guest binary and libraries are not always map with the
> executable bit in the host process. The guest may read a
> /proc/self/maps with no executable address range. The
> perm fields should be based on the guest permission inside
> Qemu.
>
> Signed-off-by: Nicolas Surbayrole <nsurbayrole@quarkslab.com>
> ---
> linux-user/syscall.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 389ec09764..0bbb2ff9c7 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -7888,9 +7888,9 @@ static int open_self_maps(void *cpu_env, int fd)
> count = dprintf(fd, TARGET_ABI_FMT_ptr "-" TARGET_ABI_FMT_ptr
> " %c%c%c%c %08" PRIx64 " %s %"PRId64,
> h2g(min), h2g(max - 1) + 1,
> - e->is_read ? 'r' : '-',
> - e->is_write ? 'w' : '-',
> - e->is_exec ? 'x' : '-',
> + (flags & PAGE_READ) ? 'r' : '-',
> + (flags & PAGE_WRITE_ORG) ? 'w' : '-',
> + (flags & PAGE_EXEC) ? 'x' : '-',
> e->is_priv ? 'p' : '-',
> (uint64_t) e->offset, e->dev, e->inode);
> if (path) {
>
It looks good.
Alex, you wrote this code, any comment?
Should we move this directly in read_self_maps() to have the guest values in MapInfo?
Thanks,
Laurent
next prev parent reply other threads:[~2021-03-08 10:48 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-08 9:19 [PATCH v2] linux-user: Fix executable page of /proc/self/maps Nicolas Surbayrole
2021-03-08 10:47 ` Laurent Vivier [this message]
2021-03-09 14:06 ` Richard Henderson
2021-03-09 17:58 ` Alex Bennée
2021-03-09 14:07 ` Richard Henderson
2021-03-09 20:11 ` 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=c74adef9-fb5f-06ee-9dfc-083576a5a607@vivier.eu \
--to=laurent@vivier.eu \
--cc=alex.bennee@linaro.org \
--cc=nsurbayrole@quarkslab.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).