blob: 5302f5cdb4cef75f4e7562398d1b4f764ea3be7e [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;
Timur Iskhodzhanov600972e2012-02-24 15:28:43 +000033typedef unsigned long DWORD; // NOLINT
Alexey Samsonovadf2b032012-02-03 08:37:19 +000034
Alexander Potapenko71d3b392012-02-08 14:14:18 +000035extern "C" void* _ReturnAddress(void);
36# pragma intrinsic(_ReturnAddress)
37
Alexey Samsonovadf2b032012-02-03 08:37:19 +000038# define ALIAS(x) // TODO(timurrrr): do we need this on Windows?
39# define ALIGNED(x) __declspec(align(x))
40# define NOINLINE __declspec(noinline)
Timur Iskhodzhanov23bd2bb2012-03-13 16:12:03 +000041# define NORETURN __declspec(noreturn)
Alexey Samsonovadf2b032012-02-03 08:37:19 +000042
43# define ASAN_INTERFACE_ATTRIBUTE // TODO(timurrrr): do we need this on Win?
44#else // defined(_WIN32)
Kostya Serebryany85822082012-01-30 20:55:02 +000045# include <stdint.h> // for __WORDSIZE
Alexey Samsonovadf2b032012-02-03 08:37:19 +000046
47# define ALIAS(x) __attribute__((alias(x)))
48# define ALIGNED(x) __attribute__((aligned(x)))
49# define NOINLINE __attribute__((noinline))
Alexey Samsonov95d6b332012-03-20 10:14:55 +000050# define NORETURN __attribute__((noreturn))
Alexey Samsonovadf2b032012-02-03 08:37:19 +000051
52# define ASAN_INTERFACE_ATTRIBUTE __attribute__((visibility("default")))
53#endif // defined(_WIN32)
Kostya Serebryany1e172b42011-11-30 01:07:02 +000054
Daniel Dunbar46166332011-12-02 01:32:27 +000055// If __WORDSIZE was undefined by the platform, define it in terms of the
Kostya Serebryany669f5432012-01-31 18:13:50 +000056// compiler built-ins __LP64__ and _WIN64.
Daniel Dunbar46166332011-12-02 01:32:27 +000057#ifndef __WORDSIZE
Kostya Serebryany669f5432012-01-31 18:13:50 +000058#if __LP64__ || defined(_WIN64)
Daniel Dunbar46166332011-12-02 01:32:27 +000059#define __WORDSIZE 64
60#else
61#define __WORDSIZE 32
62#endif
63#endif
64
Alexey Samsonove4092f62012-02-22 12:54:04 +000065// Limits for integral types. We have to redefine it in case we don't
66// have stdint.h (like in Visual Studio 9).
67#if __WORDSIZE == 64
68# define __INT64_C(c) c ## L
69# define __UINT64_C(c) c ## UL
70#else
71# define __INT64_C(c) c ## LL
72# define __UINT64_C(c) c ## ULL
73#endif // __WORDSIZE == 64
Alexey Samsonovbfc694d2012-02-22 16:12:46 +000074#undef INT32_MIN
75#define INT32_MIN (-2147483647-1)
76#undef INT32_MAX
77#define INT32_MAX (2147483647)
78#undef UINT32_MAX
79#define UINT32_MAX (4294967295U)
80#undef INT64_MIN
81#define INT64_MIN (-__INT64_C(9223372036854775807)-1)
82#undef INT64_MAX
83#define INT64_MAX (__INT64_C(9223372036854775807))
84#undef UINT64_MAX
85#define UINT64_MAX (__UINT64_C(18446744073709551615))
Alexey Samsonove4092f62012-02-22 12:54:04 +000086
Alexey Samsonovb823e3c2012-02-22 14:07:06 +000087#define ASAN_DEFAULT_FAILURE_EXITCODE 1
88
Timur Iskhodzhanov3e81fe42012-02-09 17:20:14 +000089#if defined(__linux__)
90# define ASAN_LINUX 1
91#else
92# define ASAN_LINUX 0
93#endif
94
95#if defined(__APPLE__)
96# define ASAN_MAC 1
97#else
98# define ASAN_MAC 0
99#endif
100
101#if defined(_WIN32)
102# define ASAN_WINDOWS 1
103#else
104# define ASAN_WINDOWS 0
105#endif
106
Alexander Potapenkoc8365232012-01-27 10:52:37 +0000107#if !defined(__has_feature)
108#define __has_feature(x) 0
109#endif
110
Kostya Serebryany13ebae62011-12-27 21:57:12 +0000111#if defined(__has_feature) && __has_feature(address_sanitizer)
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000112# error "The AddressSanitizer run-time should not be"
113 " instrumented by AddressSanitizer"
114#endif
115
Kostya Serebryanyc6f22232011-12-08 18:30:42 +0000116// Build-time configuration options.
117
Kostya Serebryanyc6f22232011-12-08 18:30:42 +0000118// If set, asan will install its own SEGV signal handler.
119#ifndef ASAN_NEEDS_SEGV
120# define ASAN_NEEDS_SEGV 1
121#endif
122
123// If set, asan will intercept C++ exception api call(s).
124#ifndef ASAN_HAS_EXCEPTIONS
125# define ASAN_HAS_EXCEPTIONS 1
126#endif
127
128// If set, asan uses the values of SHADOW_SCALE and SHADOW_OFFSET
129// provided by the instrumented objects. Otherwise constants are used.
130#ifndef ASAN_FLEXIBLE_MAPPING_AND_OFFSET
131# define ASAN_FLEXIBLE_MAPPING_AND_OFFSET 0
132#endif
133
Evgeniy Stepanov8ae44ac2012-02-27 13:07:29 +0000134// If set, values like allocator chunk size, as well as defaults for some flags
135// will be changed towards less memory overhead.
136#ifndef ASAN_LOW_MEMORY
137# define ASAN_LOW_MEMORY 0
138#endif
139
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000140// All internal functions in asan reside inside the __asan namespace
141// to avoid namespace collisions with the user programs.
142// Seperate namespace also makes it simpler to distinguish the asan run-time
143// functions from the instrumented user code in a profile.
144namespace __asan {
145
146class AsanThread;
147struct AsanStackTrace;
148
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000149// asan_rtl.cc
Timur Iskhodzhanov23bd2bb2012-03-13 16:12:03 +0000150void NORETURN CheckFailed(const char *cond, const char *file, int line);
Timur Iskhodzhanovb55c88d2012-03-13 16:29:25 +0000151void NORETURN ShowStatsAndAbort();
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000152
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000153// asan_globals.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000154bool DescribeAddrIfGlobal(uintptr_t addr);
155
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000156// asan_malloc_linux.cc / asan_malloc_mac.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000157void ReplaceSystemMalloc();
158
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000159void OutOfMemoryMessageAndDie(const char *mem_type, size_t size);
160
Alexander Potapenkof73a6a32012-02-13 17:09:40 +0000161// asan_linux.cc / asan_mac.cc / asan_win.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000162void *AsanDoesNotSupportStaticLinkage();
Alexander Potapenkof73a6a32012-02-13 17:09:40 +0000163bool AsanShadowRangeIsAvailable();
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000164int AsanOpenReadonly(const char* filename);
Alexander Potapenko1e316d72012-01-13 12:59:48 +0000165const char *AsanGetEnv(const char *name);
Alexander Potapenko99d17eb2012-02-22 09:11:55 +0000166void AsanDumpProcessMap();
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000167
Kostya Serebryanya874fe52011-12-28 23:28:54 +0000168void *AsanMmapFixedNoReserve(uintptr_t fixed_addr, size_t size);
169void *AsanMmapFixedReserve(uintptr_t fixed_addr, size_t size);
170void *AsanMprotect(uintptr_t fixed_addr, size_t size);
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000171void *AsanMmapSomewhereOrDie(size_t size, const char *where);
172void AsanUnmapOrDie(void *ptr, size_t size);
173
Kostya Serebryanyef14ff62012-01-06 02:12:25 +0000174void AsanDisableCoreDumper();
Kostya Serebryany9107c262012-01-06 19:11:09 +0000175void GetPcSpBp(void *context, uintptr_t *pc, uintptr_t *sp, uintptr_t *bp);
Kostya Serebryanyef14ff62012-01-06 02:12:25 +0000176
Kostya Serebryany0ecf5eb2012-01-09 23:11:26 +0000177size_t AsanRead(int fd, void *buf, size_t count);
178size_t AsanWrite(int fd, const void *buf, size_t count);
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000179int AsanClose(int fd);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000180
Kostya Serebryany4803ab92012-01-09 18:53:15 +0000181bool AsanInterceptsSignal(int signum);
Kostya Serebryanya7e760a2012-01-09 19:18:27 +0000182void InstallSignalHandlers();
Kostya Serebryany0ecf5eb2012-01-09 23:11:26 +0000183int GetPid();
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000184uintptr_t GetThreadSelf();
Kostya Serebryanydde7c332012-01-11 02:39:16 +0000185int AtomicInc(int *a);
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000186
187// Wrapper for TLS/TSD.
Kostya Serebryanyf58f9982012-02-07 00:27:15 +0000188void AsanTSDInit(void (*destructor)(void *tsd));
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000189void *AsanTSDGet();
190void AsanTSDSet(void *tsd);
Kostya Serebryany4803ab92012-01-09 18:53:15 +0000191
Kostya Serebryanydf499b42012-01-05 00:44:33 +0000192// Opens the file 'file_name" and reads up to 'max_len' bytes.
193// The resulting buffer is mmaped and stored in '*buff'.
194// The size of the mmaped region is stored in '*buff_size',
Kostya Serebryany0ecf5eb2012-01-09 23:11:26 +0000195// Returns the number of read bytes or 0 if file can not be opened.
196size_t ReadFileToBuffer(const char *file_name, char **buff,
197 size_t *buff_size, size_t max_len);
Kostya Serebryanydf499b42012-01-05 00:44:33 +0000198
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000199// asan_printf.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000200void RawWrite(const char *buffer);
Alexander Potapenkoa0935fa2012-02-08 11:45:09 +0000201int SNPrintf(char *buffer, size_t length, const char *format, ...);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000202void Printf(const char *format, ...);
Kostya Serebryanydf499b42012-01-05 00:44:33 +0000203int SScanf(const char *str, const char *format, ...);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000204void Report(const char *format, ...);
205
Kostya Serebryany2d8b3bd2011-12-02 18:42:04 +0000206// Don't use std::min and std::max, to minimize dependency on libstdc++.
207template<class T> T Min(T a, T b) { return a < b ? a : b; }
208template<class T> T Max(T a, T b) { return a > b ? a : b; }
209
Kostya Serebryany25c71782012-03-10 01:30:01 +0000210void SortArray(uintptr_t *array, size_t size);
211
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000212// asan_poisoning.cc
213// Poisons the shadow memory for "size" bytes starting from "addr".
214void PoisonShadow(uintptr_t addr, size_t size, uint8_t value);
215// Poisons the shadow memory for "redzone_size" bytes starting from
216// "addr + size".
217void PoisonShadowPartialRightRedzone(uintptr_t addr,
218 uintptr_t size,
219 uintptr_t redzone_size,
220 uint8_t value);
221
Alexey Samsonov38dd4ed2012-03-20 10:54:40 +0000222// Platfrom-specific options.
223#ifdef __APPLE__
224bool PlatformHasDifferentMemcpyAndMemmove();
225# define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE \
226 (PlatformHasDifferentMemcpyAndMemmove())
227#else
228# define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE true
229#endif // __APPLE__
230
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000231extern size_t FLAG_quarantine_size;
232extern int FLAG_demangle;
233extern bool FLAG_symbolize;
234extern int FLAG_v;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000235extern size_t FLAG_redzone;
236extern int FLAG_debug;
237extern bool FLAG_poison_shadow;
238extern int FLAG_report_globals;
239extern size_t FLAG_malloc_context_size;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000240extern bool FLAG_replace_str;
241extern bool FLAG_replace_intrin;
242extern bool FLAG_replace_cfallocator;
243extern bool FLAG_fast_unwind;
244extern bool FLAG_use_fake_stack;
245extern size_t FLAG_max_malloc_fill_size;
246extern int FLAG_exitcode;
247extern bool FLAG_allow_user_poisoning;
Kostya Serebryanycb00d132012-01-31 00:52:18 +0000248extern int FLAG_sleep_before_dying;
Kostya Serebryany4803ab92012-01-09 18:53:15 +0000249extern bool FLAG_handle_segv;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000250
251extern int asan_inited;
252// Used to avoid infinite recursion in __asan_init().
253extern bool asan_init_is_running;
254
255enum LinkerInitialized { LINKER_INITIALIZED = 0 };
256
Timur Iskhodzhanovb55c88d2012-03-13 16:29:25 +0000257void NORETURN AsanDie();
Kostya Serebryanye1fe0fd2012-02-13 21:24:29 +0000258void SleepForSeconds(int seconds);
Timur Iskhodzhanovb55c88d2012-03-13 16:29:25 +0000259void NORETURN Exit(int exitcode);
Alexey Samsonovb823e3c2012-02-22 14:07:06 +0000260int Atexit(void (*function)(void));
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000261
262#define CHECK(cond) do { if (!(cond)) { \
263 CheckFailed(#cond, __FILE__, __LINE__); \
264}}while(0)
265
266#define RAW_CHECK_MSG(expr, msg) do { \
267 if (!(expr)) { \
268 RawWrite(msg); \
Kostya Serebryany0ecf5eb2012-01-09 23:11:26 +0000269 AsanDie(); \
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000270 } \
271} while (0)
272
273#define RAW_CHECK(expr) RAW_CHECK_MSG(expr, #expr)
274
275#define UNIMPLEMENTED() CHECK("unimplemented" && 0)
276
277#define ASAN_ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0]))
278
279const size_t kWordSize = __WORDSIZE / 8;
280const size_t kWordSizeInBits = 8 * kWordSize;
281const size_t kPageSizeBits = 12;
282const size_t kPageSize = 1UL << kPageSizeBits;
283
Alexander Potapenko6f045292012-01-27 15:15:04 +0000284#ifndef _WIN32
Timur Iskhodzhanov3e81fe42012-02-09 17:20:14 +0000285const size_t kMmapGranularity = kPageSize;
Kostya Serebryany1c83ae32012-02-07 18:23:54 +0000286# define GET_CALLER_PC() (uintptr_t)__builtin_return_address(0)
287# define GET_CURRENT_FRAME() (uintptr_t)__builtin_frame_address(0)
Timur Iskhodzhanov600972e2012-02-24 15:28:43 +0000288# define THREAD_CALLING_CONV
289typedef void* thread_return_t;
Alexander Potapenko6f045292012-01-27 15:15:04 +0000290#else
Timur Iskhodzhanov3e81fe42012-02-09 17:20:14 +0000291const size_t kMmapGranularity = 1UL << 16;
Kostya Serebryany1c83ae32012-02-07 18:23:54 +0000292# define GET_CALLER_PC() (uintptr_t)_ReturnAddress()
293// CaptureStackBackTrace doesn't need to know BP on Windows.
294// FIXME: This macro is still used when printing error reports though it's not
295// clear if the BP value is needed in the ASan reports on Windows.
296# define GET_CURRENT_FRAME() (uintptr_t)0xDEADBEEF
Timur Iskhodzhanov600972e2012-02-24 15:28:43 +0000297# define THREAD_CALLING_CONV __stdcall
298typedef DWORD thread_return_t;
Timur Iskhodzhanov3e81fe42012-02-09 17:20:14 +0000299
300# ifndef ASAN_USE_EXTERNAL_SYMBOLIZER
301# define ASAN_USE_EXTERNAL_SYMBOLIZER __asan::WinSymbolize
302bool WinSymbolize(const void *addr, char *out_buffer, int buffer_size);
303# endif
Alexander Potapenko6f045292012-01-27 15:15:04 +0000304#endif
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000305
Timur Iskhodzhanov600972e2012-02-24 15:28:43 +0000306typedef thread_return_t (THREAD_CALLING_CONV *thread_callback_t)(void* arg);
307
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000308// These magic values are written to shadow for better error reporting.
309const int kAsanHeapLeftRedzoneMagic = 0xfa;
310const int kAsanHeapRightRedzoneMagic = 0xfb;
311const int kAsanHeapFreeMagic = 0xfd;
312const int kAsanStackLeftRedzoneMagic = 0xf1;
313const int kAsanStackMidRedzoneMagic = 0xf2;
314const int kAsanStackRightRedzoneMagic = 0xf3;
315const int kAsanStackPartialRedzoneMagic = 0xf4;
316const int kAsanStackAfterReturnMagic = 0xf5;
317const int kAsanUserPoisonedMemoryMagic = 0xf7;
318const int kAsanGlobalRedzoneMagic = 0xf9;
Kostya Serebryany6b30e2c2011-12-15 17:41:30 +0000319const int kAsanInternalHeapMagic = 0xfe;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000320
321static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
322static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
323
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000324// --------------------------- Bit twiddling ------- {{{1
325inline bool IsPowerOfTwo(size_t x) {
326 return (x & (x - 1)) == 0;
327}
328
329inline size_t RoundUpTo(size_t size, size_t boundary) {
330 CHECK(IsPowerOfTwo(boundary));
331 return (size + boundary - 1) & ~(boundary - 1);
332}
333
Kostya Serebryanyb89567c2011-12-02 21:02:20 +0000334// -------------------------- LowLevelAllocator ----- {{{1
335// A simple low-level memory allocator for internal use.
336class LowLevelAllocator {
337 public:
338 explicit LowLevelAllocator(LinkerInitialized) {}
339 // 'size' must be a power of two.
340 // Requires an external lock.
341 void *Allocate(size_t size);
342 private:
343 char *allocated_end_;
344 char *allocated_current_;
345};
346
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000347} // namespace __asan
348
349#endif // ASAN_INTERNAL_H