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