Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -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 | /* |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [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 "certificate-cache.hpp" |
| 23 | #include "util/logger.hpp" |
| 24 | |
| 25 | namespace ndn { |
| 26 | namespace security { |
| 27 | namespace v2 { |
| 28 | |
| 29 | NDN_LOG_INIT(ndn.security.v2.CertificateCache); |
| 30 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 31 | time::nanoseconds |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 32 | CertificateCache::getDefaultLifetime() |
| 33 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 34 | return 1_h; |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | CertificateCache::CertificateCache(const time::nanoseconds& maxLifetime) |
| 38 | : m_certsByTime(m_certs.get<0>()) |
| 39 | , m_certsByName(m_certs.get<1>()) |
| 40 | , m_maxLifetime(maxLifetime) |
| 41 | { |
| 42 | } |
| 43 | |
| 44 | void |
| 45 | CertificateCache::insert(const Certificate& cert) |
| 46 | { |
| 47 | time::system_clock::TimePoint notAfterTime = cert.getValidityPeriod().getPeriod().second; |
| 48 | time::system_clock::TimePoint now = time::system_clock::now(); |
| 49 | if (notAfterTime < now) { |
| 50 | NDN_LOG_DEBUG("Not adding " << cert.getName() << ": already expired at " << time::toIsoString(notAfterTime)); |
| 51 | return; |
| 52 | } |
| 53 | |
| 54 | time::system_clock::TimePoint removalTime = std::min(notAfterTime, now + m_maxLifetime); |
| 55 | NDN_LOG_DEBUG("Adding " << cert.getName() << ", will remove in " |
| 56 | << time::duration_cast<time::seconds>(removalTime - now)); |
| 57 | m_certs.insert(Entry(cert, removalTime)); |
| 58 | } |
| 59 | |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 60 | void |
| 61 | CertificateCache::clear() |
| 62 | { |
| 63 | m_certs.clear(); |
| 64 | } |
| 65 | |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 66 | const Certificate* |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 67 | CertificateCache::find(const Name& certPrefix) const |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 68 | { |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 69 | const_cast<CertificateCache*>(this)->refresh(); |
| 70 | if (certPrefix.size() > 0 && certPrefix[-1].isImplicitSha256Digest()) { |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 71 | NDN_LOG_INFO("Certificate search using name with the implicit digest is not yet supported"); |
| 72 | } |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 73 | auto itr = m_certsByName.lower_bound(certPrefix); |
| 74 | if (itr == m_certsByName.end() || !certPrefix.isPrefixOf(itr->getCertName())) |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 75 | return nullptr; |
| 76 | return &itr->cert; |
| 77 | } |
| 78 | |
| 79 | const Certificate* |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 80 | CertificateCache::find(const Interest& interest) const |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 81 | { |
| 82 | if (interest.getChildSelector() >= 0) { |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 83 | NDN_LOG_DEBUG("Certificate search using ChildSelector is not supported, searching as if selector not specified"); |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 84 | } |
| 85 | if (interest.getName().size() > 0 && interest.getName()[-1].isImplicitSha256Digest()) { |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 86 | NDN_LOG_INFO("Certificate search using name with implicit digest is not yet supported"); |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 87 | } |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 88 | const_cast<CertificateCache*>(this)->refresh(); |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 89 | |
| 90 | for (auto i = m_certsByName.lower_bound(interest.getName()); |
| 91 | i != m_certsByName.end() && interest.getName().isPrefixOf(i->getCertName()); |
| 92 | ++i) { |
| 93 | const auto& cert = i->cert; |
| 94 | if (interest.matchesData(cert)) { |
| 95 | return &cert; |
| 96 | } |
| 97 | } |
| 98 | return nullptr; |
| 99 | } |
| 100 | |
| 101 | void |
| 102 | CertificateCache::refresh() |
| 103 | { |
| 104 | time::system_clock::TimePoint now = time::system_clock::now(); |
| 105 | |
| 106 | auto cIt = m_certsByTime.begin(); |
| 107 | while (cIt != m_certsByTime.end() && cIt->removalTime < now) { |
| 108 | m_certsByTime.erase(cIt); |
| 109 | cIt = m_certsByTime.begin(); |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | } // namespace v2 |
| 114 | } // namespace security |
| 115 | } // namespace ndn |