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
cfg_if::cfg_if! {
if #[cfg(any(target_os = "linux", target_os = "android"))] {
type Stream = uds::UnixSeqpacketConn;
type Listener = uds::nonblocking::UnixSeqpacketListener;
type Connection = uds::nonblocking::UnixSeqpacketConn;
} else if #[cfg(target_os = "windows")] {
mod windows;
type Stream = windows::UnixStream;
type Listener = windows::UnixListener;
type Connection = windows::UnixStream;
cfg_if::cfg_if! {
if #[cfg(target_pointer_width = "32")] {
type ProtoPointer = u32;
} else if #[cfg(target_pointer_width = "64")] {
type ProtoPointer = u64;
}
}
#[derive(scroll::Pwrite, scroll::Pread, scroll::SizeWith)]
struct DumpRequest {
exception_pointers: ProtoPointer,
process_id: u32,
thread_id: u32,
exception_code: i32,
}
} else if #[cfg(target_os = "macos")] {
mod mac;
type Stream = mac::UnixStream;
type Listener = mac::UnixListener;
type Connection = mac::UnixStream;
#[derive(scroll::Pwrite, scroll::Pread, scroll::SizeWith)]
struct DumpRequest {
code: i64,
subcode: i64,
task: u32,
thread: u32,
handler_thread: u32,
kind: i32,
has_exception: u8,
has_subcode: u8,
}
}
}
mod client;
mod server;
pub use client::Client;
pub use server::Server;
const CRASH: u32 = 0;
#[cfg_attr(target_os = "macos", allow(dead_code))]
const CRASH_ACK: u32 = 1;
const PING: u32 = 2;
const PONG: u32 = 3;
const USER: u32 = 4;
pub enum SocketName<'scope> {
Path(&'scope std::path::Path),
#[cfg(any(target_os = "linux", target_os = "android"))]
Abstract(&'scope str),
}
impl<'scope> From<&'scope std::path::Path> for SocketName<'scope> {
fn from(s: &'scope std::path::Path) -> Self {
Self::Path(s)
}
}
impl<'scope> From<&'scope str> for SocketName<'scope> {
fn from(s: &'scope str) -> Self {
cfg_if::cfg_if! {
if #[cfg(any(target_os = "linux", target_os = "android"))] {
Self::Abstract(s)
} else {
Self::Path(std::path::Path::new(s))
}
}
}
}
impl<'scope> From<&'scope String> for SocketName<'scope> {
fn from(s: &'scope String) -> Self {
Self::from(s.as_str())
}
}
#[derive(Copy, Clone)]
#[cfg_attr(test, derive(PartialEq, Eq, Debug))]
#[repr(C)]
pub struct Header {
kind: u32,
size: u32,
}
impl Header {
fn as_bytes(&self) -> &[u8] {
#[allow(unsafe_code)]
unsafe {
let size = std::mem::size_of::<Self>();
let ptr = (self as *const Self).cast();
std::slice::from_raw_parts(ptr, size)
}
}
fn from_bytes(buf: &[u8]) -> Option<Self> {
if buf.len() != std::mem::size_of::<Self>() {
return None;
}
#[allow(unsafe_code)]
unsafe {
Some(*buf.as_ptr().cast::<Self>())
}
}
}
#[cfg(test)]
mod test {
use super::Header;
#[test]
fn header_bytes() {
let expected = Header {
kind: 20,
size: 8 * 1024,
};
let exp_bytes = expected.as_bytes();
let actual = Header::from_bytes(exp_bytes).unwrap();
assert_eq!(expected, actual);
}
}