2012-11-12 16:53:47 +01:00
|
|
|
//===-- asan_report.h -------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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 for error reporting functions.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 13:44:08 +01:00
|
|
|
#include "asan_allocator.h"
|
2012-11-12 16:53:47 +01:00
|
|
|
#include "asan_internal.h"
|
|
|
|
#include "asan_thread.h"
|
|
|
|
|
|
|
|
namespace __asan {
|
|
|
|
|
|
|
|
// The following functions prints address description depending
|
|
|
|
// on the memory type (shadow/heap/stack/global).
|
|
|
|
void DescribeHeapAddress(uptr addr, uptr access_size);
|
2013-02-13 11:46:01 +01:00
|
|
|
bool DescribeAddressIfGlobal(uptr addr, uptr access_size);
|
|
|
|
bool DescribeAddressRelativeToGlobal(uptr addr, uptr access_size,
|
|
|
|
const __asan_global &g);
|
2012-11-12 16:53:47 +01:00
|
|
|
bool DescribeAddressIfShadow(uptr addr);
|
|
|
|
bool DescribeAddressIfStack(uptr addr, uptr access_size);
|
|
|
|
// Determines memory type on its own.
|
|
|
|
void DescribeAddress(uptr addr, uptr access_size);
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
void DescribeThread(AsanThreadContext *context);
|
2012-11-12 16:53:47 +01:00
|
|
|
|
|
|
|
// Different kinds of error reports.
|
|
|
|
void NORETURN ReportSIGSEGV(uptr pc, uptr sp, uptr bp, uptr addr);
|
2013-12-05 10:18:38 +01:00
|
|
|
void NORETURN ReportDoubleFree(uptr addr, StackTrace *free_stack);
|
|
|
|
void NORETURN ReportFreeNotMalloced(uptr addr, StackTrace *free_stack);
|
|
|
|
void NORETURN ReportAllocTypeMismatch(uptr addr, StackTrace *free_stack,
|
2013-01-10 13:44:08 +01:00
|
|
|
AllocType alloc_type,
|
|
|
|
AllocType dealloc_type);
|
2012-11-12 16:53:47 +01:00
|
|
|
void NORETURN ReportMallocUsableSizeNotOwned(uptr addr,
|
|
|
|
StackTrace *stack);
|
|
|
|
void NORETURN ReportAsanGetAllocatedSizeNotOwned(uptr addr,
|
|
|
|
StackTrace *stack);
|
|
|
|
void NORETURN ReportStringFunctionMemoryRangesOverlap(
|
|
|
|
const char *function, const char *offset1, uptr length1,
|
|
|
|
const char *offset2, uptr length2, StackTrace *stack);
|
|
|
|
|
|
|
|
// Mac-specific errors and warnings.
|
|
|
|
void WarnMacFreeUnallocated(
|
|
|
|
uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack);
|
|
|
|
void NORETURN ReportMacMzReallocUnknown(
|
|
|
|
uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack);
|
|
|
|
void NORETURN ReportMacCfReallocUnknown(
|
|
|
|
uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack);
|
|
|
|
|
|
|
|
} // namespace __asan
|