tor_key_forge/traits.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 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
//! All the traits of this crate.
use downcast_rs::{impl_downcast, Downcast};
use rand::RngCore;
use ssh_key::{
private::{Ed25519Keypair, Ed25519PrivateKey, KeypairData, OpaqueKeypair},
public::{Ed25519PublicKey, KeyData, OpaquePublicKey},
rand_core::CryptoRng,
Algorithm, AlgorithmName,
};
use tor_error::internal;
use tor_llcrypto::pk::{curve25519, ed25519};
use crate::certs::CertData;
use crate::key_type::CertType;
use crate::{
ssh::{SshKeyData, ED25519_EXPANDED_ALGORITHM_NAME, X25519_ALGORITHM_NAME},
ErasedKey, KeyType, KeystoreItemType, Result,
};
use std::result::Result as StdResult;
/// A random number generator for generating [`EncodableItem`]s.
pub trait KeygenRng: RngCore + CryptoRng {}
impl<T> KeygenRng for T where T: RngCore + CryptoRng {}
/// A trait for generating fresh keys.
pub trait Keygen {
/// Generate a new key of this type.
fn generate(rng: &mut dyn KeygenRng) -> Result<Self>
where
Self: Sized;
}
/// A key that can be serialized to, and deserialized from.
//
// When adding a new `EncodableItem` impl, you must also update
// [`SshKeyData::into_erased`](crate::SshKeyData::into_erased) to
// return the corresponding concrete type implementing `EncodableItem`
// (as a `dyn EncodableItem`).
pub trait EncodableItem: Downcast {
/// The type of the key.
fn item_type() -> KeystoreItemType
where
Self: Sized;
/// Return the key as a [`KeystoreItem`].
fn as_keystore_item(&self) -> Result<KeystoreItem>;
}
impl_downcast!(EncodableItem);
/// A public key, keypair, or key certificate.
#[derive(Debug, Clone, derive_more::From)]
#[non_exhaustive]
pub enum KeystoreItem {
/// A public key or a keypair.
Key(SshKeyData),
/// A certificate.
Cert(CertData),
}
impl KeystoreItem {
/// Return the [`KeystoreItemType`] of this item.
pub fn item_type(&self) -> Result<KeystoreItemType> {
match self {
KeystoreItem::Key(ssh_key_data) => ssh_key_data.key_type().map(KeystoreItemType::Key),
KeystoreItem::Cert(cert) => Ok(KeystoreItemType::Cert(cert.cert_type())),
}
}
/// Convert the key/cert material into a known type,
/// and return the type-erased value.
///
/// The caller is expected to downcast the value returned to the correct concrete type.
pub fn into_erased(self) -> Result<ErasedKey> {
match self {
KeystoreItem::Key(ssh_key_data) => ssh_key_data.into_erased(),
KeystoreItem::Cert(cert_data) => cert_data.into_erased(),
}
}
}
/// A key that can be converted to an [`EncodableItem`].
//
// NOTE: Conceptually, the `ToEncodableKey` and `EncodableItem` traits serve the same purpose (they
// provide information about how to encode/decode a key).
//
// The reason we have two traits instead of just one is because `EncodableItem` cannot have an
// associated type: for instance, if it did, we'd need to either give
// `tor-keymgr::Keystore::insert` a generic parameter (which would make `Keystore` object-unsafe),
// or specify a concrete type for the associated type of the `EncodableItem` (which would defeat the
// whole purpose of the trait, i.e. to enable users to store their own "encodable key" types).
//
// `ToEncodableKey` is used in the `KeyMgr` impl, where the associated type isn't an issue because
// the `KeyMgr` implementation is generic over `K: ToEncodableKey`. The `Keystore`s themselves only
// receive `&dyn EncodableItem`s.
//
pub trait ToEncodableKey: From<Self::KeyPair>
where
Self::Key: From<<Self::KeyPair as ToEncodableKey>::Key>,
{
/// The key type this can be converted to/from.
type Key: EncodableItem + 'static;
/// The KeyPair (secret+public) of which this key is a subset. For secret
/// keys, this type is Self. For public keys, this type is the
/// corresponding (secret) keypair.
///
/// The associated type constraint (`where`) expresses the fact that a
/// public key is always derivable from its corresponding secret key.
///
type KeyPair: ToEncodableKey;
/// Convert this key to a type that implements [`EncodableItem`].
fn to_encodable_key(self) -> Self::Key;
/// Convert an [`EncodableItem`] to another key type.
fn from_encodable_key(key: Self::Key) -> Self;
}
/// A trait representing an encodable certificate.
///
/// `K` represents the (Rust) type of the subject key.
pub trait ToEncodableCert<K: ToEncodableKey>: Clone {
/// The low-level type this can be converted to/from.
type Cert: EncodableItem + 'static;
/// The (Rust) type of the signing key.
type SigningKey: ToEncodableKey;
/// Validate this certificate.
//
// This function will be called from functions such as KeyMgr::get_key_and_cert()
// to validate the cert using the provided subject key
// (the concrete type of which is given by the `K` in KeyMgr::get_key_and_cert())
// and ToEncodableCert::SigningKey.
//
/// This function should return an error if
/// * the certificate is not timely
/// (i.e. it is expired, or not yet valid), or
/// * the certificate is not well-signed, or
/// * the subject key or signing key in the certificate do not match
/// the subject and signing keys specified in `cert_spec`
fn validate(
&self,
subject: &K,
signed_with: &Self::SigningKey,
) -> StdResult<(), InvalidCertError>;
/// Convert this cert to a type that implements [`EncodableItem`].
fn to_encodable_cert(self) -> Self::Cert;
/// Convert an [`EncodableItem`] to another cert type.
fn from_encodable_cert(cert: Self::Cert) -> Self
where
Self: Sized;
}
/// The error type returned by [`ToEncodableCert::validate`].
#[derive(thiserror::Error, Debug, Clone)]
#[non_exhaustive]
pub enum InvalidCertError {
// TODO
}
impl Keygen for curve25519::StaticKeypair {
fn generate(rng: &mut dyn KeygenRng) -> Result<Self>
where
Self: Sized,
{
let secret = curve25519::StaticSecret::random_from_rng(rng);
let public = curve25519::PublicKey::from(&secret);
Ok(curve25519::StaticKeypair { secret, public })
}
}
impl EncodableItem for curve25519::StaticKeypair {
fn item_type() -> KeystoreItemType
where
Self: Sized,
{
KeyType::X25519StaticKeypair.into()
}
fn as_keystore_item(&self) -> Result<KeystoreItem> {
let algorithm_name = AlgorithmName::new(X25519_ALGORITHM_NAME)
.map_err(|_| internal!("invalid algorithm name"))?;
let ssh_public = OpaquePublicKey::new(
self.public.to_bytes().to_vec(),
Algorithm::Other(algorithm_name),
);
let keypair = OpaqueKeypair::new(self.secret.to_bytes().to_vec(), ssh_public);
SshKeyData::try_from_keypair_data(KeypairData::Other(keypair)).map(KeystoreItem::from)
}
}
impl EncodableItem for curve25519::PublicKey {
fn item_type() -> KeystoreItemType
where
Self: Sized,
{
KeyType::X25519PublicKey.into()
}
fn as_keystore_item(&self) -> Result<KeystoreItem> {
let algorithm_name = AlgorithmName::new(X25519_ALGORITHM_NAME)
.map_err(|_| internal!("invalid algorithm name"))?;
let ssh_public =
OpaquePublicKey::new(self.to_bytes().to_vec(), Algorithm::Other(algorithm_name));
SshKeyData::try_from_key_data(KeyData::Other(ssh_public)).map(KeystoreItem::from)
}
}
impl Keygen for ed25519::Keypair {
fn generate(mut rng: &mut dyn KeygenRng) -> Result<Self>
where
Self: Sized,
{
Ok(ed25519::Keypair::generate(&mut rng))
}
}
impl EncodableItem for ed25519::Keypair {
fn item_type() -> KeystoreItemType
where
Self: Sized,
{
KeyType::Ed25519Keypair.into()
}
fn as_keystore_item(&self) -> Result<KeystoreItem> {
let keypair = Ed25519Keypair {
public: Ed25519PublicKey(self.verifying_key().to_bytes()),
private: Ed25519PrivateKey::from_bytes(self.as_bytes()),
};
SshKeyData::try_from_keypair_data(KeypairData::Ed25519(keypair)).map(KeystoreItem::from)
}
}
impl EncodableItem for ed25519::PublicKey {
fn item_type() -> KeystoreItemType
where
Self: Sized,
{
KeyType::Ed25519PublicKey.into()
}
fn as_keystore_item(&self) -> Result<KeystoreItem> {
let key_data = Ed25519PublicKey(self.to_bytes());
SshKeyData::try_from_key_data(ssh_key::public::KeyData::Ed25519(key_data))
.map(KeystoreItem::from)
}
}
impl Keygen for ed25519::ExpandedKeypair {
fn generate(rng: &mut dyn KeygenRng) -> Result<Self>
where
Self: Sized,
{
let keypair = <ed25519::Keypair as Keygen>::generate(rng)?;
Ok((&keypair).into())
}
}
impl EncodableItem for ed25519::ExpandedKeypair {
fn item_type() -> KeystoreItemType
where
Self: Sized,
{
KeyType::Ed25519ExpandedKeypair.into()
}
fn as_keystore_item(&self) -> Result<KeystoreItem> {
let algorithm_name = AlgorithmName::new(ED25519_EXPANDED_ALGORITHM_NAME)
.map_err(|_| internal!("invalid algorithm name"))?;
let ssh_public = OpaquePublicKey::new(
self.public().to_bytes().to_vec(),
Algorithm::Other(algorithm_name),
);
let keypair = OpaqueKeypair::new(self.to_secret_key_bytes().to_vec(), ssh_public);
SshKeyData::try_from_keypair_data(KeypairData::Other(keypair)).map(KeystoreItem::from)
}
}
impl EncodableItem for tor_cert::EncodedEd25519Cert {
fn item_type() -> KeystoreItemType
where
Self: Sized,
{
CertType::Ed25519TorCert.into()
}
fn as_keystore_item(&self) -> Result<KeystoreItem> {
Ok(CertData::TorEd25519Cert(self.clone()).into())
}
}