blob: e9b27623fdf94cb0628f4afecf6d12ad82711609 [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
26#include "identity-management-fixture.hpp"
Junxiao Shi16a3adf2017-05-26 17:38:51 +000027#include <ndn-cxx/security/pib/identity.hpp>
28#include <ndn-cxx/security/pib/key.hpp>
29#include <ndn-cxx/security/pib/pib.hpp>
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +000030#include <ndn-cxx/security/transform.hpp>
Junxiao Shi16a3adf2017-05-26 17:38:51 +000031#include <ndn-cxx/security/v2/certificate.hpp>
Junxiao Shid7631272016-08-17 04:16:31 +000032#include <ndn-cxx/util/io.hpp>
33#include <boost/filesystem.hpp>
Yanbiao Lic17de832014-11-21 17:51:45 -080034
35namespace nfd {
36namespace tests {
37
38IdentityManagementFixture::IdentityManagementFixture()
Junxiao Shi16a3adf2017-05-26 17:38:51 +000039 : m_keyChain("pib-memory:", "tpm-memory:")
Yanbiao Lic17de832014-11-21 17:51:45 -080040{
Junxiao Shi16a3adf2017-05-26 17:38:51 +000041 m_keyChain.createIdentity("/DEFAULT");
Yanbiao Lic17de832014-11-21 17:51:45 -080042}
43
44IdentityManagementFixture::~IdentityManagementFixture()
45{
Junxiao Shid7631272016-08-17 04:16:31 +000046 boost::system::error_code ec;
47 for (const auto& certFile : m_certFiles) {
48 boost::filesystem::remove(certFile, ec); // ignore error
49 }
Yanbiao Lic17de832014-11-21 17:51:45 -080050}
51
52bool
Junxiao Shid7631272016-08-17 04:16:31 +000053IdentityManagementFixture::addIdentity(const Name& identity, const ndn::KeyParams& params)
Yanbiao Lic17de832014-11-21 17:51:45 -080054{
55 try {
56 m_keyChain.createIdentity(identity, params);
Yanbiao Lic17de832014-11-21 17:51:45 -080057 return true;
58 }
Alexander Afanasyev635bf202017-03-09 21:57:34 +000059 catch (const std::runtime_error&) {
Yanbiao Lic17de832014-11-21 17:51:45 -080060 return false;
61 }
62}
63
Junxiao Shid7631272016-08-17 04:16:31 +000064bool
65IdentityManagementFixture::saveIdentityCertificate(const Name& identity, const std::string& filename, bool wantAdd)
66{
Junxiao Shi16a3adf2017-05-26 17:38:51 +000067 ndn::security::v2::Certificate cert;
Junxiao Shid7631272016-08-17 04:16:31 +000068 try {
Junxiao Shi16a3adf2017-05-26 17:38:51 +000069 cert = m_keyChain.getPib().getIdentity(identity).getDefaultKey().getDefaultCertificate();
Junxiao Shid7631272016-08-17 04:16:31 +000070 }
Junxiao Shi16a3adf2017-05-26 17:38:51 +000071 catch (const ndn::security::Pib::Error&) {
Junxiao Shid7631272016-08-17 04:16:31 +000072 if (wantAdd && this->addIdentity(identity)) {
73 return this->saveIdentityCertificate(identity, filename, false);
74 }
75 return false;
76 }
77
78 m_certFiles.push_back(filename);
79 try {
Junxiao Shi16a3adf2017-05-26 17:38:51 +000080 ndn::io::save(cert, filename);
Junxiao Shid7631272016-08-17 04:16:31 +000081 return true;
82 }
83 catch (const ndn::io::Error&) {
84 return false;
85 }
86}
87
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +000088std::string
89IdentityManagementFixture::getIdentityCertificateBase64(const Name& identity, bool wantAdd)
90{
91 ndn::security::v2::Certificate cert;
92 try {
93 cert = m_keyChain.getPib().getIdentity(identity).getDefaultKey().getDefaultCertificate();
94 }
95 catch (const ndn::security::Pib::Error&) {
96 if (!wantAdd) {
Davide Pesavento19779d82019-02-14 13:40:04 -050097 NDN_THROW_NESTED(std::runtime_error("Identity does not exist"));
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +000098 }
99 cert = m_keyChain.createIdentity(identity).getDefaultKey().getDefaultCertificate();
100 }
101
102 Block wire = cert.wireEncode();
103
104 std::ostringstream oss;
105 namespace tr = ndn::security::transform;
106 tr::bufferSource(wire.wire(), wire.size()) >> tr::base64Encode(false) >> tr::streamSink(oss);
107 return oss.str();
108}
109
Yanbiao Lic17de832014-11-21 17:51:45 -0800110} // namespace tests
111} // namespace nfd