-
-
Notifications
You must be signed in to change notification settings - Fork 480
Expand file tree
/
Copy pathstacktrace.rs
More file actions
378 lines (342 loc) · 11.4 KB
/
Copy pathstacktrace.rs
File metadata and controls
378 lines (342 loc) · 11.4 KB
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
//! the ``StacktraceObserver`` looks up the stacktrace on the execution thread and computes a hash for it for dedupe
#[cfg(feature = "casr")]
use alloc::string::ToString;
use alloc::{borrow::Cow, string::String, vec::Vec};
use core::fmt::Debug;
#[cfg(feature = "casr")]
use core::hash::{Hash, Hasher};
#[cfg(feature = "casr")]
use std::collections::hash_map::DefaultHasher;
use std::{
fs::{self, File},
io::Read,
path::Path,
process::ChildStderr,
};
use backtrace::Backtrace;
use libafl_bolts::{Named, ownedref::OwnedRefMut, shmem::ShMem};
#[allow(unused_imports)] // expect breaks here for some reason
#[cfg(feature = "casr")]
use libcasr::{
asan::AsanStacktrace,
constants::{
STACK_FRAME_FILEPATH_IGNORE_REGEXES_CPP, STACK_FRAME_FILEPATH_IGNORE_REGEXES_GO,
STACK_FRAME_FILEPATH_IGNORE_REGEXES_JAVA, STACK_FRAME_FILEPATH_IGNORE_REGEXES_PYTHON,
STACK_FRAME_FILEPATH_IGNORE_REGEXES_RUST, STACK_FRAME_FUNCTION_IGNORE_REGEXES_CPP,
STACK_FRAME_FUNCTION_IGNORE_REGEXES_GO, STACK_FRAME_FUNCTION_IGNORE_REGEXES_JAVA,
STACK_FRAME_FUNCTION_IGNORE_REGEXES_PYTHON, STACK_FRAME_FUNCTION_IGNORE_REGEXES_RUST,
},
init_ignored_frames,
stacktrace::{
Filter, ParseStacktrace, STACK_FRAME_FILEPATH_IGNORE_REGEXES,
STACK_FRAME_FUNCTION_IGNORE_REGEXES, Stacktrace, StacktraceEntry,
},
};
#[cfg(not(feature = "casr"))]
use regex::Regex;
use serde::{Deserialize, Serialize};
use super::ObserverWithHashField;
use crate::{Error, executors::ExitKind, observers::Observer};
#[cfg(not(feature = "casr"))]
/// Collects the backtrace via [`Backtrace`] and [`Debug`]
/// ([`Debug`] is currently used for dev purposes, symbols hash will be used eventually)
#[must_use]
pub fn collect_backtrace() -> u64 {
let b = Backtrace::new_unresolved();
if b.frames().is_empty() {
return 0;
}
let mut hash = 0;
for frame in &b.frames()[1..] {
hash ^= frame.ip() as u64;
}
// will use symbols later
// let trace = format!("{:?}", b);
// log::trace!("{}", trace);
// log::info!(
// "backtrace collected with hash={} at pid={}",
// hash,
// std::process::id()
// );
hash
}
#[cfg(feature = "casr")]
/// Collects the backtrace via [`Backtrace`]
#[must_use]
pub fn collect_backtrace() -> u64 {
let mut b = Backtrace::new_unresolved();
if b.frames().is_empty() {
return 0;
}
b.resolve();
let mut strace = Stacktrace::new();
for frame in &b.frames()[1..] {
let mut strace_entry = StacktraceEntry::default();
let symbols = frame.symbols();
if symbols.len() > 1 {
let symbol = &symbols[0];
if let Some(name) = symbol.name() {
strace_entry.function = name.as_str().map_or_else(String::new, str::to_string);
}
if let Some(file) = symbol.filename() {
strace_entry.debug.file = file.to_string_lossy().to_string();
}
strace_entry.debug.line = u64::from(symbol.lineno().unwrap_or(0));
strace_entry.debug.column = u64::from(symbol.colno().unwrap_or(0));
}
strace_entry.address = frame.ip() as u64;
strace.push(strace_entry);
}
strace.filter();
let mut s = DefaultHasher::new();
strace.hash(&mut s);
s.finish()
}
/// An enum encoding the types of harnesses
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq)]
pub enum HarnessType {
/// Harness type when the target is in the same process
InProcess,
/// Harness type when the target is a child process
Child,
/// Harness type with an external component filling the backtrace hash (e.g. `CrashBacktraceCollector` in `libafl_qemu`)
External,
}
/// An observer looking at the backtrace after the harness crashes
#[derive(Serialize, Deserialize, Debug)]
pub struct BacktraceObserver<'a> {
observer_name: Cow<'static, str>,
hash: OwnedRefMut<'a, Option<u64>>,
harness_type: HarnessType,
}
impl<'a> BacktraceObserver<'a> {
#[cfg(not(feature = "casr"))]
/// Creates a new [`BacktraceObserver`] with the given name.
#[must_use]
pub fn new<S>(
observer_name: S,
backtrace_hash: OwnedRefMut<'a, Option<u64>>,
harness_type: HarnessType,
) -> Self
where
S: Into<Cow<'static, str>>,
{
Self {
observer_name: observer_name.into(),
hash: backtrace_hash,
harness_type,
}
}
#[cfg(feature = "casr")]
/// Creates a new [`BacktraceObserver`] with the given name.
#[must_use]
pub fn new<S>(
observer_name: S,
backtrace_hash: OwnedRefMut<'a, Option<u64>>,
harness_type: HarnessType,
) -> Self
where
S: Into<Cow<'static, str>>,
{
init_ignored_frames!("rust", "cpp", "go");
Self {
observer_name: observer_name.into(),
hash: backtrace_hash,
harness_type,
}
}
/// [`BacktraceObserver`], with the `backtrace_hash` pointing to the given [`ShMem`].
///
/// # Panics
/// Panics if the given shared mem is smaller than `sizeof::<u64>()`
///
/// # Safety
/// The shared memory needs to point to a valid u64 hash int.
/// Any use of this [`OwnedRefMut`] will dereference a pointer to the given shared memory accordingly
pub unsafe fn from_shmem<S, SHM: ShMem>(
observer_name: S,
shmem: &mut SHM,
harness_type: HarnessType,
) -> Self
where
S: Into<Cow<'static, str>>,
{
Self::new(
observer_name,
unsafe { OwnedRefMut::from_mut_ptr(shmem.as_mut_ptr_of().unwrap()) },
harness_type,
)
}
/// Creates a new [`BacktraceObserver`] with the given name, owning a new `backtrace_hash` variable.
#[must_use]
pub fn owned<S>(observer_name: S, harness_type: HarnessType) -> Self
where
S: Into<Cow<'static, str>>,
{
Self::new(observer_name, OwnedRefMut::owned(None), harness_type)
}
/// Updates the hash value of this observer.
fn update_hash(&mut self, hash: u64) {
*self.hash.as_mut() = Some(hash);
}
/// Clears the current hash value (sets it to `None`)
fn clear_hash(&mut self) {
*self.hash.as_mut() = None;
}
/// Fill the hash value if the harness type is external
pub fn fill_external(&mut self, hash: u64, exit_kind: &ExitKind) {
if self.harness_type == HarnessType::External {
if *exit_kind == ExitKind::Crash {
self.update_hash(hash);
} else {
self.clear_hash();
}
}
}
}
impl ObserverWithHashField for BacktraceObserver<'_> {
/// Gets the hash value of this observer.
fn hash(&self) -> Option<u64> {
*self.hash.as_ref()
}
}
impl<I, S> Observer<I, S> for BacktraceObserver<'_> {
fn post_exec(&mut self, _state: &mut S, _input: &I, exit_kind: &ExitKind) -> Result<(), Error> {
if self.harness_type == HarnessType::InProcess {
if *exit_kind == ExitKind::Crash {
self.update_hash(collect_backtrace());
} else {
self.clear_hash();
}
}
Ok(())
}
}
impl Named for BacktraceObserver<'_> {
fn name(&self) -> &Cow<'static, str> {
&self.observer_name
}
}
/// static variable of ASAN log path
pub static ASAN_LOG_PATH: &str = "./asanlog"; // TODO make it unique
/// returns the recommended ASAN runtime flags to capture the backtrace correctly with `log_path` set
#[must_use]
pub fn get_asan_runtime_flags_with_log_path() -> String {
let mut flags = get_asan_runtime_flags();
flags.push_str(":log_path=");
flags.push_str(ASAN_LOG_PATH);
flags
}
/// returns the recommended ASAN runtime flags to capture the backtrace correctly
#[must_use]
pub fn get_asan_runtime_flags() -> String {
let flags = [
"exitcode=0",
"abort_on_error=1",
"handle_abort=1",
"handle_segv=1",
"handle_sigbus=1",
"handle_sigill=1",
"handle_sigfpe=1",
];
flags.join(":")
}
/// An observer looking at the backtrace of target command using ASAN output. This observer is only compatible with a `ForkserverExecutor`.
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct AsanBacktraceObserver {
observer_name: Cow<'static, str>,
hash: Option<u64>,
}
impl AsanBacktraceObserver {
#[cfg(not(feature = "casr"))]
/// Creates a new [`BacktraceObserver`] with the given name.
#[must_use]
pub fn new<S>(observer_name: S) -> Self
where
S: Into<Cow<'static, str>>,
{
Self {
observer_name: observer_name.into(),
hash: None,
}
}
#[cfg(feature = "casr")]
/// Creates a new [`BacktraceObserver`] with the given name.
#[must_use]
pub fn new<S>(observer_name: S) -> Self
where
S: Into<Cow<'static, str>>,
{
init_ignored_frames!("rust", "cpp", "go");
Self {
observer_name: observer_name.into(),
hash: None,
}
}
/// read ASAN output from the child stderr and parse it.
pub fn parse_asan_output_from_childstderr(
&mut self,
stderr: &mut ChildStderr,
) -> Result<(), Error> {
let mut buf = Vec::new();
stderr.read_to_end(&mut buf)?;
self.parse_asan_output(&String::from_utf8_lossy(&buf));
Ok(())
}
/// read ASAN output from the log file and parse it.
pub fn parse_asan_output_from_asan_log_file(&mut self, pid: i32) -> Result<(), Error> {
let log_path = format!("{ASAN_LOG_PATH}.{pid}");
let mut asan_output = File::open(Path::new(&log_path))?;
let mut buf = String::new();
asan_output.read_to_string(&mut buf)?;
fs::remove_file(&log_path)?;
self.parse_asan_output(&buf);
Ok(())
}
#[cfg(not(feature = "casr"))]
/// parse ASAN error output emited by the target command and compute the hash
pub fn parse_asan_output(&mut self, output: &str) {
let mut hash = 0;
let matcher = Regex::new("\\s*#[0-9]*\\s0x([0-9a-f]*)\\s.*").unwrap();
matcher.captures_iter(output).for_each(|m| {
let g = m.get(1).unwrap();
hash ^= u64::from_str_radix(g.as_str(), 16).unwrap();
});
self.update_hash(hash);
}
#[cfg(feature = "casr")]
/// parse ASAN error output emited by the target command and compute the hash
pub fn parse_asan_output(&mut self, output: &str) {
let mut hash = 0;
if let Ok(st_vec) = AsanStacktrace::extract_stacktrace(output)
&& let Ok(mut stacktrace) = AsanStacktrace::parse_stacktrace(&st_vec)
{
stacktrace.filter();
let mut s = DefaultHasher::new();
stacktrace.hash(&mut s);
hash = s.finish();
}
self.update_hash(hash);
}
/// Updates the hash value of this observer.
fn update_hash(&mut self, hash: u64) {
self.hash = Some(hash);
}
}
impl ObserverWithHashField for AsanBacktraceObserver {
/// Gets the hash value of this observer.
fn hash(&self) -> Option<u64> {
self.hash
}
}
impl Default for AsanBacktraceObserver {
fn default() -> Self {
Self::new("AsanBacktraceObserver")
}
}
impl<I, S> Observer<I, S> for AsanBacktraceObserver {}
impl Named for AsanBacktraceObserver {
fn name(&self) -> &Cow<'static, str> {
&self.observer_name
}
}