Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 1 | /* |
| 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 Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 18 | #include <stdint.h> |
| 19 | #include <stdlib.h> |
| 20 | #include <string.h> |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 21 | |
| 22 | #include <memory> |
Christopher Ferris | f6f691b | 2017-09-25 19:23:07 -0700 | [diff] [blame] | 23 | #include <set> |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 24 | #include <string> |
| 25 | |
| 26 | #if !defined(__ANDROID__) |
| 27 | #include <cutils/threads.h> |
| 28 | #endif |
| 29 | |
| 30 | #include <backtrace/Backtrace.h> |
Christopher Ferris | 04fdec0 | 2017-08-11 15:17:46 -0700 | [diff] [blame] | 31 | #include <demangle.h> |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 32 | #include <unwindstack/Elf.h> |
| 33 | #include <unwindstack/MapInfo.h> |
| 34 | #include <unwindstack/Maps.h> |
| 35 | #include <unwindstack/Memory.h> |
| 36 | #include <unwindstack/Regs.h> |
| 37 | #include <unwindstack/RegsGetLocal.h> |
| 38 | |
Christopher Ferris | d70ea5e | 2018-01-30 19:47:24 -0800 | [diff] [blame] | 39 | #if !defined(NO_LIBDEXFILE_SUPPORT) |
| 40 | #include <unwindstack/DexFiles.h> |
| 41 | #endif |
Christopher Ferris | f6f691b | 2017-09-25 19:23:07 -0700 | [diff] [blame] | 42 | #include <unwindstack/Unwinder.h> |
| 43 | |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 44 | #include "BacktraceLog.h" |
| 45 | #include "UnwindStack.h" |
| 46 | #include "UnwindStackMap.h" |
| 47 | |
Josh Gao | 45c4a56 | 2017-09-06 14:35:35 -0700 | [diff] [blame] | 48 | bool Backtrace::Unwind(unwindstack::Regs* regs, BacktraceMap* back_map, |
Christopher Ferris | c56a499 | 2017-11-02 16:19:56 -0700 | [diff] [blame] | 49 | std::vector<backtrace_frame_data_t>* frames, size_t num_ignore_frames, |
Christopher Ferris | c8bec5a | 2017-12-11 17:44:33 -0800 | [diff] [blame] | 50 | std::vector<std::string>* skip_names, BacktraceUnwindError* error) { |
Christopher Ferris | 5f11851 | 2017-09-01 11:17:16 -0700 | [diff] [blame] | 51 | UnwindStackMap* stack_map = reinterpret_cast<UnwindStackMap*>(back_map); |
Christopher Ferris | b9de87f | 2017-09-20 13:37:24 -0700 | [diff] [blame] | 52 | auto process_memory = stack_map->process_memory(); |
Christopher Ferris | f6f691b | 2017-09-25 19:23:07 -0700 | [diff] [blame] | 53 | unwindstack::Unwinder unwinder(MAX_BACKTRACE_FRAMES + num_ignore_frames, stack_map->stack_maps(), |
| 54 | regs, stack_map->process_memory()); |
Christopher Ferris | e4b3a6a | 2018-02-20 13:58:40 -0800 | [diff] [blame] | 55 | unwinder.SetResolveNames(stack_map->ResolveNames()); |
Christopher Ferris | 2486d5a | 2018-01-22 17:37:59 -0800 | [diff] [blame] | 56 | if (stack_map->GetJitDebug() != nullptr) { |
| 57 | unwinder.SetJitDebug(stack_map->GetJitDebug(), regs->Arch()); |
| 58 | } |
Christopher Ferris | d70ea5e | 2018-01-30 19:47:24 -0800 | [diff] [blame] | 59 | #if !defined(NO_LIBDEXFILE_SUPPORT) |
| 60 | if (stack_map->GetDexFiles() != nullptr) { |
| 61 | unwinder.SetDexFiles(stack_map->GetDexFiles(), regs->Arch()); |
| 62 | } |
| 63 | #endif |
Christopher Ferris | c56a499 | 2017-11-02 16:19:56 -0700 | [diff] [blame] | 64 | unwinder.Unwind(skip_names, &stack_map->GetSuffixesToIgnore()); |
Christopher Ferris | c8bec5a | 2017-12-11 17:44:33 -0800 | [diff] [blame] | 65 | if (error != nullptr) { |
| 66 | switch (unwinder.LastErrorCode()) { |
| 67 | case unwindstack::ERROR_NONE: |
| 68 | error->error_code = BACKTRACE_UNWIND_NO_ERROR; |
| 69 | break; |
| 70 | |
| 71 | case unwindstack::ERROR_MEMORY_INVALID: |
| 72 | error->error_code = BACKTRACE_UNWIND_ERROR_ACCESS_MEM_FAILED; |
| 73 | error->error_info.addr = unwinder.LastErrorAddress(); |
| 74 | break; |
| 75 | |
| 76 | case unwindstack::ERROR_UNWIND_INFO: |
| 77 | error->error_code = BACKTRACE_UNWIND_ERROR_UNWIND_INFO; |
| 78 | break; |
| 79 | |
| 80 | case unwindstack::ERROR_UNSUPPORTED: |
| 81 | error->error_code = BACKTRACE_UNWIND_ERROR_UNSUPPORTED_OPERATION; |
| 82 | break; |
| 83 | |
| 84 | case unwindstack::ERROR_INVALID_MAP: |
| 85 | error->error_code = BACKTRACE_UNWIND_ERROR_MAP_MISSING; |
| 86 | break; |
| 87 | |
| 88 | case unwindstack::ERROR_MAX_FRAMES_EXCEEDED: |
| 89 | error->error_code = BACKTRACE_UNWIND_ERROR_EXCEED_MAX_FRAMES_LIMIT; |
| 90 | break; |
| 91 | |
| 92 | case unwindstack::ERROR_REPEATED_FRAME: |
| 93 | error->error_code = BACKTRACE_UNWIND_ERROR_REPEATED_FRAME; |
| 94 | break; |
| 95 | } |
| 96 | } |
Christopher Ferris | b9de87f | 2017-09-20 13:37:24 -0700 | [diff] [blame] | 97 | |
Christopher Ferris | f6f691b | 2017-09-25 19:23:07 -0700 | [diff] [blame] | 98 | if (num_ignore_frames >= unwinder.NumFrames()) { |
| 99 | frames->resize(0); |
| 100 | return true; |
| 101 | } |
Christopher Ferris | b9de87f | 2017-09-20 13:37:24 -0700 | [diff] [blame] | 102 | |
Christopher Ferris | f6f691b | 2017-09-25 19:23:07 -0700 | [diff] [blame] | 103 | auto unwinder_frames = unwinder.frames(); |
Christopher Ferris | d70ea5e | 2018-01-30 19:47:24 -0800 | [diff] [blame] | 104 | frames->resize(unwinder.NumFrames() - num_ignore_frames); |
Christopher Ferris | f6f691b | 2017-09-25 19:23:07 -0700 | [diff] [blame] | 105 | size_t cur_frame = 0; |
David Srbecky | 645f8bb | 2018-01-25 12:21:59 +0000 | [diff] [blame] | 106 | for (size_t i = num_ignore_frames; i < unwinder.NumFrames(); i++) { |
Christopher Ferris | f6f691b | 2017-09-25 19:23:07 -0700 | [diff] [blame] | 107 | auto frame = &unwinder_frames[i]; |
David Srbecky | 645f8bb | 2018-01-25 12:21:59 +0000 | [diff] [blame] | 108 | |
Christopher Ferris | 8fe5836 | 2018-01-26 14:26:13 -0800 | [diff] [blame] | 109 | backtrace_frame_data_t* back_frame = &frames->at(cur_frame); |
Christopher Ferris | b9de87f | 2017-09-20 13:37:24 -0700 | [diff] [blame] | 110 | |
Christopher Ferris | 8fe5836 | 2018-01-26 14:26:13 -0800 | [diff] [blame] | 111 | back_frame->num = cur_frame++; |
Christopher Ferris | b9de87f | 2017-09-20 13:37:24 -0700 | [diff] [blame] | 112 | |
Christopher Ferris | f6f691b | 2017-09-25 19:23:07 -0700 | [diff] [blame] | 113 | back_frame->rel_pc = frame->rel_pc; |
| 114 | back_frame->pc = frame->pc; |
| 115 | back_frame->sp = frame->sp; |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 116 | |
Christopher Ferris | 9a6b3e3 | 2017-10-18 09:08:51 -0700 | [diff] [blame] | 117 | back_frame->func_name = demangle(frame->function_name.c_str()); |
Christopher Ferris | f6f691b | 2017-09-25 19:23:07 -0700 | [diff] [blame] | 118 | back_frame->func_offset = frame->function_offset; |
| 119 | |
| 120 | back_frame->map.name = frame->map_name; |
| 121 | back_frame->map.start = frame->map_start; |
| 122 | back_frame->map.end = frame->map_end; |
| 123 | back_frame->map.offset = frame->map_offset; |
| 124 | back_frame->map.load_bias = frame->map_load_bias; |
| 125 | back_frame->map.flags = frame->map_flags; |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | return true; |
| 129 | } |
| 130 | |
| 131 | UnwindStackCurrent::UnwindStackCurrent(pid_t pid, pid_t tid, BacktraceMap* map) |
Christopher Ferris | 5f11851 | 2017-09-01 11:17:16 -0700 | [diff] [blame] | 132 | : BacktraceCurrent(pid, tid, map) {} |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 133 | |
Christopher Ferris | 7937a36 | 2018-01-18 11:15:49 -0800 | [diff] [blame] | 134 | std::string UnwindStackCurrent::GetFunctionNameRaw(uint64_t pc, uint64_t* offset) { |
Josh Gao | 358de18 | 2017-09-06 22:16:09 -0700 | [diff] [blame] | 135 | return GetMap()->GetFunctionName(pc, offset); |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Christopher Ferris | c8bec5a | 2017-12-11 17:44:33 -0800 | [diff] [blame] | 138 | bool UnwindStackCurrent::UnwindFromContext(size_t num_ignore_frames, void* ucontext) { |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 139 | std::unique_ptr<unwindstack::Regs> regs; |
| 140 | if (ucontext == nullptr) { |
| 141 | regs.reset(unwindstack::Regs::CreateFromLocal()); |
| 142 | // Fill in the registers from this function. Do it here to avoid |
| 143 | // one extra function call appearing in the unwind. |
| 144 | unwindstack::RegsGetLocal(regs.get()); |
| 145 | } else { |
Christopher Ferris | d06001d | 2017-11-30 18:56:01 -0800 | [diff] [blame] | 146 | regs.reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext)); |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 147 | } |
| 148 | |
Christopher Ferris | c56a499 | 2017-11-02 16:19:56 -0700 | [diff] [blame] | 149 | std::vector<std::string> skip_names{"libunwindstack.so", "libbacktrace.so"}; |
Christopher Ferris | c8bec5a | 2017-12-11 17:44:33 -0800 | [diff] [blame] | 150 | return Backtrace::Unwind(regs.get(), GetMap(), &frames_, num_ignore_frames, &skip_names, &error_); |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | UnwindStackPtrace::UnwindStackPtrace(pid_t pid, pid_t tid, BacktraceMap* map) |
Christopher Ferris | e328673 | 2017-12-07 17:41:18 -0800 | [diff] [blame] | 154 | : BacktracePtrace(pid, tid, map), memory_(pid) {} |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 155 | |
Christopher Ferris | 7937a36 | 2018-01-18 11:15:49 -0800 | [diff] [blame] | 156 | std::string UnwindStackPtrace::GetFunctionNameRaw(uint64_t pc, uint64_t* offset) { |
Josh Gao | 358de18 | 2017-09-06 22:16:09 -0700 | [diff] [blame] | 157 | return GetMap()->GetFunctionName(pc, offset); |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Christopher Ferris | c8bec5a | 2017-12-11 17:44:33 -0800 | [diff] [blame] | 160 | bool UnwindStackPtrace::Unwind(size_t num_ignore_frames, void* context) { |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 161 | std::unique_ptr<unwindstack::Regs> regs; |
| 162 | if (context == nullptr) { |
Josh Gao | 0953ecd | 2017-08-25 13:55:06 -0700 | [diff] [blame] | 163 | regs.reset(unwindstack::Regs::RemoteGet(Tid())); |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 164 | } else { |
Christopher Ferris | d06001d | 2017-11-30 18:56:01 -0800 | [diff] [blame] | 165 | regs.reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), context)); |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Christopher Ferris | c8bec5a | 2017-12-11 17:44:33 -0800 | [diff] [blame] | 168 | return Backtrace::Unwind(regs.get(), GetMap(), &frames_, num_ignore_frames, nullptr, &error_); |
Christopher Ferris | 6f3981c | 2017-07-27 09:29:18 -0700 | [diff] [blame] | 169 | } |
Christopher Ferris | e328673 | 2017-12-07 17:41:18 -0800 | [diff] [blame] | 170 | |
Christopher Ferris | 7937a36 | 2018-01-18 11:15:49 -0800 | [diff] [blame] | 171 | size_t UnwindStackPtrace::Read(uint64_t addr, uint8_t* buffer, size_t bytes) { |
Christopher Ferris | e328673 | 2017-12-07 17:41:18 -0800 | [diff] [blame] | 172 | return memory_.Read(addr, buffer, bytes); |
| 173 | } |
Christopher Ferris | c8bec5a | 2017-12-11 17:44:33 -0800 | [diff] [blame] | 174 | |
| 175 | UnwindStackOffline::UnwindStackOffline(ArchEnum arch, pid_t pid, pid_t tid, BacktraceMap* map, |
| 176 | bool map_shared) |
| 177 | : Backtrace(pid, tid, map), arch_(arch) { |
| 178 | map_shared_ = map_shared; |
| 179 | } |
| 180 | |
| 181 | bool UnwindStackOffline::Unwind(size_t num_ignore_frames, void* ucontext) { |
| 182 | if (ucontext == nullptr) { |
| 183 | return false; |
| 184 | } |
| 185 | |
| 186 | unwindstack::ArchEnum arch; |
| 187 | switch (arch_) { |
| 188 | case ARCH_ARM: |
| 189 | arch = unwindstack::ARCH_ARM; |
| 190 | break; |
| 191 | case ARCH_ARM64: |
| 192 | arch = unwindstack::ARCH_ARM64; |
| 193 | break; |
| 194 | case ARCH_X86: |
| 195 | arch = unwindstack::ARCH_X86; |
| 196 | break; |
| 197 | case ARCH_X86_64: |
| 198 | arch = unwindstack::ARCH_X86_64; |
| 199 | break; |
| 200 | default: |
| 201 | return false; |
| 202 | } |
| 203 | |
| 204 | std::unique_ptr<unwindstack::Regs> regs(unwindstack::Regs::CreateFromUcontext(arch, ucontext)); |
| 205 | |
| 206 | return Backtrace::Unwind(regs.get(), GetMap(), &frames_, num_ignore_frames, nullptr, &error_); |
| 207 | } |
| 208 | |
| 209 | std::string UnwindStackOffline::GetFunctionNameRaw(uint64_t, uint64_t*) { |
| 210 | return ""; |
| 211 | } |
| 212 | |
| 213 | size_t UnwindStackOffline::Read(uint64_t, uint8_t*, size_t) { |
| 214 | return 0; |
| 215 | } |
| 216 | |
| 217 | bool UnwindStackOffline::ReadWord(uint64_t, word_t*) { |
| 218 | return false; |
| 219 | } |
| 220 | |
| 221 | Backtrace* Backtrace::CreateOffline(ArchEnum arch, pid_t pid, pid_t tid, |
| 222 | const std::vector<backtrace_map_t>& maps, |
| 223 | const backtrace_stackinfo_t& stack) { |
| 224 | BacktraceMap* map = BacktraceMap::CreateOffline(pid, maps, stack); |
| 225 | if (map == nullptr) { |
| 226 | return nullptr; |
| 227 | } |
| 228 | |
| 229 | return new UnwindStackOffline(arch, pid, tid, map, false); |
| 230 | } |
| 231 | |
| 232 | Backtrace* Backtrace::CreateOffline(ArchEnum arch, pid_t pid, pid_t tid, BacktraceMap* map) { |
| 233 | if (map == nullptr) { |
| 234 | return nullptr; |
| 235 | } |
| 236 | return new UnwindStackOffline(arch, pid, tid, map, true); |
| 237 | } |
| 238 | |
| 239 | void Backtrace::SetGlobalElfCache(bool enable) { |
| 240 | unwindstack::Elf::SetCachingEnabled(enable); |
| 241 | } |