2012-11-12 16:53:47 +01:00
|
|
|
//===-- asan_report.cc ----------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// This file contains error reporting code.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "asan_flags.h"
|
|
|
|
#include "asan_internal.h"
|
|
|
|
#include "asan_mapping.h"
|
|
|
|
#include "asan_report.h"
|
|
|
|
#include "asan_stack.h"
|
|
|
|
#include "asan_thread.h"
|
2013-01-10 13:44:08 +01:00
|
|
|
#include "sanitizer_common/sanitizer_common.h"
|
2013-11-04 22:33:31 +01:00
|
|
|
#include "sanitizer_common/sanitizer_flags.h"
|
2013-01-10 13:44:08 +01:00
|
|
|
#include "sanitizer_common/sanitizer_report_decorator.h"
|
2013-12-05 10:18:38 +01:00
|
|
|
#include "sanitizer_common/sanitizer_stackdepot.h"
|
2013-01-10 13:44:08 +01:00
|
|
|
#include "sanitizer_common/sanitizer_symbolizer.h"
|
2012-11-12 16:53:47 +01:00
|
|
|
|
|
|
|
namespace __asan {
|
|
|
|
|
|
|
|
// -------------------- User-specified callbacks ----------------- {{{1
|
|
|
|
static void (*error_report_callback)(const char*);
|
|
|
|
static char *error_message_buffer = 0;
|
|
|
|
static uptr error_message_buffer_pos = 0;
|
|
|
|
static uptr error_message_buffer_size = 0;
|
|
|
|
|
|
|
|
void AppendToErrorMessageBuffer(const char *buffer) {
|
|
|
|
if (error_message_buffer) {
|
|
|
|
uptr length = internal_strlen(buffer);
|
|
|
|
CHECK_GE(error_message_buffer_size, error_message_buffer_pos);
|
|
|
|
uptr remaining = error_message_buffer_size - error_message_buffer_pos;
|
|
|
|
internal_strncpy(error_message_buffer + error_message_buffer_pos,
|
|
|
|
buffer, remaining);
|
|
|
|
error_message_buffer[error_message_buffer_size - 1] = '\0';
|
|
|
|
// FIXME: reallocate the buffer instead of truncating the message.
|
|
|
|
error_message_buffer_pos += remaining > length ? length : remaining;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-10 13:44:08 +01:00
|
|
|
// ---------------------- Decorator ------------------------------ {{{1
|
|
|
|
class Decorator: private __sanitizer::AnsiColorDecorator {
|
|
|
|
public:
|
|
|
|
Decorator() : __sanitizer::AnsiColorDecorator(PrintsToTtyCached()) { }
|
|
|
|
const char *Warning() { return Red(); }
|
|
|
|
const char *EndWarning() { return Default(); }
|
|
|
|
const char *Access() { return Blue(); }
|
|
|
|
const char *EndAccess() { return Default(); }
|
|
|
|
const char *Location() { return Green(); }
|
|
|
|
const char *EndLocation() { return Default(); }
|
|
|
|
const char *Allocation() { return Magenta(); }
|
|
|
|
const char *EndAllocation() { return Default(); }
|
|
|
|
|
|
|
|
const char *ShadowByte(u8 byte) {
|
|
|
|
switch (byte) {
|
|
|
|
case kAsanHeapLeftRedzoneMagic:
|
|
|
|
case kAsanHeapRightRedzoneMagic:
|
|
|
|
return Red();
|
|
|
|
case kAsanHeapFreeMagic:
|
|
|
|
return Magenta();
|
|
|
|
case kAsanStackLeftRedzoneMagic:
|
|
|
|
case kAsanStackMidRedzoneMagic:
|
|
|
|
case kAsanStackRightRedzoneMagic:
|
|
|
|
case kAsanStackPartialRedzoneMagic:
|
|
|
|
return Red();
|
|
|
|
case kAsanStackAfterReturnMagic:
|
|
|
|
return Magenta();
|
|
|
|
case kAsanInitializationOrderMagic:
|
|
|
|
return Cyan();
|
|
|
|
case kAsanUserPoisonedMemoryMagic:
|
2013-12-05 10:18:38 +01:00
|
|
|
case kAsanContiguousContainerOOBMagic:
|
2013-01-10 13:44:08 +01:00
|
|
|
return Blue();
|
|
|
|
case kAsanStackUseAfterScopeMagic:
|
|
|
|
return Magenta();
|
|
|
|
case kAsanGlobalRedzoneMagic:
|
|
|
|
return Red();
|
|
|
|
case kAsanInternalHeapMagic:
|
|
|
|
return Yellow();
|
|
|
|
default:
|
|
|
|
return Default();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const char *EndShadowByte() { return Default(); }
|
|
|
|
};
|
|
|
|
|
2012-11-12 16:53:47 +01:00
|
|
|
// ---------------------- Helper functions ----------------------- {{{1
|
|
|
|
|
2013-01-10 13:44:08 +01:00
|
|
|
static void PrintShadowByte(const char *before, u8 byte,
|
|
|
|
const char *after = "\n") {
|
|
|
|
Decorator d;
|
|
|
|
Printf("%s%s%x%x%s%s", before,
|
|
|
|
d.ShadowByte(byte), byte >> 4, byte & 15, d.EndShadowByte(), after);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void PrintShadowBytes(const char *before, u8 *bytes,
|
|
|
|
u8 *guilty, uptr n) {
|
|
|
|
Decorator d;
|
|
|
|
if (before)
|
|
|
|
Printf("%s%p:", before, bytes);
|
|
|
|
for (uptr i = 0; i < n; i++) {
|
|
|
|
u8 *p = bytes + i;
|
|
|
|
const char *before = p == guilty ? "[" :
|
2013-11-04 22:33:31 +01:00
|
|
|
(p - 1 == guilty && i != 0) ? "" : " ";
|
2013-01-10 13:44:08 +01:00
|
|
|
const char *after = p == guilty ? "]" : "";
|
|
|
|
PrintShadowByte(before, *p, after);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
Printf("\n");
|
|
|
|
}
|
|
|
|
|
2013-02-13 11:46:01 +01:00
|
|
|
static void PrintLegend() {
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("Shadow byte legend (one shadow byte represents %d "
|
|
|
|
"application bytes):\n", (int)SHADOW_GRANULARITY);
|
|
|
|
PrintShadowByte(" Addressable: ", 0);
|
|
|
|
Printf(" Partially addressable: ");
|
2013-11-04 22:33:31 +01:00
|
|
|
for (u8 i = 1; i < SHADOW_GRANULARITY; i++)
|
2013-01-10 13:44:08 +01:00
|
|
|
PrintShadowByte("", i, " ");
|
|
|
|
Printf("\n");
|
2013-12-05 10:18:38 +01:00
|
|
|
PrintShadowByte(" Heap left redzone: ", kAsanHeapLeftRedzoneMagic);
|
|
|
|
PrintShadowByte(" Heap right redzone: ", kAsanHeapRightRedzoneMagic);
|
|
|
|
PrintShadowByte(" Freed heap region: ", kAsanHeapFreeMagic);
|
|
|
|
PrintShadowByte(" Stack left redzone: ", kAsanStackLeftRedzoneMagic);
|
|
|
|
PrintShadowByte(" Stack mid redzone: ", kAsanStackMidRedzoneMagic);
|
|
|
|
PrintShadowByte(" Stack right redzone: ", kAsanStackRightRedzoneMagic);
|
|
|
|
PrintShadowByte(" Stack partial redzone: ", kAsanStackPartialRedzoneMagic);
|
|
|
|
PrintShadowByte(" Stack after return: ", kAsanStackAfterReturnMagic);
|
|
|
|
PrintShadowByte(" Stack use after scope: ", kAsanStackUseAfterScopeMagic);
|
|
|
|
PrintShadowByte(" Global redzone: ", kAsanGlobalRedzoneMagic);
|
|
|
|
PrintShadowByte(" Global init order: ", kAsanInitializationOrderMagic);
|
|
|
|
PrintShadowByte(" Poisoned by user: ", kAsanUserPoisonedMemoryMagic);
|
|
|
|
PrintShadowByte(" Contiguous container OOB:",
|
|
|
|
kAsanContiguousContainerOOBMagic);
|
|
|
|
PrintShadowByte(" ASan internal: ", kAsanInternalHeapMagic);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
2013-02-13 11:46:01 +01:00
|
|
|
static void PrintShadowMemoryForAddress(uptr addr) {
|
|
|
|
if (!AddrIsInMem(addr))
|
|
|
|
return;
|
|
|
|
uptr shadow_addr = MemToShadow(addr);
|
|
|
|
const uptr n_bytes_per_row = 16;
|
|
|
|
uptr aligned_shadow = shadow_addr & ~(n_bytes_per_row - 1);
|
|
|
|
Printf("Shadow bytes around the buggy address:\n");
|
|
|
|
for (int i = -5; i <= 5; i++) {
|
|
|
|
const char *prefix = (i == 0) ? "=>" : " ";
|
|
|
|
PrintShadowBytes(prefix,
|
|
|
|
(u8*)(aligned_shadow + i * n_bytes_per_row),
|
|
|
|
(u8*)shadow_addr, n_bytes_per_row);
|
|
|
|
}
|
|
|
|
if (flags()->print_legend)
|
|
|
|
PrintLegend();
|
|
|
|
}
|
|
|
|
|
2012-11-12 16:53:47 +01:00
|
|
|
static void PrintZoneForPointer(uptr ptr, uptr zone_ptr,
|
|
|
|
const char *zone_name) {
|
|
|
|
if (zone_ptr) {
|
|
|
|
if (zone_name) {
|
|
|
|
Printf("malloc_zone_from_ptr(%p) = %p, which is %s\n",
|
|
|
|
ptr, zone_ptr, zone_name);
|
|
|
|
} else {
|
|
|
|
Printf("malloc_zone_from_ptr(%p) = %p, which doesn't have a name\n",
|
|
|
|
ptr, zone_ptr);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Printf("malloc_zone_from_ptr(%p) = 0\n", ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
static void DescribeThread(AsanThread *t) {
|
|
|
|
if (t)
|
|
|
|
DescribeThread(t->context());
|
|
|
|
}
|
|
|
|
|
2012-11-12 16:53:47 +01:00
|
|
|
// ---------------------- Address Descriptions ------------------- {{{1
|
|
|
|
|
|
|
|
static bool IsASCII(unsigned char c) {
|
|
|
|
return /*0x00 <= c &&*/ c <= 0x7F;
|
|
|
|
}
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
static const char *MaybeDemangleGlobalName(const char *name) {
|
|
|
|
// We can spoil names of globals with C linkage, so use an heuristic
|
|
|
|
// approach to check if the name should be demangled.
|
2013-12-05 10:18:38 +01:00
|
|
|
return (name[0] == '_' && name[1] == 'Z')
|
|
|
|
? Symbolizer::Get()->Demangle(name)
|
2013-11-04 22:33:31 +01:00
|
|
|
: name;
|
|
|
|
}
|
|
|
|
|
2012-11-12 16:53:47 +01:00
|
|
|
// Check if the global is a zero-terminated ASCII string. If so, print it.
|
|
|
|
static void PrintGlobalNameIfASCII(const __asan_global &g) {
|
|
|
|
for (uptr p = g.beg; p < g.beg + g.size - 1; p++) {
|
2013-11-04 22:33:31 +01:00
|
|
|
unsigned char c = *(unsigned char*)p;
|
|
|
|
if (c == '\0' || !IsASCII(c)) return;
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
2013-11-04 22:33:31 +01:00
|
|
|
if (*(char*)(g.beg + g.size - 1) != '\0') return;
|
|
|
|
Printf(" '%s' is ascii string '%s'\n",
|
|
|
|
MaybeDemangleGlobalName(g.name), (char*)g.beg);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
2013-02-13 11:46:01 +01:00
|
|
|
bool DescribeAddressRelativeToGlobal(uptr addr, uptr size,
|
|
|
|
const __asan_global &g) {
|
|
|
|
static const uptr kMinimalDistanceFromAnotherGlobal = 64;
|
|
|
|
if (addr <= g.beg - kMinimalDistanceFromAnotherGlobal) return false;
|
2012-11-12 16:53:47 +01:00
|
|
|
if (addr >= g.beg + g.size_with_redzone) return false;
|
2013-01-10 13:44:08 +01:00
|
|
|
Decorator d;
|
|
|
|
Printf("%s", d.Location());
|
2012-11-12 16:53:47 +01:00
|
|
|
if (addr < g.beg) {
|
2013-02-13 11:46:01 +01:00
|
|
|
Printf("%p is located %zd bytes to the left", (void*)addr, g.beg - addr);
|
|
|
|
} else if (addr + size > g.beg + g.size) {
|
|
|
|
if (addr < g.beg + g.size)
|
|
|
|
addr = g.beg + g.size;
|
|
|
|
Printf("%p is located %zd bytes to the right", (void*)addr,
|
|
|
|
addr - (g.beg + g.size));
|
2012-11-12 16:53:47 +01:00
|
|
|
} else {
|
2013-02-13 11:46:01 +01:00
|
|
|
// Can it happen?
|
|
|
|
Printf("%p is located %zd bytes inside", (void*)addr, addr - g.beg);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
2013-11-04 22:33:31 +01:00
|
|
|
Printf(" of global variable '%s' from '%s' (0x%zx) of size %zu\n",
|
|
|
|
MaybeDemangleGlobalName(g.name), g.module_name, g.beg, g.size);
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.EndLocation());
|
2012-11-12 16:53:47 +01:00
|
|
|
PrintGlobalNameIfASCII(g);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DescribeAddressIfShadow(uptr addr) {
|
|
|
|
if (AddrIsInMem(addr))
|
|
|
|
return false;
|
|
|
|
static const char kAddrInShadowReport[] =
|
|
|
|
"Address %p is located in the %s.\n";
|
|
|
|
if (AddrIsInShadowGap(addr)) {
|
|
|
|
Printf(kAddrInShadowReport, addr, "shadow gap area");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (AddrIsInHighShadow(addr)) {
|
|
|
|
Printf(kAddrInShadowReport, addr, "high shadow area");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (AddrIsInLowShadow(addr)) {
|
|
|
|
Printf(kAddrInShadowReport, addr, "low shadow area");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
CHECK(0 && "Address is not in memory and not in shadow?");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
// Return " (thread_name) " or an empty string if the name is empty.
|
|
|
|
const char *ThreadNameWithParenthesis(AsanThreadContext *t, char buff[],
|
|
|
|
uptr buff_len) {
|
|
|
|
const char *name = t->name;
|
|
|
|
if (name[0] == '\0') return "";
|
|
|
|
buff[0] = 0;
|
|
|
|
internal_strncat(buff, " (", 3);
|
|
|
|
internal_strncat(buff, name, buff_len - 4);
|
|
|
|
internal_strncat(buff, ")", 2);
|
|
|
|
return buff;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *ThreadNameWithParenthesis(u32 tid, char buff[],
|
|
|
|
uptr buff_len) {
|
|
|
|
if (tid == kInvalidTid) return "";
|
|
|
|
asanThreadRegistry().CheckLocked();
|
|
|
|
AsanThreadContext *t = GetThreadContextByTidLocked(tid);
|
|
|
|
return ThreadNameWithParenthesis(t, buff, buff_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintAccessAndVarIntersection(const char *var_name,
|
|
|
|
uptr var_beg, uptr var_size,
|
|
|
|
uptr addr, uptr access_size,
|
|
|
|
uptr prev_var_end, uptr next_var_beg) {
|
|
|
|
uptr var_end = var_beg + var_size;
|
|
|
|
uptr addr_end = addr + access_size;
|
|
|
|
const char *pos_descr = 0;
|
|
|
|
// If the variable [var_beg, var_end) is the nearest variable to the
|
|
|
|
// current memory access, indicate it in the log.
|
|
|
|
if (addr >= var_beg) {
|
|
|
|
if (addr_end <= var_end)
|
|
|
|
pos_descr = "is inside"; // May happen if this is a use-after-return.
|
|
|
|
else if (addr < var_end)
|
|
|
|
pos_descr = "partially overflows";
|
|
|
|
else if (addr_end <= next_var_beg &&
|
|
|
|
next_var_beg - addr_end >= addr - var_end)
|
|
|
|
pos_descr = "overflows";
|
|
|
|
} else {
|
|
|
|
if (addr_end > var_beg)
|
|
|
|
pos_descr = "partially underflows";
|
|
|
|
else if (addr >= prev_var_end &&
|
|
|
|
addr - prev_var_end >= var_beg - addr_end)
|
|
|
|
pos_descr = "underflows";
|
|
|
|
}
|
|
|
|
Printf(" [%zd, %zd) '%s'", var_beg, var_beg + var_size, var_name);
|
|
|
|
if (pos_descr) {
|
|
|
|
Decorator d;
|
|
|
|
// FIXME: we may want to also print the size of the access here,
|
|
|
|
// but in case of accesses generated by memset it may be confusing.
|
|
|
|
Printf("%s <== Memory access at offset %zd %s this variable%s\n",
|
|
|
|
d.Location(), addr, pos_descr, d.EndLocation());
|
|
|
|
} else {
|
|
|
|
Printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct StackVarDescr {
|
|
|
|
uptr beg;
|
|
|
|
uptr size;
|
|
|
|
const char *name_pos;
|
|
|
|
uptr name_len;
|
|
|
|
};
|
|
|
|
|
2012-11-12 16:53:47 +01:00
|
|
|
bool DescribeAddressIfStack(uptr addr, uptr access_size) {
|
2013-11-04 22:33:31 +01:00
|
|
|
AsanThread *t = FindThreadByStackAddress(addr);
|
2012-11-12 16:53:47 +01:00
|
|
|
if (!t) return false;
|
2013-11-04 22:33:31 +01:00
|
|
|
const uptr kBufSize = 4095;
|
2012-11-12 16:53:47 +01:00
|
|
|
char buf[kBufSize];
|
|
|
|
uptr offset = 0;
|
2013-11-04 22:33:31 +01:00
|
|
|
uptr frame_pc = 0;
|
|
|
|
char tname[128];
|
|
|
|
const char *frame_descr = t->GetFrameNameByAddr(addr, &offset, &frame_pc);
|
|
|
|
|
|
|
|
#ifdef __powerpc64__
|
|
|
|
// On PowerPC64, the address of a function actually points to a
|
|
|
|
// three-doubleword data structure with the first field containing
|
|
|
|
// the address of the function's code.
|
|
|
|
frame_pc = *reinterpret_cast<uptr *>(frame_pc);
|
|
|
|
#endif
|
|
|
|
|
2012-11-12 16:53:47 +01:00
|
|
|
// This string is created by the compiler and has the following form:
|
2013-11-04 22:33:31 +01:00
|
|
|
// "n alloc_1 alloc_2 ... alloc_n"
|
2012-11-12 16:53:47 +01:00
|
|
|
// where alloc_i looks like "offset size len ObjectName ".
|
|
|
|
CHECK(frame_descr);
|
2013-01-10 13:44:08 +01:00
|
|
|
Decorator d;
|
|
|
|
Printf("%s", d.Location());
|
2013-11-04 22:33:31 +01:00
|
|
|
Printf("Address %p is located in stack of thread T%d%s "
|
|
|
|
"at offset %zu in frame\n",
|
|
|
|
addr, t->tid(),
|
|
|
|
ThreadNameWithParenthesis(t->tid(), tname, sizeof(tname)),
|
|
|
|
offset);
|
|
|
|
// Now we print the frame where the alloca has happened.
|
|
|
|
// We print this frame as a stack trace with one element.
|
|
|
|
// The symbolizer may print more than one frame if inlining was involved.
|
|
|
|
// The frame numbers may be different than those in the stack trace printed
|
|
|
|
// previously. That's unfortunate, but I have no better solution,
|
|
|
|
// especially given that the alloca may be from entirely different place
|
|
|
|
// (e.g. use-after-scope, or different thread's stack).
|
|
|
|
StackTrace alloca_stack;
|
|
|
|
alloca_stack.trace[0] = frame_pc + 16;
|
|
|
|
alloca_stack.size = 1;
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.EndLocation());
|
2013-11-04 22:33:31 +01:00
|
|
|
PrintStack(&alloca_stack);
|
2012-11-12 16:53:47 +01:00
|
|
|
// Report the number of stack objects.
|
|
|
|
char *p;
|
2013-11-04 22:33:31 +01:00
|
|
|
uptr n_objects = (uptr)internal_simple_strtoll(frame_descr, &p, 10);
|
|
|
|
CHECK_GT(n_objects, 0);
|
2012-11-12 16:53:47 +01:00
|
|
|
Printf(" This frame has %zu object(s):\n", n_objects);
|
2013-11-04 22:33:31 +01:00
|
|
|
|
2012-11-12 16:53:47 +01:00
|
|
|
// Report all objects in this frame.
|
2013-11-04 22:33:31 +01:00
|
|
|
InternalScopedBuffer<StackVarDescr> vars(n_objects);
|
2012-11-12 16:53:47 +01:00
|
|
|
for (uptr i = 0; i < n_objects; i++) {
|
|
|
|
uptr beg, size;
|
2013-11-04 22:33:31 +01:00
|
|
|
uptr len;
|
|
|
|
beg = (uptr)internal_simple_strtoll(p, &p, 10);
|
|
|
|
size = (uptr)internal_simple_strtoll(p, &p, 10);
|
|
|
|
len = (uptr)internal_simple_strtoll(p, &p, 10);
|
|
|
|
if (beg == 0 || size == 0 || *p != ' ') {
|
2012-11-12 16:53:47 +01:00
|
|
|
Printf("AddressSanitizer can't parse the stack frame "
|
|
|
|
"descriptor: |%s|\n", frame_descr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p++;
|
2013-11-04 22:33:31 +01:00
|
|
|
vars[i].beg = beg;
|
|
|
|
vars[i].size = size;
|
|
|
|
vars[i].name_pos = p;
|
|
|
|
vars[i].name_len = len;
|
2012-11-12 16:53:47 +01:00
|
|
|
p += len;
|
2013-11-04 22:33:31 +01:00
|
|
|
}
|
|
|
|
for (uptr i = 0; i < n_objects; i++) {
|
|
|
|
buf[0] = 0;
|
|
|
|
internal_strncat(buf, vars[i].name_pos,
|
|
|
|
static_cast<uptr>(Min(kBufSize, vars[i].name_len)));
|
|
|
|
uptr prev_var_end = i ? vars[i - 1].beg + vars[i - 1].size : 0;
|
|
|
|
uptr next_var_beg = i + 1 < n_objects ? vars[i + 1].beg : ~(0UL);
|
|
|
|
PrintAccessAndVarIntersection(buf, vars[i].beg, vars[i].size,
|
|
|
|
offset, access_size,
|
|
|
|
prev_var_end, next_var_beg);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
Printf("HINT: this may be a false positive if your program uses "
|
2012-11-23 15:46:25 +01:00
|
|
|
"some custom stack unwind mechanism or swapcontext\n"
|
2012-11-12 16:53:47 +01:00
|
|
|
" (longjmp and C++ exceptions *are* supported)\n");
|
2013-11-04 22:33:31 +01:00
|
|
|
DescribeThread(t);
|
2012-11-12 16:53:47 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DescribeAccessToHeapChunk(AsanChunkView chunk, uptr addr,
|
|
|
|
uptr access_size) {
|
2013-02-13 11:46:01 +01:00
|
|
|
sptr offset;
|
2013-01-10 13:44:08 +01:00
|
|
|
Decorator d;
|
|
|
|
Printf("%s", d.Location());
|
2013-02-13 11:46:01 +01:00
|
|
|
if (chunk.AddrIsAtLeft(addr, access_size, &offset)) {
|
|
|
|
Printf("%p is located %zd bytes to the left of", (void*)addr, offset);
|
2012-11-12 16:53:47 +01:00
|
|
|
} else if (chunk.AddrIsAtRight(addr, access_size, &offset)) {
|
2013-02-13 11:46:01 +01:00
|
|
|
if (offset < 0) {
|
|
|
|
addr -= offset;
|
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
Printf("%p is located %zd bytes to the right of", (void*)addr, offset);
|
|
|
|
} else if (chunk.AddrIsInside(addr, access_size, &offset)) {
|
|
|
|
Printf("%p is located %zd bytes inside of", (void*)addr, offset);
|
2012-11-12 16:53:47 +01:00
|
|
|
} else {
|
2013-02-13 11:46:01 +01:00
|
|
|
Printf("%p is located somewhere around (this is AddressSanitizer bug!)",
|
|
|
|
(void*)addr);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
Printf(" %zu-byte region [%p,%p)\n", chunk.UsedSize(),
|
|
|
|
(void*)(chunk.Beg()), (void*)(chunk.End()));
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.EndLocation());
|
|
|
|
}
|
|
|
|
|
2012-11-12 16:53:47 +01:00
|
|
|
void DescribeHeapAddress(uptr addr, uptr access_size) {
|
|
|
|
AsanChunkView chunk = FindHeapChunkByAddress(addr);
|
2013-12-05 10:18:38 +01:00
|
|
|
if (!chunk.IsValid()) {
|
|
|
|
Printf("AddressSanitizer can not describe address in more detail "
|
|
|
|
"(wild memory access suspected).\n");
|
|
|
|
return;
|
|
|
|
}
|
2012-11-12 16:53:47 +01:00
|
|
|
DescribeAccessToHeapChunk(chunk, addr, access_size);
|
|
|
|
CHECK(chunk.AllocTid() != kInvalidTid);
|
2013-11-04 22:33:31 +01:00
|
|
|
asanThreadRegistry().CheckLocked();
|
|
|
|
AsanThreadContext *alloc_thread =
|
|
|
|
GetThreadContextByTidLocked(chunk.AllocTid());
|
2012-11-12 16:53:47 +01:00
|
|
|
StackTrace alloc_stack;
|
|
|
|
chunk.GetAllocStack(&alloc_stack);
|
2013-01-10 13:44:08 +01:00
|
|
|
char tname[128];
|
|
|
|
Decorator d;
|
2013-11-04 22:33:31 +01:00
|
|
|
AsanThreadContext *free_thread = 0;
|
2012-11-12 16:53:47 +01:00
|
|
|
if (chunk.FreeTid() != kInvalidTid) {
|
2013-11-04 22:33:31 +01:00
|
|
|
free_thread = GetThreadContextByTidLocked(chunk.FreeTid());
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%sfreed by thread T%d%s here:%s\n", d.Allocation(),
|
2013-11-04 22:33:31 +01:00
|
|
|
free_thread->tid,
|
2013-01-10 13:44:08 +01:00
|
|
|
ThreadNameWithParenthesis(free_thread, tname, sizeof(tname)),
|
|
|
|
d.EndAllocation());
|
2012-11-12 16:53:47 +01:00
|
|
|
StackTrace free_stack;
|
|
|
|
chunk.GetFreeStack(&free_stack);
|
|
|
|
PrintStack(&free_stack);
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%spreviously allocated by thread T%d%s here:%s\n",
|
2013-11-04 22:33:31 +01:00
|
|
|
d.Allocation(), alloc_thread->tid,
|
2013-01-10 13:44:08 +01:00
|
|
|
ThreadNameWithParenthesis(alloc_thread, tname, sizeof(tname)),
|
|
|
|
d.EndAllocation());
|
2012-11-12 16:53:47 +01:00
|
|
|
} else {
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%sallocated by thread T%d%s here:%s\n", d.Allocation(),
|
2013-11-04 22:33:31 +01:00
|
|
|
alloc_thread->tid,
|
2013-01-10 13:44:08 +01:00
|
|
|
ThreadNameWithParenthesis(alloc_thread, tname, sizeof(tname)),
|
|
|
|
d.EndAllocation());
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
2013-11-04 22:33:31 +01:00
|
|
|
PrintStack(&alloc_stack);
|
|
|
|
DescribeThread(GetCurrentThread());
|
|
|
|
if (free_thread)
|
|
|
|
DescribeThread(free_thread);
|
|
|
|
DescribeThread(alloc_thread);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void DescribeAddress(uptr addr, uptr access_size) {
|
|
|
|
// Check if this is shadow or shadow gap.
|
|
|
|
if (DescribeAddressIfShadow(addr))
|
|
|
|
return;
|
|
|
|
CHECK(AddrIsInMem(addr));
|
2013-02-13 11:46:01 +01:00
|
|
|
if (DescribeAddressIfGlobal(addr, access_size))
|
2012-11-12 16:53:47 +01:00
|
|
|
return;
|
|
|
|
if (DescribeAddressIfStack(addr, access_size))
|
|
|
|
return;
|
|
|
|
// Assume it is a heap address.
|
|
|
|
DescribeHeapAddress(addr, access_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------- Thread description -------------------- {{{1
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
void DescribeThread(AsanThreadContext *context) {
|
|
|
|
CHECK(context);
|
|
|
|
asanThreadRegistry().CheckLocked();
|
2012-11-12 16:53:47 +01:00
|
|
|
// No need to announce the main thread.
|
2013-11-04 22:33:31 +01:00
|
|
|
if (context->tid == 0 || context->announced) {
|
2012-11-12 16:53:47 +01:00
|
|
|
return;
|
|
|
|
}
|
2013-11-04 22:33:31 +01:00
|
|
|
context->announced = true;
|
2013-01-10 13:44:08 +01:00
|
|
|
char tname[128];
|
2013-11-04 22:33:31 +01:00
|
|
|
Printf("Thread T%d%s", context->tid,
|
|
|
|
ThreadNameWithParenthesis(context->tid, tname, sizeof(tname)));
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf(" created by T%d%s here:\n",
|
2013-11-04 22:33:31 +01:00
|
|
|
context->parent_tid,
|
|
|
|
ThreadNameWithParenthesis(context->parent_tid,
|
2013-01-10 13:44:08 +01:00
|
|
|
tname, sizeof(tname)));
|
2013-12-05 10:18:38 +01:00
|
|
|
uptr stack_size;
|
|
|
|
const uptr *stack_trace = StackDepotGet(context->stack_id, &stack_size);
|
|
|
|
PrintStack(stack_trace, stack_size);
|
2012-11-12 16:53:47 +01:00
|
|
|
// Recursively described parent thread if needed.
|
|
|
|
if (flags()->print_full_thread_history) {
|
2013-11-04 22:33:31 +01:00
|
|
|
AsanThreadContext *parent_context =
|
|
|
|
GetThreadContextByTidLocked(context->parent_tid);
|
|
|
|
DescribeThread(parent_context);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------- Different kinds of reports ----------------- {{{1
|
|
|
|
|
|
|
|
// Use ScopedInErrorReport to run common actions just before and
|
|
|
|
// immediately after printing error report.
|
|
|
|
class ScopedInErrorReport {
|
|
|
|
public:
|
|
|
|
ScopedInErrorReport() {
|
|
|
|
static atomic_uint32_t num_calls;
|
|
|
|
static u32 reporting_thread_tid;
|
|
|
|
if (atomic_fetch_add(&num_calls, 1, memory_order_relaxed) != 0) {
|
|
|
|
// Do not print more than one report, otherwise they will mix up.
|
|
|
|
// Error reporting functions shouldn't return at this situation, as
|
|
|
|
// they are defined as no-return.
|
|
|
|
Report("AddressSanitizer: while reporting a bug found another one."
|
|
|
|
"Ignoring.\n");
|
2013-11-04 22:33:31 +01:00
|
|
|
u32 current_tid = GetCurrentTidOrInvalid();
|
2012-11-12 16:53:47 +01:00
|
|
|
if (current_tid != reporting_thread_tid) {
|
|
|
|
// ASan found two bugs in different threads simultaneously. Sleep
|
|
|
|
// long enough to make sure that the thread which started to print
|
|
|
|
// an error report will finish doing it.
|
|
|
|
SleepForSeconds(Max(100, flags()->sleep_before_dying + 1));
|
|
|
|
}
|
2013-02-21 11:57:10 +01:00
|
|
|
// If we're still not dead for some reason, use raw _exit() instead of
|
2012-11-23 15:46:25 +01:00
|
|
|
// Die() to bypass any additional checks.
|
2013-02-21 11:57:10 +01:00
|
|
|
internal__exit(flags()->exitcode);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
2013-01-10 13:44:08 +01:00
|
|
|
ASAN_ON_ERROR();
|
2013-11-04 22:33:31 +01:00
|
|
|
// Make sure the registry and sanitizer report mutexes are locked while
|
|
|
|
// we're printing an error report.
|
|
|
|
// We can lock them only here to avoid self-deadlock in case of
|
|
|
|
// recursive reports.
|
|
|
|
asanThreadRegistry().Lock();
|
|
|
|
CommonSanitizerReportMutex.Lock();
|
|
|
|
reporting_thread_tid = GetCurrentTidOrInvalid();
|
2012-11-12 16:53:47 +01:00
|
|
|
Printf("===================================================="
|
|
|
|
"=============\n");
|
|
|
|
}
|
|
|
|
// Destructor is NORETURN, as functions that report errors are.
|
|
|
|
NORETURN ~ScopedInErrorReport() {
|
|
|
|
// Make sure the current thread is announced.
|
2013-11-04 22:33:31 +01:00
|
|
|
DescribeThread(GetCurrentThread());
|
2012-11-12 16:53:47 +01:00
|
|
|
// Print memory stats.
|
2013-02-13 11:46:01 +01:00
|
|
|
if (flags()->print_stats)
|
|
|
|
__asan_print_accumulated_stats();
|
2012-11-12 16:53:47 +01:00
|
|
|
if (error_report_callback) {
|
|
|
|
error_report_callback(error_message_buffer);
|
|
|
|
}
|
|
|
|
Report("ABORTING\n");
|
|
|
|
Die();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void ReportSIGSEGV(uptr pc, uptr sp, uptr bp, uptr addr) {
|
|
|
|
ScopedInErrorReport in_report;
|
2013-01-10 13:44:08 +01:00
|
|
|
Decorator d;
|
|
|
|
Printf("%s", d.Warning());
|
2012-11-23 15:46:25 +01:00
|
|
|
Report("ERROR: AddressSanitizer: SEGV on unknown address %p"
|
2012-11-12 16:53:47 +01:00
|
|
|
" (pc %p sp %p bp %p T%d)\n",
|
|
|
|
(void*)addr, (void*)pc, (void*)sp, (void*)bp,
|
2013-11-04 22:33:31 +01:00
|
|
|
GetCurrentTidOrInvalid());
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.EndWarning());
|
|
|
|
GET_STACK_TRACE_FATAL(pc, bp);
|
2012-11-12 16:53:47 +01:00
|
|
|
PrintStack(&stack);
|
2013-12-05 10:18:38 +01:00
|
|
|
Printf("AddressSanitizer can not provide additional info.\n");
|
|
|
|
ReportErrorSummary("SEGV", &stack);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
2013-12-05 10:18:38 +01:00
|
|
|
void ReportDoubleFree(uptr addr, StackTrace *free_stack) {
|
2012-11-12 16:53:47 +01:00
|
|
|
ScopedInErrorReport in_report;
|
2013-01-10 13:44:08 +01:00
|
|
|
Decorator d;
|
|
|
|
Printf("%s", d.Warning());
|
2013-11-04 22:33:31 +01:00
|
|
|
char tname[128];
|
|
|
|
u32 curr_tid = GetCurrentTidOrInvalid();
|
|
|
|
Report("ERROR: AddressSanitizer: attempting double-free on %p in "
|
|
|
|
"thread T%d%s:\n",
|
|
|
|
addr, curr_tid,
|
|
|
|
ThreadNameWithParenthesis(curr_tid, tname, sizeof(tname)));
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.EndWarning());
|
2013-12-05 10:18:38 +01:00
|
|
|
CHECK_GT(free_stack->size, 0);
|
|
|
|
GET_STACK_TRACE_FATAL(free_stack->trace[0], free_stack->top_frame_bp);
|
|
|
|
PrintStack(&stack);
|
2012-11-12 16:53:47 +01:00
|
|
|
DescribeHeapAddress(addr, 1);
|
2013-12-05 10:18:38 +01:00
|
|
|
ReportErrorSummary("double-free", &stack);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
2013-12-05 10:18:38 +01:00
|
|
|
void ReportFreeNotMalloced(uptr addr, StackTrace *free_stack) {
|
2012-11-12 16:53:47 +01:00
|
|
|
ScopedInErrorReport in_report;
|
2013-01-10 13:44:08 +01:00
|
|
|
Decorator d;
|
|
|
|
Printf("%s", d.Warning());
|
2013-11-04 22:33:31 +01:00
|
|
|
char tname[128];
|
|
|
|
u32 curr_tid = GetCurrentTidOrInvalid();
|
2012-11-23 15:46:25 +01:00
|
|
|
Report("ERROR: AddressSanitizer: attempting free on address "
|
2013-11-04 22:33:31 +01:00
|
|
|
"which was not malloc()-ed: %p in thread T%d%s\n", addr,
|
|
|
|
curr_tid, ThreadNameWithParenthesis(curr_tid, tname, sizeof(tname)));
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.EndWarning());
|
2013-12-05 10:18:38 +01:00
|
|
|
CHECK_GT(free_stack->size, 0);
|
|
|
|
GET_STACK_TRACE_FATAL(free_stack->trace[0], free_stack->top_frame_bp);
|
|
|
|
PrintStack(&stack);
|
2012-11-12 16:53:47 +01:00
|
|
|
DescribeHeapAddress(addr, 1);
|
2013-12-05 10:18:38 +01:00
|
|
|
ReportErrorSummary("bad-free", &stack);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
2013-12-05 10:18:38 +01:00
|
|
|
void ReportAllocTypeMismatch(uptr addr, StackTrace *free_stack,
|
2013-01-10 13:44:08 +01:00
|
|
|
AllocType alloc_type,
|
|
|
|
AllocType dealloc_type) {
|
|
|
|
static const char *alloc_names[] =
|
|
|
|
{"INVALID", "malloc", "operator new", "operator new []"};
|
|
|
|
static const char *dealloc_names[] =
|
|
|
|
{"INVALID", "free", "operator delete", "operator delete []"};
|
|
|
|
CHECK_NE(alloc_type, dealloc_type);
|
|
|
|
ScopedInErrorReport in_report;
|
|
|
|
Decorator d;
|
|
|
|
Printf("%s", d.Warning());
|
|
|
|
Report("ERROR: AddressSanitizer: alloc-dealloc-mismatch (%s vs %s) on %p\n",
|
|
|
|
alloc_names[alloc_type], dealloc_names[dealloc_type], addr);
|
|
|
|
Printf("%s", d.EndWarning());
|
2013-12-05 10:18:38 +01:00
|
|
|
CHECK_GT(free_stack->size, 0);
|
|
|
|
GET_STACK_TRACE_FATAL(free_stack->trace[0], free_stack->top_frame_bp);
|
|
|
|
PrintStack(&stack);
|
2013-01-10 13:44:08 +01:00
|
|
|
DescribeHeapAddress(addr, 1);
|
2013-12-05 10:18:38 +01:00
|
|
|
ReportErrorSummary("alloc-dealloc-mismatch", &stack);
|
2013-01-10 13:44:08 +01:00
|
|
|
Report("HINT: if you don't care about these warnings you may set "
|
|
|
|
"ASAN_OPTIONS=alloc_dealloc_mismatch=0\n");
|
|
|
|
}
|
|
|
|
|
2012-11-12 16:53:47 +01:00
|
|
|
void ReportMallocUsableSizeNotOwned(uptr addr, StackTrace *stack) {
|
|
|
|
ScopedInErrorReport in_report;
|
2013-01-10 13:44:08 +01:00
|
|
|
Decorator d;
|
|
|
|
Printf("%s", d.Warning());
|
2012-11-23 15:46:25 +01:00
|
|
|
Report("ERROR: AddressSanitizer: attempting to call "
|
2012-11-12 16:53:47 +01:00
|
|
|
"malloc_usable_size() for pointer which is "
|
|
|
|
"not owned: %p\n", addr);
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.EndWarning());
|
2012-11-12 16:53:47 +01:00
|
|
|
PrintStack(stack);
|
|
|
|
DescribeHeapAddress(addr, 1);
|
2013-12-05 10:18:38 +01:00
|
|
|
ReportErrorSummary("bad-malloc_usable_size", stack);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ReportAsanGetAllocatedSizeNotOwned(uptr addr, StackTrace *stack) {
|
|
|
|
ScopedInErrorReport in_report;
|
2013-01-10 13:44:08 +01:00
|
|
|
Decorator d;
|
|
|
|
Printf("%s", d.Warning());
|
2012-11-23 15:46:25 +01:00
|
|
|
Report("ERROR: AddressSanitizer: attempting to call "
|
2012-11-12 16:53:47 +01:00
|
|
|
"__asan_get_allocated_size() for pointer which is "
|
|
|
|
"not owned: %p\n", addr);
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.EndWarning());
|
2012-11-12 16:53:47 +01:00
|
|
|
PrintStack(stack);
|
|
|
|
DescribeHeapAddress(addr, 1);
|
2013-12-05 10:18:38 +01:00
|
|
|
ReportErrorSummary("bad-__asan_get_allocated_size", stack);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ReportStringFunctionMemoryRangesOverlap(
|
|
|
|
const char *function, const char *offset1, uptr length1,
|
|
|
|
const char *offset2, uptr length2, StackTrace *stack) {
|
|
|
|
ScopedInErrorReport in_report;
|
2013-01-10 13:44:08 +01:00
|
|
|
Decorator d;
|
2013-02-13 11:46:01 +01:00
|
|
|
char bug_type[100];
|
|
|
|
internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function);
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.Warning());
|
2013-02-13 11:46:01 +01:00
|
|
|
Report("ERROR: AddressSanitizer: %s: "
|
2012-11-12 16:53:47 +01:00
|
|
|
"memory ranges [%p,%p) and [%p, %p) overlap\n", \
|
2013-02-13 11:46:01 +01:00
|
|
|
bug_type, offset1, offset1 + length1, offset2, offset2 + length2);
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.EndWarning());
|
2012-11-12 16:53:47 +01:00
|
|
|
PrintStack(stack);
|
|
|
|
DescribeAddress((uptr)offset1, length1);
|
|
|
|
DescribeAddress((uptr)offset2, length2);
|
2013-12-05 10:18:38 +01:00
|
|
|
ReportErrorSummary(bug_type, stack);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------- Mac-specific reports ----------------- {{{1
|
|
|
|
|
|
|
|
void WarnMacFreeUnallocated(
|
|
|
|
uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack) {
|
|
|
|
// Just print a warning here.
|
|
|
|
Printf("free_common(%p) -- attempting to free unallocated memory.\n"
|
|
|
|
"AddressSanitizer is ignoring this error on Mac OS now.\n",
|
|
|
|
addr);
|
|
|
|
PrintZoneForPointer(addr, zone_ptr, zone_name);
|
|
|
|
PrintStack(stack);
|
|
|
|
DescribeHeapAddress(addr, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReportMacMzReallocUnknown(
|
|
|
|
uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack) {
|
|
|
|
ScopedInErrorReport in_report;
|
|
|
|
Printf("mz_realloc(%p) -- attempting to realloc unallocated memory.\n"
|
|
|
|
"This is an unrecoverable problem, exiting now.\n",
|
|
|
|
addr);
|
|
|
|
PrintZoneForPointer(addr, zone_ptr, zone_name);
|
|
|
|
PrintStack(stack);
|
|
|
|
DescribeHeapAddress(addr, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReportMacCfReallocUnknown(
|
|
|
|
uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack) {
|
|
|
|
ScopedInErrorReport in_report;
|
|
|
|
Printf("cf_realloc(%p) -- attempting to realloc unallocated memory.\n"
|
|
|
|
"This is an unrecoverable problem, exiting now.\n",
|
|
|
|
addr);
|
|
|
|
PrintZoneForPointer(addr, zone_ptr, zone_name);
|
|
|
|
PrintStack(stack);
|
|
|
|
DescribeHeapAddress(addr, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace __asan
|
|
|
|
|
|
|
|
// --------------------------- Interface --------------------- {{{1
|
|
|
|
using namespace __asan; // NOLINT
|
|
|
|
|
|
|
|
void __asan_report_error(uptr pc, uptr bp, uptr sp,
|
|
|
|
uptr addr, bool is_write, uptr access_size) {
|
|
|
|
ScopedInErrorReport in_report;
|
|
|
|
|
|
|
|
// Determine the error type.
|
|
|
|
const char *bug_descr = "unknown-crash";
|
|
|
|
if (AddrIsInMem(addr)) {
|
|
|
|
u8 *shadow_addr = (u8*)MemToShadow(addr);
|
|
|
|
// If we are accessing 16 bytes, look at the second shadow byte.
|
|
|
|
if (*shadow_addr == 0 && access_size > SHADOW_GRANULARITY)
|
|
|
|
shadow_addr++;
|
|
|
|
// If we are in the partial right redzone, look at the next shadow byte.
|
|
|
|
if (*shadow_addr > 0 && *shadow_addr < 128)
|
|
|
|
shadow_addr++;
|
|
|
|
switch (*shadow_addr) {
|
|
|
|
case kAsanHeapLeftRedzoneMagic:
|
|
|
|
case kAsanHeapRightRedzoneMagic:
|
|
|
|
bug_descr = "heap-buffer-overflow";
|
|
|
|
break;
|
|
|
|
case kAsanHeapFreeMagic:
|
|
|
|
bug_descr = "heap-use-after-free";
|
|
|
|
break;
|
|
|
|
case kAsanStackLeftRedzoneMagic:
|
|
|
|
bug_descr = "stack-buffer-underflow";
|
|
|
|
break;
|
|
|
|
case kAsanInitializationOrderMagic:
|
|
|
|
bug_descr = "initialization-order-fiasco";
|
|
|
|
break;
|
|
|
|
case kAsanStackMidRedzoneMagic:
|
|
|
|
case kAsanStackRightRedzoneMagic:
|
|
|
|
case kAsanStackPartialRedzoneMagic:
|
|
|
|
bug_descr = "stack-buffer-overflow";
|
|
|
|
break;
|
|
|
|
case kAsanStackAfterReturnMagic:
|
|
|
|
bug_descr = "stack-use-after-return";
|
|
|
|
break;
|
|
|
|
case kAsanUserPoisonedMemoryMagic:
|
|
|
|
bug_descr = "use-after-poison";
|
|
|
|
break;
|
2013-12-05 10:18:38 +01:00
|
|
|
case kAsanContiguousContainerOOBMagic:
|
|
|
|
bug_descr = "container-overflow";
|
|
|
|
break;
|
2012-12-05 14:19:55 +01:00
|
|
|
case kAsanStackUseAfterScopeMagic:
|
|
|
|
bug_descr = "stack-use-after-scope";
|
|
|
|
break;
|
2012-11-12 16:53:47 +01:00
|
|
|
case kAsanGlobalRedzoneMagic:
|
|
|
|
bug_descr = "global-buffer-overflow";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-01-10 13:44:08 +01:00
|
|
|
Decorator d;
|
|
|
|
Printf("%s", d.Warning());
|
2012-11-23 15:46:25 +01:00
|
|
|
Report("ERROR: AddressSanitizer: %s on address "
|
2012-11-12 16:53:47 +01:00
|
|
|
"%p at pc 0x%zx bp 0x%zx sp 0x%zx\n",
|
|
|
|
bug_descr, (void*)addr, pc, bp, sp);
|
2013-01-10 13:44:08 +01:00
|
|
|
Printf("%s", d.EndWarning());
|
2012-11-12 16:53:47 +01:00
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
u32 curr_tid = GetCurrentTidOrInvalid();
|
2013-01-10 13:44:08 +01:00
|
|
|
char tname[128];
|
|
|
|
Printf("%s%s of size %zu at %p thread T%d%s%s\n",
|
|
|
|
d.Access(),
|
|
|
|
access_size ? (is_write ? "WRITE" : "READ") : "ACCESS",
|
|
|
|
access_size, (void*)addr, curr_tid,
|
|
|
|
ThreadNameWithParenthesis(curr_tid, tname, sizeof(tname)),
|
|
|
|
d.EndAccess());
|
|
|
|
|
|
|
|
GET_STACK_TRACE_FATAL(pc, bp);
|
2012-11-12 16:53:47 +01:00
|
|
|
PrintStack(&stack);
|
|
|
|
|
|
|
|
DescribeAddress(addr, access_size);
|
2013-12-05 10:18:38 +01:00
|
|
|
ReportErrorSummary(bug_descr, &stack);
|
2012-11-12 16:53:47 +01:00
|
|
|
PrintShadowMemoryForAddress(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NOINLINE __asan_set_error_report_callback(void (*callback)(const char*)) {
|
|
|
|
error_report_callback = callback;
|
|
|
|
if (callback) {
|
|
|
|
error_message_buffer_size = 1 << 16;
|
|
|
|
error_message_buffer =
|
|
|
|
(char*)MmapOrDie(error_message_buffer_size, __FUNCTION__);
|
|
|
|
error_message_buffer_pos = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-10 13:44:08 +01:00
|
|
|
void __asan_describe_address(uptr addr) {
|
|
|
|
DescribeAddress(addr, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !SANITIZER_SUPPORTS_WEAK_HOOKS
|
2012-11-12 16:53:47 +01:00
|
|
|
// Provide default implementation of __asan_on_error that does nothing
|
|
|
|
// and may be overriden by user.
|
2013-11-04 22:33:31 +01:00
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE NOINLINE
|
2012-11-12 16:53:47 +01:00
|
|
|
void __asan_on_error() {}
|
2013-01-10 13:44:08 +01:00
|
|
|
#endif
|