Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 2 | /** |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame] | 3 | * Copyright (C) 2013 Regents of the University of California. |
| 4 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 5 | * See COPYING for copyright and distribution information. |
| 6 | */ |
| 7 | |
Jeff Thompson | 7a67cb6 | 2013-08-26 11:43:18 -0700 | [diff] [blame] | 8 | #include "../c/util/crypto.h" |
| 9 | #include "../c/encoding/binary-xml-data.h" |
| 10 | #include "../encoding/binary-xml-encoder.hpp" |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 11 | #include <ndn-cpp/sha256-with-rsa-signature.hpp> |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 12 | #include "../util/logging.hpp" |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 13 | #include <ndn-cpp/security/security-exception.hpp> |
| 14 | #include <ndn-cpp/security/policy/policy-manager.hpp> |
Jeff Thompson | f309aa6 | 2013-10-31 17:03:54 -0700 | [diff] [blame] | 15 | #include "policy/validation-request.hpp" |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 16 | #include <ndn-cpp/security/key-chain.hpp> |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 17 | |
| 18 | using namespace std; |
Jeff Thompson | d4144fe | 2013-09-18 15:59:57 -0700 | [diff] [blame] | 19 | using namespace ndn::ptr_lib; |
Jeff Thompson | 2381da8 | 2013-11-06 14:34:09 -0800 | [diff] [blame] | 20 | using namespace ndn::func_lib; |
Jeff Thompson | 9bdeb6d | 2013-11-06 14:30:07 -0800 | [diff] [blame] | 21 | #if NDN_CPP_HAVE_STD_FUNCTION |
Jeff Thompson | 09324ed | 2013-11-06 14:40:35 -0800 | [diff] [blame] | 22 | // In the std library, the placeholders are in a different namespace than boost. |
| 23 | using namespace ndn::func_lib::placeholders; |
Jeff Thompson | 9bdeb6d | 2013-11-06 14:30:07 -0800 | [diff] [blame] | 24 | #endif |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 25 | |
| 26 | namespace ndn { |
| 27 | |
Jeff Thompson | 1596639 | 2013-12-04 17:37:17 -0800 | [diff] [blame] | 28 | /** |
| 29 | * Verify the signature on the data packet using the given public key. If there is no data.getDefaultWireEncoding(), |
| 30 | * this calls data.wireEncode() to set it. |
| 31 | * @param data The data packet with the signed portion and the signature to verify. The data packet must have a |
| 32 | * Sha256WithRsaSignature. |
| 33 | * @param publicKey The public key used to verify the signature. |
| 34 | * @return true if the signature verifies, false if not. |
| 35 | * @throw SecurityException if data does not have a Sha256WithRsaSignature. |
| 36 | */ |
| 37 | static bool |
| 38 | verifySha256WithRsaSignature(const Data& data, const PublicKey& publicKey) |
| 39 | { |
| 40 | const Sha256WithRsaSignature *signature = dynamic_cast<const Sha256WithRsaSignature*>(data.getSignature()); |
| 41 | if (!signature) |
| 42 | throw SecurityException("signature is not Sha256WithRsaSignature."); |
| 43 | |
| 44 | // Set the data packet's default wire encoding if it is not already there. |
| 45 | if (signature->getDigestAlgorithm().size() != 0) |
| 46 | // TODO: Allow a non-default digest algorithm. |
| 47 | throw UnrecognizedDigestAlgorithmException("Cannot verify a data packet with a non-default digest algorithm."); |
| 48 | if (!data.getDefaultWireEncoding()) |
| 49 | data.wireEncode(); |
| 50 | |
| 51 | // Set signedPortionDigest to the digest of the signed portion of the wire encoding. |
| 52 | uint8_t signedPortionDigest[SHA256_DIGEST_LENGTH]; |
| 53 | ndn_digestSha256(data.getDefaultWireEncoding().signedBuf(), data.getDefaultWireEncoding().signedSize(), signedPortionDigest); |
| 54 | |
| 55 | // Verify the signedPortionDigest. |
| 56 | // Use a temporary pointer since d2i updates it. |
| 57 | const uint8_t *derPointer = publicKey.getKeyDer().buf(); |
| 58 | RSA *rsaPublicKey = d2i_RSA_PUBKEY(NULL, &derPointer, publicKey.getKeyDer().size()); |
| 59 | if (!rsaPublicKey) |
| 60 | throw UnrecognizedKeyFormatException("Error decoding public key in d2i_RSAPublicKey"); |
| 61 | int success = RSA_verify |
| 62 | (NID_sha256, signedPortionDigest, sizeof(signedPortionDigest), (uint8_t *)signature->getSignature().buf(), |
| 63 | signature->getSignature().size(), rsaPublicKey); |
| 64 | // Free the public key before checking for success. |
| 65 | RSA_free(rsaPublicKey); |
| 66 | |
| 67 | // RSA_verify returns 1 for a valid signature. |
| 68 | return (success == 1); |
| 69 | } |
| 70 | |
Jeff Thompson | 29ce310 | 2013-09-27 11:47:48 -0700 | [diff] [blame] | 71 | KeyChain::KeyChain(const shared_ptr<IdentityManager>& identityManager, const shared_ptr<PolicyManager>& policyManager) |
| 72 | : identityManager_(identityManager), policyManager_(policyManager), face_(0), maxSteps_(100) |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 73 | { |
| 74 | } |
| 75 | |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 76 | void |
Jeff Thompson | 29ce310 | 2013-09-27 11:47:48 -0700 | [diff] [blame] | 77 | KeyChain::sign(Data& data, const Name& certificateName, WireFormat& wireFormat) |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 78 | { |
Jeff Thompson | 29ce310 | 2013-09-27 11:47:48 -0700 | [diff] [blame] | 79 | identityManager_->signByCertificate(data, certificateName, wireFormat); |
| 80 | } |
| 81 | |
Jeff Thompson | c01e178 | 2013-10-21 14:08:42 -0700 | [diff] [blame] | 82 | shared_ptr<Signature> |
| 83 | KeyChain::sign(const uint8_t* buffer, size_t bufferLength, const Name& certificateName) |
| 84 | { |
| 85 | return identityManager_->signByCertificate(buffer, bufferLength, certificateName); |
| 86 | } |
| 87 | |
Jeff Thompson | 29ce310 | 2013-09-27 11:47:48 -0700 | [diff] [blame] | 88 | void |
| 89 | KeyChain::signByIdentity(Data& data, const Name& identityName, WireFormat& wireFormat) |
| 90 | { |
| 91 | Name signingCertificateName; |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 92 | |
Jeff Thompson | 29ce310 | 2013-09-27 11:47:48 -0700 | [diff] [blame] | 93 | if (identityName.getComponentCount() == 0) { |
| 94 | Name inferredIdentity = policyManager_->inferSigningIdentity(data.getName()); |
| 95 | if (inferredIdentity.getComponentCount() == 0) |
| 96 | signingCertificateName = identityManager_->getDefaultCertificateName(); |
| 97 | else |
| 98 | signingCertificateName = identityManager_->getDefaultCertificateNameForIdentity(inferredIdentity); |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 99 | } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 100 | else |
Jeff Thompson | 29ce310 | 2013-09-27 11:47:48 -0700 | [diff] [blame] | 101 | signingCertificateName = identityManager_->getDefaultCertificateNameForIdentity(identityName); |
| 102 | |
| 103 | if (signingCertificateName.getComponentCount() == 0) |
| 104 | throw SecurityException("No qualified certificate name found!"); |
| 105 | |
| 106 | if (!policyManager_->checkSigningPolicy(data.getName(), signingCertificateName)) |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 107 | throw SecurityException("Signing Cert name does not comply with signing policy"); |
Jeff Thompson | 29ce310 | 2013-09-27 11:47:48 -0700 | [diff] [blame] | 108 | |
Jeff Thompson | 56e6265 | 2013-10-31 16:13:25 -0700 | [diff] [blame] | 109 | identityManager_->signByCertificate(data, signingCertificateName, wireFormat); |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Jeff Thompson | e9ffe79 | 2013-10-22 10:58:48 -0700 | [diff] [blame] | 112 | shared_ptr<Signature> |
| 113 | KeyChain::signByIdentity(const uint8_t* buffer, size_t bufferLength, const Name& identityName) |
| 114 | { |
| 115 | Name signingCertificateName = identityManager_->getDefaultCertificateNameForIdentity(identityName); |
Jeff Thompson | c01e178 | 2013-10-21 14:08:42 -0700 | [diff] [blame] | 116 | |
Jeff Thompson | e9ffe79 | 2013-10-22 10:58:48 -0700 | [diff] [blame] | 117 | if (signingCertificateName.size() == 0) |
| 118 | throw SecurityException("No qualified certificate name found!"); |
Jeff Thompson | c01e178 | 2013-10-21 14:08:42 -0700 | [diff] [blame] | 119 | |
Jeff Thompson | e9ffe79 | 2013-10-22 10:58:48 -0700 | [diff] [blame] | 120 | return identityManager_->signByCertificate(buffer, bufferLength, signingCertificateName); |
| 121 | } |
Jeff Thompson | c01e178 | 2013-10-21 14:08:42 -0700 | [diff] [blame] | 122 | |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 123 | void |
Jeff Thompson | 7c5d231 | 2013-09-25 16:07:15 -0700 | [diff] [blame] | 124 | KeyChain::verifyData |
| 125 | (const shared_ptr<Data>& data, const OnVerified& onVerified, const OnVerifyFailed& onVerifyFailed, int stepCount) |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 126 | { |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 127 | _LOG_TRACE("Enter Verify"); |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 128 | |
Jeff Thompson | f309aa6 | 2013-10-31 17:03:54 -0700 | [diff] [blame] | 129 | if (policyManager_->requireVerify(*data)) { |
| 130 | shared_ptr<ValidationRequest> nextStep = policyManager_->checkVerificationPolicy |
| 131 | (data, stepCount, onVerified, onVerifyFailed); |
Jeff Thompson | cda349e | 2013-11-05 17:37:39 -0800 | [diff] [blame] | 132 | if (nextStep) |
| 133 | face_->expressInterest |
| 134 | (*nextStep->interest_, |
| 135 | bind(&KeyChain::onCertificateData, this, _1, _2, nextStep), |
| 136 | bind(&KeyChain::onCertificateInterestTimeout, this, _1, nextStep->retry_, onVerifyFailed, data, nextStep)); |
Jeff Thompson | f309aa6 | 2013-10-31 17:03:54 -0700 | [diff] [blame] | 137 | } |
| 138 | else if (policyManager_->skipVerifyAndTrust(*data)) |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 139 | onVerified(data); |
| 140 | else |
Jeff Thompson | 29ce310 | 2013-09-27 11:47:48 -0700 | [diff] [blame] | 141 | onVerifyFailed(data); |
Jeff Thompson | 1e90d8c | 2013-08-12 16:09:25 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Jeff Thompson | cda349e | 2013-11-05 17:37:39 -0800 | [diff] [blame] | 144 | void |
| 145 | KeyChain::onCertificateData(const shared_ptr<const Interest> &interest, const shared_ptr<Data> &data, shared_ptr<ValidationRequest> nextStep) |
| 146 | { |
| 147 | // Try to verify the certificate (data) according to the parameters in nextStep. |
| 148 | verifyData(data, nextStep->onVerified_, nextStep->onVerifyFailed_, nextStep->stepCount_); |
| 149 | } |
| 150 | |
| 151 | void |
| 152 | KeyChain::onCertificateInterestTimeout |
| 153 | (const shared_ptr<const Interest> &interest, int retry, const OnVerifyFailed& onVerifyFailed, const shared_ptr<Data> &data, |
| 154 | shared_ptr<ValidationRequest> nextStep) |
| 155 | { |
| 156 | if (retry > 0) |
| 157 | // Issue the same expressInterest as in verifyData except decrement retry. |
| 158 | face_->expressInterest |
| 159 | (*interest, |
| 160 | bind(&KeyChain::onCertificateData, this, _1, _2, nextStep), |
| 161 | bind(&KeyChain::onCertificateInterestTimeout, this, _1, retry - 1, onVerifyFailed, data, nextStep)); |
| 162 | else |
| 163 | onVerifyFailed(data); |
| 164 | } |
| 165 | |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 166 | } |