Files
clang-p2996/compiler-rt/test/asan/TestCases/Linux/unpoison_tls.cpp
Mitch Phillips 62914bad46 [ASan] Fix TLS teardown.
TLS teardown is currently broken, as we unpoison the shadow a little bit
and to the right of the TLS section, rather than the full TLS section
itself. This currently breaks at -O0, and breaks with some upcoming
globals code that I have.

Reviewed By: vitalybuka

Differential Revision: https://reviews.llvm.org/D120080
2022-02-17 13:34:36 -08:00

37 lines
812 B
C++

// Test that TLS is unpoisoned on thread death.
// REQUIRES: x86-target-arch && !android
// RUN: %clangxx_asan -O0 %s -pthread -o %t && %run %t 2>&1
// RUN: %clangxx_asan -O1 %s -pthread -o %t && %run %t 2>&1
#include <assert.h>
#include <pthread.h>
#include <stdio.h>
#include <sanitizer/asan_interface.h>
__thread int64_t tls_var[2];
volatile int64_t *p_tls_var;
void *first(void *arg) {
ASAN_POISON_MEMORY_REGION(&tls_var, sizeof(tls_var));
p_tls_var = tls_var;
return 0;
}
void *second(void *arg) {
assert(tls_var == p_tls_var);
*p_tls_var = 1;
return 0;
}
int main(int argc, char *argv[]) {
pthread_t p;
assert(0 == pthread_create(&p, 0, first, 0));
assert(0 == pthread_join(p, 0));
assert(0 == pthread_create(&p, 0, second, 0));
assert(0 == pthread_join(p, 0));
return 0;
}