openpgp-ca-lib 0.14.1

OpenPGP CA is a tool for managing and certifying OpenPGP keys
Documentation
// SPDX-FileCopyrightText: 2023 Heiko Schaefer <heiko@schaefer.name>
// SPDX-License-Identifier: GPL-3.0-or-later
//
// This file is part of OpenPGP CA
// https://gitlab.com/openpgp-ca/openpgp-ca

//! Infrastructure for switchable OpenPGP CA Backends.
//!
//! The backend configuration of a CA instance is persisted in the CA database in `ca.backend`.

use std::fmt::Formatter;

use anyhow::anyhow;

pub(crate) mod card;
pub(crate) mod softkey;
pub(crate) mod split;

#[derive(PartialEq)]
pub(crate) enum Backend {
    Softkey,
    Card(Card),
    SplitFront,
    SplitBack(Box<Backend>),
}

impl Backend {
    pub(crate) fn from_config(backend: Option<&str>) -> anyhow::Result<Self> {
        if let Some(backend) = backend {
            if backend.starts_with(&(BACKEND_TYPE_SPLIT_BACK.to_string() + "("))
                && backend.ends_with(')')
            {
                let inner = &backend[BACKEND_TYPE_SPLIT_FRONT.len()..(backend.len() - 1)];
                let inner = match inner {
                    "" => None,
                    s => Some(s),
                };

                let inner_backend = Self::from_config(inner)?;

                Ok(Backend::SplitBack(Box::new(inner_backend)))
            } else if backend == BACKEND_TYPE_SPLIT_FRONT {
                Ok(Backend::SplitFront)
            } else if let Some((bt, conf)) = backend.split_once(';') {
                match bt {
                    BACKEND_TYPE_CARD => Ok(Backend::Card(Card::from_config(conf)?)),
                    _ => Err(anyhow!("Unsupported backend type: '{}'", bt)),
                }
            } else {
                Err(anyhow!(
                    "Unexpected backend configuration format: '{}'",
                    backend
                ))
            }
        } else {
            Ok(Backend::Softkey)
        }
    }

    pub(crate) fn to_config(&self) -> Option<String> {
        match self {
            Backend::Softkey => None,
            Backend::Card(c) => Some(format!("{};{}", BACKEND_TYPE_CARD, c.to_config())),
            Backend::SplitFront => Some(BACKEND_TYPE_SPLIT_FRONT.to_string()),
            Backend::SplitBack(b) => Some(format!(
                "{}({})",
                BACKEND_TYPE_SPLIT_BACK,
                b.to_config().unwrap_or("".to_string())
            )),
        }
    }
}

impl std::fmt::Display for Backend {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        match self {
            Backend::Softkey => write!(f, "Softkey (private key material in CA database)"),
            Backend::Card(c) => write!(f, "OpenPGP card {c}"),
            Backend::SplitFront => write!(f, "Split-mode front instance"),
            Backend::SplitBack(b) => write!(f, "Split-mode back instance (based on: {})", *b),
        }
    }
}

const BACKEND_TYPE_CARD: &str = "card";
const BACKEND_TYPE_SPLIT_FRONT: &str = "split-front";
const BACKEND_TYPE_SPLIT_BACK: &str = "split-back";

#[derive(PartialEq)]
pub(crate) struct Card {
    pub(crate) ident: String,
    pub(crate) user_pin: String,
}

impl Card {
    pub(crate) fn from_config(conf: &str) -> anyhow::Result<Self> {
        let c: Vec<_> = conf.split(';').collect();
        if c.len() != 2 {
            return Err(anyhow::anyhow!(
                "Unexpected DB config setting for card backend: '{}'.",
                conf
            ));
        }

        let ident = c[0].to_string();
        let user_pin = c[1].to_string();

        Ok(Card { ident, user_pin })
    }

    pub(crate) fn to_config(&self) -> String {
        format!("{};{}", self.ident, self.user_pin)
    }
}

impl std::fmt::Display for Card {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(f, "{} [User PIN {}]", self.ident, self.user_pin)
    }
}

/// Backend-specific implementation of certification and signing operations
pub trait CertificationBackend {
    /// Make a certification signature.
    ///
    /// `op` should only use the Signer once.
    ///
    /// Some backends (e.g. OpenPGP card) may not allow more than one signing operation in one go.
    /// (cards can be configured to require presentation of PIN before each signing operation)
    fn certify(
        &self,
        op: &mut dyn FnMut(&mut dyn sequoia_openpgp::crypto::Signer) -> anyhow::Result<()>,
    ) -> anyhow::Result<()>;

    /// Make a regular signature.
    ///
    /// `op` should only use the Signer once.
    ///
    /// Some backends (e.g. OpenPGP card) may not allow more than one signing operation in one go.
    /// (cards can be configured to require presentation of PIN before each signing operation)
    fn sign(
        &self,
        op: &mut dyn FnMut(&mut dyn sequoia_openpgp::crypto::Signer) -> anyhow::Result<()>,
    ) -> anyhow::Result<()>;
}