blob: 84553945797f19ab6f38176ab9fe3dbb1248105f [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")))
Kostya Kortchinsky39248092017-09-22 15:35:37 +000031THREADLOCAL ScudoTSD TSD;
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 }
Kostya Kortchinsky39248092017-09-22 15:35:37 +000046 TSD.commitBack();
Kostya Kortchinsky36b34342017-04-27 20:21:16 +000047 ScudoThreadState = ThreadTornDown;
48}
49
50
51static void initOnce() {
52 CHECK_EQ(pthread_key_create(&PThreadKey, teardownThread), 0);
53 initScudo();
54}
55
Kostya Kortchinsky040c2112017-09-11 19:59:40 +000056void initThread(bool MinimalInit) {
Kostya Kortchinskydb18e4d2017-05-26 15:39:22 +000057 CHECK_EQ(pthread_once(&GlobalInitialized, initOnce), 0);
Kostya Kortchinsky040c2112017-09-11 19:59:40 +000058 if (UNLIKELY(MinimalInit))
59 return;
Kostya Kortchinskydb18e4d2017-05-26 15:39:22 +000060 CHECK_EQ(pthread_setspecific(PThreadKey, reinterpret_cast<void *>(
61 GetPthreadDestructorIterations())), 0);
Kostya Kortchinsky39248092017-09-22 15:35:37 +000062 TSD.init();
Kostya Kortchinsky36b34342017-04-27 20:21:16 +000063 ScudoThreadState = ThreadInitialized;
64}
65
66} // namespace __scudo
67
Kostya Kortchinskyee0695762017-05-05 21:38:22 +000068#endif // SANITIZER_LINUX && !SANITIZER_ANDROID