blob: 60e900b87160f6deae6a1fa3b8ee415c5f51bd7a [file] [log] [blame]
Filipe Cabecinhas74ad3112017-03-01 18:52:11 +00001// RUN: %clangxx_asan %s -o %t
2// RUN: not %run %t 0 2>&1 | FileCheck %s
3// RUN: not %run %t n 2>&1 | FileCheck %s -check-prefix=CHECK -check-prefix=NON_EXEC
4
Kamil Rytarowskid92f3982017-08-30 23:02:36 +00005// Not every OS lists every memory region in MemoryMappingLayout.
Vlad Tsyrklevichf90ad5b2018-07-10 19:34:46 +00006// This is limited to x86_64 because some architectures (e.g. the s390 before
7// the z14) don't support NX mappings and others like PowerPC use function
8// descriptors.
9// REQUIRES: x86-target-arch && (linux || freebsd || netbsd)
Ulrich Weigandf4556f62018-07-10 16:55:27 +000010
Filipe Cabecinhas74ad3112017-03-01 18:52:11 +000011#include <assert.h>
12
13typedef void void_f();
14int main(int argc, char **argv) {
15 char *array = new char[42];
16 void_f *func;
17 assert(argc > 1);
18 if (argv[1][0] == '0') {
19 func = (void_f *)0x04;
20 } else {
21 assert(argv[1][0] == 'n');
22 func = (void_f *)array;
23 }
24
25 func();
Filipe Cabecinhas74ad3112017-03-01 18:52:11 +000026 // CHECK: DEADLYSIGNAL
27 // CHECK: {{AddressSanitizer: (SEGV|access-violation).*(address|pc) }}
28 // NON_EXEC: PC is at a non-executable region. Maybe a wild jump?
29 return 0;
30}