1018981977
libsanitizer/ * All source files: Merge from upstream 285547. * configure.tgt (SANITIZER_COMMON_TARGET_DEPENDENT_OBJECTS): New variable. * configure.ac (SANITIZER_COMMON_TARGET_DEPENDENT_OBJECTS): Handle it. * asan/Makefile.am (asan_files): Add new files. * asan/Makefile.in: Regenerate. * ubsan/Makefile.in: Likewise. * lsan/Makefile.in: Likewise. * tsan/Makefile.am (tsan_files): Add new files. * tsan/Makefile.in: Regenerate. * sanitizer_common/Makefile.am (sanitizer_common_files): Add new files. (EXTRA_libsanitizer_common_la_SOURCES): Define. (libsanitizer_common_la_LIBADD): Likewise. (libsanitizer_common_la_DEPENDENCIES): Likewise. * sanitizer_common/Makefile.in: Regenerate. * interception/Makefile.in: Likewise. * libbacktace/Makefile.in: Likewise. * Makefile.in: Likewise. * configure: Likewise. * merge.sh: Handle builtins/assembly.h merging. * builtins/assembly.h: New file. * asan/libtool-version: Bump the libasan SONAME. From-SVN: r241977
119 lines
4.0 KiB
C++
119 lines
4.0 KiB
C++
//===-- sanitizer_stacktrace_libcdep.cc -----------------------------------===//
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file is shared between AddressSanitizer and ThreadSanitizer
|
|
// run-time libraries.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "sanitizer_common.h"
|
|
#include "sanitizer_placement_new.h"
|
|
#include "sanitizer_stacktrace.h"
|
|
#include "sanitizer_stacktrace_printer.h"
|
|
#include "sanitizer_symbolizer.h"
|
|
|
|
namespace __sanitizer {
|
|
|
|
void StackTrace::Print() const {
|
|
if (trace == nullptr || size == 0) {
|
|
Printf(" <empty stack>\n\n");
|
|
return;
|
|
}
|
|
InternalScopedString frame_desc(GetPageSizeCached() * 2);
|
|
InternalScopedString dedup_token(GetPageSizeCached());
|
|
int dedup_frames = common_flags()->dedup_token_length;
|
|
uptr frame_num = 0;
|
|
for (uptr i = 0; i < size && trace[i]; i++) {
|
|
// PCs in stack traces are actually the return addresses, that is,
|
|
// addresses of the next instructions after the call.
|
|
uptr pc = GetPreviousInstructionPc(trace[i]);
|
|
SymbolizedStack *frames = Symbolizer::GetOrInit()->SymbolizePC(pc);
|
|
CHECK(frames);
|
|
for (SymbolizedStack *cur = frames; cur; cur = cur->next) {
|
|
frame_desc.clear();
|
|
RenderFrame(&frame_desc, common_flags()->stack_trace_format, frame_num++,
|
|
cur->info, common_flags()->symbolize_vs_style,
|
|
common_flags()->strip_path_prefix);
|
|
Printf("%s\n", frame_desc.data());
|
|
if (dedup_frames-- > 0) {
|
|
if (dedup_token.length())
|
|
dedup_token.append("--");
|
|
dedup_token.append(cur->info.function);
|
|
}
|
|
}
|
|
frames->ClearAll();
|
|
}
|
|
// Always print a trailing empty line after stack trace.
|
|
Printf("\n");
|
|
if (dedup_token.length())
|
|
Printf("DEDUP_TOKEN: %s\n", dedup_token.data());
|
|
}
|
|
|
|
void BufferedStackTrace::Unwind(u32 max_depth, uptr pc, uptr bp, void *context,
|
|
uptr stack_top, uptr stack_bottom,
|
|
bool request_fast_unwind) {
|
|
top_frame_bp = (max_depth > 0) ? bp : 0;
|
|
// Avoid doing any work for small max_depth.
|
|
if (max_depth == 0) {
|
|
size = 0;
|
|
return;
|
|
}
|
|
if (max_depth == 1) {
|
|
size = 1;
|
|
trace_buffer[0] = pc;
|
|
return;
|
|
}
|
|
if (!WillUseFastUnwind(request_fast_unwind)) {
|
|
#if SANITIZER_CAN_SLOW_UNWIND
|
|
if (context)
|
|
SlowUnwindStackWithContext(pc, context, max_depth);
|
|
else
|
|
SlowUnwindStack(pc, max_depth);
|
|
#else
|
|
UNREACHABLE("slow unwind requested but not available");
|
|
#endif
|
|
} else {
|
|
FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
|
|
}
|
|
}
|
|
|
|
} // namespace __sanitizer
|
|
using namespace __sanitizer;
|
|
|
|
extern "C" {
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __sanitizer_symbolize_pc(uptr pc, const char *fmt, char *out_buf,
|
|
uptr out_buf_size) {
|
|
if (!out_buf_size) return;
|
|
pc = StackTrace::GetPreviousInstructionPc(pc);
|
|
SymbolizedStack *frame = Symbolizer::GetOrInit()->SymbolizePC(pc);
|
|
if (!frame) {
|
|
internal_strncpy(out_buf, "<can't symbolize>", out_buf_size);
|
|
out_buf[out_buf_size - 1] = 0;
|
|
return;
|
|
}
|
|
InternalScopedString frame_desc(GetPageSizeCached());
|
|
RenderFrame(&frame_desc, fmt, 0, frame->info,
|
|
common_flags()->symbolize_vs_style,
|
|
common_flags()->strip_path_prefix);
|
|
internal_strncpy(out_buf, frame_desc.data(), out_buf_size);
|
|
out_buf[out_buf_size - 1] = 0;
|
|
}
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __sanitizer_symbolize_global(uptr data_addr, const char *fmt,
|
|
char *out_buf, uptr out_buf_size) {
|
|
if (!out_buf_size) return;
|
|
out_buf[0] = 0;
|
|
DataInfo DI;
|
|
if (!Symbolizer::GetOrInit()->SymbolizeData(data_addr, &DI)) return;
|
|
InternalScopedString data_desc(GetPageSizeCached());
|
|
RenderData(&data_desc, fmt, &DI, common_flags()->strip_path_prefix);
|
|
internal_strncpy(out_buf, data_desc.data(), out_buf_size);
|
|
out_buf[out_buf_size - 1] = 0;
|
|
}
|
|
} // extern "C"
|