2 // http://code.google.com/p/address-sanitizer/issues/detail?id=19
4 // 1. application dlopens foo.so
5 // 2. asan registers all globals from foo.so
6 // 3. application dlcloses foo.so
7 // 4. application mmaps some memory to the location where foo.so was before
8 // 5. application starts using this mmaped memory, but asan still thinks there
12 // This subtle test assumes that after a foo.so is dlclose-d
13 // we can mmap the region of memory that was occupied by the library.
14 // This test works on x86 and Darwin, but not confirmed working anywhere else.
15 // REQUIRES: x86-target-arch || darwin
17 // RUN: %clangxx_asan -O0 -DSHARED_LIB %s -fPIC -shared -o %t-so.so
18 // RUN: %clangxx_asan -O0 %s %libdl -o %t && %run %t 2>&1 | FileCheck %s
19 // RUN: %clangxx_asan -O1 -DSHARED_LIB %s -fPIC -shared -o %t-so.so
20 // RUN: %clangxx_asan -O1 %s %libdl -o %t && %run %t 2>&1 | FileCheck %s
21 // RUN: %clangxx_asan -O2 -DSHARED_LIB %s -fPIC -shared -o %t-so.so
22 // RUN: %clangxx_asan -O2 %s %libdl -o %t && %run %t 2>&1 | FileCheck %s
23 // RUN: %clangxx_asan -O3 -DSHARED_LIB %s -fPIC -shared -o %t-so.so
24 // RUN: %clangxx_asan -O3 %s %libdl -o %t && %run %t 2>&1 | FileCheck %s
28 #if !defined(SHARED_LIB)
38 #if defined(__FreeBSD__)
39 // The MAP_NORESERVE define has been removed in FreeBSD 11.x, and even before
40 // that, it was never implemented. So just define it to zero.
42 #define MAP_NORESERVE 0
47 typedef int *(fun_t
)();
49 int main(int argc
, char *argv
[]) {
50 string path
= string(argv
[0]) + "-so.so";
51 size_t PageSize
= sysconf(_SC_PAGESIZE
);
52 printf("opening %s ... \n", path
.c_str());
53 void *lib
= dlopen(path
.c_str(), RTLD_NOW
);
55 printf("error in dlopen(): %s\n", dlerror());
58 fun_t
*get
= (fun_t
*)dlsym(lib
, "get_address_of_static_var");
60 printf("failed dlsym\n");
64 assert(((size_t)addr
% 32) == 0); // should be 32-byte aligned.
65 printf("addr: %p\n", addr
);
66 addr
[0] = 1; // make sure we can write there.
68 // Now dlclose the shared library.
69 printf("attempting to dlclose\n");
71 printf("failed to dlclose\n");
74 // Now, the page where 'addr' is unmapped. Map it.
75 size_t page_beg
= ((size_t)addr
) & ~(PageSize
- 1);
76 void *res
= mmap((void*)(page_beg
), PageSize
,
77 PROT_READ
| PROT_WRITE
,
78 MAP_PRIVATE
| MAP_ANON
| MAP_FIXED
| MAP_NORESERVE
, -1, 0);
79 if (res
== (char*)-1L) {
80 printf("failed to mmap\n");
83 addr
[1] = 2; // BOOM (if the bug is not fixed).
92 static int static_var
;
96 int *get_address_of_static_var() {
100 __attribute__((constructor
))
102 printf("%s: I am being dlopened\n", __FILE__
);
104 __attribute__((destructor
))
106 printf("%s: I am being dlclosed\n", __FILE__
);