blob: 864c3e969ee83b145997db4f72d6e2585c9e531b [file] [log] [blame]
Alexey Samsonov73545092012-08-09 07:40:58 +00001//===-- asan_report.cc ----------------------------------------------------===//
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// This file is a part of AddressSanitizer, an address sanity checker.
11//
12// This file contains error reporting code.
13//===----------------------------------------------------------------------===//
Alexey Samsonov98737922012-08-10 15:13:05 +000014#include "asan_flags.h"
Alexey Samsonov73545092012-08-09 07:40:58 +000015#include "asan_internal.h"
Alexey Samsonove218beb2012-08-09 09:06:52 +000016#include "asan_mapping.h"
Alexey Samsonov73545092012-08-09 07:40:58 +000017#include "asan_report.h"
18#include "asan_stack.h"
Alexey Samsonove4bfca22012-08-09 09:27:24 +000019#include "asan_thread.h"
Kostya Serebryany58f54552012-12-18 07:32:16 +000020#include "sanitizer_common/sanitizer_common.h"
Sergey Matveeved20ebe2013-05-06 11:27:58 +000021#include "sanitizer_common/sanitizer_flags.h"
Kostya Serebryany58f54552012-12-18 07:32:16 +000022#include "sanitizer_common/sanitizer_report_decorator.h"
Alexey Samsonov9c927482012-12-26 14:44:46 +000023#include "sanitizer_common/sanitizer_symbolizer.h"
Alexey Samsonov73545092012-08-09 07:40:58 +000024
25namespace __asan {
26
Alexey Samsonovf657a192012-08-13 11:23:40 +000027// -------------------- User-specified callbacks ----------------- {{{1
Alexey Samsonovc98570b2012-08-09 10:56:57 +000028static void (*error_report_callback)(const char*);
29static char *error_message_buffer = 0;
30static uptr error_message_buffer_pos = 0;
31static uptr error_message_buffer_size = 0;
32
33void AppendToErrorMessageBuffer(const char *buffer) {
34 if (error_message_buffer) {
35 uptr length = internal_strlen(buffer);
36 CHECK_GE(error_message_buffer_size, error_message_buffer_pos);
37 uptr remaining = error_message_buffer_size - error_message_buffer_pos;
38 internal_strncpy(error_message_buffer + error_message_buffer_pos,
39 buffer, remaining);
40 error_message_buffer[error_message_buffer_size - 1] = '\0';
41 // FIXME: reallocate the buffer instead of truncating the message.
42 error_message_buffer_pos += remaining > length ? length : remaining;
43 }
44}
45
Kostya Serebryany58f54552012-12-18 07:32:16 +000046// ---------------------- Decorator ------------------------------ {{{1
47class Decorator: private __sanitizer::AnsiColorDecorator {
48 public:
Kostya Serebryany9514a532012-12-19 09:53:32 +000049 Decorator() : __sanitizer::AnsiColorDecorator(PrintsToTtyCached()) { }
Kostya Serebryany58f54552012-12-18 07:32:16 +000050 const char *Warning() { return Red(); }
51 const char *EndWarning() { return Default(); }
52 const char *Access() { return Blue(); }
53 const char *EndAccess() { return Default(); }
54 const char *Location() { return Green(); }
55 const char *EndLocation() { return Default(); }
56 const char *Allocation() { return Magenta(); }
57 const char *EndAllocation() { return Default(); }
Kostya Serebryany9514a532012-12-19 09:53:32 +000058
59 const char *ShadowByte(u8 byte) {
60 switch (byte) {
61 case kAsanHeapLeftRedzoneMagic:
62 case kAsanHeapRightRedzoneMagic:
63 return Red();
64 case kAsanHeapFreeMagic:
65 return Magenta();
66 case kAsanStackLeftRedzoneMagic:
67 case kAsanStackMidRedzoneMagic:
68 case kAsanStackRightRedzoneMagic:
69 case kAsanStackPartialRedzoneMagic:
70 return Red();
71 case kAsanStackAfterReturnMagic:
72 return Magenta();
73 case kAsanInitializationOrderMagic:
74 return Cyan();
75 case kAsanUserPoisonedMemoryMagic:
76 return Blue();
77 case kAsanStackUseAfterScopeMagic:
78 return Magenta();
79 case kAsanGlobalRedzoneMagic:
80 return Red();
81 case kAsanInternalHeapMagic:
82 return Yellow();
83 default:
84 return Default();
85 }
86 }
87 const char *EndShadowByte() { return Default(); }
Kostya Serebryany58f54552012-12-18 07:32:16 +000088};
89
Alexey Samsonov98737922012-08-10 15:13:05 +000090// ---------------------- Helper functions ----------------------- {{{1
91
Kostya Serebryany9514a532012-12-19 09:53:32 +000092static void PrintShadowByte(const char *before, u8 byte,
93 const char *after = "\n") {
94 Decorator d;
95 Printf("%s%s%x%x%s%s", before,
96 d.ShadowByte(byte), byte >> 4, byte & 15, d.EndShadowByte(), after);
97}
98
99static void PrintShadowBytes(const char *before, u8 *bytes,
100 u8 *guilty, uptr n) {
101 Decorator d;
102 if (before)
103 Printf("%s%p:", before, bytes);
104 for (uptr i = 0; i < n; i++) {
105 u8 *p = bytes + i;
106 const char *before = p == guilty ? "[" :
Kostya Serebryany696902a2013-09-03 09:44:56 +0000107 (p - 1 == guilty && i != 0) ? "" : " ";
Kostya Serebryany9514a532012-12-19 09:53:32 +0000108 const char *after = p == guilty ? "]" : "";
109 PrintShadowByte(before, *p, after);
Alexey Samsonov98737922012-08-10 15:13:05 +0000110 }
Kostya Serebryany283c2962012-08-28 11:34:40 +0000111 Printf("\n");
Alexey Samsonov98737922012-08-10 15:13:05 +0000112}
113
Kostya Serebryany95f630a2013-01-28 07:34:22 +0000114static void PrintLegend() {
Kostya Serebryany9514a532012-12-19 09:53:32 +0000115 Printf("Shadow byte legend (one shadow byte represents %d "
116 "application bytes):\n", (int)SHADOW_GRANULARITY);
117 PrintShadowByte(" Addressable: ", 0);
118 Printf(" Partially addressable: ");
Timur Iskhodzhanov5e97ba32013-05-29 14:11:44 +0000119 for (u8 i = 1; i < SHADOW_GRANULARITY; i++)
Kostya Serebryany9514a532012-12-19 09:53:32 +0000120 PrintShadowByte("", i, " ");
121 Printf("\n");
122 PrintShadowByte(" Heap left redzone: ", kAsanHeapLeftRedzoneMagic);
Alexey Samsonovf3f2f5c2013-04-10 07:00:25 +0000123 PrintShadowByte(" Heap right redzone: ", kAsanHeapRightRedzoneMagic);
124 PrintShadowByte(" Freed heap region: ", kAsanHeapFreeMagic);
Kostya Serebryany9514a532012-12-19 09:53:32 +0000125 PrintShadowByte(" Stack left redzone: ", kAsanStackLeftRedzoneMagic);
126 PrintShadowByte(" Stack mid redzone: ", kAsanStackMidRedzoneMagic);
127 PrintShadowByte(" Stack right redzone: ", kAsanStackRightRedzoneMagic);
128 PrintShadowByte(" Stack partial redzone: ", kAsanStackPartialRedzoneMagic);
Kostya Serebryany9514a532012-12-19 09:53:32 +0000129 PrintShadowByte(" Stack after return: ", kAsanStackAfterReturnMagic);
130 PrintShadowByte(" Stack use after scope: ", kAsanStackUseAfterScopeMagic);
131 PrintShadowByte(" Global redzone: ", kAsanGlobalRedzoneMagic);
132 PrintShadowByte(" Global init order: ", kAsanInitializationOrderMagic);
133 PrintShadowByte(" Poisoned by user: ", kAsanUserPoisonedMemoryMagic);
134 PrintShadowByte(" ASan internal: ", kAsanInternalHeapMagic);
Alexey Samsonov98737922012-08-10 15:13:05 +0000135}
136
Kostya Serebryany95f630a2013-01-28 07:34:22 +0000137static void PrintShadowMemoryForAddress(uptr addr) {
138 if (!AddrIsInMem(addr))
139 return;
140 uptr shadow_addr = MemToShadow(addr);
141 const uptr n_bytes_per_row = 16;
142 uptr aligned_shadow = shadow_addr & ~(n_bytes_per_row - 1);
143 Printf("Shadow bytes around the buggy address:\n");
144 for (int i = -5; i <= 5; i++) {
145 const char *prefix = (i == 0) ? "=>" : " ";
146 PrintShadowBytes(prefix,
147 (u8*)(aligned_shadow + i * n_bytes_per_row),
148 (u8*)shadow_addr, n_bytes_per_row);
149 }
150 if (flags()->print_legend)
151 PrintLegend();
152}
153
Alexey Samsonov98737922012-08-10 15:13:05 +0000154static void PrintZoneForPointer(uptr ptr, uptr zone_ptr,
155 const char *zone_name) {
156 if (zone_ptr) {
157 if (zone_name) {
Kostya Serebryany283c2962012-08-28 11:34:40 +0000158 Printf("malloc_zone_from_ptr(%p) = %p, which is %s\n",
Alexey Samsonov98737922012-08-10 15:13:05 +0000159 ptr, zone_ptr, zone_name);
160 } else {
Kostya Serebryany283c2962012-08-28 11:34:40 +0000161 Printf("malloc_zone_from_ptr(%p) = %p, which doesn't have a name\n",
Alexey Samsonov98737922012-08-10 15:13:05 +0000162 ptr, zone_ptr);
163 }
164 } else {
Kostya Serebryany283c2962012-08-28 11:34:40 +0000165 Printf("malloc_zone_from_ptr(%p) = 0\n", ptr);
Alexey Samsonov98737922012-08-10 15:13:05 +0000166 }
167}
168
Timur Iskhodzhanov997454a2013-09-10 08:36:21 +0000169static void DescribeThread(AsanThread *t) {
170 if (t)
171 DescribeThread(t->context());
172}
173
Alexey Samsonove218beb2012-08-09 09:06:52 +0000174// ---------------------- Address Descriptions ------------------- {{{1
175
Alexey Samsonove4bfca22012-08-09 09:27:24 +0000176static bool IsASCII(unsigned char c) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000177 return /*0x00 <= c &&*/ c <= 0x7F;
Alexey Samsonove4bfca22012-08-09 09:27:24 +0000178}
179
Alexey Samsonovc9424272013-03-27 10:41:22 +0000180static const char *MaybeDemangleGlobalName(const char *name) {
181 // We can spoil names of globals with C linkage, so use an heuristic
182 // approach to check if the name should be demangled.
Alexey Samsonov22e21b02013-09-16 15:45:06 +0000183 return (name[0] == '_' && name[1] == 'Z' && &getSymbolizer)
184 ? getSymbolizer()->Demangle(name)
185 : name;
Alexey Samsonovc9424272013-03-27 10:41:22 +0000186}
187
Alexey Samsonov939316c2013-04-01 08:57:38 +0000188// Check if the global is a zero-terminated ASCII string. If so, print it.
189static void PrintGlobalNameIfASCII(const __asan_global &g) {
190 for (uptr p = g.beg; p < g.beg + g.size - 1; p++) {
191 unsigned char c = *(unsigned char*)p;
192 if (c == '\0' || !IsASCII(c)) return;
193 }
194 if (*(char*)(g.beg + g.size - 1) != '\0') return;
195 Printf(" '%s' is ascii string '%s'\n",
196 MaybeDemangleGlobalName(g.name), (char*)g.beg);
197}
198
Evgeniy Stepanov589dcda2013-02-05 14:32:03 +0000199bool DescribeAddressRelativeToGlobal(uptr addr, uptr size,
200 const __asan_global &g) {
Kostya Serebryanya3b0e5e2013-01-23 11:14:21 +0000201 static const uptr kMinimalDistanceFromAnotherGlobal = 64;
202 if (addr <= g.beg - kMinimalDistanceFromAnotherGlobal) return false;
Alexey Samsonove4bfca22012-08-09 09:27:24 +0000203 if (addr >= g.beg + g.size_with_redzone) return false;
Kostya Serebryany58f54552012-12-18 07:32:16 +0000204 Decorator d;
205 Printf("%s", d.Location());
Alexey Samsonove4bfca22012-08-09 09:27:24 +0000206 if (addr < g.beg) {
Evgeniy Stepanov589dcda2013-02-05 14:32:03 +0000207 Printf("%p is located %zd bytes to the left", (void*)addr, g.beg - addr);
208 } else if (addr + size > g.beg + g.size) {
209 if (addr < g.beg + g.size)
210 addr = g.beg + g.size;
211 Printf("%p is located %zd bytes to the right", (void*)addr,
212 addr - (g.beg + g.size));
Alexey Samsonove4bfca22012-08-09 09:27:24 +0000213 } else {
Evgeniy Stepanov589dcda2013-02-05 14:32:03 +0000214 // Can it happen?
215 Printf("%p is located %zd bytes inside", (void*)addr, addr - g.beg);
Alexey Samsonove4bfca22012-08-09 09:27:24 +0000216 }
Kostya Serebryany60c9f442013-03-18 08:04:55 +0000217 Printf(" of global variable '%s' from '%s' (0x%zx) of size %zu\n",
Alexey Samsonovc9424272013-03-27 10:41:22 +0000218 MaybeDemangleGlobalName(g.name), g.module_name, g.beg, g.size);
Kostya Serebryany58f54552012-12-18 07:32:16 +0000219 Printf("%s", d.EndLocation());
Alexey Samsonove4bfca22012-08-09 09:27:24 +0000220 PrintGlobalNameIfASCII(g);
221 return true;
222}
223
Alexey Samsonove218beb2012-08-09 09:06:52 +0000224bool DescribeAddressIfShadow(uptr addr) {
225 if (AddrIsInMem(addr))
226 return false;
227 static const char kAddrInShadowReport[] =
228 "Address %p is located in the %s.\n";
229 if (AddrIsInShadowGap(addr)) {
Kostya Serebryany283c2962012-08-28 11:34:40 +0000230 Printf(kAddrInShadowReport, addr, "shadow gap area");
Alexey Samsonove218beb2012-08-09 09:06:52 +0000231 return true;
232 }
233 if (AddrIsInHighShadow(addr)) {
Kostya Serebryany283c2962012-08-28 11:34:40 +0000234 Printf(kAddrInShadowReport, addr, "high shadow area");
Alexey Samsonove218beb2012-08-09 09:06:52 +0000235 return true;
236 }
237 if (AddrIsInLowShadow(addr)) {
Kostya Serebryany283c2962012-08-28 11:34:40 +0000238 Printf(kAddrInShadowReport, addr, "low shadow area");
Alexey Samsonove218beb2012-08-09 09:06:52 +0000239 return true;
240 }
241 CHECK(0 && "Address is not in memory and not in shadow?");
242 return false;
243}
244
Kostya Serebryany50f3daa2013-03-22 10:36:24 +0000245// Return " (thread_name) " or an empty string if the name is empty.
246const char *ThreadNameWithParenthesis(AsanThreadContext *t, char buff[],
247 uptr buff_len) {
248 const char *name = t->name;
249 if (name[0] == '\0') return "";
250 buff[0] = 0;
251 internal_strncat(buff, " (", 3);
252 internal_strncat(buff, name, buff_len - 4);
253 internal_strncat(buff, ")", 2);
254 return buff;
255}
256
257const char *ThreadNameWithParenthesis(u32 tid, char buff[],
258 uptr buff_len) {
259 if (tid == kInvalidTid) return "";
260 asanThreadRegistry().CheckLocked();
261 AsanThreadContext *t = GetThreadContextByTidLocked(tid);
262 return ThreadNameWithParenthesis(t, buff, buff_len);
263}
264
Kostya Serebryanyedb39c72013-09-03 13:58:04 +0000265void PrintAccessAndVarIntersection(const char *var_name,
266 uptr var_beg, uptr var_size,
267 uptr addr, uptr access_size,
268 uptr prev_var_end, uptr next_var_beg) {
269 uptr var_end = var_beg + var_size;
270 uptr addr_end = addr + access_size;
271 const char *pos_descr = 0;
272 // If the variable [var_beg, var_end) is the nearest variable to the
273 // current memory access, indicate it in the log.
274 if (addr >= var_beg) {
275 if (addr_end <= var_end)
276 pos_descr = "is inside"; // May happen if this is a use-after-return.
277 else if (addr < var_end)
278 pos_descr = "partially overflows";
279 else if (addr_end <= next_var_beg &&
280 next_var_beg - addr_end >= addr - var_end)
281 pos_descr = "overflows";
282 } else {
283 if (addr_end > var_beg)
284 pos_descr = "partially underflows";
285 else if (addr >= prev_var_end &&
286 addr - prev_var_end >= var_beg - addr_end)
287 pos_descr = "underflows";
288 }
289 Printf(" [%zd, %zd) '%s'", var_beg, var_beg + var_size, var_name);
290 if (pos_descr) {
291 Decorator d;
292 // FIXME: we may want to also print the size of the access here,
293 // but in case of accesses generated by memset it may be confusing.
294 Printf("%s <== Memory access at offset %zd %s this variable%s\n",
295 d.Location(), addr, pos_descr, d.EndLocation());
296 } else {
297 Printf("\n");
298 }
299}
300
301struct StackVarDescr {
302 uptr beg;
303 uptr size;
304 const char *name_pos;
Kostya Serebryany89fe5642013-09-03 14:53:02 +0000305 uptr name_len;
Kostya Serebryanyedb39c72013-09-03 13:58:04 +0000306};
307
Alexey Samsonove218beb2012-08-09 09:06:52 +0000308bool DescribeAddressIfStack(uptr addr, uptr access_size) {
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000309 AsanThread *t = FindThreadByStackAddress(addr);
Alexey Samsonove218beb2012-08-09 09:06:52 +0000310 if (!t) return false;
Kostya Serebryany89fe5642013-09-03 14:53:02 +0000311 const uptr kBufSize = 4095;
Alexey Samsonove218beb2012-08-09 09:06:52 +0000312 char buf[kBufSize];
313 uptr offset = 0;
Kostya Serebryany50f3daa2013-03-22 10:36:24 +0000314 uptr frame_pc = 0;
315 char tname[128];
316 const char *frame_descr = t->GetFrameNameByAddr(addr, &offset, &frame_pc);
Kostya Serebryanyd570bb42013-05-22 14:21:34 +0000317
318#ifdef __powerpc64__
319 // On PowerPC64, the address of a function actually points to a
320 // three-doubleword data structure with the first field containing
321 // the address of the function's code.
322 frame_pc = *reinterpret_cast<uptr *>(frame_pc);
323#endif
324
Alexey Samsonove218beb2012-08-09 09:06:52 +0000325 // This string is created by the compiler and has the following form:
Kostya Serebryany50f3daa2013-03-22 10:36:24 +0000326 // "n alloc_1 alloc_2 ... alloc_n"
Alexey Samsonove218beb2012-08-09 09:06:52 +0000327 // where alloc_i looks like "offset size len ObjectName ".
328 CHECK(frame_descr);
Kostya Serebryany58f54552012-12-18 07:32:16 +0000329 Decorator d;
330 Printf("%s", d.Location());
Kostya Serebryany50f3daa2013-03-22 10:36:24 +0000331 Printf("Address %p is located in stack of thread T%d%s "
332 "at offset %zu in frame\n",
333 addr, t->tid(),
334 ThreadNameWithParenthesis(t->tid(), tname, sizeof(tname)),
335 offset);
336 // Now we print the frame where the alloca has happened.
337 // We print this frame as a stack trace with one element.
338 // The symbolizer may print more than one frame if inlining was involved.
339 // The frame numbers may be different than those in the stack trace printed
340 // previously. That's unfortunate, but I have no better solution,
341 // especially given that the alloca may be from entirely different place
342 // (e.g. use-after-scope, or different thread's stack).
343 StackTrace alloca_stack;
344 alloca_stack.trace[0] = frame_pc + 16;
345 alloca_stack.size = 1;
Kostya Serebryany58f54552012-12-18 07:32:16 +0000346 Printf("%s", d.EndLocation());
Kostya Serebryany50f3daa2013-03-22 10:36:24 +0000347 PrintStack(&alloca_stack);
Alexey Samsonove218beb2012-08-09 09:06:52 +0000348 // Report the number of stack objects.
349 char *p;
Timur Iskhodzhanov22917e92013-09-03 15:09:21 +0000350 uptr n_objects = (uptr)internal_simple_strtoll(frame_descr, &p, 10);
Kostya Serebryanya27bdf72013-04-05 14:40:25 +0000351 CHECK_GT(n_objects, 0);
Kostya Serebryany283c2962012-08-28 11:34:40 +0000352 Printf(" This frame has %zu object(s):\n", n_objects);
Kostya Serebryanyedb39c72013-09-03 13:58:04 +0000353
Alexey Samsonove218beb2012-08-09 09:06:52 +0000354 // Report all objects in this frame.
Kostya Serebryanyedb39c72013-09-03 13:58:04 +0000355 InternalScopedBuffer<StackVarDescr> vars(n_objects);
Kostya Serebryany89fe5642013-09-03 14:53:02 +0000356 for (uptr i = 0; i < n_objects; i++) {
357 uptr beg, size;
358 uptr len;
359 beg = (uptr)internal_simple_strtoll(p, &p, 10);
360 size = (uptr)internal_simple_strtoll(p, &p, 10);
361 len = (uptr)internal_simple_strtoll(p, &p, 10);
362 if (beg == 0 || size == 0 || *p != ' ') {
Kostya Serebryany283c2962012-08-28 11:34:40 +0000363 Printf("AddressSanitizer can't parse the stack frame "
Alexey Samsonove218beb2012-08-09 09:06:52 +0000364 "descriptor: |%s|\n", frame_descr);
365 break;
366 }
367 p++;
Kostya Serebryanyedb39c72013-09-03 13:58:04 +0000368 vars[i].beg = beg;
369 vars[i].size = size;
370 vars[i].name_pos = p;
371 vars[i].name_len = len;
Alexey Samsonove218beb2012-08-09 09:06:52 +0000372 p += len;
Kostya Serebryanyedb39c72013-09-03 13:58:04 +0000373 }
Kostya Serebryany89fe5642013-09-03 14:53:02 +0000374 for (uptr i = 0; i < n_objects; i++) {
Kostya Serebryanyedb39c72013-09-03 13:58:04 +0000375 buf[0] = 0;
376 internal_strncat(buf, vars[i].name_pos,
377 static_cast<uptr>(Min(kBufSize, vars[i].name_len)));
378 uptr prev_var_end = i ? vars[i - 1].beg + vars[i - 1].size : 0;
Timur Iskhodzhanov22917e92013-09-03 15:09:21 +0000379 uptr next_var_beg = i + 1 < n_objects ? vars[i + 1].beg : ~(0UL);
Kostya Serebryanyedb39c72013-09-03 13:58:04 +0000380 PrintAccessAndVarIntersection(buf, vars[i].beg, vars[i].size,
381 offset, access_size,
382 prev_var_end, next_var_beg);
Alexey Samsonove218beb2012-08-09 09:06:52 +0000383 }
Kostya Serebryany283c2962012-08-28 11:34:40 +0000384 Printf("HINT: this may be a false positive if your program uses "
Alexey Samsonov08700282012-11-23 09:46:34 +0000385 "some custom stack unwind mechanism or swapcontext\n"
Alexey Samsonove218beb2012-08-09 09:06:52 +0000386 " (longjmp and C++ exceptions *are* supported)\n");
Timur Iskhodzhanov997454a2013-09-10 08:36:21 +0000387 DescribeThread(t);
Alexey Samsonove218beb2012-08-09 09:06:52 +0000388 return true;
389}
390
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000391static void DescribeAccessToHeapChunk(AsanChunkView chunk, uptr addr,
392 uptr access_size) {
Evgeniy Stepanov589dcda2013-02-05 14:32:03 +0000393 sptr offset;
Kostya Serebryany58f54552012-12-18 07:32:16 +0000394 Decorator d;
395 Printf("%s", d.Location());
Evgeniy Stepanov589dcda2013-02-05 14:32:03 +0000396 if (chunk.AddrIsAtLeft(addr, access_size, &offset)) {
397 Printf("%p is located %zd bytes to the left of", (void*)addr, offset);
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000398 } else if (chunk.AddrIsAtRight(addr, access_size, &offset)) {
Evgeniy Stepanov589dcda2013-02-05 14:32:03 +0000399 if (offset < 0) {
400 addr -= offset;
401 offset = 0;
402 }
403 Printf("%p is located %zd bytes to the right of", (void*)addr, offset);
404 } else if (chunk.AddrIsInside(addr, access_size, &offset)) {
405 Printf("%p is located %zd bytes inside of", (void*)addr, offset);
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000406 } else {
Evgeniy Stepanov589dcda2013-02-05 14:32:03 +0000407 Printf("%p is located somewhere around (this is AddressSanitizer bug!)",
408 (void*)addr);
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000409 }
410 Printf(" %zu-byte region [%p,%p)\n", chunk.UsedSize(),
411 (void*)(chunk.Beg()), (void*)(chunk.End()));
Kostya Serebryany58f54552012-12-18 07:32:16 +0000412 Printf("%s", d.EndLocation());
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000413}
414
415void DescribeHeapAddress(uptr addr, uptr access_size) {
416 AsanChunkView chunk = FindHeapChunkByAddress(addr);
Alexey Samsonovd9def292013-10-14 11:13:54 +0000417 if (!chunk.IsValid()) {
418 Printf("AddressSanitizer can not describe address in more detail "
419 "(wild memory access suspected).\n");
420 return;
421 }
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000422 DescribeAccessToHeapChunk(chunk, addr, access_size);
423 CHECK(chunk.AllocTid() != kInvalidTid);
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000424 asanThreadRegistry().CheckLocked();
425 AsanThreadContext *alloc_thread =
426 GetThreadContextByTidLocked(chunk.AllocTid());
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000427 StackTrace alloc_stack;
428 chunk.GetAllocStack(&alloc_stack);
Kostya Serebryany716e2f22012-12-07 15:15:01 +0000429 char tname[128];
Kostya Serebryany58f54552012-12-18 07:32:16 +0000430 Decorator d;
Timur Iskhodzhanov997454a2013-09-10 08:36:21 +0000431 AsanThreadContext *free_thread = 0;
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000432 if (chunk.FreeTid() != kInvalidTid) {
Timur Iskhodzhanov997454a2013-09-10 08:36:21 +0000433 free_thread = GetThreadContextByTidLocked(chunk.FreeTid());
Kostya Serebryany58f54552012-12-18 07:32:16 +0000434 Printf("%sfreed by thread T%d%s here:%s\n", d.Allocation(),
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000435 free_thread->tid,
Kostya Serebryany58f54552012-12-18 07:32:16 +0000436 ThreadNameWithParenthesis(free_thread, tname, sizeof(tname)),
437 d.EndAllocation());
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000438 StackTrace free_stack;
439 chunk.GetFreeStack(&free_stack);
440 PrintStack(&free_stack);
Kostya Serebryany58f54552012-12-18 07:32:16 +0000441 Printf("%spreviously allocated by thread T%d%s here:%s\n",
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000442 d.Allocation(), alloc_thread->tid,
Kostya Serebryany58f54552012-12-18 07:32:16 +0000443 ThreadNameWithParenthesis(alloc_thread, tname, sizeof(tname)),
444 d.EndAllocation());
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000445 } else {
Kostya Serebryany58f54552012-12-18 07:32:16 +0000446 Printf("%sallocated by thread T%d%s here:%s\n", d.Allocation(),
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000447 alloc_thread->tid,
Kostya Serebryany58f54552012-12-18 07:32:16 +0000448 ThreadNameWithParenthesis(alloc_thread, tname, sizeof(tname)),
449 d.EndAllocation());
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000450 }
Timur Iskhodzhanov997454a2013-09-10 08:36:21 +0000451 PrintStack(&alloc_stack);
452 DescribeThread(GetCurrentThread());
453 if (free_thread)
454 DescribeThread(free_thread);
455 DescribeThread(alloc_thread);
Alexey Samsonov5c153fa2012-09-18 07:38:10 +0000456}
457
Alexey Samsonove218beb2012-08-09 09:06:52 +0000458void DescribeAddress(uptr addr, uptr access_size) {
459 // Check if this is shadow or shadow gap.
460 if (DescribeAddressIfShadow(addr))
461 return;
462 CHECK(AddrIsInMem(addr));
Evgeniy Stepanov589dcda2013-02-05 14:32:03 +0000463 if (DescribeAddressIfGlobal(addr, access_size))
Alexey Samsonove218beb2012-08-09 09:06:52 +0000464 return;
465 if (DescribeAddressIfStack(addr, access_size))
466 return;
467 // Assume it is a heap address.
468 DescribeHeapAddress(addr, access_size);
469}
470
Alexey Samsonov71b42c92012-09-05 07:37:15 +0000471// ------------------- Thread description -------------------- {{{1
472
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000473void DescribeThread(AsanThreadContext *context) {
474 CHECK(context);
475 asanThreadRegistry().CheckLocked();
Alexey Samsonov71b42c92012-09-05 07:37:15 +0000476 // No need to announce the main thread.
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000477 if (context->tid == 0 || context->announced) {
Alexey Samsonov71b42c92012-09-05 07:37:15 +0000478 return;
479 }
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000480 context->announced = true;
Kostya Serebryany716e2f22012-12-07 15:15:01 +0000481 char tname[128];
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000482 Printf("Thread T%d%s", context->tid,
483 ThreadNameWithParenthesis(context->tid, tname, sizeof(tname)));
Kostya Serebryany716e2f22012-12-07 15:15:01 +0000484 Printf(" created by T%d%s here:\n",
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000485 context->parent_tid,
486 ThreadNameWithParenthesis(context->parent_tid,
Kostya Serebryany716e2f22012-12-07 15:15:01 +0000487 tname, sizeof(tname)));
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000488 PrintStack(&context->stack);
Alexey Samsonov71b42c92012-09-05 07:37:15 +0000489 // Recursively described parent thread if needed.
490 if (flags()->print_full_thread_history) {
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000491 AsanThreadContext *parent_context =
492 GetThreadContextByTidLocked(context->parent_tid);
493 DescribeThread(parent_context);
Alexey Samsonov71b42c92012-09-05 07:37:15 +0000494 }
495}
496
Alexey Samsonove218beb2012-08-09 09:06:52 +0000497// -------------------- Different kinds of reports ----------------- {{{1
498
Alexey Samsonov98737922012-08-10 15:13:05 +0000499// Use ScopedInErrorReport to run common actions just before and
500// immediately after printing error report.
501class ScopedInErrorReport {
502 public:
503 ScopedInErrorReport() {
504 static atomic_uint32_t num_calls;
Alexey Samsonov62e27092012-09-17 08:02:19 +0000505 static u32 reporting_thread_tid;
Alexey Samsonov98737922012-08-10 15:13:05 +0000506 if (atomic_fetch_add(&num_calls, 1, memory_order_relaxed) != 0) {
507 // Do not print more than one report, otherwise they will mix up.
508 // Error reporting functions shouldn't return at this situation, as
509 // they are defined as no-return.
Kostya Serebryany283c2962012-08-28 11:34:40 +0000510 Report("AddressSanitizer: while reporting a bug found another one."
Alexey Samsonov98737922012-08-10 15:13:05 +0000511 "Ignoring.\n");
Alexey Samsonov89c13842013-03-20 09:23:28 +0000512 u32 current_tid = GetCurrentTidOrInvalid();
Alexey Samsonov62e27092012-09-17 08:02:19 +0000513 if (current_tid != reporting_thread_tid) {
514 // ASan found two bugs in different threads simultaneously. Sleep
515 // long enough to make sure that the thread which started to print
516 // an error report will finish doing it.
517 SleepForSeconds(Max(100, flags()->sleep_before_dying + 1));
518 }
Alexey Samsonovf8822472013-02-20 13:54:32 +0000519 // If we're still not dead for some reason, use raw _exit() instead of
Alexey Samsonov031633b2012-11-19 11:22:22 +0000520 // Die() to bypass any additional checks.
Alexey Samsonovf8822472013-02-20 13:54:32 +0000521 internal__exit(flags()->exitcode);
Alexey Samsonov98737922012-08-10 15:13:05 +0000522 }
Alexey Samsonov6a08d292012-12-07 22:01:28 +0000523 ASAN_ON_ERROR();
Alexey Samsonov7ed46ff2013-04-05 07:30:29 +0000524 // Make sure the registry and sanitizer report mutexes are locked while
525 // we're printing an error report.
526 // We can lock them only here to avoid self-deadlock in case of
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000527 // recursive reports.
528 asanThreadRegistry().Lock();
Alexey Samsonov7ed46ff2013-04-05 07:30:29 +0000529 CommonSanitizerReportMutex.Lock();
Alexey Samsonov89c13842013-03-20 09:23:28 +0000530 reporting_thread_tid = GetCurrentTidOrInvalid();
Kostya Serebryany283c2962012-08-28 11:34:40 +0000531 Printf("===================================================="
Alexey Samsonov62e27092012-09-17 08:02:19 +0000532 "=============\n");
Alexey Samsonov98737922012-08-10 15:13:05 +0000533 }
534 // Destructor is NORETURN, as functions that report errors are.
535 NORETURN ~ScopedInErrorReport() {
536 // Make sure the current thread is announced.
Timur Iskhodzhanov997454a2013-09-10 08:36:21 +0000537 DescribeThread(GetCurrentThread());
Alexey Samsonov98737922012-08-10 15:13:05 +0000538 // Print memory stats.
Kostya Serebryany95f630a2013-01-28 07:34:22 +0000539 if (flags()->print_stats)
540 __asan_print_accumulated_stats();
Alexey Samsonov98737922012-08-10 15:13:05 +0000541 if (error_report_callback) {
542 error_report_callback(error_message_buffer);
543 }
Kostya Serebryany283c2962012-08-28 11:34:40 +0000544 Report("ABORTING\n");
Alexey Samsonov98737922012-08-10 15:13:05 +0000545 Die();
546 }
547};
548
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000549static void ReportSummary(const char *error_type, StackTrace *stack) {
550 if (!stack->size) return;
Alexey Samsonov22e21b02013-09-16 15:45:06 +0000551 if (&getSymbolizer && getSymbolizer()->IsAvailable()) {
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000552 AddressInfo ai;
553 // Currently, we include the first stack frame into the report summary.
554 // Maybe sometimes we need to choose another frame (e.g. skip memcpy/etc).
Alexey Samsonov22c1c182013-04-11 11:45:04 +0000555 uptr pc = StackTrace::GetPreviousInstructionPc(stack->trace[0]);
Alexey Samsonov7847d772013-09-10 14:36:16 +0000556 getSymbolizer()->SymbolizeCode(pc, &ai, 1);
Alexey Samsonov90b0f1e2013-10-04 08:55:03 +0000557 ReportErrorSummary(error_type, ai.file, ai.line, ai.function);
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000558 }
559 // FIXME: do we need to print anything at all if there is no symbolizer?
560}
561
Alexey Samsonov73545092012-08-09 07:40:58 +0000562void ReportSIGSEGV(uptr pc, uptr sp, uptr bp, uptr addr) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000563 ScopedInErrorReport in_report;
Kostya Serebryany58f54552012-12-18 07:32:16 +0000564 Decorator d;
565 Printf("%s", d.Warning());
Kostya Serebryany69d8ede2012-10-15 13:04:58 +0000566 Report("ERROR: AddressSanitizer: SEGV on unknown address %p"
Alexey Samsonov73545092012-08-09 07:40:58 +0000567 " (pc %p sp %p bp %p T%d)\n",
568 (void*)addr, (void*)pc, (void*)sp, (void*)bp,
Alexey Samsonov89c13842013-03-20 09:23:28 +0000569 GetCurrentTidOrInvalid());
Kostya Serebryany58f54552012-12-18 07:32:16 +0000570 Printf("%s", d.EndWarning());
Kostya Serebryanya30c8f92012-12-13 09:34:23 +0000571 GET_STACK_TRACE_FATAL(pc, bp);
Kostya Serebryanycc347222012-08-28 13:49:49 +0000572 PrintStack(&stack);
Alexey Samsonovd9def292013-10-14 11:13:54 +0000573 Printf("AddressSanitizer can not provide additional info.\n");
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000574 ReportSummary("SEGV", &stack);
Alexey Samsonov73545092012-08-09 07:40:58 +0000575}
576
Kostya Serebryanyc3390df2012-08-28 11:54:30 +0000577void ReportDoubleFree(uptr addr, StackTrace *stack) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000578 ScopedInErrorReport in_report;
Kostya Serebryany58f54552012-12-18 07:32:16 +0000579 Decorator d;
580 Printf("%s", d.Warning());
Kostya Serebryanya89a35a2013-03-26 08:01:37 +0000581 char tname[128];
582 u32 curr_tid = GetCurrentTidOrInvalid();
583 Report("ERROR: AddressSanitizer: attempting double-free on %p in "
584 "thread T%d%s:\n",
585 addr, curr_tid,
586 ThreadNameWithParenthesis(curr_tid, tname, sizeof(tname)));
587
Kostya Serebryany58f54552012-12-18 07:32:16 +0000588 Printf("%s", d.EndWarning());
Kostya Serebryanycc347222012-08-28 13:49:49 +0000589 PrintStack(stack);
Alexey Samsonovf7c1d182012-08-09 08:15:46 +0000590 DescribeHeapAddress(addr, 1);
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000591 ReportSummary("double-free", stack);
Alexey Samsonovf7c1d182012-08-09 08:15:46 +0000592}
593
Kostya Serebryanyc3390df2012-08-28 11:54:30 +0000594void ReportFreeNotMalloced(uptr addr, StackTrace *stack) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000595 ScopedInErrorReport in_report;
Kostya Serebryany58f54552012-12-18 07:32:16 +0000596 Decorator d;
597 Printf("%s", d.Warning());
Kostya Serebryanya89a35a2013-03-26 08:01:37 +0000598 char tname[128];
599 u32 curr_tid = GetCurrentTidOrInvalid();
Kostya Serebryany69d8ede2012-10-15 13:04:58 +0000600 Report("ERROR: AddressSanitizer: attempting free on address "
Kostya Serebryanya89a35a2013-03-26 08:01:37 +0000601 "which was not malloc()-ed: %p in thread T%d%s\n", addr,
602 curr_tid, ThreadNameWithParenthesis(curr_tid, tname, sizeof(tname)));
Kostya Serebryany58f54552012-12-18 07:32:16 +0000603 Printf("%s", d.EndWarning());
Kostya Serebryanycc347222012-08-28 13:49:49 +0000604 PrintStack(stack);
Alexey Samsonov98737922012-08-10 15:13:05 +0000605 DescribeHeapAddress(addr, 1);
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000606 ReportSummary("bad-free", stack);
Alexey Samsonovf7c1d182012-08-09 08:15:46 +0000607}
608
Kostya Serebryanyfe6d9162012-12-21 08:53:59 +0000609void ReportAllocTypeMismatch(uptr addr, StackTrace *stack,
610 AllocType alloc_type,
611 AllocType dealloc_type) {
612 static const char *alloc_names[] =
613 {"INVALID", "malloc", "operator new", "operator new []"};
614 static const char *dealloc_names[] =
615 {"INVALID", "free", "operator delete", "operator delete []"};
616 CHECK_NE(alloc_type, dealloc_type);
617 ScopedInErrorReport in_report;
618 Decorator d;
619 Printf("%s", d.Warning());
620 Report("ERROR: AddressSanitizer: alloc-dealloc-mismatch (%s vs %s) on %p\n",
621 alloc_names[alloc_type], dealloc_names[dealloc_type], addr);
622 Printf("%s", d.EndWarning());
623 PrintStack(stack);
624 DescribeHeapAddress(addr, 1);
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000625 ReportSummary("alloc-dealloc-mismatch", stack);
Kostya Serebryanyfe6d9162012-12-21 08:53:59 +0000626 Report("HINT: if you don't care about these warnings you may set "
627 "ASAN_OPTIONS=alloc_dealloc_mismatch=0\n");
628}
629
Kostya Serebryanyc3390df2012-08-28 11:54:30 +0000630void ReportMallocUsableSizeNotOwned(uptr addr, StackTrace *stack) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000631 ScopedInErrorReport in_report;
Kostya Serebryany58f54552012-12-18 07:32:16 +0000632 Decorator d;
633 Printf("%s", d.Warning());
Kostya Serebryany69d8ede2012-10-15 13:04:58 +0000634 Report("ERROR: AddressSanitizer: attempting to call "
Alexey Samsonovf7c1d182012-08-09 08:15:46 +0000635 "malloc_usable_size() for pointer which is "
636 "not owned: %p\n", addr);
Kostya Serebryany58f54552012-12-18 07:32:16 +0000637 Printf("%s", d.EndWarning());
Kostya Serebryanycc347222012-08-28 13:49:49 +0000638 PrintStack(stack);
Alexey Samsonovf7c1d182012-08-09 08:15:46 +0000639 DescribeHeapAddress(addr, 1);
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000640 ReportSummary("bad-malloc_usable_size", stack);
Alexey Samsonovf7c1d182012-08-09 08:15:46 +0000641}
642
Kostya Serebryanyc3390df2012-08-28 11:54:30 +0000643void ReportAsanGetAllocatedSizeNotOwned(uptr addr, StackTrace *stack) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000644 ScopedInErrorReport in_report;
Kostya Serebryany58f54552012-12-18 07:32:16 +0000645 Decorator d;
646 Printf("%s", d.Warning());
Kostya Serebryany69d8ede2012-10-15 13:04:58 +0000647 Report("ERROR: AddressSanitizer: attempting to call "
Alexey Samsonovf7c1d182012-08-09 08:15:46 +0000648 "__asan_get_allocated_size() for pointer which is "
649 "not owned: %p\n", addr);
Kostya Serebryany58f54552012-12-18 07:32:16 +0000650 Printf("%s", d.EndWarning());
Kostya Serebryanycc347222012-08-28 13:49:49 +0000651 PrintStack(stack);
Alexey Samsonovf7c1d182012-08-09 08:15:46 +0000652 DescribeHeapAddress(addr, 1);
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000653 ReportSummary("bad-__asan_get_allocated_size", stack);
Alexey Samsonovf7c1d182012-08-09 08:15:46 +0000654}
655
Alexey Samsonov487fee72012-08-09 08:32:33 +0000656void ReportStringFunctionMemoryRangesOverlap(
657 const char *function, const char *offset1, uptr length1,
Kostya Serebryanyc3390df2012-08-28 11:54:30 +0000658 const char *offset2, uptr length2, StackTrace *stack) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000659 ScopedInErrorReport in_report;
Kostya Serebryany58f54552012-12-18 07:32:16 +0000660 Decorator d;
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000661 char bug_type[100];
662 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function);
Kostya Serebryany58f54552012-12-18 07:32:16 +0000663 Printf("%s", d.Warning());
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000664 Report("ERROR: AddressSanitizer: %s: "
Alexey Samsonov487fee72012-08-09 08:32:33 +0000665 "memory ranges [%p,%p) and [%p, %p) overlap\n", \
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000666 bug_type, offset1, offset1 + length1, offset2, offset2 + length2);
Kostya Serebryany58f54552012-12-18 07:32:16 +0000667 Printf("%s", d.EndWarning());
Kostya Serebryanycc347222012-08-28 13:49:49 +0000668 PrintStack(stack);
Alexey Samsonov98737922012-08-10 15:13:05 +0000669 DescribeAddress((uptr)offset1, length1);
670 DescribeAddress((uptr)offset2, length2);
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000671 ReportSummary(bug_type, stack);
Alexey Samsonov487fee72012-08-09 08:32:33 +0000672}
Alexey Samsonovf7c1d182012-08-09 08:15:46 +0000673
Alexey Samsonov663c5012012-08-09 12:15:40 +0000674// ----------------------- Mac-specific reports ----------------- {{{1
675
Alexey Samsonov663c5012012-08-09 12:15:40 +0000676void WarnMacFreeUnallocated(
Kostya Serebryanyc3390df2012-08-28 11:54:30 +0000677 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000678 // Just print a warning here.
Kostya Serebryany283c2962012-08-28 11:34:40 +0000679 Printf("free_common(%p) -- attempting to free unallocated memory.\n"
Alexey Samsonov663c5012012-08-09 12:15:40 +0000680 "AddressSanitizer is ignoring this error on Mac OS now.\n",
681 addr);
682 PrintZoneForPointer(addr, zone_ptr, zone_name);
Kostya Serebryanycc347222012-08-28 13:49:49 +0000683 PrintStack(stack);
Alexey Samsonov98737922012-08-10 15:13:05 +0000684 DescribeHeapAddress(addr, 1);
Alexey Samsonov663c5012012-08-09 12:15:40 +0000685}
686
687void ReportMacMzReallocUnknown(
Kostya Serebryanyc3390df2012-08-28 11:54:30 +0000688 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000689 ScopedInErrorReport in_report;
Kostya Serebryany283c2962012-08-28 11:34:40 +0000690 Printf("mz_realloc(%p) -- attempting to realloc unallocated memory.\n"
Alexey Samsonov663c5012012-08-09 12:15:40 +0000691 "This is an unrecoverable problem, exiting now.\n",
692 addr);
693 PrintZoneForPointer(addr, zone_ptr, zone_name);
Kostya Serebryanycc347222012-08-28 13:49:49 +0000694 PrintStack(stack);
Alexey Samsonov98737922012-08-10 15:13:05 +0000695 DescribeHeapAddress(addr, 1);
Alexey Samsonov663c5012012-08-09 12:15:40 +0000696}
697
698void ReportMacCfReallocUnknown(
Kostya Serebryanyc3390df2012-08-28 11:54:30 +0000699 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000700 ScopedInErrorReport in_report;
Kostya Serebryany283c2962012-08-28 11:34:40 +0000701 Printf("cf_realloc(%p) -- attempting to realloc unallocated memory.\n"
Alexey Samsonov663c5012012-08-09 12:15:40 +0000702 "This is an unrecoverable problem, exiting now.\n",
703 addr);
704 PrintZoneForPointer(addr, zone_ptr, zone_name);
Kostya Serebryanycc347222012-08-28 13:49:49 +0000705 PrintStack(stack);
Alexey Samsonov98737922012-08-10 15:13:05 +0000706 DescribeHeapAddress(addr, 1);
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000707}
708
Alexey Samsonov812ff902012-08-09 11:29:13 +0000709} // namespace __asan
710
711// --------------------------- Interface --------------------- {{{1
712using namespace __asan; // NOLINT
713
714void __asan_report_error(uptr pc, uptr bp, uptr sp,
715 uptr addr, bool is_write, uptr access_size) {
Alexey Samsonov98737922012-08-10 15:13:05 +0000716 ScopedInErrorReport in_report;
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000717
Alexey Samsonov98737922012-08-10 15:13:05 +0000718 // Determine the error type.
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000719 const char *bug_descr = "unknown-crash";
720 if (AddrIsInMem(addr)) {
721 u8 *shadow_addr = (u8*)MemToShadow(addr);
722 // If we are accessing 16 bytes, look at the second shadow byte.
723 if (*shadow_addr == 0 && access_size > SHADOW_GRANULARITY)
724 shadow_addr++;
725 // If we are in the partial right redzone, look at the next shadow byte.
726 if (*shadow_addr > 0 && *shadow_addr < 128)
727 shadow_addr++;
728 switch (*shadow_addr) {
729 case kAsanHeapLeftRedzoneMagic:
730 case kAsanHeapRightRedzoneMagic:
731 bug_descr = "heap-buffer-overflow";
732 break;
733 case kAsanHeapFreeMagic:
734 bug_descr = "heap-use-after-free";
735 break;
736 case kAsanStackLeftRedzoneMagic:
737 bug_descr = "stack-buffer-underflow";
738 break;
Kostya Serebryany3945c582012-08-21 14:10:25 +0000739 case kAsanInitializationOrderMagic:
740 bug_descr = "initialization-order-fiasco";
741 break;
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000742 case kAsanStackMidRedzoneMagic:
743 case kAsanStackRightRedzoneMagic:
744 case kAsanStackPartialRedzoneMagic:
745 bug_descr = "stack-buffer-overflow";
746 break;
747 case kAsanStackAfterReturnMagic:
748 bug_descr = "stack-use-after-return";
749 break;
750 case kAsanUserPoisonedMemoryMagic:
751 bug_descr = "use-after-poison";
752 break;
Alexey Samsonovd4b5db82012-12-04 01:38:15 +0000753 case kAsanStackUseAfterScopeMagic:
754 bug_descr = "stack-use-after-scope";
755 break;
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000756 case kAsanGlobalRedzoneMagic:
757 bug_descr = "global-buffer-overflow";
758 break;
759 }
760 }
Kostya Serebryany58f54552012-12-18 07:32:16 +0000761 Decorator d;
762 Printf("%s", d.Warning());
Kostya Serebryany69d8ede2012-10-15 13:04:58 +0000763 Report("ERROR: AddressSanitizer: %s on address "
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000764 "%p at pc 0x%zx bp 0x%zx sp 0x%zx\n",
765 bug_descr, (void*)addr, pc, bp, sp);
Kostya Serebryany58f54552012-12-18 07:32:16 +0000766 Printf("%s", d.EndWarning());
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000767
Alexey Samsonov89c13842013-03-20 09:23:28 +0000768 u32 curr_tid = GetCurrentTidOrInvalid();
Kostya Serebryany716e2f22012-12-07 15:15:01 +0000769 char tname[128];
Kostya Serebryany58f54552012-12-18 07:32:16 +0000770 Printf("%s%s of size %zu at %p thread T%d%s%s\n",
771 d.Access(),
772 access_size ? (is_write ? "WRITE" : "READ") : "ACCESS",
773 access_size, (void*)addr, curr_tid,
774 ThreadNameWithParenthesis(curr_tid, tname, sizeof(tname)),
775 d.EndAccess());
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000776
Kostya Serebryanya30c8f92012-12-13 09:34:23 +0000777 GET_STACK_TRACE_FATAL(pc, bp);
Kostya Serebryanycc347222012-08-28 13:49:49 +0000778 PrintStack(&stack);
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000779
780 DescribeAddress(addr, access_size);
Kostya Serebryany2673fd82013-02-06 12:36:49 +0000781 ReportSummary(bug_descr, &stack);
Alexey Samsonov98737922012-08-10 15:13:05 +0000782 PrintShadowMemoryForAddress(addr);
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000783}
784
Alexey Samsonovc98570b2012-08-09 10:56:57 +0000785void NOINLINE __asan_set_error_report_callback(void (*callback)(const char*)) {
786 error_report_callback = callback;
787 if (callback) {
788 error_message_buffer_size = 1 << 16;
789 error_message_buffer =
790 (char*)MmapOrDie(error_message_buffer_size, __FUNCTION__);
791 error_message_buffer_pos = 0;
792 }
793}
Alexey Samsonovf657a192012-08-13 11:23:40 +0000794
Kostya Serebryany17a7c672012-12-29 10:18:31 +0000795void __asan_describe_address(uptr addr) {
796 DescribeAddress(addr, 1);
797}
798
Alexey Samsonov6a08d292012-12-07 22:01:28 +0000799#if !SANITIZER_SUPPORTS_WEAK_HOOKS
Alexey Samsonov86633432012-10-02 14:06:39 +0000800// Provide default implementation of __asan_on_error that does nothing
801// and may be overriden by user.
Timur Iskhodzhanov3c80c6c2013-08-13 11:42:45 +0000802SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE NOINLINE
Alexey Samsonov86633432012-10-02 14:06:39 +0000803void __asan_on_error() {}
Alexey Samsonov6a08d292012-12-07 22:01:28 +0000804#endif