Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | aee2ada | 2022-02-18 14:43:02 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2022 Regents of the University of California. |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -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/validator.hpp" |
| 23 | #include "ndn-cxx/security/validation-policy-simple-hierarchy.hpp" |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 24 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 25 | #include "tests/boost-test.hpp" |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 26 | #include "tests/unit/security/validator-fixture.hpp" |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 27 | |
| 28 | namespace ndn { |
| 29 | namespace security { |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 30 | inline namespace v2 { |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 31 | namespace tests { |
| 32 | |
| 33 | using namespace ndn::tests; |
| 34 | |
| 35 | BOOST_AUTO_TEST_SUITE(Security) |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 36 | BOOST_FIXTURE_TEST_SUITE(TestValidator, HierarchicalValidatorFixture<ValidationPolicySimpleHierarchy>) |
| 37 | |
Alexander Afanasyev | b54aa57 | 2017-03-21 19:40:49 -0500 | [diff] [blame] | 38 | BOOST_AUTO_TEST_CASE(ConstructorSetValidator) |
| 39 | { |
| 40 | auto middlePolicy = make_unique<ValidationPolicySimpleHierarchy>(); |
| 41 | auto innerPolicy = make_unique<ValidationPolicySimpleHierarchy>(); |
| 42 | |
| 43 | validator.getPolicy().setInnerPolicy(std::move(middlePolicy)); |
| 44 | validator.getPolicy().setInnerPolicy(std::move(innerPolicy)); |
| 45 | |
| 46 | BOOST_CHECK(validator.getPolicy().m_validator != nullptr); |
| 47 | BOOST_CHECK(validator.getPolicy().getInnerPolicy().m_validator != nullptr); |
| 48 | BOOST_CHECK(validator.getPolicy().getInnerPolicy().getInnerPolicy().m_validator != nullptr); |
| 49 | } |
| 50 | |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 51 | BOOST_AUTO_TEST_CASE(Timeouts) |
| 52 | { |
| 53 | processInterest = nullptr; // no response for all interests |
| 54 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 55 | Data data("/Security/ValidatorFixture/Sub1/Sub2/Data"); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 56 | m_keyChain.sign(data, signingByIdentity(subIdentity)); |
| 57 | |
| 58 | VALIDATE_FAILURE(data, "Should fail to retrieve certificate"); |
| 59 | BOOST_CHECK_GT(face.sentInterests.size(), 1); |
| 60 | } |
| 61 | |
| 62 | BOOST_AUTO_TEST_CASE(NackedInterests) |
| 63 | { |
| 64 | processInterest = [this] (const Interest& interest) { |
| 65 | lp::Nack nack(interest); |
| 66 | nack.setReason(lp::NackReason::NO_ROUTE); |
| 67 | face.receive(nack); |
| 68 | }; |
| 69 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 70 | Data data("/Security/ValidatorFixture/Sub1/Sub2/Data"); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 71 | m_keyChain.sign(data, signingByIdentity(subIdentity)); |
| 72 | |
| 73 | VALIDATE_FAILURE(data, "All interests should get NACKed"); |
Ashlesh Gawande | 3e39a4d | 2018-08-30 16:49:13 -0500 | [diff] [blame] | 74 | // 1 for the first interest, 3 for the retries on nack |
| 75 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 4); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | BOOST_AUTO_TEST_CASE(MalformedCert) |
| 79 | { |
| 80 | Data malformedCert = subIdentity.getDefaultKey().getDefaultCertificate(); |
| 81 | malformedCert.setContentType(tlv::ContentType_Blob); |
| 82 | m_keyChain.sign(malformedCert, signingByIdentity(identity)); |
| 83 | // wrong content type & missing ValidityPeriod |
| 84 | BOOST_REQUIRE_THROW(Certificate(malformedCert.wireEncode()), tlv::Error); |
| 85 | |
| 86 | auto originalProcessInterest = processInterest; |
| 87 | processInterest = [this, &originalProcessInterest, &malformedCert] (const Interest& interest) { |
| 88 | if (interest.getName().isPrefixOf(malformedCert.getName())) { |
| 89 | face.receive(malformedCert); |
| 90 | } |
| 91 | else { |
| 92 | originalProcessInterest(interest); |
| 93 | } |
| 94 | }; |
| 95 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 96 | Data data("/Security/ValidatorFixture/Sub1/Sub2/Data"); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 97 | m_keyChain.sign(data, signingByIdentity(subIdentity)); |
| 98 | |
| 99 | VALIDATE_FAILURE(data, "Signed by a malformed certificate"); |
| 100 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
| 101 | } |
| 102 | |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 103 | BOOST_AUTO_TEST_CASE(ExpiredCert) |
| 104 | { |
| 105 | Data expiredCert = subIdentity.getDefaultKey().getDefaultCertificate(); |
| 106 | SignatureInfo info; |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 107 | info.setValidityPeriod(ValidityPeriod(time::system_clock::now() - 2_h, |
| 108 | time::system_clock::now() - 1_h)); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 109 | m_keyChain.sign(expiredCert, signingByIdentity(identity).setSignatureInfo(info)); |
| 110 | BOOST_REQUIRE_NO_THROW(Certificate(expiredCert.wireEncode())); |
| 111 | |
| 112 | auto originalProcessInterest = processInterest; |
| 113 | processInterest = [this, &originalProcessInterest, &expiredCert] (const Interest& interest) { |
| 114 | if (interest.getName().isPrefixOf(expiredCert.getName())) { |
| 115 | face.receive(expiredCert); |
| 116 | } |
| 117 | else { |
Davide Pesavento | b88c6bf | 2017-09-11 20:15:28 -0400 | [diff] [blame] | 118 | originalProcessInterest(interest); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 119 | } |
| 120 | }; |
| 121 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 122 | Data data("/Security/ValidatorFixture/Sub1/Sub2/Data"); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 123 | m_keyChain.sign(data, signingByIdentity(subIdentity)); |
| 124 | |
| 125 | VALIDATE_FAILURE(data, "Signed by an expired certificate"); |
| 126 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
| 127 | } |
| 128 | |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 129 | BOOST_AUTO_TEST_CASE(ResetAnchors) |
| 130 | { |
| 131 | validator.resetAnchors(); |
| 132 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 133 | Data data("/Security/ValidatorFixture/Sub1/Sub2/Data"); |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 134 | m_keyChain.sign(data, signingByIdentity(subIdentity)); |
| 135 | VALIDATE_FAILURE(data, "Should fail, as no anchors configured"); |
| 136 | } |
| 137 | |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 138 | BOOST_AUTO_TEST_CASE(TrustedCertCaching) |
| 139 | { |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 140 | Data data("/Security/ValidatorFixture/Sub1/Sub2/Data"); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 141 | m_keyChain.sign(data, signingByIdentity(subIdentity)); |
| 142 | |
| 143 | VALIDATE_SUCCESS(data, "Should get accepted, as signed by the policy-compliant cert"); |
| 144 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
| 145 | face.sentInterests.clear(); |
| 146 | |
| 147 | processInterest = nullptr; // disable data responses from mocked network |
| 148 | |
| 149 | VALIDATE_SUCCESS(data, "Should get accepted, based on the cached trusted cert"); |
| 150 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 0); |
| 151 | face.sentInterests.clear(); |
| 152 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 153 | advanceClocks(1_h, 2); // expire trusted cache |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 154 | |
| 155 | VALIDATE_FAILURE(data, "Should try and fail to retrieve certs"); |
| 156 | BOOST_CHECK_GT(face.sentInterests.size(), 1); |
| 157 | face.sentInterests.clear(); |
| 158 | } |
| 159 | |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 160 | BOOST_AUTO_TEST_CASE(ResetVerifiedCertificates) |
| 161 | { |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 162 | Data data("/Security/ValidatorFixture/Sub1/Sub2/Data"); |
Alexander Afanasyev | 6aff024 | 2017-08-29 17:14:44 -0400 | [diff] [blame] | 163 | m_keyChain.sign(data, signingByIdentity(subIdentity)); |
| 164 | VALIDATE_SUCCESS(data, "Should get accepted, as signed by the policy-compliant cert"); |
| 165 | |
| 166 | // reset anchors |
| 167 | validator.resetAnchors(); |
| 168 | VALIDATE_SUCCESS(data, "Should get accepted, as signed by the cert in trusted cache"); |
| 169 | |
| 170 | // reset trusted cache |
| 171 | validator.resetVerifiedCertificates(); |
| 172 | VALIDATE_FAILURE(data, "Should fail, as no trusted cache or anchors"); |
| 173 | } |
| 174 | |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 175 | BOOST_AUTO_TEST_CASE(UntrustedCertCaching) |
| 176 | { |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 177 | Data data("/Security/ValidatorFixture/Sub1/Sub2/Data"); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 178 | m_keyChain.sign(data, signingByIdentity(subSelfSignedIdentity)); |
| 179 | |
| 180 | VALIDATE_FAILURE(data, "Should fail, as signed by the policy-violating cert"); |
| 181 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
| 182 | face.sentInterests.clear(); |
| 183 | |
| 184 | processInterest = nullptr; // disable data responses from mocked network |
| 185 | |
| 186 | VALIDATE_FAILURE(data, "Should fail again, but no network operations expected"); |
| 187 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 0); |
| 188 | face.sentInterests.clear(); |
| 189 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 190 | advanceClocks(10_min, 2); // expire untrusted cache |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 191 | |
| 192 | VALIDATE_FAILURE(data, "Should try and fail to retrieve certs"); |
| 193 | BOOST_CHECK_GT(face.sentInterests.size(), 1); |
| 194 | face.sentInterests.clear(); |
| 195 | } |
| 196 | |
| 197 | class ValidationPolicySimpleHierarchyForInterestOnly : public ValidationPolicySimpleHierarchy |
| 198 | { |
| 199 | public: |
| 200 | void |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 201 | checkPolicy(const Data&, const shared_ptr<ValidationState>& state, |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 202 | const ValidationContinuation& continueValidation) override |
| 203 | { |
| 204 | continueValidation(nullptr, state); |
| 205 | } |
| 206 | }; |
| 207 | |
| 208 | BOOST_FIXTURE_TEST_CASE(ValidateInterestsButBypassForData, |
| 209 | HierarchicalValidatorFixture<ValidationPolicySimpleHierarchyForInterestOnly>) |
| 210 | { |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 211 | Interest interest("/Security/ValidatorFixture/Sub1/Sub2/Interest"); |
| 212 | Data data("/Security/ValidatorFixture/Sub1/Sub2/Interest"); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 213 | |
| 214 | VALIDATE_FAILURE(interest, "Unsigned"); |
| 215 | VALIDATE_SUCCESS(data, "Policy requests validation bypassing for all data"); |
| 216 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 0); |
| 217 | face.sentInterests.clear(); |
| 218 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 219 | interest = Interest("/Security/ValidatorFixture/Sub1/Sub2/Interest"); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 220 | m_keyChain.sign(interest, signingWithSha256()); |
| 221 | m_keyChain.sign(data, signingWithSha256()); |
| 222 | VALIDATE_FAILURE(interest, "Required KeyLocator/Name missing (not passed to policy)"); |
| 223 | VALIDATE_SUCCESS(data, "Policy requests validation bypassing for all data"); |
| 224 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 0); |
| 225 | face.sentInterests.clear(); |
| 226 | |
| 227 | m_keyChain.sign(interest, signingByIdentity(identity)); |
| 228 | m_keyChain.sign(data, signingByIdentity(identity)); |
| 229 | VALIDATE_SUCCESS(interest, "Should get accepted, as signed by the anchor"); |
| 230 | VALIDATE_SUCCESS(data, "Policy requests validation bypassing for all data"); |
| 231 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 0); |
| 232 | face.sentInterests.clear(); |
| 233 | |
| 234 | m_keyChain.sign(interest, signingByIdentity(subIdentity)); |
| 235 | m_keyChain.sign(data, signingByIdentity(subIdentity)); |
| 236 | VALIDATE_FAILURE(interest, "Should fail, as policy is not allowed to create new trust anchors"); |
| 237 | VALIDATE_SUCCESS(data, "Policy requests validation bypassing for all data"); |
| 238 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
| 239 | face.sentInterests.clear(); |
| 240 | |
| 241 | m_keyChain.sign(interest, signingByIdentity(otherIdentity)); |
| 242 | m_keyChain.sign(data, signingByIdentity(otherIdentity)); |
| 243 | VALIDATE_FAILURE(interest, "Should fail, as signed by the policy-violating cert"); |
| 244 | VALIDATE_SUCCESS(data, "Policy requests validation bypassing for all data"); |
| 245 | // no network operations expected, as certificate is not validated by the policy |
| 246 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 0); |
| 247 | face.sentInterests.clear(); |
| 248 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 249 | advanceClocks(1_h, 2); // expire trusted cache |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 250 | |
| 251 | m_keyChain.sign(interest, signingByIdentity(subSelfSignedIdentity)); |
| 252 | m_keyChain.sign(data, signingByIdentity(subSelfSignedIdentity)); |
| 253 | VALIDATE_FAILURE(interest, "Should fail, as policy is not allowed to create new trust anchors"); |
| 254 | VALIDATE_SUCCESS(data, "Policy requests validation bypassing for all data"); |
| 255 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
| 256 | face.sentInterests.clear(); |
| 257 | } |
| 258 | |
Alexander Afanasyev | 5af04a7 | 2017-01-30 22:41:23 -0800 | [diff] [blame] | 259 | BOOST_AUTO_TEST_CASE(InfiniteCertChain) |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 260 | { |
| 261 | processInterest = [this] (const Interest& interest) { |
| 262 | // create another key for the same identity and sign it properly |
| 263 | Key parentKey = m_keyChain.createKey(subIdentity); |
| 264 | Key requestedKey = subIdentity.getKey(interest.getName()); |
Junxiao Shi | 9ee770b | 2022-04-25 23:33:33 +0000 | [diff] [blame] | 265 | |
| 266 | SignatureInfo sigInfo; |
| 267 | sigInfo.setKeyLocator(parentKey.getName()); |
| 268 | auto si = signingByKey(parentKey).setSignatureInfo(sigInfo); |
| 269 | |
| 270 | auto cert = m_keyChain.makeCertificate(requestedKey, si); |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 271 | face.receive(cert); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 272 | }; |
| 273 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 274 | Data data("/Security/ValidatorFixture/Sub1/Sub2/Data"); |
Junxiao Shi | 7d72868 | 2022-04-01 01:21:13 +0000 | [diff] [blame] | 275 | m_keyChain.sign(data, signingByIdentity(subIdentity).setSignatureInfo( |
| 276 | SignatureInfo().setKeyLocator(subIdentity.getDefaultKey().getName()))); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 277 | |
| 278 | validator.setMaxDepth(40); |
| 279 | BOOST_CHECK_EQUAL(validator.getMaxDepth(), 40); |
| 280 | VALIDATE_FAILURE(data, "Should fail, as certificate should be looped"); |
| 281 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 40); |
| 282 | face.sentInterests.clear(); |
| 283 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 284 | advanceClocks(1_h, 5); // expire caches |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 285 | |
| 286 | validator.setMaxDepth(30); |
| 287 | BOOST_CHECK_EQUAL(validator.getMaxDepth(), 30); |
Alexander Afanasyev | 5af04a7 | 2017-01-30 22:41:23 -0800 | [diff] [blame] | 288 | VALIDATE_FAILURE(data, "Should fail, as certificate chain is infinite"); |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 289 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 30); |
| 290 | } |
| 291 | |
Alexander Afanasyev | 5af04a7 | 2017-01-30 22:41:23 -0800 | [diff] [blame] | 292 | BOOST_AUTO_TEST_CASE(LoopedCertChain) |
| 293 | { |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 294 | auto s1 = m_keyChain.createIdentity("/loop"); |
Alexander Afanasyev | 5af04a7 | 2017-01-30 22:41:23 -0800 | [diff] [blame] | 295 | auto k1 = m_keyChain.createKey(s1, RsaKeyParams(name::Component("key1"))); |
| 296 | auto k2 = m_keyChain.createKey(s1, RsaKeyParams(name::Component("key2"))); |
| 297 | auto k3 = m_keyChain.createKey(s1, RsaKeyParams(name::Component("key3"))); |
| 298 | |
Junxiao Shi | 7d72868 | 2022-04-01 01:21:13 +0000 | [diff] [blame] | 299 | auto makeLoopCert = [this] (Key& key, const Key& signer) { |
Junxiao Shi | 9ee770b | 2022-04-25 23:33:33 +0000 | [diff] [blame] | 300 | SignatureInfo sigInfo; |
| 301 | sigInfo.setKeyLocator(signer.getName()); |
| 302 | auto si = signingByKey(signer).setSignatureInfo(sigInfo); |
| 303 | |
| 304 | auto cert = m_keyChain.makeCertificate(key, si); |
Junxiao Shi | 7d72868 | 2022-04-01 01:21:13 +0000 | [diff] [blame] | 305 | m_keyChain.setDefaultCertificate(key, cert); |
| 306 | cache.insert(cert); |
Alexander Afanasyev | 5af04a7 | 2017-01-30 22:41:23 -0800 | [diff] [blame] | 307 | }; |
| 308 | |
Junxiao Shi | 7d72868 | 2022-04-01 01:21:13 +0000 | [diff] [blame] | 309 | makeLoopCert(k1, k2); |
| 310 | makeLoopCert(k2, k3); |
| 311 | makeLoopCert(k3, k1); |
Alexander Afanasyev | 5af04a7 | 2017-01-30 22:41:23 -0800 | [diff] [blame] | 312 | |
| 313 | Data data("/loop/Data"); |
| 314 | m_keyChain.sign(data, signingByKey(k1)); |
| 315 | VALIDATE_FAILURE(data, "Should fail, as certificate chain loops"); |
Junxiao Shi | 7d72868 | 2022-04-01 01:21:13 +0000 | [diff] [blame] | 316 | BOOST_REQUIRE_EQUAL(face.sentInterests.size(), 3); |
| 317 | BOOST_CHECK_EQUAL(face.sentInterests[0].getName(), k1.getDefaultCertificate().getName()); |
| 318 | BOOST_CHECK_EQUAL(face.sentInterests[1].getName(), k2.getName()); |
| 319 | BOOST_CHECK_EQUAL(face.sentInterests[2].getName(), k3.getName()); |
Alexander Afanasyev | 5af04a7 | 2017-01-30 22:41:23 -0800 | [diff] [blame] | 320 | } |
| 321 | |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 322 | BOOST_AUTO_TEST_SUITE_END() // TestValidator |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 323 | BOOST_AUTO_TEST_SUITE_END() // Security |
| 324 | |
| 325 | } // namespace tests |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 326 | } // inline namespace v2 |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 327 | } // namespace security |
| 328 | } // namespace ndn |