blob: efb272f0555c3b2040eba3107f74941187ba4770 [file] [log] [blame]
Qiuhan Ding4caa0cc2015-10-23 20:31:27 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2017 Regents of the University of California.
4 *
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 "trust-anchor-container.hpp"
23
24#include <boost/filesystem.hpp>
25
26namespace ndn {
27namespace security {
28namespace v2 {
29
30void
31TrustAnchorContainer::AnchorContainer::add(Certificate&& cert)
32{
33 AnchorContainerBase::insert(std::move(cert));
34}
35
36void
37TrustAnchorContainer::AnchorContainer::remove(const Name& certName)
38{
39 AnchorContainerBase::erase(certName);
40}
41
42void
43TrustAnchorContainer::insert(const std::string& groupId, Certificate&& cert)
44{
45 auto group = m_groups.find(groupId);
46 if (group == m_groups.end()) {
47 std::tie(group, std::ignore) = m_groups.insert(make_shared<StaticTrustAnchorGroup>(m_anchors, groupId));
48 }
49 auto* staticGroup = dynamic_cast<StaticTrustAnchorGroup*>(&**group);
50 if (staticGroup == nullptr) {
51 BOOST_THROW_EXCEPTION(Error("Cannot add static anchor to a non-static anchor group " + groupId));
52 }
53 staticGroup->add(std::move(cert));
54}
55
56void
57TrustAnchorContainer::insert(const std::string& groupId, const boost::filesystem::path& path,
58 time::nanoseconds refreshPeriod, bool isDir)
59{
60 if (m_groups.count(groupId) != 0) {
61 BOOST_THROW_EXCEPTION(Error("Cannot create dynamic group, because group " + groupId + " already exists"));
62 }
63
64 m_groups.insert(make_shared<DynamicTrustAnchorGroup>(m_anchors, groupId, path, refreshPeriod, isDir));
65}
66
67const Certificate*
68TrustAnchorContainer::find(const Name& keyName) const
69{
70 const_cast<TrustAnchorContainer*>(this)->refresh();
71
72 auto cert = m_anchors.lower_bound(keyName);
73 if (cert == m_anchors.end() || !keyName.isPrefixOf(cert->getName()))
74 return nullptr;
75 return &*cert;
76}
77
78const Certificate*
79TrustAnchorContainer::find(const Interest& interest) const
80{
81 const_cast<TrustAnchorContainer*>(this)->refresh();
82
83 for (auto cert = m_anchors.lower_bound(interest.getName());
84 cert != m_anchors.end() && interest.getName().isPrefixOf(cert->getName());
85 ++cert) {
86 if (interest.matchesData(*cert)) {
87 return &*cert;
88 }
89 }
90 return nullptr;
91}
92
93TrustAnchorGroup&
94TrustAnchorContainer::getGroup(const std::string& groupId) const
95{
96 auto group = m_groups.find(groupId);
97 if (group == m_groups.end()) {
98 BOOST_THROW_EXCEPTION(Error("Trust anchor group " + groupId + " does not exist"));
99 }
100 return **group;
101}
102
103size_t
104TrustAnchorContainer::size() const
105{
106 return m_anchors.size();
107}
108
109void
110TrustAnchorContainer::refresh()
111{
112 for (auto it = m_groups.begin(); it != m_groups.end(); ++it) {
113 m_groups.modify(it, [] (shared_ptr<TrustAnchorGroup>& group) { group->refresh(); });
114 }
115}
116
117} // namespace v2
118} // namespace security
119} // namespace ndn