blob: 8c39acb38cae23e70301b9b1f4d343958e87f5d7 [file] [log] [blame]
Christopher Ferris17e91d42013-10-21 13:30:52 -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#ifndef _BACKTRACE_BACKTRACE_H
18#define _BACKTRACE_BACKTRACE_H
19
Pavel Chupinc6c194c2013-11-21 23:17:20 +040020#include <inttypes.h>
Christopher Ferris46756822014-01-14 20:16:30 -080021#include <stdint.h>
Christopher Ferris17e91d42013-10-21 13:30:52 -070022
23#include <string>
Christopher Ferris46756822014-01-14 20:16:30 -080024#include <vector>
Christopher Ferris17e91d42013-10-21 13:30:52 -070025
Christopher Ferris46756822014-01-14 20:16:30 -080026#include <backtrace/backtrace_constants.h>
27#include <backtrace/BacktraceMap.h>
28
Pavel Chupinc6c194c2013-11-21 23:17:20 +040029#if __LP64__
30#define PRIPTR "016" PRIxPTR
31typedef uint64_t word_t;
32#else
33#define PRIPTR "08" PRIxPTR
34typedef uint32_t word_t;
35#endif
36
Christopher Ferris46756822014-01-14 20:16:30 -080037struct backtrace_frame_data_t {
38 size_t num; // The current fame number.
39 uintptr_t pc; // The absolute pc.
40 uintptr_t sp; // The top of the stack.
41 size_t stack_size; // The size of the stack, zero indicate an unknown stack size.
Christopher Ferris12385e32015-02-06 13:22:01 -080042 backtrace_map_t map; // The map associated with the given pc.
Christopher Ferris46756822014-01-14 20:16:30 -080043 std::string func_name; // The function name associated with this pc, NULL if not found.
44 uintptr_t func_offset; // pc relative to the start of the function, only valid if func_name is not NULL.
45};
46
47// Forward declarations.
Christopher Ferris17e91d42013-10-21 13:30:52 -070048class BacktraceImpl;
49
Christopher Ferrisafa9c9c2014-05-09 13:19:34 -070050#if defined(__APPLE__)
51struct __darwin_ucontext;
52typedef __darwin_ucontext ucontext_t;
53#else
Christopher Ferrisb1380372014-05-09 11:04:09 -070054struct ucontext;
55typedef ucontext ucontext_t;
Christopher Ferrisafa9c9c2014-05-09 13:19:34 -070056#endif
Christopher Ferrisb1380372014-05-09 11:04:09 -070057
Christopher Ferris17e91d42013-10-21 13:30:52 -070058class Backtrace {
59public:
Christopher Ferris8ed46272013-10-29 15:44:25 -070060 // Create the correct Backtrace object based on what is to be unwound.
61 // If pid < 0 or equals the current pid, then the Backtrace object
62 // corresponds to the current process.
63 // If pid < 0 or equals the current pid and tid >= 0, then the Backtrace
64 // object corresponds to a thread in the current process.
65 // If pid >= 0 and tid < 0, then the Backtrace object corresponds to a
66 // different process.
67 // Tracing a thread in a different process is not supported.
Christopher Ferris46756822014-01-14 20:16:30 -080068 // If map is NULL, then create the map and manage it internally.
69 // If map is not NULL, the map is still owned by the caller.
70 static Backtrace* Create(pid_t pid, pid_t tid, BacktraceMap* map = NULL);
Christopher Ferris8ed46272013-10-29 15:44:25 -070071
Christopher Ferris17e91d42013-10-21 13:30:52 -070072 virtual ~Backtrace();
73
74 // Get the current stack trace and store in the backtrace_ structure.
Christopher Ferrisa2efd3a2014-05-06 15:23:59 -070075 virtual bool Unwind(size_t num_ignore_frames, ucontext_t* context = NULL);
Christopher Ferris17e91d42013-10-21 13:30:52 -070076
77 // Get the function name and offset into the function given the pc.
78 // If the string is empty, then no valid function name was found.
79 virtual std::string GetFunctionName(uintptr_t pc, uintptr_t* offset);
80
Christopher Ferris12385e32015-02-06 13:22:01 -080081 // Fill in the map data associated with the given pc.
82 virtual void FillInMap(uintptr_t pc, backtrace_map_t* map);
Christopher Ferris17e91d42013-10-21 13:30:52 -070083
Christopher Ferris17e91d42013-10-21 13:30:52 -070084 // Read the data at a specific address.
Pavel Chupinc6c194c2013-11-21 23:17:20 +040085 virtual bool ReadWord(uintptr_t ptr, word_t* out_value) = 0;
Christopher Ferris17e91d42013-10-21 13:30:52 -070086
Christopher Ferris2b4a63f2015-03-17 14:42:03 -070087 // Read arbitrary data from a specific address. If a read request would
88 // span from one map to another, this call only reads up until the end
89 // of the current map.
90 // Returns the total number of bytes actually read.
91 virtual size_t Read(uintptr_t addr, uint8_t* buffer, size_t bytes) = 0;
92
Christopher Ferris17e91d42013-10-21 13:30:52 -070093 // Create a string representing the formatted line of backtrace information
94 // for a single frame.
95 virtual std::string FormatFrameData(size_t frame_num);
Christopher Ferris20303f82014-01-10 16:33:16 -080096 virtual std::string FormatFrameData(const backtrace_frame_data_t* frame);
Christopher Ferris17e91d42013-10-21 13:30:52 -070097
Christopher Ferris46756822014-01-14 20:16:30 -080098 pid_t Pid() { return pid_; }
99 pid_t Tid() { return tid_; }
100 size_t NumFrames() { return frames_.size(); }
Christopher Ferris17e91d42013-10-21 13:30:52 -0700101
102 const backtrace_frame_data_t* GetFrame(size_t frame_num) {
Christopher Ferris46756822014-01-14 20:16:30 -0800103 if (frame_num >= frames_.size()) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800104 return NULL;
105 }
Christopher Ferris46756822014-01-14 20:16:30 -0800106 return &frames_[frame_num];
Christopher Ferris17e91d42013-10-21 13:30:52 -0700107 }
108
Christopher Ferris46756822014-01-14 20:16:30 -0800109 typedef std::vector<backtrace_frame_data_t>::iterator iterator;
110 iterator begin() { return frames_.begin(); }
111 iterator end() { return frames_.end(); }
112
113 typedef std::vector<backtrace_frame_data_t>::const_iterator const_iterator;
114 const_iterator begin() const { return frames_.begin(); }
115 const_iterator end() const { return frames_.end(); }
116
117 BacktraceMap* GetMap() { return map_; }
Christopher Ferris20303f82014-01-10 16:33:16 -0800118
Christopher Ferris17e91d42013-10-21 13:30:52 -0700119protected:
Christopher Ferris46756822014-01-14 20:16:30 -0800120 Backtrace(BacktraceImpl* impl, pid_t pid, BacktraceMap* map);
Christopher Ferris8ed46272013-10-29 15:44:25 -0700121
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400122 virtual bool VerifyReadWordArgs(uintptr_t ptr, word_t* out_value);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700123
Christopher Ferris46756822014-01-14 20:16:30 -0800124 bool BuildMap();
125
126 pid_t pid_;
127 pid_t tid_;
128
129 BacktraceMap* map_;
130 bool map_shared_;
131
132 std::vector<backtrace_frame_data_t> frames_;
133
Christopher Ferris17e91d42013-10-21 13:30:52 -0700134 BacktraceImpl* impl_;
135
Christopher Ferris17e91d42013-10-21 13:30:52 -0700136 friend class BacktraceImpl;
137};
138
139#endif // _BACKTRACE_BACKTRACE_H