blob: 650a4d10ced1e690d58d9b3962be7cc76f334847 [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 Samsonovc70fa282013-01-31 13:46:14 +000018#include "asan_interface_internal.h"
Alexey Samsonov47657ce2012-06-06 07:02:44 +000019#include "sanitizer_common/sanitizer_common.h"
Alexey Samsonov94b50362012-06-05 14:25:27 +000020#include "sanitizer_common/sanitizer_internal_defs.h"
Kostya Serebryany1b5ea8f2012-08-28 14:11:57 +000021#include "sanitizer_common/sanitizer_stacktrace.h"
Kostya Serebryany16e00752012-05-31 13:42:53 +000022#include "sanitizer_common/sanitizer_libc.h"
Kostya Serebryanyb3cedf92012-05-29 12:18:18 +000023
Alexey Samsonovb823e3c2012-02-22 14:07:06 +000024#define ASAN_DEFAULT_FAILURE_EXITCODE 1
25
Kostya Serebryanye31eca92013-02-15 12:00:24 +000026#if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
Kostya Serebryany1e172b42011-11-30 01:07:02 +000027# error "The AddressSanitizer run-time should not be"
28 " instrumented by AddressSanitizer"
29#endif
30
Kostya Serebryanyc6f22232011-12-08 18:30:42 +000031// Build-time configuration options.
32
Kostya Serebryanyc6f22232011-12-08 18:30:42 +000033// If set, asan will intercept C++ exception api call(s).
34#ifndef ASAN_HAS_EXCEPTIONS
35# define ASAN_HAS_EXCEPTIONS 1
36#endif
37
Evgeniy Stepanov8ae44ac2012-02-27 13:07:29 +000038// 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
Kostya Serebryanye52810d2012-12-25 07:17:17 +000041#if SANITIZER_WORDSIZE == 32
Evgeniy Stepanov9712af92012-09-28 10:07:53 +000042# define ASAN_LOW_MEMORY 1
Kostya Serebryanye52810d2012-12-25 07:17:17 +000043#else
Evgeniy Stepanov9712af92012-09-28 10:07:53 +000044# define ASAN_LOW_MEMORY 0
45# endif
Evgeniy Stepanov8ae44ac2012-02-27 13:07:29 +000046#endif
47
Kostya Serebryanye1353432013-02-20 14:28:08 +000048#ifndef ASAN_USE_PREINIT_ARRAY
Evgeniy Stepanov83cb7872013-03-19 13:54:41 +000049# define ASAN_USE_PREINIT_ARRAY (SANITIZER_LINUX && !SANITIZER_ANDROID)
Kostya Serebryanye1353432013-02-20 14:28:08 +000050#endif
51
Stephen Hines2d1fdb22014-05-28 23:58:16 -070052#ifndef ASAN_DYNAMIC
53# ifdef PIC
54# define ASAN_DYNAMIC 1
55# else
56# define ASAN_DYNAMIC 0
57# endif
58#endif
59
Kostya Serebryany1e172b42011-11-30 01:07:02 +000060// All internal functions in asan reside inside the __asan namespace
61// to avoid namespace collisions with the user programs.
Stephen Hines2d1fdb22014-05-28 23:58:16 -070062// Separate namespace also makes it simpler to distinguish the asan run-time
Kostya Serebryany1e172b42011-11-30 01:07:02 +000063// functions from the instrumented user code in a profile.
64namespace __asan {
65
66class AsanThread;
Kostya Serebryany1b5ea8f2012-08-28 14:11:57 +000067using __sanitizer::StackTrace;
Kostya Serebryany1e172b42011-11-30 01:07:02 +000068
Stephen Hines2d1fdb22014-05-28 23:58:16 -070069void AsanInitFromRtl();
70
Kostya Serebryany218a9b72011-11-30 18:50:23 +000071// asan_rtl.cc
Timur Iskhodzhanovb55c88d2012-03-13 16:29:25 +000072void NORETURN ShowStatsAndAbort();
Kostya Serebryany1e172b42011-11-30 01:07:02 +000073
Kostya Serebryany218a9b72011-11-30 18:50:23 +000074// asan_malloc_linux.cc / asan_malloc_mac.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +000075void ReplaceSystemMalloc();
76
Alexander Potapenkof73a6a32012-02-13 17:09:40 +000077// asan_linux.cc / asan_mac.cc / asan_win.cc
Kostya Serebryany1e172b42011-11-30 01:07:02 +000078void *AsanDoesNotSupportStaticLinkage();
Stephen Hines2d1fdb22014-05-28 23:58:16 -070079void AsanCheckDynamicRTPrereqs();
80void AsanCheckIncompatibleRT();
Kostya Serebryanyde496f42011-12-28 22:58:01 +000081
Kostya Serebryany3f4c3872012-05-31 14:35:53 +000082void GetPcSpBp(void *context, uptr *pc, uptr *sp, uptr *bp);
Stephen Hines2d1fdb22014-05-28 23:58:16 -070083void AsanOnSIGSEGV(int, void *siginfo, void *context);
Kostya Serebryanyef14ff62012-01-06 02:12:25 +000084
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +000085void MaybeReexec();
Kostya Serebryany4803ab92012-01-09 18:53:15 +000086bool AsanInterceptsSignal(int signum);
Alexey Samsonov57db4ba2013-01-17 15:45:28 +000087void ReadContextStack(void *context, uptr *stack, uptr *ssize);
Alexander Potapenko75b19eb2012-07-23 14:07:58 +000088void AsanPlatformThreadInit();
Alexey Samsonov46efcb02013-05-24 11:46:56 +000089void StopInitOrderChecking();
Kostya Serebryanycc4e6862012-01-11 02:21:06 +000090
91// Wrapper for TLS/TSD.
Kostya Serebryanyf58f9982012-02-07 00:27:15 +000092void AsanTSDInit(void (*destructor)(void *tsd));
Kostya Serebryanycc4e6862012-01-11 02:21:06 +000093void *AsanTSDGet();
94void AsanTSDSet(void *tsd);
Sergey Matveeve86e35f2013-10-14 12:01:05 +000095void PlatformTSDDtor(void *tsd);
Kostya Serebryany4803ab92012-01-09 18:53:15 +000096
Alexey Samsonove9541012012-06-06 13:11:29 +000097void AppendToErrorMessageBuffer(const char *buffer);
Kostya Serebryany1e172b42011-11-30 01:07:02 +000098
Stephen Hines2d1fdb22014-05-28 23:58:16 -070099void ParseExtraActivationFlags();
100
101// Platform-specific options.
Evgeniy Stepanov30e110e2013-03-19 14:54:17 +0000102#if SANITIZER_MAC
Alexey Samsonov38dd4ed2012-03-20 10:54:40 +0000103bool PlatformHasDifferentMemcpyAndMemmove();
104# define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE \
105 (PlatformHasDifferentMemcpyAndMemmove())
106#else
107# define PLATFORM_HAS_DIFFERENT_MEMCPY_AND_MEMMOVE true
Alexey Samsonov649a2702013-04-03 07:29:53 +0000108#endif // SANITIZER_MAC
Alexey Samsonov38dd4ed2012-03-20 10:54:40 +0000109
Alexey Samsonov6a08d292012-12-07 22:01:28 +0000110// Add convenient macro for interface functions that may be represented as
111// weak hooks.
112#define ASAN_MALLOC_HOOK(ptr, size) \
113 if (&__asan_malloc_hook) __asan_malloc_hook(ptr, size)
114#define ASAN_FREE_HOOK(ptr) \
115 if (&__asan_free_hook) __asan_free_hook(ptr)
116#define ASAN_ON_ERROR() \
117 if (&__asan_on_error) __asan_on_error()
118
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000119extern int asan_inited;
120// Used to avoid infinite recursion in __asan_init().
121extern bool asan_init_is_running;
Alexey Samsonov47657ce2012-06-06 07:02:44 +0000122extern void (*death_callback)(void);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000123
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000124// These magic values are written to shadow for better error reporting.
125const int kAsanHeapLeftRedzoneMagic = 0xfa;
126const int kAsanHeapRightRedzoneMagic = 0xfb;
127const int kAsanHeapFreeMagic = 0xfd;
128const int kAsanStackLeftRedzoneMagic = 0xf1;
129const int kAsanStackMidRedzoneMagic = 0xf2;
130const int kAsanStackRightRedzoneMagic = 0xf3;
131const int kAsanStackPartialRedzoneMagic = 0xf4;
132const int kAsanStackAfterReturnMagic = 0xf5;
Kostya Serebryany3945c582012-08-21 14:10:25 +0000133const int kAsanInitializationOrderMagic = 0xf6;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000134const int kAsanUserPoisonedMemoryMagic = 0xf7;
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700135const int kAsanContiguousContainerOOBMagic = 0xfc;
Alexey Samsonovd4b5db82012-12-04 01:38:15 +0000136const int kAsanStackUseAfterScopeMagic = 0xf8;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000137const int kAsanGlobalRedzoneMagic = 0xf9;
Kostya Serebryany6b30e2c2011-12-15 17:41:30 +0000138const int kAsanInternalHeapMagic = 0xfe;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000139
Kostya Serebryany3f4c3872012-05-31 14:35:53 +0000140static const uptr kCurrentStackFrameMagic = 0x41B58AB3;
141static const uptr kRetiredStackFrameMagic = 0x45E0360E;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000142
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000143} // namespace __asan
144
145#endif // ASAN_INTERNAL_H