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 | 4147191 | 2013-09-12 16:21:50 -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. |
Jeff Thompson | 06e787d | 2013-09-12 19:00:55 -0700 | [diff] [blame] | 4 | * @author: Yingdi Yu <yingdi@cs.ucla.edu> |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame] | 5 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 6 | * See COPYING for copyright and distribution information. |
| 7 | */ |
| 8 | |
| 9 | #ifndef NDN_IDENTITY_MANAGER_HPP |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 10 | #define NDN_IDENTITY_MANAGER_HPP |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 11 | |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 12 | #include "identity-storage.hpp" |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 13 | #include "private-key-storage.hpp" |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 14 | |
Alexander Afanasyev | 64a3d81 | 2014-01-05 23:35:05 -0800 | [diff] [blame^] | 15 | #include "../../data.hpp" |
| 16 | |
Jeff Thompson | 958bf9b | 2013-10-12 17:20:51 -0700 | [diff] [blame] | 17 | namespace ndn { |
| 18 | |
Alexander Afanasyev | 64a3d81 | 2014-01-05 23:35:05 -0800 | [diff] [blame^] | 19 | class IdentityCertificate; |
| 20 | |
Jeff Thompson | ffa36f9 | 2013-09-20 08:42:41 -0700 | [diff] [blame] | 21 | /** |
| 22 | * An IdentityManager is the interface of operations related to identity, keys, and certificates. |
| 23 | */ |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 24 | class IdentityManager { |
| 25 | public: |
Alexander Afanasyev | 64a3d81 | 2014-01-05 23:35:05 -0800 | [diff] [blame^] | 26 | struct Error : public std::runtime_error { Error(const std::string &what) : std::runtime_error(what) {} }; |
| 27 | |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 28 | IdentityManager(const ptr_lib::shared_ptr<IdentityStorage>& identityStorage, const ptr_lib::shared_ptr<PrivateKeyStorage>& privateKeyStorage) |
| 29 | : identityStorage_(identityStorage), privateKeyStorage_(privateKeyStorage) |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 30 | { |
| 31 | } |
| 32 | |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 33 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 34 | * Create an identity by creating a pair of Key-Signing-Key (KSK) for this identity and a self-signed certificate of the KSK. |
| 35 | * @param identityName The name of the identity. |
| 36 | * @return The key name of the auto-generated KSK of the identity. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 37 | */ |
| 38 | Name |
| 39 | createIdentity(const Name& identityName); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 40 | |
| 41 | /** |
| 42 | * Get the default identity. |
| 43 | * @return The default identity name. |
| 44 | */ |
| 45 | Name |
| 46 | getDefaultIdentity() |
| 47 | { |
| 48 | return identityStorage_->getDefaultIdentity(); |
| 49 | } |
| 50 | |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 51 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 52 | * Generate a pair of RSA keys for the specified identity. |
| 53 | * @param identityName The name of the identity. |
| 54 | * @param isKsk true for generating a Key-Signing-Key (KSK), false for a Data-Signing-Key (KSK). |
| 55 | * @param keySize The size of the key. |
| 56 | * @return The generated key name. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 57 | */ |
| 58 | Name |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 59 | generateRSAKeyPair(const Name& identityName, bool isKsk = false, int keySize = 2048); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 60 | |
| 61 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 62 | * Set a key as the default key of an identity. |
| 63 | * @param keyName The name of the key. |
| 64 | * @param identityName the name of the identity. If not specified, the identity name is inferred from the keyName. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 65 | */ |
| 66 | void |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 67 | setDefaultKeyForIdentity(const Name& keyName, const Name& identityName = Name()) |
| 68 | { |
| 69 | identityStorage_->setDefaultKeyNameForIdentity(keyName, identityName); |
| 70 | } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 71 | |
| 72 | /** |
Jeff Thompson | 18bf631 | 2013-10-04 11:23:55 -0700 | [diff] [blame] | 73 | * Get the default key for an identity. |
| 74 | * @param identityName the name of the identity. If omitted, the identity name is inferred from the keyName. |
| 75 | * @return The default key name. |
| 76 | */ |
| 77 | Name |
| 78 | getDefaultKeyNameForIdentity(const Name& identityName = Name()) |
| 79 | { |
| 80 | return identityStorage_->getDefaultKeyNameForIdentity(identityName); |
| 81 | } |
| 82 | |
| 83 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 84 | * Generate a pair of RSA keys for the specified identity and set it as default key for the identity. |
| 85 | * @param identityName The name of the identity. |
| 86 | * @param isKsk true for generating a Key-Signing-Key (KSK), false for a Data-Signing-Key (KSK). |
| 87 | * @param keySize The size of the key. |
| 88 | * @return The generated key name. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 89 | */ |
| 90 | Name |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 91 | generateRSAKeyPairAsDefault(const Name& identityName, bool isKsk = false, int keySize = 2048); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 92 | |
| 93 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 94 | * Get the public key with the specified name. |
| 95 | * @param keyName The name of the key. |
| 96 | * @return The public key. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 97 | */ |
Alexander Afanasyev | 64a3d81 | 2014-01-05 23:35:05 -0800 | [diff] [blame^] | 98 | // ptr_lib::shared_ptr<PublicKey> |
| 99 | // getPublicKey(const Name& keyName) |
| 100 | // { |
| 101 | // return PublicKey::fromDer(identityStorage_->getKey(keyName)); |
| 102 | // } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 103 | |
| 104 | /** |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 105 | * Create an identity certificate for a public key managed by this IdentityManager. |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 106 | * @param certificatePrefix The name of public key to be signed. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 107 | * @param signerCertificateName The name of signing certificate. |
| 108 | * @param notBefore The notBefore value in the validity field of the generated certificate. |
| 109 | * @param notAfter The notAfter vallue in validity field of the generated certificate. |
| 110 | * @return The name of generated identity certificate. |
| 111 | */ |
| 112 | Name |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 113 | createIdentityCertificate |
| 114 | (const Name& certificatePrefix, const Name& signerCertificateName, const MillisecondsSince1970& notBefore, |
| 115 | const MillisecondsSince1970& notAfter); |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 116 | |
| 117 | /** |
| 118 | * Create an identity certificate for a public key supplied by the caller. |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 119 | * @param certificatePrefix The name of public key to be signed. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 120 | * @param publickey The public key to be signed. |
| 121 | * @param signerCertificateName The name of signing certificate. |
| 122 | * @param notBefore The notBefore value in the validity field of the generated certificate. |
| 123 | * @param notAfter The notAfter vallue in validity field of the generated certificate. |
| 124 | * @return The generated identity certificate. |
| 125 | */ |
| 126 | ptr_lib::shared_ptr<IdentityCertificate> |
| 127 | createIdentityCertificate |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 128 | (const Name& certificatePrefix, const PublicKey& publickey, const Name& signerCertificateName, |
| 129 | const MillisecondsSince1970& notBefore, const MillisecondsSince1970& notAfter); |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 130 | |
| 131 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 132 | * Add a certificate into the public key identity storage. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 133 | * @param certificate The certificate to to added. This makes a copy of the certificate. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 134 | */ |
| 135 | void |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 136 | addCertificate(const IdentityCertificate& certificate) |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 137 | { |
| 138 | identityStorage_->addCertificate(certificate); |
| 139 | } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 140 | |
| 141 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 142 | * Set the certificate as the default for its corresponding key. |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 143 | * @param certificateName The certificate. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 144 | */ |
| 145 | void |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 146 | setDefaultCertificateForKey(const IdentityCertificate& certificate); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 147 | |
| 148 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 149 | * Add a certificate into the public key identity storage and set the certificate as the default for its corresponding identity. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 150 | * @param certificate The certificate to be added. This makes a copy of the certificate. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 151 | */ |
| 152 | void |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 153 | addCertificateAsIdentityDefault(const IdentityCertificate& certificate); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 154 | |
| 155 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 156 | * Add a certificate into the public key identity storage and set the certificate as the default of its corresponding key. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 157 | * @param certificate The certificate to be added. This makes a copy of the certificate. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 158 | */ |
| 159 | void |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 160 | addCertificateAsDefault(const IdentityCertificate& certificate); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 161 | |
| 162 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 163 | * Get a certificate with the specified name. |
| 164 | * @param certificateName The name of the requested certificate. |
| 165 | * @return the requested certificate which is valid. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 166 | */ |
Alexander Afanasyev | 64a3d81 | 2014-01-05 23:35:05 -0800 | [diff] [blame^] | 167 | // ptr_lib::shared_ptr<IdentityCertificate> |
| 168 | // getCertificate(const Name& certificateName) |
| 169 | // { |
| 170 | // return ptr_lib::make_shared<IdentityCertificate>(*identityStorage_->getCertificate(certificateName, false)); |
| 171 | // } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 172 | |
| 173 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 174 | * Get a certificate even if the certificate is not valid anymore. |
| 175 | * @param certificateName The name of the requested certificate. |
| 176 | * @return the requested certificate. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 177 | */ |
Alexander Afanasyev | 64a3d81 | 2014-01-05 23:35:05 -0800 | [diff] [blame^] | 178 | // ptr_lib::shared_ptr<IdentityCertificate> |
| 179 | // getAnyCertificate(const Name& certificateName) |
| 180 | // { |
| 181 | // return ptr_lib::make_shared<IdentityCertificate>(*identityStorage_->getCertificate(certificateName, true)); |
| 182 | // } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 183 | |
| 184 | /** |
| 185 | * Get the default certificate name for the specified identity, which will be used when signing is performed based on identity. |
| 186 | * @param identityName The name of the specified identity. |
| 187 | * @return The requested certificate name. |
| 188 | */ |
| 189 | Name |
| 190 | getDefaultCertificateNameForIdentity(const Name& identityName) |
| 191 | { |
| 192 | return identityStorage_->getDefaultCertificateNameForIdentity(identityName); |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * Get the default certificate name of the default identity, which will be used when signing is based on identity and |
| 197 | * the identity is not specified. |
| 198 | * @return The requested certificate name. |
| 199 | */ |
| 200 | Name |
| 201 | getDefaultCertificateName() |
| 202 | { |
| 203 | return identityStorage_->getDefaultCertificateNameForIdentity(getDefaultIdentity()); |
| 204 | } |
| 205 | |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 206 | /** |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 207 | * Sign the byte array data based on the certificate name. |
Jeff Thompson | c01e178 | 2013-10-21 14:08:42 -0700 | [diff] [blame] | 208 | * @param buffer The byte array to be signed. |
| 209 | * @param bufferLength the length of buffer. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 210 | * @param certificateName The signing certificate name. |
| 211 | * @return The generated signature. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 212 | */ |
Alexander Afanasyev | 64a3d81 | 2014-01-05 23:35:05 -0800 | [diff] [blame^] | 213 | Signature |
Jeff Thompson | c01e178 | 2013-10-21 14:08:42 -0700 | [diff] [blame] | 214 | signByCertificate(const uint8_t* buffer, size_t bufferLength, const Name& certificateName); |
| 215 | |
| 216 | /** |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 217 | * Sign data packet based on the certificate name. |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 218 | * Note: the caller must make sure the timestamp in data is correct, for example with |
| 219 | * data.getMetaInfo().setTimestampMilliseconds(time(NULL) * 1000.0). |
| 220 | * @param data The Data object to sign and update its signature. |
| 221 | * @param certificateName The Name identifying the certificate which identifies the signing key. |
| 222 | * @param wireFormat The WireFormat for calling encodeData, or WireFormat::getDefaultWireFormat() if omitted. |
| 223 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 224 | void |
Alexander Afanasyev | 64a3d81 | 2014-01-05 23:35:05 -0800 | [diff] [blame^] | 225 | signByCertificate(Data& data, const Name& certificateName); |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 226 | |
| 227 | /** |
| 228 | * Generate a self-signed certificate for a public key. |
| 229 | * @param keyName The name of the public key. |
| 230 | * @return The generated certificate. |
| 231 | */ |
| 232 | ptr_lib::shared_ptr<IdentityCertificate> |
| 233 | selfSign(const Name& keyName); |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 234 | |
| 235 | private: |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 236 | /** |
| 237 | * Generate a key pair for the specified identity. |
| 238 | * @param identityName The name of the specified identity. |
| 239 | * @param isKsk true for generating a Key-Signing-Key (KSK), false for a Data-Signing-Key (KSK). |
| 240 | * @param keyType The type of the key pair, e.g. KEY_TYPE_RSA. |
| 241 | * @param keySize The size of the key pair. |
| 242 | * @return The name of the generated key. |
| 243 | */ |
| 244 | Name |
| 245 | generateKeyPair(const Name& identityName, bool isKsk = false, KeyType keyType = KEY_TYPE_RSA, int keySize = 2048); |
| 246 | |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 247 | static Name |
| 248 | getKeyNameFromCertificatePrefix(const Name& certificatePrefix); |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 249 | |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 250 | ptr_lib::shared_ptr<IdentityStorage> identityStorage_; |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 251 | ptr_lib::shared_ptr<PrivateKeyStorage> privateKeyStorage_; |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | } |
| 255 | |
| 256 | #endif |