[CMake] Rename add_compiler_rt_static_runtime to add_compiler_rt_runtime.
[blocksruntime.git] / lib / asan / asan_internal.h
blob4dbcae193b09c2e62cc78ce52981309e5ac4231a
1 //===-- asan_internal.h -----------------------------------------*- 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 // This file is a part of AddressSanitizer, an address sanity checker.
12 // ASan-private header which defines various general utilities.
13 //===----------------------------------------------------------------------===//
14 #ifndef ASAN_INTERNAL_H
15 #define ASAN_INTERNAL_H
17 #include "asan_flags.h"
18 #include "asan_interface_internal.h"
19 #include "sanitizer_common/sanitizer_common.h"
20 #include "sanitizer_common/sanitizer_internal_defs.h"
21 #include "sanitizer_common/sanitizer_stacktrace.h"
22 #include "sanitizer_common/sanitizer_libc.h"
24 #define ASAN_DEFAULT_FAILURE_EXITCODE 1
26 #if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
27 # error "The AddressSanitizer run-time should not be"
28 " instrumented by AddressSanitizer"
29 #endif
31 // Build-time configuration options.
33 // If set, asan will intercept C++ exception api call(s).
34 #ifndef ASAN_HAS_EXCEPTIONS
35 # define ASAN_HAS_EXCEPTIONS 1
36 #endif
38 // If set, values like allocator chunk size, as well as defaults for some flags
39 // will be changed towards less memory overhead.
40 #ifndef ASAN_LOW_MEMORY
41 #if SANITIZER_WORDSIZE == 32
42 # define ASAN_LOW_MEMORY 1
43 #else
44 # define ASAN_LOW_MEMORY 0
45 # endif
46 #endif
48 #ifndef ASAN_USE_PREINIT_ARRAY
49 # define ASAN_USE_PREINIT_ARRAY (SANITIZER_LINUX && !SANITIZER_ANDROID)
50 #endif
52 // All internal functions in asan reside inside the __asan namespace
53 // to avoid namespace collisions with the user programs.
54 // Seperate namespace also makes it simpler to distinguish the asan run-time
55 // functions from the instrumented user code in a profile.
56 namespace __asan {
58 class AsanThread;
59 using __sanitizer::StackTrace;
61 void AsanInitFromRtl();
63 // asan_rtl.cc
64 void NORETURN ShowStatsAndAbort();
66 void ReplaceOperatorsNewAndDelete();
67 // asan_malloc_linux.cc / asan_malloc_mac.cc
68 void ReplaceSystemMalloc();
70 // asan_linux.cc / asan_mac.cc / asan_win.cc
71 void *AsanDoesNotSupportStaticLinkage();
73 void GetPcSpBp(void *context, uptr *pc, uptr *sp, uptr *bp);
74 void AsanOnSIGSEGV(int, void *siginfo, void *context);
76 void MaybeReexec();
77 bool AsanInterceptsSignal(int signum);
78 void ReadContextStack(void *context, uptr *stack, uptr *ssize);
79 void AsanPlatformThreadInit();
80 void StopInitOrderChecking();
82 // Wrapper for TLS/TSD.
83 void AsanTSDInit(void (*destructor)(void *tsd));
84 void *AsanTSDGet();
85 void AsanTSDSet(void *tsd);
86 void PlatformTSDDtor(void *tsd);
88 void AppendToErrorMessageBuffer(const char *buffer);
90 void ParseExtraActivationFlags();
92 // Platfrom-specific options.
93 #if SANITIZER_MAC
94 bool PlatformHasDifferentMemcpyAndMemmove();
95 # define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE \
96 (PlatformHasDifferentMemcpyAndMemmove())
97 #else
98 # define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE true
99 #endif // SANITIZER_MAC
101 // Add convenient macro for interface functions that may be represented as
102 // weak hooks.
103 #define ASAN_MALLOC_HOOK(ptr, size) \
104 if (&__asan_malloc_hook) __asan_malloc_hook(ptr, size)
105 #define ASAN_FREE_HOOK(ptr) \
106 if (&__asan_free_hook) __asan_free_hook(ptr)
107 #define ASAN_ON_ERROR() \
108 if (&__asan_on_error) __asan_on_error()
110 extern int asan_inited;
111 // Used to avoid infinite recursion in __asan_init().
112 extern bool asan_init_is_running;
113 extern void (*death_callback)(void);
115 // These magic values are written to shadow for better error reporting.
116 const int kAsanHeapLeftRedzoneMagic = 0xfa;
117 const int kAsanHeapRightRedzoneMagic = 0xfb;
118 const int kAsanHeapFreeMagic = 0xfd;
119 const int kAsanStackLeftRedzoneMagic = 0xf1;
120 const int kAsanStackMidRedzoneMagic = 0xf2;
121 const int kAsanStackRightRedzoneMagic = 0xf3;
122 const int kAsanStackPartialRedzoneMagic = 0xf4;
123 const int kAsanStackAfterReturnMagic = 0xf5;
124 const int kAsanInitializationOrderMagic = 0xf6;
125 const int kAsanUserPoisonedMemoryMagic = 0xf7;
126 const int kAsanContiguousContainerOOBMagic = 0xfc;
127 const int kAsanStackUseAfterScopeMagic = 0xf8;
128 const int kAsanGlobalRedzoneMagic = 0xf9;
129 const int kAsanInternalHeapMagic = 0xfe;
131 static const uptr kCurrentStackFrameMagic = 0x41B58AB3;
132 static const uptr kRetiredStackFrameMagic = 0x45E0360E;
134 } // namespace __asan
136 #endif // ASAN_INTERNAL_H