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
use futures::stream::StreamExt;
use crate::{
packet::{
tc::{self, constants::*},
NetlinkMessage,
RtnlMessage,
TcMessage,
NLM_F_ACK,
NLM_F_REQUEST,
TCM_IFINDEX_MAGIC_BLOCK,
TC_H_MAKE,
},
try_nl,
Error,
Handle,
};
pub struct TrafficFilterNewRequest {
handle: Handle,
message: TcMessage,
flags: u16,
}
impl TrafficFilterNewRequest {
pub(crate) fn new(handle: Handle, ifindex: i32, flags: u16) -> Self {
Self {
handle,
message: TcMessage::with_index(ifindex),
flags: NLM_F_REQUEST | flags,
}
}
pub async fn execute(self) -> Result<(), Error> {
let Self {
mut handle,
message,
flags,
} = self;
let mut req = NetlinkMessage::from(RtnlMessage::NewTrafficFilter(message));
req.header.flags = NLM_F_ACK | flags;
let mut response = handle.request(req)?;
while let Some(message) = response.next().await {
try_nl!(message);
}
Ok(())
}
pub fn index(mut self, index: i32) -> Self {
assert_eq!(self.message.header.index, 0);
self.message.header.index = index;
self
}
pub fn block(mut self, block_index: u32) -> Self {
assert_eq!(self.message.header.index, 0);
self.message.header.index = TCM_IFINDEX_MAGIC_BLOCK as i32;
self.message.header.parent = block_index;
self
}
pub fn parent(mut self, parent: u32) -> Self {
assert_eq!(self.message.header.parent, TC_H_UNSPEC);
self.message.header.parent = parent;
self
}
pub fn root(mut self) -> Self {
assert_eq!(self.message.header.parent, TC_H_UNSPEC);
self.message.header.parent = TC_H_ROOT;
self
}
pub fn ingress(mut self) -> Self {
assert_eq!(self.message.header.parent, TC_H_UNSPEC);
self.message.header.parent = TC_H_MAKE!(TC_H_CLSACT, TC_H_MIN_INGRESS);
self
}
pub fn egress(mut self) -> Self {
assert_eq!(self.message.header.parent, TC_H_UNSPEC);
self.message.header.parent = TC_H_MAKE!(TC_H_CLSACT, TC_H_MIN_EGRESS);
self
}
pub fn priority(mut self, priority: u16) -> Self {
assert_eq!(self.message.header.info & TC_H_MAJ_MASK, 0);
self.message.header.info = TC_H_MAKE!((priority as u32) << 16, self.message.header.info);
self
}
pub fn protocol(mut self, protocol: u16) -> Self {
assert_eq!(self.message.header.info & TC_H_MIN_MASK, 0);
self.message.header.info = TC_H_MAKE!(self.message.header.info, protocol as u32);
self
}
pub fn u32(mut self, data: Vec<tc::u32::Nla>) -> Self {
assert!(!self
.message
.nlas
.iter()
.any(|nla| matches!(nla, tc::Nla::Kind(_))));
self.message
.nlas
.push(tc::Nla::Kind(tc::u32::KIND.to_string()));
self.message.nlas.push(tc::Nla::Options(
data.into_iter().map(tc::TcOpt::U32).collect(),
));
self
}
pub fn redirect(self, dst_index: u32) -> Self {
assert_eq!(self.message.nlas.len(), 0);
let u32_nla = vec![
tc::u32::Nla::Sel(tc::u32::Sel {
flags: TC_U32_TERMINAL,
nkeys: 1,
keys: vec![tc::u32::Key::default()],
..tc::u32::Sel::default()
}),
tc::u32::Nla::Act(vec![tc::Action {
tab: TCA_ACT_TAB,
nlas: vec![
tc::ActNla::Kind(tc::mirred::KIND.to_string()),
tc::ActNla::Options(vec![tc::ActOpt::Mirred(tc::mirred::Nla::Parms(
tc::mirred::TcMirred {
action: TC_ACT_STOLEN,
eaction: TCA_EGRESS_REDIR,
ifindex: dst_index,
..tc::mirred::TcMirred::default()
},
))]),
],
}]),
];
self.u32(u32_nla)
}
}
#[cfg(test)]
mod test {
use std::{fs::File, os::unix::io::AsRawFd, path::Path};
use futures::stream::TryStreamExt;
use nix::sched::{setns, CloneFlags};
use tokio::runtime::Runtime;
use super::*;
use crate::{new_connection, packet::LinkMessage, NetworkNamespace, NETNS_PATH, SELF_NS_PATH};
const TEST_NS: &str = "netlink_test_filter_ns";
const TEST_VETH_1: &str = "test_veth_1";
const TEST_VETH_2: &str = "test_veth_2";
struct Netns {
path: String,
_cur: File,
last: File,
}
impl Netns {
async fn new(path: &str) -> Self {
let last = File::open(Path::new(SELF_NS_PATH)).unwrap();
NetworkNamespace::add(path.to_string()).await.unwrap();
let ns_path = Path::new(NETNS_PATH);
let file = File::open(ns_path.join(path)).unwrap();
setns(file.as_raw_fd(), CloneFlags::CLONE_NEWNET).unwrap();
Self {
path: path.to_string(),
_cur: file,
last,
}
}
}
impl Drop for Netns {
fn drop(&mut self) {
println!("exit ns: {}", self.path);
setns(self.last.as_raw_fd(), CloneFlags::CLONE_NEWNET).unwrap();
let ns_path = Path::new(NETNS_PATH).join(&self.path);
nix::mount::umount2(&ns_path, nix::mount::MntFlags::MNT_DETACH).unwrap();
nix::unistd::unlink(&ns_path).unwrap();
}
}
async fn setup_env() -> (Handle, LinkMessage, LinkMessage, Netns) {
let netns = Netns::new(TEST_NS).await;
let (connection, handle, _) = new_connection().unwrap();
tokio::spawn(connection);
handle
.link()
.add()
.veth(TEST_VETH_1.to_string(), TEST_VETH_2.to_string())
.execute()
.await
.unwrap();
let mut links = handle
.link()
.get()
.match_name(TEST_VETH_1.to_string())
.execute();
let link1 = links.try_next().await.unwrap();
links = handle
.link()
.get()
.match_name(TEST_VETH_2.to_string())
.execute();
let link2 = links.try_next().await.unwrap();
(handle, link1.unwrap(), link2.unwrap(), netns)
}
async fn test_async_new_filter() {
let (handle, test1, test2, _netns) = setup_env().await;
handle
.qdisc()
.add(test1.header.index as i32)
.ingress()
.execute()
.await
.unwrap();
handle
.qdisc()
.add(test2.header.index as i32)
.ingress()
.execute()
.await
.unwrap();
handle
.traffic_filter(test1.header.index as i32)
.add()
.parent(0xffff0000)
.protocol(0x0003)
.redirect(test2.header.index)
.execute()
.await
.unwrap();
let mut filters_iter = handle
.traffic_filter(test1.header.index as i32)
.get()
.root()
.execute();
let mut found = false;
while let Some(nl_msg) = filters_iter.try_next().await.unwrap() {
if nl_msg.header.handle == 0x80000800 {
let mut iter = nl_msg.nlas.iter();
assert_eq!(
iter.next().unwrap(),
&tc::Nla::Kind(String::from(tc::u32::KIND))
);
assert!(matches!(iter.next().unwrap(), &tc::Nla::Chain(_)));
let nla = iter.next().unwrap();
let filter = if let tc::Nla::Options(f) = nla {
f
} else {
panic!("expect options nla");
};
let mut fi = filter.iter();
let fa = fi.next().unwrap();
let ua = if let tc::TcOpt::U32(u) = fa {
u
} else {
panic!("expect u32 nla");
};
let sel = if let tc::u32::Nla::Sel(s) = ua {
s
} else {
panic!("expect sel nla");
};
assert_eq!(sel.flags, TC_U32_TERMINAL);
assert_eq!(sel.nkeys, 1);
assert_eq!(sel.keys.len(), 1);
assert_eq!(sel.keys[0], tc::u32::Key::default());
found = true;
break;
}
}
if !found {
panic!("not found :{} filter.", test1.header.index);
}
}
#[test]
fn test_new_filter() {
Runtime::new().unwrap().block_on(test_async_new_filter());
}
}