-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathddm.rs
743 lines (627 loc) · 22.6 KB
/
ddm.rs
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
use anyhow::{anyhow, Result};
use ddm_admin_client::types::TunnelOrigin;
use ddm_admin_client::Client;
use slog::{Drain, Logger};
use std::env;
use std::net::Ipv6Addr;
use std::thread::sleep;
use std::time::Duration;
use zone::Zlogin;
use ztest::*;
const ZONE_BRAND: &str = "sparse";
struct SoftnpuZone<'a> {
zfs: &'a Zfs,
zone: Zone,
testname: &'a str,
}
impl<'a> SoftnpuZone<'a> {
fn new(
name: &str,
zfs: &'a Zfs,
ifx: &[&'a str],
testname: &'a str,
) -> Result<Self> {
let softnpu_mount = format!("/tmp/softnpu/{}", testname);
std::fs::create_dir_all(&softnpu_mount)?;
let fs = &[FsMount::new(&softnpu_mount, "/opt/mnt")];
let zone = Zone::new(name, ZONE_BRAND, zfs, ifx, fs)?;
Ok(Self {
zfs,
zone,
testname,
})
}
fn setup(&self) -> Result<()> {
self.zone.wait_for_network()?;
self.zfs.copy_workspace_to_zone(
&self.zone.name,
"download/softnpu",
"opt/",
)?;
self.zfs.copy_workspace_to_zone(
&self.zone.name,
"download/scadm",
"opt/",
)?;
self.zfs.copy_workspace_to_zone(
&self.zone.name,
"download/libsidecar_lite.so",
"opt/",
)?;
self.zfs.copy_workspace_to_zone(
&self.zone.name,
&format!("tests/conf/softnpu-{}.toml", self.testname),
"opt/softnpu.toml",
)?;
self.zone.zexec(&format!(
"{} {} {} {} &> {} &",
"RUST_LOG=debug RUST_BACKTRACE=1",
"/opt/softnpu",
"--uds-path /opt/mnt",
"/opt/softnpu.toml",
"/opt/softnpu.log",
))?;
Ok(())
}
}
impl<'a> Drop for SoftnpuZone<'a> {
fn drop(&mut self) {
if let Err(e) = self.zone.zexec("pkill softnpu") {
eprintln!("failed to stop softnpu: {}", e);
}
if let Err(e) = self.zfs.copy_from_zone(
&self.zone.name,
"opt/softnpu.log",
&format!("/work/{}-softnpu.log", self.zone.name),
) {
eprintln!(
"failed to copy zone log file for {}: {}",
self.zone.name, e,
);
}
}
}
struct RouterZone<'a> {
ifx: Vec<&'a str>,
zfs: &'a Zfs,
zone: Zone,
transit: bool,
testname: String,
}
impl<'a> RouterZone<'a> {
fn server(
name: &str,
zfs: &'a Zfs,
mgmt: &'a str,
rtr_ifx: &[&'a str],
) -> Result<Self> {
Self::new(name, zfs, mgmt, rtr_ifx, false, "")
}
fn transit(
name: &str,
zfs: &'a Zfs,
mgmt: &'a str,
rtr_ifx: &[&'a str],
testname: &str,
) -> Result<Self> {
Self::new(name, zfs, mgmt, rtr_ifx, true, testname)
}
fn new(
name: &str,
zfs: &'a Zfs,
mgmt: &'a str,
rtr_ifx: &[&'a str],
transit: bool,
testname: &str,
) -> Result<Self> {
let mut ifx = vec![mgmt];
ifx.extend_from_slice(rtr_ifx);
let fs = if transit {
let softnpu_mount = format!("/tmp/softnpu/{}", testname);
std::fs::create_dir_all(&softnpu_mount)?;
vec![FsMount::new(&softnpu_mount, "/opt/mnt")]
} else {
vec![]
};
let zone = Zone::new(name, ZONE_BRAND, zfs, &ifx, &fs)?;
Ok(Self {
ifx,
zfs,
zone,
transit,
testname: testname.into(),
})
}
fn stop_router(&self) -> Result<String> {
self.zone.zexec("pkill ddmd")
}
fn start_router(&self) -> Result<()> {
let addrs = self.ifx[1..]
.iter()
.map(|x| format!("-a {}/v6", x))
.collect::<Vec<String>>()
.join(" ");
let ddm = "/opt/ddmd";
let extra_args = format!(
"--rack-uuid {} --sled-uuid {}",
uuid::Uuid::new_v4(),
uuid::Uuid::new_v4(),
);
if self.transit {
self.zone.zexec("svcadm enable dendrite")?;
self.zone.zexec(
"svccfg -s dendrite setprop config/address = [::1]:12224",
)?;
self.zone
.zexec("svccfg -s dendrite setprop config/mgmt = uds")?;
self.zone.zexec(
"svccfg -s dendrite setprop config/uds_path = /opt/mnt",
)?;
self.zone.zexec(
"svccfg -s dendrite setprop config/port_config = /opt/dpd-ports.toml")?;
self.zone.zexec(&format!(
"svccfg -s dendrite setprop config/rear_ports = {}",
self.ifx.len() - 1
))?;
self.zone.zexec("svcadm refresh dendrite:default")?;
self.zone.zexec("svcadm restart dendrite:default")?;
// wait for dendrite to come up
println!("wait 10s for dendrite to come up ...");
sleep(Duration::from_secs(10));
self.zone.zexec("svcadm enable tfport")?;
self.zone.zexec(&format!(
"{} {ddm} --kind transit --dendrite {} {} &> /opt/ddmd.log &",
"RUST_LOG=trace RUST_BACKTRACE=1", extra_args, addrs
))?;
self.zone.zexec("ipadm")?;
} else {
self.zone.zexec(&format!(
"{} {ddm} --kind server {} {} &> /opt/ddmd.log &",
"RUST_LOG=trace RUST_BACKTRACE=1", extra_args, addrs
))?;
}
Ok(())
}
fn setup(&self, index: u8) -> Result<()> {
println!("running zone {} setup", self.zone.name);
let z = Zlogin::new(&self.zone.name);
self.zone.wait_for_network()?;
self.zone.zcmd(&z, "dladm")?;
self.zone.zcmd(
&z,
&format!(
"ipadm create-addr -t -T static -a 10.0.0.{}/24 {}/v4",
index, self.ifx[0],
),
)?;
for ifx in &self.ifx[1..] {
self.zone.zcmd(
&z,
&format!("ipadm create-addr -t -T addrconf {}/v6", ifx),
)?;
}
self.zone.zcmd(
&z,
&format!(
"ipadm create-addr -t -T static -a fd00:{}::1/64 lo0/u6",
index,
),
)?;
if self.transit {
self.zfs.copy_workspace_to_zone_recursive(
&self.zone.name,
"download/zones/dendrite/root/opt",
"",
)?;
self.zfs.copy_workspace_to_zone_recursive(
&self.zone.name,
"download/zones/dendrite/root/var",
"",
)?;
self.zfs.copy_workspace_to_zone(
&self.zone.name,
&format!("tests/conf/dpd-ports-{}.toml", self.testname),
"opt/dpd-ports.toml",
)?;
// Wait for these files to show up in the zone. Testing has shown
// that this is not instant and subsequent steps can fail if the
// copy is not complete.
println!("waiting 3s for copy of files to zone to complete ...");
sleep(Duration::from_secs(3));
}
self.zfs.copy_bin_to_zone(&self.zone.name, "ddmd")?;
self.zfs.copy_bin_to_zone(&self.zone.name, "ddmadm")?;
self.start_router()?;
Ok(())
}
}
impl<'a> std::ops::Deref for RouterZone<'a> {
type Target = Zone;
fn deref(&self) -> &Zone {
&self.zone
}
}
impl<'a> Drop for RouterZone<'a> {
fn drop(&mut self) {
if let Err(e) = self.zone.zexec("pkill ddmd") {
eprintln!("failed to stop ddmd: {}", e);
}
if let Err(e) = self.zfs.copy_from_zone(
&self.zone.name,
"opt/ddmd.log",
&format!("/work/{}.log", self.zone.name),
) {
eprintln!(
"failed to copy zone log file for {}: {}",
self.zone.name, e,
);
}
if self.transit {
if let Err(e) = self.zfs.copy_from_zone(
&self.zone.name,
"var/svc/log/system-illumos-dendrite:default.log",
&format!("/work/{}-dpd.log", self.zone.name),
) {
eprintln!(
"failed to copy zone dpd log file for {}: {}",
self.zone.name, e,
);
}
}
}
}
macro_rules! run_topo {
($fn:expr) => {
if env::var("TEST_INTERACTIVE").is_err() {
$fn
} else {
let mut line = String::new();
std::io::stdin().read_line(&mut line).unwrap();
}
};
}
#[tokio::test]
async fn test_trio_v3() -> Result<()> {
test_trio().await
}
async fn test_trio() -> Result<()> {
// A trio. Two server routers and one transit router.
//
// sled1
// ,----------,
// scrimlet sidecar ,-----, ,-----,
// ,-----------, ,-----------------, ,-| sl0 | | mg2 |-*
// | ,-----, ,-----, ,-----, ,-----, | '-----' '-----'
// ,-----, | tf0 |--| sr0 |-| |-| sw0 |-' '----------'
// *-| mg1 | '-----' '-----' |soft | '-----'
// '-----' ,-----, ,-----, | npu| ,-----, sled2
// | | tf1 |--| sr1 |-| |-| sw1 |-, ,----------,
// | '-----' '-----' '-----' '-----' | ,-----, ,-----,
// '-----------' '-----------------' '-| sl1 | | mg3 |-*
// '-----' '-----'
// '----------'
let sl0_sw0 = SimnetLink::new("sl0", "sw0")?;
let sl1_sw1 = SimnetLink::new("sl1", "sw1")?;
let tf0_sr0 = SimnetLink::new("tfportrear0_0", "sr0")?;
let tf1_sr1 = SimnetLink::new("tfportrear1_0", "sr1")?;
let mgmt0 = Etherstub::new("mgmt0")?;
let mg0 = Vnic::new("mg0", &mgmt0.name)?;
let mg1 = Vnic::new("mg1", &mgmt0.name)?;
let mg2 = Vnic::new("mg2", &mgmt0.name)?;
let mg3 = Vnic::new("mg3", &mgmt0.name)?;
let _mgip = Ip::new("10.0.0.254/24", &mg0.name, "test")?;
let zfs = Zfs::new("mgtrio")?;
let sidecar = SoftnpuZone::new(
"sidecar.trio",
&zfs,
&[
&tf0_sr0.end_b,
&tf1_sr1.end_b,
&sl0_sw0.end_b,
&sl1_sw1.end_b,
],
"trio",
)?;
println!("start zone s1");
let s1 = RouterZone::server("s1.trio", &zfs, &mg2.name, &[&sl0_sw0.end_a])?;
println!("start zone s2");
let s2 = RouterZone::server("s2.trio", &zfs, &mg3.name, &[&sl1_sw1.end_a])?;
println!("start zone t1");
let t1 = RouterZone::transit(
"t1.trio",
&zfs,
&mg1.name,
&[&tf0_sr0.end_a, &tf1_sr1.end_a],
"trio",
)?;
println!("waiting for zones to come up");
sleep(Duration::from_secs(10));
sidecar.setup()?;
s1.setup(1)?;
s2.setup(2)?;
t1.setup(3)?;
run_topo!(run_trio_tests(&s1, &s2, &t1).await?);
Ok(())
}
async fn run_trio_tests(
zs1: &RouterZone<'_>,
zs2: &RouterZone<'_>,
zt1: &RouterZone<'_>,
) -> Result<()> {
let log = init_logger();
let s1 = Client::new("http://10.0.0.1:8000", log.clone());
let s2 = Client::new("http://10.0.0.2:8000", log.clone());
let t1 = Client::new("http://10.0.0.3:8000", log.clone());
// If we never get a response from a server, return 99 as a sentinel value.
wait_for_eq!(s1.get_peers().await.map_or(99, |x| x.len()), 1);
wait_for_eq!(s2.get_peers().await.map_or(99, |x| x.len()), 1);
wait_for_eq!(t1.get_peers().await.map_or(99, |x| x.len()), 2);
println!("initial peering test passed");
s1.advertise_prefixes(&vec!["fd00:1::/64".parse().unwrap()])
.await?;
wait_for_eq!(prefix_count(&s1).await?, 0);
wait_for_eq!(prefix_count(&s2).await?, 1);
wait_for_eq!(prefix_count(&t1).await?, 1);
println!("advertise from one passed");
s2.advertise_prefixes(&vec!["fd00:2::/64".parse().unwrap()])
.await?;
wait_for_eq!(prefix_count(&s1).await?, 1);
wait_for_eq!(prefix_count(&s2).await?, 1);
wait_for_eq!(prefix_count(&t1).await?, 2);
println!("advertise from two passed");
zs1.zexec("ping fd00:2::1")?;
zs2.zexec("ping fd00:1::1")?;
println!("connectivity test passed");
zt1.stop_router()?;
wait_for_eq!(prefix_count(&s1).await?, 0);
wait_for_eq!(prefix_count(&s2).await?, 0);
zt1.start_router()?;
wait_for_eq!(prefix_count(&s1).await?, 1);
wait_for_eq!(prefix_count(&s2).await?, 1);
wait_for_eq!(prefix_count(&t1).await.unwrap_or(99), 2);
zs1.zexec("ping fd00:2::1")?;
zs2.zexec("ping fd00:1::1")?;
println!("transit router restart passed");
zs1.stop_router()?;
wait_for_eq!(prefix_count(&s2).await?, 0);
wait_for_eq!(prefix_count(&t1).await?, 1);
zs1.start_router()?;
wait_for_eq!(prefix_count(&s1).await.unwrap_or(99), 1);
wait_for_eq!(prefix_count(&s2).await?, 1);
wait_for_eq!(prefix_count(&t1).await?, 2);
s1.advertise_prefixes(&vec!["fd00:1::/64".parse().unwrap()])
.await?;
wait_for_eq!(prefix_count(&s1).await?, 1);
wait_for_eq!(prefix_count(&s2).await?, 1);
wait_for_eq!(prefix_count(&t1).await?, 2);
zs1.zexec("ping fd00:2::1")?;
zs2.zexec("ping fd00:1::1")?;
println!("server router restart passed");
let peers = t1.get_peers().await?;
let p0: Ipv6Addr = peers
.values()
.next()
.ok_or(anyhow!("expected transit peer"))?
.addr;
t1.expire_peer(&p0).await?;
wait_for_eq!(prefix_count(&s1).await?, 1);
wait_for_eq!(prefix_count(&s2).await?, 1);
wait_for_eq!(prefix_count(&t1).await?, 2);
s2.withdraw_prefixes(&vec!["fd00:2::/64".parse().unwrap()])
.await?;
wait_for_eq!(prefix_count(&s1).await?, 0);
wait_for_eq!(prefix_count(&s2).await?, 1);
wait_for_eq!(prefix_count(&t1).await?, 1);
s2.advertise_prefixes(&vec!["fd00:2::/64".parse().unwrap()])
.await?;
wait_for_eq!(prefix_count(&s1).await?, 1);
wait_for_eq!(prefix_count(&s2).await?, 1);
wait_for_eq!(prefix_count(&t1).await?, 2);
println!("peer expiration recovery passed");
s2.advertise_prefixes(&vec![
"fd00:2::/64".parse().unwrap(),
"fd00:3::/64".parse().unwrap(),
"fd00:4::/64".parse().unwrap(),
])
.await?;
// ensure that when an advertisement with a duplicate route is made, all
// routes make it in the kernel of receivers.
wait_for_eq!(prefix_count(&s1).await?, 3);
let kernel_count = zs1.zexec("netstat -nrf inet6 | grep fd00 | wc -l")?;
assert_eq!(kernel_count, "3");
println!("redundant advertise passed");
wait_for_eq!(tunnel_originated_endpoint_count(&t1).await?, 0);
t1.advertise_tunnel_endpoints(&vec![TunnelOrigin {
overlay_prefix: "203.0.113.0/24".parse().unwrap(),
boundary_addr: "fd00:1701::1".parse().unwrap(),
vni: 47,
metric: 0,
}])
.await?;
wait_for_eq!(tunnel_originated_endpoint_count(&t1).await?, 1);
wait_for_eq!(tunnel_endpoint_count(&t1).await?, 0);
wait_for_eq!(tunnel_endpoint_count(&s1).await?, 1);
wait_for_eq!(tunnel_endpoint_count(&s2).await?, 1);
println!("tunnel endpoint advertise passed");
// redundant advertise should not change things
t1.advertise_tunnel_endpoints(&vec![TunnelOrigin {
overlay_prefix: "203.0.113.0/24".parse().unwrap(),
boundary_addr: "fd00:1701::1".parse().unwrap(),
vni: 47,
metric: 0,
}])
.await?;
sleep(Duration::from_secs(5));
wait_for_eq!(tunnel_originated_endpoint_count(&t1).await?, 1);
wait_for_eq!(tunnel_endpoint_count(&t1).await?, 0);
wait_for_eq!(tunnel_endpoint_count(&s1).await?, 1);
wait_for_eq!(tunnel_endpoint_count(&s2).await?, 1);
println!("redundant tunnel endpoint advertise passed");
zs1.stop_router()?;
sleep(Duration::from_secs(5));
zs1.start_router()?;
sleep(Duration::from_secs(5));
let s1 = Client::new("http://10.0.0.1:8000", log.clone());
wait_for_eq!(tunnel_endpoint_count(&s1).await?, 1);
println!("tunnel router restart passed");
t1.withdraw_tunnel_endpoints(&vec![TunnelOrigin {
overlay_prefix: "203.0.113.0/24".parse().unwrap(),
boundary_addr: "fd00:1701::1".parse().unwrap(),
vni: 47,
metric: 0,
}])
.await?;
wait_for_eq!(tunnel_originated_endpoint_count(&t1).await?, 0);
wait_for_eq!(tunnel_endpoint_count(&t1).await?, 0);
wait_for_eq!(tunnel_endpoint_count(&s1).await?, 0);
wait_for_eq!(tunnel_endpoint_count(&s2).await?, 0);
println!("tunnel endpoint withdraw passed");
Ok(())
}
#[tokio::test]
async fn test_quartet() -> Result<()> {
// A quartet of servers in a star topology.
//
// sled1
// ,----------,
// ,-----, ,-----,
// ,-| sl0 | | mg2 |-*
// scrimlet sidecar | '-----' '-----'
// ,-----------, ,-----------------, | '----------'
// | ,-----, ,-----, ,-----, ,-----, |
// | | tf0 |--| sr0 |-| |-| sw0 |-' sled2
// | '-----' '-----' | | '-----' ,----------,
// ,-----, ,-----, ,-----, |soft | ,-----, ,-----, ,-----,
// *-| mg1 | | tf1 |--| sr1 |-| npu|-| sw1 |---| sl1 | | mg3 |-*
// '-----' '-----' '-----' | | '-----' '-----' '-----'
// | ,-----, ,-----, | | ,-----, '----------'
// | | tf2 |--| sr2 |-| |-| sw2 |-,
// | '-----' '-----' '-----' '-----' | sled3
// '-----------' '-----------------' | ,----------,
// | ,-----, ,-----,
// '-| sl2 | | mg4 |-*
// '-----' '-----'
// '----------'
//
let sl0_sw0 = SimnetLink::new("sl0", "sw0")?;
let sl1_sw1 = SimnetLink::new("sl1", "sw1")?;
let sl2_sw2 = SimnetLink::new("sl2", "sw2")?;
let tf0_sr0 = SimnetLink::new("tfportrear0_0", "sr0")?;
let tf1_sr1 = SimnetLink::new("tfportrear1_0", "sr1")?;
let tf2_sr2 = SimnetLink::new("tfportrear2_0", "sr2")?;
let mgmt0 = Etherstub::new("mgmt0")?;
let mg0 = Vnic::new("mg0", &mgmt0.name)?;
let mgs1 = Vnic::new("mgs1", &mgmt0.name)?;
let mgs2 = Vnic::new("mgs2", &mgmt0.name)?;
let mgs3 = Vnic::new("mgs3", &mgmt0.name)?;
let mgt1 = Vnic::new("mgt1", &mgmt0.name)?;
let _mgip = Ip::new("10.0.0.254/24", &mg0.name, "test")?;
let zfs = Zfs::new("mgtest")?;
let sidecar = SoftnpuZone::new(
"sidecar.quartet",
&zfs,
&[
&tf0_sr0.end_b,
&tf1_sr1.end_b,
&tf2_sr2.end_b,
&sl0_sw0.end_b,
&sl1_sw1.end_b,
&sl2_sw2.end_b,
],
"quartet",
)?;
println!("start zone s1");
let s1 =
RouterZone::server("s1.quartet", &zfs, &mgs1.name, &[&sl0_sw0.end_a])?;
println!("start zone s2");
let s2 =
RouterZone::server("s2.quartet", &zfs, &mgs2.name, &[&sl1_sw1.end_a])?;
println!("start zone s3");
let s3 =
RouterZone::server("s3.quartet", &zfs, &mgs3.name, &[&sl2_sw2.end_a])?;
println!("start zone t1");
let t1 = RouterZone::transit(
"t1.quartet",
&zfs,
&mgt1.name,
&[&tf0_sr0.end_a, &tf1_sr1.end_a, &tf2_sr2.end_a],
"quartet",
)?;
println!("waiting for zones to come up");
sleep(Duration::from_secs(10));
sidecar.setup()?;
s1.setup(1)?;
s2.setup(2)?;
s3.setup(3)?;
t1.setup(4)?;
run_topo!(run_quartet_tests(&s1, &s2, &s3, &t1).await?);
Ok(())
}
async fn run_quartet_tests(
_zs1: &RouterZone<'_>,
_zs2: &RouterZone<'_>,
zs3: &RouterZone<'_>,
_zt1: &RouterZone<'_>,
) -> Result<()> {
let log = init_logger();
let s1 = Client::new("http://10.0.0.1:8000", log.clone());
let s2 = Client::new("http://10.0.0.2:8000", log.clone());
let s3 = Client::new("http://10.0.0.3:8000", log.clone());
let t1 = Client::new("http://10.0.0.4:8000", log.clone());
// If we never get a response from a server, return 99 as a sentinel value.
wait_for_eq!(s1.get_peers().await.map_or(99, |x| x.len()), 1);
wait_for_eq!(s2.get_peers().await.map_or(99, |x| x.len()), 1);
wait_for_eq!(s3.get_peers().await.map_or(99, |x| x.len()), 1);
wait_for_eq!(t1.get_peers().await.map_or(99, |x| x.len()), 3);
println!("initial peering test passed");
s1.advertise_prefixes(&vec!["fd00:1::/64".parse().unwrap()])
.await?;
s3.advertise_prefixes(&vec!["fd00:3::/64".parse().unwrap()])
.await?;
// s1/s3 should now have 1 prefix
wait_for_eq!(prefix_count(&s1).await?, 1);
wait_for_eq!(prefix_count(&s3).await?, 1);
// s3 should be able to ping s1
zs3.zexec("ping fd00:1::1")?;
// s2 hijacks s1's prefix
s2.advertise_prefixes(&vec!["fd00:1::/64".parse().unwrap()])
.await?;
// s3 should now have 2 prefixes
wait_for_eq!(prefix_count(&s3).await?, 2);
s2.withdraw_prefixes(&vec!["fd00:1::/64".parse().unwrap()])
.await?;
// wait for withdraw propagation
sleep(Duration::from_secs(5));
// unhijack
s1.advertise_prefixes(&vec!["fd00:1::/64".parse().unwrap()])
.await?;
sleep(Duration::from_secs(5));
// s3 should still have 1 prefix left
wait_for_eq!(prefix_count(&s3).await?, 1);
// s3 should be able to ping s1 even after s2 withdrew s1's prefix
zs3.zexec("ping fd00:1::1")?;
Ok(())
}
async fn prefix_count(c: &Client) -> Result<usize> {
Ok(c.get_prefixes()
.await?
.values()
.map(|x| x.len())
.sum::<usize>())
}
async fn tunnel_endpoint_count(c: &Client) -> Result<usize> {
Ok(c.get_tunnel_endpoints().await?.len())
}
async fn tunnel_originated_endpoint_count(c: &Client) -> Result<usize> {
Ok(c.get_originated_tunnel_endpoints().await?.len())
}
fn init_logger() -> Logger {
let decorator = slog_term::TermDecorator::new().build();
let drain = slog_term::FullFormat::new(decorator).build().fuse();
let drain = slog_envlogger::new(drain).fuse();
let drain = slog_async::Async::new(drain).build().fuse();
slog::Logger::root(drain, slog::o!())
}