blob: 7c32e535ea2f0a4589d936fab9ba549bd235dd2f [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
Yingdi Yu96e64062014-04-15 19:57:33 -070050 ValidatorRegex(Face& face,
51 shared_ptr<CertificateCache> certificateCache = DEFAULT_CERTIFICATE_CACHE,
52 const int stepLimit = 3);
53
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070054 virtual
55 ~ValidatorRegex()
56 {
57 }
58
Yingdi Yu6ac97982014-01-30 14:49:21 -080059 /**
60 * @brief Add a rule for data verification.
61 *
Alexander Afanasyev770827c2014-05-13 17:42:55 -070062 * @param rule The verification rule
Yingdi Yu6ac97982014-01-30 14:49:21 -080063 */
64 inline void
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070065 addDataVerificationRule(shared_ptr<SecRuleRelative> rule);
66
Yingdi Yu6ac97982014-01-30 14:49:21 -080067 /**
68 * @brief Add a trust anchor
69 *
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070070 * @param certificate The trust anchor
Yingdi Yu6ac97982014-01-30 14:49:21 -080071 */
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070072 inline void
Yingdi Yu6ac97982014-01-30 14:49:21 -080073 addTrustAnchor(shared_ptr<IdentityCertificate> certificate);
74
75protected:
76 virtual void
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070077 checkPolicy(const Data& data,
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070078 int nSteps,
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070079 const OnDataValidated& onValidated,
80 const OnDataValidationFailed& onValidationFailed,
81 std::vector<shared_ptr<ValidationRequest> >& nextSteps);
Yingdi Yu6ac97982014-01-30 14:49:21 -080082
Yingdi Yu9a335352014-01-31 11:57:46 -080083 virtual void
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070084 checkPolicy(const Interest& interest,
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070085 int nSteps,
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070086 const OnInterestValidated& onValidated,
87 const OnInterestValidationFailed& onValidationFailed,
88 std::vector<shared_ptr<ValidationRequest> >& nextSteps)
89 {
90 onValidationFailed(interest.shared_from_this(), "No policy for signed interest checking");
91 }
Yingdi Yu9a335352014-01-31 11:57:46 -080092
Yingdi Yu6ac97982014-01-30 14:49:21 -080093 void
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070094 onCertificateValidated(const shared_ptr<const Data>& signCertificate,
95 const shared_ptr<const Data>& data,
96 const OnDataValidated& onValidated,
97 const OnDataValidationFailed& onValidationFailed);
98
Yingdi Yu6ac97982014-01-30 14:49:21 -080099 void
Yingdi Yu48e8c0c2014-03-19 12:01:55 -0700100 onCertificateValidationFailed(const shared_ptr<const Data>& signCertificate,
Yingdi Yu40587c02014-02-21 16:40:48 -0800101 const std::string& failureInfo,
Yingdi Yu48e8c0c2014-03-19 12:01:55 -0700102 const shared_ptr<const Data>& data,
103 const OnDataValidationFailed& onValidationFailed);
104
Yingdi Yu6ac97982014-01-30 14:49:21 -0800105protected:
106 typedef std::vector< shared_ptr<SecRuleRelative> > RuleList;
107 typedef std::vector< shared_ptr<Regex> > RegexList;
108
109 int m_stepLimit;
110 shared_ptr<CertificateCache> m_certificateCache;
111 RuleList m_mustFailVerify;
112 RuleList m_verifyPolicies;
113 std::map<Name, shared_ptr<IdentityCertificate> > m_trustAnchors;
114};
115
Yingdi Yu48e8c0c2014-03-19 12:01:55 -0700116inline void
117ValidatorRegex::addDataVerificationRule(shared_ptr<SecRuleRelative> rule)
118{
119 rule->isPositive() ? m_verifyPolicies.push_back(rule) : m_mustFailVerify.push_back(rule);
120}
121
122inline void
Yingdi Yu6ac97982014-01-30 14:49:21 -0800123ValidatorRegex::addTrustAnchor(shared_ptr<IdentityCertificate> certificate)
Yingdi Yu48e8c0c2014-03-19 12:01:55 -0700124{
125 m_trustAnchors[certificate->getName().getPrefix(-1)] = certificate;
126}
Yingdi Yu6ac97982014-01-30 14:49:21 -0800127
Yingdi Yufc40d872014-02-18 12:56:04 -0800128} // namespace ndn
Yingdi Yu6ac97982014-01-30 14:49:21 -0800129
Yingdi Yufc40d872014-02-18 12:56:04 -0800130#endif //NDN_SECURITY_VALIDATOR_REGEX_HPP