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_CONF_KEY_LOCATOR_CHECKER_HPP |
| 25 | #define NDN_SECURITY_CONF_KEY_LOCATOR_CHECKER_HPP |
| 26 | |
| 27 | #include "../../common.hpp" |
| 28 | #include "../../data.hpp" |
| 29 | #include "../../interest.hpp" |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 30 | #include "../../util/regex.hpp" |
Yingdi Yu | 0f5fb69 | 2014-06-10 12:07:28 -0700 | [diff] [blame] | 31 | #include "../security-common.hpp" |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 32 | #include <boost/algorithm/string.hpp> |
| 33 | |
| 34 | #include "common.hpp" |
| 35 | |
| 36 | namespace ndn { |
| 37 | namespace security { |
| 38 | namespace conf { |
| 39 | |
| 40 | class KeyLocatorCheckerFactory; |
| 41 | |
Yingdi Yu | 0f5fb69 | 2014-06-10 12:07:28 -0700 | [diff] [blame] | 42 | /** |
| 43 | * @brief KeyLocatorChecker is one of the classes used by ValidatorConfig. |
| 44 | * |
| 45 | * The ValidatorConfig class consists of a set of rules. |
| 46 | * The KeyLocatorChecker class is part of a rule and is used to check if the KeyLocator field of a |
| 47 | * packet satisfy the requirements. |
| 48 | */ |
| 49 | |
| 50 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 51 | class KeyLocatorChecker |
| 52 | { |
| 53 | public: |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 54 | enum Relation { |
| 55 | RELATION_EQUAL, |
| 56 | RELATION_IS_PREFIX_OF, |
| 57 | RELATION_IS_STRICT_PREFIX_OF |
| 58 | }; |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 59 | |
| 60 | virtual |
| 61 | ~KeyLocatorChecker() |
| 62 | { |
| 63 | } |
| 64 | |
| 65 | bool |
| 66 | check(const Data& data, |
| 67 | const KeyLocator& keyLocator, |
| 68 | std::string& failInfo) |
| 69 | { |
| 70 | return check(data.getName(), keyLocator, failInfo); |
| 71 | } |
| 72 | |
| 73 | bool |
| 74 | check(const Interest& interest, |
| 75 | const KeyLocator& keyLocator, |
| 76 | std::string& failInfo) |
| 77 | { |
Yingdi Yu | 0f5fb69 | 2014-06-10 12:07:28 -0700 | [diff] [blame] | 78 | if (interest.getName().size() < signed_interest::MIN_LENGTH) |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 79 | { |
| 80 | failInfo = "No Signature"; |
| 81 | return false; |
| 82 | } |
| 83 | |
Yingdi Yu | 0f5fb69 | 2014-06-10 12:07:28 -0700 | [diff] [blame] | 84 | Name signedName = interest.getName().getPrefix(-signed_interest::MIN_LENGTH); |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 85 | return check(signedName, keyLocator, failInfo); |
| 86 | } |
| 87 | |
| 88 | protected: |
| 89 | |
| 90 | virtual bool |
| 91 | check(const Name& packetName, |
| 92 | const KeyLocator& keyLocator, |
| 93 | std::string& failInfo) = 0; |
| 94 | |
| 95 | bool |
| 96 | checkRelation(const Relation& relation, const Name& name1, const Name& name2) |
| 97 | { |
| 98 | switch (relation) |
| 99 | { |
| 100 | case RELATION_EQUAL: |
| 101 | return (name1 == name2); |
| 102 | case RELATION_IS_PREFIX_OF: |
| 103 | return name1.isPrefixOf(name2); |
| 104 | case RELATION_IS_STRICT_PREFIX_OF: |
| 105 | return (name1.isPrefixOf(name2) && name1 != name2); |
| 106 | default: |
| 107 | return false; |
| 108 | } |
| 109 | } |
| 110 | }; |
| 111 | |
| 112 | class RelationKeyLocatorNameChecker : public KeyLocatorChecker |
| 113 | { |
| 114 | public: |
| 115 | RelationKeyLocatorNameChecker(const Name& name, |
| 116 | const KeyLocatorChecker::Relation& relation) |
| 117 | : m_name(name) |
| 118 | , m_relation(relation) |
| 119 | { |
| 120 | } |
| 121 | |
| 122 | protected: |
| 123 | virtual bool |
| 124 | check(const Name& packetName, |
| 125 | const KeyLocator& keyLocator, |
| 126 | std::string& failInfo) |
| 127 | { |
| 128 | try |
| 129 | { |
| 130 | if (checkRelation(m_relation, m_name, keyLocator.getName())) |
| 131 | return true; |
| 132 | |
| 133 | failInfo = "KeyLocatorChecker failed!"; |
| 134 | return false; |
| 135 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 136 | catch (KeyLocator::Error& e) |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 137 | { |
| 138 | failInfo = "KeyLocator does not have name"; |
| 139 | return false; |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | private: |
| 144 | Name m_name; |
| 145 | KeyLocatorChecker::Relation m_relation; |
| 146 | }; |
| 147 | |
| 148 | class RegexKeyLocatorNameChecker : public KeyLocatorChecker |
| 149 | { |
| 150 | public: |
Alexander Afanasyev | a4297a6 | 2014-06-19 13:29:34 -0700 | [diff] [blame] | 151 | explicit |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 152 | RegexKeyLocatorNameChecker(const Regex& regex) |
| 153 | : m_regex(regex) |
| 154 | { |
| 155 | } |
| 156 | |
| 157 | protected: |
| 158 | virtual bool |
| 159 | check(const Name& packetName, |
| 160 | const KeyLocator& keyLocator, |
| 161 | std::string& failInfo) |
| 162 | { |
| 163 | try |
| 164 | { |
| 165 | if (m_regex.match(keyLocator.getName())) |
| 166 | return true; |
| 167 | |
| 168 | failInfo = "KeyLocatorChecker failed!"; |
| 169 | return false; |
| 170 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 171 | catch (KeyLocator::Error& e) |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 172 | { |
| 173 | failInfo = "KeyLocator does not have name"; |
| 174 | return false; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | private: |
| 179 | Regex m_regex; |
| 180 | }; |
| 181 | |
| 182 | class HyperKeyLocatorNameChecker : public KeyLocatorChecker |
| 183 | { |
| 184 | public: |
| 185 | HyperKeyLocatorNameChecker(const std::string& pExpr, const std::string pExpand, |
| 186 | const std::string& kExpr, const std::string kExpand, |
| 187 | const Relation& hyperRelation) |
| 188 | : m_hyperPRegex(new Regex(pExpr, pExpand)) |
| 189 | , m_hyperKRegex(new Regex(kExpr, kExpand)) |
| 190 | , m_hyperRelation(hyperRelation) |
| 191 | { |
| 192 | } |
| 193 | |
| 194 | protected: |
| 195 | virtual bool |
| 196 | check(const Name& packetName, |
| 197 | const KeyLocator& keyLocator, |
| 198 | std::string& failInfo) |
| 199 | { |
| 200 | try |
| 201 | { |
| 202 | if (m_hyperPRegex->match(packetName) && |
| 203 | m_hyperKRegex->match(keyLocator.getName()) && |
| 204 | checkRelation(m_hyperRelation, |
| 205 | m_hyperKRegex->expand(), |
| 206 | m_hyperPRegex->expand())) |
| 207 | return true; |
| 208 | |
| 209 | failInfo = "KeyLocatorChecker failed!"; |
| 210 | return false; |
| 211 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 212 | catch (KeyLocator::Error& e) |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 213 | { |
| 214 | failInfo = "KeyLocator does not have name"; |
| 215 | return false; |
| 216 | } |
| 217 | |
| 218 | } |
| 219 | |
| 220 | private: |
| 221 | shared_ptr<Regex> m_hyperPRegex; |
| 222 | shared_ptr<Regex> m_hyperKRegex; |
| 223 | Relation m_hyperRelation; |
| 224 | }; |
| 225 | |
| 226 | |
| 227 | class KeyLocatorCheckerFactory |
| 228 | { |
| 229 | public: |
| 230 | static shared_ptr<KeyLocatorChecker> |
| 231 | create(const ConfigSection& configSection, const std::string& filename) |
| 232 | { |
| 233 | ConfigSection::const_iterator propertyIt = configSection.begin(); |
| 234 | |
| 235 | // Get checker.key-locator.type |
| 236 | if (propertyIt == configSection.end() || !boost::iequals(propertyIt->first, "type")) |
| 237 | throw Error("Expect <checker.key-locator.type>!"); |
| 238 | |
| 239 | std::string type = propertyIt->second.data(); |
| 240 | |
| 241 | if (boost::iequals(type, "name")) |
| 242 | return createKeyLocatorNameChecker(configSection, filename); |
| 243 | else |
| 244 | throw Error("Unsupported checker.key-locator.type: " + type); |
| 245 | } |
| 246 | |
| 247 | private: |
| 248 | static shared_ptr<KeyLocatorChecker> |
| 249 | createKeyLocatorNameChecker(const ConfigSection& configSection, |
| 250 | const std::string& filename) |
| 251 | { |
| 252 | ConfigSection::const_iterator propertyIt = configSection.begin(); |
| 253 | propertyIt++; |
| 254 | |
| 255 | if (propertyIt == configSection.end()) |
| 256 | throw Error("Expect more checker.key-locator properties"); |
| 257 | |
| 258 | if (boost::iequals(propertyIt->first, "name")) |
| 259 | { |
| 260 | Name name; |
| 261 | try |
| 262 | { |
| 263 | name = Name(propertyIt->second.data()); |
| 264 | } |
| 265 | catch (Name::Error& e) |
| 266 | { |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 267 | throw Error("Invalid checker.key-locator.name: " + |
| 268 | propertyIt->second.data()); |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 269 | } |
| 270 | propertyIt++; |
| 271 | |
| 272 | if (propertyIt == configSection.end() || !boost::iequals(propertyIt->first, "relation")) |
| 273 | throw Error("Expect <checker.key-locator.relation>!"); |
| 274 | |
| 275 | std::string relationString = propertyIt->second.data(); |
| 276 | propertyIt++; |
| 277 | |
| 278 | KeyLocatorChecker::Relation relation; |
| 279 | if (boost::iequals(relationString, "equal")) |
| 280 | relation = KeyLocatorChecker::RELATION_EQUAL; |
| 281 | else if (boost::iequals(relationString, "is-prefix-of")) |
| 282 | relation = KeyLocatorChecker::RELATION_IS_PREFIX_OF; |
| 283 | else if (boost::iequals(relationString, "is-strict-prefix-of")) |
| 284 | relation = KeyLocatorChecker::RELATION_IS_STRICT_PREFIX_OF; |
| 285 | else |
| 286 | throw Error("Unsupported relation: " + relationString); |
| 287 | |
| 288 | if (propertyIt != configSection.end()) |
| 289 | throw Error("Expect the end of checker.key-locator!"); |
| 290 | |
| 291 | return shared_ptr<RelationKeyLocatorNameChecker> |
| 292 | (new RelationKeyLocatorNameChecker(name, relation)); |
| 293 | } |
| 294 | else if (boost::iequals(propertyIt->first, "regex")) |
| 295 | { |
| 296 | std::string regexString = propertyIt->second.data(); |
| 297 | propertyIt++; |
| 298 | |
| 299 | if (propertyIt != configSection.end()) |
| 300 | throw Error("Expect the end of checker.key-locator!"); |
| 301 | |
| 302 | try |
| 303 | { |
| 304 | return shared_ptr<RegexKeyLocatorNameChecker> |
| 305 | (new RegexKeyLocatorNameChecker(regexString)); |
| 306 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 307 | catch (Regex::Error& e) |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 308 | { |
| 309 | throw Error("Invalid checker.key-locator.regex: " + regexString); |
| 310 | } |
| 311 | } |
| 312 | else if (boost::iequals(propertyIt->first, "hyper-relation")) |
| 313 | { |
| 314 | const ConfigSection& hSection = propertyIt->second; |
| 315 | |
| 316 | ConfigSection::const_iterator hPropertyIt = hSection.begin(); |
| 317 | |
| 318 | // Get k-regex |
| 319 | if (hPropertyIt == hSection.end() || !boost::iequals(hPropertyIt->first, "k-regex")) |
| 320 | throw Error("Expect <checker.key-locator.hyper-relation.k-regex>!"); |
| 321 | |
| 322 | std::string kRegex = hPropertyIt->second.data(); |
| 323 | hPropertyIt++; |
| 324 | |
| 325 | // Get k-expand |
| 326 | if (hPropertyIt == hSection.end() || !boost::iequals(hPropertyIt->first, "k-expand")) |
| 327 | throw Error("Expect <checker.key-locator.hyper-relation.k-expand>!"); |
| 328 | |
| 329 | std::string kExpand = hPropertyIt->second.data(); |
| 330 | hPropertyIt++; |
| 331 | |
| 332 | // Get h-relation |
| 333 | if (hPropertyIt == hSection.end() || !boost::iequals(hPropertyIt->first, "h-relation")) |
| 334 | throw Error("Expect <checker.key-locator.hyper-relation.h-relation>!"); |
| 335 | |
| 336 | std::string hRelation = hPropertyIt->second.data(); |
| 337 | hPropertyIt++; |
| 338 | |
| 339 | // Get p-regex |
| 340 | if (hPropertyIt == hSection.end() || !boost::iequals(hPropertyIt->first, "p-regex")) |
| 341 | throw Error("Expect <checker.key-locator.hyper-relation.p-regex>!"); |
| 342 | |
| 343 | std::string pRegex = hPropertyIt->second.data(); |
| 344 | hPropertyIt++; |
| 345 | |
| 346 | // Get p-expand |
| 347 | if (hPropertyIt == hSection.end() || !boost::iequals(hPropertyIt->first, "p-expand")) |
| 348 | throw Error("Expect <checker.key-locator.hyper-relation.p-expand>!"); |
| 349 | |
| 350 | std::string pExpand = hPropertyIt->second.data(); |
| 351 | hPropertyIt++; |
| 352 | |
| 353 | if (hPropertyIt != hSection.end()) |
| 354 | throw Error("Expect the end of checker.key-locator.hyper-relation!"); |
| 355 | |
| 356 | KeyLocatorChecker::Relation relation; |
| 357 | if (boost::iequals(hRelation, "equal")) |
| 358 | relation = KeyLocatorChecker::RELATION_EQUAL; |
| 359 | else if (boost::iequals(hRelation, "is-prefix-of")) |
| 360 | relation = KeyLocatorChecker::RELATION_IS_PREFIX_OF; |
| 361 | else if (boost::iequals(hRelation, "is-strict-prefix-of")) |
| 362 | relation = KeyLocatorChecker::RELATION_IS_STRICT_PREFIX_OF; |
| 363 | else |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 364 | throw Error("Unsupported checker.key-locator.hyper-relation.h-relation: " + hRelation); |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 365 | |
| 366 | try |
| 367 | { |
| 368 | return shared_ptr<HyperKeyLocatorNameChecker> |
| 369 | (new HyperKeyLocatorNameChecker(pRegex, pExpand, |
| 370 | kRegex, kExpand, |
| 371 | relation)); |
| 372 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 373 | catch (Regex::Error& e) |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 374 | { |
| 375 | throw Error("Invalid regex for key-locator.hyper-relation"); |
| 376 | } |
| 377 | } |
| 378 | else |
| 379 | throw Error("Unsupported checker.key-locator"); |
| 380 | } |
| 381 | }; |
| 382 | |
| 383 | |
| 384 | } // namespace conf |
| 385 | } // namespace security |
| 386 | } // namespace ndn |
| 387 | |
| 388 | #endif // NDN_SECURITY_CONF_KEY_LOCATOR_CHECKER_HPP |