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
use netlink_packet_generic::{GenlFamily, GenlHeader};
use netlink_packet_utils::{
nla::Nla, DecodeError, Emitable, ParseableParametrized,
};
use crate::{
coalesce::{parse_coalesce_nlas, EthtoolCoalesceAttr},
feature::{parse_feature_nlas, EthtoolFeatureAttr},
link_mode::{parse_link_mode_nlas, EthtoolLinkModeAttr},
pause::{parse_pause_nlas, EthtoolPauseAttr},
ring::{parse_ring_nlas, EthtoolRingAttr},
EthtoolHeader,
};
const ETHTOOL_MSG_PAUSE_GET: u8 = 21;
const ETHTOOL_MSG_PAUSE_GET_REPLY: u8 = 22;
const ETHTOOL_MSG_FEATURES_GET: u8 = 11;
const ETHTOOL_MSG_FEATURES_GET_REPLY: u8 = 11;
const ETHTOOL_MSG_LINKMODES_GET: u8 = 4;
const ETHTOOL_MSG_LINKMODES_GET_REPLY: u8 = 4;
const ETHTOOL_MSG_RINGS_GET: u8 = 15;
const ETHTOOL_MSG_RINGS_GET_REPLY: u8 = 16;
const ETHTOOL_MSG_COALESCE_GET: u8 = 19;
const ETHTOOL_MSG_COALESCE_GET_REPLY: u8 = 20;
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum EthtoolCmd {
PauseGet,
PauseGetReply,
FeatureGet,
FeatureGetReply,
LinkModeGet,
LinkModeGetReply,
RingGet,
RingGetReply,
CoalesceGet,
CoalesceGetReply,
}
impl From<EthtoolCmd> for u8 {
fn from(cmd: EthtoolCmd) -> Self {
match cmd {
EthtoolCmd::PauseGet => ETHTOOL_MSG_PAUSE_GET,
EthtoolCmd::PauseGetReply => ETHTOOL_MSG_PAUSE_GET_REPLY,
EthtoolCmd::FeatureGet => ETHTOOL_MSG_FEATURES_GET,
EthtoolCmd::FeatureGetReply => ETHTOOL_MSG_FEATURES_GET_REPLY,
EthtoolCmd::LinkModeGet => ETHTOOL_MSG_LINKMODES_GET,
EthtoolCmd::LinkModeGetReply => ETHTOOL_MSG_LINKMODES_GET_REPLY,
EthtoolCmd::RingGet => ETHTOOL_MSG_RINGS_GET,
EthtoolCmd::RingGetReply => ETHTOOL_MSG_RINGS_GET_REPLY,
EthtoolCmd::CoalesceGet => ETHTOOL_MSG_COALESCE_GET,
EthtoolCmd::CoalesceGetReply => ETHTOOL_MSG_COALESCE_GET_REPLY,
}
}
}
#[derive(Debug, PartialEq, Eq, Clone)]
pub enum EthtoolAttr {
Pause(EthtoolPauseAttr),
Feature(EthtoolFeatureAttr),
LinkMode(EthtoolLinkModeAttr),
Ring(EthtoolRingAttr),
Coalesce(EthtoolCoalesceAttr),
}
impl Nla for EthtoolAttr {
fn value_len(&self) -> usize {
match self {
Self::Pause(attr) => attr.value_len(),
Self::Feature(attr) => attr.value_len(),
Self::LinkMode(attr) => attr.value_len(),
Self::Ring(attr) => attr.value_len(),
Self::Coalesce(attr) => attr.value_len(),
}
}
fn kind(&self) -> u16 {
match self {
Self::Pause(attr) => attr.kind(),
Self::Feature(attr) => attr.kind(),
Self::LinkMode(attr) => attr.kind(),
Self::Ring(attr) => attr.kind(),
Self::Coalesce(attr) => attr.kind(),
}
}
fn emit_value(&self, buffer: &mut [u8]) {
match self {
Self::Pause(attr) => attr.emit_value(buffer),
Self::Feature(attr) => attr.emit_value(buffer),
Self::LinkMode(attr) => attr.emit_value(buffer),
Self::Ring(attr) => attr.emit_value(buffer),
Self::Coalesce(attr) => attr.emit_value(buffer),
}
}
}
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct EthtoolMessage {
pub cmd: EthtoolCmd,
pub nlas: Vec<EthtoolAttr>,
}
impl GenlFamily for EthtoolMessage {
fn family_name() -> &'static str {
"ethtool"
}
fn version(&self) -> u8 {
1
}
fn command(&self) -> u8 {
self.cmd.into()
}
}
impl EthtoolMessage {
pub fn new_pause_get(iface_name: Option<&str>) -> Self {
let nlas = match iface_name {
Some(s) => {
vec![EthtoolAttr::Pause(EthtoolPauseAttr::Header(vec![
EthtoolHeader::DevName(s.to_string()),
]))]
}
None => vec![EthtoolAttr::Pause(EthtoolPauseAttr::Header(vec![]))],
};
EthtoolMessage {
cmd: EthtoolCmd::PauseGet,
nlas,
}
}
pub fn new_feature_get(iface_name: Option<&str>) -> Self {
let nlas = match iface_name {
Some(s) => {
vec![EthtoolAttr::Feature(EthtoolFeatureAttr::Header(vec![
EthtoolHeader::DevName(s.to_string()),
]))]
}
None => {
vec![EthtoolAttr::Feature(EthtoolFeatureAttr::Header(vec![]))]
}
};
EthtoolMessage {
cmd: EthtoolCmd::FeatureGet,
nlas,
}
}
pub fn new_link_mode_get(iface_name: Option<&str>) -> Self {
let nlas = match iface_name {
Some(s) => {
vec![EthtoolAttr::LinkMode(EthtoolLinkModeAttr::Header(vec![
EthtoolHeader::DevName(s.to_string()),
]))]
}
None => {
vec![EthtoolAttr::LinkMode(EthtoolLinkModeAttr::Header(vec![]))]
}
};
EthtoolMessage {
cmd: EthtoolCmd::LinkModeGet,
nlas,
}
}
pub fn new_ring_get(iface_name: Option<&str>) -> Self {
let nlas = match iface_name {
Some(s) => vec![EthtoolAttr::Ring(EthtoolRingAttr::Header(vec![
EthtoolHeader::DevName(s.to_string()),
]))],
None => vec![EthtoolAttr::Ring(EthtoolRingAttr::Header(vec![]))],
};
EthtoolMessage {
cmd: EthtoolCmd::RingGet,
nlas,
}
}
pub fn new_coalesce_get(iface_name: Option<&str>) -> Self {
let nlas = match iface_name {
Some(s) => {
vec![EthtoolAttr::Coalesce(EthtoolCoalesceAttr::Header(vec![
EthtoolHeader::DevName(s.to_string()),
]))]
}
None => {
vec![EthtoolAttr::Coalesce(EthtoolCoalesceAttr::Header(vec![]))]
}
};
EthtoolMessage {
cmd: EthtoolCmd::CoalesceGet,
nlas,
}
}
}
impl Emitable for EthtoolMessage {
fn buffer_len(&self) -> usize {
self.nlas.as_slice().buffer_len()
}
fn emit(&self, buffer: &mut [u8]) {
self.nlas.as_slice().emit(buffer)
}
}
impl ParseableParametrized<[u8], GenlHeader> for EthtoolMessage {
fn parse_with_param(
buffer: &[u8],
header: GenlHeader,
) -> Result<Self, DecodeError> {
Ok(match header.cmd {
ETHTOOL_MSG_PAUSE_GET_REPLY => Self {
cmd: EthtoolCmd::PauseGetReply,
nlas: parse_pause_nlas(buffer)?,
},
ETHTOOL_MSG_FEATURES_GET_REPLY => Self {
cmd: EthtoolCmd::FeatureGetReply,
nlas: parse_feature_nlas(buffer)?,
},
ETHTOOL_MSG_LINKMODES_GET_REPLY => Self {
cmd: EthtoolCmd::LinkModeGetReply,
nlas: parse_link_mode_nlas(buffer)?,
},
ETHTOOL_MSG_RINGS_GET_REPLY => Self {
cmd: EthtoolCmd::RingGetReply,
nlas: parse_ring_nlas(buffer)?,
},
ETHTOOL_MSG_COALESCE_GET_REPLY => Self {
cmd: EthtoolCmd::CoalesceGetReply,
nlas: parse_coalesce_nlas(buffer)?,
},
cmd => {
return Err(DecodeError::from(format!(
"Unsupported ethtool reply command: {cmd}"
)))
}
})
}
}