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
use gimli::{Dwarf, UnitOffset};
use std::ops::Range;
use crate::{GimliReader, MemoryInterface, stack_frame::StackFrameInfo};
use super::{
ColumnType, DebugError, DebugInfo, SourceLocation, VariableLocation, debug_info, extract_file,
unit_info::{ExpressionResult, UnitInfo},
};
pub(crate) type Die = gimli::DebuggingInformationEntry<debug_info::GimliReader, usize>;
/// Reference to a DIE for a function
#[derive(Clone)]
pub(crate) struct FunctionDie<'data> {
/// A reference to the compilation unit this function belongs to.
pub(crate) unit_info: &'data UnitInfo,
/// The DIE (Debugging Information Entry) for the function.
pub(crate) function_die: Die,
/// The optional specification DIE for the function, if it has one, paired with the
/// compilation unit it belongs to.
/// - For regular functions, this applies to the `function_die`.
/// - For inlined functions, this applies to the `abstract_die`.
///
/// The specification DIE will contain separately declared attributes,
/// e.g. for the function name.
/// See DWARF spec, 2.13.2.
///
/// The unit can differ from `unit_info`, because the abstract origin of an inlined
/// function may live in another compilation unit (cross-unit `DW_FORM_ref_addr`).
pub(crate) specification_die: Option<(&'data UnitInfo, Die)>,
/// Only present for inlined functions, where this is a reference
/// to the declaration of the function, paired with the compilation unit it belongs to.
///
/// The unit can differ from `unit_info` (cross-unit `DW_FORM_ref_addr`).
pub(crate) abstract_die: Option<(&'data UnitInfo, Die)>,
/// The address ranges for which this function is valid.
pub(crate) ranges: Vec<Range<u64>>,
}
impl<'a> FunctionDie<'a> {
pub(crate) fn function_ranges(
function_die: &Die,
unit_info: &UnitInfo,
dwarf: &Dwarf<GimliReader>,
) -> Result<Option<Vec<Range<u64>>>, DebugError> {
let (gimli::DW_TAG_subprogram | gimli::DW_TAG_inlined_subroutine) = function_die.tag()
else {
// We only need DIEs for functions, so we can ignore all other DIEs.
return Ok(None);
};
// Validate the function DIE ranges, and confirm this DIE applies to the requested address.
let mut gimli_ranges = dwarf.die_ranges(&unit_info.unit, function_die)?;
let mut die_ranges = Vec::new();
while let Ok(Some(gimli_range)) = gimli_ranges.next() {
if gimli_range.begin == 0 {
// TODO: The DW_AT_subprograms with low_pc == 0 cause overlapping ranges with other 'valid' function dies, and obscures the correct function die.
// We need to understand what those mean, and how to handle them correctly.
return Ok(None);
}
die_ranges.push(gimli_range.begin..gimli_range.end);
}
Ok(Some(die_ranges))
}
/// Create a new function DIE reference.
/// We only return DIE's that are functions, with valid address ranges that represent machine code
/// relevant to the address/program counter specified.
/// Other DIE's will return None, and should be ignored.
pub(crate) fn new(
function_die: Die,
unit_info: &'a UnitInfo,
debug_info: &'a DebugInfo,
address: u64,
) -> Result<Option<Self>, DebugError> {
let is_inlined_function = match function_die.tag() {
gimli::DW_TAG_subprogram => false,
gimli::DW_TAG_inlined_subroutine => true,
_ => {
// We only need DIEs for functions, so we can ignore all other DIEs.
return Ok(None);
}
};
let Some(die_ranges) = Self::function_ranges(&function_die, unit_info, &debug_info.dwarf)?
else {
return Ok(None);
};
if !die_ranges.iter().any(|range| range.contains(&address)) {
return Ok(None);
}
let specification_die;
// For inlined functions, we also need to find the abstract origin.
let abstract_die = if is_inlined_function {
let Some((abstract_unit, abstract_die)) = debug_info
.resolve_die_reference_with_unit_info(
gimli::DW_AT_abstract_origin,
&function_die,
unit_info,
)
else {
tracing::debug!("No abstract origin found for inlined function");
return Ok(None);
};
// The abstract origin may reside in a different compilation unit, referenced via a
// cross-unit `DW_FORM_ref_addr`. Its `DW_AT_specification`, however, is a
// *unit-relative* reference, so it must be resolved against the abstract origin's
// own unit. Resolving it against the concrete unit (`unit_info`) lands on an
// unrelated DIE and yields garbage attributes (e.g. nonsensical inline call_line).
specification_die = debug_info.resolve_die_reference_with_unit_info(
gimli::DW_AT_specification,
&abstract_die,
abstract_unit,
);
Some((abstract_unit, abstract_die))
} else {
specification_die = debug_info.resolve_die_reference_with_unit_info(
gimli::DW_AT_specification,
&function_die,
unit_info,
);
None
};
Ok(Some(Self {
unit_info,
function_die,
specification_die,
abstract_die,
ranges: die_ranges,
}))
}
/// Test whether the given address is contained in the address ranges of this function.
/// Use this, instead of checking for values between `low_pc()` and `high_pc()`, because
/// the address ranges can be disjointed.
pub(crate) fn range_contains(&self, address: u64) -> bool {
self.ranges.iter().any(|range| range.contains(&address))
}
/// Returns the lowest valid address for which this function DIE is valid.
/// Please use `range_contains()` to check whether an address is contained in the range.
pub(crate) fn low_pc(&self) -> Option<u64> {
self.ranges.first().map(|range| range.start)
}
/// Returns the highest valid address for which this function DIE is valid.
/// Please use `range_contains()` to check whether an address is contained in the range.
pub(crate) fn high_pc(&self) -> Option<u64> {
self.ranges.last().map(|range| range.end)
}
/// Returns whether this is an inlined function DIE reference.
pub(crate) fn is_inline(&self) -> bool {
self.abstract_die.is_some()
}
/// Returns the function name described by the die.
pub(crate) fn function_name(&self, debug_info: &super::DebugInfo) -> Option<String> {
let Some(fn_name_attr) = self.attribute(debug_info, gimli::DW_AT_name) else {
tracing::debug!("DW_AT_name attribute not found, unable to retrieve function name");
return None;
};
let value = fn_name_attr.value();
let gimli::AttributeValue::DebugStrRef(fn_name_ref) = value else {
tracing::debug!("Unexpected attribute value for DW_AT_name: {:?}", value);
return None;
};
match debug_info.dwarf.string(fn_name_ref) {
Ok(fn_name_raw) => {
let function_name = String::from_utf8_lossy(&fn_name_raw);
let language = crate::language::from_dwarf(self.unit_info.get_language());
Some(language.format_function_name(function_name.as_ref(), self, debug_info))
}
Err(error) => {
tracing::debug!("No value for DW_AT_name: {:?}: error", error);
None
}
}
}
/// Get the call site of an inlined function.
///
/// If this function is not inlined (`is_inline()` returns false),
/// this function returns `None`.
pub(crate) fn inline_call_location(
&self,
debug_info: &super::DebugInfo,
) -> Option<SourceLocation> {
if !self.is_inline() {
return None;
}
let file_name_attr = self.attribute(debug_info, gimli::DW_AT_call_file)?;
let path = extract_file(debug_info, &self.unit_info.unit, file_name_attr.value())?;
let line = self
.attribute(debug_info, gimli::DW_AT_call_line)
.and_then(|line| line.udata_value());
let column =
self.attribute(debug_info, gimli::DW_AT_call_column)
.map(|column| match column.udata_value() {
None => ColumnType::LeftEdge,
Some(c) => ColumnType::Column(c),
});
let address = self.low_pc();
Some(SourceLocation {
line,
column,
path,
address,
})
}
/// Resolve an attribute by looking through both the specification and die, or abstract specification and die, entries.
pub(crate) fn attribute(
&self,
debug_info: &super::DebugInfo,
attribute_name: gimli::DwAt,
) -> Option<debug_info::GimliAttribute> {
let attribute = collapsed_attribute(
&self.function_die,
self.specification_die.as_ref().map(|(_, die)| die),
attribute_name,
);
if attribute.is_some() {
return attribute.cloned();
}
// For inlined function, the *abstract instance* has to be checked if we cannot find the
// attribute on the *concrete instance*. The abstract instance my also be a reference to a specification.
if let Some((abstract_unit, abstract_die)) = &self.abstract_die {
let inlined_specification_die = debug_info.resolve_die_reference(
gimli::DW_AT_specification,
abstract_die,
abstract_unit,
);
let inline_attribute = collapsed_attribute(
abstract_die,
inlined_specification_die.as_ref(),
attribute_name,
);
if inline_attribute.is_some() {
return inline_attribute.cloned();
}
}
None
}
/// Try to retrieve the frame base for this function
pub fn frame_base(
&self,
debug_info: &super::DebugInfo,
memory: &mut dyn MemoryInterface,
frame_info: StackFrameInfo,
) -> Result<Option<u64>, DebugError> {
match self.unit_info.extract_location(
debug_info,
&self.function_die,
&VariableLocation::Unknown,
memory,
frame_info,
)? {
ExpressionResult::Location(VariableLocation::Address(address)) => Ok(Some(address)),
ExpressionResult::Location(VariableLocation::RegisterValue(value)) => {
Ok(value.try_into().ok())
}
_ => Ok(None),
}
}
/// Returns the parent DIE offset of the function's declaration, together with the unit
/// that offset is relative to.
///
/// The declaration is the specification DIE if present (which may live in a different
/// compilation unit than `unit_info`), otherwise the concrete function DIE.
pub(crate) fn parent_offset(&self) -> Option<(&'a UnitInfo, UnitOffset)> {
let (unit, offset) = match &self.specification_die {
Some((unit, die)) => (*unit, die.offset()),
None => (self.unit_info, self.function_die.offset()),
};
unit.parent_offset(offset).map(|parent| (unit, parent))
}
}
// Try to retrieve the attribute from the specification or the function DIE.
fn collapsed_attribute<'a>(
function_die: &'a Die,
specification_die: Option<&'a Die>,
attribute_name: gimli::DwAt,
) -> Option<&'a debug_info::GimliAttribute> {
specification_die
.as_ref()
.and_then(|specification_die| specification_die.attr(attribute_name))
.or_else(|| function_die.attr(attribute_name))
}