Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [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 | /* |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 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 "certificate-storage.hpp" |
| 23 | |
| 24 | namespace ndn { |
| 25 | namespace security { |
| 26 | namespace v2 { |
| 27 | |
| 28 | CertificateStorage::CertificateStorage() |
| 29 | : m_verifiedCertCache(time::hours(1)) |
| 30 | , m_unverifiedCertCache(time::minutes(5)) |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | const Certificate* |
| 35 | CertificateStorage::findTrustedCert(const Interest& interestForCert) const |
| 36 | { |
| 37 | auto cert = m_trustAnchors.find(interestForCert); |
| 38 | if (cert != nullptr) { |
| 39 | return cert; |
| 40 | } |
| 41 | |
| 42 | cert = m_verifiedCertCache.find(interestForCert); |
| 43 | return cert; |
| 44 | } |
| 45 | |
| 46 | bool |
| 47 | CertificateStorage::isCertKnown(const Name& certName) const |
| 48 | { |
| 49 | return (m_trustAnchors.find(certName) != nullptr || |
| 50 | m_verifiedCertCache.find(certName) != nullptr || |
| 51 | m_unverifiedCertCache.find(certName) != nullptr); |
| 52 | } |
| 53 | |
| 54 | void |
| 55 | CertificateStorage::loadAnchor(const std::string& groupId, Certificate&& cert) |
| 56 | { |
| 57 | m_trustAnchors.insert(groupId, std::move(cert)); |
| 58 | } |
| 59 | |
| 60 | void |
| 61 | CertificateStorage::loadAnchor(const std::string& groupId, const std::string& certfilePath, |
| 62 | time::nanoseconds refreshPeriod, bool isDir) |
| 63 | { |
| 64 | m_trustAnchors.insert(groupId, certfilePath, refreshPeriod, isDir); |
| 65 | } |
| 66 | |
| 67 | void |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 68 | CertificateStorage::resetAnchors() |
| 69 | { |
| 70 | m_trustAnchors.clear(); |
| 71 | } |
| 72 | |
| 73 | void |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 74 | CertificateStorage::cacheVerifiedCert(Certificate&& cert) |
| 75 | { |
| 76 | m_verifiedCertCache.insert(std::move(cert)); |
| 77 | } |
| 78 | |
| 79 | void |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 80 | CertificateStorage::resetVerifiedCerts() |
| 81 | { |
| 82 | m_verifiedCertCache.clear(); |
| 83 | } |
| 84 | |
| 85 | void |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 86 | CertificateStorage::cacheUnverifiedCert(Certificate&& cert) |
| 87 | { |
| 88 | m_unverifiedCertCache.insert(std::move(cert)); |
| 89 | } |
| 90 | |
| 91 | const TrustAnchorContainer& |
| 92 | CertificateStorage::getTrustAnchors() const |
| 93 | { |
| 94 | return m_trustAnchors; |
| 95 | } |
| 96 | |
| 97 | const CertificateCache& |
| 98 | CertificateStorage::getVerifiedCertCache() const |
| 99 | { |
| 100 | return m_verifiedCertCache; |
| 101 | } |
| 102 | |
| 103 | const CertificateCache& |
| 104 | CertificateStorage::getUnverifiedCertCache() const |
| 105 | { |
| 106 | return m_unverifiedCertCache; |
| 107 | } |
| 108 | |
| 109 | } // namespace v2 |
| 110 | } // namespace security |
| 111 | } // namespace ndn |