blob: acefabe8339afdba4c5632c2e0b61fa261cea135 [file] [log] [blame]
Yanbiao Lic17de832014-11-21 17:51:45 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +00002/*
Davide Pesavento19779d82019-02-14 13:40:04 -05003 * Copyright (c) 2014-2019, Regents of the University of California,
Alexander Afanasyevbc9ed492016-01-26 11:38:11 -08004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Yanbiao Lic17de832014-11-21 17:51:45 -080010 *
Alexander Afanasyevbc9ed492016-01-26 11:38:11 -080011 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
Yanbiao Lic17de832014-11-21 17:51:45 -080013 *
Alexander Afanasyevbc9ed492016-01-26 11:38:11 -080014 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
Yanbiao Lic17de832014-11-21 17:51:45 -080017 *
Alexander Afanasyevbc9ed492016-01-26 11:38:11 -080018 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
Yanbiao Lic17de832014-11-21 17:51:45 -080021 *
Alexander Afanasyevbc9ed492016-01-26 11:38:11 -080022 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Yanbiao Lic17de832014-11-21 17:51:45 -080024 */
25
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040026#include "tests/key-chain-fixture.hpp"
27
Junxiao Shi16a3adf2017-05-26 17:38:51 +000028#include <ndn-cxx/security/pib/identity.hpp>
29#include <ndn-cxx/security/pib/key.hpp>
30#include <ndn-cxx/security/pib/pib.hpp>
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +000031#include <ndn-cxx/security/transform.hpp>
Junxiao Shi16a3adf2017-05-26 17:38:51 +000032#include <ndn-cxx/security/v2/certificate.hpp>
Junxiao Shid7631272016-08-17 04:16:31 +000033#include <ndn-cxx/util/io.hpp>
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040034
Junxiao Shid7631272016-08-17 04:16:31 +000035#include <boost/filesystem.hpp>
Yanbiao Lic17de832014-11-21 17:51:45 -080036
37namespace nfd {
38namespace tests {
39
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040040KeyChainFixture::KeyChainFixture()
Junxiao Shi16a3adf2017-05-26 17:38:51 +000041 : m_keyChain("pib-memory:", "tpm-memory:")
Yanbiao Lic17de832014-11-21 17:51:45 -080042{
Junxiao Shi16a3adf2017-05-26 17:38:51 +000043 m_keyChain.createIdentity("/DEFAULT");
Yanbiao Lic17de832014-11-21 17:51:45 -080044}
45
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040046KeyChainFixture::~KeyChainFixture()
Yanbiao Lic17de832014-11-21 17:51:45 -080047{
Junxiao Shid7631272016-08-17 04:16:31 +000048 boost::system::error_code ec;
49 for (const auto& certFile : m_certFiles) {
50 boost::filesystem::remove(certFile, ec); // ignore error
51 }
Yanbiao Lic17de832014-11-21 17:51:45 -080052}
53
54bool
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040055KeyChainFixture::addIdentity(const Name& identity, const ndn::KeyParams& params)
Yanbiao Lic17de832014-11-21 17:51:45 -080056{
57 try {
58 m_keyChain.createIdentity(identity, params);
Yanbiao Lic17de832014-11-21 17:51:45 -080059 return true;
60 }
Alexander Afanasyev635bf202017-03-09 21:57:34 +000061 catch (const std::runtime_error&) {
Yanbiao Lic17de832014-11-21 17:51:45 -080062 return false;
63 }
64}
65
Junxiao Shid7631272016-08-17 04:16:31 +000066bool
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040067KeyChainFixture::saveIdentityCertificate(const Name& identity, const std::string& filename, bool allowAdd)
Junxiao Shid7631272016-08-17 04:16:31 +000068{
Junxiao Shi16a3adf2017-05-26 17:38:51 +000069 ndn::security::v2::Certificate cert;
Junxiao Shid7631272016-08-17 04:16:31 +000070 try {
Junxiao Shi16a3adf2017-05-26 17:38:51 +000071 cert = m_keyChain.getPib().getIdentity(identity).getDefaultKey().getDefaultCertificate();
Junxiao Shid7631272016-08-17 04:16:31 +000072 }
Junxiao Shi16a3adf2017-05-26 17:38:51 +000073 catch (const ndn::security::Pib::Error&) {
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040074 if (allowAdd && addIdentity(identity)) {
75 return saveIdentityCertificate(identity, filename, false);
Junxiao Shid7631272016-08-17 04:16:31 +000076 }
77 return false;
78 }
79
80 m_certFiles.push_back(filename);
81 try {
Junxiao Shi16a3adf2017-05-26 17:38:51 +000082 ndn::io::save(cert, filename);
Junxiao Shid7631272016-08-17 04:16:31 +000083 return true;
84 }
85 catch (const ndn::io::Error&) {
86 return false;
87 }
88}
89
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +000090std::string
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040091KeyChainFixture::getIdentityCertificateBase64(const Name& identity, bool allowAdd)
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +000092{
93 ndn::security::v2::Certificate cert;
94 try {
95 cert = m_keyChain.getPib().getIdentity(identity).getDefaultKey().getDefaultCertificate();
96 }
97 catch (const ndn::security::Pib::Error&) {
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040098 if (!allowAdd) {
Davide Pesavento19779d82019-02-14 13:40:04 -050099 NDN_THROW_NESTED(std::runtime_error("Identity does not exist"));
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000100 }
101 cert = m_keyChain.createIdentity(identity).getDefaultKey().getDefaultCertificate();
102 }
103
Davide Pesavento1d12d2f2019-03-22 12:44:14 -0400104 const auto& block = cert.wireEncode();
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000105
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000106 namespace tr = ndn::security::transform;
Davide Pesavento1d12d2f2019-03-22 12:44:14 -0400107 std::ostringstream oss;
108 tr::bufferSource(block.wire(), block.size()) >> tr::base64Encode(false) >> tr::streamSink(oss);
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000109 return oss.str();
110}
111
Yanbiao Lic17de832014-11-21 17:51:45 -0800112} // namespace tests
113} // namespace nfd