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
use std::borrow::Cow;
use std::io::{Result as IoResult, Write};
use byteorder_slice::byteorder::WriteBytesExt;
use byteorder_slice::result::ReadSlice;
use byteorder_slice::{BigEndian, ByteOrder, LittleEndian};
use derive_into_owned::IntoOwned;
use super::enhanced_packet::EnhancedPacketBlock;
use super::interface_description::InterfaceDescriptionBlock;
use super::interface_statistics::InterfaceStatisticsBlock;
use super::name_resolution::NameResolutionBlock;
use super::packet::PacketBlock;
use super::section_header::SectionHeaderBlock;
use super::simple_packet::SimplePacketBlock;
use super::systemd_journal_export::SystemdJournalExportBlock;
use super::unknown::UnknownBlock;
use crate::errors::PcapError;
use crate::PcapResult;
pub const SECTION_HEADER_BLOCK: u32 = 0x0A0D0D0A;
pub const INTERFACE_DESCRIPTION_BLOCK: u32 = 0x00000001;
pub const PACKET_BLOCK: u32 = 0x00000002;
pub const SIMPLE_PACKET_BLOCK: u32 = 0x00000003;
pub const NAME_RESOLUTION_BLOCK: u32 = 0x00000004;
pub const INTERFACE_STATISTIC_BLOCK: u32 = 0x00000005;
pub const ENHANCED_PACKET_BLOCK: u32 = 0x00000006;
pub const SYSTEMD_JOURNAL_EXPORT_BLOCK: u32 = 0x00000009;
#[derive(Clone, Debug)]
pub struct RawBlock<'a> {
pub type_: u32,
pub initial_len: u32,
pub body: Cow<'a, [u8]>,
pub trailer_len: u32,
}
impl<'a> RawBlock<'a> {
pub fn from_slice<B: ByteOrder>(mut slice: &'a [u8]) -> Result<(&'a [u8], Self), PcapError> {
if slice.len() < 12 {
return Err(PcapError::IncompleteBuffer);
}
let type_ = slice.read_u32::<B>().unwrap();
if type_ == SECTION_HEADER_BLOCK {
let initial_len = slice.read_u32::<BigEndian>().unwrap();
let mut tmp_slice = slice;
let magic = tmp_slice.read_u32::<BigEndian>().unwrap();
let res = match magic {
0x1A2B3C4D => inner_parse::<BigEndian>(slice, type_, initial_len),
0x4D3C2B1A => inner_parse::<LittleEndian>(slice, type_, initial_len.swap_bytes()),
_ => Err(PcapError::InvalidField("SectionHeaderBlock: invalid magic number")),
};
return res;
}
else {
let initial_len = slice.read_u32::<B>().map_err(|_| PcapError::IncompleteBuffer)?;
return inner_parse::<B>(slice, type_, initial_len);
};
fn inner_parse<B: ByteOrder>(slice: &[u8], type_: u32, initial_len: u32) -> Result<(&[u8], RawBlock<'_>), PcapError> {
if (initial_len % 4) != 0 {
return Err(PcapError::InvalidField("Block: (initial_len % 4) != 0"));
}
if initial_len < 12 {
return Err(PcapError::InvalidField("Block: initial_len < 12"));
}
if slice.len() < initial_len as usize - 8 {
return Err(PcapError::IncompleteBuffer);
}
let body_len = initial_len - 12;
let body = &slice[..body_len as usize];
let mut rem = &slice[body_len as usize..];
let trailer_len = rem.read_u32::<B>().unwrap();
if initial_len != trailer_len {
return Err(PcapError::InvalidField("Block: initial_length != trailer_length"));
}
let block = RawBlock { type_, initial_len, body: Cow::Borrowed(body), trailer_len };
Ok((rem, block))
}
}
pub fn write_to<B: ByteOrder, W: Write>(&self, writer: &mut W) -> IoResult<usize> {
writer.write_u32::<B>(self.type_)?;
writer.write_u32::<B>(self.initial_len)?;
writer.write_all(&self.body[..])?;
writer.write_u32::<B>(self.trailer_len)?;
Ok(self.body.len() + 6)
}
pub fn try_into_block<B: ByteOrder>(self) -> PcapResult<Block<'a>> {
Block::try_from_raw_block::<B>(self)
}
}
#[derive(Clone, Debug, IntoOwned, Eq, PartialEq)]
pub enum Block<'a> {
SectionHeader(SectionHeaderBlock<'a>),
InterfaceDescription(InterfaceDescriptionBlock<'a>),
Packet(PacketBlock<'a>),
SimplePacket(SimplePacketBlock<'a>),
NameResolution(NameResolutionBlock<'a>),
InterfaceStatistics(InterfaceStatisticsBlock<'a>),
EnhancedPacket(EnhancedPacketBlock<'a>),
SystemdJournalExport(SystemdJournalExportBlock<'a>),
Unknown(UnknownBlock<'a>),
}
impl<'a> Block<'a> {
pub fn from_slice<B: ByteOrder>(slice: &'a [u8]) -> Result<(&'a [u8], Self), PcapError> {
let (rem, raw_block) = RawBlock::from_slice::<B>(slice)?;
let block = Self::try_from_raw_block::<B>(raw_block)?;
Ok((rem, block))
}
pub fn write_to<B: ByteOrder, W: Write>(&self, writer: &mut W) -> IoResult<usize> {
return match self {
Self::SectionHeader(b) => inner_write_to::<B, _, W>(b, SECTION_HEADER_BLOCK, writer),
Self::InterfaceDescription(b) => inner_write_to::<B, _, W>(b, INTERFACE_DESCRIPTION_BLOCK, writer),
Self::Packet(b) => inner_write_to::<B, _, W>(b, PACKET_BLOCK, writer),
Self::SimplePacket(b) => inner_write_to::<B, _, W>(b, SIMPLE_PACKET_BLOCK, writer),
Self::NameResolution(b) => inner_write_to::<B, _, W>(b, NAME_RESOLUTION_BLOCK, writer),
Self::InterfaceStatistics(b) => inner_write_to::<B, _, W>(b, INTERFACE_STATISTIC_BLOCK, writer),
Self::EnhancedPacket(b) => inner_write_to::<B, _, W>(b, ENHANCED_PACKET_BLOCK, writer),
Self::SystemdJournalExport(b) => inner_write_to::<B, _, W>(b, SYSTEMD_JOURNAL_EXPORT_BLOCK, writer),
Self::Unknown(b) => inner_write_to::<B, _, W>(b, b.type_, writer),
};
fn inner_write_to<'a, B: ByteOrder, BL: PcapNgBlock<'a>, W: Write>(block: &BL, block_code: u32, writer: &mut W) -> IoResult<usize> {
let data_len = block.write_to::<B, _>(&mut std::io::sink()).unwrap();
let pad_len = (4 - (data_len % 4)) % 4;
let block_len = data_len + pad_len + 12;
writer.write_u32::<B>(block_code)?;
writer.write_u32::<B>(block_len as u32)?;
block.write_to::<B, _>(writer)?;
writer.write_all(&[0_u8; 3][..pad_len])?;
writer.write_u32::<B>(block_len as u32)?;
Ok(block_len)
}
}
pub fn try_from_raw_block<B: ByteOrder>(raw_block: RawBlock<'a>) -> Result<Block<'a>, PcapError> {
let body = match raw_block.body {
Cow::Borrowed(b) => b,
_ => panic!("The raw block is not borrowed"),
};
match raw_block.type_ {
SECTION_HEADER_BLOCK => {
let (_, block) = SectionHeaderBlock::from_slice::<BigEndian>(body)?;
Ok(Block::SectionHeader(block))
},
INTERFACE_DESCRIPTION_BLOCK => {
let (_, block) = InterfaceDescriptionBlock::from_slice::<B>(body)?;
Ok(Block::InterfaceDescription(block))
},
PACKET_BLOCK => {
let (_, block) = PacketBlock::from_slice::<B>(body)?;
Ok(Block::Packet(block))
},
SIMPLE_PACKET_BLOCK => {
let (_, block) = SimplePacketBlock::from_slice::<B>(body)?;
Ok(Block::SimplePacket(block))
},
NAME_RESOLUTION_BLOCK => {
let (_, block) = NameResolutionBlock::from_slice::<B>(body)?;
Ok(Block::NameResolution(block))
},
INTERFACE_STATISTIC_BLOCK => {
let (_, block) = InterfaceStatisticsBlock::from_slice::<B>(body)?;
Ok(Block::InterfaceStatistics(block))
},
ENHANCED_PACKET_BLOCK => {
let (_, block) = EnhancedPacketBlock::from_slice::<B>(body)?;
Ok(Block::EnhancedPacket(block))
},
SYSTEMD_JOURNAL_EXPORT_BLOCK => {
let (_, block) = SystemdJournalExportBlock::from_slice::<B>(body)?;
Ok(Block::SystemdJournalExport(block))
},
type_ => Ok(Block::Unknown(UnknownBlock::new(type_, raw_block.initial_len, body))),
}
}
pub fn into_enhanced_packet(self) -> Option<EnhancedPacketBlock<'a>> {
match self {
Block::EnhancedPacket(a) => Some(a),
_ => None,
}
}
pub fn into_interface_description(self) -> Option<InterfaceDescriptionBlock<'a>> {
match self {
Block::InterfaceDescription(a) => Some(a),
_ => None,
}
}
pub fn into_interface_statistics(self) -> Option<InterfaceStatisticsBlock<'a>> {
match self {
Block::InterfaceStatistics(a) => Some(a),
_ => None,
}
}
pub fn into_name_resolution(self) -> Option<NameResolutionBlock<'a>> {
match self {
Block::NameResolution(a) => Some(a),
_ => None,
}
}
pub fn into_packet(self) -> Option<PacketBlock<'a>> {
match self {
Block::Packet(a) => Some(a),
_ => None,
}
}
pub fn into_section_header(self) -> Option<SectionHeaderBlock<'a>> {
match self {
Block::SectionHeader(a) => Some(a),
_ => None,
}
}
pub fn into_simple_packet(self) -> Option<SimplePacketBlock<'a>> {
match self {
Block::SimplePacket(a) => Some(a),
_ => None,
}
}
pub fn into_systemd_journal_export(self) -> Option<SystemdJournalExportBlock<'a>> {
match self {
Block::SystemdJournalExport(a) => Some(a),
_ => None,
}
}
}
pub trait PcapNgBlock<'a> {
fn from_slice<B: ByteOrder>(slice: &'a [u8]) -> Result<(&[u8], Self), PcapError>
where
Self: std::marker::Sized;
fn write_to<B: ByteOrder, W: Write>(&self, writer: &mut W) -> IoResult<usize>;
fn into_block(self) -> Block<'a>;
}