-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpython3.cc
205 lines (171 loc) · 6.51 KB
/
python3.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#include <Python.h>
#include <frameobject.h>
#include <dictobject.h>
#include <longintrepr.h>
#include <unicodeobject.h>
#include <methodobject.h>
#include "libpstack/python.h"
#define DK_SIZE(dk) ((dk)->dk_size)
#define DK_IXSIZE(dk) \
( DK_SIZE(dk) <= 0xff ? 1 \
: DK_SIZE(dk) <= 0xffff ? 2 \
: DK_SIZE(dk) <= 0xffffffff ? 4 \
: sizeof(int64_t))
#define DK_ENTRIES(dk) \
((PyDictKeyEntry *)(&((int8_t *)((dk)->dk_indices))[DK_SIZE(dk) * DK_IXSIZE(dk)]))
/*
* A key of dictionary as implemented by Python3.
* Applies to versions <= 3.10.x
*/
typedef struct {
Py_hash_t me_hash;
PyObject *me_key;
PyObject *me_value;
} PyDictKeyEntry;
#define DKIX_EMPTY (-1)
#define DKIX_DUMMY (-2)
#define DKIX_ERROR (-3)
/* a type of a lookup function which is used by Python3 dicts internally */
typedef Py_ssize_t (*dict_lookup_func)
(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr);
/*
* The dictionary's hashtable as implemented by Python3.
* Appies to version <= 3.10.x
*/
struct _dictkeysobject {
Py_ssize_t dk_refcnt;
Py_ssize_t dk_size;
dict_lookup_func dk_lookup;
Py_ssize_t dk_usable;
Py_ssize_t dk_nentries;
char dk_indices[];
};
namespace pstack {
template<> std::set<const PythonTypePrinter<3> *> PythonTypePrinter<3>::all = std::set<const PythonTypePrinter<3> *>();
template <>
char PythonTypePrinter<3>::pyBytesType[] = "PyUnicode_Type";
/**
* @brief Converts a Python PyASCIIObject, PyCompactUnicodeObject or PyUnicodeObjec to a string
*
* @param r The reader used
* @param addr Address of the object
* @return std::string
*/
template <> std::string readString<3>(const Reader &r, const Elf::Addr addr) {
PyASCIIObject baseObj = r.readObj<PyASCIIObject>(addr);
int ascii = baseObj.state.ascii;
int compact = baseObj.state.compact;
int ready = baseObj.state.ready;
if (compact && ascii && ready) {
return r.readString(addr + sizeof(PyASCIIObject));
} else if (compact & ready) {
return r.readString(addr + sizeof(PyCompactUnicodeObject));
} else {
return r.readString(addr + offsetof(PyUnicodeObject, data));
}
}
namespace {
// Reads indexSize bytes at address as a signed int
int64_t readIndex(const Reader &r, const Elf::Addr addr, size_t indexSize) {
char buf[8];
r.read(addr, indexSize, buf);
switch (indexSize) {
case 1: return *(int8_t *)buf;
case 2: return *(int16_t *)buf;
case 4: return *(int32_t *)buf;
case 8: return *(int64_t *)buf;
default: throw Exception() << "Envalid dictionary size"; // Shouldn't happen
}
}
class DictPrinter final : public PythonTypePrinter<3> {
Elf::Addr print(const PythonPrinter<3> *pc, const PyObject *object, const PyTypeObject *, Elf::Addr) const override {
PyDictObject *dict = (PyDictObject *)object;
if (dict->ma_used == 0) {
pc->os << "{}";
return 0;
}
if (pc->depth > pc->proc.context.options.maxdepth) {
pc->os << "{ ... }";
return 0;
}
const PyDictKeysObject keys = readPyObj<3, PyDictKeysObject>(*pc->proc.io, Elf::Addr(dict->ma_keys));
const size_t indexSize = DK_IXSIZE(&keys);
const Elf::Addr keyEntries = Elf::Addr(dict->ma_keys) + offsetof(PyDictKeysObject, dk_indices) + (keys.dk_size * indexSize);
const bool isSplit = dict->ma_values != NULL;
pc->os << "{\n";
pc->depth++;
for (Py_ssize_t i = 0; i < keys.dk_size; ++i) {
auto index = readIndex(*pc->proc.io, Elf::Addr(dict->ma_keys) + offsetof(PyDictKeysObject, dk_indices) + i * indexSize, indexSize);
if (index == DKIX_EMPTY || index == DKIX_DUMMY) continue;
PyDictKeyEntry keyEntry = readPyObj<3, PyDictKeyEntry>(*pc->proc.io, keyEntries + index * sizeof(PyDictKeyEntry));
PyObject* value;
if (isSplit)
value = readPyObj<3, PyObject *>(*pc->proc.io, Elf::Addr(dict->ma_values) + index * sizeof(PyObject *));
pc->os << pc->prefix();
pc->print(Elf::Addr(keyEntry.me_key));
pc->os << " : ";
pc->print(isSplit ? Elf::Addr(value) : Elf::Addr(keyEntry.me_value));
pc->os << "\n";
}
pc->depth--;
pc->os << pc->prefix() << "}";
return 0;
}
const char *type() const override { return "PyDict_Type"; }
bool dupdetect() const override { return true; }
};
static DictPrinter dictPrinter;
class BoolPrinter final : public PythonTypePrinter<3> {
Elf::Addr print(const PythonPrinter<3> *pc, const PyObject *pyo, const PyTypeObject *, Elf::Addr) const override {
auto pio = (const _longobject *)pyo;
pc->os << (pio->ob_digit[0] ? "True" : "False");
return 0;
}
const char *type() const override { return "PyBool_Type"; }
bool dupdetect() const override { return false; }
};
static BoolPrinter boolPrinter;
}
template <typename T, int pyv> ssize_t
pyRefcnt(const T *o) {
return o->ob_base.ob_refcnt;
}
template <int pyv, typename T> const PyTypeObject *
pyObjtype(const T *o) {
return o->ob_base.ob_type;
}
template <>
int getKwonlyArgCount<3>(const PyObject *pyCode) {
const PyCodeObject* code = (PyCodeObject *)pyCode;
return code->co_kwonlyargcount;
}
// this comes from python internals that requires us to include C++-incompatible
// headers (stdatomic.h, for example). It's in its own (C) translation unit.
extern "C" size_t pyInterpOffset();
template <>
std::tuple<Elf::Object::sptr, Elf::Addr, Elf::Addr>
getInterpHead<3>(Procman::Process &proc) {
Elf::Object::sptr libpython;
Elf::Addr libpythonAddr;
Elf::Sym _PyRuntimeSym;
std::tie(libpython, libpythonAddr, _PyRuntimeSym) = proc.resolveSymbolDetail(
"_PyRuntime", false,
[&](std::string_view name) {
auto base = proc.context.basename(std::string(name));
return base.find("python3") != std::string::npos;
});
Elf::Addr interpHead = libpythonAddr + _PyRuntimeSym.st_value + pyInterpOffset();
if (libpython == nullptr) {
if (proc.context.verbose)
*proc.context.debug << "Python 3 interpreter not found" << std::endl;
throw Exception() << "No libpython3 found";
}
if (proc.context.verbose)
*proc.context.debug << "python3 library is " << *libpython->io << std::endl;
return std::make_tuple(libpython, libpythonAddr, interpHead);
}
}
#include "python.tcc"
namespace pstack {
template struct PythonPrinter<3>;
}