Retro68/gcc/libsanitizer/asan/asan_report.h

97 lines
4.4 KiB
C
Raw Normal View History

2014-09-21 17:33:12 +00: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.
//===----------------------------------------------------------------------===//
2019-06-02 15:48:37 +00:00
#ifndef ASAN_REPORT_H
#define ASAN_REPORT_H
2014-09-21 17:33:12 +00:00
#include "asan_allocator.h"
#include "asan_internal.h"
#include "asan_thread.h"
namespace __asan {
2015-08-28 15:33:40 +00:00
struct StackVarDescr {
uptr beg;
uptr size;
const char *name_pos;
uptr name_len;
2018-12-28 15:30:48 +00:00
uptr line;
2015-08-28 15:33:40 +00:00
};
2017-04-10 11:32:00 +00:00
// Returns the number of globals close to the provided address and copies
// them to "globals" array.
int GetGlobalsForAddress(uptr addr, __asan_global *globals, u32 *reg_sites,
int max_globals);
const char *MaybeDemangleGlobalName(const char *name);
void PrintGlobalNameIfASCII(InternalScopedString *str, const __asan_global &g);
void PrintGlobalLocation(InternalScopedString *str, const __asan_global &g);
void PrintMemoryByte(InternalScopedString *str, const char *before, u8 byte,
bool in_shadow, const char *after = "\n");
2014-09-21 17:33:12 +00:00
// The following functions prints address description depending
// on the memory type (shadow/heap/stack/global).
2015-08-28 15:33:40 +00:00
bool ParseFrameDescription(const char *frame_descr,
InternalMmapVector<StackVarDescr> *vars);
2014-09-21 17:33:12 +00:00
// Different kinds of error reports.
2017-04-10 11:32:00 +00:00
void ReportGenericError(uptr pc, uptr bp, uptr sp, uptr addr, bool is_write,
uptr access_size, u32 exp, bool fatal);
2018-12-28 15:30:48 +00:00
void ReportDeadlySignal(const SignalContext &sig);
2019-06-02 15:48:37 +00:00
void ReportNewDeleteTypeMismatch(uptr addr, uptr delete_size,
uptr delete_alignment,
2017-04-10 11:32:00 +00:00
BufferedStackTrace *free_stack);
void ReportDoubleFree(uptr addr, BufferedStackTrace *free_stack);
void ReportFreeNotMalloced(uptr addr, BufferedStackTrace *free_stack);
void ReportAllocTypeMismatch(uptr addr, BufferedStackTrace *free_stack,
AllocType alloc_type,
AllocType dealloc_type);
void ReportMallocUsableSizeNotOwned(uptr addr, BufferedStackTrace *stack);
void ReportSanitizerGetAllocatedSizeNotOwned(uptr addr,
BufferedStackTrace *stack);
2019-06-02 15:48:37 +00:00
void ReportCallocOverflow(uptr count, uptr size, BufferedStackTrace *stack);
void ReportPvallocOverflow(uptr size, BufferedStackTrace *stack);
void ReportInvalidAllocationAlignment(uptr alignment,
BufferedStackTrace *stack);
void ReportInvalidAlignedAllocAlignment(uptr size, uptr alignment,
BufferedStackTrace *stack);
void ReportInvalidPosixMemalignAlignment(uptr alignment,
BufferedStackTrace *stack);
void ReportAllocationSizeTooBig(uptr user_size, uptr total_size, uptr max_size,
BufferedStackTrace *stack);
void ReportRssLimitExceeded(BufferedStackTrace *stack);
void ReportOutOfMemory(uptr requested_size, BufferedStackTrace *stack);
2017-04-10 11:32:00 +00:00
void ReportStringFunctionMemoryRangesOverlap(const char *function,
const char *offset1, uptr length1,
const char *offset2, uptr length2,
BufferedStackTrace *stack);
void ReportStringFunctionSizeOverflow(uptr offset, uptr size,
BufferedStackTrace *stack);
void ReportBadParamsToAnnotateContiguousContainer(uptr beg, uptr end,
uptr old_mid, uptr new_mid,
BufferedStackTrace *stack);
2015-08-28 15:33:40 +00:00
2017-04-10 11:32:00 +00:00
void ReportODRViolation(const __asan_global *g1, u32 stack_id1,
const __asan_global *g2, u32 stack_id2);
2014-09-21 17:33:12 +00:00
// Mac-specific errors and warnings.
2017-04-10 11:32:00 +00:00
void ReportMacMzReallocUnknown(uptr addr, uptr zone_ptr,
const char *zone_name,
BufferedStackTrace *stack);
void ReportMacCfReallocUnknown(uptr addr, uptr zone_ptr,
const char *zone_name,
BufferedStackTrace *stack);
2014-09-21 17:33:12 +00:00
} // namespace __asan
2019-06-02 15:48:37 +00:00
#endif // ASAN_REPORT_H