trust-anchor-group.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22 #include "trust-anchor-group.hpp"
23 
24 #include "util/io.hpp"
25 #include "util/logger.hpp"
26 
27 #include <boost/filesystem.hpp>
28 #include <boost/range/adaptor/map.hpp>
29 #include <boost/range/algorithm/copy.hpp>
30 #include <boost/range/iterator_range.hpp>
31 
32 namespace ndn {
33 namespace security {
34 namespace v2 {
35 
37 
38 namespace fs = boost::filesystem;
39 
40 TrustAnchorGroup::TrustAnchorGroup(CertContainerInterface& certContainer, const std::string& id)
41  : m_certs(certContainer)
42  , m_id(id)
43 {
44 }
45 
47 
48 size_t
50 {
51  return m_anchorNames.size();
52 }
53 
54 void
56 {
57  // base method does nothing
58 }
59 
61 
63  : TrustAnchorGroup(certContainer, id)
64 {
65 }
66 
67 void
69 {
70  if (m_anchorNames.count(cert.getName()) != 0) {
71  return;
72  }
73 
74  m_anchorNames.insert(cert.getName());
75  m_certs.add(std::move(cert));
76 }
77 
78 void
80 {
81  m_anchorNames.erase(certName);
82  m_certs.remove(certName);
83 }
84 
86 
88  const boost::filesystem::path& path,
89  time::nanoseconds refreshPeriod, bool isDir)
90  : TrustAnchorGroup(certContainer, id)
91  , m_isDir(isDir)
92  , m_path(path)
93  , m_refreshPeriod(refreshPeriod)
94 {
95  if (refreshPeriod <= time::nanoseconds::zero()) {
96  BOOST_THROW_EXCEPTION(std::runtime_error("Refresh period for the dynamic group must be positive"));
97  }
98 
99  refresh();
100 }
101 
102 void
104 {
105  if (m_expireTime > time::steady_clock::now()) {
106  return;
107  }
108  m_expireTime = time::steady_clock::now() + m_refreshPeriod;
109  NDN_LOG_TRACE("Reloading dynamic trust anchor group");
110 
111  std::set<Name> oldAnchorNames = m_anchorNames;
112 
113  auto loadCert = [this, &oldAnchorNames] (const fs::path& file) {
114  auto cert = io::load<Certificate>(file.string());
115  if (cert != nullptr) {
116  if (m_anchorNames.count(cert->getName()) == 0) {
117  m_anchorNames.insert(cert->getName());
118  m_certs.add(std::move(*cert));
119  }
120  else {
121  oldAnchorNames.erase(cert->getName());
122  }
123  }
124  };
125 
126  if (!m_isDir) {
127  loadCert(m_path);
128  }
129  else {
130  if (fs::exists(m_path)) {
131  std::for_each(fs::directory_iterator(m_path), fs::directory_iterator(), loadCert);
132  }
133  }
134 
135  // remove old certs
136  for (const auto& oldAnchorName : oldAnchorNames) {
137  m_anchorNames.erase(oldAnchorName);
138  m_certs.remove(oldAnchorName);
139  }
140 }
141 
142 } // namespace v2
143 } // namespace security
144 } // namespace ndn
TrustAnchorGroup(CertContainerInterface &certContainer, const std::string &id)
Create an anchor group.
Copyright (c) 2013-2016 Regents of the University of California.
Definition: common.hpp:74
The certificate following the certificate format naming convention.
virtual void refresh()
Request certificate refresh.
static time_point now() noexcept
Definition: time.cpp:79
#define NDN_LOG_INIT(name)
declare a log module
Definition: logger.hpp:97
void refresh() override
Request certificate refresh.
virtual void add(Certificate &&cert)=0
Name abstraction to represent an absolute name.
Definition: name.hpp:46
void add(Certificate &&cert)
Load static anchor cert.
#define NDN_LOG_TRACE(expression)
log at TRACE level
Definition: logger.hpp:141
void remove(const Name &certName)
Remove static anchor certName.
virtual void remove(const Name &certName)=0
DynamicTrustAnchorGroup(CertContainerInterface &certContainer, const std::string &id, const boost::filesystem::path &path, time::nanoseconds refreshPeriod, bool isDir=false)
Create a dynamic trust anchor group.
StaticTrustAnchorGroup(CertContainerInterface &certContainer, const std::string &id)
Create a static trust anchor group.