2011-11-30 09:07:02 +08:00
|
|
|
//===-- asan_internal.h -----------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is a part of AddressSanitizer, an address sanity checker.
|
|
|
|
//
|
|
|
|
// ASan-private header which defines various general utilities.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef ASAN_INTERNAL_H
|
|
|
|
#define ASAN_INTERNAL_H
|
|
|
|
|
2011-12-02 05:40:52 +08:00
|
|
|
#if !defined(__linux__) && !defined(__APPLE__)
|
|
|
|
# error "This operating system is not supported by AddressSanitizer"
|
|
|
|
#endif
|
|
|
|
|
2011-11-30 09:07:02 +08:00
|
|
|
#include <stdint.h> // for __WORDSIZE
|
|
|
|
#include <stdlib.h> // for size_t
|
|
|
|
|
2011-12-02 09:32:27 +08:00
|
|
|
// If __WORDSIZE was undefined by the platform, define it in terms of the
|
|
|
|
// compiler built-in __LP64__.
|
|
|
|
#ifndef __WORDSIZE
|
|
|
|
#if __LP64__
|
|
|
|
#define __WORDSIZE 64
|
|
|
|
#else
|
|
|
|
#define __WORDSIZE 32
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-01-27 18:52:37 +08:00
|
|
|
#if !defined(__has_feature)
|
|
|
|
#define __has_feature(x) 0
|
|
|
|
#endif
|
|
|
|
|
2011-12-28 05:57:12 +08:00
|
|
|
#if defined(__has_feature) && __has_feature(address_sanitizer)
|
2011-11-30 09:07:02 +08:00
|
|
|
# error "The AddressSanitizer run-time should not be"
|
|
|
|
" instrumented by AddressSanitizer"
|
|
|
|
#endif
|
|
|
|
|
2011-12-09 02:30:42 +08:00
|
|
|
// Build-time configuration options.
|
|
|
|
|
|
|
|
// If set, asan will install its own SEGV signal handler.
|
|
|
|
#ifndef ASAN_NEEDS_SEGV
|
|
|
|
# define ASAN_NEEDS_SEGV 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// If set, asan will intercept C++ exception api call(s).
|
|
|
|
#ifndef ASAN_HAS_EXCEPTIONS
|
|
|
|
# define ASAN_HAS_EXCEPTIONS 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// If set, asan uses the values of SHADOW_SCALE and SHADOW_OFFSET
|
|
|
|
// provided by the instrumented objects. Otherwise constants are used.
|
|
|
|
#ifndef ASAN_FLEXIBLE_MAPPING_AND_OFFSET
|
|
|
|
# define ASAN_FLEXIBLE_MAPPING_AND_OFFSET 0
|
|
|
|
#endif
|
|
|
|
|
2011-11-30 09:07:02 +08:00
|
|
|
// All internal functions in asan reside inside the __asan namespace
|
|
|
|
// to avoid namespace collisions with the user programs.
|
|
|
|
// Seperate namespace also makes it simpler to distinguish the asan run-time
|
|
|
|
// functions from the instrumented user code in a profile.
|
|
|
|
namespace __asan {
|
|
|
|
|
|
|
|
class AsanThread;
|
|
|
|
struct AsanStackTrace;
|
|
|
|
|
2011-12-01 02:50:23 +08:00
|
|
|
// asan_rtl.cc
|
2011-11-30 09:07:02 +08:00
|
|
|
void CheckFailed(const char *cond, const char *file, int line);
|
|
|
|
void ShowStatsAndAbort();
|
|
|
|
|
2011-12-01 02:50:23 +08:00
|
|
|
// asan_globals.cc
|
2011-11-30 09:07:02 +08:00
|
|
|
bool DescribeAddrIfGlobal(uintptr_t addr);
|
|
|
|
|
2011-12-01 02:50:23 +08:00
|
|
|
// asan_malloc_linux.cc / asan_malloc_mac.cc
|
2011-11-30 09:07:02 +08:00
|
|
|
void ReplaceSystemMalloc();
|
|
|
|
|
2011-12-29 06:58:01 +08:00
|
|
|
void OutOfMemoryMessageAndDie(const char *mem_type, size_t size);
|
|
|
|
|
2011-12-01 02:50:23 +08:00
|
|
|
// asan_linux.cc / asan_mac.cc
|
2011-11-30 09:07:02 +08:00
|
|
|
void *AsanDoesNotSupportStaticLinkage();
|
2011-12-29 06:58:01 +08:00
|
|
|
int AsanOpenReadonly(const char* filename);
|
2012-01-13 20:59:48 +08:00
|
|
|
const char *AsanGetEnv(const char *name);
|
2011-12-29 06:58:01 +08:00
|
|
|
|
2011-12-29 07:28:54 +08:00
|
|
|
void *AsanMmapFixedNoReserve(uintptr_t fixed_addr, size_t size);
|
|
|
|
void *AsanMmapFixedReserve(uintptr_t fixed_addr, size_t size);
|
|
|
|
void *AsanMprotect(uintptr_t fixed_addr, size_t size);
|
2011-12-29 06:58:01 +08:00
|
|
|
void *AsanMmapSomewhereOrDie(size_t size, const char *where);
|
|
|
|
void AsanUnmapOrDie(void *ptr, size_t size);
|
|
|
|
|
2012-01-06 10:12:25 +08:00
|
|
|
void AsanDisableCoreDumper();
|
2012-01-07 03:11:09 +08:00
|
|
|
void GetPcSpBp(void *context, uintptr_t *pc, uintptr_t *sp, uintptr_t *bp);
|
2012-01-06 10:12:25 +08:00
|
|
|
|
2012-01-10 07:11:26 +08:00
|
|
|
size_t AsanRead(int fd, void *buf, size_t count);
|
|
|
|
size_t AsanWrite(int fd, const void *buf, size_t count);
|
2011-12-29 06:58:01 +08:00
|
|
|
int AsanClose(int fd);
|
2011-11-30 09:07:02 +08:00
|
|
|
|
2012-01-10 02:53:15 +08:00
|
|
|
bool AsanInterceptsSignal(int signum);
|
2012-01-10 03:18:27 +08:00
|
|
|
void InstallSignalHandlers();
|
2012-01-10 07:11:26 +08:00
|
|
|
int GetPid();
|
2012-01-11 10:21:06 +08:00
|
|
|
uintptr_t GetThreadSelf();
|
2012-01-11 10:39:16 +08:00
|
|
|
int AtomicInc(int *a);
|
2012-01-11 10:21:06 +08:00
|
|
|
|
|
|
|
// Wrapper for TLS/TSD.
|
|
|
|
void AsanTSDInit();
|
|
|
|
void *AsanTSDGet();
|
|
|
|
void AsanTSDSet(void *tsd);
|
2012-01-10 02:53:15 +08:00
|
|
|
|
2012-01-05 08:44:33 +08:00
|
|
|
// Opens the file 'file_name" and reads up to 'max_len' bytes.
|
|
|
|
// The resulting buffer is mmaped and stored in '*buff'.
|
|
|
|
// The size of the mmaped region is stored in '*buff_size',
|
2012-01-10 07:11:26 +08:00
|
|
|
// Returns the number of read bytes or 0 if file can not be opened.
|
|
|
|
size_t ReadFileToBuffer(const char *file_name, char **buff,
|
|
|
|
size_t *buff_size, size_t max_len);
|
2012-01-05 08:44:33 +08:00
|
|
|
|
2011-12-01 02:50:23 +08:00
|
|
|
// asan_printf.cc
|
2011-11-30 09:07:02 +08:00
|
|
|
void RawWrite(const char *buffer);
|
|
|
|
int SNPrint(char *buffer, size_t length, const char *format, ...);
|
|
|
|
void Printf(const char *format, ...);
|
2012-01-05 08:44:33 +08:00
|
|
|
int SScanf(const char *str, const char *format, ...);
|
2011-11-30 09:07:02 +08:00
|
|
|
void Report(const char *format, ...);
|
|
|
|
|
2011-12-03 02:42:04 +08:00
|
|
|
// Don't use std::min and std::max, to minimize dependency on libstdc++.
|
|
|
|
template<class T> T Min(T a, T b) { return a < b ? a : b; }
|
|
|
|
template<class T> T Max(T a, T b) { return a > b ? a : b; }
|
|
|
|
|
2011-12-01 02:50:23 +08:00
|
|
|
// asan_poisoning.cc
|
|
|
|
// Poisons the shadow memory for "size" bytes starting from "addr".
|
|
|
|
void PoisonShadow(uintptr_t addr, size_t size, uint8_t value);
|
|
|
|
// Poisons the shadow memory for "redzone_size" bytes starting from
|
|
|
|
// "addr + size".
|
|
|
|
void PoisonShadowPartialRightRedzone(uintptr_t addr,
|
|
|
|
uintptr_t size,
|
|
|
|
uintptr_t redzone_size,
|
|
|
|
uint8_t value);
|
|
|
|
|
2011-11-30 09:07:02 +08:00
|
|
|
extern size_t FLAG_quarantine_size;
|
|
|
|
extern int FLAG_demangle;
|
|
|
|
extern bool FLAG_symbolize;
|
|
|
|
extern int FLAG_v;
|
|
|
|
extern size_t FLAG_redzone;
|
|
|
|
extern int FLAG_debug;
|
|
|
|
extern bool FLAG_poison_shadow;
|
|
|
|
extern int FLAG_report_globals;
|
|
|
|
extern size_t FLAG_malloc_context_size;
|
|
|
|
extern bool FLAG_replace_str;
|
|
|
|
extern bool FLAG_replace_intrin;
|
|
|
|
extern bool FLAG_replace_cfallocator;
|
|
|
|
extern bool FLAG_fast_unwind;
|
|
|
|
extern bool FLAG_use_fake_stack;
|
|
|
|
extern size_t FLAG_max_malloc_fill_size;
|
|
|
|
extern int FLAG_exitcode;
|
|
|
|
extern bool FLAG_allow_user_poisoning;
|
2012-01-10 02:53:15 +08:00
|
|
|
extern bool FLAG_handle_segv;
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
extern int asan_inited;
|
|
|
|
// Used to avoid infinite recursion in __asan_init().
|
|
|
|
extern bool asan_init_is_running;
|
|
|
|
|
|
|
|
enum LinkerInitialized { LINKER_INITIALIZED = 0 };
|
|
|
|
|
2012-01-10 07:11:26 +08:00
|
|
|
void AsanDie();
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
#define CHECK(cond) do { if (!(cond)) { \
|
|
|
|
CheckFailed(#cond, __FILE__, __LINE__); \
|
|
|
|
}}while(0)
|
|
|
|
|
|
|
|
#define RAW_CHECK_MSG(expr, msg) do { \
|
|
|
|
if (!(expr)) { \
|
|
|
|
RawWrite(msg); \
|
2012-01-10 07:11:26 +08:00
|
|
|
AsanDie(); \
|
2011-11-30 09:07:02 +08:00
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RAW_CHECK(expr) RAW_CHECK_MSG(expr, #expr)
|
|
|
|
|
|
|
|
#define UNIMPLEMENTED() CHECK("unimplemented" && 0)
|
|
|
|
|
|
|
|
#define ASAN_ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0]))
|
|
|
|
|
|
|
|
const size_t kWordSize = __WORDSIZE / 8;
|
|
|
|
const size_t kWordSizeInBits = 8 * kWordSize;
|
|
|
|
const size_t kPageSizeBits = 12;
|
|
|
|
const size_t kPageSize = 1UL << kPageSizeBits;
|
|
|
|
|
|
|
|
#define GET_CALLER_PC() (uintptr_t)__builtin_return_address(0)
|
|
|
|
#define GET_CURRENT_FRAME() (uintptr_t)__builtin_frame_address(0)
|
|
|
|
|
|
|
|
#define GET_BP_PC_SP \
|
|
|
|
uintptr_t bp = GET_CURRENT_FRAME(); \
|
|
|
|
uintptr_t pc = GET_CALLER_PC(); \
|
|
|
|
uintptr_t local_stack; \
|
|
|
|
uintptr_t sp = (uintptr_t)&local_stack;
|
|
|
|
|
|
|
|
// These magic values are written to shadow for better error reporting.
|
|
|
|
const int kAsanHeapLeftRedzoneMagic = 0xfa;
|
|
|
|
const int kAsanHeapRightRedzoneMagic = 0xfb;
|
|
|
|
const int kAsanHeapFreeMagic = 0xfd;
|
|
|
|
const int kAsanStackLeftRedzoneMagic = 0xf1;
|
|
|
|
const int kAsanStackMidRedzoneMagic = 0xf2;
|
|
|
|
const int kAsanStackRightRedzoneMagic = 0xf3;
|
|
|
|
const int kAsanStackPartialRedzoneMagic = 0xf4;
|
|
|
|
const int kAsanStackAfterReturnMagic = 0xf5;
|
|
|
|
const int kAsanUserPoisonedMemoryMagic = 0xf7;
|
|
|
|
const int kAsanGlobalRedzoneMagic = 0xf9;
|
2011-12-16 01:41:30 +08:00
|
|
|
const int kAsanInternalHeapMagic = 0xfe;
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
|
|
|
|
static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
|
|
|
|
|
2011-12-29 06:58:01 +08:00
|
|
|
// --------------------------- Bit twiddling ------- {{{1
|
|
|
|
inline bool IsPowerOfTwo(size_t x) {
|
|
|
|
return (x & (x - 1)) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline size_t RoundUpTo(size_t size, size_t boundary) {
|
|
|
|
CHECK(IsPowerOfTwo(boundary));
|
|
|
|
return (size + boundary - 1) & ~(boundary - 1);
|
|
|
|
}
|
|
|
|
|
2011-12-03 05:02:20 +08:00
|
|
|
// -------------------------- LowLevelAllocator ----- {{{1
|
|
|
|
// A simple low-level memory allocator for internal use.
|
|
|
|
class LowLevelAllocator {
|
|
|
|
public:
|
|
|
|
explicit LowLevelAllocator(LinkerInitialized) {}
|
|
|
|
// 'size' must be a power of two.
|
|
|
|
// Requires an external lock.
|
|
|
|
void *Allocate(size_t size);
|
|
|
|
private:
|
|
|
|
char *allocated_end_;
|
|
|
|
char *allocated_current_;
|
|
|
|
};
|
|
|
|
|
2011-11-30 09:07:02 +08:00
|
|
|
} // namespace __asan
|
|
|
|
|
|
|
|
#endif // ASAN_INTERNAL_H
|