]> Git Repo - qemu.git/commitdiff
linux-user: more debug for init_guest_space
authorAlex Bennée <[email protected]>
Fri, 3 Apr 2020 19:11:42 +0000 (20:11 +0100)
committerAlex Bennée <[email protected]>
Tue, 7 Apr 2020 15:19:49 +0000 (16:19 +0100)
Searching for memory space can cause problems so lets extend the
CPU_LOG_PAGE output so you can watch init_guest_space fail to
allocate memory. A more involved fix is actually required to make this
function play nicely with the large guard pages the sanitiser likes to
use.

Signed-off-by: Alex Bennée <[email protected]>
Reviewed-by: Laurent Vivier <[email protected]>
Message-Id: <20200403191150[email protected]>

linux-user/elfload.c

index 8198be04460435bad35e69b1f99f01150751bc79..619c054cc48f9d2b3a76a68f49884e690378c660 100644 (file)
@@ -2172,6 +2172,8 @@ unsigned long init_guest_space(unsigned long host_start,
 
         /* Check to see if the address is valid.  */
         if (host_start && real_start != current_start) {
+            qemu_log_mask(CPU_LOG_PAGE, "invalid %lx && %lx != %lx\n",
+                          host_start, real_start, current_start);
             goto try_again;
         }
 
@@ -2240,7 +2242,11 @@ unsigned long init_guest_space(unsigned long host_start,
          * probably a bad strategy if not, which means we got here
          * because of trouble with ARM commpage setup.
          */
-        munmap((void *)real_start, real_size);
+        if (munmap((void *)real_start, real_size) != 0) {
+            error_report("%s: failed to unmap %lx:%lx (%s)", __func__,
+                         real_start, real_size, strerror(errno));
+            abort();
+        }
         current_start += align;
         if (host_start == current_start) {
             /* Theoretically possible if host doesn't have any suitably
This page took 0.029927 seconds and 4 git commands to generate.