forked from benfred/py-spy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython_data_access.rs
496 lines (460 loc) · 18 KB
/
python_data_access.rs
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
#![allow(clippy::unnecessary_cast)]
use anyhow::Error;
use crate::python_interpreters::{
BytesObject, InterpreterState, ListObject, Object, StringObject, TupleObject, TypeObject,
};
use crate::version::Version;
use remoteprocess::ProcessMemory;
/// Copies a string from a target process. Attempts to handle unicode differences, which mostly seems to be working
pub fn copy_string<T: StringObject, P: ProcessMemory>(
ptr: *const T,
process: &P,
) -> Result<String, Error> {
let obj = process.copy_pointer(ptr)?;
if obj.size() >= 4096 {
return Err(format_err!(
"Refusing to copy {} chars of a string",
obj.size()
));
}
let kind = obj.kind();
let bytes = process.copy(obj.address(ptr as usize), obj.size() * kind as usize)?;
match (kind, obj.ascii()) {
(4, _) => {
#[allow(clippy::cast_ptr_alignment)]
let chars = unsafe {
std::slice::from_raw_parts(bytes.as_ptr() as *const char, bytes.len() / 4)
};
Ok(chars.iter().collect())
}
(2, _) => {
#[allow(clippy::cast_ptr_alignment)]
let chars = unsafe {
std::slice::from_raw_parts(bytes.as_ptr() as *const u16, bytes.len() / 2)
};
Ok(String::from_utf16(chars)?)
}
(1, true) => Ok(String::from_utf8(bytes)?),
(1, false) => Ok(bytes.iter().map(|&b| b as char).collect()),
_ => Err(format_err!("Unknown string kind {}", kind)),
}
}
/// Copies data from a PyBytesObject (currently only lnotab object)
pub fn copy_bytes<T: BytesObject, P: ProcessMemory>(
ptr: *const T,
process: &P,
) -> Result<Vec<u8>, Error> {
let obj = process.copy_pointer(ptr)?;
let size = obj.size();
if size >= 65536 {
return Err(format_err!("Refusing to copy {} bytes", size));
}
Ok(process.copy(obj.address(ptr as usize), size as usize)?)
}
/// Copies a i64 from a PyLongObject. Returns the value + if it overflowed
pub fn copy_long<P: ProcessMemory>(process: &P, addr: usize) -> Result<(i64, bool), Error> {
// this is PyLongObject for a specific version of python, but this works since it's binary compatible
// layout across versions we're targeting
let value =
process.copy_pointer(addr as *const crate::python_bindings::v3_7_0::PyLongObject)?;
let negative: i64 = if value.ob_base.ob_size < 0 { -1 } else { 1 };
let size = value.ob_base.ob_size * (negative as isize);
match size {
0 => Ok((0, false)),
1 => Ok((negative * (value.ob_digit[0] as i64), false)),
#[cfg(target_pointer_width = "64")]
2 => {
let digits: [u32; 2] = process.copy_struct(addr + std::mem::size_of_val(&value) - 8)?;
let mut ret: i64 = 0;
for i in 0..size {
ret += (digits[i as usize] as i64) << (30 * i);
}
Ok((negative * ret, false))
}
#[cfg(target_pointer_width = "32")]
2..=4 => {
let digits: [u16; 4] = process.copy_struct(addr + std::mem::size_of_val(&value) - 4)?;
let mut ret: i64 = 0;
for i in 0..size {
ret += (digits[i as usize] as i64) << (15 * i);
}
Ok((negative * ret, false))
}
// we don't support arbitrary sized integers yet, signal this by returning that we've overflowed
_ => Ok((value.ob_base.ob_size as i64, true)),
}
}
/// Copies a i64 from a python 2.7 PyIntObject
pub fn copy_int<P: ProcessMemory>(process: &P, addr: usize) -> Result<i64, Error> {
let value =
process.copy_pointer(addr as *const crate::python_bindings::v2_7_15::PyIntObject)?;
Ok(value.ob_ival as i64)
}
/// Allows iteration of a python dictionary. Only supports python 3.6+ right now
pub struct DictIterator<'a, P: 'a> {
process: &'a P,
entries_addr: usize,
kind: u8,
index: usize,
entries: usize,
values: usize,
}
impl<'a, P: ProcessMemory> DictIterator<'a, P> {
pub fn from_managed_dict(
process: &'a P,
version: &'a Version,
addr: usize,
tp_addr: usize,
) -> Result<DictIterator<'a, P>, Error> {
// Handles logic of _PyObject_ManagedDictPointer in python 3.11
let values_addr: usize = process.copy_struct(addr - 4 * std::mem::size_of::<usize>())?;
let dict_addr: usize = process.copy_struct(addr - 3 * std::mem::size_of::<usize>())?;
if values_addr != 0 {
let ht: crate::python_bindings::v3_11_0::PyHeapTypeObject =
process.copy_struct(tp_addr)?;
let keys: crate::python_bindings::v3_11_0::PyDictKeysObject =
process.copy_struct(ht.ht_cached_keys as usize)?;
let entries_addr = ht.ht_cached_keys as usize
+ (1 << keys.dk_log2_index_bytes)
+ std::mem::size_of_val(&keys);
Ok(DictIterator {
process,
entries_addr,
index: 0,
kind: keys.dk_kind,
entries: keys.dk_nentries as usize,
values: values_addr,
})
} else if dict_addr != 0 {
DictIterator::from(process, version, dict_addr)
} else {
Err(format_err!("neither values or dict is set in managed dict"))
}
}
pub fn from(
process: &'a P,
version: &'a Version,
addr: usize,
) -> Result<DictIterator<'a, P>, Error> {
match version {
Version {
major: 3,
minor: 11,
..
} => {
let dict: crate::python_bindings::v3_11_0::PyDictObject =
process.copy_struct(addr)?;
let keys = process.copy_pointer(dict.ma_keys)?;
let entries_addr = dict.ma_keys as usize
+ (1 << keys.dk_log2_index_bytes)
+ std::mem::size_of_val(&keys);
Ok(DictIterator {
process,
entries_addr,
index: 0,
kind: keys.dk_kind,
entries: keys.dk_nentries as usize,
values: dict.ma_values as usize,
})
}
_ => {
let dict: crate::python_bindings::v3_7_0::PyDictObject =
process.copy_struct(addr)?;
// Getting this going generically is tricky: there is a lot of variation on how dictionaries are handled
// instead this just focuses on a single version, which works for python
// 3.6/3.7/3.8/3.9/3.10
let keys = process.copy_pointer(dict.ma_keys)?;
let index_size = match keys.dk_size {
0..=0xff => 1,
0..=0xffff => 2,
#[cfg(target_pointer_width = "64")]
0..=0xffffffff => 4,
#[cfg(target_pointer_width = "64")]
_ => 8,
#[cfg(not(target_pointer_width = "64"))]
_ => 4,
};
let byteoffset = (keys.dk_size * index_size) as usize;
let entries_addr =
dict.ma_keys as usize + byteoffset + std::mem::size_of_val(&keys);
Ok(DictIterator {
process,
entries_addr,
index: 0,
kind: 0,
entries: keys.dk_nentries as usize,
values: dict.ma_values as usize,
})
}
}
}
}
impl<'a, P: ProcessMemory> Iterator for DictIterator<'a, P> {
type Item = Result<(usize, usize), Error>;
fn next(&mut self) -> Option<Self::Item> {
while self.index < self.entries {
let index = self.index;
self.index += 1;
// get the addresses of the key/value for the current index
let entry = match self.kind {
0 => {
let addr = index
* std::mem::size_of::<crate::python_bindings::v3_7_0::PyDictKeyEntry>()
+ self.entries_addr;
let ret = self
.process
.copy_struct::<crate::python_bindings::v3_7_0::PyDictKeyEntry>(addr);
ret.map(|entry| (entry.me_key as usize, entry.me_value as usize))
}
_ => {
// Python 3.11 added a PyDictUnicodeEntry , which uses the hash from the Unicode key rather than recalculate
let addr = index
* std::mem::size_of::<crate::python_bindings::v3_11_0::PyDictUnicodeEntry>(
)
+ self.entries_addr;
let ret = self
.process
.copy_struct::<crate::python_bindings::v3_11_0::PyDictUnicodeEntry>(addr);
ret.map(|entry| (entry.me_key as usize, entry.me_value as usize))
}
};
match entry {
Ok((key, value)) => {
if key == 0 {
continue;
}
let value = if self.values != 0 {
let valueaddr = self.values
+ index
* std::mem::size_of::<*mut crate::python_bindings::v3_7_0::PyObject>(
);
match self.process.copy_struct(valueaddr) {
Ok(addr) => addr,
Err(e) => {
return Some(Err(e.into()));
}
}
} else {
value
};
return Some(Ok((key, value)));
}
Err(e) => return Some(Err(e.into())),
}
}
None
}
}
pub const PY_TPFLAGS_MANAGED_DICT: usize = 1 << 4;
const PY_TPFLAGS_INT_SUBCLASS: usize = 1 << 23;
const PY_TPFLAGS_LONG_SUBCLASS: usize = 1 << 24;
const PY_TPFLAGS_LIST_SUBCLASS: usize = 1 << 25;
const PY_TPFLAGS_TUPLE_SUBCLASS: usize = 1 << 26;
const PY_TPFLAGS_BYTES_SUBCLASS: usize = 1 << 27;
const PY_TPFLAGS_STRING_SUBCLASS: usize = 1 << 28;
const PY_TPFLAGS_DICT_SUBCLASS: usize = 1 << 29;
/// Converts a python variable in the other process to a human readable string
pub fn format_variable<I, P>(
process: &P,
version: &Version,
addr: usize,
max_length: isize,
) -> Result<String, Error>
where
I: InterpreterState,
P: ProcessMemory,
{
// We need at least 5 characters remaining for all this code to work, replace with an ellipsis if
// we're out of space
if max_length <= 5 {
return Ok("...".to_owned());
}
let value: I::Object = process.copy_struct(addr)?;
let value_type = process.copy_pointer(value.ob_type())?;
// get the typename (truncating to 128 bytes if longer)
let max_type_len = 128;
let value_type_name = process.copy(value_type.name() as usize, max_type_len)?;
let length = value_type_name
.iter()
.position(|&x| x == 0)
.unwrap_or(max_type_len);
let value_type_name = std::str::from_utf8(&value_type_name[..length])?;
let format_int = |value: i64| {
if value_type_name == "bool" {
(if value > 0 { "True" } else { "False" }).to_owned()
} else {
format!("{}", value)
}
};
// use the flags/typename to figure out how to stringify this object
let flags = value_type.flags();
let formatted = if flags & PY_TPFLAGS_INT_SUBCLASS != 0 {
format_int(copy_int(process, addr)?)
} else if flags & PY_TPFLAGS_LONG_SUBCLASS != 0 {
// we don't handle arbitrary sized integer values (max is 2**60)
let (value, overflowed) = copy_long(process, addr)?;
if overflowed {
if value > 0 {
"+bigint".to_owned()
} else {
"-bigint".to_owned()
}
} else {
format_int(value)
}
} else if flags & PY_TPFLAGS_STRING_SUBCLASS != 0
|| (version.major == 2 && (flags & PY_TPFLAGS_BYTES_SUBCLASS != 0))
{
let value = copy_string(addr as *const I::StringObject, process)?
.replace('\'', "\\\"")
.replace('\n', "\\n");
if value.len() as isize >= max_length - 5 {
format!("\"{}...\"", &value[..(max_length - 5) as usize])
} else {
format!("\"{}\"", value)
}
} else if flags & PY_TPFLAGS_DICT_SUBCLASS != 0 {
if version.major == 3 && version.minor >= 6 {
let mut values = Vec::new();
let mut remaining = max_length - 2;
for entry in DictIterator::from(process, version, addr)? {
let (key, value) = entry?;
let key = format_variable::<I, P>(process, version, key, remaining)?;
let value = format_variable::<I, P>(process, version, value, remaining)?;
remaining -= (key.len() + value.len()) as isize + 4;
if remaining <= 5 {
values.push("...".to_owned());
break;
}
values.push(format!("{}: {}", key, value));
}
format!("{{{}}}", values.join(", "))
} else {
// TODO: support getting dictionaries from older versions of python
"dict".to_owned()
}
} else if flags & PY_TPFLAGS_LIST_SUBCLASS != 0 {
let object: I::ListObject = process.copy_struct(addr)?;
let addr = object.item() as usize;
let mut values = Vec::new();
let mut remaining = max_length - 2;
for i in 0..object.size() {
let valueptr: *mut I::Object =
process.copy_struct(addr + i * std::mem::size_of::<*mut I::Object>())?;
let value = format_variable::<I, P>(process, version, valueptr as usize, remaining)?;
remaining -= value.len() as isize + 2;
if remaining <= 5 {
values.push("...".to_owned());
break;
}
values.push(value);
}
format!("[{}]", values.join(", "))
} else if flags & PY_TPFLAGS_TUPLE_SUBCLASS != 0 {
let object: I::TupleObject = process.copy_struct(addr)?;
let mut values = Vec::new();
let mut remaining = max_length - 2;
for i in 0..object.size() {
let value_addr: *mut I::Object = process.copy_struct(object.address(addr, i))?;
let value = format_variable::<I, P>(process, version, value_addr as usize, remaining)?;
remaining -= value.len() as isize + 2;
if remaining <= 5 {
values.push("...".to_owned());
break;
}
values.push(value);
}
format!("({})", values.join(", "))
} else if value_type_name == "float" {
let value =
process.copy_pointer(addr as *const crate::python_bindings::v3_7_0::PyFloatObject)?;
format!("{}", value.ob_fval)
} else if value_type_name == "NoneType" {
"None".to_owned()
} else {
format!("<{} at 0x{:x}>", value_type_name, addr)
};
Ok(formatted)
}
#[cfg(test)]
pub mod tests {
// the idea here is to create various cpython interpretator structs locally
// and then test out that the above code handles appropriately
use super::*;
use crate::python_bindings::v3_7_0::{
PyASCIIObject, PyBytesObject, PyUnicodeObject, PyVarObject,
};
use remoteprocess::LocalProcess;
use std::ptr::copy_nonoverlapping;
// python stores data after pybytesobject/pyasciiobject. hack by initializing a 4k buffer for testing.
// TODO: get better at Rust and figure out a better solution
#[allow(dead_code)]
#[repr(C)]
pub struct AllocatedPyByteObject {
pub base: PyBytesObject,
pub storage: [u8; 4096],
}
#[allow(dead_code)]
#[repr(C)] // Rust can optimize the layout of this struct and break our pointer arithmetic
pub struct AllocatedPyASCIIObject {
pub base: PyASCIIObject,
pub storage: [u8; 4096],
}
pub fn to_byteobject(bytes: &[u8]) -> AllocatedPyByteObject {
let ob_size = bytes.len() as isize;
let base = PyBytesObject {
ob_base: PyVarObject {
ob_size,
..Default::default()
},
..Default::default()
};
let mut ret = AllocatedPyByteObject {
base,
storage: [0 as u8; 4096],
};
unsafe {
copy_nonoverlapping(
bytes.as_ptr(),
ret.base.ob_sval.as_mut_ptr() as *mut u8,
bytes.len(),
);
}
ret
}
pub fn to_asciiobject(input: &str) -> AllocatedPyASCIIObject {
let bytes: Vec<u8> = input.bytes().collect();
let mut base = PyASCIIObject {
length: bytes.len() as isize,
..Default::default()
};
base.state.set_compact(1);
base.state.set_kind(1);
base.state.set_ascii(1);
let mut ret = AllocatedPyASCIIObject {
base,
storage: [0 as u8; 4096],
};
unsafe {
let ptr = &mut ret as *mut AllocatedPyASCIIObject as *mut u8;
let dst = ptr.offset(std::mem::size_of::<PyASCIIObject>() as isize);
copy_nonoverlapping(bytes.as_ptr(), dst, bytes.len());
}
ret
}
#[test]
fn test_copy_string() {
let original = "function_name";
let obj = to_asciiobject(original);
let unicode: &PyUnicodeObject = unsafe { std::mem::transmute(&obj.base) };
let copied = copy_string(unicode, &LocalProcess).unwrap();
assert_eq!(copied, original);
}
#[test]
fn test_copy_bytes() {
let original = [10_u8, 20, 30, 40, 50, 70, 80];
let bytes = to_byteobject(&original);
let copied = copy_bytes(&bytes.base, &LocalProcess).unwrap();
assert_eq!(copied, original);
}
}