blob: 8891e3af48ccde1e804bec64e07d825a723dce3d [file] [log] [blame]
Kostya Serebryany1e172b42011-11-30 01:07:02 +00001//===-- 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
Alexander Potapenko6f045292012-01-27 15:15:04 +000017#if !defined(__linux__) && !defined(__APPLE__) && !defined(_WIN32)
Kostya Serebryanyd6567c52011-12-01 21:40:52 +000018# error "This operating system is not supported by AddressSanitizer"
19#endif
20
Alexey Samsonovb823e3c2012-02-22 14:07:06 +000021#include <stddef.h> // for size_t, uintptr_t, etc.
Alexander Potapenko6f045292012-01-27 15:15:04 +000022
Kostya Serebryany85822082012-01-30 20:55:02 +000023#if defined(_WIN32)
Alexander Potapenko6f045292012-01-27 15:15:04 +000024// There's no <stdint.h> in Visual Studio 9, so we have to define [u]int*_t.
25typedef unsigned __int8 uint8_t;
26typedef unsigned __int16 uint16_t;
27typedef unsigned __int32 uint32_t;
28typedef unsigned __int64 uint64_t;
29typedef __int8 int8_t;
30typedef __int16 int16_t;
31typedef __int32 int32_t;
32typedef __int64 int64_t;
Alexey Samsonovadf2b032012-02-03 08:37:19 +000033
Alexander Potapenko71d3b392012-02-08 14:14:18 +000034extern "C" void* _ReturnAddress(void);
35# pragma intrinsic(_ReturnAddress)
36
Alexey Samsonovadf2b032012-02-03 08:37:19 +000037# define ALIAS(x) // TODO(timurrrr): do we need this on Windows?
38# define ALIGNED(x) __declspec(align(x))
39# define NOINLINE __declspec(noinline)
40
41# define ASAN_INTERFACE_ATTRIBUTE // TODO(timurrrr): do we need this on Win?
42#else // defined(_WIN32)
Kostya Serebryany85822082012-01-30 20:55:02 +000043# include <stdint.h> // for __WORDSIZE
Alexey Samsonovadf2b032012-02-03 08:37:19 +000044
45# define ALIAS(x) __attribute__((alias(x)))
46# define ALIGNED(x) __attribute__((aligned(x)))
47# define NOINLINE __attribute__((noinline))
48
49# define ASAN_INTERFACE_ATTRIBUTE __attribute__((visibility("default")))
50#endif // defined(_WIN32)
Kostya Serebryany1e172b42011-11-30 01:07:02 +000051
Daniel Dunbar46166332011-12-02 01:32:27 +000052// If __WORDSIZE was undefined by the platform, define it in terms of the
Kostya Serebryany669f5432012-01-31 18:13:50 +000053// compiler built-ins __LP64__ and _WIN64.
Daniel Dunbar46166332011-12-02 01:32:27 +000054#ifndef __WORDSIZE
Kostya Serebryany669f5432012-01-31 18:13:50 +000055#if __LP64__ || defined(_WIN64)
Daniel Dunbar46166332011-12-02 01:32:27 +000056#define __WORDSIZE 64
57#else
58#define __WORDSIZE 32
59#endif
60#endif
61
Alexey Samsonove4092f62012-02-22 12:54:04 +000062// Limits for integral types. We have to redefine it in case we don't
63// have stdint.h (like in Visual Studio 9).
64#if __WORDSIZE == 64
65# define __INT64_C(c) c ## L
66# define __UINT64_C(c) c ## UL
67#else
68# define __INT64_C(c) c ## LL
69# define __UINT64_C(c) c ## ULL
70#endif // __WORDSIZE == 64
71# define INT32_MIN (-2147483647-1)
72# define INT32_MAX (2147483647)
73# define UINT32_MAX (4294967295U)
74# define INT64_MIN (-__INT64_C(9223372036854775807)-1)
75# define INT64_MAX (__INT64_C(9223372036854775807))
76# define UINT64_MAX (__UINT64_C(18446744073709551615))
77
Alexey Samsonovb823e3c2012-02-22 14:07:06 +000078#define ASAN_DEFAULT_FAILURE_EXITCODE 1
79
Timur Iskhodzhanov3e81fe42012-02-09 17:20:14 +000080#if defined(__linux__)
81# define ASAN_LINUX 1
82#else
83# define ASAN_LINUX 0
84#endif
85
86#if defined(__APPLE__)
87# define ASAN_MAC 1
88#else
89# define ASAN_MAC 0
90#endif
91
92#if defined(_WIN32)
93# define ASAN_WINDOWS 1
94#else
95# define ASAN_WINDOWS 0
96#endif
97
Alexander Potapenkoc8365232012-01-27 10:52:37 +000098#if !defined(__has_feature)
99#define __has_feature(x) 0
100#endif
101
Kostya Serebryany13ebae62011-12-27 21:57:12 +0000102#if defined(__has_feature) && __has_feature(address_sanitizer)
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000103# error "The AddressSanitizer run-time should not be"
104 " instrumented by AddressSanitizer"
105#endif
106
Kostya Serebryanyc6f22232011-12-08 18:30:42 +0000107// Build-time configuration options.
108
Kostya Serebryanyc6f22232011-12-08 18:30:42 +0000109// If set, asan will install its own SEGV signal handler.
110#ifndef ASAN_NEEDS_SEGV
111# define ASAN_NEEDS_SEGV 1
112#endif
113
114// If set, asan will intercept C++ exception api call(s).
115#ifndef ASAN_HAS_EXCEPTIONS
116# define ASAN_HAS_EXCEPTIONS 1
117#endif
118
119// If set, asan uses the values of SHADOW_SCALE and SHADOW_OFFSET
120// provided by the instrumented objects. Otherwise constants are used.
121#ifndef ASAN_FLEXIBLE_MAPPING_AND_OFFSET
122# define ASAN_FLEXIBLE_MAPPING_AND_OFFSET 0
123#endif
124
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000125// All internal functions in asan reside inside the __asan namespace
126// to avoid namespace collisions with the user programs.
127// Seperate namespace also makes it simpler to distinguish the asan run-time
128// functions from the instrumented user code in a profile.
129namespace __asan {
130
131class AsanThread;
132struct AsanStackTrace;
133
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000134// asan_rtl.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000135void CheckFailed(const char *cond, const char *file, int line);
136void ShowStatsAndAbort();
137
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000138// asan_globals.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000139bool DescribeAddrIfGlobal(uintptr_t addr);
140
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000141// asan_malloc_linux.cc / asan_malloc_mac.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000142void ReplaceSystemMalloc();
143
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000144void OutOfMemoryMessageAndDie(const char *mem_type, size_t size);
145
Alexander Potapenkof73a6a32012-02-13 17:09:40 +0000146// asan_linux.cc / asan_mac.cc / asan_win.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000147void *AsanDoesNotSupportStaticLinkage();
Alexander Potapenkof73a6a32012-02-13 17:09:40 +0000148bool AsanShadowRangeIsAvailable();
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000149int AsanOpenReadonly(const char* filename);
Alexander Potapenko1e316d72012-01-13 12:59:48 +0000150const char *AsanGetEnv(const char *name);
Alexander Potapenko99d17eb2012-02-22 09:11:55 +0000151void AsanDumpProcessMap();
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000152
Kostya Serebryanya874fe52011-12-28 23:28:54 +0000153void *AsanMmapFixedNoReserve(uintptr_t fixed_addr, size_t size);
154void *AsanMmapFixedReserve(uintptr_t fixed_addr, size_t size);
155void *AsanMprotect(uintptr_t fixed_addr, size_t size);
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000156void *AsanMmapSomewhereOrDie(size_t size, const char *where);
157void AsanUnmapOrDie(void *ptr, size_t size);
158
Kostya Serebryanyef14ff62012-01-06 02:12:25 +0000159void AsanDisableCoreDumper();
Kostya Serebryany9107c262012-01-06 19:11:09 +0000160void GetPcSpBp(void *context, uintptr_t *pc, uintptr_t *sp, uintptr_t *bp);
Kostya Serebryanyef14ff62012-01-06 02:12:25 +0000161
Kostya Serebryany0ecf5eb2012-01-09 23:11:26 +0000162size_t AsanRead(int fd, void *buf, size_t count);
163size_t AsanWrite(int fd, const void *buf, size_t count);
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000164int AsanClose(int fd);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000165
Kostya Serebryany4803ab92012-01-09 18:53:15 +0000166bool AsanInterceptsSignal(int signum);
Kostya Serebryanya7e760a2012-01-09 19:18:27 +0000167void InstallSignalHandlers();
Kostya Serebryany0ecf5eb2012-01-09 23:11:26 +0000168int GetPid();
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000169uintptr_t GetThreadSelf();
Kostya Serebryanydde7c332012-01-11 02:39:16 +0000170int AtomicInc(int *a);
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000171
172// Wrapper for TLS/TSD.
Kostya Serebryanyf58f9982012-02-07 00:27:15 +0000173void AsanTSDInit(void (*destructor)(void *tsd));
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000174void *AsanTSDGet();
175void AsanTSDSet(void *tsd);
Kostya Serebryany4803ab92012-01-09 18:53:15 +0000176
Kostya Serebryanydf499b42012-01-05 00:44:33 +0000177// Opens the file 'file_name" and reads up to 'max_len' bytes.
178// The resulting buffer is mmaped and stored in '*buff'.
179// The size of the mmaped region is stored in '*buff_size',
Kostya Serebryany0ecf5eb2012-01-09 23:11:26 +0000180// Returns the number of read bytes or 0 if file can not be opened.
181size_t ReadFileToBuffer(const char *file_name, char **buff,
182 size_t *buff_size, size_t max_len);
Kostya Serebryanydf499b42012-01-05 00:44:33 +0000183
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000184// asan_printf.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000185void RawWrite(const char *buffer);
Alexander Potapenkoa0935fa2012-02-08 11:45:09 +0000186int SNPrintf(char *buffer, size_t length, const char *format, ...);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000187void Printf(const char *format, ...);
Kostya Serebryanydf499b42012-01-05 00:44:33 +0000188int SScanf(const char *str, const char *format, ...);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000189void Report(const char *format, ...);
190
Kostya Serebryany2d8b3bd2011-12-02 18:42:04 +0000191// Don't use std::min and std::max, to minimize dependency on libstdc++.
192template<class T> T Min(T a, T b) { return a < b ? a : b; }
193template<class T> T Max(T a, T b) { return a > b ? a : b; }
194
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000195// asan_poisoning.cc
196// Poisons the shadow memory for "size" bytes starting from "addr".
197void PoisonShadow(uintptr_t addr, size_t size, uint8_t value);
198// Poisons the shadow memory for "redzone_size" bytes starting from
199// "addr + size".
200void PoisonShadowPartialRightRedzone(uintptr_t addr,
201 uintptr_t size,
202 uintptr_t redzone_size,
203 uint8_t value);
204
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000205extern size_t FLAG_quarantine_size;
206extern int FLAG_demangle;
207extern bool FLAG_symbolize;
208extern int FLAG_v;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000209extern size_t FLAG_redzone;
210extern int FLAG_debug;
211extern bool FLAG_poison_shadow;
212extern int FLAG_report_globals;
213extern size_t FLAG_malloc_context_size;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000214extern bool FLAG_replace_str;
215extern bool FLAG_replace_intrin;
216extern bool FLAG_replace_cfallocator;
217extern bool FLAG_fast_unwind;
218extern bool FLAG_use_fake_stack;
219extern size_t FLAG_max_malloc_fill_size;
220extern int FLAG_exitcode;
221extern bool FLAG_allow_user_poisoning;
Kostya Serebryanycb00d132012-01-31 00:52:18 +0000222extern int FLAG_sleep_before_dying;
Kostya Serebryany4803ab92012-01-09 18:53:15 +0000223extern bool FLAG_handle_segv;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000224
225extern int asan_inited;
226// Used to avoid infinite recursion in __asan_init().
227extern bool asan_init_is_running;
228
229enum LinkerInitialized { LINKER_INITIALIZED = 0 };
230
Kostya Serebryany0ecf5eb2012-01-09 23:11:26 +0000231void AsanDie();
Kostya Serebryanye1fe0fd2012-02-13 21:24:29 +0000232void SleepForSeconds(int seconds);
233void Exit(int exitcode);
Alexey Samsonovb823e3c2012-02-22 14:07:06 +0000234int Atexit(void (*function)(void));
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000235
236#define CHECK(cond) do { if (!(cond)) { \
237 CheckFailed(#cond, __FILE__, __LINE__); \
238}}while(0)
239
240#define RAW_CHECK_MSG(expr, msg) do { \
241 if (!(expr)) { \
242 RawWrite(msg); \
Kostya Serebryany0ecf5eb2012-01-09 23:11:26 +0000243 AsanDie(); \
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000244 } \
245} while (0)
246
247#define RAW_CHECK(expr) RAW_CHECK_MSG(expr, #expr)
248
249#define UNIMPLEMENTED() CHECK("unimplemented" && 0)
250
251#define ASAN_ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0]))
252
253const size_t kWordSize = __WORDSIZE / 8;
254const size_t kWordSizeInBits = 8 * kWordSize;
255const size_t kPageSizeBits = 12;
256const size_t kPageSize = 1UL << kPageSizeBits;
257
Alexander Potapenko6f045292012-01-27 15:15:04 +0000258#ifndef _WIN32
Timur Iskhodzhanov3e81fe42012-02-09 17:20:14 +0000259const size_t kMmapGranularity = kPageSize;
Kostya Serebryany1c83ae32012-02-07 18:23:54 +0000260# define GET_CALLER_PC() (uintptr_t)__builtin_return_address(0)
261# define GET_CURRENT_FRAME() (uintptr_t)__builtin_frame_address(0)
Alexander Potapenko6f045292012-01-27 15:15:04 +0000262#else
Timur Iskhodzhanov3e81fe42012-02-09 17:20:14 +0000263const size_t kMmapGranularity = 1UL << 16;
Kostya Serebryany1c83ae32012-02-07 18:23:54 +0000264# define GET_CALLER_PC() (uintptr_t)_ReturnAddress()
265// CaptureStackBackTrace doesn't need to know BP on Windows.
266// FIXME: This macro is still used when printing error reports though it's not
267// clear if the BP value is needed in the ASan reports on Windows.
268# define GET_CURRENT_FRAME() (uintptr_t)0xDEADBEEF
Timur Iskhodzhanov3e81fe42012-02-09 17:20:14 +0000269
270# ifndef ASAN_USE_EXTERNAL_SYMBOLIZER
271# define ASAN_USE_EXTERNAL_SYMBOLIZER __asan::WinSymbolize
272bool WinSymbolize(const void *addr, char *out_buffer, int buffer_size);
273# endif
Alexander Potapenko6f045292012-01-27 15:15:04 +0000274#endif
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000275
276#define GET_BP_PC_SP \
277 uintptr_t bp = GET_CURRENT_FRAME(); \
278 uintptr_t pc = GET_CALLER_PC(); \
279 uintptr_t local_stack; \
280 uintptr_t sp = (uintptr_t)&local_stack;
281
282// These magic values are written to shadow for better error reporting.
283const int kAsanHeapLeftRedzoneMagic = 0xfa;
284const int kAsanHeapRightRedzoneMagic = 0xfb;
285const int kAsanHeapFreeMagic = 0xfd;
286const int kAsanStackLeftRedzoneMagic = 0xf1;
287const int kAsanStackMidRedzoneMagic = 0xf2;
288const int kAsanStackRightRedzoneMagic = 0xf3;
289const int kAsanStackPartialRedzoneMagic = 0xf4;
290const int kAsanStackAfterReturnMagic = 0xf5;
291const int kAsanUserPoisonedMemoryMagic = 0xf7;
292const int kAsanGlobalRedzoneMagic = 0xf9;
Kostya Serebryany6b30e2c2011-12-15 17:41:30 +0000293const int kAsanInternalHeapMagic = 0xfe;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000294
295static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
296static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
297
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000298// --------------------------- Bit twiddling ------- {{{1
299inline bool IsPowerOfTwo(size_t x) {
300 return (x & (x - 1)) == 0;
301}
302
303inline size_t RoundUpTo(size_t size, size_t boundary) {
304 CHECK(IsPowerOfTwo(boundary));
305 return (size + boundary - 1) & ~(boundary - 1);
306}
307
Kostya Serebryanyb89567c2011-12-02 21:02:20 +0000308// -------------------------- LowLevelAllocator ----- {{{1
309// A simple low-level memory allocator for internal use.
310class LowLevelAllocator {
311 public:
312 explicit LowLevelAllocator(LinkerInitialized) {}
313 // 'size' must be a power of two.
314 // Requires an external lock.
315 void *Allocate(size_t size);
316 private:
317 char *allocated_end_;
318 char *allocated_current_;
319};
320
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000321} // namespace __asan
322
323#endif // ASAN_INTERNAL_H