summaryrefslogtreecommitdiff
path: root/lib/scudo/scudo_tls_linux.inc
blob: 242ee3329ea868006dfe64b64dfa5a6ddf8feab1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//===-- scudo_tls_linux.inc -------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
///
/// Scudo thread local structure fastpath functions implementation for platforms
/// supporting thread_local.
///
//===----------------------------------------------------------------------===//

#ifndef SCUDO_TLS_LINUX_H_
#define SCUDO_TLS_LINUX_H_

#ifndef SCUDO_TLS_H_
# error "This file must be included inside scudo_tls.h."
#endif  // SCUDO_TLS_H_

#if SANITIZER_LINUX && !SANITIZER_ANDROID

enum ThreadState : u8 {
  ThreadNotInitialized = 0,
  ThreadInitialized,
  ThreadTornDown,
};
__attribute__((tls_model("initial-exec")))
extern THREADLOCAL ThreadState ScudoThreadState;
__attribute__((tls_model("initial-exec")))
extern THREADLOCAL ScudoThreadContext ThreadLocalContext;

ALWAYS_INLINE void initThreadMaybe() {
  if (LIKELY(ScudoThreadState != ThreadNotInitialized))
    return;
  initThread();
}

ALWAYS_INLINE ScudoThreadContext *getThreadContextAndLock() {
  if (UNLIKELY(ScudoThreadState == ThreadTornDown))
    return nullptr;
  return &ThreadLocalContext;
}

#endif  // SANITIZER_LINUX && !SANITIZER_ANDROID

#endif  // SCUDO_TLS_LINUX_H_