From a04538aa72092bab9d255fe0c2e3b08dfad1e4e2 Mon Sep 17 00:00:00 2001 From: Alastair Reid Date: Sat, 1 Aug 2020 14:13:47 +0000 Subject: Definition of __cxa_thread_atexit_impl for the KLEE libc. This is a thread-local version of __cxa_atexit (but, in the absence of threads, it is sufficient to just call __cxa_atexit). The test is based on the existing test for atexit in test/Runtime/Uclibc/2008-03-04-libc-atexit-uses-dso-handle.c The motivation for adding this function is to support the Rust standard library that calls __cxa_thread_atexit_impl. This function is usually a weak symbol but, in KLEE, this behaves like a call to an unknown function and chaos ensues. Worse, it happens just as the program is cleanly shutting itself down, so programs that are cleanly exiting crash with the wrong message. --- test/Runtime/klee-libc/cxa_thread_atexit_impl.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/Runtime/klee-libc/cxa_thread_atexit_impl.c (limited to 'test') diff --git a/test/Runtime/klee-libc/cxa_thread_atexit_impl.c b/test/Runtime/klee-libc/cxa_thread_atexit_impl.c new file mode 100644 index 00000000..18dc7e08 --- /dev/null +++ b/test/Runtime/klee-libc/cxa_thread_atexit_impl.c @@ -0,0 +1,20 @@ +// RUN: %clang %s -emit-llvm %O0opt -c -o %t1.bc +// RUN: rm -rf %t.klee-out +// RUN: %klee --output-dir=%t.klee-out --exit-on-error --libc=klee %t1.bc + +// just make sure __cxa_thread_atexit_impl works ok + +#include + +extern int __cxa_thread_atexit_impl(void (*)(void*), void*, void *); + +static int x; // a global whose address we can take + +void boo(void *h) { + assert(h == (void*)&x); +} + +int main() { + __cxa_thread_atexit_impl(boo, (void*)&x, (void*)0); + return 0; +} -- cgit 1.4.1