2011-11-30 09:07:02 +08:00
|
|
|
//===-- asan_mapping.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.
|
|
|
|
//
|
|
|
|
// Defines ASan memory mapping.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef ASAN_MAPPING_H
|
|
|
|
#define ASAN_MAPPING_H
|
|
|
|
|
|
|
|
#include "asan_internal.h"
|
|
|
|
|
|
|
|
// The full explanation of the memory mapping could be found here:
|
2015-12-05 01:37:40 +08:00
|
|
|
// https://github.com/google/sanitizers/wiki/AddressSanitizerAlgorithm
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
//
|
|
|
|
// Typical shadow mapping on Linux/x86_64 with SHADOW_OFFSET == 0x00007fff8000:
|
|
|
|
// || `[0x10007fff8000, 0x7fffffffffff]` || HighMem ||
|
|
|
|
// || `[0x02008fff7000, 0x10007fff7fff]` || HighShadow ||
|
|
|
|
// || `[0x00008fff7000, 0x02008fff6fff]` || ShadowGap ||
|
|
|
|
// || `[0x00007fff8000, 0x00008fff6fff]` || LowShadow ||
|
|
|
|
// || `[0x000000000000, 0x00007fff7fff]` || LowMem ||
|
|
|
|
//
|
|
|
|
// When SHADOW_OFFSET is zero (-pie):
|
|
|
|
// || `[0x100000000000, 0x7fffffffffff]` || HighMem ||
|
|
|
|
// || `[0x020000000000, 0x0fffffffffff]` || HighShadow ||
|
|
|
|
// || `[0x000000040000, 0x01ffffffffff]` || ShadowGap ||
|
|
|
|
//
|
|
|
|
// Special case when something is already mapped between
|
2013-02-28 20:28:37 +08:00
|
|
|
// 0x003000000000 and 0x005000000000 (e.g. when prelink is installed):
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
// || `[0x10007fff8000, 0x7fffffffffff]` || HighMem ||
|
|
|
|
// || `[0x02008fff7000, 0x10007fff7fff]` || HighShadow ||
|
2013-02-28 20:28:37 +08:00
|
|
|
// || `[0x005000000000, 0x02008fff6fff]` || ShadowGap3 ||
|
|
|
|
// || `[0x003000000000, 0x004fffffffff]` || MidMem ||
|
|
|
|
// || `[0x000a7fff8000, 0x002fffffffff]` || ShadowGap2 ||
|
|
|
|
// || `[0x00067fff8000, 0x000a7fff7fff]` || MidShadow ||
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
// || `[0x00008fff7000, 0x00067fff7fff]` || ShadowGap ||
|
|
|
|
// || `[0x00007fff8000, 0x00008fff6fff]` || LowShadow ||
|
|
|
|
// || `[0x000000000000, 0x00007fff7fff]` || LowMem ||
|
|
|
|
//
|
2014-03-27 15:36:26 +08:00
|
|
|
// Default Linux/i386 mapping on x86_64 machine:
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
// || `[0x40000000, 0xffffffff]` || HighMem ||
|
|
|
|
// || `[0x28000000, 0x3fffffff]` || HighShadow ||
|
|
|
|
// || `[0x24000000, 0x27ffffff]` || ShadowGap ||
|
|
|
|
// || `[0x20000000, 0x23ffffff]` || LowShadow ||
|
|
|
|
// || `[0x00000000, 0x1fffffff]` || LowMem ||
|
2013-06-03 22:49:25 +08:00
|
|
|
//
|
2014-03-27 15:36:26 +08:00
|
|
|
// Default Linux/i386 mapping on i386 machine
|
|
|
|
// (addresses starting with 0xc0000000 are reserved
|
|
|
|
// for kernel and thus not sanitized):
|
|
|
|
// || `[0x38000000, 0xbfffffff]` || HighMem ||
|
|
|
|
// || `[0x27000000, 0x37ffffff]` || HighShadow ||
|
|
|
|
// || `[0x24000000, 0x26ffffff]` || ShadowGap ||
|
|
|
|
// || `[0x20000000, 0x23ffffff]` || LowShadow ||
|
|
|
|
// || `[0x00000000, 0x1fffffff]` || LowMem ||
|
|
|
|
//
|
2015-01-31 17:13:58 +08:00
|
|
|
// Default Linux/MIPS32 mapping:
|
2014-11-05 03:46:15 +08:00
|
|
|
// || `[0x2aaa0000, 0xffffffff]` || HighMem ||
|
|
|
|
// || `[0x0fff4000, 0x2aa9ffff]` || HighShadow ||
|
|
|
|
// || `[0x0bff4000, 0x0fff3fff]` || ShadowGap ||
|
|
|
|
// || `[0x0aaa0000, 0x0bff3fff]` || LowShadow ||
|
|
|
|
// || `[0x00000000, 0x0aa9ffff]` || LowMem ||
|
2014-05-12 19:03:46 +08:00
|
|
|
//
|
2015-01-31 17:13:58 +08:00
|
|
|
// Default Linux/MIPS64 mapping:
|
|
|
|
// || `[0x4000000000, 0xffffffffff]` || HighMem ||
|
|
|
|
// || `[0x2800000000, 0x3fffffffff]` || HighShadow ||
|
|
|
|
// || `[0x2400000000, 0x27ffffffff]` || ShadowGap ||
|
|
|
|
// || `[0x2000000000, 0x23ffffffff]` || LowShadow ||
|
|
|
|
// || `[0x0000000000, 0x1fffffffff]` || LowMem ||
|
|
|
|
//
|
2015-08-05 23:13:33 +08:00
|
|
|
// Default Linux/AArch64 (39-bit VMA) mapping:
|
|
|
|
// || `[0x2000000000, 0x7fffffffff]` || highmem ||
|
|
|
|
// || `[0x1400000000, 0x1fffffffff]` || highshadow ||
|
|
|
|
// || `[0x1200000000, 0x13ffffffff]` || shadowgap ||
|
|
|
|
// || `[0x1000000000, 0x11ffffffff]` || lowshadow ||
|
|
|
|
// || `[0x0000000000, 0x0fffffffff]` || lowmem ||
|
|
|
|
//
|
2015-08-21 02:49:40 +08:00
|
|
|
// Default Linux/AArch64 (42-bit VMA) mapping:
|
|
|
|
// || `[0x10000000000, 0x3ffffffffff]` || highmem ||
|
|
|
|
// || `[0x0a000000000, 0x0ffffffffff]` || highshadow ||
|
|
|
|
// || `[0x09000000000, 0x09fffffffff]` || shadowgap ||
|
|
|
|
// || `[0x08000000000, 0x08fffffffff]` || lowshadow ||
|
|
|
|
// || `[0x00000000000, 0x07fffffffff]` || lowmem ||
|
|
|
|
//
|
2016-04-30 18:02:12 +08:00
|
|
|
// Default Linux/S390 mapping:
|
|
|
|
// || `[0x30000000, 0x7fffffff]` || HighMem ||
|
|
|
|
// || `[0x26000000, 0x2fffffff]` || HighShadow ||
|
|
|
|
// || `[0x24000000, 0x25ffffff]` || ShadowGap ||
|
|
|
|
// || `[0x20000000, 0x23ffffff]` || LowShadow ||
|
|
|
|
// || `[0x00000000, 0x1fffffff]` || LowMem ||
|
|
|
|
//
|
|
|
|
// Default Linux/SystemZ mapping:
|
|
|
|
// || `[0x14000000000000, 0x1fffffffffffff]` || HighMem ||
|
|
|
|
// || `[0x12800000000000, 0x13ffffffffffff]` || HighShadow ||
|
|
|
|
// || `[0x12000000000000, 0x127fffffffffff]` || ShadowGap ||
|
|
|
|
// || `[0x10000000000000, 0x11ffffffffffff]` || LowShadow ||
|
|
|
|
// || `[0x00000000000000, 0x0fffffffffffff]` || LowMem ||
|
|
|
|
//
|
2014-05-12 19:03:46 +08:00
|
|
|
// Shadow mapping on FreeBSD/x86-64 with SHADOW_OFFSET == 0x400000000000:
|
|
|
|
// || `[0x500000000000, 0x7fffffffffff]` || HighMem ||
|
|
|
|
// || `[0x4a0000000000, 0x4fffffffffff]` || HighShadow ||
|
|
|
|
// || `[0x480000000000, 0x49ffffffffff]` || ShadowGap ||
|
|
|
|
// || `[0x400000000000, 0x47ffffffffff]` || LowShadow ||
|
|
|
|
// || `[0x000000000000, 0x3fffffffffff]` || LowMem ||
|
|
|
|
//
|
|
|
|
// Shadow mapping on FreeBSD/i386 with SHADOW_OFFSET == 0x40000000:
|
|
|
|
// || `[0x60000000, 0xffffffff]` || HighMem ||
|
|
|
|
// || `[0x4c000000, 0x5fffffff]` || HighShadow ||
|
|
|
|
// || `[0x48000000, 0x4bffffff]` || ShadowGap ||
|
|
|
|
// || `[0x40000000, 0x47ffffff]` || LowShadow ||
|
|
|
|
// || `[0x00000000, 0x3fffffff]` || LowMem ||
|
2015-01-13 01:38:58 +08:00
|
|
|
//
|
|
|
|
// Default Windows/i386 mapping:
|
2015-01-22 20:24:21 +08:00
|
|
|
// (the exact location of HighShadow/HighMem may vary depending
|
|
|
|
// on WoW64, /LARGEADDRESSAWARE, etc).
|
|
|
|
// || `[0x50000000, 0xffffffff]` || HighMem ||
|
|
|
|
// || `[0x3a000000, 0x4fffffff]` || HighShadow ||
|
|
|
|
// || `[0x36000000, 0x39ffffff]` || ShadowGap ||
|
|
|
|
// || `[0x30000000, 0x35ffffff]` || LowShadow ||
|
|
|
|
// || `[0x00000000, 0x2fffffff]` || LowMem ||
|
2011-11-30 09:07:02 +08:00
|
|
|
|
2013-09-16 23:45:06 +08:00
|
|
|
static const u64 kDefaultShadowScale = 3;
|
2014-04-24 01:14:45 +08:00
|
|
|
static const u64 kDefaultShadowOffset32 = 1ULL << 29; // 0x20000000
|
2013-09-16 23:45:06 +08:00
|
|
|
static const u64 kDefaultShadowOffset64 = 1ULL << 44;
|
|
|
|
static const u64 kDefaultShort64bitShadowOffset = 0x7FFF8000; // < 2G.
|
2015-06-24 05:39:54 +08:00
|
|
|
static const u64 kIosShadowOffset32 = 1ULL << 30; // 0x40000000
|
2016-02-02 10:01:17 +08:00
|
|
|
static const u64 kIosShadowOffset64 = 0x120200000;
|
2015-06-24 05:39:54 +08:00
|
|
|
static const u64 kIosSimShadowOffset32 = 1ULL << 30;
|
|
|
|
static const u64 kIosSimShadowOffset64 = kDefaultShadowOffset64;
|
2014-02-13 15:50:20 +08:00
|
|
|
static const u64 kAArch64_ShadowOffset64 = 1ULL << 36;
|
2014-11-05 03:46:15 +08:00
|
|
|
static const u64 kMIPS32_ShadowOffset32 = 0x0aaa0000;
|
2015-01-31 17:13:58 +08:00
|
|
|
static const u64 kMIPS64_ShadowOffset64 = 1ULL << 37;
|
2014-05-30 16:52:03 +08:00
|
|
|
static const u64 kPPC64_ShadowOffset64 = 1ULL << 41;
|
2016-04-30 18:02:12 +08:00
|
|
|
static const u64 kSystemZ_ShadowOffset64 = 1ULL << 52;
|
2014-05-12 19:03:46 +08:00
|
|
|
static const u64 kFreeBSD_ShadowOffset32 = 1ULL << 30; // 0x40000000
|
|
|
|
static const u64 kFreeBSD_ShadowOffset64 = 1ULL << 46; // 0x400000000000
|
2015-01-22 20:24:21 +08:00
|
|
|
static const u64 kWindowsShadowOffset32 = 3ULL << 28; // 0x30000000
|
2016-06-21 23:11:24 +08:00
|
|
|
static const u64 kWindowsShadowOffset64 = 1ULL << 45; // 32TB
|
2013-09-16 23:45:06 +08:00
|
|
|
|
2014-01-16 18:16:19 +08:00
|
|
|
#define SHADOW_SCALE kDefaultShadowScale
|
2015-07-30 02:22:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
#if SANITIZER_WORDSIZE == 32
|
|
|
|
# if SANITIZER_ANDROID
|
|
|
|
# define SHADOW_OFFSET (0)
|
|
|
|
# elif defined(__mips__)
|
2014-01-16 18:16:19 +08:00
|
|
|
# define SHADOW_OFFSET kMIPS32_ShadowOffset32
|
2014-05-12 19:03:46 +08:00
|
|
|
# elif SANITIZER_FREEBSD
|
|
|
|
# define SHADOW_OFFSET kFreeBSD_ShadowOffset32
|
2015-01-13 01:38:58 +08:00
|
|
|
# elif SANITIZER_WINDOWS
|
|
|
|
# define SHADOW_OFFSET kWindowsShadowOffset32
|
2015-06-24 05:39:54 +08:00
|
|
|
# elif SANITIZER_IOS
|
2016-02-02 10:01:17 +08:00
|
|
|
# if SANITIZER_IOSSIM
|
|
|
|
# define SHADOW_OFFSET kIosSimShadowOffset32
|
|
|
|
# else
|
|
|
|
# define SHADOW_OFFSET kIosShadowOffset32
|
|
|
|
# endif
|
2014-01-16 18:16:19 +08:00
|
|
|
# else
|
2015-01-13 01:38:58 +08:00
|
|
|
# define SHADOW_OFFSET kDefaultShadowOffset32
|
2014-01-16 18:16:19 +08:00
|
|
|
# endif
|
2015-07-30 02:22:25 +08:00
|
|
|
#else
|
2016-02-02 10:01:17 +08:00
|
|
|
# if SANITIZER_IOS
|
|
|
|
# if SANITIZER_IOSSIM
|
|
|
|
# define SHADOW_OFFSET kIosSimShadowOffset64
|
|
|
|
# else
|
|
|
|
# define SHADOW_OFFSET kIosShadowOffset64
|
|
|
|
# endif
|
|
|
|
# elif defined(__aarch64__)
|
2014-02-13 15:50:20 +08:00
|
|
|
# define SHADOW_OFFSET kAArch64_ShadowOffset64
|
2014-05-30 16:52:03 +08:00
|
|
|
# elif defined(__powerpc64__)
|
|
|
|
# define SHADOW_OFFSET kPPC64_ShadowOffset64
|
2016-04-30 18:02:12 +08:00
|
|
|
# elif defined(__s390x__)
|
|
|
|
# define SHADOW_OFFSET kSystemZ_ShadowOffset64
|
2014-05-12 19:03:46 +08:00
|
|
|
# elif SANITIZER_FREEBSD
|
|
|
|
# define SHADOW_OFFSET kFreeBSD_ShadowOffset64
|
2014-02-13 15:50:20 +08:00
|
|
|
# elif SANITIZER_MAC
|
2014-01-16 18:16:19 +08:00
|
|
|
# define SHADOW_OFFSET kDefaultShadowOffset64
|
2014-11-13 02:23:16 +08:00
|
|
|
# elif defined(__mips64)
|
|
|
|
# define SHADOW_OFFSET kMIPS64_ShadowOffset64
|
2016-06-21 23:11:24 +08:00
|
|
|
# elif SANITIZER_WINDOWS64
|
|
|
|
# define SHADOW_OFFSET kWindowsShadowOffset64
|
2012-05-23 19:52:37 +08:00
|
|
|
# else
|
2014-01-16 18:16:19 +08:00
|
|
|
# define SHADOW_OFFSET kDefaultShort64bitShadowOffset
|
2012-05-23 19:52:37 +08:00
|
|
|
# endif
|
2014-01-16 18:16:19 +08:00
|
|
|
#endif
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
#define SHADOW_GRANULARITY (1ULL << SHADOW_SCALE)
|
2013-01-23 21:27:43 +08:00
|
|
|
#define MEM_TO_SHADOW(mem) (((mem) >> SHADOW_SCALE) + (SHADOW_OFFSET))
|
2012-05-12 20:33:10 +08:00
|
|
|
#define SHADOW_TO_MEM(shadow) (((shadow) - SHADOW_OFFSET) << SHADOW_SCALE)
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
#define kLowMemBeg 0
|
|
|
|
#define kLowMemEnd (SHADOW_OFFSET ? SHADOW_OFFSET - 1 : 0)
|
|
|
|
|
|
|
|
#define kLowShadowBeg SHADOW_OFFSET
|
|
|
|
#define kLowShadowEnd MEM_TO_SHADOW(kLowMemEnd)
|
|
|
|
|
|
|
|
#define kHighMemBeg (MEM_TO_SHADOW(kHighMemEnd) + 1)
|
|
|
|
|
|
|
|
#define kHighShadowBeg MEM_TO_SHADOW(kHighMemBeg)
|
|
|
|
#define kHighShadowEnd MEM_TO_SHADOW(kHighMemEnd)
|
|
|
|
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
# define kMidShadowBeg MEM_TO_SHADOW(kMidMemBeg)
|
|
|
|
# define kMidShadowEnd MEM_TO_SHADOW(kMidMemEnd)
|
|
|
|
|
2012-11-24 13:03:11 +08:00
|
|
|
// With the zero shadow base we can not actually map pages starting from 0.
|
|
|
|
// This constant is somewhat arbitrary.
|
2015-08-08 06:38:44 +08:00
|
|
|
#define kZeroBaseShadowStart 0
|
|
|
|
#define kZeroBaseMaxShadowStart (1 << 18)
|
2012-11-24 13:03:11 +08:00
|
|
|
|
|
|
|
#define kShadowGapBeg (kLowShadowEnd ? kLowShadowEnd + 1 \
|
|
|
|
: kZeroBaseShadowStart)
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
#define kShadowGapEnd ((kMidMemBeg ? kMidShadowBeg : kHighShadowBeg) - 1)
|
|
|
|
|
|
|
|
#define kShadowGap2Beg (kMidMemBeg ? kMidShadowEnd + 1 : 0)
|
|
|
|
#define kShadowGap2End (kMidMemBeg ? kMidMemBeg - 1 : 0)
|
|
|
|
|
|
|
|
#define kShadowGap3Beg (kMidMemBeg ? kMidMemEnd + 1 : 0)
|
|
|
|
#define kShadowGap3End (kMidMemBeg ? kHighShadowBeg - 1 : 0)
|
|
|
|
|
|
|
|
#define DO_ASAN_MAPPING_PROFILE 0 // Set to 1 to profile the functions below.
|
|
|
|
|
|
|
|
#if DO_ASAN_MAPPING_PROFILE
|
|
|
|
# define PROFILE_ASAN_MAPPING() AsanMappingProfile[__LINE__]++;
|
|
|
|
#else
|
|
|
|
# define PROFILE_ASAN_MAPPING()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// If 1, all shadow boundaries are constants.
|
|
|
|
// Don't set to 1 other than for testing.
|
|
|
|
#define ASAN_FIXED_MAPPING 0
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
namespace __asan {
|
|
|
|
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
extern uptr AsanMappingProfile[];
|
|
|
|
|
|
|
|
#if ASAN_FIXED_MAPPING
|
|
|
|
// Fixed mapping for 64-bit Linux. Mostly used for performance comparison
|
|
|
|
// with non-fixed mapping. As of r175253 (Feb 2013) the performance
|
|
|
|
// difference between fixed and non-fixed mapping is below the noise level.
|
|
|
|
static uptr kHighMemEnd = 0x7fffffffffffULL;
|
|
|
|
static uptr kMidMemBeg = 0x3000000000ULL;
|
2013-02-28 20:28:37 +08:00
|
|
|
static uptr kMidMemEnd = 0x4fffffffffULL;
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
#else
|
|
|
|
extern uptr kHighMemEnd, kMidMemBeg, kMidMemEnd; // Initialized in __asan_init.
|
|
|
|
#endif
|
2013-01-23 21:27:43 +08:00
|
|
|
|
2012-05-31 22:35:53 +08:00
|
|
|
static inline bool AddrIsInLowMem(uptr a) {
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
PROFILE_ASAN_MAPPING();
|
2011-11-30 09:07:02 +08:00
|
|
|
return a < kLowMemEnd;
|
|
|
|
}
|
|
|
|
|
2012-05-31 22:35:53 +08:00
|
|
|
static inline bool AddrIsInLowShadow(uptr a) {
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
PROFILE_ASAN_MAPPING();
|
2011-11-30 09:07:02 +08:00
|
|
|
return a >= kLowShadowBeg && a <= kLowShadowEnd;
|
|
|
|
}
|
|
|
|
|
2012-05-31 22:35:53 +08:00
|
|
|
static inline bool AddrIsInHighMem(uptr a) {
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
PROFILE_ASAN_MAPPING();
|
2011-11-30 09:07:02 +08:00
|
|
|
return a >= kHighMemBeg && a <= kHighMemEnd;
|
|
|
|
}
|
|
|
|
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
static inline bool AddrIsInMidMem(uptr a) {
|
|
|
|
PROFILE_ASAN_MAPPING();
|
|
|
|
return kMidMemBeg && a >= kMidMemBeg && a <= kMidMemEnd;
|
|
|
|
}
|
|
|
|
|
2012-05-31 22:35:53 +08:00
|
|
|
static inline bool AddrIsInMem(uptr a) {
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
PROFILE_ASAN_MAPPING();
|
|
|
|
return AddrIsInLowMem(a) || AddrIsInMidMem(a) || AddrIsInHighMem(a);
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
|
|
|
|
2012-05-31 22:35:53 +08:00
|
|
|
static inline uptr MemToShadow(uptr p) {
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
PROFILE_ASAN_MAPPING();
|
2011-11-30 09:07:02 +08:00
|
|
|
CHECK(AddrIsInMem(p));
|
|
|
|
return MEM_TO_SHADOW(p);
|
|
|
|
}
|
|
|
|
|
2012-05-31 22:35:53 +08:00
|
|
|
static inline bool AddrIsInHighShadow(uptr a) {
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
PROFILE_ASAN_MAPPING();
|
|
|
|
return a >= kHighShadowBeg && a <= kHighMemEnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool AddrIsInMidShadow(uptr a) {
|
|
|
|
PROFILE_ASAN_MAPPING();
|
|
|
|
return kMidMemBeg && a >= kMidShadowBeg && a <= kMidMemEnd;
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
|
|
|
|
2012-05-31 22:35:53 +08:00
|
|
|
static inline bool AddrIsInShadow(uptr a) {
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
PROFILE_ASAN_MAPPING();
|
|
|
|
return AddrIsInLowShadow(a) || AddrIsInMidShadow(a) || AddrIsInHighShadow(a);
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
|
|
|
|
2012-07-23 16:22:27 +08:00
|
|
|
static inline bool AddrIsInShadowGap(uptr a) {
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
PROFILE_ASAN_MAPPING();
|
|
|
|
if (kMidMemBeg) {
|
|
|
|
if (a <= kShadowGapEnd)
|
|
|
|
return SHADOW_OFFSET == 0 || a >= kShadowGapBeg;
|
|
|
|
return (a >= kShadowGap2Beg && a <= kShadowGap2End) ||
|
|
|
|
(a >= kShadowGap3Beg && a <= kShadowGap3End);
|
|
|
|
}
|
2013-01-21 18:51:18 +08:00
|
|
|
// In zero-based shadow mode we treat addresses near zero as addresses
|
|
|
|
// in shadow gap as well.
|
2013-01-21 19:36:38 +08:00
|
|
|
if (SHADOW_OFFSET == 0)
|
2013-01-21 18:51:18 +08:00
|
|
|
return a <= kShadowGapEnd;
|
2012-07-23 16:22:27 +08:00
|
|
|
return a >= kShadowGapBeg && a <= kShadowGapEnd;
|
|
|
|
}
|
|
|
|
|
2012-05-31 22:35:53 +08:00
|
|
|
static inline bool AddrIsAlignedByGranularity(uptr a) {
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
PROFILE_ASAN_MAPPING();
|
2011-12-01 02:50:23 +08:00
|
|
|
return (a & (SHADOW_GRANULARITY - 1)) == 0;
|
|
|
|
}
|
|
|
|
|
2012-05-31 22:35:53 +08:00
|
|
|
static inline bool AddressIsPoisoned(uptr a) {
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
PROFILE_ASAN_MAPPING();
|
2012-05-31 22:35:53 +08:00
|
|
|
const uptr kAccessSize = 1;
|
2013-02-21 15:07:39 +08:00
|
|
|
u8 *shadow_address = (u8*)MEM_TO_SHADOW(a);
|
2012-05-31 23:02:07 +08:00
|
|
|
s8 shadow_value = *shadow_address;
|
2012-03-15 09:18:06 +08:00
|
|
|
if (shadow_value) {
|
2012-05-31 23:02:07 +08:00
|
|
|
u8 last_accessed_byte = (a & (SHADOW_GRANULARITY - 1))
|
2012-03-15 09:18:06 +08:00
|
|
|
+ kAccessSize - 1;
|
|
|
|
return (last_accessed_byte >= shadow_value);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
[asan] make asan work with 7fff8000 offset and prelink
When prelink is installed in the system, prelink-ed
libraries map between 0x003000000000 and 0x004000000000 thus occupying the shadow Gap,
so we need so split the address space even further, like this:
|| [0x10007fff8000, 0x7fffffffffff] || HighMem ||
|| [0x02008fff7000, 0x10007fff7fff] || HighShadow ||
|| [0x004000000000, 0x02008fff6fff] || ShadowGap3 ||
|| [0x003000000000, 0x003fffffffff] || MidMem ||
|| [0x00087fff8000, 0x002fffffffff] || ShadowGap2 ||
|| [0x00067fff8000, 0x00087fff7fff] || MidShadow ||
|| [0x00008fff7000, 0x00067fff7fff] || ShadowGap ||
|| [0x00007fff8000, 0x00008fff6fff] || LowShadow ||
|| [0x000000000000, 0x00007fff7fff] || LowMem ||
Do it only if necessary.
Also added a bit of profiling code to make sure that the
mapping code is efficient.
Added a lit test to simulate prelink-ed libraries.
Unfortunately, this test does not work with binutils-gold linker.
If gold is the default linker the test silently passes.
Also replaced
__has_feature(address_sanitizer)
with
__has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
in two places.
Patch partially by Jakub Jelinek.
llvm-svn: 175263
2013-02-15 20:00:24 +08:00
|
|
|
// Must be after all calls to PROFILE_ASAN_MAPPING().
|
|
|
|
static const uptr kAsanMappingProfileSize = __LINE__;
|
|
|
|
|
2011-11-30 09:07:02 +08:00
|
|
|
} // namespace __asan
|
|
|
|
|
|
|
|
#endif // ASAN_MAPPING_H
|