Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /** |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2014, Regents of the University of California. |
| 4 | * All rights reserved. |
| 5 | * |
| 6 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 7 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 8 | * |
| 9 | * This file licensed under New BSD License. See COPYING for detailed information about |
| 10 | * ndn-cxx library copyright, permissions, and redistribution restrictions. |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 11 | */ |
| 12 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 13 | #ifndef NDN_UTIL_COMMAND_INTEREST_VALIDATOR_HPP |
| 14 | #define NDN_UTIL_COMMAND_INTEREST_VALIDATOR_HPP |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 15 | |
| 16 | #include "../security/validator.hpp" |
| 17 | #include "../security/identity-certificate.hpp" |
| 18 | #include "../security/sec-rule-specific.hpp" |
| 19 | |
| 20 | namespace ndn { |
| 21 | |
| 22 | class CommandInterestValidator : public Validator |
| 23 | { |
| 24 | public: |
| 25 | enum { |
| 26 | POS_SIG_VALUE = -1, |
| 27 | POS_SIG_INFO = -2, |
| 28 | POS_RANDOM_VAL = -3, |
| 29 | POS_TIMESTAMP = -4, |
| 30 | |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 31 | MIN_LENGTH = 4, |
| 32 | |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 33 | GRACE_INTERVAL = 3000 // ms |
| 34 | }; |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 35 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 36 | CommandInterestValidator(const time::milliseconds& graceInterval = |
| 37 | time::milliseconds(static_cast<int>(GRACE_INTERVAL))) |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 38 | : m_graceInterval(graceInterval < time::milliseconds::zero() ? |
| 39 | time::milliseconds(static_cast<int>(GRACE_INTERVAL)) : graceInterval) |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 40 | { |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | virtual |
| 44 | ~CommandInterestValidator() |
| 45 | { |
| 46 | } |
| 47 | |
Yingdi Yu | 0fc447c | 2014-04-29 19:38:32 -0700 | [diff] [blame] | 48 | /** |
| 49 | * @brief add an Interest rule that allows a specific certificate |
| 50 | * |
| 51 | * @param regex NDN Regex to match Interest Name |
| 52 | * @param certificate trusted certificate |
| 53 | */ |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 54 | void |
| 55 | addInterestRule(const std::string& regex, const IdentityCertificate& certificate); |
| 56 | |
Yingdi Yu | 0fc447c | 2014-04-29 19:38:32 -0700 | [diff] [blame] | 57 | /** |
| 58 | * @brief add an Interest rule that allows a specific public key |
| 59 | * |
| 60 | * @param regex NDN Regex to match Interest Name |
| 61 | * @param keyName KeyLocator.Name |
| 62 | * @param publicKey public key |
| 63 | */ |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 64 | void |
| 65 | addInterestRule(const std::string& regex, const Name& keyName, const PublicKey& publicKey); |
| 66 | |
Yingdi Yu | 0fc447c | 2014-04-29 19:38:32 -0700 | [diff] [blame] | 67 | /** |
| 68 | * @brief add an Interest rule that allows any signer |
| 69 | * |
| 70 | * @param regex NDN Regex to match Interest Name |
| 71 | * @note Command Interest matched by regex that is signed by any key will be accepted. |
| 72 | */ |
| 73 | void |
| 74 | addInterestBypassRule(const std::string& regex); |
| 75 | |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 76 | protected: |
| 77 | virtual void |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 78 | checkPolicy(const Data& data, |
| 79 | int stepCount, |
| 80 | const OnDataValidated& onValidated, |
| 81 | const OnDataValidationFailed& onValidationFailed, |
| 82 | std::vector<shared_ptr<ValidationRequest> >& nextSteps) |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 83 | { |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 84 | onValidationFailed(data.shared_from_this(), "No policy for data checking"); |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 85 | } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 86 | |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 87 | virtual void |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 88 | checkPolicy(const Interest& interest, |
| 89 | int stepCount, |
| 90 | const OnInterestValidated& onValidated, |
| 91 | const OnInterestValidationFailed& onValidationFailed, |
| 92 | std::vector<shared_ptr<ValidationRequest> >& nextSteps); |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 93 | private: |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 94 | time::milliseconds m_graceInterval; //ms |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 95 | std::map<Name, PublicKey> m_trustAnchorsForInterest; |
| 96 | std::list<SecRuleSpecific> m_trustScopeForInterest; |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 97 | |
| 98 | typedef std::map<Name, time::system_clock::TimePoint> LastTimestampMap; |
| 99 | LastTimestampMap m_lastTimestamp; |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | inline void |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 103 | CommandInterestValidator::addInterestRule(const std::string& regex, |
| 104 | const IdentityCertificate& certificate) |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 105 | { |
| 106 | Name keyName = IdentityCertificate::certificateNameToPublicKeyName(certificate.getName()); |
| 107 | addInterestRule(regex, keyName, certificate.getPublicKeyInfo()); |
| 108 | } |
| 109 | |
| 110 | inline void |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 111 | CommandInterestValidator::addInterestRule(const std::string& regex, |
| 112 | const Name& keyName, |
| 113 | const PublicKey& publicKey) |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 114 | { |
| 115 | m_trustAnchorsForInterest[keyName] = publicKey; |
| 116 | shared_ptr<Regex> interestRegex = make_shared<Regex>(regex); |
| 117 | shared_ptr<Regex> signerRegex = Regex::fromName(keyName, true); |
| 118 | m_trustScopeForInterest.push_back(SecRuleSpecific(interestRegex, signerRegex)); |
| 119 | } |
| 120 | |
| 121 | inline void |
Yingdi Yu | 0fc447c | 2014-04-29 19:38:32 -0700 | [diff] [blame] | 122 | CommandInterestValidator::addInterestBypassRule(const std::string& regex) |
| 123 | { |
| 124 | shared_ptr<Regex> interestRegex = make_shared<Regex>(regex); |
| 125 | m_trustScopeForInterest.push_back(SecRuleSpecific(interestRegex)); |
| 126 | } |
| 127 | |
| 128 | inline void |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 129 | CommandInterestValidator::checkPolicy(const Interest& interest, |
| 130 | int stepCount, |
| 131 | const OnInterestValidated& onValidated, |
| 132 | const OnInterestValidationFailed& onValidationFailed, |
| 133 | std::vector<shared_ptr<ValidationRequest> >& nextSteps) |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 134 | { |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 135 | const Name& interestName = interest.getName(); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 136 | |
| 137 | //Prepare |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 138 | if (interestName.size() < MIN_LENGTH) |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 139 | return onValidationFailed(interest.shared_from_this(), |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 140 | "Interest is not signed: " + interest.getName().toUri()); |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 141 | Name keyName; |
| 142 | try |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 143 | { |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 144 | Signature signature(interestName[POS_SIG_INFO].blockFromValue(), |
| 145 | interestName[POS_SIG_VALUE].blockFromValue()); |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 146 | |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 147 | if (signature.getType() != Signature::Sha256WithRsa) |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 148 | return onValidationFailed(interest.shared_from_this(), |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 149 | "Require SignatureSha256WithRsa"); |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 150 | |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 151 | SignatureSha256WithRsa sig(signature); |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 152 | |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 153 | const KeyLocator& keyLocator = sig.getKeyLocator(); |
| 154 | |
| 155 | if (keyLocator.getType() != KeyLocator::KeyLocator_Name) |
| 156 | return onValidationFailed(interest.shared_from_this(), |
| 157 | "Key Locator is not a name"); |
| 158 | |
| 159 | keyName = IdentityCertificate::certificateNameToPublicKeyName(keyLocator.getName()); |
| 160 | |
| 161 | //Check if command is in the trusted scope |
| 162 | bool isInScope = false; |
| 163 | for (std::list<SecRuleSpecific>::iterator scopeIt = m_trustScopeForInterest.begin(); |
| 164 | scopeIt != m_trustScopeForInterest.end(); |
| 165 | ++scopeIt) |
| 166 | { |
| 167 | if (scopeIt->satisfy(interestName, keyName)) |
| 168 | { |
Yingdi Yu | 0fc447c | 2014-04-29 19:38:32 -0700 | [diff] [blame] | 169 | if (scopeIt->isExempted()) |
| 170 | { |
| 171 | return onValidated(interest.shared_from_this()); |
| 172 | } |
| 173 | |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 174 | isInScope = true; |
| 175 | break; |
| 176 | } |
| 177 | } |
| 178 | if (isInScope == false) |
| 179 | return onValidationFailed(interest.shared_from_this(), |
| 180 | "Signer cannot be authorized for the command: " + |
| 181 | keyName.toUri()); |
| 182 | |
| 183 | //Check signature |
| 184 | if (!Validator::verifySignature(interestName.wireEncode().value(), |
| 185 | interestName.wireEncode().value_size() - |
| 186 | interestName[-1].size(), |
| 187 | sig, m_trustAnchorsForInterest[keyName])) |
| 188 | return onValidationFailed(interest.shared_from_this(), |
| 189 | "Signature cannot be validated: " + |
| 190 | interest.getName().toUri()); |
| 191 | |
| 192 | //Check if timestamp is valid |
| 193 | time::system_clock::TimePoint interestTime = |
| 194 | time::fromUnixTimestamp(time::milliseconds(interestName.get(POS_TIMESTAMP).toNumber())); |
| 195 | |
| 196 | time::system_clock::TimePoint currentTime = time::system_clock::now(); |
| 197 | |
| 198 | LastTimestampMap::iterator timestampIt = m_lastTimestamp.find(keyName); |
| 199 | if (timestampIt == m_lastTimestamp.end()) |
| 200 | { |
| 201 | if (!(currentTime - m_graceInterval <= interestTime && |
| 202 | interestTime <= currentTime + m_graceInterval)) |
| 203 | return onValidationFailed(interest.shared_from_this(), |
| 204 | "The command is not in grace interval: " + |
| 205 | interest.getName().toUri()); |
| 206 | } |
| 207 | else |
| 208 | { |
| 209 | if (interestTime <= timestampIt->second) |
| 210 | return onValidationFailed(interest.shared_from_this(), |
| 211 | "The command is outdated: " + |
| 212 | interest.getName().toUri()); |
| 213 | } |
| 214 | |
| 215 | //Update timestamp |
| 216 | if (timestampIt == m_lastTimestamp.end()) |
| 217 | { |
| 218 | m_lastTimestamp[keyName] = interestTime; |
| 219 | } |
| 220 | else |
| 221 | { |
| 222 | timestampIt->second = interestTime; |
| 223 | } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 224 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 225 | catch (Signature::Error& e) |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 226 | { |
| 227 | return onValidationFailed(interest.shared_from_this(), |
| 228 | "No valid signature"); |
| 229 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 230 | catch (IdentityCertificate::Error& e) |
Yingdi Yu | 449e114 | 2014-03-28 18:54:42 -0700 | [diff] [blame] | 231 | { |
| 232 | return onValidationFailed(interest.shared_from_this(), |
| 233 | "Cannot locate the signing key"); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 234 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 235 | catch (Tlv::Error& e) |
| 236 | { |
| 237 | return onValidationFailed(interest.shared_from_this(), |
| 238 | "Cannot decode signature related TLVs"); |
| 239 | } |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 240 | |
| 241 | return onValidated(interest.shared_from_this()); |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 242 | } |
| 243 | |
Alexander Afanasyev | 9cbf70a | 2014-02-17 18:07:51 -0800 | [diff] [blame] | 244 | } // namespace ndn |
| 245 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 246 | #endif // NDN_UTIL_COMMAND_INTEREST_VALIDATOR_HPP |