blob: 3e050ab68a3b8dfe38e223e6537624ba47ae2ee3 [file] [log] [blame]
Christopher Ferris2c43cff2015-03-26 19:18:36 -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
17#include <inttypes.h>
18#include <stdint.h>
19#include <stdlib.h>
20#include <sys/types.h>
21#include <ucontext.h>
22
23#include <string>
24
Elliott Hughes4f713192015-12-04 22:00:26 -080025#include <android-base/stringprintf.h>
Elliott Hughes38488902018-07-11 11:13:16 -070026#include <android-base/threads.h>
Christopher Ferris2c43cff2015-03-26 19:18:36 -070027
28#include <backtrace/Backtrace.h>
29#include <backtrace/BacktraceMap.h>
30
Christopher Ferris2c43cff2015-03-26 19:18:36 -070031#include "BacktraceLog.h"
Christopher Ferris9a6b3e32017-10-18 09:08:51 -070032#include "UnwindStack.h"
Christopher Ferris2c43cff2015-03-26 19:18:36 -070033
34using android::base::StringPrintf;
35
Christopher Ferris4ec93a72019-07-18 14:11:07 -070036extern "C" char* __cxa_demangle(const char*, char*, size_t*, int*);
37
Christopher Ferris2c43cff2015-03-26 19:18:36 -070038//-------------------------------------------------------------------------
39// Backtrace functions.
40//-------------------------------------------------------------------------
41Backtrace::Backtrace(pid_t pid, pid_t tid, BacktraceMap* map)
42 : pid_(pid), tid_(tid), map_(map), map_shared_(true) {
43 if (map_ == nullptr) {
44 map_ = BacktraceMap::Create(pid);
45 map_shared_ = false;
46 }
47}
48
49Backtrace::~Backtrace() {
50 if (map_ && !map_shared_) {
51 delete map_;
52 map_ = nullptr;
53 }
54}
55
Christopher Ferris7937a362018-01-18 11:15:49 -080056std::string Backtrace::GetFunctionName(uint64_t pc, uint64_t* offset, const backtrace_map_t* map) {
Christopher Ferrisf5e568e2017-03-22 13:18:31 -070057 backtrace_map_t map_value;
58 if (map == nullptr) {
59 FillInMap(pc, &map_value);
60 map = &map_value;
61 }
62 // If no map is found, or this map is backed by a device, then return nothing.
63 if (map->start == 0 || (map->flags & PROT_DEVICE_MAP)) {
64 return "";
65 }
Christopher Ferris4ec93a72019-07-18 14:11:07 -070066 std::string name(GetFunctionNameRaw(pc, offset));
67 char* demangled_name = __cxa_demangle(name.c_str(), nullptr, nullptr, nullptr);
68 if (demangled_name != nullptr) {
69 name = demangled_name;
70 free(demangled_name);
71 return name;
72 }
73 return name;
Christopher Ferris2c43cff2015-03-26 19:18:36 -070074}
75
Christopher Ferris7937a362018-01-18 11:15:49 -080076bool Backtrace::VerifyReadWordArgs(uint64_t ptr, word_t* out_value) {
Christopher Ferris2c43cff2015-03-26 19:18:36 -070077 if (ptr & (sizeof(word_t)-1)) {
78 BACK_LOGW("invalid pointer %p", reinterpret_cast<void*>(ptr));
79 *out_value = static_cast<word_t>(-1);
80 return false;
81 }
82 return true;
83}
84
85std::string Backtrace::FormatFrameData(size_t frame_num) {
86 if (frame_num >= frames_.size()) {
87 return "";
88 }
89 return FormatFrameData(&frames_[frame_num]);
90}
91
92std::string Backtrace::FormatFrameData(const backtrace_frame_data_t* frame) {
Christopher Ferrisda750a72015-11-30 13:36:08 -080093 std::string map_name;
94 if (BacktraceMap::IsValid(frame->map)) {
Elliott Hughese1415a52018-02-15 09:18:21 -080095 map_name = frame->map.Name();
Christopher Ferrisda750a72015-11-30 13:36:08 -080096 if (!frame->map.name.empty()) {
Christopher Ferrisda750a72015-11-30 13:36:08 -080097 if (map_name[0] == '[' && map_name[map_name.size() - 1] == ']') {
98 map_name.resize(map_name.size() - 1);
99 map_name += StringPrintf(":%" PRIPTR "]", frame->map.start);
100 }
Christopher Ferrisda750a72015-11-30 13:36:08 -0800101 }
Christopher Ferris2c43cff2015-03-26 19:18:36 -0700102 } else {
103 map_name = "<unknown>";
104 }
105
Christopher Ferris96722b02017-07-19 14:20:46 -0700106 std::string line(StringPrintf("#%02zu pc %" PRIPTR " ", frame->num, frame->rel_pc));
Christopher Ferrisda750a72015-11-30 13:36:08 -0800107 line += map_name;
Christopher Ferris60001732015-08-20 11:16:54 -0700108 // Special handling for non-zero offset maps, we need to print that
109 // information.
110 if (frame->map.offset != 0) {
Christopher Ferris7937a362018-01-18 11:15:49 -0800111 line += " (offset " + StringPrintf("0x%" PRIx64, frame->map.offset) + ")";
Christopher Ferris60001732015-08-20 11:16:54 -0700112 }
Christopher Ferris2c43cff2015-03-26 19:18:36 -0700113 if (!frame->func_name.empty()) {
114 line += " (" + frame->func_name;
115 if (frame->func_offset) {
Christopher Ferris7937a362018-01-18 11:15:49 -0800116 line += StringPrintf("+%" PRIu64, frame->func_offset);
Christopher Ferris2c43cff2015-03-26 19:18:36 -0700117 }
118 line += ')';
119 }
120
121 return line;
122}
123
Christopher Ferris7937a362018-01-18 11:15:49 -0800124void Backtrace::FillInMap(uint64_t pc, backtrace_map_t* map) {
Christopher Ferris30c942c2015-05-14 15:39:52 -0700125 if (map_ != nullptr) {
126 map_->FillIn(pc, map);
127 }
Christopher Ferris2c43cff2015-03-26 19:18:36 -0700128}
129
130Backtrace* Backtrace::Create(pid_t pid, pid_t tid, BacktraceMap* map) {
131 if (pid == BACKTRACE_CURRENT_PROCESS) {
132 pid = getpid();
133 if (tid == BACKTRACE_CURRENT_THREAD) {
Elliott Hughes38488902018-07-11 11:13:16 -0700134 tid = android::base::GetThreadId();
Christopher Ferris2c43cff2015-03-26 19:18:36 -0700135 }
136 } else if (tid == BACKTRACE_CURRENT_THREAD) {
137 tid = pid;
138 }
139
140 if (pid == getpid()) {
Christopher Ferris9a6b3e32017-10-18 09:08:51 -0700141 return new UnwindStackCurrent(pid, tid, map);
142 } else {
143 return new UnwindStackPtrace(pid, tid, map);
144 }
145}
146
Christopher Ferrisc463ba42016-03-09 14:35:54 -0800147std::string Backtrace::GetErrorString(BacktraceUnwindError error) {
Yabin Cuif8808282017-12-12 18:04:10 -0800148 switch (error.error_code) {
149 case BACKTRACE_UNWIND_NO_ERROR:
150 return "No error";
151 case BACKTRACE_UNWIND_ERROR_SETUP_FAILED:
152 return "Setup failed";
153 case BACKTRACE_UNWIND_ERROR_MAP_MISSING:
154 return "No map found";
155 case BACKTRACE_UNWIND_ERROR_INTERNAL:
156 return "Internal libbacktrace error, please submit a bugreport";
157 case BACKTRACE_UNWIND_ERROR_THREAD_DOESNT_EXIST:
158 return "Thread doesn't exist";
159 case BACKTRACE_UNWIND_ERROR_THREAD_TIMEOUT:
160 return "Thread has not responded to signal in time";
161 case BACKTRACE_UNWIND_ERROR_UNSUPPORTED_OPERATION:
162 return "Attempt to use an unsupported feature";
163 case BACKTRACE_UNWIND_ERROR_NO_CONTEXT:
164 return "Attempt to do an offline unwind without a context";
165 case BACKTRACE_UNWIND_ERROR_EXCEED_MAX_FRAMES_LIMIT:
166 return "Exceed MAX_BACKTRACE_FRAMES limit";
167 case BACKTRACE_UNWIND_ERROR_ACCESS_MEM_FAILED:
168 return android::base::StringPrintf("Failed to read memory at addr 0x%" PRIx64,
169 error.error_info.addr);
170 case BACKTRACE_UNWIND_ERROR_ACCESS_REG_FAILED:
171 return android::base::StringPrintf("Failed to read register %" PRIu64, error.error_info.regno);
172 case BACKTRACE_UNWIND_ERROR_FIND_PROC_INFO_FAILED:
173 return "Failed to find a function in debug sections";
174 case BACKTRACE_UNWIND_ERROR_EXECUTE_DWARF_INSTRUCTION_FAILED:
175 return "Failed to execute dwarf instructions in debug sections";
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -0800176 case BACKTRACE_UNWIND_ERROR_UNWIND_INFO:
177 return "Failed to unwind due to invalid unwind information";
178 case BACKTRACE_UNWIND_ERROR_REPEATED_FRAME:
179 return "Failed to unwind due to same sp/pc repeating";
Christopher Ferrisd11ed862019-04-11 19:45:35 -0700180 case BACKTRACE_UNWIND_ERROR_INVALID_ELF:
181 return "Failed to unwind due to invalid elf";
Christopher Ferrisc463ba42016-03-09 14:35:54 -0800182 }
183}