blob: 46741c94bf00faf5471968a5c850c54766873455 [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
Alexey Samsonov7ed1d2b2012-07-10 07:41:27 +000017#include "asan_flags.h"
Alexey Samsonov47657ce2012-06-06 07:02:44 +000018#include "sanitizer_common/sanitizer_common.h"
Alexey Samsonov94b50362012-06-05 14:25:27 +000019#include "sanitizer_common/sanitizer_internal_defs.h"
Kostya Serebryany1b5ea8f2012-08-28 14:11:57 +000020#include "sanitizer_common/sanitizer_stacktrace.h"
Kostya Serebryany16e00752012-05-31 13:42:53 +000021#include "sanitizer_common/sanitizer_libc.h"
Kostya Serebryanyb3cedf92012-05-29 12:18:18 +000022
Alexander Potapenko6f045292012-01-27 15:15:04 +000023#if !defined(__linux__) && !defined(__APPLE__) && !defined(_WIN32)
Kostya Serebryanyd6567c52011-12-01 21:40:52 +000024# error "This operating system is not supported by AddressSanitizer"
25#endif
26
Kostya Serebryany85822082012-01-30 20:55:02 +000027#if defined(_WIN32)
Alexander Potapenko71d3b392012-02-08 14:14:18 +000028extern "C" void* _ReturnAddress(void);
29# pragma intrinsic(_ReturnAddress)
Alexey Samsonovadf2b032012-02-03 08:37:19 +000030#endif // defined(_WIN32)
Kostya Serebryany1e172b42011-11-30 01:07:02 +000031
Alexey Samsonovb823e3c2012-02-22 14:07:06 +000032#define ASAN_DEFAULT_FAILURE_EXITCODE 1
33
Timur Iskhodzhanov3e81fe42012-02-09 17:20:14 +000034#if defined(__linux__)
35# define ASAN_LINUX 1
36#else
37# define ASAN_LINUX 0
38#endif
39
40#if defined(__APPLE__)
41# define ASAN_MAC 1
42#else
43# define ASAN_MAC 0
44#endif
45
46#if defined(_WIN32)
47# define ASAN_WINDOWS 1
48#else
49# define ASAN_WINDOWS 0
50#endif
51
Evgeniy Stepanov3891ce62012-08-27 11:15:55 +000052#if defined(__ANDROID__) || defined(ANDROID)
53# define ASAN_ANDROID 1
54#else
55# define ASAN_ANDROID 0
56#endif
57
58
Alexey Samsonov34a32022012-03-26 09:07:29 +000059#define ASAN_POSIX (ASAN_LINUX || ASAN_MAC)
60
Kostya Serebryany850a49e2012-04-06 20:36:18 +000061#if __has_feature(address_sanitizer)
Kostya Serebryany1e172b42011-11-30 01:07:02 +000062# error "The AddressSanitizer run-time should not be"
63 " instrumented by AddressSanitizer"
64#endif
65
Kostya Serebryanyc6f22232011-12-08 18:30:42 +000066// Build-time configuration options.
67
Kostya Serebryanyc6f22232011-12-08 18:30:42 +000068// If set, asan will install its own SEGV signal handler.
69#ifndef ASAN_NEEDS_SEGV
70# define ASAN_NEEDS_SEGV 1
71#endif
72
73// If set, asan will intercept C++ exception api call(s).
74#ifndef ASAN_HAS_EXCEPTIONS
75# define ASAN_HAS_EXCEPTIONS 1
76#endif
77
78// If set, asan uses the values of SHADOW_SCALE and SHADOW_OFFSET
79// provided by the instrumented objects. Otherwise constants are used.
80#ifndef ASAN_FLEXIBLE_MAPPING_AND_OFFSET
81# define ASAN_FLEXIBLE_MAPPING_AND_OFFSET 0
82#endif
83
Evgeniy Stepanov8ae44ac2012-02-27 13:07:29 +000084// If set, values like allocator chunk size, as well as defaults for some flags
85// will be changed towards less memory overhead.
86#ifndef ASAN_LOW_MEMORY
87# define ASAN_LOW_MEMORY 0
88#endif
89
Kostya Serebryany1e172b42011-11-30 01:07:02 +000090// All internal functions in asan reside inside the __asan namespace
91// to avoid namespace collisions with the user programs.
92// Seperate namespace also makes it simpler to distinguish the asan run-time
93// functions from the instrumented user code in a profile.
94namespace __asan {
95
96class AsanThread;
Kostya Serebryany1b5ea8f2012-08-28 14:11:57 +000097using __sanitizer::StackTrace;
Kostya Serebryany1e172b42011-11-30 01:07:02 +000098
Kostya Serebryany218a9b72011-11-30 18:50:23 +000099// asan_rtl.cc
Timur Iskhodzhanovb55c88d2012-03-13 16:29:25 +0000100void NORETURN ShowStatsAndAbort();
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000101
Alexey Samsonov4d5f98d2012-04-06 08:21:08 +0000102void ReplaceOperatorsNewAndDelete();
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000103// asan_malloc_linux.cc / asan_malloc_mac.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000104void ReplaceSystemMalloc();
105
Alexander Potapenkof73a6a32012-02-13 17:09:40 +0000106// asan_linux.cc / asan_mac.cc / asan_win.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000107void *AsanDoesNotSupportStaticLinkage();
Kostya Serebryanyde496f42011-12-28 22:58:01 +0000108
Kostya Serebryany3f4c3872012-05-31 14:35:53 +0000109void GetPcSpBp(void *context, uptr *pc, uptr *sp, uptr *bp);
Kostya Serebryanyef14ff62012-01-06 02:12:25 +0000110
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +0000111void MaybeReexec();
Kostya Serebryany4803ab92012-01-09 18:53:15 +0000112bool AsanInterceptsSignal(int signum);
Alexander Potapenkof03d8af2012-04-05 10:54:52 +0000113void SetAlternateSignalStack();
114void UnsetAlternateSignalStack();
Kostya Serebryanya7e760a2012-01-09 19:18:27 +0000115void InstallSignalHandlers();
Alexander Potapenko75b19eb2012-07-23 14:07:58 +0000116void AsanPlatformThreadInit();
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000117
118// Wrapper for TLS/TSD.
Kostya Serebryanyf58f9982012-02-07 00:27:15 +0000119void AsanTSDInit(void (*destructor)(void *tsd));
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000120void *AsanTSDGet();
121void AsanTSDSet(void *tsd);
Kostya Serebryany4803ab92012-01-09 18:53:15 +0000122
Alexey Samsonove9541012012-06-06 13:11:29 +0000123void AppendToErrorMessageBuffer(const char *buffer);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000124
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000125// asan_poisoning.cc
126// Poisons the shadow memory for "size" bytes starting from "addr".
Kostya Serebryanyee392552012-05-31 15:02:07 +0000127void PoisonShadow(uptr addr, uptr size, u8 value);
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000128// Poisons the shadow memory for "redzone_size" bytes starting from
129// "addr + size".
Kostya Serebryany3f4c3872012-05-31 14:35:53 +0000130void PoisonShadowPartialRightRedzone(uptr addr,
131 uptr size,
132 uptr redzone_size,
Kostya Serebryanyee392552012-05-31 15:02:07 +0000133 u8 value);
Kostya Serebryany218a9b72011-11-30 18:50:23 +0000134
Alexey Samsonov38dd4ed2012-03-20 10:54:40 +0000135// Platfrom-specific options.
136#ifdef __APPLE__
137bool PlatformHasDifferentMemcpyAndMemmove();
138# define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE \
139 (PlatformHasDifferentMemcpyAndMemmove())
140#else
141# define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE true
142#endif // __APPLE__
143
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000144extern int asan_inited;
145// Used to avoid infinite recursion in __asan_init().
146extern bool asan_init_is_running;
Alexey Samsonov47657ce2012-06-06 07:02:44 +0000147extern void (*death_callback)(void);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000148
Alexey Samsonovdd3a9112012-06-15 07:29:14 +0000149#ifdef _WIN32
Alexey Samsonovc93d3e22012-08-22 13:31:37 +0000150bool WinSymbolize(const void *addr, char *out_buffer, int buffer_size);
Alexey Samsonovdd3a9112012-06-15 07:29:14 +0000151#endif // _WIN32
Timur Iskhodzhanov600972e2012-02-24 15:28:43 +0000152
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000153// These magic values are written to shadow for better error reporting.
154const int kAsanHeapLeftRedzoneMagic = 0xfa;
155const int kAsanHeapRightRedzoneMagic = 0xfb;
156const int kAsanHeapFreeMagic = 0xfd;
157const int kAsanStackLeftRedzoneMagic = 0xf1;
158const int kAsanStackMidRedzoneMagic = 0xf2;
159const int kAsanStackRightRedzoneMagic = 0xf3;
160const int kAsanStackPartialRedzoneMagic = 0xf4;
161const int kAsanStackAfterReturnMagic = 0xf5;
Kostya Serebryany3945c582012-08-21 14:10:25 +0000162const int kAsanInitializationOrderMagic = 0xf6;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000163const int kAsanUserPoisonedMemoryMagic = 0xf7;
164const int kAsanGlobalRedzoneMagic = 0xf9;
Kostya Serebryany6b30e2c2011-12-15 17:41:30 +0000165const int kAsanInternalHeapMagic = 0xfe;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000166
Kostya Serebryany3f4c3872012-05-31 14:35:53 +0000167static const uptr kCurrentStackFrameMagic = 0x41B58AB3;
168static const uptr kRetiredStackFrameMagic = 0x45E0360E;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000169
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000170} // namespace __asan
171
172#endif // ASAN_INTERNAL_H