blob: 3edb67a03c1f4ff7c732e85dadc3a54ecb9f565f [file] [log] [blame]
Richard Smith6ebe4512012-10-09 19:34:32 +00001//===-- ubsan_diag.h --------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Diagnostics emission for Clang's undefined behavior sanitizer.
11//
12//===----------------------------------------------------------------------===//
13#ifndef UBSAN_DIAG_H
14#define UBSAN_DIAG_H
15
16#include "ubsan_value.h"
Stephen Hines6d186232014-11-26 17:56:19 -080017#include "sanitizer_common/sanitizer_stacktrace.h"
Stephen Hines86277eb2015-03-23 12:06:32 -070018#include "sanitizer_common/sanitizer_symbolizer.h"
Richard Smith6ebe4512012-10-09 19:34:32 +000019
20namespace __ubsan {
21
Stephen Hines86277eb2015-03-23 12:06:32 -070022class SymbolizedStackHolder {
23 SymbolizedStack *Stack;
24
25 void clear() {
26 if (Stack)
27 Stack->ClearAll();
28 }
Richard Smith5f116492012-12-18 04:23:18 +000029
30public:
Stephen Hines86277eb2015-03-23 12:06:32 -070031 explicit SymbolizedStackHolder(SymbolizedStack *Stack = nullptr)
32 : Stack(Stack) {}
33 ~SymbolizedStackHolder() { clear(); }
34 void reset(SymbolizedStack *S) {
35 if (Stack != S)
36 clear();
37 Stack = S;
38 }
39 const SymbolizedStack *get() const { return Stack; }
Richard Smith5f116492012-12-18 04:23:18 +000040};
41
Stephen Hines86277eb2015-03-23 12:06:32 -070042SymbolizedStack *getSymbolizedLocation(uptr PC);
43
44inline SymbolizedStack *getCallerLocation(uptr CallerPC) {
45 CHECK(CallerPC);
46 uptr PC = StackTrace::GetPreviousInstructionPc(CallerPC);
47 return getSymbolizedLocation(PC);
48}
49
Richard Smith5f116492012-12-18 04:23:18 +000050/// A location of some data within the program's address space.
51typedef uptr MemoryLocation;
52
53/// \brief Location at which a diagnostic can be emitted. Either a
Stephen Hines86277eb2015-03-23 12:06:32 -070054/// SourceLocation, a MemoryLocation, or a SymbolizedStack.
Richard Smith5f116492012-12-18 04:23:18 +000055class Location {
56public:
Stephen Hines86277eb2015-03-23 12:06:32 -070057 enum LocationKind { LK_Null, LK_Source, LK_Memory, LK_Symbolized };
Richard Smith5f116492012-12-18 04:23:18 +000058
59private:
60 LocationKind Kind;
61 // FIXME: In C++11, wrap these in an anonymous union.
62 SourceLocation SourceLoc;
Richard Smith5f116492012-12-18 04:23:18 +000063 MemoryLocation MemoryLoc;
Stephen Hines86277eb2015-03-23 12:06:32 -070064 const SymbolizedStack *SymbolizedLoc; // Not owned.
Richard Smith5f116492012-12-18 04:23:18 +000065
66public:
67 Location() : Kind(LK_Null) {}
68 Location(SourceLocation Loc) :
69 Kind(LK_Source), SourceLoc(Loc) {}
Richard Smith5f116492012-12-18 04:23:18 +000070 Location(MemoryLocation Loc) :
71 Kind(LK_Memory), MemoryLoc(Loc) {}
Stephen Hines86277eb2015-03-23 12:06:32 -070072 // SymbolizedStackHolder must outlive Location object.
73 Location(const SymbolizedStackHolder &Stack) :
74 Kind(LK_Symbolized), SymbolizedLoc(Stack.get()) {}
Richard Smith5f116492012-12-18 04:23:18 +000075
76 LocationKind getKind() const { return Kind; }
77
78 bool isSourceLocation() const { return Kind == LK_Source; }
Richard Smith5f116492012-12-18 04:23:18 +000079 bool isMemoryLocation() const { return Kind == LK_Memory; }
Stephen Hines86277eb2015-03-23 12:06:32 -070080 bool isSymbolizedStack() const { return Kind == LK_Symbolized; }
Richard Smith5f116492012-12-18 04:23:18 +000081
82 SourceLocation getSourceLocation() const {
83 CHECK(isSourceLocation());
84 return SourceLoc;
85 }
Richard Smith5f116492012-12-18 04:23:18 +000086 MemoryLocation getMemoryLocation() const {
87 CHECK(isMemoryLocation());
88 return MemoryLoc;
89 }
Stephen Hines86277eb2015-03-23 12:06:32 -070090 const SymbolizedStack *getSymbolizedStack() const {
91 CHECK(isSymbolizedStack());
92 return SymbolizedLoc;
93 }
Richard Smith5f116492012-12-18 04:23:18 +000094};
95
Richard Smith25ee97f2012-12-18 06:30:32 +000096/// A diagnostic severity level.
97enum DiagLevel {
98 DL_Error, ///< An error.
99 DL_Note ///< A note, attached to a prior diagnostic.
100};
101
102/// \brief Annotation for a range of locations in a diagnostic.
103class Range {
104 Location Start, End;
105 const char *Text;
106
107public:
108 Range() : Start(), End(), Text() {}
109 Range(MemoryLocation Start, MemoryLocation End, const char *Text)
110 : Start(Start), End(End), Text(Text) {}
111 Location getStart() const { return Start; }
112 Location getEnd() const { return End; }
113 const char *getText() const { return Text; }
114};
115
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800116/// \brief A C++ type name. Really just a strong typedef for 'const char*'.
117class TypeName {
Richard Smith0ad23f72012-12-18 09:30:21 +0000118 const char *Name;
119public:
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800120 TypeName(const char *Name) : Name(Name) {}
Richard Smith0ad23f72012-12-18 09:30:21 +0000121 const char *getName() const { return Name; }
122};
123
Richard Smith6ebe4512012-10-09 19:34:32 +0000124/// \brief Representation of an in-flight diagnostic.
125///
126/// Temporary \c Diag instances are created by the handler routines to
127/// accumulate arguments for a diagnostic. The destructor emits the diagnostic
128/// message.
129class Diag {
Richard Smith5f116492012-12-18 04:23:18 +0000130 /// The location at which the problem occurred.
131 Location Loc;
Richard Smith6ebe4512012-10-09 19:34:32 +0000132
Richard Smith25ee97f2012-12-18 06:30:32 +0000133 /// The diagnostic level.
134 DiagLevel Level;
135
Richard Smith6ebe4512012-10-09 19:34:32 +0000136 /// The message which will be emitted, with %0, %1, ... placeholders for
137 /// arguments.
138 const char *Message;
139
Richard Smith25ee97f2012-12-18 06:30:32 +0000140public:
Richard Smith6ebe4512012-10-09 19:34:32 +0000141 /// Kinds of arguments, corresponding to members of \c Arg's union.
142 enum ArgKind {
143 AK_String, ///< A string argument, displayed as-is.
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800144 AK_TypeName,///< A C++ type name, possibly demangled before display.
Richard Smith6ebe4512012-10-09 19:34:32 +0000145 AK_UInt, ///< An unsigned integer argument.
146 AK_SInt, ///< A signed integer argument.
Richard Smith58561702012-10-12 22:57:15 +0000147 AK_Float, ///< A floating-point argument.
Richard Smith6ebe4512012-10-09 19:34:32 +0000148 AK_Pointer ///< A pointer argument, displayed in hexadecimal.
149 };
150
151 /// An individual diagnostic message argument.
152 struct Arg {
153 Arg() {}
154 Arg(const char *String) : Kind(AK_String), String(String) {}
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800155 Arg(TypeName TN) : Kind(AK_TypeName), String(TN.getName()) {}
Richard Smith6ebe4512012-10-09 19:34:32 +0000156 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {}
157 Arg(SIntMax SInt) : Kind(AK_SInt), SInt(SInt) {}
Richard Smith58561702012-10-12 22:57:15 +0000158 Arg(FloatMax Float) : Kind(AK_Float), Float(Float) {}
Richard Smith6ebe4512012-10-09 19:34:32 +0000159 Arg(const void *Pointer) : Kind(AK_Pointer), Pointer(Pointer) {}
160
161 ArgKind Kind;
162 union {
163 const char *String;
164 UIntMax UInt;
165 SIntMax SInt;
Richard Smith58561702012-10-12 22:57:15 +0000166 FloatMax Float;
Richard Smith6ebe4512012-10-09 19:34:32 +0000167 const void *Pointer;
168 };
169 };
170
Richard Smith25ee97f2012-12-18 06:30:32 +0000171private:
Richard Smith6ebe4512012-10-09 19:34:32 +0000172 static const unsigned MaxArgs = 5;
Richard Smith25ee97f2012-12-18 06:30:32 +0000173 static const unsigned MaxRanges = 1;
Richard Smith6ebe4512012-10-09 19:34:32 +0000174
175 /// The arguments which have been added to this diagnostic so far.
176 Arg Args[MaxArgs];
177 unsigned NumArgs;
178
Richard Smith25ee97f2012-12-18 06:30:32 +0000179 /// The ranges which have been added to this diagnostic so far.
180 Range Ranges[MaxRanges];
181 unsigned NumRanges;
182
Richard Smith6ebe4512012-10-09 19:34:32 +0000183 Diag &AddArg(Arg A) {
184 CHECK(NumArgs != MaxArgs);
185 Args[NumArgs++] = A;
186 return *this;
187 }
188
Richard Smith25ee97f2012-12-18 06:30:32 +0000189 Diag &AddRange(Range A) {
190 CHECK(NumRanges != MaxRanges);
191 Ranges[NumRanges++] = A;
192 return *this;
193 }
194
Richard Smith6ebe4512012-10-09 19:34:32 +0000195 /// \c Diag objects are not copyable.
196 Diag(const Diag &); // NOT IMPLEMENTED
197 Diag &operator=(const Diag &);
198
199public:
Richard Smith25ee97f2012-12-18 06:30:32 +0000200 Diag(Location Loc, DiagLevel Level, const char *Message)
201 : Loc(Loc), Level(Level), Message(Message), NumArgs(0), NumRanges(0) {}
Richard Smith6ebe4512012-10-09 19:34:32 +0000202 ~Diag();
203
204 Diag &operator<<(const char *Str) { return AddArg(Str); }
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800205 Diag &operator<<(TypeName TN) { return AddArg(TN); }
Richard Smith6ebe4512012-10-09 19:34:32 +0000206 Diag &operator<<(unsigned long long V) { return AddArg(UIntMax(V)); }
207 Diag &operator<<(const void *V) { return AddArg(V); }
208 Diag &operator<<(const TypeDescriptor &V);
209 Diag &operator<<(const Value &V);
Richard Smith25ee97f2012-12-18 06:30:32 +0000210 Diag &operator<<(const Range &R) { return AddRange(R); }
Richard Smith6ebe4512012-10-09 19:34:32 +0000211};
212
Stephen Hines6d186232014-11-26 17:56:19 -0800213struct ReportOptions {
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800214 // If FromUnrecoverableHandler is specified, UBSan runtime handler is not
215 // expected to return.
216 bool FromUnrecoverableHandler;
Stephen Hines6d186232014-11-26 17:56:19 -0800217 /// pc/bp are used to unwind the stack trace.
218 uptr pc;
219 uptr bp;
220};
221
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800222enum class ErrorType {
223#define UBSAN_CHECK(Name, SummaryKind, FSanitizeFlagName) Name,
224#include "ubsan_checks.inc"
225#undef UBSAN_CHECK
226};
227
228bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET);
229
230#define GET_REPORT_OPTIONS(unrecoverable_handler) \
Stephen Hines6d186232014-11-26 17:56:19 -0800231 GET_CALLER_PC_BP; \
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800232 ReportOptions Opts = {unrecoverable_handler, pc, bp}
Stephen Hines6d186232014-11-26 17:56:19 -0800233
234/// \brief Instantiate this class before printing diagnostics in the error
235/// report. This class ensures that reports from different threads and from
236/// different sanitizers won't be mixed.
237class ScopedReport {
238 ReportOptions Opts;
239 Location SummaryLoc;
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800240 ErrorType Type;
Stephen Hines6d186232014-11-26 17:56:19 -0800241
242public:
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800243 ScopedReport(ReportOptions Opts, Location SummaryLoc, ErrorType Type);
Stephen Hines6d186232014-11-26 17:56:19 -0800244 ~ScopedReport();
245};
246
Stephen Hines86277eb2015-03-23 12:06:32 -0700247void InitializeSuppressions();
248bool IsVptrCheckSuppressed(const char *TypeName);
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800249// Sometimes UBSan runtime can know filename from handlers arguments, even if
250// debug info is missing.
251bool IsPCSuppressed(ErrorType ET, uptr PC, const char *Filename);
Stephen Hines6d186232014-11-26 17:56:19 -0800252
Richard Smith6ebe4512012-10-09 19:34:32 +0000253} // namespace __ubsan
254
255#endif // UBSAN_DIAG_H