krill 0.16.0

Resource Public Key Infrastructure (RPKI) daemon
Documentation
use std::{
    collections::HashMap,
    sync::{Arc, RwLock},
};

use bytes::Bytes;
use openssl::{
    hash::MessageDigest,
    pkey::{PKey, Private},
    rsa::Rsa,
};

use rpki::{
    crypto::signer::KeyError,
    crypto::{
        signer::SigningAlgorithm, KeyIdentifier, PublicKey, PublicKeyFormat,
        RpkiSignature, RpkiSignatureAlgorithm, Signature, SignatureAlgorithm,
        SigningError,
    },
};

use crate::commons::crypto::{
    dispatch::signerinfo::SignerMapper, SignerError, SignerHandle,
};

pub enum FnIdx {
    CreateRegistrationKey,
    SignRegistrationChallenge,
    SetHandle,
    GetName,
    GetInfo,
    CreateKey,
    GetKeyInfo,
    DestroyKey,
    Sign,
    SignOneOff,
    Count,
}

#[derive(Debug)]
pub struct MockSignerCallCounts {
    call_counts: RwLock<Vec<u32>>,
}

impl MockSignerCallCounts {
    pub fn new() -> Self {
        let call_counts = vec![0; FnIdx::Count as usize];

        Self {
            call_counts: RwLock::new(call_counts),
        }
    }

    pub fn get(&self, fn_idx: FnIdx) -> u32 {
        self.call_counts.read().unwrap()[fn_idx as usize]
    }

    pub fn inc(&self, fn_idx: FnIdx) {
        self.call_counts.write().unwrap()[fn_idx as usize] += 1;
    }
}

impl Default for MockSignerCallCounts {
    fn default() -> Self {
        Self::new()
    }
}

pub type CreateRegistrationKeyErrorCb =
    fn(&MockSignerCallCounts) -> Result<(), SignerError>;
pub type SignRegistrationChallengeErrorCb =
    fn(&MockSignerCallCounts) -> Result<(), SignerError>;

pub struct MockSigner {
    name: String,
    info: Option<String>,
    fn_call_counts: Arc<MockSignerCallCounts>,
    handle: RwLock<Option<SignerHandle>>,
    mapper: Arc<SignerMapper>,
    keys: RwLock<HashMap<String, PKey<Private>>>,
    create_registration_key_error_cb: Option<CreateRegistrationKeyErrorCb>,
    sign_registration_challenge_error_cb:
        Option<SignRegistrationChallengeErrorCb>,
}

impl std::fmt::Debug for MockSigner {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("MockSigner").finish()
    }
}

// test interface
impl MockSigner {
    pub fn new(
        name: &str,
        signer_mapper: Arc<SignerMapper>,
        fn_call_counts: Arc<MockSignerCallCounts>,
        create_registration_key_error_cb: Option<
            CreateRegistrationKeyErrorCb,
        >,
        sign_registration_challenge_error_cb: Option<
            SignRegistrationChallengeErrorCb,
        >,
    ) -> Self {
        Self {
            name: name.to_string(),
            info: None,
            fn_call_counts,
            handle: RwLock::new(None),
            mapper: signer_mapper,
            keys: RwLock::new(HashMap::new()),
            create_registration_key_error_cb,
            sign_registration_challenge_error_cb,
        }
    }

    fn inc_fn_call_count(&self, fn_idx: FnIdx) {
        self.fn_call_counts.inc(fn_idx)
    }

    pub fn set_info(&mut self, info: &str) {
        self.info = Some(info.to_string());
    }

    fn build_key(
        &self,
    ) -> Result<(PublicKey, PKey<Private>, KeyIdentifier, String), SignerError>
    {
        // generate a key pair
        let rsa = Rsa::generate(2048)?;
        let pkey = PKey::from_rsa(rsa)?;
        let public_key = Self::public_key_from_pkey(&pkey).unwrap();
        let key_identifier = public_key.key_identifier();

        // remember this private key by its "internal id"
        let internal_id = key_identifier.to_string();
        self.keys
            .write()
            .unwrap()
            .insert(internal_id.clone(), pkey.clone());

        // return the key details to the caller
        Ok((public_key, pkey, key_identifier, internal_id))
    }

    fn sign_with_key<Alg: SignatureAlgorithm, D: AsRef<[u8]> + ?Sized>(
        alg: Alg,
        pkey: &PKey<Private>,
        challenge: &D,
    ) -> Result<Signature<Alg>, SignerError> {
        let signing_algorithm = alg.signing_algorithm();

        if !matches!(signing_algorithm, SigningAlgorithm::RsaSha256) {
            Err(SignerError::UnsupportedSigningAlg(signing_algorithm))
        } else {
            let mut signer =
                ::openssl::sign::Signer::new(MessageDigest::sha256(), pkey)?;
            signer.update(challenge.as_ref())?;
            let signature =
                Signature::new(alg, Bytes::from(signer.sign_to_vec()?));
            Ok(signature)
        }
    }

    fn public_key_from_pkey(
        pkey: &PKey<Private>,
    ) -> Result<PublicKey, SignerError> {
        let bytes =
            Bytes::from(pkey.rsa().unwrap().public_key_to_der().unwrap());
        PublicKey::decode(bytes).map_err(|_| SignerError::DecodeError)
    }

    fn internal_id_from_key_identifier(
        &self,
        key_identifier: &KeyIdentifier,
    ) -> Result<String, SignerError> {
        let lock = self.handle.read().unwrap();
        let signer_handle = lock.as_ref().unwrap();
        self.mapper
            .get_key(signer_handle, key_identifier)
            .map_err(|_| SignerError::KeyNotFound)
    }

    fn load_key(&self, internal_id: &str) -> Option<PKey<Private>> {
        // "load" the private key from storage by its "internal id"
        let keys = self.keys.read().unwrap();
        keys.get(internal_id).cloned()
    }
}

// interface expected by SignerProvider
impl MockSigner {
    pub fn create_registration_key(
        &self,
    ) -> Result<(PublicKey, String), SignerError> {
        self.inc_fn_call_count(FnIdx::CreateRegistrationKey);
        if let Some(err_cb) = &self.create_registration_key_error_cb {
            (err_cb)(&self.fn_call_counts)?;
        }
        let (public_key, _, _, internal_id) = self.build_key().unwrap();
        Ok((public_key, internal_id))
    }

    pub fn sign_registration_challenge<D: AsRef<[u8]> + ?Sized>(
        &self,
        signer_private_key_id: &str,
        challenge: &D,
    ) -> Result<RpkiSignature, SignerError> {
        self.inc_fn_call_count(FnIdx::SignRegistrationChallenge);
        if let Some(err_cb) = &self.sign_registration_challenge_error_cb {
            (err_cb)(&self.fn_call_counts)?;
        }
        let pkey = self
            .load_key(signer_private_key_id)
            .ok_or(SignerError::KeyNotFound)?;

        // sign the given data using the loaded private key
        let signature = Self::sign_with_key(
            RpkiSignatureAlgorithm::default(),
            &pkey,
            challenge,
        )?;

        // return the generated signature to the caller
        Ok(signature)
    }

    pub fn set_handle(&self, handle: SignerHandle) {
        self.inc_fn_call_count(FnIdx::SetHandle);
        // remember the handle that has been generated for us so that we can
        // use it when registering keys with the signer mapper
        self.handle.write().unwrap().replace(handle);
    }

    pub fn get_name(&self) -> &str {
        self.inc_fn_call_count(FnIdx::GetName);
        &self.name
    }

    pub fn get_info(&self) -> Option<String> {
        self.inc_fn_call_count(FnIdx::GetInfo);
        self.info.clone()
    }
}

// Implement the functions defined by the `Signer` trait because
// `SignerProvider` expects to invoke them, but as the dispatching is not
// trait based we don't actually have to implement the `Signer` trait.
impl MockSigner {
    pub fn create_key(
        &self,
        _algorithm: PublicKeyFormat,
    ) -> Result<KeyIdentifier, SignerError> {
        self.inc_fn_call_count(FnIdx::CreateKey);
        let (_, _, key_identifier, internal_id) = self.build_key().unwrap();

        // tell the signer mapper we own this key identifier which maps to our
        // "internal id"
        let lock = self.handle.read().unwrap();
        let signer_handle = lock.as_ref().unwrap();
        self.mapper
            .add_key(signer_handle, &key_identifier, &internal_id)
            .unwrap();

        Ok(key_identifier)
    }

    pub fn get_key_info(
        &self,
        key_identifier: &KeyIdentifier,
    ) -> Result<PublicKey, KeyError<SignerError>> {
        self.inc_fn_call_count(FnIdx::GetKeyInfo);
        let internal_id = self
            .internal_id_from_key_identifier(key_identifier)
            .unwrap();
        let pkey =
            self.load_key(&internal_id).ok_or(KeyError::KeyNotFound)?;
        let public_key = Self::public_key_from_pkey(&pkey).unwrap();
        Ok(public_key)
    }

    pub fn destroy_key(
        &self,
        key_id: &KeyIdentifier,
    ) -> Result<(), KeyError<SignerError>> {
        self.inc_fn_call_count(FnIdx::DestroyKey);
        let internal_id =
            self.internal_id_from_key_identifier(key_id).unwrap();
        let _ = self.keys.write().unwrap().remove(&internal_id);

        // remove the key from the signer mapper as well
        if let Some(signer_handle) = self.handle.read().unwrap().as_ref() {
            self.mapper
                .remove_key(signer_handle, key_id)
                .map_err(|err| {
                    KeyError::Signer(SignerError::Other(err.to_string()))
                })?;
        }

        Ok(())
    }

    pub fn sign<Alg: SignatureAlgorithm, D: AsRef<[u8]> + ?Sized>(
        &self,
        key_identifier: &KeyIdentifier,
        algorithm: Alg,
        data: &D,
    ) -> Result<Signature<Alg>, SigningError<SignerError>> {
        self.inc_fn_call_count(FnIdx::Sign);
        let internal_id =
            self.internal_id_from_key_identifier(key_identifier)?;
        let pkey = self
            .load_key(&internal_id)
            .ok_or(SignerError::KeyNotFound)?;
        Self::sign_with_key(algorithm, &pkey, data)
            .map_err(SigningError::Signer)
    }

    pub fn sign_one_off<Alg: SignatureAlgorithm, D: AsRef<[u8]> + ?Sized>(
        &self,
        algorithm: Alg,
        data: &D,
    ) -> Result<(Signature<Alg>, PublicKey), SignerError> {
        self.inc_fn_call_count(FnIdx::SignOneOff);
        let (public_key, pkey, _, internal_id) = self.build_key().unwrap();
        let signature = Self::sign_with_key(algorithm, &pkey, data).unwrap();
        let _ = self.keys.write().unwrap().remove(&internal_id);
        Ok((signature, public_key))
    }

    pub fn wipe_all_keys(&self) {
        // wipe out all our keys, including the identity key used by the
        // SignerRouter to verify that we are an already known signer.
        self.keys.write().unwrap().clear();
    }
}