blob: e18dbf3db2baab3e473ba4c95bb3a6e8a09d86d7 [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>
Christopher Ferris2c43cff2015-03-26 19:18:36 -070026
27#include <backtrace/Backtrace.h>
28#include <backtrace/BacktraceMap.h>
29
Christopher Ferris7d0aea92017-06-01 14:15:09 -070030#include <demangle.h>
31
Christopher Ferris2c43cff2015-03-26 19:18:36 -070032#include "BacktraceLog.h"
Christopher Ferris2c43cff2015-03-26 19:18:36 -070033#include "UnwindCurrent.h"
34#include "UnwindPtrace.h"
Christopher Ferris9a6b3e32017-10-18 09:08:51 -070035#include "UnwindStack.h"
36#include "thread_utils.h"
Christopher Ferris2c43cff2015-03-26 19:18:36 -070037
38using android::base::StringPrintf;
39
40//-------------------------------------------------------------------------
41// Backtrace functions.
42//-------------------------------------------------------------------------
43Backtrace::Backtrace(pid_t pid, pid_t tid, BacktraceMap* map)
44 : pid_(pid), tid_(tid), map_(map), map_shared_(true) {
45 if (map_ == nullptr) {
46 map_ = BacktraceMap::Create(pid);
47 map_shared_ = false;
48 }
49}
50
51Backtrace::~Backtrace() {
52 if (map_ && !map_shared_) {
53 delete map_;
54 map_ = nullptr;
55 }
56}
57
Christopher Ferrisf5e568e2017-03-22 13:18:31 -070058std::string Backtrace::GetFunctionName(uintptr_t pc, uintptr_t* offset, const backtrace_map_t* map) {
59 backtrace_map_t map_value;
60 if (map == nullptr) {
61 FillInMap(pc, &map_value);
62 map = &map_value;
63 }
64 // If no map is found, or this map is backed by a device, then return nothing.
65 if (map->start == 0 || (map->flags & PROT_DEVICE_MAP)) {
66 return "";
67 }
Christopher Ferris7d0aea92017-06-01 14:15:09 -070068 return demangle(GetFunctionNameRaw(pc, offset).c_str());
Christopher Ferris2c43cff2015-03-26 19:18:36 -070069}
70
71bool Backtrace::VerifyReadWordArgs(uintptr_t ptr, word_t* out_value) {
72 if (ptr & (sizeof(word_t)-1)) {
73 BACK_LOGW("invalid pointer %p", reinterpret_cast<void*>(ptr));
74 *out_value = static_cast<word_t>(-1);
75 return false;
76 }
77 return true;
78}
79
80std::string Backtrace::FormatFrameData(size_t frame_num) {
81 if (frame_num >= frames_.size()) {
82 return "";
83 }
84 return FormatFrameData(&frames_[frame_num]);
85}
86
87std::string Backtrace::FormatFrameData(const backtrace_frame_data_t* frame) {
Christopher Ferrisda750a72015-11-30 13:36:08 -080088 std::string map_name;
89 if (BacktraceMap::IsValid(frame->map)) {
Christopher Ferrisda750a72015-11-30 13:36:08 -080090 if (!frame->map.name.empty()) {
91 map_name = frame->map.name.c_str();
92 if (map_name[0] == '[' && map_name[map_name.size() - 1] == ']') {
93 map_name.resize(map_name.size() - 1);
94 map_name += StringPrintf(":%" PRIPTR "]", frame->map.start);
95 }
96 } else {
97 map_name = StringPrintf("<anonymous:%" PRIPTR ">", frame->map.start);
98 }
Christopher Ferris2c43cff2015-03-26 19:18:36 -070099 } else {
100 map_name = "<unknown>";
101 }
102
Christopher Ferris96722b02017-07-19 14:20:46 -0700103 std::string line(StringPrintf("#%02zu pc %" PRIPTR " ", frame->num, frame->rel_pc));
Christopher Ferrisda750a72015-11-30 13:36:08 -0800104 line += map_name;
Christopher Ferris60001732015-08-20 11:16:54 -0700105 // Special handling for non-zero offset maps, we need to print that
106 // information.
107 if (frame->map.offset != 0) {
108 line += " (offset " + StringPrintf("0x%" PRIxPTR, frame->map.offset) + ")";
109 }
Christopher Ferris2c43cff2015-03-26 19:18:36 -0700110 if (!frame->func_name.empty()) {
111 line += " (" + frame->func_name;
112 if (frame->func_offset) {
113 line += StringPrintf("+%" PRIuPTR, frame->func_offset);
114 }
115 line += ')';
116 }
117
118 return line;
119}
120
121void Backtrace::FillInMap(uintptr_t pc, backtrace_map_t* map) {
Christopher Ferris30c942c2015-05-14 15:39:52 -0700122 if (map_ != nullptr) {
123 map_->FillIn(pc, map);
124 }
Christopher Ferris2c43cff2015-03-26 19:18:36 -0700125}
126
127Backtrace* Backtrace::Create(pid_t pid, pid_t tid, BacktraceMap* map) {
128 if (pid == BACKTRACE_CURRENT_PROCESS) {
129 pid = getpid();
130 if (tid == BACKTRACE_CURRENT_THREAD) {
131 tid = gettid();
132 }
133 } else if (tid == BACKTRACE_CURRENT_THREAD) {
134 tid = pid;
135 }
136
137 if (pid == getpid()) {
Christopher Ferris9a6b3e32017-10-18 09:08:51 -0700138 return new UnwindStackCurrent(pid, tid, map);
139 } else {
140 return new UnwindStackPtrace(pid, tid, map);
141 }
142}
143
Christopher Ferrisc463ba42016-03-09 14:35:54 -0800144std::string Backtrace::GetErrorString(BacktraceUnwindError error) {
145 switch (error) {
146 case BACKTRACE_UNWIND_NO_ERROR:
147 return "No error";
148 case BACKTRACE_UNWIND_ERROR_SETUP_FAILED:
149 return "Setup failed";
150 case BACKTRACE_UNWIND_ERROR_MAP_MISSING:
151 return "No map found";
152 case BACKTRACE_UNWIND_ERROR_INTERNAL:
153 return "Internal libbacktrace error, please submit a bugreport";
154 case BACKTRACE_UNWIND_ERROR_THREAD_DOESNT_EXIST:
155 return "Thread doesn't exist";
156 case BACKTRACE_UNWIND_ERROR_THREAD_TIMEOUT:
Brian Carlstrom6d1da7c2017-03-23 11:24:33 -0700157 return "Thread has not responded to signal in time";
Christopher Ferrisc463ba42016-03-09 14:35:54 -0800158 case BACKTRACE_UNWIND_ERROR_UNSUPPORTED_OPERATION:
159 return "Attempt to use an unsupported feature";
160 case BACKTRACE_UNWIND_ERROR_NO_CONTEXT:
161 return "Attempt to do an offline unwind without a context";
162 }
163}