blob: 1e38233f339c46b32579887a465fa7fb5c05b00c [file] [log] [blame]
Kostya Kortchinsky36b34342017-04-27 20:21:16 +00001//===-- scudo_tls_linux.cpp -------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9///
10/// Scudo thread local structure implementation for platforms supporting
11/// thread_local.
12///
13//===----------------------------------------------------------------------===//
14
15#include "sanitizer_common/sanitizer_platform.h"
16
Kostya Kortchinskyee0695762017-05-05 21:38:22 +000017#if SANITIZER_LINUX && !SANITIZER_ANDROID
Kostya Kortchinsky36b34342017-04-27 20:21:16 +000018
19#include "scudo_tls.h"
20
Kostya Kortchinsky36b34342017-04-27 20:21:16 +000021#include <pthread.h>
22
23namespace __scudo {
24
25static pthread_once_t GlobalInitialized = PTHREAD_ONCE_INIT;
26static pthread_key_t PThreadKey;
27
Kostya Kortchinskyee0695762017-05-05 21:38:22 +000028__attribute__((tls_model("initial-exec")))
29THREADLOCAL ThreadState ScudoThreadState = ThreadNotInitialized;
30__attribute__((tls_model("initial-exec")))
31THREADLOCAL ScudoThreadContext ThreadLocalContext;
Kostya Kortchinsky36b34342017-04-27 20:21:16 +000032
33static void teardownThread(void *Ptr) {
Kostya Kortchinskydb18e4d2017-05-26 15:39:22 +000034 uptr I = reinterpret_cast<uptr>(Ptr);
Kostya Kortchinsky36b34342017-04-27 20:21:16 +000035 // The glibc POSIX thread-local-storage deallocation routine calls user
36 // provided destructors in a loop of PTHREAD_DESTRUCTOR_ITERATIONS.
37 // We want to be called last since other destructors might call free and the
38 // like, so we wait until PTHREAD_DESTRUCTOR_ITERATIONS before draining the
39 // quarantine and swallowing the cache.
Kostya Kortchinskydb18e4d2017-05-26 15:39:22 +000040 if (I > 1) {
41 // If pthread_setspecific fails, we will go ahead with the teardown.
42 if (LIKELY(pthread_setspecific(PThreadKey,
43 reinterpret_cast<void *>(I - 1)) == 0))
44 return;
Kostya Kortchinsky36b34342017-04-27 20:21:16 +000045 }
46 ThreadLocalContext.commitBack();
47 ScudoThreadState = ThreadTornDown;
48}
49
50
51static void initOnce() {
52 CHECK_EQ(pthread_key_create(&PThreadKey, teardownThread), 0);
53 initScudo();
54}
55
56void initThread() {
Kostya Kortchinskydb18e4d2017-05-26 15:39:22 +000057 CHECK_EQ(pthread_once(&GlobalInitialized, initOnce), 0);
58 CHECK_EQ(pthread_setspecific(PThreadKey, reinterpret_cast<void *>(
59 GetPthreadDestructorIterations())), 0);
Kostya Kortchinsky36b34342017-04-27 20:21:16 +000060 ThreadLocalContext.init();
61 ScudoThreadState = ThreadInitialized;
62}
63
64} // namespace __scudo
65
Kostya Kortchinskyee0695762017-05-05 21:38:22 +000066#endif // SANITIZER_LINUX && !SANITIZER_ANDROID