Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2013 Regents of the University of California. |
| 4 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
| 5 | * See COPYING for copyright and distribution information. |
| 6 | */ |
| 7 | |
Yingdi Yu | 4f32463 | 2014-01-15 18:10:03 -0800 | [diff] [blame] | 8 | #include <ndn-cpp/security/sec-tpm-memory.hpp> |
| 9 | #include <ndn-cpp/security/public-key.hpp> |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 10 | #include <openssl/ssl.h> |
| 11 | #include <openssl/sha.h> |
| 12 | #include <openssl/rsa.h> |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 13 | |
| 14 | using namespace std; |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 15 | |
| 16 | namespace ndn { |
| 17 | |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 18 | /** |
| 19 | * RsaPrivateKey is a simple class to hold an RSA private key. |
| 20 | */ |
Yingdi Yu | 8758158 | 2014-01-14 14:28:39 -0800 | [diff] [blame] | 21 | class SecTpmMemory::RsaPrivateKey { |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 22 | public: |
| 23 | RsaPrivateKey(const uint8_t *keyDer, size_t keyDerLength) |
| 24 | { |
| 25 | // Use a temporary pointer since d2i updates it. |
| 26 | const uint8_t *derPointer = keyDer; |
| 27 | privateKey_ = d2i_RSAPrivateKey(NULL, &derPointer, keyDerLength); |
| 28 | if (!privateKey_) |
| 29 | throw Error("RsaPrivateKey constructor: Error decoding private key DER"); |
| 30 | } |
| 31 | |
| 32 | ~RsaPrivateKey() |
| 33 | { |
| 34 | if (privateKey_) |
| 35 | RSA_free(privateKey_); |
| 36 | } |
| 37 | |
| 38 | rsa_st * |
| 39 | getPrivateKey() |
| 40 | { |
| 41 | return privateKey_; |
| 42 | } |
| 43 | |
| 44 | private: |
| 45 | rsa_st * privateKey_; |
| 46 | }; |
| 47 | |
Yingdi Yu | 8758158 | 2014-01-14 14:28:39 -0800 | [diff] [blame] | 48 | SecTpmMemory::~SecTpmMemory() |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 49 | { |
| 50 | } |
| 51 | |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 52 | void |
Yingdi Yu | 8758158 | 2014-01-14 14:28:39 -0800 | [diff] [blame] | 53 | SecTpmMemory::setKeyPairForKeyName(const Name& keyName, |
| 54 | uint8_t *publicKeyDer, size_t publicKeyDerLength, |
| 55 | uint8_t *privateKeyDer, size_t privateKeyDerLength) |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 56 | { |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 57 | publicKeyStore_[keyName.toUri()] = ptr_lib::make_shared<PublicKey>(publicKeyDer, publicKeyDerLength); |
Jeff Thompson | ce11576 | 2013-12-18 14:59:56 -0800 | [diff] [blame] | 58 | privateKeyStore_[keyName.toUri()] = ptr_lib::make_shared<RsaPrivateKey>(privateKeyDer, privateKeyDerLength); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | void |
Yingdi Yu | 8758158 | 2014-01-14 14:28:39 -0800 | [diff] [blame] | 62 | SecTpmMemory::generateKeyPairInTpm(const Name& keyName, KeyType keyType, int keySize) |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 63 | { |
| 64 | #if 1 |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 65 | throw Error("MemoryPrivateKeyStorage::generateKeyPair not implemented"); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 66 | #endif |
| 67 | } |
| 68 | |
Jeff Thompson | ce11576 | 2013-12-18 14:59:56 -0800 | [diff] [blame] | 69 | ptr_lib::shared_ptr<PublicKey> |
Yingdi Yu | 8758158 | 2014-01-14 14:28:39 -0800 | [diff] [blame] | 70 | SecTpmMemory::getPublicKeyFromTpm(const Name& keyName) |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 71 | { |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 72 | PublicKeyStore::iterator publicKey = publicKeyStore_.find(keyName.toUri()); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 73 | if (publicKey == publicKeyStore_.end()) |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 74 | throw Error(string("MemoryPrivateKeyStorage: Cannot find public key ") + keyName.toUri()); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 75 | return publicKey->second; |
| 76 | } |
| 77 | |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 78 | Block |
Yingdi Yu | b4bb85a | 2014-01-16 10:11:04 -0800 | [diff] [blame] | 79 | SecTpmMemory::signInTpm(const uint8_t *data, size_t dataLength, |
Yingdi Yu | 8758158 | 2014-01-14 14:28:39 -0800 | [diff] [blame] | 80 | const Name& keyName, |
| 81 | DigestAlgorithm digestAlgorithm) |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 82 | { |
| 83 | if (digestAlgorithm != DIGEST_ALGORITHM_SHA256) |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 84 | return ConstBufferPtr(); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 85 | |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 86 | // Find the private key and sign. |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 87 | PrivateKeyStore::iterator privateKey = privateKeyStore_.find(keyName.toUri()); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 88 | if (privateKey == privateKeyStore_.end()) |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 89 | throw Error(string("MemoryPrivateKeyStorage: Cannot find private key ") + keyName.toUri()); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 90 | |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 91 | uint8_t digest[SHA256_DIGEST_LENGTH]; |
| 92 | SHA256_CTX sha256; |
| 93 | SHA256_Init(&sha256); |
| 94 | SHA256_Update(&sha256, data, dataLength); |
| 95 | SHA256_Final(digest, &sha256); |
| 96 | |
| 97 | BufferPtr signatureBuffer = ptr_lib::make_shared<Buffer>(); |
| 98 | signatureBuffer->resize(RSA_size(privateKey->second->getPrivateKey())); |
| 99 | |
| 100 | unsigned int signatureBitsLength; |
| 101 | if (!RSA_sign(NID_sha256, digest, sizeof(digest), |
| 102 | signatureBuffer->buf(), |
| 103 | &signatureBitsLength, |
| 104 | privateKey->second->getPrivateKey())) |
| 105 | { |
| 106 | throw Error("Error in RSA_sign"); |
| 107 | } |
| 108 | |
| 109 | return Block(Tlv::SignatureValue, signatureBuffer); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 112 | void |
Yingdi Yu | b4bb85a | 2014-01-16 10:11:04 -0800 | [diff] [blame] | 113 | SecTpmMemory::signInTpm(Data &d, |
Yingdi Yu | 8758158 | 2014-01-14 14:28:39 -0800 | [diff] [blame] | 114 | const Name& keyName, |
| 115 | DigestAlgorithm digestAlgorithm) |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 116 | { |
| 117 | if (digestAlgorithm != DIGEST_ALGORITHM_SHA256) |
| 118 | Error("MemoryPrivateKeyStorage::sign only SHA256 digest is supported"); |
| 119 | |
| 120 | // Find the private key and sign. |
| 121 | PrivateKeyStore::iterator privateKey = privateKeyStore_.find(keyName.toUri()); |
| 122 | if (privateKey == privateKeyStore_.end()) |
| 123 | throw Error(string("MemoryPrivateKeyStorage: Cannot find private key ") + keyName.toUri()); |
| 124 | |
| 125 | uint8_t digest[SHA256_DIGEST_LENGTH]; |
| 126 | SHA256_CTX sha256; |
| 127 | SHA256_Init(&sha256); |
| 128 | |
| 129 | SHA256_Update(&sha256, d.getName(). wireEncode().wire(), d.getName(). wireEncode().size()); |
| 130 | SHA256_Update(&sha256, d.getMetaInfo().wireEncode().wire(), d.getMetaInfo().wireEncode().size()); |
| 131 | SHA256_Update(&sha256, d.getContent(). wire(), d.getContent(). size()); |
| 132 | SHA256_Update(&sha256, d.getSignature().getInfo(). wire(), d.getSignature().getInfo(). size()); |
| 133 | |
| 134 | SHA256_Final(digest, &sha256); |
| 135 | |
| 136 | BufferPtr signatureBuffer = ptr_lib::make_shared<Buffer>(); |
| 137 | signatureBuffer->resize(RSA_size(privateKey->second->getPrivateKey())); |
| 138 | |
| 139 | unsigned int signatureBitsLength; |
| 140 | if (!RSA_sign(NID_sha256, digest, sizeof(digest), |
| 141 | signatureBuffer->buf(), |
| 142 | &signatureBitsLength, |
| 143 | privateKey->second->getPrivateKey())) |
| 144 | { |
| 145 | throw Error("Error in RSA_sign"); |
| 146 | } |
| 147 | |
| 148 | d.setSignatureValue(Block(Tlv::SignatureValue, signatureBuffer)); |
| 149 | } |
| 150 | |
| 151 | ConstBufferPtr |
Yingdi Yu | b4bb85a | 2014-01-16 10:11:04 -0800 | [diff] [blame] | 152 | SecTpmMemory::decryptInTpm(const Name& keyName, const uint8_t* data, size_t dataLength, bool isSymmetric) |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 153 | { |
| 154 | #if 1 |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 155 | throw Error("MemoryPrivateKeyStorage::decrypt not implemented"); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 156 | #endif |
| 157 | } |
| 158 | |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 159 | ConstBufferPtr |
Yingdi Yu | b4bb85a | 2014-01-16 10:11:04 -0800 | [diff] [blame] | 160 | SecTpmMemory::encryptInTpm(const Name& keyName, const uint8_t* data, size_t dataLength, bool isSymmetric) |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 161 | { |
| 162 | #if 1 |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 163 | throw Error("MemoryPrivateKeyStorage::encrypt not implemented"); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 164 | #endif |
| 165 | } |
| 166 | |
| 167 | void |
Yingdi Yu | b4bb85a | 2014-01-16 10:11:04 -0800 | [diff] [blame] | 168 | SecTpmMemory::generateSymmetricKeyInTpm(const Name& keyName, KeyType keyType, int keySize) |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 169 | { |
| 170 | #if 1 |
Alexander Afanasyev | 04b22a9 | 2014-01-05 22:40:17 -0800 | [diff] [blame] | 171 | throw Error("MemoryPrivateKeyStorage::generateKey not implemented"); |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 172 | #endif |
| 173 | } |
| 174 | |
| 175 | bool |
Yingdi Yu | b4bb85a | 2014-01-16 10:11:04 -0800 | [diff] [blame] | 176 | SecTpmMemory::doesKeyExistInTpm(const Name& keyName, KeyClass keyClass) |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 177 | { |
| 178 | if (keyClass == KEY_CLASS_PUBLIC) |
| 179 | return publicKeyStore_.find(keyName.toUri()) != publicKeyStore_.end(); |
| 180 | else if (keyClass == KEY_CLASS_PRIVATE) |
| 181 | return privateKeyStore_.find(keyName.toUri()) != privateKeyStore_.end(); |
| 182 | else |
| 183 | // KEY_CLASS_SYMMETRIC not implemented yet. |
| 184 | return false; |
| 185 | } |
| 186 | |
Jeff Thompson | 6c314bc | 2013-09-23 18:09:38 -0700 | [diff] [blame] | 187 | } |