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
use crate::pcapng::blocks::common::opts_from_slice;
use crate::errors::PcapError;
use byteorder::{ByteOrder, ReadBytesExt};
use crate::pcapng::{UnknownOption, CustomUtf8Option, CustomBinaryOption};
use std::borrow::Cow;
use derive_into_owned::IntoOwned;
#[derive(Clone, Debug, IntoOwned)]
pub struct InterfaceStatisticsBlock<'a> {
pub interface_id: u32,
pub timestamp: u64,
pub options: Vec<InterfaceStatisticsOption<'a>>
}
impl<'a> InterfaceStatisticsBlock<'a> {
pub fn from_slice<B:ByteOrder>(mut slice: &'a[u8]) -> Result<(&'a[u8], Self), PcapError> {
if slice.len() < 12 {
return Err(PcapError::InvalidField("InterfaceStatisticsBlock: block length < 12"));
}
let interface_id = slice.read_u32::<B>()? as u32;
let timestamp = slice.read_u64::<B>()?;
let (slice, options) = InterfaceStatisticsOption::from_slice::<B>(slice)?;
let block = InterfaceStatisticsBlock {
interface_id,
timestamp,
options
};
Ok((slice, block))
}
}
#[derive(Clone, Debug, IntoOwned)]
pub enum InterfaceStatisticsOption<'a> {
Comment(Cow<'a, str>),
IsbStartTime(u64),
IsbEndTime(u64),
IsbIfRecv(u64),
IsbIfDrop(u64),
IsbFilterAccept(u64),
IsbOsDrop(u64),
IsbUsrDeliv(u64),
CustomBinary(CustomBinaryOption<'a>),
CustomUtf8(CustomUtf8Option<'a>),
Unknown(UnknownOption<'a>)
}
impl<'a> InterfaceStatisticsOption<'a> {
fn from_slice<B:ByteOrder>(slice: &'a[u8]) -> Result<(&'a [u8], Vec<Self>), PcapError> {
opts_from_slice::<B, _, _>(slice, |mut slice, code, length| {
let opt = match code {
1 => InterfaceStatisticsOption::Comment(Cow::Borrowed(std::str::from_utf8(slice)?)),
2 => InterfaceStatisticsOption::IsbStartTime(slice.read_u64::<B>()?),
3 => InterfaceStatisticsOption::IsbEndTime(slice.read_u64::<B>()?),
4 => InterfaceStatisticsOption::IsbIfRecv(slice.read_u64::<B>()?),
5 => InterfaceStatisticsOption::IsbIfDrop(slice.read_u64::<B>()?),
6 => InterfaceStatisticsOption::IsbFilterAccept(slice.read_u64::<B>()?),
7 => InterfaceStatisticsOption::IsbOsDrop(slice.read_u64::<B>()?),
8 => InterfaceStatisticsOption::IsbUsrDeliv(slice.read_u64::<B>()?),
2988 | 19372 => InterfaceStatisticsOption::CustomUtf8(CustomUtf8Option::from_slice::<B>(code, slice)?),
2989 | 19373 => InterfaceStatisticsOption::CustomBinary(CustomBinaryOption::from_slice::<B>(code, slice)?),
_ => InterfaceStatisticsOption::Unknown(UnknownOption::new(code, length, slice))
};
Ok(opt)
})
}
}