blob: ff19833a4ba1baf17042d11f3990cf64c6517501 [file] [log] [blame]
Christopher Ferris6f3981c2017-07-27 09:29:18 -07001/*
2 * Copyright (C) 2017 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
17#define _GNU_SOURCE 1
Christopher Ferris6f3981c2017-07-27 09:29:18 -070018#include <stdint.h>
19#include <stdlib.h>
20#include <string.h>
Christopher Ferris6f3981c2017-07-27 09:29:18 -070021
22#include <memory>
Christopher Ferrisf6f691b2017-09-25 19:23:07 -070023#include <set>
Christopher Ferris6f3981c2017-07-27 09:29:18 -070024#include <string>
25
Christopher Ferris6f3981c2017-07-27 09:29:18 -070026#include <backtrace/Backtrace.h>
Christopher Ferris04fdec02017-08-11 15:17:46 -070027#include <demangle.h>
Christopher Ferris6f3981c2017-07-27 09:29:18 -070028#include <unwindstack/Elf.h>
29#include <unwindstack/MapInfo.h>
30#include <unwindstack/Maps.h>
31#include <unwindstack/Memory.h>
32#include <unwindstack/Regs.h>
33#include <unwindstack/RegsGetLocal.h>
34
Christopher Ferrisf6f691b2017-09-25 19:23:07 -070035#include <unwindstack/Unwinder.h>
36
Christopher Ferris6f3981c2017-07-27 09:29:18 -070037#include "BacktraceLog.h"
38#include "UnwindStack.h"
39#include "UnwindStackMap.h"
40
Josh Gao45c4a562017-09-06 14:35:35 -070041bool Backtrace::Unwind(unwindstack::Regs* regs, BacktraceMap* back_map,
Christopher Ferrisc56a4992017-11-02 16:19:56 -070042 std::vector<backtrace_frame_data_t>* frames, size_t num_ignore_frames,
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -080043 std::vector<std::string>* skip_names, BacktraceUnwindError* error) {
Christopher Ferris5f118512017-09-01 11:17:16 -070044 UnwindStackMap* stack_map = reinterpret_cast<UnwindStackMap*>(back_map);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -070045 auto process_memory = stack_map->process_memory();
Christopher Ferrisf6f691b2017-09-25 19:23:07 -070046 unwindstack::Unwinder unwinder(MAX_BACKTRACE_FRAMES + num_ignore_frames, stack_map->stack_maps(),
47 regs, stack_map->process_memory());
Christopher Ferrise4b3a6a2018-02-20 13:58:40 -080048 unwinder.SetResolveNames(stack_map->ResolveNames());
Christopher Ferris4568f4b2018-10-23 17:42:41 -070049 stack_map->SetArch(regs->Arch());
Christopher Ferrisc56a4992017-11-02 16:19:56 -070050 unwinder.Unwind(skip_names, &stack_map->GetSuffixesToIgnore());
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -080051 if (error != nullptr) {
52 switch (unwinder.LastErrorCode()) {
53 case unwindstack::ERROR_NONE:
54 error->error_code = BACKTRACE_UNWIND_NO_ERROR;
55 break;
56
57 case unwindstack::ERROR_MEMORY_INVALID:
58 error->error_code = BACKTRACE_UNWIND_ERROR_ACCESS_MEM_FAILED;
59 error->error_info.addr = unwinder.LastErrorAddress();
60 break;
61
62 case unwindstack::ERROR_UNWIND_INFO:
63 error->error_code = BACKTRACE_UNWIND_ERROR_UNWIND_INFO;
64 break;
65
66 case unwindstack::ERROR_UNSUPPORTED:
67 error->error_code = BACKTRACE_UNWIND_ERROR_UNSUPPORTED_OPERATION;
68 break;
69
70 case unwindstack::ERROR_INVALID_MAP:
71 error->error_code = BACKTRACE_UNWIND_ERROR_MAP_MISSING;
72 break;
73
74 case unwindstack::ERROR_MAX_FRAMES_EXCEEDED:
75 error->error_code = BACKTRACE_UNWIND_ERROR_EXCEED_MAX_FRAMES_LIMIT;
76 break;
77
78 case unwindstack::ERROR_REPEATED_FRAME:
79 error->error_code = BACKTRACE_UNWIND_ERROR_REPEATED_FRAME;
80 break;
81 }
82 }
Christopher Ferrisb9de87f2017-09-20 13:37:24 -070083
Christopher Ferrisf6f691b2017-09-25 19:23:07 -070084 if (num_ignore_frames >= unwinder.NumFrames()) {
85 frames->resize(0);
86 return true;
87 }
Christopher Ferrisb9de87f2017-09-20 13:37:24 -070088
Christopher Ferrisf6f691b2017-09-25 19:23:07 -070089 auto unwinder_frames = unwinder.frames();
Christopher Ferrisd70ea5e2018-01-30 19:47:24 -080090 frames->resize(unwinder.NumFrames() - num_ignore_frames);
Christopher Ferrisf6f691b2017-09-25 19:23:07 -070091 size_t cur_frame = 0;
David Srbecky645f8bb2018-01-25 12:21:59 +000092 for (size_t i = num_ignore_frames; i < unwinder.NumFrames(); i++) {
Christopher Ferrisf6f691b2017-09-25 19:23:07 -070093 auto frame = &unwinder_frames[i];
David Srbecky645f8bb2018-01-25 12:21:59 +000094
Christopher Ferris8fe58362018-01-26 14:26:13 -080095 backtrace_frame_data_t* back_frame = &frames->at(cur_frame);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -070096
Christopher Ferris8fe58362018-01-26 14:26:13 -080097 back_frame->num = cur_frame++;
Christopher Ferrisb9de87f2017-09-20 13:37:24 -070098
Christopher Ferrisf6f691b2017-09-25 19:23:07 -070099 back_frame->rel_pc = frame->rel_pc;
100 back_frame->pc = frame->pc;
101 back_frame->sp = frame->sp;
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700102
Christopher Ferris9a6b3e32017-10-18 09:08:51 -0700103 back_frame->func_name = demangle(frame->function_name.c_str());
Christopher Ferrisf6f691b2017-09-25 19:23:07 -0700104 back_frame->func_offset = frame->function_offset;
105
106 back_frame->map.name = frame->map_name;
107 back_frame->map.start = frame->map_start;
108 back_frame->map.end = frame->map_end;
Christopher Ferrisa09c4a62018-12-13 16:08:50 -0800109 back_frame->map.offset = frame->map_elf_start_offset;
Christopher Ferrisf6f691b2017-09-25 19:23:07 -0700110 back_frame->map.load_bias = frame->map_load_bias;
111 back_frame->map.flags = frame->map_flags;
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700112 }
113
114 return true;
115}
116
Christopher Ferris432981b2018-02-22 19:42:53 -0800117bool Backtrace::UnwindOffline(unwindstack::Regs* regs, BacktraceMap* back_map,
118 const backtrace_stackinfo_t& stack,
119 std::vector<backtrace_frame_data_t>* frames,
120 BacktraceUnwindError* error) {
121 UnwindStackOfflineMap* offline_map = reinterpret_cast<UnwindStackOfflineMap*>(back_map);
122 // Create the process memory from the stack data since this will almost
123 // always be different each unwind.
124 if (!offline_map->CreateProcessMemory(stack)) {
125 if (error != nullptr) {
126 error->error_code = BACKTRACE_UNWIND_ERROR_SETUP_FAILED;
127 }
128 return false;
129 }
130 return Backtrace::Unwind(regs, back_map, frames, 0U, nullptr, error);
131}
132
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700133UnwindStackCurrent::UnwindStackCurrent(pid_t pid, pid_t tid, BacktraceMap* map)
Christopher Ferris5f118512017-09-01 11:17:16 -0700134 : BacktraceCurrent(pid, tid, map) {}
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700135
Christopher Ferris7937a362018-01-18 11:15:49 -0800136std::string UnwindStackCurrent::GetFunctionNameRaw(uint64_t pc, uint64_t* offset) {
Josh Gao358de182017-09-06 22:16:09 -0700137 return GetMap()->GetFunctionName(pc, offset);
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700138}
139
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -0800140bool UnwindStackCurrent::UnwindFromContext(size_t num_ignore_frames, void* ucontext) {
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700141 std::unique_ptr<unwindstack::Regs> regs;
142 if (ucontext == nullptr) {
143 regs.reset(unwindstack::Regs::CreateFromLocal());
144 // Fill in the registers from this function. Do it here to avoid
145 // one extra function call appearing in the unwind.
146 unwindstack::RegsGetLocal(regs.get());
147 } else {
Christopher Ferrisd06001d2017-11-30 18:56:01 -0800148 regs.reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext));
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700149 }
150
Christopher Ferrisc56a4992017-11-02 16:19:56 -0700151 std::vector<std::string> skip_names{"libunwindstack.so", "libbacktrace.so"};
Christopher Ferris458f4e72018-03-23 12:51:43 -0700152 if (!skip_frames_) {
153 skip_names.clear();
154 }
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -0800155 return Backtrace::Unwind(regs.get(), GetMap(), &frames_, num_ignore_frames, &skip_names, &error_);
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700156}
157
158UnwindStackPtrace::UnwindStackPtrace(pid_t pid, pid_t tid, BacktraceMap* map)
Christopher Ferrise3286732017-12-07 17:41:18 -0800159 : BacktracePtrace(pid, tid, map), memory_(pid) {}
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700160
Christopher Ferris7937a362018-01-18 11:15:49 -0800161std::string UnwindStackPtrace::GetFunctionNameRaw(uint64_t pc, uint64_t* offset) {
Josh Gao358de182017-09-06 22:16:09 -0700162 return GetMap()->GetFunctionName(pc, offset);
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700163}
164
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -0800165bool UnwindStackPtrace::Unwind(size_t num_ignore_frames, void* context) {
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700166 std::unique_ptr<unwindstack::Regs> regs;
167 if (context == nullptr) {
Josh Gao0953ecd2017-08-25 13:55:06 -0700168 regs.reset(unwindstack::Regs::RemoteGet(Tid()));
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700169 } else {
Christopher Ferrisd06001d2017-11-30 18:56:01 -0800170 regs.reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), context));
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700171 }
172
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -0800173 return Backtrace::Unwind(regs.get(), GetMap(), &frames_, num_ignore_frames, nullptr, &error_);
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700174}
Christopher Ferrise3286732017-12-07 17:41:18 -0800175
Christopher Ferris7937a362018-01-18 11:15:49 -0800176size_t UnwindStackPtrace::Read(uint64_t addr, uint8_t* buffer, size_t bytes) {
Christopher Ferrise3286732017-12-07 17:41:18 -0800177 return memory_.Read(addr, buffer, bytes);
178}
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -0800179
180UnwindStackOffline::UnwindStackOffline(ArchEnum arch, pid_t pid, pid_t tid, BacktraceMap* map,
181 bool map_shared)
182 : Backtrace(pid, tid, map), arch_(arch) {
183 map_shared_ = map_shared;
184}
185
186bool UnwindStackOffline::Unwind(size_t num_ignore_frames, void* ucontext) {
187 if (ucontext == nullptr) {
188 return false;
189 }
190
191 unwindstack::ArchEnum arch;
192 switch (arch_) {
193 case ARCH_ARM:
194 arch = unwindstack::ARCH_ARM;
195 break;
196 case ARCH_ARM64:
197 arch = unwindstack::ARCH_ARM64;
198 break;
199 case ARCH_X86:
200 arch = unwindstack::ARCH_X86;
201 break;
202 case ARCH_X86_64:
203 arch = unwindstack::ARCH_X86_64;
204 break;
205 default:
206 return false;
207 }
208
209 std::unique_ptr<unwindstack::Regs> regs(unwindstack::Regs::CreateFromUcontext(arch, ucontext));
210
211 return Backtrace::Unwind(regs.get(), GetMap(), &frames_, num_ignore_frames, nullptr, &error_);
212}
213
214std::string UnwindStackOffline::GetFunctionNameRaw(uint64_t, uint64_t*) {
215 return "";
216}
217
218size_t UnwindStackOffline::Read(uint64_t, uint8_t*, size_t) {
219 return 0;
220}
221
222bool UnwindStackOffline::ReadWord(uint64_t, word_t*) {
223 return false;
224}
225
226Backtrace* Backtrace::CreateOffline(ArchEnum arch, pid_t pid, pid_t tid,
227 const std::vector<backtrace_map_t>& maps,
228 const backtrace_stackinfo_t& stack) {
Christopher Ferris432981b2018-02-22 19:42:53 -0800229 std::unique_ptr<UnwindStackOfflineMap> map(
230 reinterpret_cast<UnwindStackOfflineMap*>(BacktraceMap::CreateOffline(pid, maps)));
231 if (map.get() == nullptr || !map->CreateProcessMemory(stack)) {
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -0800232 return nullptr;
233 }
Christopher Ferris432981b2018-02-22 19:42:53 -0800234 return new UnwindStackOffline(arch, pid, tid, map.release(), false);
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -0800235}
236
237Backtrace* Backtrace::CreateOffline(ArchEnum arch, pid_t pid, pid_t tid, BacktraceMap* map) {
238 if (map == nullptr) {
239 return nullptr;
240 }
241 return new UnwindStackOffline(arch, pid, tid, map, true);
242}
243
244void Backtrace::SetGlobalElfCache(bool enable) {
245 unwindstack::Elf::SetCachingEnabled(enable);
246}