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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
use std::ffi::{CStr, CString};
use std::os::unix::io::RawFd;
use std::ptr;
use nix::{Error as NixError, Result as NixResult};
use smallvec::SmallVec;
const INLINE_ARGS: usize = 4;
#[derive(Copy, Clone, Debug)]
pub struct MessageDesc {
pub name: &'static str,
pub signature: &'static [ArgumentType],
pub since: u32,
pub destructor: bool,
}
#[derive(Copy, Clone, PartialEq, Debug)]
pub enum ArgumentType {
Int,
Uint,
Fixed,
Str,
Object,
NewId,
Array,
Fd,
}
#[derive(Clone, PartialEq, Debug)]
#[allow(clippy::box_collection)]
pub enum Argument {
Int(i32),
Uint(u32),
Fixed(i32),
Str(Box<CString>),
Object(u32),
NewId(u32),
Array(Box<Vec<u8>>),
Fd(RawFd),
}
impl Argument {
pub fn get_type(&self) -> ArgumentType {
match *self {
Argument::Int(_) => ArgumentType::Int,
Argument::Uint(_) => ArgumentType::Uint,
Argument::Fixed(_) => ArgumentType::Fixed,
Argument::Str(_) => ArgumentType::Str,
Argument::Object(_) => ArgumentType::Object,
Argument::NewId(_) => ArgumentType::NewId,
Argument::Array(_) => ArgumentType::Array,
Argument::Fd(_) => ArgumentType::Fd,
}
}
}
impl std::fmt::Display for Argument {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Argument::Int(value) => write!(f, "{}", value),
Argument::Uint(value) => write!(f, "{}", value),
Argument::Fixed(value) => write!(f, "{}", value),
Argument::Str(value) => write!(f, "{:?}", value),
Argument::Object(value) => write!(f, "{}", value),
Argument::NewId(value) => write!(f, "{}", value),
Argument::Array(value) => write!(f, "{:?}", value),
Argument::Fd(value) => write!(f, "{}", value),
}
}
}
#[derive(Debug, Clone, PartialEq)]
pub struct Message {
pub sender_id: u32,
pub opcode: u16,
pub args: SmallVec<[Argument; INLINE_ARGS]>,
}
#[derive(Debug, Clone)]
pub enum MessageWriteError {
BufferTooSmall,
DupFdFailed(::nix::Error),
}
impl std::error::Error for MessageWriteError {}
impl std::fmt::Display for MessageWriteError {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> Result<(), ::std::fmt::Error> {
match *self {
MessageWriteError::BufferTooSmall => {
f.write_str("The provided buffer is too small to hold message content.")
}
MessageWriteError::DupFdFailed(_) => {
f.write_str("The message contains a file descriptor that could not be dup()-ed.")
}
}
}
}
#[derive(Debug, Clone)]
pub enum MessageParseError {
MissingFD,
MissingData,
Malformed,
}
impl std::error::Error for MessageParseError {}
impl std::fmt::Display for MessageParseError {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> Result<(), ::std::fmt::Error> {
match *self {
MessageParseError::MissingFD => {
f.write_str("The message references a FD but the buffer FD is empty.")
}
MessageParseError::MissingData => {
f.write_str("More data is needed to deserialize the message")
}
MessageParseError::Malformed => {
f.write_str("The message is malformed and cannot be parsed")
}
}
}
}
impl Message {
pub fn write_to_buffers(
&self,
payload: &mut [u32],
mut fds: &mut [RawFd],
) -> Result<(usize, usize), MessageWriteError> {
let orig_payload_len = payload.len();
let orig_fds_len = fds.len();
fn write_buf<T>(u: T, payload: &mut [T]) -> Result<&mut [T], MessageWriteError> {
if let Some((head, tail)) = payload.split_first_mut() {
*head = u;
Ok(tail)
} else {
Err(MessageWriteError::BufferTooSmall)
}
}
fn write_array_to_payload<'a>(
array: &[u8],
payload: &'a mut [u32],
) -> Result<&'a mut [u32], MessageWriteError> {
let array_len = array.len();
let word_len = array_len / 4 + if array_len % 4 != 0 { 1 } else { 0 };
if payload.len() < 1 + word_len {
return Err(MessageWriteError::BufferTooSmall);
}
payload[0] = array_len as u32;
let (buffer_slice, rest) = payload[1..].split_at_mut(word_len);
unsafe {
ptr::copy(array.as_ptr(), buffer_slice.as_mut_ptr() as *mut u8, array_len);
}
Ok(rest)
}
let free_size = payload.len();
if free_size < 2 {
return Err(MessageWriteError::BufferTooSmall);
}
let (header, mut payload) = payload.split_at_mut(2);
let mut pending_fds = FdStore::new();
for arg in &self.args {
let old_payload = payload;
match *arg {
Argument::Int(i) => payload = write_buf(i as u32, old_payload)?,
Argument::Uint(u) => payload = write_buf(u, old_payload)?,
Argument::Fixed(f) => payload = write_buf(f as u32, old_payload)?,
Argument::Str(ref s) => {
payload = write_array_to_payload(s.as_bytes_with_nul(), old_payload)?;
}
Argument::Object(o) => payload = write_buf(o, old_payload)?,
Argument::NewId(n) => payload = write_buf(n, old_payload)?,
Argument::Array(ref a) => {
payload = write_array_to_payload(a, old_payload)?;
}
Argument::Fd(fd) => {
let old_fds = fds;
let dup_fd = dup_fd_cloexec(fd).map_err(MessageWriteError::DupFdFailed)?;
pending_fds.push(dup_fd);
fds = write_buf(dup_fd, old_fds)?;
payload = old_payload;
}
}
}
pending_fds.clear();
let wrote_size = (free_size - payload.len()) * 4;
header[0] = self.sender_id;
header[1] = ((wrote_size as u32) << 16) | u32::from(self.opcode);
Ok((orig_payload_len - payload.len(), orig_fds_len - fds.len()))
}
pub fn from_raw<'a, 'b>(
raw: &'a [u32],
signature: &[ArgumentType],
fds: &'b [RawFd],
) -> Result<(Message, &'a [u32], &'b [RawFd]), MessageParseError> {
fn read_array_from_payload(
array_len: usize,
payload: &[u32],
) -> Result<(&[u8], &[u32]), MessageParseError> {
let word_len = array_len / 4 + if array_len % 4 != 0 { 1 } else { 0 };
if word_len > payload.len() {
return Err(MessageParseError::MissingData);
}
let (array_contents, rest) = payload.split_at(word_len);
let array = unsafe {
::std::slice::from_raw_parts(array_contents.as_ptr() as *const u8, array_len)
};
Ok((array, rest))
}
if raw.len() < 2 {
return Err(MessageParseError::MissingData);
}
let sender_id = raw[0];
let word_2 = raw[1];
let opcode = (word_2 & 0x0000_FFFF) as u16;
let len = (word_2 >> 16) as usize / 4;
if len < 2 || len > raw.len() {
return Err(MessageParseError::Malformed);
}
let (mut payload, rest) = raw.split_at(len);
payload = &payload[2..];
let mut fds = fds;
let arguments = signature
.iter()
.map(|argtype| {
if let ArgumentType::Fd = *argtype {
if let Some((&front, tail)) = fds.split_first() {
fds = tail;
Ok(Argument::Fd(front))
} else {
Err(MessageParseError::MissingFD)
}
} else if let Some((&front, mut tail)) = payload.split_first() {
let arg = match *argtype {
ArgumentType::Int => Ok(Argument::Int(front as i32)),
ArgumentType::Uint => Ok(Argument::Uint(front)),
ArgumentType::Fixed => Ok(Argument::Fixed(front as i32)),
ArgumentType::Str => read_array_from_payload(front as usize, tail)
.and_then(|(v, rest)| {
tail = rest;
match CStr::from_bytes_with_nul(v) {
Ok(s) => Ok(Argument::Str(Box::new(s.into()))),
Err(_) => Err(MessageParseError::Malformed),
}
}),
ArgumentType::Object => Ok(Argument::Object(front)),
ArgumentType::NewId => Ok(Argument::NewId(front)),
ArgumentType::Array => {
read_array_from_payload(front as usize, tail).map(|(v, rest)| {
tail = rest;
Argument::Array(Box::new(v.into()))
})
}
ArgumentType::Fd => unreachable!(),
};
payload = tail;
arg
} else {
Err(MessageParseError::MissingData)
}
})
.collect::<Result<SmallVec<_>, MessageParseError>>()?;
let msg = Message { sender_id, opcode, args: arguments };
Ok((msg, rest, fds))
}
}
pub fn dup_fd_cloexec(fd: RawFd) -> NixResult<RawFd> {
use nix::fcntl;
match fcntl::fcntl(fd, fcntl::FcntlArg::F_DUPFD_CLOEXEC(0)) {
Ok(newfd) => Ok(newfd),
Err(NixError::EINVAL) => {
let newfd = fcntl::fcntl(fd, fcntl::FcntlArg::F_DUPFD(0))?;
let flags = fcntl::fcntl(newfd, fcntl::FcntlArg::F_GETFD);
let result = flags
.map(|f| fcntl::FdFlag::from_bits(f).unwrap() | fcntl::FdFlag::FD_CLOEXEC)
.and_then(|f| fcntl::fcntl(newfd, fcntl::FcntlArg::F_SETFD(f)));
match result {
Ok(_) => {
Ok(newfd)
}
Err(e) => {
let _ = ::nix::unistd::close(newfd);
Err(e)
}
}
}
Err(e) => Err(e),
}
}
struct FdStore {
fds: Vec<RawFd>,
}
impl FdStore {
fn new() -> FdStore {
FdStore { fds: Vec::new() }
}
fn push(&mut self, fd: RawFd) {
self.fds.push(fd);
}
fn clear(&mut self) {
self.fds.clear();
}
}
impl Drop for FdStore {
fn drop(&mut self) {
use nix::unistd::close;
for fd in self.fds.drain(..) {
let _ = close(fd);
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use smallvec::smallvec;
#[test]
fn into_from_raw_cycle() {
let mut bytes_buffer = vec![0; 1024];
let mut fd_buffer = vec![0; 10];
let msg = Message {
sender_id: 42,
opcode: 7,
args: smallvec![
Argument::Uint(3),
Argument::Fixed(-89),
Argument::Str(Box::new(CString::new(&b"I like trains!"[..]).unwrap())),
Argument::Array(vec![1, 2, 3, 4, 5, 6, 7, 8, 9].into()),
Argument::Object(88),
Argument::NewId(56),
Argument::Int(-25),
],
};
msg.write_to_buffers(&mut bytes_buffer[..], &mut fd_buffer[..]).unwrap();
let (rebuilt, _, _) = Message::from_raw(
&bytes_buffer[..],
&[
ArgumentType::Uint,
ArgumentType::Fixed,
ArgumentType::Str,
ArgumentType::Array,
ArgumentType::Object,
ArgumentType::NewId,
ArgumentType::Int,
],
&fd_buffer[..],
)
.unwrap();
assert_eq!(rebuilt, msg);
}
}