Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 1 | /** |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame] | 2 | * Copyright (C) 2013 Regents of the University of California. |
| 3 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #include <stdexcept> |
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 | 20af073 | 2013-09-12 17:01:45 -0700 | [diff] [blame] | 11 | #include "../sha256-with-rsa-signature.hpp" |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 12 | #include "key-chain.hpp" |
| 13 | |
| 14 | using namespace std; |
Jeff Thompson | d4144fe | 2013-09-18 15:59:57 -0700 | [diff] [blame] | 15 | using namespace ndn::ptr_lib; |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 16 | |
| 17 | namespace ndn { |
| 18 | |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 19 | #if 1 |
Jeff Thompson | 3df8137 | 2013-08-09 12:02:37 -0700 | [diff] [blame] | 20 | static unsigned char DEFAULT_PUBLIC_KEY_DER[] = { |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 21 | 0x30, 0x81, 0x9F, 0x30, 0x0D, 0x06, 0x09, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x81, |
| 22 | 0x8D, 0x00, 0x30, 0x81, 0x89, 0x02, 0x81, 0x81, 0x00, 0xE1, 0x7D, 0x30, 0xA7, 0xD8, 0x28, 0xAB, 0x1B, 0x84, 0x0B, 0x17, |
| 23 | 0x54, 0x2D, 0xCA, 0xF6, 0x20, 0x7A, 0xFD, 0x22, 0x1E, 0x08, 0x6B, 0x2A, 0x60, 0xD1, 0x6C, 0xB7, 0xF5, 0x44, 0x48, 0xBA, |
| 24 | 0x9F, 0x3F, 0x08, 0xBC, 0xD0, 0x99, 0xDB, 0x21, 0xDD, 0x16, 0x2A, 0x77, 0x9E, 0x61, 0xAA, 0x89, 0xEE, 0xE5, 0x54, 0xD3, |
| 25 | 0xA4, 0x7D, 0xE2, 0x30, 0xBC, 0x7A, 0xC5, 0x90, 0xD5, 0x24, 0x06, 0x7C, 0x38, 0x98, 0xBB, 0xA6, 0xF5, 0xDC, 0x43, 0x60, |
| 26 | 0xB8, 0x45, 0xED, 0xA4, 0x8C, 0xBD, 0x9C, 0xF1, 0x26, 0xA7, 0x23, 0x44, 0x5F, 0x0E, 0x19, 0x52, 0xD7, 0x32, 0x5A, 0x75, |
| 27 | 0xFA, 0xF5, 0x56, 0x14, 0x4F, 0x9A, 0x98, 0xAF, 0x71, 0x86, 0xB0, 0x27, 0x86, 0x85, 0xB8, 0xE2, 0xC0, 0x8B, 0xEA, 0x87, |
| 28 | 0x17, 0x1B, 0x4D, 0xEE, 0x58, 0x5C, 0x18, 0x28, 0x29, 0x5B, 0x53, 0x95, 0xEB, 0x4A, 0x17, 0x77, 0x9F, 0x02, 0x03, 0x01, |
| 29 | 0x00, 01 |
| 30 | }; |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 31 | #endif |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 32 | |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 33 | static bool |
| 34 | verifySignature(const Data& data /*, const Publickey& publickey */) |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 35 | { |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 36 | #if 0 |
| 37 | using namespace CryptoPP; |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 38 | |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 39 | Blob unsignedData(data.getSignedBlob()->signed_buf(), data.getSignedBlob()->signed_size()); |
| 40 | bool result = false; |
| 41 | |
| 42 | // Temporarily hardwire. It should be assigned by Signature.getAlgorithm(). |
| 43 | DigestAlgorithm digestAlg = DIGEST_SHA256; |
| 44 | // Temporarily hardwire. It should be assigned by Publickey.getKeyType(). |
| 45 | KeyType keyType = KEY_TYPE_RSA; |
| 46 | if (keyType == KEY_TYPE_RSA) { |
| 47 | RSA::PublicKey pubKey; |
| 48 | ByteQueue queue; |
Jeff Thompson | 3df8137 | 2013-08-09 12:02:37 -0700 | [diff] [blame] | 49 | |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 50 | queue.Put((const byte*)publickey.getKeyBlob ().buf (), publickey.getKeyBlob ().size ()); |
| 51 | pubKey.Load(queue); |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 52 | |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 53 | if (DIGEST_SHA256 == digestAlg) { |
| 54 | Ptr<const signature::Sha256WithRsa> sigPtr = boost::dynamic_pointer_cast<const signature::Sha256WithRsa> (data.getSignature()); |
| 55 | const Blob & sigBits = sigPtr->getSignatureBits(); |
Jeff Thompson | 3c73da4 | 2013-08-12 11:19:05 -0700 | [diff] [blame] | 56 | |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 57 | RSASS<PKCS1v15, SHA256>::Verifier verifier (pubKey); |
| 58 | result = verifier.VerifyMessage((const byte*) unsignedData.buf(), unsignedData.size(), (const byte*)sigBits.buf(), sigBits.size()); |
| 59 | _LOG_DEBUG("Signature verified? " << data.getName() << " " << boolalpha << result); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | return result; |
| 64 | #else |
| 65 | const Sha256WithRsaSignature *signature = dynamic_cast<const Sha256WithRsaSignature*>(data.getSignature()); |
Jeff Thompson | 20af073 | 2013-09-12 17:01:45 -0700 | [diff] [blame] | 66 | if (!signature) |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 67 | throw std::runtime_error("signature is not Sha256WithRsaSignature."); |
Jeff Thompson | 20af073 | 2013-09-12 17:01:45 -0700 | [diff] [blame] | 68 | |
| 69 | if (signature->getDigestAlgorithm().size() != 0) |
Jeff Thompson | 1e90d8c | 2013-08-12 16:09:25 -0700 | [diff] [blame] | 70 | // TODO: Allow a non-default digest algorithm. |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 71 | throw std::runtime_error("Cannot verify a data packet with a non-default digest algorithm."); |
| 72 | if (!data.getWireEncoding()) |
| 73 | throw std::runtime_error("The Data wireEncoding is null."); |
Jeff Thompson | 9c66170 | 2013-09-13 14:35:44 -0700 | [diff] [blame] | 74 | unsigned char signedPortionDigest[SHA256_DIGEST_LENGTH]; |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 75 | ndn_digestSha256(data.getWireEncoding().signedBuf(), data.getWireEncoding().signedSize(), signedPortionDigest); |
Jeff Thompson | 1e90d8c | 2013-08-12 16:09:25 -0700 | [diff] [blame] | 76 | |
Jeff Thompson | 9c66170 | 2013-09-13 14:35:44 -0700 | [diff] [blame] | 77 | // Verify the signedPortionDigest. |
Jeff Thompson | 192e86b | 2013-08-13 11:34:24 -0700 | [diff] [blame] | 78 | // Use a temporary pointer since d2i updates it. |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 79 | const unsigned char *derPointer = DEFAULT_PUBLIC_KEY_DER; |
| 80 | RSA *publicKey = d2i_RSA_PUBKEY(NULL, &derPointer, sizeof(DEFAULT_PUBLIC_KEY_DER)); |
Jeff Thompson | 1e90d8c | 2013-08-12 16:09:25 -0700 | [diff] [blame] | 81 | if (!publicKey) |
| 82 | throw std::runtime_error("Error decoding public key in d2i_RSAPublicKey"); |
| 83 | int success = RSA_verify |
Jeff Thompson | 9c66170 | 2013-09-13 14:35:44 -0700 | [diff] [blame] | 84 | (NID_sha256, signedPortionDigest, sizeof(signedPortionDigest), (unsigned char *)signature->getSignature().buf(), |
Jeff Thompson | 20af073 | 2013-09-12 17:01:45 -0700 | [diff] [blame] | 85 | signature->getSignature().size(), publicKey); |
Jeff Thompson | 1e90d8c | 2013-08-12 16:09:25 -0700 | [diff] [blame] | 86 | // Free the public key before checking for success. |
| 87 | RSA_free(publicKey); |
| 88 | |
| 89 | return (success == 1); |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 90 | #endif |
| 91 | } |
| 92 | |
| 93 | void |
| 94 | KeyChain::signData(Data& data, const Name& signerName, bool byKeyName, WireFormat& wireFormat) |
| 95 | { |
| 96 | Name certificateName; |
| 97 | |
| 98 | #if 0 |
| 99 | if(signerName.getComponentCount() == 0) |
| 100 | certificateName = m_identityManager->getDefaultCertificateNameByIdentity(m_policyManager->inferSigningIdentity (data.getName ())); |
| 101 | else { |
| 102 | if (byKeyName) |
| 103 | certificateName = m_identityManager->getDefaultCertificateNameByIdentity(signerName); |
| 104 | else |
| 105 | certificateName = signerName; |
| 106 | } |
| 107 | |
| 108 | if (certificateName.getComponentCount() == 0) |
| 109 | throw std::runtime_error("No qualified certificate name found!"); |
| 110 | |
| 111 | if (!m_policyManager->checkSigningPolicy (data.getName (), certificateName)) |
| 112 | throw std::runtime_error("Signing Cert name does not comply with signing policy"); |
| 113 | #endif |
| 114 | |
| 115 | identityManager_->signByCertificate(data, certificateName, wireFormat); |
| 116 | } |
| 117 | |
| 118 | void |
Jeff Thompson | d4144fe | 2013-09-18 15:59:57 -0700 | [diff] [blame] | 119 | KeyChain::verifyData(const shared_ptr<Data>& data, const OnVerified& onVerified, const OnVerifyFailed& onVerifyFailed) |
Jeff Thompson | 2ce8f49 | 2013-09-17 18:01:25 -0700 | [diff] [blame] | 120 | { |
| 121 | #if 0 |
| 122 | _LOG_TRACE("Enter Verify"); |
| 123 | #endif |
| 124 | |
| 125 | #if 0 |
| 126 | if (m_policyManager->requireVerify(*dataPtr)) |
| 127 | stepVerify(dataPtr, true, m_maxStep, onVerified, onVerifyFailed); |
| 128 | else if(m_policyManager->skipVerify(*dataPtr)) |
| 129 | #else |
| 130 | if (verifySignature(*data)) |
| 131 | #endif |
| 132 | onVerified(data); |
| 133 | else |
| 134 | onVerifyFailed(); |
Jeff Thompson | 1e90d8c | 2013-08-12 16:09:25 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 137 | } |