Christopher Ferris | 2c43cff | 2015-03-26 19:18:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Ferris | 9a6b3e3 | 2017-10-18 09:08:51 -0700 | [diff] [blame^] | 17 | #include <assert.h> |
Christopher Ferris | 2c43cff | 2015-03-26 19:18:36 -0700 | [diff] [blame] | 18 | #include <inttypes.h> |
| 19 | #include <stdint.h> |
| 20 | #include <stdlib.h> |
| 21 | #include <sys/types.h> |
| 22 | #include <ucontext.h> |
| 23 | |
| 24 | #include <string> |
| 25 | |
Elliott Hughes | 4f71319 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 26 | #include <android-base/stringprintf.h> |
Christopher Ferris | 2c43cff | 2015-03-26 19:18:36 -0700 | [diff] [blame] | 27 | |
| 28 | #include <backtrace/Backtrace.h> |
| 29 | #include <backtrace/BacktraceMap.h> |
| 30 | |
Christopher Ferris | 7d0aea9 | 2017-06-01 14:15:09 -0700 | [diff] [blame] | 31 | #include <demangle.h> |
| 32 | |
Christopher Ferris | 2c43cff | 2015-03-26 19:18:36 -0700 | [diff] [blame] | 33 | #include "BacktraceLog.h" |
Christopher Ferris | 2c43cff | 2015-03-26 19:18:36 -0700 | [diff] [blame] | 34 | #include "UnwindCurrent.h" |
| 35 | #include "UnwindPtrace.h" |
Christopher Ferris | 9a6b3e3 | 2017-10-18 09:08:51 -0700 | [diff] [blame^] | 36 | #include "UnwindStack.h" |
| 37 | #include "thread_utils.h" |
Christopher Ferris | 2c43cff | 2015-03-26 19:18:36 -0700 | [diff] [blame] | 38 | |
| 39 | using android::base::StringPrintf; |
| 40 | |
| 41 | //------------------------------------------------------------------------- |
| 42 | // Backtrace functions. |
| 43 | //------------------------------------------------------------------------- |
| 44 | Backtrace::Backtrace(pid_t pid, pid_t tid, BacktraceMap* map) |
| 45 | : pid_(pid), tid_(tid), map_(map), map_shared_(true) { |
| 46 | if (map_ == nullptr) { |
| 47 | map_ = BacktraceMap::Create(pid); |
| 48 | map_shared_ = false; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | Backtrace::~Backtrace() { |
| 53 | if (map_ && !map_shared_) { |
| 54 | delete map_; |
| 55 | map_ = nullptr; |
| 56 | } |
| 57 | } |
| 58 | |
Christopher Ferris | f5e568e | 2017-03-22 13:18:31 -0700 | [diff] [blame] | 59 | std::string Backtrace::GetFunctionName(uintptr_t pc, uintptr_t* offset, const backtrace_map_t* map) { |
| 60 | backtrace_map_t map_value; |
| 61 | if (map == nullptr) { |
| 62 | FillInMap(pc, &map_value); |
| 63 | map = &map_value; |
| 64 | } |
| 65 | // If no map is found, or this map is backed by a device, then return nothing. |
| 66 | if (map->start == 0 || (map->flags & PROT_DEVICE_MAP)) { |
| 67 | return ""; |
| 68 | } |
Christopher Ferris | 7d0aea9 | 2017-06-01 14:15:09 -0700 | [diff] [blame] | 69 | return demangle(GetFunctionNameRaw(pc, offset).c_str()); |
Christopher Ferris | 2c43cff | 2015-03-26 19:18:36 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | bool Backtrace::VerifyReadWordArgs(uintptr_t ptr, word_t* out_value) { |
| 73 | if (ptr & (sizeof(word_t)-1)) { |
| 74 | BACK_LOGW("invalid pointer %p", reinterpret_cast<void*>(ptr)); |
| 75 | *out_value = static_cast<word_t>(-1); |
| 76 | return false; |
| 77 | } |
| 78 | return true; |
| 79 | } |
| 80 | |
| 81 | std::string Backtrace::FormatFrameData(size_t frame_num) { |
| 82 | if (frame_num >= frames_.size()) { |
| 83 | return ""; |
| 84 | } |
| 85 | return FormatFrameData(&frames_[frame_num]); |
| 86 | } |
| 87 | |
| 88 | std::string Backtrace::FormatFrameData(const backtrace_frame_data_t* frame) { |
Christopher Ferris | da750a7 | 2015-11-30 13:36:08 -0800 | [diff] [blame] | 89 | std::string map_name; |
| 90 | if (BacktraceMap::IsValid(frame->map)) { |
Christopher Ferris | da750a7 | 2015-11-30 13:36:08 -0800 | [diff] [blame] | 91 | if (!frame->map.name.empty()) { |
| 92 | map_name = frame->map.name.c_str(); |
| 93 | if (map_name[0] == '[' && map_name[map_name.size() - 1] == ']') { |
| 94 | map_name.resize(map_name.size() - 1); |
| 95 | map_name += StringPrintf(":%" PRIPTR "]", frame->map.start); |
| 96 | } |
| 97 | } else { |
| 98 | map_name = StringPrintf("<anonymous:%" PRIPTR ">", frame->map.start); |
| 99 | } |
Christopher Ferris | 2c43cff | 2015-03-26 19:18:36 -0700 | [diff] [blame] | 100 | } else { |
| 101 | map_name = "<unknown>"; |
| 102 | } |
| 103 | |
Christopher Ferris | 96722b0 | 2017-07-19 14:20:46 -0700 | [diff] [blame] | 104 | std::string line(StringPrintf("#%02zu pc %" PRIPTR " ", frame->num, frame->rel_pc)); |
Christopher Ferris | da750a7 | 2015-11-30 13:36:08 -0800 | [diff] [blame] | 105 | line += map_name; |
Christopher Ferris | 6000173 | 2015-08-20 11:16:54 -0700 | [diff] [blame] | 106 | // Special handling for non-zero offset maps, we need to print that |
| 107 | // information. |
| 108 | if (frame->map.offset != 0) { |
| 109 | line += " (offset " + StringPrintf("0x%" PRIxPTR, frame->map.offset) + ")"; |
| 110 | } |
Christopher Ferris | 2c43cff | 2015-03-26 19:18:36 -0700 | [diff] [blame] | 111 | if (!frame->func_name.empty()) { |
| 112 | line += " (" + frame->func_name; |
| 113 | if (frame->func_offset) { |
| 114 | line += StringPrintf("+%" PRIuPTR, frame->func_offset); |
| 115 | } |
| 116 | line += ')'; |
| 117 | } |
| 118 | |
| 119 | return line; |
| 120 | } |
| 121 | |
| 122 | void Backtrace::FillInMap(uintptr_t pc, backtrace_map_t* map) { |
Christopher Ferris | 30c942c | 2015-05-14 15:39:52 -0700 | [diff] [blame] | 123 | if (map_ != nullptr) { |
| 124 | map_->FillIn(pc, map); |
| 125 | } |
Christopher Ferris | 2c43cff | 2015-03-26 19:18:36 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | Backtrace* Backtrace::Create(pid_t pid, pid_t tid, BacktraceMap* map) { |
| 129 | if (pid == BACKTRACE_CURRENT_PROCESS) { |
| 130 | pid = getpid(); |
| 131 | if (tid == BACKTRACE_CURRENT_THREAD) { |
| 132 | tid = gettid(); |
| 133 | } |
| 134 | } else if (tid == BACKTRACE_CURRENT_THREAD) { |
| 135 | tid = pid; |
| 136 | } |
| 137 | |
| 138 | if (pid == getpid()) { |
| 139 | return new UnwindCurrent(pid, tid, map); |
| 140 | } else { |
| 141 | return new UnwindPtrace(pid, tid, map); |
| 142 | } |
| 143 | } |
Christopher Ferris | c463ba4 | 2016-03-09 14:35:54 -0800 | [diff] [blame] | 144 | |
Christopher Ferris | 9a6b3e3 | 2017-10-18 09:08:51 -0700 | [diff] [blame^] | 145 | Backtrace* Backtrace::CreateNew(pid_t pid, pid_t tid, BacktraceMap* map) { |
| 146 | if (pid == BACKTRACE_CURRENT_PROCESS) { |
| 147 | pid = getpid(); |
| 148 | if (tid == BACKTRACE_CURRENT_THREAD) { |
| 149 | tid = gettid(); |
| 150 | } |
| 151 | } else if (tid == BACKTRACE_CURRENT_THREAD) { |
| 152 | tid = pid; |
| 153 | } |
| 154 | |
| 155 | if (map == nullptr) { |
| 156 | // This would cause the wrong type of map object to be created, so disallow. |
| 157 | #if defined(__ANDROID__) |
| 158 | __assert2(__FILE__, __LINE__, __PRETTY_FUNCTION__, |
| 159 | "Backtrace::CreateNew() must be called with a real map pointer."); |
| 160 | #else |
| 161 | BACK_LOGE("Backtrace::CreateNew() must be called with a real map pointer."); |
| 162 | abort(); |
| 163 | #endif |
| 164 | } |
| 165 | |
| 166 | if (pid == getpid()) { |
| 167 | return new UnwindStackCurrent(pid, tid, map); |
| 168 | } else { |
| 169 | return new UnwindStackPtrace(pid, tid, map); |
| 170 | } |
| 171 | } |
| 172 | |
Christopher Ferris | c463ba4 | 2016-03-09 14:35:54 -0800 | [diff] [blame] | 173 | std::string Backtrace::GetErrorString(BacktraceUnwindError error) { |
| 174 | switch (error) { |
| 175 | case BACKTRACE_UNWIND_NO_ERROR: |
| 176 | return "No error"; |
| 177 | case BACKTRACE_UNWIND_ERROR_SETUP_FAILED: |
| 178 | return "Setup failed"; |
| 179 | case BACKTRACE_UNWIND_ERROR_MAP_MISSING: |
| 180 | return "No map found"; |
| 181 | case BACKTRACE_UNWIND_ERROR_INTERNAL: |
| 182 | return "Internal libbacktrace error, please submit a bugreport"; |
| 183 | case BACKTRACE_UNWIND_ERROR_THREAD_DOESNT_EXIST: |
| 184 | return "Thread doesn't exist"; |
| 185 | case BACKTRACE_UNWIND_ERROR_THREAD_TIMEOUT: |
Brian Carlstrom | 6d1da7c | 2017-03-23 11:24:33 -0700 | [diff] [blame] | 186 | return "Thread has not responded to signal in time"; |
Christopher Ferris | c463ba4 | 2016-03-09 14:35:54 -0800 | [diff] [blame] | 187 | case BACKTRACE_UNWIND_ERROR_UNSUPPORTED_OPERATION: |
| 188 | return "Attempt to use an unsupported feature"; |
| 189 | case BACKTRACE_UNWIND_ERROR_NO_CONTEXT: |
| 190 | return "Attempt to do an offline unwind without a context"; |
| 191 | } |
| 192 | } |