blob: 7c836d281065a2637adf601d3064d5ce6138c734 [file] [log] [blame]
Yingdi Yu0b60e7a2015-07-16 21:05:11 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento5afbb0b2018-01-01 17:24:18 -05002/*
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#include "back-end-file.hpp"
23#include "key-handle-mem.hpp"
24#include "../transform.hpp"
25#include "../transform/private-key.hpp"
26#include "../../encoding/buffer-stream.hpp"
Davide Pesavento5afbb0b2018-01-01 17:24:18 -050027
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070028#include <cstdlib>
Davide Pesavento5afbb0b2018-01-01 17:24:18 -050029#include <fstream>
30#include <sys/stat.h>
31
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070032#include <boost/filesystem.hpp>
33
34namespace ndn {
35namespace security {
36namespace tpm {
37
38using transform::PrivateKey;
39
40class BackEndFile::Impl
41{
42public:
43 explicit
44 Impl(const std::string& dir)
45 {
46 if (!dir.empty()) {
47 keystorePath = boost::filesystem::path(dir);
48 }
49#ifdef NDN_CXX_HAVE_TESTS
Davide Pesavento5afbb0b2018-01-01 17:24:18 -050050 else if (std::getenv("TEST_HOME") != nullptr) {
51 keystorePath = boost::filesystem::path(std::getenv("TEST_HOME")) / ".ndn";
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070052 }
53#endif // NDN_CXX_HAVE_TESTS
Davide Pesavento5afbb0b2018-01-01 17:24:18 -050054 else if (std::getenv("HOME") != nullptr) {
55 keystorePath = boost::filesystem::path(std::getenv("HOME")) / ".ndn";
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070056 }
57 else {
58 keystorePath = boost::filesystem::current_path() / ".ndn";
59 }
60
61 keystorePath /= "ndnsec-key-file";
62 boost::filesystem::create_directories(keystorePath);
63 }
64
65 boost::filesystem::path
66 toFileName(const Name& keyName)
67 {
68 std::stringstream os;
69 {
70 using namespace transform;
71 bufferSource(keyName.wireEncode().wire(), keyName.wireEncode().size()) >>
72 digestFilter(DigestAlgorithm::SHA256) >> hexEncode() >> streamSink(os);
73 }
74 return keystorePath / (os.str() + ".privkey");
75 }
76
77public:
78 boost::filesystem::path keystorePath;
79};
80
81BackEndFile::BackEndFile(const std::string& location)
82 : m_impl(new Impl(location))
83{
84}
85
86BackEndFile::~BackEndFile() = default;
87
Yingdi Yufe4733a2015-10-22 14:24:12 -070088const std::string&
89BackEndFile::getScheme()
90{
91 static std::string scheme = "tpm-file";
92 return scheme;
93}
94
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070095bool
96BackEndFile::doHasKey(const Name& keyName) const
97{
98 if (!boost::filesystem::exists(m_impl->toFileName(keyName)))
99 return false;
100
101 try {
102 loadKey(keyName);
103 return true;
104 }
105 catch (const std::runtime_error&) {
106 return false;
107 }
108}
109
110unique_ptr<KeyHandle>
111BackEndFile::doGetKeyHandle(const Name& keyName) const
112{
113 if (!doHasKey(keyName))
114 return nullptr;
115
116 return make_unique<KeyHandleMem>(loadKey(keyName));
117}
118
119unique_ptr<KeyHandle>
120BackEndFile::doCreateKey(const Name& identityName, const KeyParams& params)
121{
122 shared_ptr<PrivateKey> key(transform::generatePrivateKey(params).release());
123 unique_ptr<KeyHandle> keyHandle = make_unique<KeyHandleMem>(key);
124
125 setKeyName(*keyHandle, identityName, params);
126
127 try {
128 saveKey(keyHandle->getKeyName(), key);
129 return keyHandle;
130 }
131 catch (const std::runtime_error& e) {
132 BOOST_THROW_EXCEPTION(Error(std::string("Cannot write key to disk: ") + e.what()));
133 }
134}
135
136void
137BackEndFile::doDeleteKey(const Name& keyName)
138{
139 boost::filesystem::path keyPath(m_impl->toFileName(keyName));
140
141 if (boost::filesystem::exists(keyPath)) {
142 try {
143 boost::filesystem::remove(keyPath);
144 }
145 catch (const boost::filesystem::filesystem_error&) {
146 BOOST_THROW_EXCEPTION(Error("Cannot delete key"));
147 }
148 }
149}
150
151ConstBufferPtr
152BackEndFile::doExportKey(const Name& keyName, const char* pw, size_t pwLen)
153{
154 shared_ptr<PrivateKey> key;
155 try {
156 key = loadKey(keyName);
157 }
158 catch (const PrivateKey::Error&) {
159 BOOST_THROW_EXCEPTION(Error("Cannot export private key"));
160 }
161 OBufferStream os;
162 key->savePkcs8(os, pw, pwLen);
163 return os.buf();
164}
165
166void
167BackEndFile::doImportKey(const Name& keyName, const uint8_t* buf, size_t size, const char* pw, size_t pwLen)
168{
169 try {
170 auto key = make_shared<PrivateKey>();
171 key->loadPkcs8(buf, size, pw, pwLen);
172 saveKey(keyName, key);
173 }
174 catch (const PrivateKey::Error&) {
175 BOOST_THROW_EXCEPTION(Error("Cannot import private key"));
176 }
177}
178
179shared_ptr<PrivateKey>
180BackEndFile::loadKey(const Name& keyName) const
181{
182 auto key = make_shared<PrivateKey>();
183 std::fstream is(m_impl->toFileName(keyName).string(), std::ios_base::in);
184 key->loadPkcs1Base64(is);
185 return key;
186}
187
188void
189BackEndFile::saveKey(const Name& keyName, shared_ptr<PrivateKey> key)
190{
191 std::string fileName = m_impl->toFileName(keyName).string();
192 std::fstream os(fileName, std::ios_base::out);
193 key->savePkcs1Base64(os);
194
195 // set file permission
Davide Pesavento5afbb0b2018-01-01 17:24:18 -0500196 ::chmod(fileName.c_str(), 0000400);
Yingdi Yu0b60e7a2015-07-16 21:05:11 -0700197}
198
199} // namespace tpm
200} // namespace security
201} // namespace ndn