2013-10-21 22:30:52 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BACKTRACE_BACKTRACE_H
|
|
|
|
#define _BACKTRACE_BACKTRACE_H
|
|
|
|
|
2013-11-21 20:17:20 +01:00
|
|
|
#include <inttypes.h>
|
2014-01-15 05:16:30 +01:00
|
|
|
#include <stdint.h>
|
2013-10-21 22:30:52 +02:00
|
|
|
|
|
|
|
#include <string>
|
2014-01-15 05:16:30 +01:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <backtrace/backtrace_constants.h>
|
|
|
|
#include <backtrace/BacktraceMap.h>
|
|
|
|
|
2013-11-21 20:17:20 +01:00
|
|
|
#if __LP64__
|
|
|
|
#define PRIPTR "016" PRIxPTR
|
|
|
|
typedef uint64_t word_t;
|
|
|
|
#else
|
|
|
|
#define PRIPTR "08" PRIxPTR
|
|
|
|
typedef uint32_t word_t;
|
|
|
|
#endif
|
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
struct backtrace_frame_data_t {
|
|
|
|
size_t num; // The current fame number.
|
|
|
|
uintptr_t pc; // The absolute pc.
|
|
|
|
uintptr_t sp; // The top of the stack.
|
|
|
|
size_t stack_size; // The size of the stack, zero indicate an unknown stack size.
|
|
|
|
const backtrace_map_t* map; // The map associated with the given pc.
|
|
|
|
std::string func_name; // The function name associated with this pc, NULL if not found.
|
|
|
|
uintptr_t func_offset; // pc relative to the start of the function, only valid if func_name is not NULL.
|
|
|
|
};
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
// Forward declarations.
|
2013-10-21 22:30:52 +02:00
|
|
|
class BacktraceImpl;
|
|
|
|
|
2014-05-09 22:19:34 +02:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
struct __darwin_ucontext;
|
|
|
|
typedef __darwin_ucontext ucontext_t;
|
|
|
|
#else
|
2014-05-09 20:04:09 +02:00
|
|
|
struct ucontext;
|
|
|
|
typedef ucontext ucontext_t;
|
2014-05-09 22:19:34 +02:00
|
|
|
#endif
|
2014-05-09 20:04:09 +02:00
|
|
|
|
2013-10-21 22:30:52 +02:00
|
|
|
class Backtrace {
|
|
|
|
public:
|
2013-10-29 23:44:25 +01:00
|
|
|
// Create the correct Backtrace object based on what is to be unwound.
|
|
|
|
// If pid < 0 or equals the current pid, then the Backtrace object
|
|
|
|
// corresponds to the current process.
|
|
|
|
// If pid < 0 or equals the current pid and tid >= 0, then the Backtrace
|
|
|
|
// object corresponds to a thread in the current process.
|
|
|
|
// If pid >= 0 and tid < 0, then the Backtrace object corresponds to a
|
|
|
|
// different process.
|
|
|
|
// Tracing a thread in a different process is not supported.
|
2014-01-15 05:16:30 +01:00
|
|
|
// If map is NULL, then create the map and manage it internally.
|
|
|
|
// If map is not NULL, the map is still owned by the caller.
|
|
|
|
static Backtrace* Create(pid_t pid, pid_t tid, BacktraceMap* map = NULL);
|
2013-10-29 23:44:25 +01:00
|
|
|
|
2013-10-21 22:30:52 +02:00
|
|
|
virtual ~Backtrace();
|
|
|
|
|
|
|
|
// Get the current stack trace and store in the backtrace_ structure.
|
2014-05-07 00:23:59 +02:00
|
|
|
virtual bool Unwind(size_t num_ignore_frames, ucontext_t* context = NULL);
|
2013-10-21 22:30:52 +02:00
|
|
|
|
|
|
|
// Get the function name and offset into the function given the pc.
|
|
|
|
// If the string is empty, then no valid function name was found.
|
|
|
|
virtual std::string GetFunctionName(uintptr_t pc, uintptr_t* offset);
|
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
// Find the map associated with the given pc.
|
|
|
|
virtual const backtrace_map_t* FindMap(uintptr_t pc);
|
2013-10-21 22:30:52 +02:00
|
|
|
|
|
|
|
// Read the data at a specific address.
|
2013-11-21 20:17:20 +01:00
|
|
|
virtual bool ReadWord(uintptr_t ptr, word_t* out_value) = 0;
|
2013-10-21 22:30:52 +02:00
|
|
|
|
|
|
|
// Create a string representing the formatted line of backtrace information
|
|
|
|
// for a single frame.
|
|
|
|
virtual std::string FormatFrameData(size_t frame_num);
|
2014-01-11 01:33:16 +01:00
|
|
|
virtual std::string FormatFrameData(const backtrace_frame_data_t* frame);
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
pid_t Pid() { return pid_; }
|
|
|
|
pid_t Tid() { return tid_; }
|
|
|
|
size_t NumFrames() { return frames_.size(); }
|
2013-10-21 22:30:52 +02:00
|
|
|
|
|
|
|
const backtrace_frame_data_t* GetFrame(size_t frame_num) {
|
2014-01-15 05:16:30 +01:00
|
|
|
if (frame_num >= frames_.size()) {
|
2014-01-11 01:33:16 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2014-01-15 05:16:30 +01:00
|
|
|
return &frames_[frame_num];
|
2013-10-21 22:30:52 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
typedef std::vector<backtrace_frame_data_t>::iterator iterator;
|
|
|
|
iterator begin() { return frames_.begin(); }
|
|
|
|
iterator end() { return frames_.end(); }
|
|
|
|
|
|
|
|
typedef std::vector<backtrace_frame_data_t>::const_iterator const_iterator;
|
|
|
|
const_iterator begin() const { return frames_.begin(); }
|
|
|
|
const_iterator end() const { return frames_.end(); }
|
|
|
|
|
|
|
|
BacktraceMap* GetMap() { return map_; }
|
2014-01-11 01:33:16 +01:00
|
|
|
|
2013-10-21 22:30:52 +02:00
|
|
|
protected:
|
2014-01-15 05:16:30 +01:00
|
|
|
Backtrace(BacktraceImpl* impl, pid_t pid, BacktraceMap* map);
|
2013-10-29 23:44:25 +01:00
|
|
|
|
2013-11-21 20:17:20 +01:00
|
|
|
virtual bool VerifyReadWordArgs(uintptr_t ptr, word_t* out_value);
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
bool BuildMap();
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
pid_t pid_;
|
|
|
|
pid_t tid_;
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
BacktraceMap* map_;
|
|
|
|
bool map_shared_;
|
2014-01-07 04:16:33 +01:00
|
|
|
|
2014-01-15 05:16:30 +01:00
|
|
|
std::vector<backtrace_frame_data_t> frames_;
|
|
|
|
|
|
|
|
BacktraceImpl* impl_;
|
2013-10-21 22:30:52 +02:00
|
|
|
|
|
|
|
friend class BacktraceImpl;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _BACKTRACE_BACKTRACE_H
|