]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tests: add check_invalid_maps to test-mmap
authorAlex Bennée <alex.bennee@linaro.org>
Mon, 30 Jul 2018 13:43:21 +0000 (14:43 +0100)
committerLaurent Vivier <laurent@vivier.eu>
Tue, 31 Jul 2018 07:57:25 +0000 (09:57 +0200)
This adds a test to make sure we fail properly for a 0 length mmap.
There are most likely other failure conditions we should also check.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Cc: umarcor <1783362@bugs.launchpad.net>
Message-Id: <20180730134321.19898-3-alex.bennee@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
tests/tcg/multiarch/test-mmap.c

index 5c0afe6e49c852c79adc33c90b4731bb62cd82df..11d0e777b10bd50a922d6b74b243729cb70372a4 100644 (file)
@@ -27,7 +27,7 @@
 #include <stdint.h>
 #include <string.h>
 #include <unistd.h>
-
+#include <errno.h>
 #include <sys/mman.h>
 
 #define D(x)
@@ -435,6 +435,25 @@ void checked_write(int fd, const void *buf, size_t count)
     fail_unless(rc == count);
 }
 
+void check_invalid_mmaps(void)
+{
+    unsigned char *addr;
+
+    /* Attempt to map a zero length page.  */
+    addr = mmap(NULL, 0, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
+    fprintf(stdout, "%s addr=%p", __func__, (void *)addr);
+    fail_unless(addr == MAP_FAILED);
+    fail_unless(errno == EINVAL);
+
+    /* Attempt to map a over length page.  */
+    addr = mmap(NULL, -4, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
+    fprintf(stdout, "%s addr=%p", __func__, (void *)addr);
+    fail_unless(addr == MAP_FAILED);
+    fail_unless(errno == ENOMEM);
+
+    fprintf(stdout, " passed\n");
+}
+
 int main(int argc, char **argv)
 {
        char tempname[] = "/tmp/.cmmapXXXXXX";
@@ -476,6 +495,7 @@ int main(int argc, char **argv)
        check_file_fixed_mmaps();
        check_file_fixed_eof_mmaps();
        check_file_unfixed_eof_mmaps();
+       check_invalid_mmaps();
 
        /* Fails at the moment.  */
        /* check_aligned_anonymous_fixed_mmaps_collide_with_host(); */