ockam_command 0.150.0

End-to-end encryption and mutual authentication for distributed applications.
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
use serde::{Deserialize, Serialize};

use ockam_node::Context;

use crate::run::parser::config::ConfigParser;
use crate::run::parser::resource::*;
use crate::run::parser::Version;
use crate::CommandGlobalOpts;

/// Defines the high-level structure of the configuration file.
///
/// The fields of this struct represent a section of the configuration file. Each section
/// is a list of resources, which, in turn, can be defined in different ways, depending
/// on the nature of the underlying commands.
///
/// Each resource can be configured using the arguments available for the corresponding command.
/// For example, the `node` resource accepts any arguments that the `node create` command accepts.
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct Config {
    #[serde(flatten)]
    pub version: Version,
    #[serde(flatten)]
    pub vaults: Vaults,
    #[serde(flatten)]
    pub identities: Identities,
    #[serde(flatten)]
    pub project_enroll: ProjectEnroll,
    #[serde(flatten)]
    pub nodes: Nodes,
    #[serde(flatten)]
    pub policies: Policies,
    #[serde(flatten)]
    pub tcp_outlets: TcpOutlets,
    #[serde(flatten)]
    pub tcp_inlets: TcpInlets,
    #[serde(flatten)]
    pub kafka_inlet: KafkaInlet,
    #[serde(flatten)]
    pub kafka_outlet: KafkaOutlet,
    #[serde(flatten)]
    pub relays: Relays,
}

impl Config {
    /// Executes the commands described in the configuration to create the desired state.
    ///
    /// More specifically, this struct is responsible for:
    /// - Running the commands in a valid order. For example, nodes will be created before TCP inlets.
    /// - Do the necessary checks to run only the necessary commands. For example, an enrollment ticket won't
    ///   be used if the identity is already enrolled.
    ///
    /// For more details about the parsing, see the [parser](crate::run::parser) module.
    /// You can also check examples of valid configuration files in the demo folder of this module.
    pub async fn run(self, ctx: &Context, opts: &CommandGlobalOpts) -> miette::Result<()> {
        for cmd in self.parse_commands()? {
            cmd.run(ctx, opts).await?
        }
        Ok(())
    }

    // Build commands and return validation errors
    fn parse_commands(self) -> miette::Result<Vec<ParsedCommands>> {
        Ok(vec![
            self.vaults.into_parsed_commands()?.into(),
            self.identities.into_parsed_commands()?.into(),
            self.project_enroll.into_parsed_commands(None)?.into(),
            self.nodes.into_parsed_commands()?.into(),
            self.relays.into_parsed_commands(None)?.into(),
            self.policies.into_parsed_commands()?.into(),
            self.tcp_outlets.into_parsed_commands(None)?.into(),
            self.tcp_inlets.into_parsed_commands(None)?.into(),
            self.kafka_inlet.into_parsed_commands(None)?.into(),
            self.kafka_outlet.into_parsed_commands(None)?.into(),
        ])
    }

    pub async fn parse_and_run(
        ctx: &Context,
        opts: CommandGlobalOpts,
        contents: String,
    ) -> miette::Result<()> {
        Self::parse(contents)?.run(ctx, &opts).await
    }

    pub(crate) fn parse(mut contents: String) -> miette::Result<Self> {
        ConfigParser::parse(&mut contents)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::node::config::ENROLLMENT_TICKET;
    use crate::run::parser::building_blocks::*;
    use crate::run::parser::VersionValue;
    use serial_test::serial;
    use std::collections::BTreeMap;
    use std::path::PathBuf;

    #[test]
    fn parse_complete_config() {
        let config = r#"
            vaults:
              - v1
              - v2

            identities:
              - i1
              - i2:
                  vault: v2

            ticket: ./path/to/ticket

            nodes:
              - n1
              - n2

            policies:
              - at: n1
                resource: r1
                expression: (= subject.component "c1")
              - at: n2
                resource: r2
                expression: (= subject.component "c2")

            tcp-outlets:
              to1:
                to: 6060
                at: n
              to2:
                to: 6061

            tcp-inlets:
              ti1:
                from: 6060
                at: n
              ti2:
                from: 6061

            kafka-inlet:
                from: 9092
                at: n
                to: /project/project_name
                port-range: 1000-2000

            kafka-outlet:
                bootstrap-server: 192.168.1.1:9092
                at: n

            relays:
              - r1
              - r2
        "#
        .to_string();
        let parsed = Config::parse(config).unwrap();

        let expected = Config {
            version: Version {
                version: VersionValue::latest(),
            },
            vaults: Vaults {
                vaults: Some(ResourcesContainer::List(vec![
                    ResourceNameOrMap::Name("v1".to_string()),
                    ResourceNameOrMap::Name("v2".to_string()),
                ])),
            },
            identities: Identities {
                identities: Some(ResourcesContainer::List(vec![
                    ResourceNameOrMap::Name("i1".to_string()),
                    ResourceNameOrMap::NamedMap(NamedResources {
                        items: vec![(
                            "i2".to_string(),
                            Args {
                                args: vec![("vault".into(), "v2".into())].into_iter().collect(),
                            },
                        )]
                        .into_iter()
                        .collect::<BTreeMap<_, _>>(),
                    }),
                ])),
            },
            project_enroll: ProjectEnroll {
                ticket: Some("./path/to/ticket".to_string()),
            },
            nodes: Nodes {
                nodes: Some(ResourcesContainer::List(vec![
                    ResourceNameOrMap::Name("n1".to_string()),
                    ResourceNameOrMap::Name("n2".to_string()),
                ])),
            },
            policies: Policies {
                policies: Some(UnnamedResources::List(vec![
                    Args {
                        args: vec![
                            ("at".into(), "n1".into()),
                            ("resource".into(), "r1".into()),
                            ("expression".into(), "(= subject.component \"c1\")".into()),
                        ]
                        .into_iter()
                        .collect(),
                    },
                    Args {
                        args: vec![
                            ("at".into(), "n2".into()),
                            ("resource".into(), "r2".into()),
                            ("expression".into(), "(= subject.component \"c2\")".into()),
                        ]
                        .into_iter()
                        .collect(),
                    },
                ])),
            },
            tcp_outlets: TcpOutlets {
                tcp_outlets: Some(ResourceNameOrMap::NamedMap(NamedResources {
                    items: vec![
                        (
                            "to1".to_string(),
                            Args {
                                args: vec![("to".into(), "6060".into()), ("at".into(), "n".into())]
                                    .into_iter()
                                    .collect(),
                            },
                        ),
                        (
                            "to2".to_string(),
                            Args {
                                args: vec![("to".into(), "6061".into())].into_iter().collect(),
                            },
                        ),
                    ]
                    .into_iter()
                    .collect::<BTreeMap<_, _>>(),
                })),
            },
            tcp_inlets: TcpInlets {
                tcp_inlets: Some(ResourceNameOrMap::NamedMap(NamedResources {
                    items: vec![
                        (
                            "ti1".to_string(),
                            Args {
                                args: vec![
                                    ("from".into(), "6060".into()),
                                    ("at".into(), "n".into()),
                                ]
                                .into_iter()
                                .collect(),
                            },
                        ),
                        (
                            "ti2".to_string(),
                            Args {
                                args: vec![("from".into(), "6061".into())].into_iter().collect(),
                            },
                        ),
                    ]
                    .into_iter()
                    .collect::<BTreeMap<_, _>>(),
                })),
            },
            kafka_inlet: KafkaInlet {
                kafka_inlet: Some(ResourceNameOrMap::RandomlyNamedMap(
                    UnnamedResources::Single(Args {
                        args: vec![
                            ("from".into(), "9092".into()),
                            ("at".into(), "n".into()),
                            ("to".into(), "/project/project_name".into()),
                            ("port-range".into(), "1000-2000".into()),
                        ]
                        .into_iter()
                        .collect(),
                    }),
                )),
            },
            kafka_outlet: KafkaOutlet {
                kafka_outlet: Some(ResourceNameOrMap::RandomlyNamedMap(
                    UnnamedResources::Single(Args {
                        args: vec![
                            ("bootstrap-server".into(), "192.168.1.1:9092".into()),
                            ("at".into(), "n".into()),
                        ]
                        .into_iter()
                        .collect(),
                    }),
                )),
            },
            relays: Relays {
                relays: Some(ResourcesContainer::List(vec![
                    ResourceNameOrMap::Name("r1".to_string()),
                    ResourceNameOrMap::Name("r2".to_string()),
                ])),
            },
        };
        assert_eq!(expected, parsed);
    }

    #[test]
    #[serial]
    fn resolve_variables() {
        std::env::set_var("SUFFIX", "node");
        let config = r#"
            variables:
              prefix: ockam
              ENROLLMENT_TICKET: ./path/to/ticket

            ticket: ${ENROLLMENT_TICKET}

            nodes:
              - ${prefix}_n1_${SUFFIX}
              - ${prefix}_n2_${SUFFIX}
        "#
        .to_string();
        let parsed = Config::parse(config).unwrap();
        let expected = Config {
            version: Version {
                version: VersionValue::latest(),
            },
            vaults: Vaults { vaults: None },
            identities: Identities { identities: None },
            project_enroll: ProjectEnroll {
                ticket: Some("./path/to/ticket".to_string()),
            },
            nodes: Nodes {
                nodes: Some(ResourcesContainer::List(vec![
                    ResourceNameOrMap::Name("ockam_n1_node".to_string()),
                    ResourceNameOrMap::Name("ockam_n2_node".to_string()),
                ])),
            },
            policies: Policies { policies: None },
            tcp_outlets: TcpOutlets { tcp_outlets: None },
            tcp_inlets: TcpInlets { tcp_inlets: None },
            kafka_inlet: KafkaInlet { kafka_inlet: None },
            kafka_outlet: KafkaOutlet { kafka_outlet: None },
            relays: Relays { relays: None },
        };
        assert_eq!(expected, parsed);
    }

    #[test]
    #[serial]
    fn parse_demo_config_files() {
        let files = std::fs::read_dir(demo_config_files_dir())
            .unwrap()
            .collect::<Vec<_>>();
        assert_eq!(files.len(), 7);
        for file in files {
            std::env::set_var(ENROLLMENT_TICKET, "ticket");
            let file = file.unwrap();
            let path = file.path();
            let contents = std::fs::read_to_string(&path).unwrap();
            match Config::parse(contents) {
                Ok(_) => {}
                Err(e) => {
                    eprintln!("Error parsing file {path:?}: {e}");
                    panic!();
                }
            }
        }
    }

    #[test]
    #[serial]
    fn parse_demo_config_file_1() {
        let path = demo_config_files_dir().join("1.portal.single-machine.yaml");
        let config = std::fs::read_to_string(path).unwrap();
        let parsed = Config::parse(config).unwrap();
        assert_eq!(parsed.version.version, VersionValue::latest());
        assert_eq!(parsed.vaults.vaults, None);
        assert_eq!(parsed.identities.identities, None);
        assert_eq!(parsed.project_enroll.ticket, None);
        assert_eq!(parsed.nodes.nodes, None);
        assert_eq!(parsed.policies.policies, None);
        assert_eq!(
            parsed.tcp_outlets.tcp_outlets,
            Some(ResourceNameOrMap::NamedMap(NamedResources {
                items: vec![(
                    "db-outlet".to_string(),
                    Args {
                        args: vec![("to".into(), "5432".into())].into_iter().collect(),
                    },
                ),]
                .into_iter()
                .collect::<BTreeMap<_, _>>(),
            }))
        );
        assert_eq!(
            parsed.tcp_inlets.tcp_inlets,
            Some(ResourceNameOrMap::NamedMap(NamedResources {
                items: vec![(
                    "web-inlet".to_string(),
                    Args {
                        args: vec![("from".into(), "4000".into())].into_iter().collect(),
                    },
                ),]
                .into_iter()
                .collect::<BTreeMap<_, _>>(),
            }))
        );
        assert_eq!(
            parsed.relays.relays,
            Some(ResourcesContainer::NameOrMap(ResourceNameOrMap::Name(
                "default".to_string()
            )))
        );
    }

    #[test]
    #[serial]
    fn parse_demo_config_file_2_inlet() {
        let path = demo_config_files_dir().join("2.portal.inlet.yaml");
        let config = std::fs::read_to_string(path).unwrap();
        let parsed = Config::parse(config).unwrap();
        assert_eq!(parsed.version.version, VersionValue::latest());
        assert_eq!(parsed.vaults.vaults, None);
        assert_eq!(parsed.identities.identities, None);
        assert_eq!(
            parsed.project_enroll.ticket,
            Some("webapp.ticket".to_string())
        );
        assert_eq!(
            parsed.nodes.nodes,
            Some(ResourcesContainer::NameOrMap(ResourceNameOrMap::Name(
                "web".to_string()
            )))
        );
        assert_eq!(parsed.policies.policies, None);
        assert_eq!(parsed.tcp_outlets.tcp_outlets, None);
        assert_eq!(
            parsed.tcp_inlets.tcp_inlets,
            Some(ResourceNameOrMap::NamedMap(NamedResources {
                items: vec![(
                    "web-inlet".to_string(),
                    Args {
                        args: vec![
                            ("from".into(), "4000".into()),
                            ("via".into(), "db".into()),
                            ("allow".into(), "component.db".into()),
                        ]
                        .into_iter()
                        .collect(),
                    },
                ),]
                .into_iter()
                .collect::<BTreeMap<_, _>>(),
            }))
        );
        assert_eq!(parsed.relays.relays, None);
    }

    #[test]
    #[serial]
    fn parse_demo_config_file_2_outlet() {
        let path = demo_config_files_dir().join("2.portal.outlet.yaml");
        let config = std::fs::read_to_string(path).unwrap();
        let parsed = Config::parse(config).unwrap();
        assert_eq!(parsed.version.version, VersionValue::latest());
        assert_eq!(parsed.vaults.vaults, None);
        assert_eq!(parsed.identities.identities, None);
        assert_eq!(parsed.project_enroll.ticket, Some("db.ticket".to_string()));
        assert_eq!(
            parsed.nodes.nodes,
            Some(ResourcesContainer::NameOrMap(ResourceNameOrMap::Name(
                "db".to_string()
            )))
        );
        assert_eq!(parsed.policies.policies, None);
        assert_eq!(
            parsed.tcp_outlets.tcp_outlets,
            Some(ResourceNameOrMap::NamedMap(NamedResources {
                items: vec![(
                    "db-outlet".to_string(),
                    Args {
                        args: vec![
                            ("to".into(), "5432".into()),
                            ("allow".into(), "component.web".into()),
                        ]
                        .into_iter()
                        .collect(),
                    },
                ),]
                .into_iter()
                .collect::<BTreeMap<_, _>>(),
            }))
        );
        assert_eq!(parsed.tcp_inlets.tcp_inlets, None);
        assert_eq!(
            parsed.relays.relays,
            Some(ResourcesContainer::NameOrMap(ResourceNameOrMap::Name(
                "db".to_string()
            )))
        );
    }

    fn demo_config_files_dir() -> PathBuf {
        std::env::current_dir()
            .unwrap()
            .join("src")
            .join("run")
            .join("demo_config_files")
    }
}