blob: 54a4bb88318f0c3b3131bfb37389f49776d20df3 [file] [log] [blame]
Qiuhan Ding4caa0cc2015-10-23 20:31:27 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -08002/*
Davide Pesavento19442812018-11-23 14:00:04 -05003 * Copyright (c) 2013-2018 Regents of the University of California.
Qiuhan Ding4caa0cc2015-10-23 20:31:27 -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
Davide Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/security/v2/trust-anchor-group.hpp"
23#include "ndn-cxx/util/io.hpp"
24#include "ndn-cxx/util/logger.hpp"
Qiuhan Ding4caa0cc2015-10-23 20:31:27 -070025
Qiuhan Ding4caa0cc2015-10-23 20:31:27 -070026#include <boost/filesystem.hpp>
27#include <boost/range/adaptor/map.hpp>
28#include <boost/range/algorithm/copy.hpp>
29#include <boost/range/iterator_range.hpp>
30
31namespace ndn {
32namespace security {
33namespace v2 {
34
35NDN_LOG_INIT(ndn.security.v2.TrustAnchorGroup);
36
37namespace fs = boost::filesystem;
38
39TrustAnchorGroup::TrustAnchorGroup(CertContainerInterface& certContainer, const std::string& id)
40 : m_certs(certContainer)
41 , m_id(id)
42{
43}
44
Davide Pesavento7f20d6e2017-01-16 14:43:58 -050045TrustAnchorGroup::~TrustAnchorGroup() = default;
46
Qiuhan Ding4caa0cc2015-10-23 20:31:27 -070047size_t
48TrustAnchorGroup::size() const
49{
50 return m_anchorNames.size();
51}
52
53void
54TrustAnchorGroup::refresh()
55{
56 // base method does nothing
57}
58
59//////////////
60
61StaticTrustAnchorGroup::StaticTrustAnchorGroup(CertContainerInterface& certContainer, const std::string& id)
62 : TrustAnchorGroup(certContainer, id)
63{
64}
65
66void
67StaticTrustAnchorGroup::add(Certificate&& cert)
68{
69 if (m_anchorNames.count(cert.getName()) != 0) {
70 return;
71 }
72
73 m_anchorNames.insert(cert.getName());
74 m_certs.add(std::move(cert));
75}
76
77void
78StaticTrustAnchorGroup::remove(const Name& certName)
79{
80 m_anchorNames.erase(certName);
81 m_certs.remove(certName);
82}
83
84/////////////
85
86DynamicTrustAnchorGroup::DynamicTrustAnchorGroup(CertContainerInterface& certContainer, const std::string& id,
87 const boost::filesystem::path& path,
88 time::nanoseconds refreshPeriod, bool isDir)
89 : TrustAnchorGroup(certContainer, id)
90 , m_isDir(isDir)
91 , m_path(path)
92 , m_refreshPeriod(refreshPeriod)
93{
94 if (refreshPeriod <= time::nanoseconds::zero()) {
95 BOOST_THROW_EXCEPTION(std::runtime_error("Refresh period for the dynamic group must be positive"));
96 }
97
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080098 NDN_LOG_TRACE("Create dynamic trust anchor group " << id << " for file/dir " << path
99 << " with refresh time " << refreshPeriod);
Qiuhan Ding4caa0cc2015-10-23 20:31:27 -0700100 refresh();
101}
102
103void
104DynamicTrustAnchorGroup::refresh()
105{
106 if (m_expireTime > time::steady_clock::now()) {
107 return;
108 }
109 m_expireTime = time::steady_clock::now() + m_refreshPeriod;
110 NDN_LOG_TRACE("Reloading dynamic trust anchor group");
111
112 std::set<Name> oldAnchorNames = m_anchorNames;
113
114 auto loadCert = [this, &oldAnchorNames] (const fs::path& file) {
115 auto cert = io::load<Certificate>(file.string());
116 if (cert != nullptr) {
117 if (m_anchorNames.count(cert->getName()) == 0) {
118 m_anchorNames.insert(cert->getName());
119 m_certs.add(std::move(*cert));
120 }
121 else {
122 oldAnchorNames.erase(cert->getName());
123 }
124 }
125 };
126
127 if (!m_isDir) {
128 loadCert(m_path);
129 }
130 else {
131 if (fs::exists(m_path)) {
132 std::for_each(fs::directory_iterator(m_path), fs::directory_iterator(), loadCert);
133 }
134 }
135
136 // remove old certs
137 for (const auto& oldAnchorName : oldAnchorNames) {
138 m_anchorNames.erase(oldAnchorName);
139 m_certs.remove(oldAnchorName);
140 }
141}
142
143} // namespace v2
144} // namespace security
145} // namespace ndn