Yingdi Yu | 0b60e7a | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Yingdi Yu | fe4733a | 2015-10-22 14:24:12 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2017 Regents of the University of California. |
Yingdi Yu | 0b60e7a | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 20 | */ |
| 21 | |
| 22 | #ifndef NDN_SECURITY_TPM_BACK_END_FILE_HPP |
| 23 | #define NDN_SECURITY_TPM_BACK_END_FILE_HPP |
| 24 | |
| 25 | #include "back-end.hpp" |
| 26 | |
| 27 | namespace ndn { |
| 28 | namespace security { |
| 29 | namespace transform { |
| 30 | class PrivateKey; |
| 31 | } // namespace transform |
| 32 | |
| 33 | namespace tpm { |
| 34 | |
| 35 | /** |
| 36 | * @brief The back-end implementation of file-based TPM. |
| 37 | * |
| 38 | * In this TPM, each private key is stored in a separate file with permission 0400, i.e., |
| 39 | * owner read-only. The key is stored in PKCS #1 format in base64 encoding. |
| 40 | */ |
| 41 | class BackEndFile : public BackEnd |
| 42 | { |
| 43 | public: |
| 44 | class Error : public BackEnd::Error |
| 45 | { |
| 46 | public: |
| 47 | explicit |
| 48 | Error(const std::string& what) |
| 49 | : BackEnd::Error(what) |
| 50 | { |
| 51 | } |
| 52 | }; |
| 53 | |
| 54 | public: |
Yingdi Yu | fe4733a | 2015-10-22 14:24:12 -0700 | [diff] [blame] | 55 | /** |
| 56 | * @brief Create file-based TPM backend |
| 57 | * @param location Directory to store private keys |
| 58 | */ |
Yingdi Yu | 0b60e7a | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 59 | explicit |
| 60 | BackEndFile(const std::string& location = ""); |
| 61 | |
| 62 | ~BackEndFile() override; |
| 63 | |
Yingdi Yu | fe4733a | 2015-10-22 14:24:12 -0700 | [diff] [blame] | 64 | static const std::string& |
| 65 | getScheme(); |
| 66 | |
Yingdi Yu | 0b60e7a | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 67 | private: // inherited from tpm::BackEnd |
| 68 | /** |
| 69 | * @return True if a key with name @p keyName exists in TPM. |
| 70 | */ |
| 71 | bool |
| 72 | doHasKey(const Name& keyName) const final; |
| 73 | |
| 74 | /** |
| 75 | * @return The handle of a key with name @p keyName, or nullptr if the key does not exist |
| 76 | */ |
| 77 | unique_ptr<KeyHandle> |
| 78 | doGetKeyHandle(const Name& keyName) const final; |
| 79 | |
| 80 | /** |
| 81 | * @brief Create key for @p identityName according to @p params. |
| 82 | * |
| 83 | * The created key is named as: /<identityName>/[keyId]/KEY |
| 84 | * The key name is set in the returned KeyHandle. |
| 85 | * |
| 86 | * If the key with the same name exists, the old key will be overwritten. |
| 87 | * The behavior of using KeyHandler of removed key is undefined. |
| 88 | * |
| 89 | * @return The handle of the created key. |
| 90 | */ |
| 91 | unique_ptr<KeyHandle> |
| 92 | doCreateKey(const Name& identityName, const KeyParams& params) final; |
| 93 | |
| 94 | /** |
| 95 | * @brief Delete a key with name @p keyName. |
| 96 | * |
Yingdi Yu | fe4733a | 2015-10-22 14:24:12 -0700 | [diff] [blame] | 97 | * @throw Error the deletion failed |
Yingdi Yu | 0b60e7a | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 98 | */ |
| 99 | void |
| 100 | doDeleteKey(const Name& keyName) final; |
| 101 | |
| 102 | /** |
| 103 | * @return A private key with name @p keyName in encrypted PKCS #8 format using password @p pw |
Yingdi Yu | fe4733a | 2015-10-22 14:24:12 -0700 | [diff] [blame] | 104 | * @throw Error the key cannot be exported, e.g., not enough privilege |
Yingdi Yu | 0b60e7a | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 105 | */ |
| 106 | ConstBufferPtr |
| 107 | doExportKey(const Name& keyName, const char* pw, size_t pwLen) final; |
| 108 | |
| 109 | /** |
| 110 | * @brief Import a private key in encrypted PKCS #8 format |
| 111 | * |
| 112 | * @param keyName The name of imported private key |
| 113 | * @param buf Pointer to the key in encrypted PKCS #8 format |
| 114 | * @param size The size of the key in encrypted PKCS #8 format |
| 115 | * @param pw The password to decrypt the key |
| 116 | * @param pwLen The length of the password |
Yingdi Yu | fe4733a | 2015-10-22 14:24:12 -0700 | [diff] [blame] | 117 | * @throw Error import failed |
Yingdi Yu | 0b60e7a | 2015-07-16 21:05:11 -0700 | [diff] [blame] | 118 | */ |
| 119 | void |
| 120 | doImportKey(const Name& keyName, const uint8_t* buf, size_t size, const char* pw, size_t pwLen) final; |
| 121 | |
| 122 | private: |
| 123 | /** |
| 124 | * @brief Load a private key with name @p keyName from the key file directory |
| 125 | */ |
| 126 | shared_ptr<transform::PrivateKey> |
| 127 | loadKey(const Name& keyName) const; |
| 128 | |
| 129 | /** |
| 130 | * @brief Save a private key with name @p keyName into the key file directory |
| 131 | */ |
| 132 | void |
| 133 | saveKey(const Name& keyName, shared_ptr<transform::PrivateKey> key); |
| 134 | |
| 135 | private: |
| 136 | class Impl; |
| 137 | unique_ptr<Impl> m_impl; |
| 138 | }; |
| 139 | |
| 140 | } // namespace tpm |
| 141 | } // namespace security |
| 142 | } // namespace ndn |
| 143 | |
| 144 | #endif // NDN_SECURITY_TPM_BACK_END_FILE_HPP |