Dwarf Interpret library
A wrapper around libdwarfpp
DwarfInterpret.hpp
1 #pragma once
2 
3 #include <string>
4 #include <memory>
5 #include <cstdint>
6 
7 #include <dwarfpp/lib.hpp>
8 #include <dwarfpp/regs.hpp>
9 #include <dwarfpp/frame.hpp>
10 #include <dwarfpp/attr.hpp>
11 #include <dwarfpp/frame.hpp>
12 #include <dwarfpp/root.hpp>
13 
14 #include "MemoryMap.hpp"
15 
16 #define OF_WHAT_EXCEPTION(cl_name) \
17  cl_name: public WhatException { \
18  public:\
19  cl_name(const std::string& what): WhatException(what) {} \
20  cl_name() = default; \
21  }
22 
32  public: // Types, sub-classes, …
33  class WhatException: public std::exception {
37  std::string what_str;
38 
39  public:
41  explicit WhatException(const std::string& what)
42  : what_str(what) {}
43 
45  WhatException(): what_str("") {}
46 
48  const char* what() const noexcept {
49  return what_str.c_str();
50  }
51  };
52 
53 
57  class OF_WHAT_EXCEPTION(InvalidElf);
58 
61  class OF_WHAT_EXCEPTION(NoDebugData);
62 
65  class OF_WHAT_EXCEPTION(NoElfForPC);
66 
69  class OF_WHAT_EXCEPTION(ExoticRegister);
70 
73  class OF_WHAT_EXCEPTION(ValuelessRegister);
74 
76  class OF_WHAT_EXCEPTION(NotImplemented);
77 
79  class OF_WHAT_EXCEPTION(FailedGetContext);
80 
82  class OF_WHAT_EXCEPTION(NotFound);
83 
85  class FirstUnwindFrame: public std::exception {};
86 
88  typedef dwarf::core::FrameSection::register_def DwarfRegister;
89 
91  typedef std::set<std::pair<int, DwarfRegister> > DwarfRow;
92 
94  typedef uintptr_t reg_content_t;
95 
96 
105  struct UnwindContext {
106  // Let's pretend this is enough
107  uintptr_t rip;
108  uintptr_t rsp;
109  uintptr_t rbp;
110  };
111 
112  public: // methods
113  DwarfInterpret(DwarfInterpret const&) = delete;
114  void operator=(DwarfInterpret const&) = delete;
115 
119  static DwarfInterpret& acquire();
120 
123  static DwarfInterpret& acquire(uintptr_t pc);
124 
129  DwarfRow dwarf_row_at(uintptr_t pc) const;
130 
135  const DwarfRow& row,
136  const DwarfRegister& reg,
137  const UnwindContext& ctx
138  ) const;
139 
144  const DwarfRow& row,
145  int reg_id,
146  const UnwindContext& ctx
147  ) const;
148 
176 
182 
183  private:
184  DwarfInterpret(const MemoryMap::MapEntry& memory_object);
185 
186  DwarfRegister get_column(const DwarfRow& row, int column) const;
187 
188  const dwarf::core::FrameSection::fde_iterator fde_at(
189  uintptr_t pc) const;
190  const dwarf::core::FrameSection::cie_iterator cie_at(
191  uintptr_t pc) const;
192 
195  DwarfInterpret* get_responsible_instance(uintptr_t pc) const;
196 
197 
198  private: // members
199  static MemoryMap memory_map;
200 
201  // This map maps a `memory_map` memory region index to some instance of
202  // a DwarfInterpret. The special index -1 is mapped to the anonymous
203  // instance.
204  static std::map<int, std::unique_ptr<DwarfInterpret> > instances;
205 
206  MemoryMap::MapEntry map_entry;
207 
208  std::unique_ptr<dwarf::core::root_die> root_die;
209 
210  uintptr_t pc_offset;
211 
212  friend class std::unique_ptr<DwarfInterpret>;
213 };
Definition: MemoryMap.hpp:20
DwarfRow dwarf_row_at(uintptr_t pc) const
Definition: DwarfInterpret.cpp:320
Definition: DwarfInterpret.hpp:105
Definition: MemoryMap.hpp:51
uintptr_t reg_content_t
The value type of a register&#39;s contents.
Definition: DwarfInterpret.hpp:94
const char * what() const noexcept
Get the explanatory text for this exception.
Definition: DwarfInterpret.hpp:48
WhatException(const std::string &what)
Initialize the exception with an explanatory text chunk.
Definition: DwarfInterpret.hpp:41
static UnwindContext get_current_unwind_context()
Definition: DwarfInterpret.cpp:191
Definition: DwarfInterpret.hpp:23
Definition: DwarfInterpret.hpp:33
reg_content_t interpret_dw_register(const DwarfRow &row, const DwarfRegister &reg, const UnwindContext &ctx) const
Definition: DwarfInterpret.cpp:112
dwarf::core::FrameSection::register_def DwarfRegister
A Dwarf register.
Definition: DwarfInterpret.hpp:88
static DwarfInterpret & acquire()
Definition: DwarfInterpret.cpp:73
UnwindContext unwind_context(const UnwindContext &ctx)
Definition: DwarfInterpret.cpp:208
WhatException()
Leave the explanatory text empty.
Definition: DwarfInterpret.hpp:45
std::set< std::pair< int, DwarfRegister > > DwarfRow
A Dwarf row of registers (for a given PC)
Definition: DwarfInterpret.hpp:91
Thrown when trying to unwind a context with nothing more to unwind.
Definition: DwarfInterpret.hpp:85