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
use std::{collections::HashMap, sync::Arc};

use anyhow::Result;
use thiserror::Error;

use crate::common::{
    crypto::{
        signature::{Signature, SignatureBundle, Signer},
        x25519,
    },
    namespace::Namespace,
    sgx::EnclaveIdentity,
};

use super::beacon::EpochTime;

pub mod churp;

/// Context used to sign key manager policies.
const POLICY_SIGNATURE_CONTEXT: &[u8] = b"oasis-core/keymanager: policy";

/// Context used to sign encrypted key manager master secrets.
const ENCRYPTED_MASTER_SECRET_SIGNATURE_CONTEXT: &[u8] =
    b"oasis-core/keymanager: encrypted master secret";

/// Context used to sign encrypted key manager ephemeral secrets.
const ENCRYPTED_EPHEMERAL_SECRET_SIGNATURE_CONTEXT: &[u8] =
    b"oasis-core/keymanager: encrypted ephemeral secret";

/// Errors emitted by the key manager module.
#[derive(Error, Debug)]
pub enum Error {
    #[error("invalid signature")]
    InvalidSignature,
}

/// Key manager access control policy.
#[derive(Clone, Debug, Default, PartialEq, Eq, cbor::Encode, cbor::Decode)]
pub struct PolicySGX {
    pub serial: u32,
    pub id: Namespace,
    pub enclaves: HashMap<EnclaveIdentity, EnclavePolicySGX>,
    #[cbor(optional)]
    pub master_secret_rotation_interval: EpochTime,
    #[cbor(optional)]
    pub max_ephemeral_secret_age: EpochTime,
}

/// Per enclave key manager access control policy.
#[derive(Clone, Debug, Default, PartialEq, Eq, cbor::Encode, cbor::Decode)]
pub struct EnclavePolicySGX {
    pub may_query: HashMap<Namespace, Vec<EnclaveIdentity>>,
    pub may_replicate: Vec<EnclaveIdentity>,
}

/// Signed key manager access control policy.
#[derive(Clone, Debug, Default, PartialEq, Eq, cbor::Encode, cbor::Decode)]
pub struct SignedPolicySGX {
    pub policy: PolicySGX,
    pub signatures: Vec<SignatureBundle>,
}

impl SignedPolicySGX {
    /// Verify the signatures.
    pub fn verify(&self) -> Result<&PolicySGX> {
        let raw_policy = cbor::to_vec(self.policy.clone());
        for sig in &self.signatures {
            sig.signature
                .verify(&sig.public_key, POLICY_SIGNATURE_CONTEXT, &raw_policy)
                .map_err(|_| Error::InvalidSignature)?;
        }

        Ok(&self.policy)
    }
}

/// A secret encrypted with Deoxys-II MRAE algorithm.
#[derive(Clone, Default, Debug, PartialEq, Eq, cbor::Encode, cbor::Decode)]
pub struct EncryptedSecret {
    /// Checksum for validating decrypted secret.
    pub checksum: Vec<u8>,
    /// Public key to derive the symmetric key for decryption.
    pub pub_key: x25519::PublicKey,
    /// A map of REK encrypted secrets.
    pub ciphertexts: HashMap<x25519::PublicKey, Vec<u8>>,
}

/// Encrypted master secret.
#[derive(Clone, Default, Debug, PartialEq, Eq, cbor::Encode, cbor::Decode)]
pub struct EncryptedMasterSecret {
    /// Runtime ID of the key manager.
    pub runtime_id: Namespace,
    /// Generation of the secret.
    pub generation: u64,
    /// Epoch time in which the secret was created.
    pub epoch: EpochTime,
    /// Encrypted secret.
    pub secret: EncryptedSecret,
}

/// Encrypted ephemeral secret.
#[derive(Clone, Default, Debug, PartialEq, Eq, cbor::Encode, cbor::Decode)]
pub struct EncryptedEphemeralSecret {
    /// Runtime ID of the key manager.
    pub runtime_id: Namespace,
    /// Epoch time to which the ephemeral secret belongs.
    pub epoch: EpochTime,
    /// Encrypted secret.
    pub secret: EncryptedSecret,
}

/// Signed encrypted master secret (RAK).
#[derive(Clone, Default, Debug, PartialEq, Eq, cbor::Encode, cbor::Decode)]
pub struct SignedEncryptedMasterSecret {
    /// Encrypted master secret.
    pub secret: EncryptedMasterSecret,
    /// Signature of the encrypted master secret.
    pub signature: Signature,
}

impl SignedEncryptedMasterSecret {
    pub fn new(secret: EncryptedMasterSecret, signer: &Arc<dyn Signer>) -> Result<Self> {
        let signature = signer.sign(
            ENCRYPTED_MASTER_SECRET_SIGNATURE_CONTEXT,
            &cbor::to_vec(secret.clone()),
        )?;
        Ok(Self { secret, signature })
    }
}

/// Signed encrypted ephemeral secret (RAK).
#[derive(Clone, Default, Debug, PartialEq, Eq, cbor::Encode, cbor::Decode)]
pub struct SignedEncryptedEphemeralSecret {
    /// Encrypted ephemeral secret.
    pub secret: EncryptedEphemeralSecret,
    /// Signature of the encrypted ephemeral secret.
    pub signature: Signature,
}

impl SignedEncryptedEphemeralSecret {
    pub fn new(secret: EncryptedEphemeralSecret, signer: &Arc<dyn Signer>) -> Result<Self> {
        let signature = signer.sign(
            ENCRYPTED_EPHEMERAL_SECRET_SIGNATURE_CONTEXT,
            &cbor::to_vec(secret.clone()),
        )?;
        Ok(Self { secret, signature })
    }
}