2013-10-21 22:30:52 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-11-21 20:17:20 +01:00
|
|
|
#include <sys/ucontext.h>
|
2013-10-21 22:30:52 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
#include <backtrace/Backtrace.h>
|
|
|
|
#include <backtrace/BacktraceMap.h>
|
2013-10-21 22:30:52 +02:00
|
|
|
|
|
|
|
#define UNW_LOCAL_ONLY
|
|
|
|
#include <libunwind.h>
|
|
|
|
|
2014-03-08 04:42:19 +01:00
|
|
|
#include "BacktraceLog.h"
|
2014-05-07 00:23:59 +02:00
|
|
|
#include "BacktraceThread.h"
|
2013-10-21 22:30:52 +02:00
|
|
|
#include "UnwindCurrent.h"
|
2014-01-23 04:21:07 +01:00
|
|
|
#include "UnwindMap.h"
|
2013-10-21 22:30:52 +02:00
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// UnwindCurrent functions.
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
UnwindCurrent::UnwindCurrent() {
|
|
|
|
}
|
|
|
|
|
|
|
|
UnwindCurrent::~UnwindCurrent() {
|
|
|
|
}
|
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
bool UnwindCurrent::Unwind(size_t num_ignore_frames, ucontext_t* ucontext) {
|
|
|
|
if (!ucontext) {
|
|
|
|
int ret = unw_getcontext(&context_);
|
|
|
|
if (ret < 0) {
|
|
|
|
BACK_LOGW("unw_getcontext failed %d", ret);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
GetUnwContextFromUcontext(ucontext);
|
2013-10-21 22:30:52 +02:00
|
|
|
}
|
2014-04-11 22:05:07 +02:00
|
|
|
return UnwindFromContext(num_ignore_frames, false);
|
2013-10-21 22:30:52 +02:00
|
|
|
}
|
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
void UnwindCurrent::GetUnwContextFromUcontext(const ucontext_t* ucontext) {
|
|
|
|
unw_tdep_context_t* unw_context = reinterpret_cast<unw_tdep_context_t*>(&context_);
|
|
|
|
|
|
|
|
#if defined(__arm__)
|
|
|
|
unw_context->regs[0] = ucontext->uc_mcontext.arm_r0;
|
|
|
|
unw_context->regs[1] = ucontext->uc_mcontext.arm_r1;
|
|
|
|
unw_context->regs[2] = ucontext->uc_mcontext.arm_r2;
|
|
|
|
unw_context->regs[3] = ucontext->uc_mcontext.arm_r3;
|
|
|
|
unw_context->regs[4] = ucontext->uc_mcontext.arm_r4;
|
|
|
|
unw_context->regs[5] = ucontext->uc_mcontext.arm_r5;
|
|
|
|
unw_context->regs[6] = ucontext->uc_mcontext.arm_r6;
|
|
|
|
unw_context->regs[7] = ucontext->uc_mcontext.arm_r7;
|
|
|
|
unw_context->regs[8] = ucontext->uc_mcontext.arm_r8;
|
|
|
|
unw_context->regs[9] = ucontext->uc_mcontext.arm_r9;
|
|
|
|
unw_context->regs[10] = ucontext->uc_mcontext.arm_r10;
|
|
|
|
unw_context->regs[11] = ucontext->uc_mcontext.arm_fp;
|
|
|
|
unw_context->regs[12] = ucontext->uc_mcontext.arm_ip;
|
|
|
|
unw_context->regs[13] = ucontext->uc_mcontext.arm_sp;
|
|
|
|
unw_context->regs[14] = ucontext->uc_mcontext.arm_lr;
|
|
|
|
unw_context->regs[15] = ucontext->uc_mcontext.arm_pc;
|
|
|
|
#else
|
|
|
|
unw_context->uc_mcontext = ucontext->uc_mcontext;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-10-21 22:30:52 +02:00
|
|
|
std::string UnwindCurrent::GetFunctionNameRaw(uintptr_t pc, uintptr_t* offset) {
|
|
|
|
*offset = 0;
|
|
|
|
char buf[512];
|
|
|
|
unw_word_t value;
|
|
|
|
if (unw_get_proc_name_by_ip(unw_local_addr_space, pc, buf, sizeof(buf),
|
|
|
|
&value, &context_) >= 0 && buf[0] != '\0') {
|
|
|
|
*offset = static_cast<uintptr_t>(value);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2014-04-11 22:05:07 +02:00
|
|
|
bool UnwindCurrent::UnwindFromContext(size_t num_ignore_frames, bool within_handler) {
|
2013-10-21 22:30:52 +02:00
|
|
|
// The cursor structure is pretty large, do not put it on the stack.
|
|
|
|
unw_cursor_t* cursor = new unw_cursor_t;
|
|
|
|
int ret = unw_init_local(cursor, &context_);
|
|
|
|
if (ret < 0) {
|
2014-04-11 22:05:07 +02:00
|
|
|
if (!within_handler) {
|
|
|
|
BACK_LOGW("unw_init_local failed %d", ret);
|
|
|
|
}
|
2014-01-07 23:31:07 +01:00
|
|
|
delete cursor;
|
2013-10-21 22:30:52 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
std::vector<backtrace_frame_data_t>* frames = GetFrames();
|
|
|
|
frames->reserve(MAX_BACKTRACE_FRAMES);
|
|
|
|
size_t num_frames = 0;
|
2013-10-21 22:30:52 +02:00
|
|
|
do {
|
|
|
|
unw_word_t pc;
|
|
|
|
ret = unw_get_reg(cursor, UNW_REG_IP, &pc);
|
|
|
|
if (ret < 0) {
|
2014-04-11 22:05:07 +02:00
|
|
|
if (!within_handler) {
|
|
|
|
BACK_LOGW("Failed to read IP %d", ret);
|
|
|
|
}
|
2013-10-21 22:30:52 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
unw_word_t sp;
|
|
|
|
ret = unw_get_reg(cursor, UNW_REG_SP, &sp);
|
|
|
|
if (ret < 0) {
|
2014-04-11 22:05:07 +02:00
|
|
|
if (!within_handler) {
|
|
|
|
BACK_LOGW("Failed to read SP %d", ret);
|
|
|
|
}
|
2013-10-21 22:30:52 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num_ignore_frames == 0) {
|
2014-01-15 05:16:30 +01:00
|
|
|
frames->resize(num_frames+1);
|
|
|
|
backtrace_frame_data_t* frame = &frames->at(num_frames);
|
2014-01-11 01:33:16 +01:00
|
|
|
frame->num = num_frames;
|
2013-10-21 22:30:52 +02:00
|
|
|
frame->pc = static_cast<uintptr_t>(pc);
|
|
|
|
frame->sp = static_cast<uintptr_t>(sp);
|
|
|
|
frame->stack_size = 0;
|
|
|
|
|
|
|
|
if (num_frames > 0) {
|
|
|
|
// Set the stack size for the previous frame.
|
2014-01-15 05:16:30 +01:00
|
|
|
backtrace_frame_data_t* prev = &frames->at(num_frames-1);
|
2013-10-21 22:30:52 +02:00
|
|
|
prev->stack_size = frame->sp - prev->sp;
|
|
|
|
}
|
|
|
|
|
2014-04-11 22:05:07 +02:00
|
|
|
if (!within_handler) {
|
2014-01-23 04:21:07 +01:00
|
|
|
frame->func_name = GetFunctionName(frame->pc, &frame->func_offset);
|
|
|
|
frame->map = FindMap(frame->pc);
|
2014-01-15 05:16:30 +01:00
|
|
|
} else {
|
|
|
|
frame->map = NULL;
|
|
|
|
frame->func_offset = 0;
|
2013-10-21 22:30:52 +02:00
|
|
|
}
|
2014-01-15 05:16:30 +01:00
|
|
|
num_frames++;
|
2013-10-21 22:30:52 +02:00
|
|
|
} else {
|
|
|
|
num_ignore_frames--;
|
|
|
|
}
|
|
|
|
ret = unw_step (cursor);
|
2014-01-15 05:16:30 +01:00
|
|
|
} while (ret > 0 && num_frames < MAX_BACKTRACE_FRAMES);
|
2013-10-21 22:30:52 +02:00
|
|
|
|
|
|
|
delete cursor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// C++ object creation function.
|
|
|
|
//-------------------------------------------------------------------------
|
2014-01-15 05:16:30 +01:00
|
|
|
Backtrace* CreateCurrentObj(BacktraceMap* map) {
|
|
|
|
return new BacktraceCurrent(new UnwindCurrent(), map);
|
2013-10-21 22:30:52 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
Backtrace* CreateThreadObj(pid_t tid, BacktraceMap* map) {
|
2014-05-07 00:23:59 +02:00
|
|
|
return new BacktraceThread(new UnwindCurrent(), tid, map);
|
2013-10-21 22:30:52 +02:00
|
|
|
}
|