blob: 0490b77b2e39aa95ca466aef59acb5b91cfe9e44 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Yingdi Yu6ac97982014-01-30 14:49:21 -08002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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 Afanasyevdfa52c42014-04-24 21:10:11 -070020 *
21 * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/>
Yingdi Yu6ac97982014-01-30 14:49:21 -080022 */
23
Yingdi Yufc40d872014-02-18 12:56:04 -080024#ifndef NDN_SECURITY_VALIDATOR_REGEX_HPP
25#define NDN_SECURITY_VALIDATOR_REGEX_HPP
Yingdi Yu6ac97982014-01-30 14:49:21 -080026
27#include "validator.hpp"
28#include "identity-certificate.hpp"
29#include "sec-rule-relative.hpp"
30#include "certificate-cache.hpp"
31#include "../util/regex.hpp"
32
Yingdi Yu6ac97982014-01-30 14:49:21 -080033namespace ndn {
34
35class ValidatorRegex : public Validator
36{
37public:
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070038 class Error : public Validator::Error
39 {
40 public:
41 explicit
42 Error(const std::string& what)
43 : Validator::Error(what)
44 {
45 }
46 };
Yingdi Yu6ac97982014-01-30 14:49:21 -080047
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070048 static const shared_ptr<CertificateCache> DEFAULT_CERTIFICATE_CACHE;
49
Alexander Afanasyeva4297a62014-06-19 13:29:34 -070050 explicit
Yingdi Yu96e64062014-04-15 19:57:33 -070051 ValidatorRegex(Face& face,
52 shared_ptr<CertificateCache> certificateCache = DEFAULT_CERTIFICATE_CACHE,
53 const int stepLimit = 3);
54
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070055 virtual
56 ~ValidatorRegex()
57 {
58 }
59
Yingdi Yu6ac97982014-01-30 14:49:21 -080060 /**
61 * @brief Add a rule for data verification.
62 *
Alexander Afanasyev770827c2014-05-13 17:42:55 -070063 * @param rule The verification rule
Yingdi Yu6ac97982014-01-30 14:49:21 -080064 */
65 inline void
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070066 addDataVerificationRule(shared_ptr<SecRuleRelative> rule);
67
Yingdi Yu6ac97982014-01-30 14:49:21 -080068 /**
69 * @brief Add a trust anchor
70 *
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070071 * @param certificate The trust anchor
Yingdi Yu6ac97982014-01-30 14:49:21 -080072 */
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070073 inline void
Yingdi Yu6ac97982014-01-30 14:49:21 -080074 addTrustAnchor(shared_ptr<IdentityCertificate> certificate);
75
76protected:
77 virtual void
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070078 checkPolicy(const Data& data,
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070079 int nSteps,
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070080 const OnDataValidated& onValidated,
81 const OnDataValidationFailed& onValidationFailed,
82 std::vector<shared_ptr<ValidationRequest> >& nextSteps);
Yingdi Yu6ac97982014-01-30 14:49:21 -080083
Yingdi Yu9a335352014-01-31 11:57:46 -080084 virtual void
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070085 checkPolicy(const Interest& interest,
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070086 int nSteps,
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070087 const OnInterestValidated& onValidated,
88 const OnInterestValidationFailed& onValidationFailed,
89 std::vector<shared_ptr<ValidationRequest> >& nextSteps)
90 {
91 onValidationFailed(interest.shared_from_this(), "No policy for signed interest checking");
92 }
Yingdi Yu9a335352014-01-31 11:57:46 -080093
Yingdi Yu6ac97982014-01-30 14:49:21 -080094 void
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070095 onCertificateValidated(const shared_ptr<const Data>& signCertificate,
96 const shared_ptr<const Data>& data,
97 const OnDataValidated& onValidated,
98 const OnDataValidationFailed& onValidationFailed);
99
Yingdi Yu6ac97982014-01-30 14:49:21 -0800100 void
Yingdi Yu48e8c0c2014-03-19 12:01:55 -0700101 onCertificateValidationFailed(const shared_ptr<const Data>& signCertificate,
Yingdi Yu40587c02014-02-21 16:40:48 -0800102 const std::string& failureInfo,
Yingdi Yu48e8c0c2014-03-19 12:01:55 -0700103 const shared_ptr<const Data>& data,
104 const OnDataValidationFailed& onValidationFailed);
105
Yingdi Yu6ac97982014-01-30 14:49:21 -0800106protected:
107 typedef std::vector< shared_ptr<SecRuleRelative> > RuleList;
108 typedef std::vector< shared_ptr<Regex> > RegexList;
109
110 int m_stepLimit;
111 shared_ptr<CertificateCache> m_certificateCache;
112 RuleList m_mustFailVerify;
113 RuleList m_verifyPolicies;
114 std::map<Name, shared_ptr<IdentityCertificate> > m_trustAnchors;
115};
116
Yingdi Yu48e8c0c2014-03-19 12:01:55 -0700117inline void
118ValidatorRegex::addDataVerificationRule(shared_ptr<SecRuleRelative> rule)
119{
120 rule->isPositive() ? m_verifyPolicies.push_back(rule) : m_mustFailVerify.push_back(rule);
121}
122
123inline void
Yingdi Yu6ac97982014-01-30 14:49:21 -0800124ValidatorRegex::addTrustAnchor(shared_ptr<IdentityCertificate> certificate)
Yingdi Yu48e8c0c2014-03-19 12:01:55 -0700125{
126 m_trustAnchors[certificate->getName().getPrefix(-1)] = certificate;
127}
Yingdi Yu6ac97982014-01-30 14:49:21 -0800128
Yingdi Yufc40d872014-02-18 12:56:04 -0800129} // namespace ndn
Yingdi Yu6ac97982014-01-30 14:49:21 -0800130
Yingdi Yufc40d872014-02-18 12:56:04 -0800131#endif //NDN_SECURITY_VALIDATOR_REGEX_HPP