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
pub mod jmp;
mod state;
use crate::Error;
#[derive(Copy, Clone, PartialEq)]
#[repr(i32)]
pub enum Signal {
Abort = libc::SIGABRT,
Bus = libc::SIGBUS,
Fpe = libc::SIGFPE,
Illegal = libc::SIGILL,
Segv = libc::SIGSEGV,
Trap = libc::SIGTRAP,
}
impl Signal {
#[inline]
pub fn ignore(self) {
unsafe {
state::ignore_signal(self);
}
}
}
pub struct CrashHandler;
#[allow(clippy::unused_self)]
impl CrashHandler {
pub fn attach(on_crash: Box<dyn crate::CrashEvent>) -> Result<Self, Error> {
state::attach(on_crash)?;
Ok(Self)
}
#[inline]
pub fn detach(self) {
state::detach();
}
pub fn simulate_signal(&self, signal: Signal) -> crate::CrashEventResult {
unsafe {
let mut siginfo: libc::signalfd_siginfo = std::mem::zeroed();
siginfo.ssi_code = state::SI_USER;
siginfo.ssi_pid = std::process::id();
let mut context = std::mem::zeroed();
crash_context::crash_context_getcontext(&mut context);
let lock = state::HANDLER.lock();
if let Some(handler) = &*lock {
handler.handle_signal(
signal as i32,
&mut *(&mut siginfo as *mut libc::signalfd_siginfo).cast::<libc::siginfo_t>(),
&mut *(&mut context as *mut crash_context::ucontext_t).cast::<libc::c_void>(),
)
} else {
crate::CrashEventResult::Handled(false)
}
}
}
}
impl Drop for CrashHandler {
fn drop(&mut self) {
state::detach();
}
}