crypt_policy/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// Copyright 2024 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! crypt_policy contains all the key policy logic for the different operations that can be done
//! with hardware keys.  Keeping the policy logic in one place makes it easier to audit.

use anyhow::{bail, Context, Error};

#[derive(Clone, Copy, PartialEq)]
pub enum Policy {
    Null,
    TeeRequired,
    TeeTransitional,
    TeeOpportunistic,
}

impl TryFrom<String> for Policy {
    type Error = Error;

    fn try_from(value: String) -> Result<Self, Self::Error> {
        match value.as_ref() {
            "null" => Ok(Policy::Null),
            "tee" => Ok(Policy::TeeRequired),
            "tee-transitional" => Ok(Policy::TeeTransitional),
            "tee-opportunistic" => Ok(Policy::TeeOpportunistic),
            p => bail!("unrecognized key source policy: '{p}'"),
        }
    }
}

/// Reads the policy from well-known locations in `/boot`.
pub async fn get_policy() -> Result<Policy, Error> {
    let policy = fuchsia_fs::file::read_in_namespace_to_string("/boot/config/zxcrypt").await;
    let policy = match policy {
        Ok(policy) => policy,
        // In tests, the configuration is found in the same package as fshost.
        Err(_) => fuchsia_fs::file::read_in_namespace_to_string("/pkg/config/zxcrypt").await?,
    };
    policy.try_into()
}

#[derive(Debug)]
pub enum KeySource {
    Null,
    Tee,
}

/// Fxfs and zxcrypt have different null keys, so operations have to indicate which is ultimately
/// going to consume the key we produce.
pub enum KeyConsumer {
    /// The null key for fxfs is a 128-bit key with the bytes "zxcrypt" at the beginning and then
    /// padded with zeros. This is for legacy reasons - earlier versions of this code picked this
    /// key, so we need to continue to use it to avoid wiping everyone's null-key-encrypted fxfs
    /// data partitions.
    Fxfs,
    /// The null key for zxcrypt is a 256-bit key containing all zeros.
    Zxcrypt,
}

impl KeySource {
    pub async fn get_key(&self, consumer: KeyConsumer) -> Result<Vec<u8>, Error> {
        match self {
            KeySource::Null => match consumer {
                KeyConsumer::Fxfs => {
                    let mut key = b"zxcrypt".to_vec();
                    key.resize(16, 0);
                    Ok(key)
                }
                KeyConsumer::Zxcrypt => Ok(vec![0u8; 32]),
            },
            KeySource::Tee => {
                // Regardless of the consumer of this key, the key we retrieve with kms is always
                // named "zxcrypt". This is so that old recovery images that might not be aware of
                // fxfs can still wipe the data keys during a factory reset.
                kms_stateless::get_hardware_derived_key(kms_stateless::KeyInfo::new_zxcrypt())
                    .await
                    .context("failed to get hardware key")
            }
        }
    }
}

/// Returns all valid key sources when formatting a volume, based on `policy`.
pub fn format_sources(policy: Policy) -> Vec<KeySource> {
    match policy {
        Policy::Null => vec![KeySource::Null],
        Policy::TeeRequired => vec![KeySource::Tee],
        Policy::TeeTransitional => vec![KeySource::Tee],
        Policy::TeeOpportunistic => vec![KeySource::Tee, KeySource::Null],
    }
}

/// Returns all valid key sources when unsealing a volume, based on `policy`.
pub fn unseal_sources(policy: Policy) -> Vec<KeySource> {
    match policy {
        Policy::Null => vec![KeySource::Null],
        Policy::TeeRequired => vec![KeySource::Tee],
        Policy::TeeTransitional => vec![KeySource::Tee, KeySource::Null],
        Policy::TeeOpportunistic => vec![KeySource::Tee, KeySource::Null],
    }
}