sn-testnet-deploy 0.7.0

Tool for creating Autonomi networks
Documentation
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
// Copyright (c) 2023, MaidSafe.
// All rights reserved.
//
// This SAFE Network Software is licensed under the BSD-3-Clause license.
// Please see the LICENSE file for more details.

use crate::{
    ansible::provisioning::PrivateNodeProvisionInventory,
    error::{Error, Result},
    inventory::VirtualMachine,
    run_external_command,
};
use log::debug;
use std::{
    collections::HashMap,
    net::IpAddr,
    path::PathBuf,
    sync::{Arc, RwLock},
};

#[derive(Clone, Debug)]
pub struct RoutedVms {
    full_cone_private_node_nat_gateway_ip_map: HashMap<VirtualMachine, IpAddr>,
    port_restricted_cone_private_node_nat_gateway_ip_map: HashMap<VirtualMachine, IpAddr>,
    symmetric_private_node_nat_gateway_ip_map: HashMap<VirtualMachine, IpAddr>,
}

impl RoutedVms {
    pub fn find_symmetric_nat_routed_node(
        &self,
        ip_address: &IpAddr,
    ) -> Option<(&VirtualMachine, &IpAddr)> {
        debug!("Check if {ip_address} is a symmetric NAT routed node...");
        self.symmetric_private_node_nat_gateway_ip_map
            .iter()
            .find_map(|(private_vm, gateway_ip)| {
                if &private_vm.public_ip_addr == ip_address {
                    Some((private_vm, gateway_ip))
                } else {
                    None
                }
            })
            .inspect(|op| {
                debug!("Found symmetric NAT routed node: {op:?}");
            })
    }

    pub fn find_full_cone_nat_routed_node(
        &self,
        ip_address: &IpAddr,
    ) -> Option<(&VirtualMachine, &IpAddr)> {
        debug!("Check if {ip_address} is a full cone NAT routed node...");
        self.full_cone_private_node_nat_gateway_ip_map
            .iter()
            .find_map(|(private_vm, gateway_ip)| {
                if &private_vm.public_ip_addr == ip_address {
                    Some((private_vm, gateway_ip))
                } else {
                    None
                }
            })
            .inspect(|op| {
                debug!("Found full cone NAT routed node: {op:?}");
            })
    }

    pub fn find_port_restricted_cone_nat_routed_node(
        &self,
        ip_address: &IpAddr,
    ) -> Option<(&VirtualMachine, &IpAddr)> {
        debug!("Check if {ip_address} is a port restricted cone NAT routed node...");
        self.port_restricted_cone_private_node_nat_gateway_ip_map
            .iter()
            .find_map(|(private_vm, gateway_ip)| {
                if &private_vm.public_ip_addr == ip_address {
                    Some((private_vm, gateway_ip))
                } else {
                    None
                }
            })
            .inspect(|op| {
                debug!("Found port restricted cone NAT routed node: {op:?}");
            })
    }
}

#[derive(Clone)]
pub struct SshClient {
    pub private_key_path: PathBuf,
    /// The list of VMs that are routed through a gateway.
    pub routed_vms: Arc<RwLock<Option<RoutedVms>>>,
}
impl SshClient {
    pub fn new(private_key_path: PathBuf) -> SshClient {
        SshClient {
            private_key_path,
            routed_vms: Arc::new(RwLock::new(None)),
        }
    }

    /// Set the list of VMs that are routed through a Full Cone NAT Gateway.
    /// This updates all the copies of the `SshClient` that have been cloned.
    pub fn set_full_cone_nat_routed_vms(
        &self,
        private_node_vms: &[VirtualMachine],
        nat_gateway_vms: &[VirtualMachine],
    ) -> Result<()> {
        let private_node_nat_gateway_map =
            PrivateNodeProvisionInventory::match_private_node_vm_and_gateway_vm(
                private_node_vms,
                nat_gateway_vms,
            )?;
        let full_cone_private_node_nat_gateway_ip_map = private_node_nat_gateway_map
            .into_iter()
            .map(|(private_node_vm, nat_gateway_vm)| {
                (private_node_vm, nat_gateway_vm.public_ip_addr)
            })
            .collect::<HashMap<_, _>>();
        let mut write_access = self.routed_vms.write().map_err(|err| {
            log::error!("Failed to set routed VMs: {err}");
            Error::SshSettingsRwLockError
        })?;

        debug!("Full Cone Private Routed VMs have been set to: {full_cone_private_node_nat_gateway_ip_map:?}");
        match write_access.as_mut() {
            Some(routed_vms) => {
                routed_vms.full_cone_private_node_nat_gateway_ip_map =
                    full_cone_private_node_nat_gateway_ip_map;
            }
            None => {
                *write_access = Some(RoutedVms {
                    full_cone_private_node_nat_gateway_ip_map,
                    port_restricted_cone_private_node_nat_gateway_ip_map: HashMap::new(),
                    symmetric_private_node_nat_gateway_ip_map: HashMap::new(),
                });
            }
        }

        Ok(())
    }

    /// Set the list of VMs that are routed through a Port Restricted Cone NAT Gateway.
    /// This updates all the copies of the `SshClient` that have been cloned.
    pub fn set_port_restricted_cone_nat_routed_vms(
        &self,
        private_node_vms: &[VirtualMachine],
        nat_gateway_vms: &[VirtualMachine],
    ) -> Result<()> {
        let private_node_nat_gateway_map =
            PrivateNodeProvisionInventory::match_private_node_vm_and_gateway_vm(
                private_node_vms,
                nat_gateway_vms,
            )?;
        let port_restricted_cone_private_node_nat_gateway_ip_map = private_node_nat_gateway_map
            .into_iter()
            .map(|(private_node_vm, nat_gateway_vm)| {
                (private_node_vm, nat_gateway_vm.public_ip_addr)
            })
            .collect::<HashMap<_, _>>();
        let mut write_access = self.routed_vms.write().map_err(|err| {
            log::error!("Failed to set routed VMs: {err}");
            Error::SshSettingsRwLockError
        })?;

        debug!("Port Restricted Cone Private node Routed VMs have been set to: {port_restricted_cone_private_node_nat_gateway_ip_map:?}");

        match write_access.as_mut() {
            Some(routed_vms) => {
                routed_vms.port_restricted_cone_private_node_nat_gateway_ip_map =
                    port_restricted_cone_private_node_nat_gateway_ip_map;
            }
            None => {
                *write_access = Some(RoutedVms {
                    full_cone_private_node_nat_gateway_ip_map: HashMap::new(),
                    port_restricted_cone_private_node_nat_gateway_ip_map,
                    symmetric_private_node_nat_gateway_ip_map: HashMap::new(),
                });
            }
        }

        Ok(())
    }

    /// Set the list of VMs that are routed through a Symmetric NAT Gateway.
    /// This updates all the copies of the `SshClient` that have been cloned.
    pub fn set_symmetric_nat_routed_vms(
        &self,
        private_node_vms: &[VirtualMachine],
        nat_gateway_vms: &[VirtualMachine],
    ) -> Result<()> {
        let private_node_nat_gateway_map =
            PrivateNodeProvisionInventory::match_private_node_vm_and_gateway_vm(
                private_node_vms,
                nat_gateway_vms,
            )?;
        let symmetric_private_node_nat_gateway_ip_map = private_node_nat_gateway_map
            .into_iter()
            .map(|(private_node_vm, nat_gateway_vm)| {
                (private_node_vm, nat_gateway_vm.public_ip_addr)
            })
            .collect::<HashMap<_, _>>();
        let mut write_access = self.routed_vms.write().map_err(|err| {
            log::error!("Failed to set routed VMs: {err}");
            Error::SshSettingsRwLockError
        })?;
        debug!("Symmetric Private node Routed VMs have been set to: {symmetric_private_node_nat_gateway_ip_map:?}");

        match write_access.as_mut() {
            Some(routed_vms) => {
                routed_vms.symmetric_private_node_nat_gateway_ip_map =
                    symmetric_private_node_nat_gateway_ip_map;
            }
            None => {
                *write_access = Some(RoutedVms {
                    full_cone_private_node_nat_gateway_ip_map: HashMap::new(),
                    port_restricted_cone_private_node_nat_gateway_ip_map: HashMap::new(),
                    symmetric_private_node_nat_gateway_ip_map,
                });
            }
        }

        Ok(())
    }

    pub fn get_private_key_path(&self) -> PathBuf {
        self.private_key_path.clone()
    }

    pub fn wait_for_ssh_availability(&self, ip_address: &IpAddr, user: &str) -> Result<()> {
        let mut args = vec![
            "-i".to_string(),
            self.private_key_path.to_string_lossy().to_string(),
            "-q".to_string(),
            "-o".to_string(),
            "BatchMode=yes".to_string(),
            "-o".to_string(),
            "ConnectTimeout=5".to_string(),
            "-o".to_string(),
            "StrictHostKeyChecking=no".to_string(),
        ];
        let routed_vm_read = self.routed_vms.read().map_err(|err| {
            log::error!("Failed to read routed VMs: {err}");
            Error::SshSettingsRwLockError
        })?;
        if let Some((vm, gateway_ip)) = routed_vm_read
            .as_ref()
            .and_then(|routed_vms| routed_vms.find_symmetric_nat_routed_node(ip_address))
        {
            println!(
                "Checking for SSH availability at {} ({ip_address}) via symmetric NAT gateway {gateway_ip}...",
                vm.private_ip_addr
            );
            debug!(
                "Checking for SSH availability at {} ({ip_address}) via symmetric NAT gateway {gateway_ip}...",
                vm.private_ip_addr
            );
            args.push("-o".to_string());
            args.push(format!(
                "ProxyCommand=ssh -i {} -W %h:%p {}@{}",
                self.private_key_path.to_string_lossy(),
                user,
                gateway_ip
            ));
            args.push(format!("{user}@{}", vm.private_ip_addr));
        } else if let Some((vm, gateway_ip)) = routed_vm_read
            .as_ref()
            .and_then(|routed_vms| routed_vms.find_full_cone_nat_routed_node(ip_address))
        {
            println!(
                "Checking for SSH availability at {} ({ip_address}) via Full Cone NAT gateway {gateway_ip}...",
                vm.private_ip_addr,
            );
            debug!(
                "Checking for SSH availability at {} ({ip_address}) via Full Cone NAT gateway {gateway_ip}...",
                vm.private_ip_addr,
            );
            args.push(format!("{user}@{gateway_ip}"));
        } else if let Some((vm, gateway_ip)) = routed_vm_read
            .as_ref()
            .and_then(|routed_vms| routed_vms.find_port_restricted_cone_nat_routed_node(ip_address))
        {
            println!(
                "Checking for SSH availability at {} ({ip_address}) via Port Restricted Cone NAT gateway {gateway_ip}...",
                vm.private_ip_addr,
            );
            debug!(
                "Checking for SSH availability at {} ({ip_address}) via Port Restricted Cone NAT gateway {gateway_ip}...",
                vm.private_ip_addr,
            );
            args.push(format!("{user}@{gateway_ip}"));
        } else {
            println!("Checking for SSH availability at {ip_address}...");
            args.push(format!("{user}@{ip_address}"));
        }
        args.push("bash".to_string());
        args.push("--version".to_string());

        let mut retries = 0;
        let max_retries = 10;
        while retries < max_retries {
            let result = run_external_command(
                PathBuf::from("ssh"),
                std::env::current_dir()?,
                args.clone(),
                false,
                false,
            );
            if result.is_ok() {
                println!("SSH is available.");
                return Ok(());
            } else {
                retries += 1;
                println!("SSH is still unavailable after {retries} attempts.");
                println!("Will sleep for 5 seconds then retry.");
                std::thread::sleep(std::time::Duration::from_secs(5));
            }
        }

        println!("The maximum number of connection retry attempts has been exceeded.");
        Err(Error::SshUnavailable)
    }

    pub fn run_command(
        &self,
        ip_address: &IpAddr,
        user: &str,
        command: &str,
        suppress_output: bool,
    ) -> Result<Vec<String>> {
        let command_args: Vec<String> = command.split_whitespace().map(String::from).collect();
        let mut args = vec![
            "-i".to_string(),
            self.private_key_path.to_string_lossy().to_string(),
            "-q".to_string(),
            "-o".to_string(),
            "BatchMode=yes".to_string(),
            "-o".to_string(),
            "ConnectTimeout=30".to_string(),
            "-o".to_string(),
            "StrictHostKeyChecking=no".to_string(),
        ];
        let routed_vm_read = self.routed_vms.read().map_err(|err| {
            log::error!("Failed to read routed VMs: {err}");
            Error::SshSettingsRwLockError
        })?;

        if let Some((vm, gateway)) = routed_vm_read
            .as_ref()
            .and_then(|routed_vms| routed_vms.find_symmetric_nat_routed_node(ip_address))
        {
            debug!(
                "Running command '{}' on {} ({ip_address}) via symmetric NAT gateway {gateway}...",
                command, vm.private_ip_addr
            );
            args.push("-o".to_string());
            args.push(format!(
                "ProxyCommand=ssh -i {} -W %h:%p {user}@{gateway}",
                self.private_key_path.to_string_lossy(),
            ));
            args.push(format!("{user}@{}", vm.private_ip_addr));
        } else if let Some((vm, gateway)) = routed_vm_read
            .as_ref()
            .and_then(|routed_vms| routed_vms.find_full_cone_nat_routed_node(ip_address))
        {
            debug!(
                "Running command '{}' on {} ({ip_address}) via full cone NAT gateway {gateway}...",
                command, vm.private_ip_addr
            );
            args.push(format!("{user}@{gateway}"));
        } else if let Some((vm, gateway)) = routed_vm_read
            .as_ref()
            .and_then(|routed_vms| routed_vms.find_port_restricted_cone_nat_routed_node(ip_address))
        {
            debug!(
                "Running command '{}' on {} ({ip_address}) via port restricted cone NAT gateway {gateway}...",
                command, vm.private_ip_addr
            );
            args.push(format!("{user}@{gateway}"));
        } else {
            debug!("Running command '{command}' on {user}@{ip_address}...");
            args.push(format!("{user}@{ip_address}"));
        }
        args.extend(command_args);

        let output = run_external_command(
            PathBuf::from("ssh"),
            std::env::current_dir()?,
            args,
            suppress_output,
            false,
        )?;
        Ok(output)
    }

    pub fn run_script(
        &self,
        ip_address: IpAddr,
        user: &str,
        script: PathBuf,
        suppress_output: bool,
    ) -> Result<Vec<String>> {
        let file_name = script
            .file_name()
            .ok_or_else(|| {
                Error::SshCommandFailed("Could not obtain file name from script path".to_string())
            })?
            .to_string_lossy()
            .to_string();
        let args = vec![
            "-i".to_string(),
            self.private_key_path.to_string_lossy().to_string(),
            "-q".to_string(),
            "-o".to_string(),
            "BatchMode=yes".to_string(),
            "-o".to_string(),
            "ConnectTimeout=30".to_string(),
            "-o".to_string(),
            "StrictHostKeyChecking=no".to_string(),
            script.to_string_lossy().to_string(),
            format!("{}@{}:/tmp/{}", user, ip_address, file_name),
        ];
        run_external_command(
            PathBuf::from("scp"),
            std::env::current_dir()?,
            args,
            suppress_output,
            false,
        )
        .map_err(|e| {
            Error::SshCommandFailed(format!(
                "Failed to copy script file to remote host {ip_address:?}: {e}"
            ))
        })?;

        let args = vec![
            "-i".to_string(),
            self.private_key_path.to_string_lossy().to_string(),
            "-q".to_string(),
            "-o".to_string(),
            "BatchMode=yes".to_string(),
            "-o".to_string(),
            "ConnectTimeout=30".to_string(),
            "-o".to_string(),
            "StrictHostKeyChecking=no".to_string(),
            format!("{user}@{ip_address}"),
            "bash".to_string(),
            format!("/tmp/{file_name}"),
        ];
        let output = run_external_command(
            PathBuf::from("ssh"),
            std::env::current_dir()?,
            args,
            suppress_output,
            false,
        )
        .map_err(|e| {
            Error::SshCommandFailed(format!("Failed to execute command on remote host: {e}"))
        })?;
        Ok(output)
    }
}