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
pub(crate) mod lookup;
pub(crate) mod raw;
pub(crate) mod writer;
use symbolic_common::{AsSelf, DebugId};
use thiserror::Error;
use watto::{align_to, Pod};
const PPDBCACHE_VERSION: u32 = 1;
#[derive(Debug, Clone, Copy, Error)]
#[non_exhaustive]
pub enum CacheErrorKind {
#[error("could not read header")]
InvalidHeader,
#[error("wrong endianness")]
WrongEndianness,
#[error("invalid magic: {0}")]
InvalidMagic(u32),
#[error("wrong version: {0}")]
WrongVersion(u32),
#[error("could not read ranges")]
InvalidRanges,
#[error("could not read source locations")]
InvalidSourceLocations,
#[error("could not read files")]
InvalidFiles,
#[error("expected {expected} string bytes, found {found}")]
UnexpectedStringBytes {
expected: usize,
found: usize,
},
#[error("error processing portable pdb file")]
PortablePdb,
}
#[derive(Debug, Error)]
#[error("{kind}")]
pub struct CacheError {
pub(crate) kind: CacheErrorKind,
#[source]
pub(crate) source: Option<Box<dyn std::error::Error + Send + Sync + 'static>>,
}
impl CacheError {
pub(crate) fn new<E>(kind: CacheErrorKind, source: E) -> Self
where
E: Into<Box<dyn std::error::Error + Send + Sync>>,
{
let source = Some(source.into());
Self { kind, source }
}
pub fn kind(&self) -> CacheErrorKind {
self.kind
}
}
impl From<CacheErrorKind> for CacheError {
fn from(kind: CacheErrorKind) -> Self {
Self { kind, source: None }
}
}
impl From<crate::format::FormatError> for CacheError {
fn from(e: crate::format::FormatError) -> Self {
Self::new(CacheErrorKind::PortablePdb, e)
}
}
#[derive(Clone, PartialEq, Eq)]
pub struct PortablePdbCache<'data> {
header: &'data raw::Header,
files: &'data [raw::File],
source_locations: &'data [raw::SourceLocation],
ranges: &'data [raw::Range],
string_bytes: &'data [u8],
}
impl<'data> PortablePdbCache<'data> {
pub fn parse(buf: &'data [u8]) -> Result<Self, CacheError> {
let (header, rest) =
raw::Header::ref_from_prefix(buf).ok_or(CacheErrorKind::InvalidHeader)?;
if header.magic == raw::PPDBCACHE_MAGIC_FLIPPED {
return Err(CacheErrorKind::WrongEndianness.into());
}
if header.magic != raw::PPDBCACHE_MAGIC {
return Err(CacheErrorKind::InvalidMagic(header.magic).into());
}
if header.version != PPDBCACHE_VERSION {
return Err(CacheErrorKind::WrongVersion(header.version).into());
}
let (_, rest) = align_to(rest, 8).ok_or(CacheErrorKind::InvalidFiles)?;
let (files, rest) = raw::File::slice_from_prefix(rest, header.num_files as usize)
.ok_or(CacheErrorKind::InvalidFiles)?;
let (_, rest) = align_to(rest, 8).ok_or(CacheErrorKind::InvalidSourceLocations)?;
let (source_locations, rest) =
raw::SourceLocation::slice_from_prefix(rest, header.num_ranges as usize)
.ok_or(CacheErrorKind::InvalidSourceLocations)?;
let (_, rest) = align_to(rest, 8).ok_or(CacheErrorKind::InvalidRanges)?;
let (ranges, rest) = raw::Range::slice_from_prefix(rest, header.num_ranges as usize)
.ok_or(CacheErrorKind::InvalidRanges)?;
let (_, rest) = align_to(rest, 8).ok_or(CacheErrorKind::UnexpectedStringBytes {
expected: header.string_bytes as usize,
found: 0,
})?;
if rest.len() < header.string_bytes as usize {
return Err(CacheErrorKind::UnexpectedStringBytes {
expected: header.string_bytes as usize,
found: rest.len(),
}
.into());
}
Ok(Self {
header,
files,
source_locations,
ranges,
string_bytes: rest,
})
}
pub fn debug_id(&self) -> DebugId {
self.header.pdb_id
}
}
impl<'data> std::fmt::Debug for PortablePdbCache<'data> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("PortablePdbCache")
.field("version", &self.header.version)
.field("debug_id", &self.debug_id())
.field("files", &self.header.num_files)
.field("ranges", &self.header.num_ranges)
.field("string_bytes", &self.header.string_bytes)
.finish()
}
}
impl<'slf, 'd: 'slf> AsSelf<'slf> for PortablePdbCache<'d> {
type Ref = PortablePdbCache<'slf>;
fn as_self(&'slf self) -> &Self::Ref {
self
}
}