summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Darwin/malloc_zone-protected.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/TestCases/Darwin/malloc_zone-protected.cc')
-rw-r--r--test/asan/TestCases/Darwin/malloc_zone-protected.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/asan/TestCases/Darwin/malloc_zone-protected.cc b/test/asan/TestCases/Darwin/malloc_zone-protected.cc
new file mode 100644
index 0000000000000..362b60e20b550
--- /dev/null
+++ b/test/asan/TestCases/Darwin/malloc_zone-protected.cc
@@ -0,0 +1,20 @@
+// Make sure the zones created by malloc_create_zone() are write-protected.
+#include <malloc/malloc.h>
+#include <stdio.h>
+
+// RUN: %clangxx_asan %s -o %t
+// RUN: not %run %t 2>&1 | FileCheck %s
+
+
+void *pwn(malloc_zone_t *unused_zone, size_t unused_size) {
+ printf("PWNED\n");
+ return NULL;
+}
+
+int main() {
+ malloc_zone_t *zone = malloc_create_zone(0, 0);
+ zone->malloc = pwn;
+ void *v = malloc_zone_malloc(zone, 1);
+ // CHECK-NOT: PWNED
+ return 0;
+}