csaf-walker 0.17.0

A library to work with CSAF data
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
use crate::verification::check::{Check, CheckError, Checking};
use csaf::{
    Csaf,
    definitions::{BranchesT, ProductIdT},
    document::Category,
    product_tree::ProductTree,
};
use std::collections::HashSet;

/// /vulnerabilities needs to be more than one vulnerability listed
pub fn check_vulnerabilities_size(csaf: &Csaf) -> Vec<CheckError> {
    if !is_vex(csaf) {
        return vec![];
    }
    let result;
    if let Some(vs) = &csaf.vulnerabilities {
        result = vs.is_empty();
    } else {
        result = false;
    }
    Checking::new()
        .require("The CSAF file's vulnerabilities section is empty", !result)
        .done()
}

/// There needs at least one of
/// /vulnerabilities[]/product_status/fixed
/// /vulnerabilities[]/product_status/known_affected
/// /vulnerabilities[]/product_status/known_not_affected
/// /vulnerabilities[]/product_status/under_investigation
pub fn check_vulnerabilities_product_status(csaf: &Csaf) -> Vec<CheckError> {
    if !is_vex(csaf) {
        return vec![];
    }
    let mut result = false;
    let checking = Checking::new();
    if let Some(vulns) = &csaf.vulnerabilities {
        for vuln in vulns {
            if let Some(product_status) = &vuln.product_status {
                result = product_status
                    .known_affected
                    .clone()
                    .is_some_and(|ps| ps.is_empty())
                    | product_status
                        .known_not_affected
                        .clone()
                        .is_some_and(|ps| ps.is_empty())
                    | product_status.fixed.clone().is_some_and(|ps| ps.is_empty())
                    | product_status
                        .first_fixed
                        .clone()
                        .is_some_and(|ps| ps.is_empty())
                    | product_status
                        .first_affected
                        .clone()
                        .is_some_and(|ps| ps.is_empty())
                    | product_status
                        .last_affected
                        .clone()
                        .is_some_and(|ps| ps.is_empty())
                    | product_status
                        .recommended
                        .clone()
                        .is_some_and(|ps| ps.is_empty())
                    | product_status
                        .under_investigation
                        .clone()
                        .is_some_and(|ps| ps.is_empty());
            }
        }
    }
    checking
        .require(
            "The CSAF document does not have any vulnerabilities",
            !result,
        )
        .done()
}

/// There needs at least one of
/// /vulnerabilities[]/cve
/// /vulnerabilities[]/ids
pub fn check_vulnerabilities_cve_ids(csaf: &Csaf) -> Vec<CheckError> {
    if !is_vex(csaf) {
        return vec![];
    }
    let mut result;
    let mut check_errors = vec![];
    if let Some(vulns) = &csaf.vulnerabilities {
        for vuln in vulns {
            if let Some(ids) = &vuln.ids {
                result = !ids.is_empty();
            } else {
                result = false;
            }

            result |= &vuln.cve.is_some();

            if !result {
                if let Some(cwe) = &vuln.cwe {
                    check_errors.extend(
                        Checking::new()
                            .require(
                                format!(
                                    "The vulnerability CWE ID: {:?} does not have any CVE or IDs",
                                    &cwe.id
                                ),
                                result,
                            )
                            .done(),
                    );
                } else {
                    check_errors.extend(
                        Checking::new()
                            .require(
                                "The CSAF file has a vulnerability",
                                vuln.cve.is_none() | vuln.ids.is_none(),
                            )
                            .done(),
                    );
                }
            }
        }
    }
    check_errors
}

fn get_all_product_id_from_product_tree_branches(
    branches: &BranchesT,
    products: &mut HashSet<String>,
) {
    for branch in &branches.0 {
        if let Some(product) = &branch.product {
            let id = &product.product_id;
            products.insert(id.clone().0);
        }
        if let Some(bs) = &branch.branches {
            get_all_product_id_from_product_tree_branches(bs, products);
        }
    }
}

/// Verify product match within branches and relationships
pub fn check_branches_relationships_product_match(csaf: &Csaf) -> Vec<CheckError> {
    if !is_vex(csaf) {
        return vec![];
    }
    let mut result: Vec<CheckError> = vec![];
    if let Some(products_tree) = &csaf.product_tree {
        let mut names = HashSet::new();
        if let Some(branches) = &products_tree.branches {
            get_all_product_id_from_product_tree_branches(branches, &mut names);
        }
        if let Some(relationships) = &products_tree.relationships {
            for r in relationships {
                result.extend(
                    Checking::new()
                        .require(
                            format!(
                        "There is no match for product {:?}  within branches and relationships.",
                        r.full_product_name.product_id
                    ),
                            names.contains(&r.product_reference.0)
                                && names.contains(&r.relates_to_product_reference.0),
                        )
                        .done(),
                );
            }
        }
    }
    result
}

fn get_all_product_names(product_tree: &ProductTree, products: &mut HashSet<String>) {
    if let Some(relationships) = &product_tree.relationships {
        for r in relationships {
            let id = &r.full_product_name.product_id;
            products.insert(id.clone().0);
        }
    }
}

fn check_product(
    product_names: &mut HashSet<String>,
    product_id_t: &ProductIdT,
    erroies: &mut Vec<CheckError>,
) {
    erroies.extend(
        Checking::new()
            .require(
                format!("The product under the 'product status' section of the vulnerabilities division, identified as {}, is missing from the product tree.", &product_id_t.0),
                product_names.contains(&product_id_t.0),
            )
            .done(),
    );
}

/// Verify that all vulnerabilities present in /vulnerabilities are also contained within product tree.
pub fn check_all_products_v11ies_exits_in_product_tree(csaf: &Csaf) -> Vec<CheckError> {
    if !is_vex(csaf) && !is_security_advisory(csaf) {
        return vec![];
    }
    let mut results = vec![];
    if let Some(products_tree) = &csaf.product_tree {
        let mut product_names = HashSet::new();

        if let Some(branches) = &products_tree.branches {
            get_all_product_id_from_product_tree_branches(branches, &mut product_names);
        }

        get_all_product_names(products_tree, &mut product_names);
        if let Some(v11y) = &csaf.vulnerabilities {
            for v in v11y {
                if let Some(product_status) = &v.product_status {
                    if let Some(product_its) = &product_status.known_affected {
                        for product in product_its {
                            check_product(&mut product_names, product, &mut results);
                        }
                    }
                    if let Some(product_its) = &product_status.known_not_affected {
                        for product in product_its {
                            check_product(&mut product_names, product, &mut results);
                        }
                    }
                    if let Some(product_its) = &product_status.fixed {
                        for product in product_its {
                            check_product(&mut product_names, product, &mut results);
                        }
                    }
                    if let Some(product_its) = &product_status.first_fixed {
                        for product in product_its {
                            check_product(&mut product_names, product, &mut results);
                        }
                    }
                    if let Some(product_its) = &product_status.first_affected {
                        for product in product_its {
                            check_product(&mut product_names, product, &mut results);
                        }
                    }
                    if let Some(product_its) = &product_status.last_affected {
                        for product in product_its {
                            check_product(&mut product_names, product, &mut results);
                        }
                    }
                    if let Some(product_its) = &product_status.recommended {
                        for product in product_its {
                            check_product(&mut product_names, product, &mut results);
                        }
                    }
                    if let Some(product_its) = &product_status.under_investigation {
                        for product in product_its {
                            check_product(&mut product_names, product, &mut results);
                        }
                    }
                }
                if let Some(rs) = &v.remediations {
                    for remediation in rs {
                        if let Some(product_ids) = &remediation.product_ids {
                            for product_id in product_ids {
                                results.extend(
                                    Checking::new()
                                        .require(
                                            format!(
                                                "The product under the 'remediation' section of the vulnerabilities division, identified as {:?}, is missing from the product tree.",
                                                product_id.clone().0
                                            ),
                                            product_names.contains(&product_id.0),
                                        )
                                        .done(),
                                );
                            }
                        }
                    }
                }
            }
        }
    }
    results
}

/// Check revision history
pub fn check_history(csaf: &Csaf) -> Vec<CheckError> {
    if !is_vex(csaf) {
        return vec![];
    }
    Checking::new()
        .require(
            "Revision history must not be empty",
            !csaf.document.tracking.revision_history.is_empty(),
        )
        .done()
}

/// Verify VEX cattegory
pub fn check_csaf_vex(csaf: &Csaf) -> Vec<CheckError> {
    if !is_vex(csaf) {
        return vec![];
    }
    let result = matches!(csaf.document.category, Category::Vex);

    Checking::new()
        .require("The document's category must be csaf_vex", result)
        .done()
}

fn is_vex(csaf: &Csaf) -> bool {
    matches!(csaf.document.category, Category::Vex)
}

fn is_security_advisory(csaf: &Csaf) -> bool {
    matches!(csaf.document.category, Category::SecurityAdvisory)
}

pub fn init_vex_fmt_verifying_visitor() -> Vec<(&'static str, Box<dyn Check>)> {
    vec![
        (
            "check_vulnerabilities_size",
            Box::new(check_vulnerabilities_size),
        ),
        (
            "check_vulnerabilities_product_status",
            Box::new(check_vulnerabilities_product_status),
        ),
        (
            "check_vulnerabilities_cve_ids",
            Box::new(check_vulnerabilities_cve_ids),
        ),
        (
            "check_all_products_v11ies_exits_in_product_tree",
            Box::new(check_all_products_v11ies_exits_in_product_tree),
        ),
        ("check_history", Box::new(check_history)),
        ("check_csaf_vex", Box::new(check_csaf_vex)),
        (
            "check_branches_relationships_product_match",
            Box::new(check_branches_relationships_product_match),
        ),
    ]
}

#[cfg(test)]
mod tests {
    use crate::verification::check::vex::{
        check_all_products_v11ies_exits_in_product_tree,
        check_branches_relationships_product_match, check_csaf_vex, check_history,
        check_vulnerabilities_cve_ids, check_vulnerabilities_product_status,
        check_vulnerabilities_size,
    };
    use csaf::Csaf;

    /// Verify notexits-7ComputeNode-7.7.EUS:microcode_ctl-2:2.1-53.18.el7_7.src does not exits in product tree
    #[tokio::test]
    async fn test_check_all_products_v11ies_exits_in_product_tree() {
        let csaf: Csaf =
            serde_json::from_str(include_str!("../../../../test-data/rhsa-2021_3029.json"))
                .expect("example data must parse");
        assert!(
            check_all_products_v11ies_exits_in_product_tree(&csaf)
                .first()
                .expect("must return an item")
                .contains("notexits")
        )
    }

    #[tokio::test]
    async fn test_check_csaf_vex() {
        let csaf: Csaf =
            serde_json::from_str(include_str!("../../../../test-data/rhsa-2021_3029.json"))
                .expect("example data must parse");
        assert_eq!(check_csaf_vex(&csaf).len(), 0);
    }

    #[tokio::test]
    async fn test_check_history() {
        let csaf: Csaf =
            serde_json::from_str(include_str!("../../../../test-data/rhsa-2021_3029.json"))
                .expect("example data must parse");
        assert_eq!(check_history(&csaf).len(), 0);
    }

    /// Verify the csaf file does not have any vulnerabilities
    #[tokio::test]
    async fn test_check_vulnerabilities_product_status() {
        let csaf: Csaf =
            serde_json::from_str(include_str!("../../../../test-data/rhsa-2023_1441.json"))
                .expect("example data must parse");
        assert_eq!(check_vulnerabilities_product_status(&csaf).len(), 1);
    }

    /// Verify the csaf's vulnerabilities does not have cve and ids
    #[tokio::test]
    async fn test_check_vulnerabilities_cve_ids() {
        let csaf: Csaf =
            serde_json::from_str(include_str!("../../../../test-data/rhsa-2023_1441.json"))
                .expect("example data must parse");
        assert!(
            check_vulnerabilities_cve_ids(&csaf)
                .first()
                .expect("must return an item")
                .contains("CWE-704")
        );
    }

    /// Verify the csaf file does not have any vulnerabilities
    #[tokio::test]
    async fn test_check_vulnerabilities_size() {
        let csaf: Csaf =
            serde_json::from_str(include_str!("../../../../test-data/rhsa-2023_3408.json"))
                .expect("example data must parse");
        assert_eq!(check_vulnerabilities_size(&csaf).len(), 1);
    }

    /// Verify product do not match in branches and relationships
    #[tokio::test]
    async fn test_branches_relationships_product_match() {
        let csaf: Csaf =
            serde_json::from_str(include_str!("../../../../test-data/rhsa-2023_4378.json"))
                .expect("example data must parse");
        assert!(
            check_branches_relationships_product_match(&csaf)
                .first()
                .expect("must return an item")
                .contains(
                    "notmatch-NFV-9.2.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-284.25.1.rt14.310.el9_2.src"
                )
        );
    }
}