linux-user/mmap.c: Always zero MAP_ANONYMOUS memory in mmap_frag()
authorChen Gang <chengang@emindsoft.com.cn>
Wed, 30 Dec 2015 01:10:54 +0000 (09:10 +0800)
committerRiku Voipio <riku.voipio@linaro.org>
Fri, 8 Jan 2016 13:26:16 +0000 (15:26 +0200)
When mapping MAP_ANONYMOUS memory fragments, still need notice about to
set it zero, or it will cause issues.

Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
linux-user/mmap.c

index 7b459d5100c52a9e2d56c2d8bd5f239ba451977e..c6c478e552da8a38bfb3313cb2e6350d519b9156 100644 (file)
@@ -186,10 +186,12 @@ static int mmap_frag(abi_ulong real_start,
         if (prot_new != (prot1 | PROT_WRITE))
             mprotect(host_start, qemu_host_page_size, prot_new);
     } else {
-        /* just update the protection */
         if (prot_new != prot1) {
             mprotect(host_start, qemu_host_page_size, prot_new);
         }
+        if (prot_new & PROT_WRITE) {
+            memset(g2h(start), 0, end - start);
+        }
     }
     return 0;
 }