From: riku.voipio@linaro.org
To: Peter Maydell <peter.maydell@linaro.org>, qemu-devel@nongnu.org
Cc: Mikhail Ilyin <m.ilin@samsung.com>
Subject: [Qemu-devel] [PULL v3 01/22] linux-user: /proc/self/maps content
Date: Fri, 22 Aug 2014 16:24:19 +0300 [thread overview]
Message-ID: <d67f4aaae8379b44b3b51ff07df75f693012983c.1408712881.git.riku.voipio@linaro.org> (raw)
In-Reply-To: <cover.1408712881.git.riku.voipio@linaro.org>
From: Mikhail Ilyin <m.ilin@samsung.com>
Build /proc/self/maps doing a match against guest memory translation table.
Output only that map records which are valid for guest memory layout.
Signed-off-by: Mikhail Ilyin <m.ilin@samsung.com>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
---
include/exec/cpu-all.h | 2 ++
linux-user/syscall.c | 25 ++++++++++---------------
2 files changed, 12 insertions(+), 15 deletions(-)
diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h
index f91581f..f9d132f 100644
--- a/include/exec/cpu-all.h
+++ b/include/exec/cpu-all.h
@@ -198,6 +198,8 @@ extern unsigned long reserved_va;
#define RESERVED_VA 0ul
#endif
+#define GUEST_ADDR_MAX (RESERVED_VA ? RESERVED_VA : \
+ (1ul << TARGET_VIRT_ADDR_SPACE_BITS) - 1)
#endif
/* page related stuff */
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index a50229d..c8c2b4c 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -5092,10 +5092,8 @@ static int open_self_cmdline(void *cpu_env, int fd)
static int open_self_maps(void *cpu_env, int fd)
{
-#if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32)
CPUState *cpu = ENV_GET_CPU((CPUArchState *)cpu_env);
TaskState *ts = cpu->opaque;
-#endif
FILE *fp;
char *line = NULL;
size_t len = 0;
@@ -5118,13 +5116,18 @@ static int open_self_maps(void *cpu_env, int fd)
if ((fields < 10) || (fields > 11)) {
continue;
}
- if (!strncmp(path, "[stack]", 7)) {
- continue;
- }
- if (h2g_valid(min) && h2g_valid(max)) {
+ if (h2g_valid(min)) {
+ int flags = page_get_flags(h2g(min));
+ max = h2g_valid(max - 1) ? max : (uintptr_t)g2h(GUEST_ADDR_MAX);
+ if (page_check_range(h2g(min), max - min, flags) == -1) {
+ continue;
+ }
+ if (h2g(min) == ts->info->stack_limit) {
+ pstrcpy(path, sizeof(path), " [stack]");
+ }
dprintf(fd, TARGET_ABI_FMT_lx "-" TARGET_ABI_FMT_lx
" %c%c%c%c %08" PRIx64 " %02x:%02x %d %s%s\n",
- h2g(min), h2g(max), flag_r, flag_w,
+ h2g(min), h2g(max - 1) + 1, flag_r, flag_w,
flag_x, flag_p, offset, dev_maj, dev_min, inode,
path[0] ? " " : "", path);
}
@@ -5133,14 +5136,6 @@ static int open_self_maps(void *cpu_env, int fd)
free(line);
fclose(fp);
-#if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32)
- dprintf(fd, "%08llx-%08llx rw-p %08llx 00:00 0 [stack]\n",
- (unsigned long long)ts->info->stack_limit,
- (unsigned long long)(ts->info->start_stack +
- (TARGET_PAGE_SIZE - 1)) & TARGET_PAGE_MASK,
- (unsigned long long)0);
-#endif
-
return 0;
}
--
2.0.1
next prev parent reply other threads:[~2014-08-22 13:24 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-22 13:24 [Qemu-devel] [PULL v3 00/22] Linux-user updates riku.voipio
2014-08-22 13:24 ` riku.voipio [this message]
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 02/22] linux-user: redirect openat calls riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 03/22] linux-user: Fix syscall instruction usermode emulation on X86_64 riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 04/22] linux-user: Fix conversion of sigevent argument to timer_create riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 05/22] linux-user: fix readlink handling with magic exe symlink riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 06/22] linux-user: support timerfd_{create, gettime, settime} syscalls riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 07/22] linux-user: support ioprio_{get, set} syscalls riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 08/22] linux-user: add setns and unshare riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 09/22] linux-user: PPC64 semid_ds Doesnt Include _unused1 and _unused2 riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 10/22] linux-user: Dereference Pointer Argument to ipc/semctl Sys Call riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 11/22] linux-user: Properly Handle semun Structure In Cross-Endian Situations riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 12/22] linux-user: Make ipc syscall's third argument an abi_long riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 13/22] linux-user: Conditionally Pass Attribute Pointer to mq_open() riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 14/22] linux-user: Detect Negative Message Sizes in msgsnd System Call riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 15/22] linux-user: Handle NULL sched_param argument to sched_* riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 16/22] linux-user: Detect fault in sched_rr_get_interval riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 17/22] linux-user: Move get_ppc64_abi riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 18/22] linux-user: Minimum Sig Handler Stack Size for PPC64 ELF V2 riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 19/22] linux-user: clock_nanosleep errno Handling on PPC riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 20/22] linux-user: Support target-to-host translation of mlockall argument riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 21/22] linux-user: writev Partial Writes riku.voipio
2014-08-22 13:24 ` [Qemu-devel] [PULL v3 22/22] linux-user: check return value of malloc() riku.voipio
2014-08-22 15:12 ` [Qemu-devel] [PULL v3 00/22] Linux-user updates Peter Maydell
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=d67f4aaae8379b44b3b51ff07df75f693012983c.1408712881.git.riku.voipio@linaro.org \
--to=riku.voipio@linaro.org \
--cc=m.ilin@samsung.com \
--cc=peter.maydell@linaro.org \
--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).