5d3805fca3
* ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch builtins, store max (log2 (align), 0) into uchar field instead of align into uptr field. (ubsan_expand_objsize_ifn): Use _v1 suffixed type mismatch builtins, store uchar 0 field instead of uptr 0 field. (instrument_nonnull_return): Use _v1 suffixed nonnull return builtin, instead of passing one address of struct with 2 locations pass two addresses of structs with 1 location each. * sanitizer.def (BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH, BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_ABORT, BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN, BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_ABORT): Removed. (BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1, BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1_ABORT, BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1, BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1_ABORT): New builtins. * c-c++-common/ubsan/float-cast-overflow-1.c: Drop value keyword from expected output regexps. * c-c++-common/ubsan/float-cast-overflow-2.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-3.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-4.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-5.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-6.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-8.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-9.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-10.c: Likewise. * g++.dg/ubsan/float-cast-overflow-bf.C: Likewise. * gcc.dg/ubsan/float-cast-overflow-bf.c: Likewise. * g++.dg/asan/default-options-1.C (__asan_default_options): Add used attribute. * g++.dg/asan/asan_test.C: Run with ASAN_OPTIONS=handle_segv=2 in the environment. * All source files: Merge from upstream 315899. * asan/Makefile.am (nodist_saninclude_HEADERS): Add include/sanitizer/tsan_interface.h. * asan/libtool-version: Bump the libasan SONAME. * lsan/Makefile.am (sanitizer_lsan_files): Add lsan_common_mac.cc. (lsan_files): Add lsan_linux.cc, lsan_mac.cc and lsan_malloc_mac.cc. * sanitizer_common/Makefile.am (sanitizer_common_files): Add sancov_flags.cc, sanitizer_allocator_checks.cc, sanitizer_coverage_libcdep_new.cc, sanitizer_errno.cc, sanitizer_file.cc, sanitizer_mac_libcdep.cc and sanitizer_stoptheworld_mac.cc. Remove sanitizer_coverage_libcdep.cc and sanitizer_coverage_mapping_libcdep.cc. * tsan/Makefile.am (tsan_files): Add tsan_external.cc. * ubsan/Makefile.am (DEFS): Add -DUBSAN_CAN_USE_CXXABI=1. (ubsan_files): Add ubsan_init_standalone.cc and ubsan_signals_standalone.cc. * ubsan/libtool-version: Bump the libubsan SONAME. * asan/Makefile.in: Regenerate. * lsan/Makefile.in: Regenerate. * sanitizer_common/Makefile.in: Regenerate. * tsan/Makefile.in: Regenerate. * ubsan/Makefile.in: Regenerate. From-SVN: r253887
266 lines
7.6 KiB
C++
266 lines
7.6 KiB
C++
//===-- ubsan_diag.h --------------------------------------------*- C++ -*-===//
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Diagnostics emission for Clang's undefined behavior sanitizer.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef UBSAN_DIAG_H
|
|
#define UBSAN_DIAG_H
|
|
|
|
#include "ubsan_value.h"
|
|
#include "sanitizer_common/sanitizer_stacktrace.h"
|
|
#include "sanitizer_common/sanitizer_symbolizer.h"
|
|
|
|
namespace __ubsan {
|
|
|
|
class SymbolizedStackHolder {
|
|
SymbolizedStack *Stack;
|
|
|
|
void clear() {
|
|
if (Stack)
|
|
Stack->ClearAll();
|
|
}
|
|
|
|
public:
|
|
explicit SymbolizedStackHolder(SymbolizedStack *Stack = nullptr)
|
|
: Stack(Stack) {}
|
|
~SymbolizedStackHolder() { clear(); }
|
|
void reset(SymbolizedStack *S) {
|
|
if (Stack != S)
|
|
clear();
|
|
Stack = S;
|
|
}
|
|
const SymbolizedStack *get() const { return Stack; }
|
|
};
|
|
|
|
SymbolizedStack *getSymbolizedLocation(uptr PC);
|
|
|
|
inline SymbolizedStack *getCallerLocation(uptr CallerPC) {
|
|
CHECK(CallerPC);
|
|
uptr PC = StackTrace::GetPreviousInstructionPc(CallerPC);
|
|
return getSymbolizedLocation(PC);
|
|
}
|
|
|
|
/// A location of some data within the program's address space.
|
|
typedef uptr MemoryLocation;
|
|
|
|
/// \brief Location at which a diagnostic can be emitted. Either a
|
|
/// SourceLocation, a MemoryLocation, or a SymbolizedStack.
|
|
class Location {
|
|
public:
|
|
enum LocationKind { LK_Null, LK_Source, LK_Memory, LK_Symbolized };
|
|
|
|
private:
|
|
LocationKind Kind;
|
|
// FIXME: In C++11, wrap these in an anonymous union.
|
|
SourceLocation SourceLoc;
|
|
MemoryLocation MemoryLoc;
|
|
const SymbolizedStack *SymbolizedLoc; // Not owned.
|
|
|
|
public:
|
|
Location() : Kind(LK_Null) {}
|
|
Location(SourceLocation Loc) :
|
|
Kind(LK_Source), SourceLoc(Loc) {}
|
|
Location(MemoryLocation Loc) :
|
|
Kind(LK_Memory), MemoryLoc(Loc) {}
|
|
// SymbolizedStackHolder must outlive Location object.
|
|
Location(const SymbolizedStackHolder &Stack) :
|
|
Kind(LK_Symbolized), SymbolizedLoc(Stack.get()) {}
|
|
|
|
LocationKind getKind() const { return Kind; }
|
|
|
|
bool isSourceLocation() const { return Kind == LK_Source; }
|
|
bool isMemoryLocation() const { return Kind == LK_Memory; }
|
|
bool isSymbolizedStack() const { return Kind == LK_Symbolized; }
|
|
|
|
SourceLocation getSourceLocation() const {
|
|
CHECK(isSourceLocation());
|
|
return SourceLoc;
|
|
}
|
|
MemoryLocation getMemoryLocation() const {
|
|
CHECK(isMemoryLocation());
|
|
return MemoryLoc;
|
|
}
|
|
const SymbolizedStack *getSymbolizedStack() const {
|
|
CHECK(isSymbolizedStack());
|
|
return SymbolizedLoc;
|
|
}
|
|
};
|
|
|
|
/// A diagnostic severity level.
|
|
enum DiagLevel {
|
|
DL_Error, ///< An error.
|
|
DL_Note ///< A note, attached to a prior diagnostic.
|
|
};
|
|
|
|
/// \brief Annotation for a range of locations in a diagnostic.
|
|
class Range {
|
|
Location Start, End;
|
|
const char *Text;
|
|
|
|
public:
|
|
Range() : Start(), End(), Text() {}
|
|
Range(MemoryLocation Start, MemoryLocation End, const char *Text)
|
|
: Start(Start), End(End), Text(Text) {}
|
|
Location getStart() const { return Start; }
|
|
Location getEnd() const { return End; }
|
|
const char *getText() const { return Text; }
|
|
};
|
|
|
|
/// \brief A C++ type name. Really just a strong typedef for 'const char*'.
|
|
class TypeName {
|
|
const char *Name;
|
|
public:
|
|
TypeName(const char *Name) : Name(Name) {}
|
|
const char *getName() const { return Name; }
|
|
};
|
|
|
|
/// \brief Representation of an in-flight diagnostic.
|
|
///
|
|
/// Temporary \c Diag instances are created by the handler routines to
|
|
/// accumulate arguments for a diagnostic. The destructor emits the diagnostic
|
|
/// message.
|
|
class Diag {
|
|
/// The location at which the problem occurred.
|
|
Location Loc;
|
|
|
|
/// The diagnostic level.
|
|
DiagLevel Level;
|
|
|
|
/// The message which will be emitted, with %0, %1, ... placeholders for
|
|
/// arguments.
|
|
const char *Message;
|
|
|
|
public:
|
|
/// Kinds of arguments, corresponding to members of \c Arg's union.
|
|
enum ArgKind {
|
|
AK_String, ///< A string argument, displayed as-is.
|
|
AK_TypeName,///< A C++ type name, possibly demangled before display.
|
|
AK_UInt, ///< An unsigned integer argument.
|
|
AK_SInt, ///< A signed integer argument.
|
|
AK_Float, ///< A floating-point argument.
|
|
AK_Pointer ///< A pointer argument, displayed in hexadecimal.
|
|
};
|
|
|
|
/// An individual diagnostic message argument.
|
|
struct Arg {
|
|
Arg() {}
|
|
Arg(const char *String) : Kind(AK_String), String(String) {}
|
|
Arg(TypeName TN) : Kind(AK_TypeName), String(TN.getName()) {}
|
|
Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {}
|
|
Arg(SIntMax SInt) : Kind(AK_SInt), SInt(SInt) {}
|
|
Arg(FloatMax Float) : Kind(AK_Float), Float(Float) {}
|
|
Arg(const void *Pointer) : Kind(AK_Pointer), Pointer(Pointer) {}
|
|
|
|
ArgKind Kind;
|
|
union {
|
|
const char *String;
|
|
UIntMax UInt;
|
|
SIntMax SInt;
|
|
FloatMax Float;
|
|
const void *Pointer;
|
|
};
|
|
};
|
|
|
|
private:
|
|
static const unsigned MaxArgs = 5;
|
|
static const unsigned MaxRanges = 1;
|
|
|
|
/// The arguments which have been added to this diagnostic so far.
|
|
Arg Args[MaxArgs];
|
|
unsigned NumArgs;
|
|
|
|
/// The ranges which have been added to this diagnostic so far.
|
|
Range Ranges[MaxRanges];
|
|
unsigned NumRanges;
|
|
|
|
Diag &AddArg(Arg A) {
|
|
CHECK(NumArgs != MaxArgs);
|
|
Args[NumArgs++] = A;
|
|
return *this;
|
|
}
|
|
|
|
Diag &AddRange(Range A) {
|
|
CHECK(NumRanges != MaxRanges);
|
|
Ranges[NumRanges++] = A;
|
|
return *this;
|
|
}
|
|
|
|
/// \c Diag objects are not copyable.
|
|
Diag(const Diag &); // NOT IMPLEMENTED
|
|
Diag &operator=(const Diag &);
|
|
|
|
public:
|
|
Diag(Location Loc, DiagLevel Level, const char *Message)
|
|
: Loc(Loc), Level(Level), Message(Message), NumArgs(0), NumRanges(0) {}
|
|
~Diag();
|
|
|
|
Diag &operator<<(const char *Str) { return AddArg(Str); }
|
|
Diag &operator<<(TypeName TN) { return AddArg(TN); }
|
|
Diag &operator<<(unsigned long long V) { return AddArg(UIntMax(V)); }
|
|
Diag &operator<<(const void *V) { return AddArg(V); }
|
|
Diag &operator<<(const TypeDescriptor &V);
|
|
Diag &operator<<(const Value &V);
|
|
Diag &operator<<(const Range &R) { return AddRange(R); }
|
|
};
|
|
|
|
struct ReportOptions {
|
|
// If FromUnrecoverableHandler is specified, UBSan runtime handler is not
|
|
// expected to return.
|
|
bool FromUnrecoverableHandler;
|
|
/// pc/bp are used to unwind the stack trace.
|
|
uptr pc;
|
|
uptr bp;
|
|
};
|
|
|
|
enum class ErrorType {
|
|
#define UBSAN_CHECK(Name, SummaryKind, FSanitizeFlagName) Name,
|
|
#include "ubsan_checks.inc"
|
|
#undef UBSAN_CHECK
|
|
};
|
|
|
|
bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET);
|
|
|
|
#define GET_REPORT_OPTIONS(unrecoverable_handler) \
|
|
GET_CALLER_PC_BP; \
|
|
ReportOptions Opts = {unrecoverable_handler, pc, bp}
|
|
|
|
void GetStackTraceWithPcBpAndContext(BufferedStackTrace *stack, uptr max_depth,
|
|
uptr pc, uptr bp, void *context,
|
|
bool fast);
|
|
|
|
/// \brief Instantiate this class before printing diagnostics in the error
|
|
/// report. This class ensures that reports from different threads and from
|
|
/// different sanitizers won't be mixed.
|
|
class ScopedReport {
|
|
struct Initializer {
|
|
Initializer();
|
|
};
|
|
Initializer initializer_;
|
|
ScopedErrorReportLock report_lock_;
|
|
|
|
ReportOptions Opts;
|
|
Location SummaryLoc;
|
|
ErrorType Type;
|
|
|
|
public:
|
|
ScopedReport(ReportOptions Opts, Location SummaryLoc, ErrorType Type);
|
|
~ScopedReport();
|
|
|
|
static void CheckLocked() { ScopedErrorReportLock::CheckLocked(); }
|
|
};
|
|
|
|
void InitializeSuppressions();
|
|
bool IsVptrCheckSuppressed(const char *TypeName);
|
|
// Sometimes UBSan runtime can know filename from handlers arguments, even if
|
|
// debug info is missing.
|
|
bool IsPCSuppressed(ErrorType ET, uptr PC, const char *Filename);
|
|
|
|
} // namespace __ubsan
|
|
|
|
#endif // UBSAN_DIAG_H
|