Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Justin Labry | aef53b6 | 2021-03-10 06:07:27 +0000 | [diff] [blame^] | 3 | * Copyright (c) 2013-2021 Regents of the University of California. |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 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. |
| 20 | */ |
| 21 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 22 | #include "ndn-cxx/security/validation-policy-config.hpp" |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 23 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 24 | #include "ndn-cxx/security/transform/base64-encode.hpp" |
| 25 | #include "ndn-cxx/security/transform/buffer-source.hpp" |
| 26 | #include "ndn-cxx/security/transform/stream-sink.hpp" |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 27 | #include "ndn-cxx/util/io.hpp" |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 28 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 29 | #include "tests/boost-test.hpp" |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 30 | #include "tests/unit/security/validator-config/common.hpp" |
| 31 | #include "tests/unit/security/validator-fixture.hpp" |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 32 | |
| 33 | namespace ndn { |
| 34 | namespace security { |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 35 | inline namespace v2 { |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 36 | namespace validator_config { |
| 37 | namespace tests { |
| 38 | |
| 39 | using namespace ndn::tests; |
| 40 | using namespace ndn::security::v2::tests; |
| 41 | |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 42 | BOOST_AUTO_TEST_SUITE(Security) |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 43 | BOOST_AUTO_TEST_SUITE(TestValidationPolicyConfig) |
| 44 | |
Davide Pesavento | 0a6456c | 2019-11-14 00:33:11 -0500 | [diff] [blame] | 45 | BOOST_FIXTURE_TEST_CASE(EmptyConfig, HierarchicalValidatorFixture<ValidationPolicyConfig>) |
| 46 | { |
| 47 | this->policy.load(ConfigSection{}, "<empty>"); |
| 48 | |
| 49 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true); |
| 50 | BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false); |
| 51 | BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 0); |
| 52 | BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 0); |
| 53 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 54 | Data d("/Security/ValidationPolicyConfig/D"); |
Davide Pesavento | 0a6456c | 2019-11-14 00:33:11 -0500 | [diff] [blame] | 55 | this->m_keyChain.sign(d, signingByIdentity(this->identity)); |
| 56 | VALIDATE_FAILURE(d, "Empty policy should reject everything"); |
| 57 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 58 | Interest i("/Security/ValidationPolicyConfig/I"); |
Eric Newberry | b74bbda | 2020-06-18 19:33:58 -0700 | [diff] [blame] | 59 | i.setCanBePrefix(false); |
Davide Pesavento | 0a6456c | 2019-11-14 00:33:11 -0500 | [diff] [blame] | 60 | this->m_keyChain.sign(i, signingByIdentity(this->identity)); |
| 61 | VALIDATE_FAILURE(i, "Empty policy should reject everything"); |
| 62 | } |
| 63 | |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 64 | template<typename Packet> |
| 65 | class PacketName; |
| 66 | |
| 67 | template<> |
| 68 | class PacketName<Interest> |
| 69 | { |
| 70 | public: |
| 71 | static std::string |
| 72 | getName() |
| 73 | { |
| 74 | return "interest"; |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | template<> |
| 79 | class PacketName<Data> |
| 80 | { |
| 81 | public: |
| 82 | static std::string |
| 83 | getName() |
| 84 | { |
| 85 | return "data"; |
| 86 | } |
| 87 | }; |
| 88 | |
| 89 | template<typename PacketType> |
| 90 | class ValidationPolicyConfigFixture : public HierarchicalValidatorFixture<ValidationPolicyConfig> |
| 91 | { |
| 92 | public: |
| 93 | ValidationPolicyConfigFixture() |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 94 | : path(boost::filesystem::path(UNIT_TESTS_TMPDIR) / "security" / "validation-policy-config") |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 95 | { |
| 96 | boost::filesystem::create_directories(path); |
| 97 | baseConfig = R"CONF( |
| 98 | rule |
| 99 | { |
| 100 | id test-rule-id |
| 101 | for )CONF" + PacketName<Packet>::getName() + R"CONF( |
| 102 | filter |
| 103 | { |
| 104 | type name |
| 105 | name )CONF" + identity.getName().toUri() + R"CONF( |
| 106 | relation is-prefix-of |
| 107 | } |
| 108 | checker |
| 109 | { |
| 110 | type hierarchical |
| 111 | sig-type rsa-sha256 |
| 112 | } |
| 113 | } |
| 114 | )CONF"; |
| 115 | } |
| 116 | |
| 117 | ~ValidationPolicyConfigFixture() |
| 118 | { |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 119 | boost::filesystem::remove_all(path); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 120 | } |
| 121 | |
Davide Pesavento | 0a6456c | 2019-11-14 00:33:11 -0500 | [diff] [blame] | 122 | protected: |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 123 | using Packet = PacketType; |
| 124 | |
| 125 | const boost::filesystem::path path; |
| 126 | std::string baseConfig; |
| 127 | }; |
| 128 | |
| 129 | template<typename PacketType> |
| 130 | class LoadStringWithFileAnchor : public ValidationPolicyConfigFixture<PacketType> |
| 131 | { |
| 132 | public: |
| 133 | LoadStringWithFileAnchor() |
| 134 | { |
| 135 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false); |
| 136 | |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 137 | this->saveIdentityCert(this->identity, (this->path / "identity.ndncert").string()); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 138 | this->policy.load(this->baseConfig + R"CONF( |
| 139 | trust-anchor |
| 140 | { |
| 141 | type file |
| 142 | file-name "trust-anchor.ndncert" |
| 143 | } |
| 144 | )CONF", (this->path / "test-config").string()); |
| 145 | |
| 146 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true); |
| 147 | BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false); |
| 148 | } |
| 149 | }; |
| 150 | |
| 151 | template<typename PacketType> |
| 152 | class LoadFileWithFileAnchor : public ValidationPolicyConfigFixture<PacketType> |
| 153 | { |
| 154 | public: |
| 155 | LoadFileWithFileAnchor() |
| 156 | { |
| 157 | std::string configFile = (this->path / "config.conf").string(); |
| 158 | { |
Davide Pesavento | 0a6456c | 2019-11-14 00:33:11 -0500 | [diff] [blame] | 159 | std::ofstream config(configFile); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 160 | config << this->baseConfig << R"CONF( |
Davide Pesavento | 0a6456c | 2019-11-14 00:33:11 -0500 | [diff] [blame] | 161 | trust-anchor |
| 162 | { |
| 163 | type file |
| 164 | file-name "trust-anchor.ndncert" |
| 165 | } |
| 166 | )CONF"; |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 167 | } |
Davide Pesavento | 0a6456c | 2019-11-14 00:33:11 -0500 | [diff] [blame] | 168 | |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 169 | this->saveIdentityCert(this->identity, (this->path / "identity.ndncert").string()); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 170 | |
| 171 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false); |
| 172 | |
| 173 | this->policy.load(configFile); |
| 174 | |
| 175 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true); |
| 176 | BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false); |
| 177 | } |
| 178 | }; |
| 179 | |
| 180 | template<typename PacketType> |
Varun Patil | 574c3f9 | 2020-11-25 09:07:33 +0530 | [diff] [blame] | 181 | class LoadFileWithMultipleFileAnchors : public ValidationPolicyConfigFixture<PacketType> |
| 182 | { |
| 183 | public: |
| 184 | LoadFileWithMultipleFileAnchors() |
| 185 | { |
| 186 | std::string configFile = (this->path / "config.conf").string(); |
| 187 | { |
| 188 | std::ofstream config(configFile); |
| 189 | config << this->baseConfig << R"CONF( |
| 190 | trust-anchor |
| 191 | { |
| 192 | type file |
| 193 | file-name "identity.ndncert" |
| 194 | } |
| 195 | trust-anchor |
| 196 | { |
| 197 | type file |
| 198 | file-name "trust-anchor.ndncert" |
| 199 | } |
| 200 | )CONF"; |
| 201 | } |
| 202 | |
| 203 | this->saveIdentityCert(this->identity, (this->path / "identity.ndncert").string()); |
| 204 | |
| 205 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false); |
| 206 | |
| 207 | this->policy.load(configFile); |
| 208 | |
| 209 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true); |
| 210 | BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false); |
| 211 | } |
| 212 | }; |
| 213 | |
| 214 | template<typename PacketType> |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 215 | class LoadSectionWithFileAnchor : public ValidationPolicyConfigFixture<PacketType> |
| 216 | { |
| 217 | public: |
| 218 | LoadSectionWithFileAnchor() |
| 219 | { |
| 220 | auto section = makeSection(this->baseConfig + R"CONF( |
| 221 | trust-anchor |
| 222 | { |
| 223 | type file |
| 224 | file-name "trust-anchor.ndncert" |
| 225 | } |
| 226 | )CONF"); |
| 227 | |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 228 | this->saveIdentityCert(this->identity, (this->path / "identity.ndncert").string()); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 229 | |
| 230 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false); |
| 231 | |
| 232 | this->policy.load(section, (this->path / "test-config").string()); |
| 233 | |
| 234 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true); |
| 235 | BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false); |
| 236 | } |
| 237 | }; |
| 238 | |
| 239 | template<typename PacketType> |
| 240 | class LoadStringWithBase64Anchor : public ValidationPolicyConfigFixture<PacketType> |
| 241 | { |
| 242 | public: |
| 243 | LoadStringWithBase64Anchor() |
| 244 | { |
| 245 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false); |
| 246 | |
| 247 | std::ostringstream os; |
Davide Pesavento | 0a6456c | 2019-11-14 00:33:11 -0500 | [diff] [blame] | 248 | { |
| 249 | using namespace ndn::security::transform; |
| 250 | const auto& cert = this->identity.getDefaultKey().getDefaultCertificate().wireEncode(); |
| 251 | bufferSource(cert.wire(), cert.size()) >> base64Encode(false) >> streamSink(os); |
| 252 | } |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 253 | |
| 254 | this->policy.load(this->baseConfig + R"CONF( |
| 255 | trust-anchor |
| 256 | { |
| 257 | type base64 |
| 258 | base64-string ")CONF" + os.str() + R"CONF(" |
| 259 | } |
| 260 | )CONF", (this->path / "test-config").string()); |
| 261 | |
| 262 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true); |
| 263 | BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false); |
| 264 | } |
| 265 | }; |
| 266 | |
| 267 | class NoRefresh |
| 268 | { |
| 269 | public: |
| 270 | static std::string |
| 271 | getRefreshString() |
| 272 | { |
| 273 | return ""; |
| 274 | } |
| 275 | }; |
| 276 | |
| 277 | class Refresh1h |
| 278 | { |
| 279 | public: |
| 280 | static std::string |
| 281 | getRefreshString() |
| 282 | { |
| 283 | return "refresh 1h"; |
| 284 | } |
| 285 | |
| 286 | static time::milliseconds |
| 287 | getRefreshTime() |
| 288 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 289 | return 1_h; |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 290 | } |
| 291 | }; |
| 292 | |
| 293 | class Refresh1m |
| 294 | { |
| 295 | public: |
| 296 | static std::string |
| 297 | getRefreshString() |
| 298 | { |
| 299 | return "refresh 1m"; |
| 300 | } |
| 301 | |
| 302 | static time::milliseconds |
| 303 | getRefreshTime() |
| 304 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 305 | return 1_min; |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 306 | } |
| 307 | }; |
| 308 | |
| 309 | class Refresh1s |
| 310 | { |
| 311 | public: |
| 312 | static std::string |
| 313 | getRefreshString() |
| 314 | { |
| 315 | return "refresh 1s"; |
| 316 | } |
| 317 | |
| 318 | static time::milliseconds |
| 319 | getRefreshTime() |
| 320 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 321 | return 1_s; |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 322 | } |
| 323 | }; |
| 324 | |
| 325 | template<typename PacketType, typename Refresh = NoRefresh> |
| 326 | class LoadStringWithDirAnchor : public ValidationPolicyConfigFixture<PacketType> |
| 327 | { |
| 328 | public: |
| 329 | LoadStringWithDirAnchor() |
| 330 | { |
| 331 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false); |
| 332 | |
| 333 | boost::filesystem::create_directories(this->path / "keys"); |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 334 | this->saveIdentityCert(this->identity, (this->path / "keys" / "identity.ndncert").string()); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 335 | |
| 336 | this->policy.load(this->baseConfig + R"CONF( |
| 337 | trust-anchor |
| 338 | { |
| 339 | type dir |
| 340 | dir keys |
| 341 | )CONF" + Refresh::getRefreshString() + R"CONF( |
| 342 | } |
| 343 | )CONF", (this->path / "test-config").string()); |
| 344 | |
| 345 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true); |
| 346 | BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false); |
| 347 | } |
| 348 | }; |
| 349 | |
| 350 | using DataPolicies = boost::mpl::vector<LoadStringWithFileAnchor<Data>, |
| 351 | LoadFileWithFileAnchor<Data>, |
Varun Patil | 574c3f9 | 2020-11-25 09:07:33 +0530 | [diff] [blame] | 352 | LoadFileWithMultipleFileAnchors<Data>, |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 353 | LoadSectionWithFileAnchor<Data>, |
| 354 | LoadStringWithBase64Anchor<Data>, |
| 355 | LoadStringWithDirAnchor<Data>, |
| 356 | LoadStringWithDirAnchor<Data, Refresh1h>, |
| 357 | LoadStringWithDirAnchor<Data, Refresh1m>, |
| 358 | LoadStringWithDirAnchor<Data, Refresh1s> |
| 359 | >; |
| 360 | |
| 361 | using InterestPolicies = boost::mpl::vector<LoadStringWithFileAnchor<Interest>, |
| 362 | LoadFileWithFileAnchor<Interest>, |
Varun Patil | 574c3f9 | 2020-11-25 09:07:33 +0530 | [diff] [blame] | 363 | LoadFileWithMultipleFileAnchors<Interest>, |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 364 | LoadSectionWithFileAnchor<Interest>, |
| 365 | LoadStringWithBase64Anchor<Interest>, |
| 366 | LoadStringWithDirAnchor<Interest>, |
| 367 | LoadStringWithDirAnchor<Interest, Refresh1h>, |
| 368 | LoadStringWithDirAnchor<Interest, Refresh1m>, |
| 369 | LoadStringWithDirAnchor<Interest, Refresh1s> |
| 370 | >; |
| 371 | |
| 372 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(ValidateData, Policy, DataPolicies, Policy) |
| 373 | { |
| 374 | BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 1); |
| 375 | BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 0); |
| 376 | |
| 377 | using Packet = typename Policy::Packet; |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 378 | Packet unsignedPacket("/Security/ValidatorFixture/Sub1/Sub2/Packet"); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 379 | |
| 380 | Packet packet = unsignedPacket; |
| 381 | VALIDATE_FAILURE(packet, "Unsigned"); |
| 382 | |
| 383 | packet = unsignedPacket; |
| 384 | this->m_keyChain.sign(packet, signingWithSha256()); |
Justin Labry | aef53b6 | 2021-03-10 06:07:27 +0000 | [diff] [blame^] | 385 | VALIDATE_FAILURE(packet, "Should not be accepted, doesn't pass checker /localhost/identity/digest-sha256"); |
| 386 | |
| 387 | packet = Packet("/localhost/identity/digest-sha256/foobar"); |
| 388 | this->m_keyChain.sign(packet, signingWithSha256()); |
| 389 | VALIDATE_FAILURE(packet, "Should not be accepted, no rule for the name /localhost/identity/digest-sha256"); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 390 | |
| 391 | packet = unsignedPacket; |
| 392 | this->m_keyChain.sign(packet, signingByIdentity(this->identity)); |
| 393 | VALIDATE_SUCCESS(packet, "Should get accepted, as signed by the anchor"); |
| 394 | |
| 395 | packet = unsignedPacket; |
| 396 | this->m_keyChain.sign(packet, signingByIdentity(this->subIdentity)); |
| 397 | VALIDATE_SUCCESS(packet, "Should get accepted, as signed by the policy-compliant cert"); |
| 398 | |
| 399 | packet = unsignedPacket; |
| 400 | this->m_keyChain.sign(packet, signingByIdentity(this->otherIdentity)); |
| 401 | VALIDATE_FAILURE(packet, "Should fail, as signed by the policy-violating cert"); |
| 402 | |
| 403 | packet = unsignedPacket; |
| 404 | this->m_keyChain.sign(packet, signingByIdentity(this->subSelfSignedIdentity)); |
| 405 | VALIDATE_FAILURE(packet, "Should fail, because subSelfSignedIdentity is not a trust anchor"); |
| 406 | } |
| 407 | |
| 408 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(ValidateInterest, Policy, InterestPolicies, Policy) |
| 409 | { |
| 410 | BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 0); |
| 411 | BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 1); |
| 412 | |
| 413 | using Packet = typename Policy::Packet; |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 414 | Packet unsignedPacket("/Security/ValidatorFixture/Sub1/Sub2/Packet"); |
Eric Newberry | b74bbda | 2020-06-18 19:33:58 -0700 | [diff] [blame] | 415 | // All of the packet types inputed to this test case template are Interests, so we can call |
| 416 | // setCanBePrefix |
| 417 | unsignedPacket.setCanBePrefix(false); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 418 | |
| 419 | Packet packet = unsignedPacket; |
| 420 | VALIDATE_FAILURE(packet, "Unsigned"); |
| 421 | |
| 422 | packet = unsignedPacket; |
| 423 | this->m_keyChain.sign(packet, signingWithSha256()); |
Justin Labry | aef53b6 | 2021-03-10 06:07:27 +0000 | [diff] [blame^] | 424 | VALIDATE_FAILURE(packet, "Should not be accepted, doesn't pass checker /localhost/identity/digest-sha256"); |
| 425 | |
| 426 | packet = Packet("/localhost/identity/digest-sha256/foobar"); |
| 427 | this->m_keyChain.sign(packet, signingWithSha256()); |
| 428 | VALIDATE_FAILURE(packet, "Should not be accepted, no rule for the name /localhost/identity/digest-sha256"); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 429 | |
| 430 | packet = unsignedPacket; |
| 431 | this->m_keyChain.sign(packet, signingByIdentity(this->identity)); |
| 432 | VALIDATE_SUCCESS(packet, "Should get accepted, as signed by the anchor"); |
| 433 | |
| 434 | packet = unsignedPacket; |
| 435 | this->m_keyChain.sign(packet, signingByIdentity(this->subIdentity)); |
| 436 | VALIDATE_FAILURE(packet, "Should fail, as there is no matching rule for data"); |
| 437 | |
| 438 | packet = unsignedPacket; |
| 439 | this->m_keyChain.sign(packet, signingByIdentity(this->otherIdentity)); |
| 440 | VALIDATE_FAILURE(packet, "Should fail, as signed by the policy-violating cert"); |
| 441 | |
| 442 | packet = unsignedPacket; |
| 443 | this->m_keyChain.sign(packet, signingByIdentity(this->subSelfSignedIdentity)); |
| 444 | VALIDATE_FAILURE(packet, "Should fail, because subSelfSignedIdentity is not a trust anchor"); |
| 445 | } |
| 446 | |
Justin Labry | aef53b6 | 2021-03-10 06:07:27 +0000 | [diff] [blame^] | 447 | BOOST_FIXTURE_TEST_CASE(DigestSha256, HierarchicalValidatorFixture<ValidationPolicyConfig>) |
| 448 | { |
| 449 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false); |
| 450 | this->policy.load(R"CONF( |
| 451 | rule |
| 452 | { |
| 453 | id test-rule-data-id |
| 454 | for data |
| 455 | filter |
| 456 | { |
| 457 | type name |
| 458 | name /localhost/identity/digest-sha256 |
| 459 | relation is-prefix-of |
| 460 | } |
| 461 | checker |
| 462 | { |
| 463 | type customized |
| 464 | sig-type sha256 |
| 465 | key-locator |
| 466 | { |
| 467 | type name |
| 468 | hyper-relation |
| 469 | { |
| 470 | k-regex ^(<>*)$ |
| 471 | k-expand \\1 |
| 472 | h-relation is-prefix-of |
| 473 | p-regex ^(<>*)$ |
| 474 | p-expand \\1 |
| 475 | } |
| 476 | } |
| 477 | } |
| 478 | } |
| 479 | rule |
| 480 | { |
| 481 | id test-rule-interest-id |
| 482 | for interest |
| 483 | filter |
| 484 | { |
| 485 | type name |
| 486 | name /localhost/identity/digest-sha256 |
| 487 | relation is-prefix-of |
| 488 | } |
| 489 | checker |
| 490 | { |
| 491 | type customized |
| 492 | sig-type sha256 |
| 493 | key-locator |
| 494 | { |
| 495 | type name |
| 496 | hyper-relation |
| 497 | { |
| 498 | k-regex ^(<>*)$ |
| 499 | k-expand \\1 |
| 500 | h-relation is-prefix-of |
| 501 | p-regex ^(<>*)$ |
| 502 | p-expand \\1 |
| 503 | } |
| 504 | } |
| 505 | } |
| 506 | } |
| 507 | )CONF", "test-config"); |
| 508 | |
| 509 | |
| 510 | Interest interest("/localhost/identity/digest-sha256/foobar"); |
| 511 | interest.setCanBePrefix(false); |
| 512 | this->m_keyChain.sign(interest, signingWithSha256()); |
| 513 | VALIDATE_SUCCESS(interest, "Should be accepted"); |
| 514 | |
| 515 | Data data("/localhost/identity/digest-sha256/foobar"); |
| 516 | this->m_keyChain.sign(data, signingWithSha256()); |
| 517 | VALIDATE_SUCCESS(data, "Should be accepted"); |
| 518 | } |
| 519 | |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 520 | BOOST_FIXTURE_TEST_CASE(Reload, HierarchicalValidatorFixture<ValidationPolicyConfig>) |
| 521 | { |
| 522 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false); |
| 523 | this->policy.load(R"CONF( |
| 524 | rule |
| 525 | { |
| 526 | id test-rule-data-id |
| 527 | for data |
| 528 | filter |
| 529 | { |
| 530 | type name |
| 531 | name /foo/bar |
| 532 | relation is-prefix-of |
| 533 | } |
| 534 | checker |
| 535 | { |
| 536 | type hierarchical |
| 537 | sig-type rsa-sha256 |
| 538 | } |
| 539 | } |
| 540 | rule |
| 541 | { |
| 542 | id test-rule-interest-id |
| 543 | for interest |
| 544 | filter |
| 545 | { |
| 546 | type name |
| 547 | name /foo/bar |
| 548 | relation is-prefix-of |
| 549 | } |
| 550 | checker |
| 551 | { |
| 552 | type hierarchical |
| 553 | sig-type rsa-sha256 |
| 554 | } |
| 555 | } |
| 556 | trust-anchor |
| 557 | { |
| 558 | type dir |
| 559 | dir keys |
| 560 | refresh 1h |
| 561 | } |
| 562 | )CONF", "test-config"); |
| 563 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true); |
| 564 | BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false); |
| 565 | BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 1); |
| 566 | BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 1); |
| 567 | |
| 568 | this->policy.load(R"CONF( |
| 569 | trust-anchor |
| 570 | { |
| 571 | type any |
| 572 | } |
| 573 | )CONF", "test-config"); |
| 574 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true); |
| 575 | BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, true); |
| 576 | BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 0); |
| 577 | BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 0); |
| 578 | } |
| 579 | |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 580 | using Packets = boost::mpl::vector<Interest, Data>; |
| 581 | |
| 582 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(TrustAnchorWildcard, Packet, Packets, ValidationPolicyConfigFixture<Packet>) |
| 583 | { |
| 584 | this->policy.load(R"CONF( |
| 585 | trust-anchor |
| 586 | { |
| 587 | type any |
| 588 | } |
| 589 | )CONF", "test-config"); |
| 590 | |
| 591 | BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true); |
| 592 | BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, true); |
| 593 | BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 0); |
| 594 | BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 0); |
| 595 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 596 | Packet unsignedPacket("/Security/ValidatorFixture/Sub1/Sub2/Packet"); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 597 | |
| 598 | Packet packet = unsignedPacket; |
| 599 | VALIDATE_SUCCESS(packet, "Policy should accept everything"); |
| 600 | |
| 601 | packet = unsignedPacket; |
| 602 | this->m_keyChain.sign(packet, signingWithSha256()); |
| 603 | VALIDATE_SUCCESS(packet, "Policy should accept everything"); |
| 604 | |
| 605 | packet = unsignedPacket; |
| 606 | this->m_keyChain.sign(packet, signingByIdentity(this->identity)); |
| 607 | VALIDATE_SUCCESS(packet, "Policy should accept everything"); |
| 608 | |
| 609 | packet = unsignedPacket; |
| 610 | this->m_keyChain.sign(packet, signingByIdentity(this->subIdentity)); |
| 611 | VALIDATE_SUCCESS(packet, "Policy should accept everything"); |
| 612 | |
| 613 | packet = unsignedPacket; |
| 614 | this->m_keyChain.sign(packet, signingByIdentity(this->otherIdentity)); |
| 615 | VALIDATE_SUCCESS(packet, "Policy should accept everything"); |
| 616 | |
| 617 | packet = unsignedPacket; |
| 618 | this->m_keyChain.sign(packet, signingByIdentity(this->subSelfSignedIdentity)); |
| 619 | VALIDATE_SUCCESS(packet, "Policy should accept everything"); |
| 620 | } |
| 621 | |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 622 | using RefreshPolicies = boost::mpl::vector<Refresh1h, Refresh1m, Refresh1s>; |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 623 | |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 624 | template<typename RefreshPolicy> |
| 625 | class RefreshPolicyFixture : public LoadStringWithDirAnchor<Data, RefreshPolicy> |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 626 | { |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 627 | }; |
| 628 | |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 629 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(ValidateRefresh, Refresh, RefreshPolicies, RefreshPolicyFixture<Refresh>) |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 630 | { |
| 631 | using Packet = Data; |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 632 | Packet unsignedPacket("/Security/ValidatorFixture/Sub1/Sub2/Packet"); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 633 | |
| 634 | boost::filesystem::remove(this->path / "keys" / "identity.ndncert"); |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 635 | this->advanceClocks(Refresh::getRefreshTime(), 3); |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 636 | |
| 637 | Packet packet = unsignedPacket; |
| 638 | this->m_keyChain.sign(packet, signingByIdentity(this->identity)); |
| 639 | VALIDATE_FAILURE(packet, "Should fail, as the trust anchor should no longer exist"); |
| 640 | |
| 641 | packet = unsignedPacket; |
| 642 | this->m_keyChain.sign(packet, signingByIdentity(this->subIdentity)); |
| 643 | VALIDATE_FAILURE(packet, "Should fail, as the trust anchor should no longer exist"); |
| 644 | } |
| 645 | |
Alexander Afanasyev | 7b11246 | 2018-10-17 11:51:52 -0400 | [diff] [blame] | 646 | BOOST_FIXTURE_TEST_CASE(OrphanedPolicyLoad, HierarchicalValidatorFixture<ValidationPolicyConfig>) // Bug #4758 |
| 647 | { |
| 648 | ValidationPolicyConfig policy1; |
| 649 | BOOST_CHECK_THROW(policy1.load("trust-anchor { type any }", "test-config"), Error); |
| 650 | |
| 651 | // Reloading would have triggered a segfault |
| 652 | BOOST_CHECK_THROW(policy1.load("trust-anchor { type any }", "test-config"), Error); |
| 653 | |
| 654 | ValidationPolicyConfig policy2; |
| 655 | |
| 656 | std::string config = R"CONF( |
| 657 | trust-anchor |
| 658 | { |
| 659 | type dir |
| 660 | dir keys |
| 661 | refresh 1h |
| 662 | } |
| 663 | )CONF"; |
| 664 | |
| 665 | // Inserting trust anchor would have triggered a segfault |
| 666 | BOOST_CHECK_THROW(policy2.load(config, "test-config"), Error); |
| 667 | } |
| 668 | |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 669 | BOOST_AUTO_TEST_SUITE_END() // TestValidationPolicyConfig |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 670 | BOOST_AUTO_TEST_SUITE_END() // Security |
| 671 | |
| 672 | } // namespace tests |
| 673 | } // namespace validator_config |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 674 | } // inline namespace v2 |
Alexander Afanasyev | e5a19b8 | 2017-01-30 22:30:46 -0800 | [diff] [blame] | 675 | } // namespace security |
| 676 | } // namespace ndn |