diff --git a/src/utils/keys.cpp b/src/utils/keys.cpp index 6f73af8a5..99908916e 100644 --- a/src/utils/keys.cpp +++ b/src/utils/keys.cpp @@ -1,90 +1,117 @@ /* -*- mode: c++; c-basic-offset:4 -*- utils/keys.cpp This file is part of Kleopatra, the KDE keymanager SPDX-FileCopyrightText: 2022 g10 Code GmbH SPDX-FileContributor: Ingo Klöcker SPDX-License-Identifier: GPL-2.0-or-later */ #include "keys.h" #include #include #include // needed for GPGME_VERSION_NUMBER #include #include #include namespace { bool isLastValidUserID(const GpgME::UserID &userId) { if (Kleo::isRevokedOrExpired(userId)) { return false; } const auto userIds = userId.parent().userIDs(); const int numberOfValidUserIds = std::count_if(std::begin(userIds), std::end(userIds), [](const auto &u) { return !Kleo::isRevokedOrExpired(u); }); return numberOfValidUserIds == 1; } } bool Kleo::isSelfSignature(const GpgME::UserID::Signature &signature) { return !qstrcmp(signature.parent().parent().keyID(), signature.signerKeyID()); } bool Kleo::isRevokedOrExpired(const GpgME::UserID &userId) { const auto sigs = userId.signatures(); std::vector selfSigs; std::copy_if(std::begin(sigs), std::end(sigs), std::back_inserter(selfSigs), &Kleo::isSelfSignature); std::sort(std::begin(selfSigs), std::end(selfSigs)); // check the most recent signature const auto sig = !selfSigs.empty() ? selfSigs.back() : GpgME::UserID::Signature{}; return !sig.isNull() && (sig.isRevokation() || sig.isExpired()); } bool Kleo::canCreateCertifications(const GpgME::Key &key) { return key.canCertify() && canBeUsedForSecretKeyOperations(key); } bool Kleo::canBeUsedForSecretKeyOperations(const GpgME::Key &key) { #if GPGME_VERSION_NUMBER >= 0x011102 // 1.17.2 // we need to check the primary subkey because Key::hasSecret() is also true if just the secret key stub of an offline key is available return key.subkey(0).isSecret(); #else // older versions of GpgME did not always set the secret flag for card keys return key.subkey(0).isSecret() || key.subkey(0).isCardKey(); #endif } bool Kleo::canRevokeUserID(const GpgME::UserID &userId) { return (!userId.isNull() // && userId.parent().protocol() == GpgME::OpenPGP && !isLastValidUserID(userId)); } bool Kleo::isSecretKeyStoredInKeyRing(const GpgME::Key &key) { return key.subkey(0).isSecret() && !key.subkey(0).isCardKey(); } bool Kleo::userHasCertificationKey() { const auto secretKeys = KeyCache::instance()->secretKeys(); return Kleo::any_of(secretKeys, [](const auto &k) { return (k.protocol() == GpgME::OpenPGP) && canCreateCertifications(k); }); } + +Kleo::CertificationRevocationFeasibility Kleo::userCanRevokeCertification(const GpgME::UserID::Signature &certification) +{ + const auto certificationKey = KeyCache::instance()->findByKeyIDOrFingerprint(certification.signerKeyID()); + const bool isSelfSignature = qstrcmp(certification.parent().parent().keyID(), certification.signerKeyID()) == 0; + if (!certificationKey.hasSecret()) { + return CertificationNotMadeWithOwnKey; + } else if (isSelfSignature) { + return CertificationIsSelfSignature; + } else if (certification.isRevokation()) { + return CertificationIsRevocation; + } else if (certification.isExpired()) { + return CertificationIsExpired; + } else if (certification.isInvalid()) { + return CertificationIsInvalid; + } else if (!canCreateCertifications(certificationKey)) { + return CertificationKeyNotAvailable; + } + return CertificationCanBeRevoked; +} + +bool Kleo::userCanRevokeCertifications(const GpgME::UserID &userId) +{ + return Kleo::any_of(userId.signatures(), [](const auto &certification) { + return userCanRevokeCertification(certification) == CertificationCanBeRevoked; + }); +} diff --git a/src/utils/keys.h b/src/utils/keys.h index 6bc84ec6f..e7fd72877 100644 --- a/src/utils/keys.h +++ b/src/utils/keys.h @@ -1,69 +1,91 @@ /* -*- mode: c++; c-basic-offset:4 -*- utils/keys.h This file is part of Kleopatra, the KDE keymanager SPDX-FileCopyrightText: 2022 g10 Code GmbH SPDX-FileContributor: Ingo Klöcker SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once #include namespace Kleo { struct CertificatePair { GpgME::Key openpgp; GpgME::Key cms; }; /** Returns true if \p signature is a self-signature. */ bool isSelfSignature(const GpgME::UserID::Signature &signature); /** * Returns true if the most recent self-signature of \p userId is a revocation * signature or if it has expired. */ bool isRevokedOrExpired(const GpgME::UserID &userId); /** * Returns true if \p key can be used to certify user IDs, i.e. if the key * has the required capability and if the secret key of the (primary) * certification subkey is available in the keyring or on a smart card. */ bool canCreateCertifications(const GpgME::Key &key); /** * Returns true if \p key can be used for operations requiring the secret key, * i.e. if the secret key of the primary key pair is available in the keyring * or on a smart card. * * \note Key::hasSecret() also returns true if a secret key stub, e.g. of an * offline key, is available in the keyring. */ bool canBeUsedForSecretKeyOperations(const GpgME::Key &key); /** * Returns true if \p userId can be revoked, i.e. if it isn't the last valid * user ID of an OpenPGP key. */ bool canRevokeUserID(const GpgME::UserID &userId); /** * Returns true if the secret key of the primary key pair of \p key is stored * in the keyring. */ bool isSecretKeyStoredInKeyRing(const GpgME::Key &key); /** * Returns true if any keys suitable for certifying user IDs are available in * the keyring or on a smart card. * * \sa canCreateCertifications */ bool userHasCertificationKey(); +enum CertificationRevocationFeasibility { + CertificationCanBeRevoked = 0, + CertificationNotMadeWithOwnKey, + CertificationIsSelfSignature, + CertificationIsRevocation, + CertificationIsExpired, + CertificationIsInvalid, + CertificationKeyNotAvailable, +}; + +/** + * Checks if the user can revoke the given \p certification. + */ +CertificationRevocationFeasibility userCanRevokeCertification(const GpgME::UserID::Signature &certification); + +/** + * Returns true if the user can revoke any of the certifications of the \p userId. + * + * \sa userCanRevokeCertification + */ +bool userCanRevokeCertifications(const GpgME::UserID &userId); + }