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
use std::env;
use sentry_core::protocol::{DebugImage, SymbolicDebugImage};
use sentry_core::types::{CodeId, DebugId, Uuid};
use findshlibs::{SharedLibrary, SharedLibraryId, TargetSharedLibrary, TARGET_SUPPORTED};
const UUID_SIZE: usize = 16;
fn debug_id_from_build_id(build_id: &[u8]) -> Option<DebugId> {
let mut data = [0u8; UUID_SIZE];
let len = build_id.len().min(UUID_SIZE);
data[0..len].copy_from_slice(&build_id[0..len]);
#[cfg(target_endian = "little")]
{
data[0..4].reverse();
data[4..6].reverse();
data[6..8].reverse();
}
Uuid::from_slice(&data).map(DebugId::from_uuid).ok()
}
pub fn debug_images() -> Vec<DebugImage> {
let mut images = vec![];
if !TARGET_SUPPORTED {
return images;
}
TargetSharedLibrary::each(|shlib| {
let maybe_debug_id = shlib.debug_id().and_then(|id| match id {
SharedLibraryId::Uuid(bytes) => Some(DebugId::from_uuid(Uuid::from_bytes(bytes))),
SharedLibraryId::GnuBuildId(ref id) => debug_id_from_build_id(id),
SharedLibraryId::PdbSignature(guid, age) => DebugId::from_guid_age(&guid, age).ok(),
_ => None,
});
let debug_id = match maybe_debug_id {
Some(debug_id) => debug_id,
None => return,
};
let mut name = shlib.name().to_string_lossy().to_string();
if name.is_empty() {
name = env::current_exe()
.map(|x| x.display().to_string())
.unwrap_or_else(|_| "<main>".to_string());
}
let code_id = shlib.id().map(|id| CodeId::new(format!("{}", id)));
let debug_name = shlib.debug_name().map(|n| n.to_string_lossy().to_string());
let (image_addr, image_vmaddr) = if cfg!(windows) {
(shlib.virtual_memory_bias().0.into(), 0.into())
} else {
(
shlib.actual_load_addr().0.into(),
shlib.stated_load_addr().0.into(),
)
};
images.push(
SymbolicDebugImage {
id: debug_id,
name,
arch: None,
image_addr,
image_size: shlib.len() as u64,
image_vmaddr,
code_id,
debug_file: debug_name,
}
.into(),
);
});
images
}