Files
clang-p2996/compiler-rt/test/asan/TestCases/backtrace_symbols_interceptor.cpp
Thurston Dang d9377c1ded ASan: unbreak Windows build by limiting backtrace* tests to glibc
My newly added backtrace test (https://reviews.llvm.org/D150491)
broke the Windows buildbot (https://lab.llvm.org/buildbot/#/builders/127/builds/48103)
because they do not have execinfo.h.
I expect the same will happen with the backtrace_symbols test (https://reviews.llvm.org/D150498) as well.

This patch does a quick fix by restricting the test scope to glibc-2.27.
(A tricker fix would take into account SANITIZER_INTERCEPT_BACKTRACE,
which is defined as (SI_FREEBSD || SI_NETBSD || SI_GLIBC || SI_SOLARIS))
2023-05-13 05:56:28 +00:00

41 lines
948 B
C++

// RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
// Windows does not have execinfo.h. For now, be conservative and
// restrict the test to glibc.
// REQUIRES: glibc-2.27
// Test the backtrace_symbols() interceptor.
#include <assert.h>
#include <execinfo.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#define MAX_BT 100
int main() {
void **buffer = (void **)malloc(sizeof(void *) * MAX_BT);
assert(buffer != NULL);
int numEntries = backtrace(buffer, MAX_BT);
printf("backtrace returned %d entries\n", numEntries);
free(buffer);
// Deliberate use-after-free of 'buffer'. We expect ASan to
// catch this, without triggering internal sanitizer errors.
char **strings = backtrace_symbols(buffer, numEntries);
assert(strings != NULL);
for (int i = 0; i < numEntries; i++) {
printf("%s\n", strings[i]);
}
free(strings);
// CHECK: use-after-free
// CHECK: SUMMARY
return 0;
}