9782b87074
Bug: 136138882 Test: Ran malloc debug tests. Test: Ran an app with backtrace_full and verified demangling working in Test: log file. Test: Enabled leak checking and verified that the logs include properly Test: demangled. Change-Id: Ic4fd9f1522451e867048ac1bea59d8c5ed0d3577
119 lines
3.8 KiB
C++
119 lines
3.8 KiB
C++
/*
|
|
* Copyright (C) 2018 The Android Open Source Project
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <inttypes.h>
|
|
#include <pthread.h>
|
|
#include <stdint.h>
|
|
|
|
#include <algorithm>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <android-base/stringprintf.h>
|
|
#include <unwindstack/LocalUnwinder.h>
|
|
#include <unwindstack/MapInfo.h>
|
|
|
|
#include "UnwindBacktrace.h"
|
|
#include "debug_log.h"
|
|
|
|
#if defined(__LP64__)
|
|
#define PAD_PTR "016" PRIx64
|
|
#else
|
|
#define PAD_PTR "08" PRIx64
|
|
#endif
|
|
|
|
extern "C" char* __cxa_demangle(const char*, char*, size_t*, int*);
|
|
|
|
static pthread_once_t g_setup_once = PTHREAD_ONCE_INIT;
|
|
|
|
static unwindstack::LocalUnwinder* g_unwinder;
|
|
|
|
static void Setup() {
|
|
#if defined(__LP64__)
|
|
std::vector<std::string> skip_libraries{"/system/lib64/libunwindstack.so", "/system/lib64/libc_malloc_debug.so"};
|
|
#else
|
|
std::vector<std::string> skip_libraries{"/system/lib/libunwindstack.so", "/system/lib/libc_malloc_debug.so"};
|
|
#endif
|
|
|
|
g_unwinder = new unwindstack::LocalUnwinder(skip_libraries);
|
|
g_unwinder->Init();
|
|
}
|
|
|
|
bool Unwind(std::vector<uintptr_t>* frames, std::vector<unwindstack::LocalFrameData>* frame_info, size_t max_frames) {
|
|
pthread_once(&g_setup_once, Setup);
|
|
|
|
if (g_unwinder == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
if (!g_unwinder->Unwind(frame_info, max_frames)) {
|
|
frames->clear();
|
|
frame_info->clear();
|
|
return false;
|
|
}
|
|
|
|
for (const auto& frame : *frame_info) {
|
|
frames->push_back(frame.pc);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void UnwindLog(const std::vector<unwindstack::LocalFrameData>& frame_info) {
|
|
for (size_t i = 0; i < frame_info.size(); i++) {
|
|
const unwindstack::LocalFrameData* info = &frame_info[i];
|
|
unwindstack::MapInfo* map_info = info->map_info;
|
|
|
|
std::string line = android::base::StringPrintf(" #%0zd pc %" PAD_PTR " ", i, info->rel_pc);
|
|
if (map_info->offset != 0) {
|
|
line += android::base::StringPrintf("(offset 0x%" PRIx64 ") ", map_info->offset);
|
|
}
|
|
|
|
if (map_info->name.empty()) {
|
|
line += android::base::StringPrintf("<anonymous:%" PRIx64 ">", map_info->start);
|
|
} else {
|
|
line += map_info->name;
|
|
}
|
|
|
|
if (!info->function_name.empty()) {
|
|
line += " (";
|
|
char* demangled_name = __cxa_demangle(info->function_name.c_str(), nullptr, nullptr, nullptr);
|
|
if (demangled_name != nullptr) {
|
|
line += demangled_name;
|
|
free(demangled_name);
|
|
} else {
|
|
line += info->function_name;
|
|
}
|
|
if (info->function_offset != 0) {
|
|
line += "+" + std::to_string(info->function_offset);
|
|
}
|
|
line += ")";
|
|
}
|
|
error_log_string(line.c_str());
|
|
}
|
|
}
|