]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/asan/asan_internal.h
Import compiler-rt release_34 branch r197381.
[FreeBSD/FreeBSD.git] / lib / asan / asan_internal.h
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.
11 //
12 // ASan-private header which defines various general utilities.
13 //===----------------------------------------------------------------------===//
14 #ifndef ASAN_INTERNAL_H
15 #define ASAN_INTERNAL_H
16
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"
23
24 #define ASAN_DEFAULT_FAILURE_EXITCODE 1
25
26 #if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
27 # error "The AddressSanitizer run-time should not be"
28         " instrumented by AddressSanitizer"
29 #endif
30
31 // Build-time configuration options.
32
33 // If set, asan will install its own SEGV signal handler.
34 #ifndef ASAN_NEEDS_SEGV
35 # if SANITIZER_ANDROID == 1
36 #  define ASAN_NEEDS_SEGV 0
37 # else
38 #  define ASAN_NEEDS_SEGV 1
39 # endif
40 #endif
41
42 // If set, asan will intercept C++ exception api call(s).
43 #ifndef ASAN_HAS_EXCEPTIONS
44 # define ASAN_HAS_EXCEPTIONS 1
45 #endif
46
47 // If set, asan uses the values of SHADOW_SCALE and SHADOW_OFFSET
48 // provided by the instrumented objects. Otherwise constants are used.
49 #ifndef ASAN_FLEXIBLE_MAPPING_AND_OFFSET
50 # define ASAN_FLEXIBLE_MAPPING_AND_OFFSET 0
51 #endif
52
53 // If set, values like allocator chunk size, as well as defaults for some flags
54 // will be changed towards less memory overhead.
55 #ifndef ASAN_LOW_MEMORY
56 #if SANITIZER_WORDSIZE == 32
57 #  define ASAN_LOW_MEMORY 1
58 #else
59 #  define ASAN_LOW_MEMORY 0
60 # endif
61 #endif
62
63 #ifndef ASAN_USE_PREINIT_ARRAY
64 # define ASAN_USE_PREINIT_ARRAY (SANITIZER_LINUX && !SANITIZER_ANDROID)
65 #endif
66
67 // All internal functions in asan reside inside the __asan namespace
68 // to avoid namespace collisions with the user programs.
69 // Seperate namespace also makes it simpler to distinguish the asan run-time
70 // functions from the instrumented user code in a profile.
71 namespace __asan {
72
73 class AsanThread;
74 using __sanitizer::StackTrace;
75
76 // asan_rtl.cc
77 void NORETURN ShowStatsAndAbort();
78
79 void ReplaceOperatorsNewAndDelete();
80 // asan_malloc_linux.cc / asan_malloc_mac.cc
81 void ReplaceSystemMalloc();
82
83 // asan_linux.cc / asan_mac.cc / asan_win.cc
84 void *AsanDoesNotSupportStaticLinkage();
85
86 void GetPcSpBp(void *context, uptr *pc, uptr *sp, uptr *bp);
87
88 void MaybeReexec();
89 bool AsanInterceptsSignal(int signum);
90 void SetAlternateSignalStack();
91 void UnsetAlternateSignalStack();
92 void InstallSignalHandlers();
93 void ReadContextStack(void *context, uptr *stack, uptr *ssize);
94 void AsanPlatformThreadInit();
95 void StopInitOrderChecking();
96
97 // Wrapper for TLS/TSD.
98 void AsanTSDInit(void (*destructor)(void *tsd));
99 void *AsanTSDGet();
100 void AsanTSDSet(void *tsd);
101 void PlatformTSDDtor(void *tsd);
102
103 void AppendToErrorMessageBuffer(const char *buffer);
104
105 // Platfrom-specific options.
106 #if SANITIZER_MAC
107 bool PlatformHasDifferentMemcpyAndMemmove();
108 # define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE \
109     (PlatformHasDifferentMemcpyAndMemmove())
110 #else
111 # define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE true
112 #endif  // SANITIZER_MAC
113
114 // Add convenient macro for interface functions that may be represented as
115 // weak hooks.
116 #define ASAN_MALLOC_HOOK(ptr, size) \
117   if (&__asan_malloc_hook) __asan_malloc_hook(ptr, size)
118 #define ASAN_FREE_HOOK(ptr) \
119   if (&__asan_free_hook) __asan_free_hook(ptr)
120 #define ASAN_ON_ERROR() \
121   if (&__asan_on_error) __asan_on_error()
122
123 extern int asan_inited;
124 // Used to avoid infinite recursion in __asan_init().
125 extern bool asan_init_is_running;
126 extern void (*death_callback)(void);
127
128 // These magic values are written to shadow for better error reporting.
129 const int kAsanHeapLeftRedzoneMagic = 0xfa;
130 const int kAsanHeapRightRedzoneMagic = 0xfb;
131 const int kAsanHeapFreeMagic = 0xfd;
132 const int kAsanStackLeftRedzoneMagic = 0xf1;
133 const int kAsanStackMidRedzoneMagic = 0xf2;
134 const int kAsanStackRightRedzoneMagic = 0xf3;
135 const int kAsanStackPartialRedzoneMagic = 0xf4;
136 const int kAsanStackAfterReturnMagic = 0xf5;
137 const int kAsanInitializationOrderMagic = 0xf6;
138 const int kAsanUserPoisonedMemoryMagic = 0xf7;
139 const int kAsanStackUseAfterScopeMagic = 0xf8;
140 const int kAsanGlobalRedzoneMagic = 0xf9;
141 const int kAsanInternalHeapMagic = 0xfe;
142
143 static const uptr kCurrentStackFrameMagic = 0x41B58AB3;
144 static const uptr kRetiredStackFrameMagic = 0x45E0360E;
145
146 }  // namespace __asan
147
148 #endif  // ASAN_INTERNAL_H