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
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
//  LIFETIME.rs
//    by Lut99
//
//  Created:
//    22 Nov 2022, 11:19:22
//  Last edited:
//    07 Mar 2024, 09:55:58
//  Auto updated?
//    Yes
//
//  Description:
//!   Commands that relate to managing the lifetime of the local node.
//

use std::borrow::Cow;
use std::collections::HashMap;
use std::ffi::OsString;
use std::fmt::Display;
use std::fs::File;
use std::io::Write;
use std::net::IpAddr;
use std::path::{Path, PathBuf};
use std::process::{Command, Output, Stdio};
use std::str::FromStr as _;

use bollard::Docker;
use brane_cfg::info::Info as _;
use brane_cfg::node::{
    CentralConfig, CentralPaths, CentralServices, NodeConfig, NodeKind, NodeSpecificConfig, PrivateOrExternalService, ProxyConfig, ProxyPaths,
    ProxyServices, WorkerConfig, WorkerPaths, WorkerServices,
};
use brane_cfg::proxy;
use brane_tsk::docker::{DockerOptions, ImageSource, ensure_image, get_digest};
use console::style;
use log::{debug, info};
use rand::Rng;
use rand::distributions::Alphanumeric;
use serde::{Deserialize, Serialize};
use specifications::container::Image;
use specifications::version::Version;

pub use crate::errors::LifetimeError as Error;
use crate::spec::{LogsOpts, StartOpts, StartSubcommand};


/***** HELPER STRUCTS *****/
/// Defines a struct that writes to a valid compose file for overriding hostnames.
#[derive(Clone, Debug, Deserialize, Serialize)]
struct ComposeOverrideFile {
    /// The version number to use
    version:  &'static str,
    /// The services themselves
    services: HashMap<&'static str, ComposeOverrideFileService>,
}



/// Defines a struct that defines how a service looks like in a valid compose file for overriding hostnames.
#[derive(Clone, Debug, Deserialize, Serialize)]
struct ComposeOverrideFileService {
    /// Defines any additional mounts
    volumes: Vec<String>,
    /// Defines the extra hosts themselves.
    extra_hosts: Vec<String>,
    /// Whether to set any profiles.
    profiles: Vec<String>,
    /// Whether to open any additional ports.
    ports: Vec<String>,
}





/***** HELPER FUNCTIONS *****/
/// Makes the given path canonical, casting the error for convenience.
///
/// # Arguments
/// - `path`: The path to make canonical.
///
/// # Returns
/// The same path but canonical.
///
/// # Errors
/// This function errors if we failed to make the path canonical (i.e., something did not exist).
#[inline]
fn canonicalize(path: impl AsRef<Path>) -> Result<PathBuf, Error> {
    let path: &Path = path.as_ref();
    match path.canonicalize() {
        Ok(path) => Ok(path),
        Err(err) => Err(Error::CanonicalizeError { path: path.into(), err }),
    }
}

/// Makes the given path join canonical, casting the error for convenience.
///
/// Essentially, if the second path is relative, then it will join them (in the order given) and make the result canonical. Otherwise, just the second path is made canonical.
///
/// # Arguments
/// - `lhs`: The first path to make canonical iff the second path is relative.
/// - `rhs`: The second path to make canonical and potentially join with the first (iff it is relative).
///
/// # Returns
/// The "join" of the paths, but canonical.
///
/// # Errors
/// This function errors if we failed to make the path canonical (i.e., something did not exist).
fn canonicalize_join(lhs: impl AsRef<Path>, rhs: impl AsRef<Path>) -> Result<PathBuf, Error> {
    let lhs: &Path = lhs.as_ref();
    let rhs: &Path = rhs.as_ref();

    // Join them, if necessary
    let path: Cow<Path> = if rhs.is_relative() { Cow::Owned(lhs.join(rhs)) } else { Cow::Borrowed(rhs) };

    // Canonicalize the result
    match path.canonicalize() {
        Ok(path) => Ok(path),
        Err(err) => Err(Error::CanonicalizeError { path: path.into(), err }),
    }
}

/// Resolves the given path to replace '$NODE' with the actual node type.
///
/// # Arguments
/// - `path`: The path to resolve.
/// - `node`: Some node-dependent identifier already handled.
///
/// # Returns
/// A new PathBuf that is the same but now without $NODE.
#[inline]
fn resolve_node(path: impl AsRef<Path>, node: impl AsRef<str>) -> PathBuf {
    PathBuf::from(path.as_ref().to_string_lossy().replace("$NODE", node.as_ref()))
}

/// Resolves the given potentially given ImageSource to two possible default values, depending on whether we use DockerHub images or local ones.
///
/// # Arguments
/// - `source`: The ImageSource to resolve.
/// - `local_aux`: Determines whether to resolve a missing ImageSource to a Path source (true) or a Registry source (false).
/// - `svc`: The name of the specific service to resolve this one to if it's missing. Only used if `local_aux` is true.
/// - `img_dir`: The directory to resolve it with if `local_aux` is true.
/// - `image`: The ID of the image to pull from DockerHub we use to resolve the `source` if it's missing. Only used if `local_aux` is false.
///
/// # Returns
/// A new ImageSource that is the same if 'source' was `Some(...)`, or else resolved to a default value.\
fn resolve_aux_svc(
    source: Option<ImageSource>,
    local_aux: bool,
    svc: impl Display,
    img_dir: impl AsRef<Path>,
    image: impl Into<String>,
) -> ImageSource {
    match source {
        Some(source) => source,
        None => {
            if local_aux {
                resolve_image_dir(ImageSource::Path(PathBuf::from(format!("$IMG_DIR/aux-{}.tar", svc))), img_dir)
            } else {
                ImageSource::Registry(image.into())
            }
        },
    }
}

/// Resolves the given ImageSource to replace '$IMG_DIR' with the directory given.
///
/// # Arguments
/// - `source`: The ImageSource to resolve.
/// - `img_dir`: The directory to resolve it with.
///
/// # Returns
/// A new ImageSource that is the same but not with (potentially) $NODE removed.
#[inline]
fn resolve_image_dir(source: impl AsRef<ImageSource>, img_dir: impl AsRef<Path>) -> ImageSource {
    let source: &ImageSource = source.as_ref();
    let img_dir: &Path = img_dir.as_ref();

    // Switch on the source type to do the thing
    match source {
        ImageSource::Path(path) => ImageSource::Path(PathBuf::from(path.to_string_lossy().replace("$IMG_DIR", &img_dir.to_string_lossy()))),
        ImageSource::Registry(source) => ImageSource::Registry(source.replace("$IMG_DIR", &img_dir.to_string_lossy())),
    }
}

/// Resolves the given executable to a sensible executable and a list of arguments.
///
/// # Arguments
/// - `exe`: The executable string to split.
///
/// # Returns
/// A tuple with the executable and a list of additional arguments to call it properly.
///
/// # Errors
/// This function errors if we failed to lex the command.
#[inline]
fn resolve_exe(exe: impl AsRef<str>) -> Result<(String, Vec<String>), Error> {
    shlex::split(exe.as_ref()).map(|mut args| (args.remove(0), args)).ok_or_else(|| Error::ExeParseError { raw: exe.as_ref().into() })
}

/// Resolve the given Docker Compose file either by using the given one, or using the baked-in one.
///
/// # Arguments
/// - `file`: The path given by the user.
/// - `kind`: The kind of this node.
/// - `version`: The Brane version for which we are resolving.
///
/// # Returns
/// A new path which points to a Docker Compose file that exists for sure.
///
/// # Errors
/// This function errors if we failed to verify the given file exists, or failed to unpack the builtin file.
fn resolve_docker_compose_file(file: Option<PathBuf>, kind: NodeKind, mut version: Version) -> Result<PathBuf, Error> {
    // Switch on whether it exists or not
    match file {
        Some(file) => {
            // It does; only verify the file exists
            if !file.exists() {
                return Err(Error::DockerComposeNotFound { path: file });
            }
            if !file.is_file() {
                return Err(Error::DockerComposeNotAFile { path: file });
            }

            // OK
            debug!("Using given file '{}'", file.display());
            Ok(file)
        },

        None => {
            // It does not; unpack the builtins

            // Verify the version matches what we have
            if version.is_latest() {
                version = Version::from_str(env!("CARGO_PKG_VERSION")).unwrap();
            }
            if version != Version::from_str(env!("CARGO_PKG_VERSION")).unwrap() {
                return Err(Error::DockerComposeNotBakedIn { kind, version });
            }

            // Write the target location if it does not yet exist
            let compose_path: PathBuf = PathBuf::from("/tmp").join(format!("docker-compose-{kind}-{version}.yml"));
            if !compose_path.exists() {
                debug!("Unpacking baked-in {} Docker Compose file to '{}'...", kind, compose_path.display());

                // Attempt to open the target location
                let mut handle: File = match File::create(&compose_path) {
                    Ok(handle) => handle,
                    Err(err) => {
                        return Err(Error::DockerComposeCreateError { path: compose_path, err });
                    },
                };

                // Write the correct file to it
                match kind {
                    NodeKind::Central => {
                        if let Err(err) = write!(handle, "{}", include_str!("../../docker-compose-central.yml")) {
                            return Err(Error::DockerComposeWriteError { path: compose_path, err });
                        }
                    },

                    NodeKind::Worker => {
                        if let Err(err) = write!(handle, "{}", include_str!("../../docker-compose-worker.yml")) {
                            return Err(Error::DockerComposeWriteError { path: compose_path, err });
                        }
                    },

                    NodeKind::Proxy => {
                        if let Err(err) = write!(handle, "{}", include_str!("../../docker-compose-proxy.yml")) {
                            return Err(Error::DockerComposeWriteError { path: compose_path, err });
                        }
                    },
                }
            }

            // OK
            debug!("Using baked-in file '{}'", compose_path.display());
            Ok(compose_path)
        },
    }
}

/// Generates some files and directories on the host to make all the canonicalizes happy.
///
/// # Arguments
/// - `node_config`: The [`NodeConfig`] that contains information about where to generate exactly that.
///
/// # Returns
/// This function errors if we failed to generate any of the required files/directories.
fn prepare_host(node_config: &NodeConfig) -> Result<(), Error> {
    // Match on who we're preparing for
    match &node_config.node {
        NodeSpecificConfig::Central(central) => {
            // Nothing to do for a central (yet)
            let CentralConfig {
                paths: CentralPaths { certs: _, packages: _, infra: _, proxy: _ },
                services: CentralServices { api: _, drv: _, plr: _, prx: _, aux_scylla: _ },
            } = central;
            Ok(())
        },

        NodeSpecificConfig::Worker(worker) => {
            // Extract the paths we're interested in
            let WorkerConfig {
                name: _,
                usecases: _,
                paths:
                    WorkerPaths {
                        certs: _,
                        packages: _,
                        backend: _,
                        policy_database: _,
                        policy_deliberation_secret: _,
                        policy_expert_secret: _,
                        policy_audit_log,
                        proxy: _,
                        data: _,
                        results: _,
                        temp_data: _,
                        temp_results: _,
                    },
                services: WorkerServices { reg: _, job: _, chk: _, prx: _ },
            } = worker;

            // Generate an empty log if it doesn't exist
            if let Some(policy_audit_log) = policy_audit_log {
                if !policy_audit_log.exists() {
                    debug!("Generating empty persistent audit log at '{}'...", policy_audit_log.display());
                    if let Err(err) = File::create(policy_audit_log) {
                        return Err(Error::AuditLogCreate { path: policy_audit_log.clone(), err });
                    }
                }
            }

            // Done
            Ok(())
        },

        NodeSpecificConfig::Proxy(proxy) => {
            // Nothing to do for a proxy (yet)
            let ProxyConfig { paths: ProxyPaths { certs: _, proxy: _ }, services: ProxyServices { prx: _ } } = proxy;
            Ok(())
        },
    }
}

/// Generate an additional, temporary `docker-compose.yml` file that adds additional hostnames and/or additional volumes.
///
/// # Arguments
/// - `node_config`: The NodeConfig that contains information about whether to launch a proxy and, if so, how.
/// - `hosts`: The map of hostnames -> IP addresses to include.
/// - `profile_dir`: The profile directory to mount (or not).
///
/// # Returns
/// The path to the generated compose file if it was necessary. If not (i.e., no hosts given), returns `None`.
///
/// # Errors
/// This function errors if we failed to write the file.
fn generate_override_file(node_config: &NodeConfig, hosts: &HashMap<String, IpAddr>, profile_dir: Option<PathBuf>) -> Result<Option<PathBuf>, Error> {
    // Early quit if there's nothing to do
    if hosts.is_empty() {
        return Ok(None);
    }

    // Generate the ComposeOverrideFileService
    let svc: ComposeOverrideFileService = ComposeOverrideFileService {
        volumes: if let Some(dir) = profile_dir { vec![format!("{}:/logs/profile", dir.display())] } else { vec![] },
        extra_hosts: hosts.iter().map(|(hostname, ip)| format!("{hostname}:{ip}")).collect(),
        profiles: vec![],
        ports: vec![],
    };

    // Match on the kind of node
    let overridefile: ComposeOverrideFile = match &node_config.node {
        NodeSpecificConfig::Central(node) => {
            // Prepare a proxy service override
            let mut prx_svc: ComposeOverrideFileService = svc.clone();
            if let Some(proxy_path) = &node.paths.proxy {
                // Open the extra ports

                // Read the proxy file to find the incoming ports
                let proxy: proxy::ProxyConfig = match proxy::ProxyConfig::from_path(proxy_path) {
                    Ok(proxy) => proxy,
                    Err(err) => {
                        return Err(Error::ProxyReadError { err });
                    },
                };

                // Open both the management and the incoming ports now
                prx_svc.ports.reserve(proxy.incoming.len());
                for (port, _) in proxy.incoming {
                    prx_svc.ports.push(format!("0.0.0.0:{port}:{port}"));
                }
            } else {
                // Otherwise, add it won't start
                prx_svc.profiles = vec!["donotstart".into()];
            }

            // Generate the override file for this node
            ComposeOverrideFile {
                version:  "3.6",
                services: HashMap::from([("brane-api", svc.clone()), ("brane-drv", svc.clone()), ("brane-plr", svc), ("brane-prx", prx_svc)]),
            }
        },

        NodeSpecificConfig::Worker(node) => {
            // Prepare a proxy service override
            let mut prx_svc: ComposeOverrideFileService = svc.clone();
            if let Some(proxy_path) = &node.paths.proxy {
                // Open the extra ports

                // Read the proxy file to find the incoming ports
                let proxy: proxy::ProxyConfig = match proxy::ProxyConfig::from_path(proxy_path) {
                    Ok(proxy) => proxy,
                    Err(err) => {
                        return Err(Error::ProxyReadError { err });
                    },
                };

                // Open both the management and the incoming ports now
                prx_svc.ports.reserve(proxy.incoming.len());
                for (port, _) in proxy.incoming {
                    prx_svc.ports.push(format!("0.0.0.0:{port}:{port}"));
                }
            } else {
                // Otherwise, add it won't start
                prx_svc.profiles = vec!["donotstart".into()];
            }

            // Also a checker override
            let mut chk_svc: ComposeOverrideFileService = svc.clone();
            if let Some(policy_audit_log) = &node.paths.policy_audit_log {
                chk_svc.volumes.push(format!("{}:/audit-log.log", policy_audit_log.display()));
            }

            // Generate the override file for this node
            ComposeOverrideFile {
                version:  "3.6",
                services: HashMap::from([("brane-reg", svc.clone()), ("brane-job", svc), ("brane-chk", chk_svc), ("brane-prx", prx_svc)]),
            }
        },

        NodeSpecificConfig::Proxy(node) => {
            // Prepare a proxy service override
            let mut prx_svc: ComposeOverrideFileService = svc;

            // Read the management port
            let manage_port: u16 = node.services.prx.bind.port();
            // Read the proxy file to find the incoming ports
            let proxy: proxy::ProxyConfig = match proxy::ProxyConfig::from_path(&node.paths.proxy) {
                Ok(proxy) => proxy,
                Err(err) => {
                    return Err(Error::ProxyReadError { err });
                },
            };
            // Find the start & stop ports of the outgoing range
            let start: u16 = *proxy.outgoing_range.start();
            let end: u16 = *proxy.outgoing_range.end();

            // Open both the management and the incoming ports now
            prx_svc.ports.reserve(1 + proxy.incoming.len() + 1);
            prx_svc.ports.push(format!("0.0.0.0:{}:{}", manage_port, manage_port));
            for (port, _) in proxy.incoming {
                prx_svc.ports.push(format!("0.0.0.0:{port}:{port}"));
            }
            prx_svc.ports.push(format!("0.0.0.0:{start}-{end}:{start}-{end}"));

            // Generate the override file for this node
            ComposeOverrideFile { version: "3.6", services: HashMap::from([("brane-prx", prx_svc)]) }
        },
    };

    // Attemp to open the file to write that to
    let compose_path: PathBuf = PathBuf::from("/tmp")
        .join(format!("docker-compose-override-{}.yml", rand::thread_rng().sample_iter(&Alphanumeric).take(3).map(char::from).collect::<String>()));
    let handle: File = match File::create(&compose_path) {
        Ok(handle) => handle,
        Err(err) => {
            return Err(Error::HostsFileCreateError { path: compose_path, err });
        },
    };

    // Now write the map in the correct format
    match serde_yaml::to_writer(handle, &overridefile) {
        Ok(_) => Ok(Some(compose_path)),
        Err(err) => Err(Error::HostsFileWriteError { path: compose_path, err }),
    }
}

/// Loads the given images.
///
/// # Arguments
/// - `docker`: The already connected Docker daemon.
/// - `images`: The map of image name -> image paths to load.
/// - `version`: The Brane version of the images to pull.
///
/// # Returns
/// Nothing, but does load them in the local docker daemon if everything goes alright.
///
/// # Errors
/// This function errors if the given images could not be loaded.
async fn load_images(docker: &Docker, images: HashMap<impl AsRef<str>, ImageSource>, version: &Version) -> Result<(), Error> {
    // Iterate over the images
    for (name, source) in images {
        let name: &str = name.as_ref();

        // Determine whether to pull as file or as a repo thing
        let image: Image = match &source {
            ImageSource::Path(path) => {
                println!("Loading image {} from file {}...", style(name).green().bold(), style(path.display().to_string()).bold());

                // Load the digest, too
                let digest: String = match get_digest(path).await {
                    Ok(digest) => digest,
                    Err(err) => {
                        return Err(Error::ImageDigestError { path: path.into(), err });
                    },
                };

                // Return it
                Image::new(name, Some(version), Some(digest))
            },

            ImageSource::Registry(source) => {
                println!("Loading image {} from repository {}...", style(name).green().bold(), style(source).bold());
                Image::new(name, Some(version), None::<&str>)
            },
        };

        // Simply rely on ensure_image
        if let Err(err) = ensure_image(docker, &image, &source).await {
            return Err(Error::ImageLoadError { image: Box::new(image), source: Box::new(source), err });
        }
    }

    // Done
    Ok(())
}

/// Constructs the environment variables for Docker compose.
///
/// # Arguments
/// - `version`: The Brane version to launch.
/// - `node_config_path`: The path of the NodeConfig file to mount.
/// - `node_config`: The NodeConfig to set ports and attach volumes for.
///
/// # Returns
/// A HashMap of environment variables to use for running Docker compose.
///
/// # Errors
/// This function errors if we fail to canonicalize any of the paths in `node_config`.
fn construct_envs(version: &Version, node_config_path: &Path, node_config: &NodeConfig) -> Result<HashMap<&'static str, OsString>, Error> {
    // Set the global ones first
    let mut res: HashMap<&str, OsString> = HashMap::from([
        ("BRANE_VERSION", OsString::from(version.to_string())),
        ("NODE_CONFIG_PATH", canonicalize(node_config_path)?.as_os_str().into()),
    ]);

    // Match on the node kind
    let node_config_dir: &Path = node_config_path.parent().unwrap();
    match &node_config.node {
        NodeSpecificConfig::Central(node) => {
            // Now we do a little ugly something, but we unpack the paths and ports here so that we get compile errors if we add more later on
            let CentralPaths { certs, packages, infra, proxy } = &node.paths;
            let CentralServices { api, drv, plr, prx, aux_scylla: _ } = &node.services;

            // Add the environment variables, which are basically just central-specific paths and ports to mount in the compose file
            res.extend([
                // Names
                ("API_NAME", OsString::from(&api.name.as_str())),
                ("DRV_NAME", OsString::from(&drv.name.as_str())),
                ("PLR_NAME", OsString::from(&plr.name.as_str())),
                // Paths
                ("INFRA", canonicalize_join(node_config_dir, infra)?.as_os_str().into()),
                ("CERTS", canonicalize_join(node_config_dir, certs)?.as_os_str().into()),
                ("PACKAGES", canonicalize_join(node_config_dir, packages)?.as_os_str().into()),
                // Ports
                ("API_PORT", OsString::from(format!("{}", api.bind.port()))),
                ("DRV_PORT", OsString::from(format!("{}", drv.bind.port()))),
            ]);

            // Only add the proxy stuff if given
            if let PrivateOrExternalService::Private(name) = prx {
                res.extend([
                    ("PRX_NAME", OsString::from(&name.name.as_str())),
                    ("PROXY", canonicalize_join(node_config_dir, proxy.as_ref().ok_or(Error::MissingProxyPath)?)?.as_os_str().into()),
                ]);
            }
            if let Some(path) = proxy {
                res.extend([
                    ("PRX_NAME", OsString::from(&prx.try_private().ok_or(Error::MissingProxyService)?.name.as_str())),
                    ("PROXY", canonicalize_join(node_config_dir, path)?.as_os_str().into()),
                ]);
            }
        },

        NodeSpecificConfig::Worker(node) => {
            // Now we do a little ugly something, but we unpack the paths here so that we get compile errors if we add more later on
            let WorkerPaths {
                certs,
                packages,
                backend,
                policy_database,
                policy_deliberation_secret,
                policy_expert_secret,
                // Note: handled by `generate_override_file()`
                policy_audit_log: _,
                proxy,
                data,
                results,
                temp_data,
                temp_results,
            } = &node.paths;
            let WorkerServices { reg, job, chk, prx } = &node.services;

            // Add the environment variables, which are basically just central-specific paths to mount in the compose file
            res.extend([
                // Also add the location ID
                ("LOCATION_ID", OsString::from(&node.name)),
                // Names
                ("REG_NAME", OsString::from(&reg.name.as_str())),
                ("CHK_NAME", OsString::from(&chk.name.as_str())),
                ("JOB_NAME", OsString::from(&job.name.as_str())),
                ("CHK_NAME", OsString::from(&chk.name.as_str())),
                // Paths
                ("BACKEND", canonicalize_join(node_config_dir, backend)?.as_os_str().into()),
                ("POLICY_DB", canonicalize_join(node_config_dir, policy_database)?.as_os_str().into()),
                ("POLICY_DELIBERATION_SECRET", canonicalize_join(node_config_dir, policy_deliberation_secret)?.as_os_str().into()),
                ("POLICY_EXPERT_SECRET", canonicalize_join(node_config_dir, policy_expert_secret)?.as_os_str().into()),
                ("CERTS", canonicalize_join(node_config_dir, certs)?.as_os_str().into()),
                ("PACKAGES", canonicalize_join(node_config_dir, packages)?.as_os_str().into()),
                ("DATA", canonicalize_join(node_config_dir, data)?.as_os_str().into()),
                ("RESULTS", canonicalize_join(node_config_dir, results)?.as_os_str().into()),
                ("TEMP_DATA", canonicalize_join(node_config_dir, temp_data)?.as_os_str().into()),
                ("TEMP_RESULTS", canonicalize_join(node_config_dir, temp_results)?.as_os_str().into()),
                // Ports
                ("CHK_PORT", OsString::from(format!("{}", chk.bind.port()))),
                ("REG_PORT", OsString::from(format!("{}", reg.bind.port()))),
                ("JOB_PORT", OsString::from(format!("{}", job.bind.port()))),
            ]);

            // Only add the proxy stuff if given
            if let PrivateOrExternalService::Private(name) = prx {
                res.extend([
                    ("PRX_NAME", OsString::from(&name.name.as_str())),
                    ("PROXY", canonicalize_join(node_config_dir, proxy.as_ref().ok_or(Error::MissingProxyPath)?)?.as_os_str().into()),
                ]);
            }
            if let Some(path) = proxy {
                res.extend([
                    ("PRX_NAME", OsString::from(&prx.try_private().ok_or(Error::MissingProxyService)?.name.as_str())),
                    ("PROXY", canonicalize_join(node_config_dir, path)?.as_os_str().into()),
                ]);
            }
        },

        NodeSpecificConfig::Proxy(node) => {
            // Now we do a little ugly something, but we unpack the paths and ports here so that we get compile errors if we add more later on
            let ProxyPaths { proxy, certs } = &node.paths;
            let ProxyServices { prx } = &node.services;

            // Add the environment variables for the proxy
            res.extend([
                // Names
                ("PRX_NAME", OsString::from(&prx.name.as_str())),
                // Paths
                ("PROXY", canonicalize_join(node_config_dir, proxy)?.as_os_str().into()),
                ("CERTS", canonicalize_join(node_config_dir, certs)?.as_os_str().into()),
            ]);
        },
    }

    // Done
    debug!("Using environment: {:#?}", res);
    Ok(res)
}

// TODO: Maybe wrap the (extra) arguments as value in the command
enum DockerComposeCommand {
    Up,
    Logs,
}

impl DockerComposeCommand {
    fn to_args(&self) -> Vec<&'static str> {
        match self {
            DockerComposeCommand::Up => vec!["up", "-d"],
            DockerComposeCommand::Logs => vec!["logs", "-f"],
        }
    }
}

/// Runs Docker compose on the given Docker file.
///
/// # Arguments
/// - `compose_verbose`: If given, attempts to enable additional debug prints in the Docker Compose executable.
/// - `exe`: The `docker-compose` executable to run.
/// - `file`: The DockerFile to run.
/// - `project`: The project name to launch the containers for.
/// - `proxyfile`: If given, an additional `docker-compose` file that will add the proxy service.
/// - `overridefile`: If given, an additional `docker-compose` file that overrides the default one with extra hosts and other properties.
/// - `envs`: The map of environment variables to set.
///
/// # Returns
/// Nothing upon success, although obviously the Docker containers do get launched if so.
///
/// # Errors
/// This function fails if we failed to launch the command, or the command itself failed.
fn run_compose(
    compose_verbose: bool,
    exe: (String, Vec<String>),
    command: DockerComposeCommand,
    file: impl AsRef<Path>,
    project: impl AsRef<str>,
    overridefile: Option<PathBuf>,
    envs: HashMap<&'static str, OsString>,
) -> Result<(), Error> {
    let file: &Path = file.as_ref();
    let project: &str = project.as_ref();

    // Start creating the command
    let mut cmd: Command = Command::new(&exe.0);
    cmd.args(&exe.1);
    if compose_verbose {
        cmd.arg("--verbose");
    }
    cmd.args(["-p", project, "-f"]);
    cmd.arg(file.as_os_str());
    if let Some(overridefile) = overridefile {
        cmd.arg("-f");
        cmd.arg(overridefile);
    }
    cmd.args(command.to_args());
    cmd.envs(envs);
    cmd.stdin(Stdio::inherit());
    cmd.stdout(Stdio::inherit());
    cmd.stderr(Stdio::inherit());

    // Run it
    println!(
        "Running '{}{}' {} on {}...",
        exe.0,
        if !exe.1.is_empty() { format!(" {}", exe.1.join(" ")) } else { String::new() },
        style("up").bold().green(),
        style(file.display()).bold()
    );
    debug!("Command: {:?}", cmd);
    let output: Output = match cmd.output() {
        Ok(output) => output,
        Err(err) => {
            return Err(Error::JobLaunchError { command: cmd, err });
        },
    };
    if !output.status.success() {
        return Err(Error::JobFailure { command: cmd, status: output.status });
    }

    // Done
    Ok(())
}





/***** LIBRARY *****/
/// Starts the local node by running the given docker-compose file.
///
/// # Arguments
/// - `exe`: The `docker-compose` executable to run.
/// - `file`: The `docker-compose.yml` file to launch.
/// - `node_config_path`: The path to the node config file to potentially override.
/// - `docker_opts`: Configuration for connecting to the local Docker daemon. See `DockerOptions` for more information.
/// - `opts`: Miscellaneous configuration for starting the images. See `StartOpts` for more information.
/// - `command`: The `StartSubcommand` that carries additional information, including which of the node types to launch.
///
/// # Returns
/// Nothing, but does change the local Docker daemon to load and then run the given files.
///
/// # Errors
/// This function errors if we failed to run the `docker-compose` command or if we failed to assert that the given command matches the node kind of the `node.yml` file on disk.
pub async fn start(
    exe: impl AsRef<str>,
    file: Option<PathBuf>,
    node_config_path: impl Into<PathBuf>,
    docker_opts: DockerOptions,
    opts: StartOpts,
    command: StartSubcommand,
) -> Result<(), Error> {
    let exe: &str = exe.as_ref();
    let node_config_path: PathBuf = node_config_path.into();
    info!(
        "Starting node from Docker compose file '{}', defined in '{}'",
        file.as_ref().map(|f| f.display().to_string()).unwrap_or_else(|| "<baked-in>".into()),
        node_config_path.display()
    );

    // Start by loading the node config file
    debug!("Loading node config file '{}'...", node_config_path.display());
    let node_config: NodeConfig = match NodeConfig::from_path(&node_config_path) {
        Ok(config) => config,
        Err(err) => {
            return Err(Error::NodeConfigLoadError { err });
        },
    };

    // Resolve the Docker Compose file
    debug!("Resolving Docker Compose file...");
    let file: PathBuf = resolve_docker_compose_file(file, node_config.node.kind(), opts.version)?;

    // Match on the command
    match command {
        StartSubcommand::Central { aux_scylla, brane_prx, brane_api, brane_drv, brane_plr } => {
            // Assert we are building the correct one
            if node_config.node.kind() != NodeKind::Central {
                return Err(Error::UnmatchedNodeKind { got: NodeKind::Central, expected: node_config.node.kind() });
            }

            // Connect to the Docker client
            let docker: Docker = match brane_tsk::docker::connect_local(docker_opts) {
                Ok(docker) => docker,
                Err(err) => {
                    return Err(Error::DockerConnectError { err });
                },
            };

            // Generate hosts file
            let overridefile: Option<PathBuf> = generate_override_file(&node_config, &node_config.hostnames, opts.profile_dir)?;

            // Map the images & load them
            if !opts.skip_import {
                let mut images: HashMap<&'static str, ImageSource> = HashMap::from([
                    ("aux-scylla", resolve_aux_svc(aux_scylla, opts.local_aux, "scylla", &opts.image_dir, "scylladb/scylla:4.6.3")),
                    // ("aux-xenon", resolve_image_dir(aux_xenon, &opts.image_dir)),
                    ("brane-api", resolve_image_dir(brane_api, &opts.image_dir)),
                    ("brane-drv", resolve_image_dir(brane_drv, &opts.image_dir)),
                    ("brane-plr", resolve_image_dir(brane_plr, &opts.image_dir)),
                ]);
                if node_config.node.central().services.prx.is_private() {
                    images.insert("brane-prx", resolve_image_dir(brane_prx, &opts.image_dir));
                }
                load_images(&docker, images, &opts.version).await?;
            }

            // Construct the environment variables
            let envs: HashMap<&str, OsString> = construct_envs(&opts.version, &node_config_path, &node_config)?;

            // Launch the docker-compose command
            run_compose(
                opts.compose_verbose,
                resolve_exe(exe)?,
                DockerComposeCommand::Up,
                resolve_node(file, "central"),
                &node_config.namespace,
                overridefile,
                envs,
            )?;
        },

        StartSubcommand::Worker { brane_prx, brane_chk, brane_reg, brane_job } => {
            // Assert we are building the correct one
            if node_config.node.kind() != NodeKind::Worker {
                return Err(Error::UnmatchedNodeKind { got: NodeKind::Worker, expected: node_config.node.kind() });
            }

            // Connect to the Docker client
            let docker: Docker = match brane_tsk::docker::connect_local(docker_opts) {
                Ok(docker) => docker,
                Err(err) => {
                    return Err(Error::DockerConnectError { err });
                },
            };

            // Generate some things that we might need before we actually hit run
            prepare_host(&node_config)?;

            // Generate hosts file
            let overridefile: Option<PathBuf> = generate_override_file(&node_config, &node_config.hostnames, opts.profile_dir)?;

            // Map the images & load them
            if !opts.skip_import {
                let mut images: HashMap<&'static str, ImageSource> = HashMap::from([
                    ("brane-chk", resolve_image_dir(brane_chk, &opts.image_dir)),
                    ("brane-reg", resolve_image_dir(brane_reg, &opts.image_dir)),
                    ("brane-job", resolve_image_dir(brane_job, &opts.image_dir)),
                ]);
                if node_config.node.worker().services.prx.is_private() {
                    images.insert("brane-prx", resolve_image_dir(brane_prx, &opts.image_dir));
                }
                load_images(&docker, images, &opts.version).await?;
            }

            // Construct the environment variables
            let envs: HashMap<&str, OsString> = construct_envs(&opts.version, &node_config_path, &node_config)?;

            // Launch the docker-compose command
            run_compose(
                opts.compose_verbose,
                resolve_exe(exe)?,
                DockerComposeCommand::Up,
                resolve_node(file, "worker"),
                &node_config.namespace,
                overridefile,
                envs,
            )?;
        },

        StartSubcommand::Proxy { brane_prx } => {
            // Assert we are building the correct one
            if node_config.node.kind() != NodeKind::Proxy {
                return Err(Error::UnmatchedNodeKind { got: NodeKind::Proxy, expected: node_config.node.kind() });
            }

            // Connect to the Docker client
            let docker: Docker = match brane_tsk::docker::connect_local(docker_opts) {
                Ok(docker) => docker,
                Err(err) => {
                    return Err(Error::DockerConnectError { err });
                },
            };

            // Generate hosts file
            let overridefile: Option<PathBuf> = generate_override_file(&node_config, &node_config.hostnames, opts.profile_dir)?;

            // Map the images & load them
            if !opts.skip_import {
                let images: HashMap<&'static str, ImageSource> = HashMap::from([("brane-prx", resolve_image_dir(brane_prx, &opts.image_dir))]);
                load_images(&docker, images, &opts.version).await?;
            }

            // Construct the environment variables
            let envs: HashMap<&str, OsString> = construct_envs(&opts.version, &node_config_path, &node_config)?;

            // Launch the docker-compose command
            run_compose(
                opts.compose_verbose,
                resolve_exe(exe)?,
                DockerComposeCommand::Up,
                resolve_node(file, "proxy"),
                &node_config.namespace,
                overridefile,
                envs,
            )?;
        },
    }

    // Done
    println!("\nSuccessfully launched node of type {}", style(node_config.node.kind()).bold().green());
    Ok(())
}



/// Stops the (currently running) local node.
///
/// This is a very simple command, no more than a wrapper around docker-compose.
///
/// # Arguments
/// - `compose_verbose`: If given, attempts to enable additional debug prints in the Docker Compose executable.
/// - `exe`: The `docker-compose` executable to run.
/// - `file`: The docker-compose file file to use to stop.
/// - `node_config_path`: The path to the node config file that we use to deduce the project name.
///
/// # Returns
/// Nothing, but does change the local Docker daemon to stop the services if they are running.
///
/// # Errors
/// This function errors if we failed to run docker-compose.
pub fn stop(compose_verbose: bool, exe: impl AsRef<str>, file: Option<PathBuf>, node_config_path: impl Into<PathBuf>) -> Result<(), Error> {
    let exe: &str = exe.as_ref();
    let node_config_path: PathBuf = node_config_path.into();
    info!(
        "Stopping node from Docker compose file '{}', defined in '{}'",
        file.as_ref().map(|f| f.display().to_string()).unwrap_or_else(|| "<baked-in>".into()),
        node_config_path.display()
    );

    // Start by loading the node config file
    debug!("Loading node config file '{}'...", node_config_path.display());
    let node_config: NodeConfig = match NodeConfig::from_path(&node_config_path) {
        Ok(config) => config,
        Err(err) => {
            return Err(Error::NodeConfigLoadError { err });
        },
    };

    // Resolve the Docker Compose file
    debug!("Resolving Docker Compose file...");
    let file: PathBuf = resolve_docker_compose_file(file, node_config.node.kind(), Version::from_str(env!("CARGO_PKG_VERSION")).unwrap())?;

    // Construct the environment variables
    let envs: HashMap<&str, OsString> = construct_envs(&Version::latest(), &node_config_path, &node_config)?;

    // Resolve the filename and deduce the project name
    let file: PathBuf = resolve_node(file, match node_config.node.kind() {
        NodeKind::Central => "central",
        NodeKind::Worker => "worker",
        NodeKind::Proxy => "proxy",
    });

    // Now launch docker-compose
    let exe: (String, Vec<String>) = resolve_exe(exe)?;
    let mut cmd: Command = Command::new(&exe.0);
    cmd.args(&exe.1);
    if compose_verbose {
        cmd.arg("--verbose");
    }
    cmd.args(["-p", node_config.namespace.as_str(), "-f"]);
    cmd.arg(file.as_os_str());
    cmd.args(["down"]);
    cmd.envs(envs);
    cmd.stdin(Stdio::inherit());
    cmd.stdout(Stdio::inherit());
    cmd.stderr(Stdio::inherit());

    // Run it
    println!(
        "Running '{}{}' {} on {}...",
        exe.0,
        if !exe.1.is_empty() { format!(" {}", exe.1.join(" ")) } else { String::new() },
        style("down").bold().green(),
        style(file.display()).bold()
    );
    debug!("Command: {:?}", cmd);
    let output: Output = match cmd.output() {
        Ok(output) => output,
        Err(err) => {
            return Err(Error::JobLaunchError { command: cmd, err });
        },
    };
    if !output.status.success() {
        return Err(Error::JobFailure { command: cmd, status: output.status });
    }

    // Done
    Ok(())
}

pub async fn logs(exe: impl AsRef<str>, file: Option<PathBuf>, node_config_path: impl Into<PathBuf>, opts: LogsOpts) -> Result<(), Error> {
    let exe: &str = exe.as_ref();
    let node_config_path: PathBuf = node_config_path.into();
    info!(
        "Showing logs for node from Docker compose file '{}', defined in '{}'",
        file.as_ref().map(|f| f.display().to_string()).unwrap_or_else(|| "<baked-in>".into()),
        node_config_path.display()
    );

    // Start by loading the node config file
    debug!("Loading node config file '{}'...", node_config_path.display());
    let node_config: NodeConfig = match NodeConfig::from_path(&node_config_path) {
        Ok(config) => config,
        Err(err) => {
            return Err(Error::NodeConfigLoadError { err });
        },
    };

    let version = Version::from_str(env!("CARGO_PKG_VERSION")).unwrap();

    // Resolve the Docker Compose file
    debug!("Resolving Docker Compose file...");
    let file: PathBuf = resolve_docker_compose_file(file, node_config.node.kind(), version)?;

    // Construct the environment variables
    let envs: HashMap<&str, OsString> = construct_envs(&version, &node_config_path, &node_config)?;

    // Launch the docker-compose command
    run_compose(
        opts.compose_verbose,
        resolve_exe(exe)?,
        DockerComposeCommand::Logs,
        resolve_node(file, "$NODE"),
        &node_config.namespace,
        None,
        envs,
    )?;

    Ok(())
}