Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 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. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 20 | * |
| 21 | * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/> |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 22 | */ |
| 23 | |
Yingdi Yu | fc40d87 | 2014-02-18 12:56:04 -0800 | [diff] [blame] | 24 | #ifndef NDN_SECURITY_CERTIFICATE_CACHE_TTL_HPP |
| 25 | #define NDN_SECURITY_CERTIFICATE_CACHE_TTL_HPP |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 26 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 27 | #include "../common.hpp" |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 28 | #include "certificate-cache.hpp" |
| 29 | #include "../util/scheduler.hpp" |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 30 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 31 | namespace ndn { |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 32 | |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 33 | class CertificateCacheTtl : public CertificateCache |
| 34 | { |
| 35 | public: |
Alexander Afanasyev | a4297a6 | 2014-06-19 13:29:34 -0700 | [diff] [blame^] | 36 | explicit |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 37 | CertificateCacheTtl(boost::asio::io_service& io, |
| 38 | const time::seconds& defaultTtl = time::seconds(3600)) |
| 39 | : m_defaultTtl(defaultTtl) |
| 40 | , m_scheduler(io) |
| 41 | { |
| 42 | } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 43 | |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 44 | virtual |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 45 | ~CertificateCacheTtl() |
| 46 | { |
| 47 | } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 48 | |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 49 | virtual inline void |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 50 | insertCertificate(shared_ptr<const IdentityCertificate> certificate); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 51 | |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 52 | virtual inline shared_ptr<const IdentityCertificate> |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 53 | getCertificate(const Name& certificateNameWithoutVersion); |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 54 | |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 55 | virtual inline void |
| 56 | reset(); |
| 57 | |
| 58 | virtual inline size_t |
| 59 | getSize(); |
| 60 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 61 | private: |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 62 | inline void |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 63 | insert(shared_ptr<const IdentityCertificate> certificate); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 64 | |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 65 | inline void |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 66 | remove(const Name& certificateName); |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 67 | |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 68 | inline void |
| 69 | removeAll(); |
| 70 | |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 71 | protected: |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 72 | typedef std::map<Name, std::pair<shared_ptr<const IdentityCertificate>, EventId> > Cache; |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 73 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 74 | time::seconds m_defaultTtl; |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 75 | Cache m_cache; |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 76 | Scheduler m_scheduler; |
| 77 | }; |
| 78 | |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 79 | inline void |
| 80 | CertificateCacheTtl::insertCertificate(shared_ptr<const IdentityCertificate> certificate) |
| 81 | { |
| 82 | m_scheduler.scheduleEvent(time::seconds(0), |
| 83 | bind(&CertificateCacheTtl::insert, this, certificate)); |
| 84 | } |
| 85 | |
| 86 | inline shared_ptr<const IdentityCertificate> |
| 87 | CertificateCacheTtl::getCertificate(const Name& certificateName) |
| 88 | { |
| 89 | Cache::iterator it = m_cache.find(certificateName); |
| 90 | if (it != m_cache.end()) |
| 91 | return it->second.first; |
| 92 | else |
| 93 | return shared_ptr<IdentityCertificate>(); |
| 94 | } |
| 95 | |
| 96 | inline void |
| 97 | CertificateCacheTtl::reset() |
| 98 | { |
| 99 | m_scheduler.scheduleEvent(time::seconds(0), |
| 100 | bind(&CertificateCacheTtl::removeAll, this)); |
| 101 | } |
| 102 | |
| 103 | inline size_t |
| 104 | CertificateCacheTtl::getSize() |
| 105 | { |
| 106 | return m_cache.size(); |
| 107 | } |
| 108 | |
| 109 | inline void |
| 110 | CertificateCacheTtl::insert(shared_ptr<const IdentityCertificate> certificate) |
| 111 | { |
| 112 | time::milliseconds expire = (certificate->getFreshnessPeriod() >= time::seconds::zero() ? |
| 113 | certificate->getFreshnessPeriod() : m_defaultTtl); |
| 114 | |
| 115 | Name index = certificate->getName().getPrefix(-1); |
| 116 | |
| 117 | Cache::iterator it = m_cache.find(index); |
| 118 | if (it != m_cache.end()) |
| 119 | m_scheduler.cancelEvent(it->second.second); |
| 120 | |
| 121 | EventId eventId = m_scheduler.scheduleEvent(expire, |
| 122 | bind(&CertificateCacheTtl::remove, |
| 123 | this, certificate->getName())); |
| 124 | |
| 125 | m_cache[index] = std::make_pair(certificate, eventId); |
| 126 | } |
| 127 | |
| 128 | inline void |
| 129 | CertificateCacheTtl::remove(const Name& certificateName) |
| 130 | { |
| 131 | Name name = certificateName.getPrefix(-1); |
| 132 | Cache::iterator it = m_cache.find(name); |
| 133 | if (it != m_cache.end()) |
| 134 | m_cache.erase(it); |
| 135 | } |
| 136 | |
| 137 | inline void |
| 138 | CertificateCacheTtl::removeAll() |
| 139 | { |
| 140 | for(Cache::iterator it = m_cache.begin(); it != m_cache.end(); it++) |
| 141 | m_scheduler.cancelEvent(it->second.second); |
| 142 | |
| 143 | m_cache.clear(); |
| 144 | } |
| 145 | |
| 146 | |
Yingdi Yu | fc40d87 | 2014-02-18 12:56:04 -0800 | [diff] [blame] | 147 | } // namespace ndn |
Yingdi Yu | 7640cb3 | 2014-01-29 20:00:50 -0800 | [diff] [blame] | 148 | |
Yingdi Yu | fc40d87 | 2014-02-18 12:56:04 -0800 | [diff] [blame] | 149 | #endif //NDN_SECURITY_CERTIFICATE_CACHE_TTL_HPP |