blob: cc0db789d1534349ae5bba0a00ce044b0541caca [file] [log] [blame]
Yingdi Yu0b60e7a2015-07-16 21:05:11 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento3b101d02018-07-21 22:44:09 -04002/*
3 * Copyright (c) 2013-2018 Regents of the University of California.
Yingdi Yu0b60e7a2015-07-16 21:05:11 -07004 *
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
27namespace ndn {
28namespace security {
Davide Pesavento3b101d02018-07-21 22:44:09 -040029
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070030namespace transform {
31class PrivateKey;
32} // namespace transform
33
34namespace tpm {
35
36/**
37 * @brief The back-end implementation of file-based TPM.
38 *
39 * In this TPM, each private key is stored in a separate file with permission 0400, i.e.,
40 * owner read-only. The key is stored in PKCS #1 format in base64 encoding.
41 */
42class BackEndFile : public BackEnd
43{
44public:
Yingdi Yufe4733a2015-10-22 14:24:12 -070045 /**
46 * @brief Create file-based TPM backend
47 * @param location Directory to store private keys
48 */
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070049 explicit
50 BackEndFile(const std::string& location = "");
51
52 ~BackEndFile() override;
53
Yingdi Yufe4733a2015-10-22 14:24:12 -070054 static const std::string&
55 getScheme();
56
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070057private: // inherited from tpm::BackEnd
58 /**
59 * @return True if a key with name @p keyName exists in TPM.
60 */
61 bool
62 doHasKey(const Name& keyName) const final;
63
64 /**
65 * @return The handle of a key with name @p keyName, or nullptr if the key does not exist
66 */
67 unique_ptr<KeyHandle>
68 doGetKeyHandle(const Name& keyName) const final;
69
70 /**
71 * @brief Create key for @p identityName according to @p params.
72 *
73 * The created key is named as: /<identityName>/[keyId]/KEY
74 * The key name is set in the returned KeyHandle.
75 *
76 * If the key with the same name exists, the old key will be overwritten.
77 * The behavior of using KeyHandler of removed key is undefined.
78 *
79 * @return The handle of the created key.
80 */
81 unique_ptr<KeyHandle>
82 doCreateKey(const Name& identityName, const KeyParams& params) final;
83
84 /**
85 * @brief Delete a key with name @p keyName.
86 *
Yingdi Yufe4733a2015-10-22 14:24:12 -070087 * @throw Error the deletion failed
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070088 */
89 void
90 doDeleteKey(const Name& keyName) final;
91
92 /**
93 * @return A private key with name @p keyName in encrypted PKCS #8 format using password @p pw
Yingdi Yufe4733a2015-10-22 14:24:12 -070094 * @throw Error the key cannot be exported, e.g., not enough privilege
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070095 */
96 ConstBufferPtr
97 doExportKey(const Name& keyName, const char* pw, size_t pwLen) final;
98
99 /**
100 * @brief Import a private key in encrypted PKCS #8 format
101 *
102 * @param keyName The name of imported private key
103 * @param buf Pointer to the key in encrypted PKCS #8 format
104 * @param size The size of the key in encrypted PKCS #8 format
105 * @param pw The password to decrypt the key
106 * @param pwLen The length of the password
Yingdi Yufe4733a2015-10-22 14:24:12 -0700107 * @throw Error import failed
Yingdi Yu0b60e7a2015-07-16 21:05:11 -0700108 */
109 void
110 doImportKey(const Name& keyName, const uint8_t* buf, size_t size, const char* pw, size_t pwLen) final;
111
112private:
113 /**
114 * @brief Load a private key with name @p keyName from the key file directory
115 */
Davide Pesavento3b101d02018-07-21 22:44:09 -0400116 unique_ptr<transform::PrivateKey>
Yingdi Yu0b60e7a2015-07-16 21:05:11 -0700117 loadKey(const Name& keyName) const;
118
119 /**
120 * @brief Save a private key with name @p keyName into the key file directory
121 */
122 void
Davide Pesavento3b101d02018-07-21 22:44:09 -0400123 saveKey(const Name& keyName, const transform::PrivateKey& key);
Yingdi Yu0b60e7a2015-07-16 21:05:11 -0700124
125private:
126 class Impl;
Davide Pesavento794f6872017-05-15 23:33:38 -0400127 const unique_ptr<Impl> m_impl;
Yingdi Yu0b60e7a2015-07-16 21:05:11 -0700128};
129
130} // namespace tpm
131} // namespace security
132} // namespace ndn
133
134#endif // NDN_SECURITY_TPM_BACK_END_FILE_HPP