blob: d4de6fcdb96af41b35bfaf5fbdd859766fa8254b [file] [log] [blame]
Jeff Thompson6c314bc2013-09-23 18:09:38 -07001/* -*- 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
Alexander Afanasyev09c613f2014-01-29 00:23:58 -08008#include "security/sec-tpm-memory.hpp"
9#include "security/public-key.hpp"
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080010#include <openssl/ssl.h>
11#include <openssl/sha.h>
12#include <openssl/rsa.h>
Jeff Thompson6c314bc2013-09-23 18:09:38 -070013
14using namespace std;
Jeff Thompson6c314bc2013-09-23 18:09:38 -070015
16namespace ndn {
17
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080018/**
19 * RsaPrivateKey is a simple class to hold an RSA private key.
20 */
Yingdi Yu87581582014-01-14 14:28:39 -080021class SecTpmMemory::RsaPrivateKey {
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080022public:
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
44private:
45 rsa_st * privateKey_;
46};
47
Yingdi Yu87581582014-01-14 14:28:39 -080048SecTpmMemory::~SecTpmMemory()
Jeff Thompson6c314bc2013-09-23 18:09:38 -070049{
50}
51
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080052void
Yingdi Yu87581582014-01-14 14:28:39 -080053SecTpmMemory::setKeyPairForKeyName(const Name& keyName,
54 uint8_t *publicKeyDer, size_t publicKeyDerLength,
55 uint8_t *privateKeyDer, size_t privateKeyDerLength)
Jeff Thompson6c314bc2013-09-23 18:09:38 -070056{
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080057 publicKeyStore_[keyName.toUri()] = ptr_lib::make_shared<PublicKey>(publicKeyDer, publicKeyDerLength);
Jeff Thompsonce115762013-12-18 14:59:56 -080058 privateKeyStore_[keyName.toUri()] = ptr_lib::make_shared<RsaPrivateKey>(privateKeyDer, privateKeyDerLength);
Jeff Thompson6c314bc2013-09-23 18:09:38 -070059}
60
61void
Yingdi Yu87581582014-01-14 14:28:39 -080062SecTpmMemory::generateKeyPairInTpm(const Name& keyName, KeyType keyType, int keySize)
Jeff Thompson6c314bc2013-09-23 18:09:38 -070063{
64#if 1
Yingdi Yu28fd32f2014-01-28 19:03:03 -080065 throw Error("SecTpmMemory::generateKeyPair not implemented");
Jeff Thompson6c314bc2013-09-23 18:09:38 -070066#endif
67}
68
Yingdi Yu28fd32f2014-01-28 19:03:03 -080069void
70SecTpmMemory::deleteKeyPairInTpm(const Name &keyName)
71{
72 throw Error("SecTpmMemory::deleteKeyPairInTpm not implemented");
73}
74
Jeff Thompsonce115762013-12-18 14:59:56 -080075ptr_lib::shared_ptr<PublicKey>
Yingdi Yu87581582014-01-14 14:28:39 -080076SecTpmMemory::getPublicKeyFromTpm(const Name& keyName)
Jeff Thompson6c314bc2013-09-23 18:09:38 -070077{
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080078 PublicKeyStore::iterator publicKey = publicKeyStore_.find(keyName.toUri());
Jeff Thompson6c314bc2013-09-23 18:09:38 -070079 if (publicKey == publicKeyStore_.end())
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080080 throw Error(string("MemoryPrivateKeyStorage: Cannot find public key ") + keyName.toUri());
Jeff Thompson6c314bc2013-09-23 18:09:38 -070081 return publicKey->second;
82}
83
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080084Block
Yingdi Yub4bb85a2014-01-16 10:11:04 -080085SecTpmMemory::signInTpm(const uint8_t *data, size_t dataLength,
Yingdi Yu87581582014-01-14 14:28:39 -080086 const Name& keyName,
87 DigestAlgorithm digestAlgorithm)
Jeff Thompson6c314bc2013-09-23 18:09:38 -070088{
89 if (digestAlgorithm != DIGEST_ALGORITHM_SHA256)
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080090 return ConstBufferPtr();
Jeff Thompson6c314bc2013-09-23 18:09:38 -070091
Jeff Thompson6c314bc2013-09-23 18:09:38 -070092 // Find the private key and sign.
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080093 PrivateKeyStore::iterator privateKey = privateKeyStore_.find(keyName.toUri());
Jeff Thompson6c314bc2013-09-23 18:09:38 -070094 if (privateKey == privateKeyStore_.end())
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080095 throw Error(string("MemoryPrivateKeyStorage: Cannot find private key ") + keyName.toUri());
Jeff Thompson6c314bc2013-09-23 18:09:38 -070096
Alexander Afanasyev04b22a92014-01-05 22:40:17 -080097 uint8_t digest[SHA256_DIGEST_LENGTH];
98 SHA256_CTX sha256;
99 SHA256_Init(&sha256);
100 SHA256_Update(&sha256, data, dataLength);
101 SHA256_Final(digest, &sha256);
102
103 BufferPtr signatureBuffer = ptr_lib::make_shared<Buffer>();
104 signatureBuffer->resize(RSA_size(privateKey->second->getPrivateKey()));
105
106 unsigned int signatureBitsLength;
107 if (!RSA_sign(NID_sha256, digest, sizeof(digest),
108 signatureBuffer->buf(),
109 &signatureBitsLength,
110 privateKey->second->getPrivateKey()))
111 {
112 throw Error("Error in RSA_sign");
113 }
114
115 return Block(Tlv::SignatureValue, signatureBuffer);
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700116}
117
Alexander Afanasyev04b22a92014-01-05 22:40:17 -0800118ConstBufferPtr
Yingdi Yub4bb85a2014-01-16 10:11:04 -0800119SecTpmMemory::decryptInTpm(const Name& keyName, const uint8_t* data, size_t dataLength, bool isSymmetric)
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700120{
121#if 1
Alexander Afanasyev04b22a92014-01-05 22:40:17 -0800122 throw Error("MemoryPrivateKeyStorage::decrypt not implemented");
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700123#endif
124}
125
Alexander Afanasyev04b22a92014-01-05 22:40:17 -0800126ConstBufferPtr
Yingdi Yub4bb85a2014-01-16 10:11:04 -0800127SecTpmMemory::encryptInTpm(const Name& keyName, const uint8_t* data, size_t dataLength, bool isSymmetric)
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700128{
129#if 1
Alexander Afanasyev04b22a92014-01-05 22:40:17 -0800130 throw Error("MemoryPrivateKeyStorage::encrypt not implemented");
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700131#endif
132}
133
134void
Yingdi Yub4bb85a2014-01-16 10:11:04 -0800135SecTpmMemory::generateSymmetricKeyInTpm(const Name& keyName, KeyType keyType, int keySize)
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700136{
137#if 1
Alexander Afanasyev04b22a92014-01-05 22:40:17 -0800138 throw Error("MemoryPrivateKeyStorage::generateKey not implemented");
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700139#endif
140}
141
142bool
Yingdi Yub4bb85a2014-01-16 10:11:04 -0800143SecTpmMemory::doesKeyExistInTpm(const Name& keyName, KeyClass keyClass)
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700144{
145 if (keyClass == KEY_CLASS_PUBLIC)
146 return publicKeyStore_.find(keyName.toUri()) != publicKeyStore_.end();
147 else if (keyClass == KEY_CLASS_PRIVATE)
148 return privateKeyStore_.find(keyName.toUri()) != privateKeyStore_.end();
149 else
150 // KEY_CLASS_SYMMETRIC not implemented yet.
151 return false;
152}
153
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700154}