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 | 48e8c0c | 2014-03-19 12:01:55 -0700 | [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 | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 22 | */ |
| 23 | |
| 24 | #ifndef NDN_SECURITY_VALIDATOR_CONFIG_HPP |
| 25 | #define NDN_SECURITY_VALIDATOR_CONFIG_HPP |
| 26 | |
| 27 | #include "validator.hpp" |
| 28 | #include "certificate-cache.hpp" |
| 29 | #include "conf/rule.hpp" |
| 30 | #include "conf/common.hpp" |
| 31 | |
| 32 | namespace ndn { |
| 33 | |
| 34 | class ValidatorConfig : public Validator |
| 35 | { |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 36 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 37 | public: |
| 38 | class Error : public Validator::Error |
| 39 | { |
| 40 | public: |
| 41 | explicit |
| 42 | Error(const std::string& what) |
| 43 | : Validator::Error(what) |
| 44 | { |
| 45 | } |
| 46 | }; |
| 47 | |
| 48 | static const shared_ptr<CertificateCache> DEFAULT_CERTIFICATE_CACHE; |
| 49 | |
Yingdi Yu | 96e6406 | 2014-04-15 19:57:33 -0700 | [diff] [blame] | 50 | explicit |
| 51 | ValidatorConfig(Face& face, |
| 52 | const shared_ptr<CertificateCache>& certificateCache = DEFAULT_CERTIFICATE_CACHE, |
| 53 | const int stepLimit = 10); |
| 54 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 55 | virtual |
| 56 | ~ValidatorConfig() |
| 57 | { |
| 58 | } |
| 59 | |
| 60 | void |
| 61 | load(const std::string& filename); |
| 62 | |
| 63 | void |
| 64 | load(const std::string& input, const std::string& filename); |
| 65 | |
| 66 | void |
| 67 | load(std::istream& input, const std::string& filename); |
| 68 | |
Yingdi Yu | dfa9d73 | 2014-04-09 09:53:01 -0700 | [diff] [blame] | 69 | void |
| 70 | load(const security::conf::ConfigSection& configSection, |
| 71 | const std::string& filename); |
| 72 | |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 73 | inline void |
| 74 | reset(); |
| 75 | |
| 76 | inline bool |
| 77 | isEmpty(); |
| 78 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 79 | protected: |
| 80 | virtual void |
| 81 | checkPolicy(const Data& data, |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 82 | int nSteps, |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 83 | const OnDataValidated& onValidated, |
| 84 | const OnDataValidationFailed& onValidationFailed, |
| 85 | std::vector<shared_ptr<ValidationRequest> >& nextSteps); |
| 86 | |
| 87 | virtual void |
| 88 | checkPolicy(const Interest& interest, |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 89 | int nSteps, |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 90 | const OnInterestValidated& onValidated, |
| 91 | const OnInterestValidationFailed& onValidationFailed, |
| 92 | std::vector<shared_ptr<ValidationRequest> >& nextSteps); |
| 93 | |
| 94 | private: |
| 95 | template<class Packet, class OnValidated, class OnFailed> |
| 96 | void |
| 97 | checkSignature(const Packet& packet, |
| 98 | const Signature& signature, |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 99 | int nSteps, |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 100 | const OnValidated& onValidated, |
| 101 | const OnFailed& onValidationFailed, |
| 102 | std::vector<shared_ptr<ValidationRequest> >& nextSteps); |
| 103 | |
| 104 | template<class Packet, class OnValidated, class OnFailed> |
| 105 | void |
| 106 | onCertValidated(const shared_ptr<const Data>& signCertificate, |
| 107 | const shared_ptr<const Packet>& packet, |
| 108 | const OnValidated& onValidated, |
| 109 | const OnFailed& onValidationFailed); |
| 110 | |
| 111 | template<class Packet, class OnFailed> |
| 112 | void |
| 113 | onCertFailed(const shared_ptr<const Data>& signCertificate, |
| 114 | const std::string& failureInfo, |
| 115 | const shared_ptr<const Packet>& packet, |
| 116 | const OnFailed& onValidationFailed); |
| 117 | |
| 118 | void |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 119 | onConfigRule(const security::conf::ConfigSection& section, |
| 120 | const std::string& filename); |
| 121 | |
| 122 | void |
| 123 | onConfigTrustAnchor(const security::conf::ConfigSection& section, |
| 124 | const std::string& filename); |
| 125 | |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 126 | time::nanoseconds |
| 127 | getRefreshPeriod(std::string refreshString); |
| 128 | |
| 129 | inline time::nanoseconds |
| 130 | getDefaultRefreshPeriod(); |
| 131 | |
| 132 | void |
| 133 | refreshAnchors(); |
| 134 | |
| 135 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 136 | private: |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 137 | |
| 138 | class TrustAnchorContainer |
| 139 | { |
| 140 | public: |
| 141 | TrustAnchorContainer() |
| 142 | { |
| 143 | } |
| 144 | |
| 145 | const std::list<shared_ptr<IdentityCertificate> >& |
| 146 | getAll() const |
| 147 | { |
| 148 | return m_certificates; |
| 149 | } |
| 150 | |
| 151 | void |
| 152 | add(shared_ptr<IdentityCertificate> certificate) |
| 153 | { |
| 154 | m_certificates.push_back(certificate); |
| 155 | } |
| 156 | |
| 157 | protected: |
| 158 | std::list<shared_ptr<IdentityCertificate> > m_certificates; |
| 159 | }; |
| 160 | |
| 161 | class DynamicTrustAnchorContainer : public TrustAnchorContainer |
| 162 | { |
| 163 | public: |
| 164 | DynamicTrustAnchorContainer(const boost::filesystem::path& path, bool isDir, |
| 165 | time::nanoseconds refreshPeriod) |
| 166 | : m_path(path) |
| 167 | , m_isDir(isDir) |
| 168 | , m_refreshPeriod(refreshPeriod) |
| 169 | { |
| 170 | } |
| 171 | |
| 172 | void |
| 173 | setLastRefresh(const time::system_clock::TimePoint& lastRefresh) |
| 174 | { |
| 175 | m_lastRefresh = lastRefresh; |
| 176 | } |
| 177 | |
| 178 | const time::system_clock::TimePoint& |
| 179 | getLastRefresh() const |
| 180 | { |
| 181 | return m_lastRefresh; |
| 182 | } |
| 183 | |
| 184 | const time::nanoseconds& |
| 185 | getRefreshPeriod() const |
| 186 | { |
| 187 | return m_refreshPeriod; |
| 188 | } |
| 189 | |
| 190 | void |
| 191 | refresh(); |
| 192 | |
| 193 | private: |
| 194 | boost::filesystem::path m_path; |
| 195 | bool m_isDir; |
| 196 | |
| 197 | time::system_clock::TimePoint m_lastRefresh; |
| 198 | time::nanoseconds m_refreshPeriod; |
| 199 | }; |
| 200 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 201 | typedef security::conf::Rule<Interest> InterestRule; |
| 202 | typedef security::conf::Rule<Data> DataRule; |
| 203 | typedef std::vector<shared_ptr<InterestRule> > InterestRuleList; |
| 204 | typedef std::vector<shared_ptr<DataRule> > DataRuleList; |
| 205 | typedef std::map<Name, shared_ptr<IdentityCertificate> > AnchorList; |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 206 | typedef std::list<DynamicTrustAnchorContainer> DynamicContainers; // sorted by m_lastRefresh |
| 207 | typedef std::list<shared_ptr<IdentityCertificate> > CertificateList; |
| 208 | |
| 209 | static inline bool |
| 210 | compareDynamicContainer(const DynamicTrustAnchorContainer& containerA, |
| 211 | const DynamicTrustAnchorContainer& containerB) |
| 212 | { |
| 213 | return (containerA.getLastRefresh() < containerB.getLastRefresh()); |
| 214 | } |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 215 | |
Yingdi Yu | 44d190c | 2014-04-16 17:05:46 -0700 | [diff] [blame] | 216 | /** |
| 217 | * @brief gives whether validation should be preformed |
| 218 | * |
| 219 | * If false, no validation occurs, and any packet is considered validated immediately. |
| 220 | */ |
| 221 | bool m_shouldValidate; |
| 222 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 223 | int m_stepLimit; |
| 224 | shared_ptr<CertificateCache> m_certificateCache; |
| 225 | |
| 226 | InterestRuleList m_interestRules; |
| 227 | DataRuleList m_dataRules; |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 228 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 229 | AnchorList m_anchors; |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 230 | TrustAnchorContainer m_staticContainer; |
| 231 | DynamicContainers m_dynamicContainers; |
| 232 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 233 | }; |
| 234 | |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 235 | inline void |
| 236 | ValidatorConfig::reset() |
| 237 | { |
| 238 | m_certificateCache->reset(); |
| 239 | m_interestRules.clear(); |
| 240 | m_dataRules.clear(); |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 241 | |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 242 | m_anchors.clear(); |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 243 | |
| 244 | m_staticContainer = TrustAnchorContainer(); |
| 245 | |
| 246 | m_dynamicContainers.clear(); |
Yingdi Yu | 58f3371 | 2014-04-16 16:57:47 -0700 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | inline bool |
| 250 | ValidatorConfig::isEmpty() |
| 251 | { |
| 252 | if (m_certificateCache->isEmpty() && |
| 253 | m_interestRules.empty() && |
| 254 | m_dataRules.empty() && |
| 255 | m_anchors.empty()) |
| 256 | return true; |
| 257 | return false; |
| 258 | } |
| 259 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 260 | template<class Packet, class OnValidated, class OnFailed> |
| 261 | void |
| 262 | ValidatorConfig::checkSignature(const Packet& packet, |
| 263 | const Signature& signature, |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 264 | int nSteps, |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 265 | const OnValidated& onValidated, |
| 266 | const OnFailed& onValidationFailed, |
| 267 | std::vector<shared_ptr<ValidationRequest> >& nextSteps) |
| 268 | { |
| 269 | if (signature.getType() == Signature::Sha256) |
| 270 | { |
| 271 | SignatureSha256 sigSha256(signature); |
| 272 | |
| 273 | if (verifySignature(packet, sigSha256)) |
| 274 | return onValidated(packet.shared_from_this()); |
| 275 | else |
| 276 | return onValidationFailed(packet.shared_from_this(), |
| 277 | "Sha256 Signature cannot be verified!"); |
| 278 | } |
| 279 | |
| 280 | if (signature.getType() == Signature::Sha256WithRsa) |
| 281 | { |
| 282 | SignatureSha256WithRsa sigSha256Rsa(signature); |
| 283 | Name keyLocatorName = sigSha256Rsa.getKeyLocator().getName(); |
| 284 | |
| 285 | shared_ptr<const Certificate> trustedCert; |
| 286 | |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 287 | refreshAnchors(); |
| 288 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 289 | AnchorList::const_iterator it = m_anchors.find(keyLocatorName); |
| 290 | if (m_anchors.end() == it) |
| 291 | trustedCert = m_certificateCache->getCertificate(keyLocatorName); |
| 292 | else |
| 293 | trustedCert = it->second; |
| 294 | |
| 295 | if (static_cast<bool>(trustedCert)) |
| 296 | { |
| 297 | if (verifySignature(packet, sigSha256Rsa, trustedCert->getPublicKeyInfo())) |
| 298 | return onValidated(packet.shared_from_this()); |
| 299 | else |
| 300 | return onValidationFailed(packet.shared_from_this(), |
| 301 | "Cannot verify signature"); |
| 302 | } |
| 303 | else |
| 304 | { |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 305 | if (m_stepLimit == nSteps) |
| 306 | return onValidationFailed(packet.shared_from_this(), |
| 307 | "Maximum steps of validation reached"); |
| 308 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 309 | OnDataValidated onCertValidated = |
| 310 | bind(&ValidatorConfig::onCertValidated<Packet, OnValidated, OnFailed>, |
| 311 | this, _1, packet.shared_from_this(), onValidated, onValidationFailed); |
| 312 | |
| 313 | OnDataValidationFailed onCertValidationFailed = |
| 314 | bind(&ValidatorConfig::onCertFailed<Packet, OnFailed>, |
| 315 | this, _1, _2, packet.shared_from_this(), onValidationFailed); |
| 316 | |
| 317 | Interest certInterest(keyLocatorName); |
| 318 | |
| 319 | shared_ptr<ValidationRequest> nextStep = |
Alexander Afanasyev | f73f063 | 2014-05-12 18:02:37 -0700 | [diff] [blame] | 320 | make_shared<ValidationRequest>(certInterest, |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 321 | onCertValidated, |
| 322 | onCertValidationFailed, |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 323 | 1, nSteps + 1); |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 324 | |
| 325 | nextSteps.push_back(nextStep); |
| 326 | return; |
| 327 | } |
| 328 | } |
| 329 | return onValidationFailed(packet.shared_from_this(), "Unsupported Signature Type!"); |
| 330 | } |
| 331 | |
| 332 | template<class Packet, class OnValidated, class OnFailed> |
| 333 | void |
| 334 | ValidatorConfig::onCertValidated(const shared_ptr<const Data>& signCertificate, |
| 335 | const shared_ptr<const Packet>& packet, |
| 336 | const OnValidated& onValidated, |
| 337 | const OnFailed& onValidationFailed) |
| 338 | { |
| 339 | shared_ptr<IdentityCertificate> certificate = |
Alexander Afanasyev | f73f063 | 2014-05-12 18:02:37 -0700 | [diff] [blame] | 340 | make_shared<IdentityCertificate>(*signCertificate); |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 341 | |
| 342 | if (!certificate->isTooLate() && !certificate->isTooEarly()) |
| 343 | { |
| 344 | m_certificateCache->insertCertificate(certificate); |
| 345 | |
| 346 | if (verifySignature(*packet, certificate->getPublicKeyInfo())) |
| 347 | return onValidated(packet); |
| 348 | else |
| 349 | return onValidationFailed(packet, |
| 350 | "Cannot verify signature: " + |
| 351 | packet->getName().toUri()); |
| 352 | } |
| 353 | else |
| 354 | { |
| 355 | return onValidationFailed(packet, |
| 356 | "Signing certificate " + |
| 357 | signCertificate->getName().toUri() + |
| 358 | " is no longer valid."); |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | template<class Packet, class OnFailed> |
| 363 | void |
| 364 | ValidatorConfig::onCertFailed(const shared_ptr<const Data>& signCertificate, |
| 365 | const std::string& failureInfo, |
| 366 | const shared_ptr<const Packet>& packet, |
| 367 | const OnFailed& onValidationFailed) |
| 368 | { |
| 369 | onValidationFailed(packet, failureInfo); |
| 370 | } |
| 371 | |
Yingdi Yu | b465065 | 2014-04-17 10:19:59 -0700 | [diff] [blame] | 372 | inline time::nanoseconds |
| 373 | ValidatorConfig::getDefaultRefreshPeriod() |
| 374 | { |
| 375 | return time::duration_cast<time::nanoseconds>(time::seconds(3600)); |
| 376 | } |
| 377 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 378 | } // namespace ndn |
| 379 | |
| 380 | #endif // NDN_SECURITY_VALIDATOR_CONFIG_HPP |