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
pub use crate::options::ParseMode;
/// Parsing Options structure for the PE parser
#[non_exhaustive]
#[derive(Debug, Copy, Clone)]
pub struct ParseOptions {
/// Wether the parser should resolve rvas or not. Default: true
pub resolve_rva: bool,
/// Whether or not to parse attribute certificates.
/// Set to false for in-memory representation, as the [loader does not map this info into
/// memory](https://learn.microsoft.com/en-us/windows/win32/debug/pe-format#other-contents-of-the-file).
/// For on-disk representations, leave as true. Default: true
pub parse_attribute_certificates: bool,
pub parse_tls_data: bool,
/// Whether or not to end with an error in case of incorrect data or continue parsing if able. Default: ParseMode::Strict
pub parse_mode: ParseMode,
}
impl Default for ParseOptions {
/// Returns a parse options structure with default values
fn default() -> Self {
ParseOptions {
resolve_rva: true,
parse_attribute_certificates: true,
parse_tls_data: true,
parse_mode: ParseMode::Strict,
}
}
}
impl ParseOptions {
#[cfg(feature = "te")]
pub(crate) fn te() -> Self {
Self {
resolve_rva: false,
parse_attribute_certificates: false,
parse_tls_data: true,
parse_mode: ParseMode::Strict,
}
}
pub fn with_parse_mode(mut self, parse_mode: ParseMode) -> Self {
self.parse_mode = parse_mode;
self
}
}