blob: 07c2430549d448431d7b39f073f526f5d2e3e12d [file] [log] [blame]
Christopher Ferris17e91d42013-10-21 13:30:52 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Christopher Ferris2c43cff2015-03-26 19:18:36 -070017#include <stdint.h>
Christopher Ferris17e91d42013-10-21 13:30:52 -070018#include <sys/types.h>
Christopher Ferrisc58287d2014-05-09 16:59:06 -070019#include <ucontext.h>
Christopher Ferris17e91d42013-10-21 13:30:52 -070020
Christopher Ferris17e91d42013-10-21 13:30:52 -070021#include <libunwind.h>
22#include <libunwind-ptrace.h>
23
Christopher Ferris2c43cff2015-03-26 19:18:36 -070024#include <backtrace/Backtrace.h>
25#include <backtrace/BacktraceMap.h>
26
Christopher Ferrise2960912014-03-07 19:42:19 -080027#include "BacktraceLog.h"
Christopher Ferrisdf290612014-01-22 19:21:07 -080028#include "UnwindMap.h"
Christopher Ferris17e91d42013-10-21 13:30:52 -070029#include "UnwindPtrace.h"
30
Christopher Ferris2c43cff2015-03-26 19:18:36 -070031UnwindPtrace::UnwindPtrace(pid_t pid, pid_t tid, BacktraceMap* map)
32 : BacktracePtrace(pid, tid, map), addr_space_(nullptr), upt_info_(nullptr) {
Christopher Ferris17e91d42013-10-21 13:30:52 -070033}
34
35UnwindPtrace::~UnwindPtrace() {
36 if (upt_info_) {
37 _UPT_destroy(upt_info_);
Christopher Ferris2c43cff2015-03-26 19:18:36 -070038 upt_info_ = nullptr;
Christopher Ferris17e91d42013-10-21 13:30:52 -070039 }
40 if (addr_space_) {
Christopher Ferrisdf290612014-01-22 19:21:07 -080041 // Remove the map from the address space before destroying it.
42 // It will be freed in the UnwindMap destructor.
Christopher Ferris2c43cff2015-03-26 19:18:36 -070043 unw_map_set(addr_space_, nullptr);
Christopher Ferrisdf290612014-01-22 19:21:07 -080044
Christopher Ferris17e91d42013-10-21 13:30:52 -070045 unw_destroy_addr_space(addr_space_);
Christopher Ferris2c43cff2015-03-26 19:18:36 -070046 addr_space_ = nullptr;
Christopher Ferris17e91d42013-10-21 13:30:52 -070047 }
48}
49
Christopher Ferrisa2efd3a2014-05-06 15:23:59 -070050bool UnwindPtrace::Unwind(size_t num_ignore_frames, ucontext_t* ucontext) {
Christopher Ferris30c942c2015-05-14 15:39:52 -070051 if (GetMap() == nullptr) {
52 // Without a map object, we can't do anything.
53 return false;
54 }
55
Christopher Ferrisa2efd3a2014-05-06 15:23:59 -070056 if (ucontext) {
57 BACK_LOGW("Unwinding from a specified context not supported yet.");
58 return false;
59 }
60
Christopher Ferris17e91d42013-10-21 13:30:52 -070061 addr_space_ = unw_create_addr_space(&_UPT_accessors, 0);
62 if (!addr_space_) {
Christopher Ferris8ed46272013-10-29 15:44:25 -070063 BACK_LOGW("unw_create_addr_space failed.");
Christopher Ferris17e91d42013-10-21 13:30:52 -070064 return false;
65 }
66
Christopher Ferrisdf290612014-01-22 19:21:07 -080067 UnwindMap* map = static_cast<UnwindMap*>(GetMap());
68 unw_map_set(addr_space_, map->GetMapCursor());
69
70 upt_info_ = reinterpret_cast<struct UPT_info*>(_UPT_create(Tid()));
Christopher Ferris17e91d42013-10-21 13:30:52 -070071 if (!upt_info_) {
Christopher Ferris8ed46272013-10-29 15:44:25 -070072 BACK_LOGW("Failed to create upt info.");
Christopher Ferris17e91d42013-10-21 13:30:52 -070073 return false;
74 }
75
Christopher Ferris17e91d42013-10-21 13:30:52 -070076 unw_cursor_t cursor;
77 int ret = unw_init_remote(&cursor, addr_space_, upt_info_);
78 if (ret < 0) {
Christopher Ferris8ed46272013-10-29 15:44:25 -070079 BACK_LOGW("unw_init_remote failed %d", ret);
Christopher Ferris17e91d42013-10-21 13:30:52 -070080 return false;
81 }
82
Christopher Ferris46756822014-01-14 20:16:30 -080083 size_t num_frames = 0;
Christopher Ferris17e91d42013-10-21 13:30:52 -070084 do {
85 unw_word_t pc;
86 ret = unw_get_reg(&cursor, UNW_REG_IP, &pc);
87 if (ret < 0) {
Christopher Ferris8ed46272013-10-29 15:44:25 -070088 BACK_LOGW("Failed to read IP %d", ret);
Christopher Ferris17e91d42013-10-21 13:30:52 -070089 break;
90 }
91 unw_word_t sp;
92 ret = unw_get_reg(&cursor, UNW_REG_SP, &sp);
93 if (ret < 0) {
Christopher Ferris8ed46272013-10-29 15:44:25 -070094 BACK_LOGW("Failed to read SP %d", ret);
Christopher Ferris17e91d42013-10-21 13:30:52 -070095 break;
96 }
97
98 if (num_ignore_frames == 0) {
Christopher Ferris2c43cff2015-03-26 19:18:36 -070099 frames_.resize(num_frames+1);
100 backtrace_frame_data_t* frame = &frames_.at(num_frames);
Christopher Ferris20303f82014-01-10 16:33:16 -0800101 frame->num = num_frames;
Christopher Ferris17e91d42013-10-21 13:30:52 -0700102 frame->pc = static_cast<uintptr_t>(pc);
103 frame->sp = static_cast<uintptr_t>(sp);
104 frame->stack_size = 0;
Christopher Ferris17e91d42013-10-21 13:30:52 -0700105
106 if (num_frames > 0) {
Christopher Ferris2c43cff2015-03-26 19:18:36 -0700107 backtrace_frame_data_t* prev = &frames_.at(num_frames-1);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700108 prev->stack_size = frame->sp - prev->sp;
109 }
110
Christopher Ferrisdf290612014-01-22 19:21:07 -0800111 frame->func_name = GetFunctionName(frame->pc, &frame->func_offset);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700112
Christopher Ferris12385e32015-02-06 13:22:01 -0800113 FillInMap(frame->pc, &frame->map);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700114
Christopher Ferris46756822014-01-14 20:16:30 -0800115 num_frames++;
Christopher Ferris17e91d42013-10-21 13:30:52 -0700116 } else {
117 num_ignore_frames--;
118 }
119 ret = unw_step (&cursor);
Christopher Ferris46756822014-01-14 20:16:30 -0800120 } while (ret > 0 && num_frames < MAX_BACKTRACE_FRAMES);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700121
122 return true;
123}
124
125std::string UnwindPtrace::GetFunctionNameRaw(uintptr_t pc, uintptr_t* offset) {
126 *offset = 0;
127 char buf[512];
128 unw_word_t value;
129 if (unw_get_proc_name_by_ip(addr_space_, pc, buf, sizeof(buf), &value,
130 upt_info_) >= 0 && buf[0] != '\0') {
131 *offset = static_cast<uintptr_t>(value);
132 return buf;
133 }
134 return "";
135}