Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -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 | |
| 22 | #include "security/v2/validation-policy-command-interest.hpp" |
| 23 | #include "security/v2/validation-policy-simple-hierarchy.hpp" |
| 24 | #include "security/v2/validation-policy-accept-all.hpp" |
| 25 | #include "security/command-interest-signer.hpp" |
| 26 | #include "security/signing-helpers.hpp" |
| 27 | |
| 28 | #include "boost-test.hpp" |
| 29 | #include "validator-fixture.hpp" |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 30 | #include "make-interest-data.hpp" |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 31 | |
| 32 | #include <boost/lexical_cast.hpp> |
| 33 | #include <boost/mpl/vector.hpp> |
| 34 | |
| 35 | namespace ndn { |
| 36 | namespace security { |
| 37 | namespace v2 { |
| 38 | namespace tests { |
| 39 | |
| 40 | using namespace ndn::tests; |
| 41 | |
| 42 | BOOST_AUTO_TEST_SUITE(Security) |
| 43 | BOOST_AUTO_TEST_SUITE(V2) |
| 44 | |
| 45 | class DefaultOptions |
| 46 | { |
| 47 | public: |
| 48 | static ValidationPolicyCommandInterest::Options |
| 49 | getOptions() |
| 50 | { |
| 51 | return {}; |
| 52 | } |
| 53 | }; |
| 54 | |
| 55 | template<class T, class InnerPolicy> |
| 56 | class CommandInterestPolicyWrapper : public ValidationPolicyCommandInterest |
| 57 | { |
| 58 | public: |
| 59 | CommandInterestPolicyWrapper() |
| 60 | : ValidationPolicyCommandInterest(make_unique<InnerPolicy>(), T::getOptions()) |
| 61 | { |
| 62 | } |
| 63 | }; |
| 64 | |
| 65 | template<class T, class InnerPolicy = ValidationPolicySimpleHierarchy> |
| 66 | class ValidationPolicyCommandInterestFixture : public HierarchicalValidatorFixture<CommandInterestPolicyWrapper<T, InnerPolicy>> |
| 67 | { |
| 68 | public: |
| 69 | ValidationPolicyCommandInterestFixture() |
| 70 | : m_signer(this->m_keyChain) |
| 71 | { |
| 72 | } |
| 73 | |
| 74 | Interest |
| 75 | makeCommandInterest(const Identity& identity) |
| 76 | { |
| 77 | return m_signer.makeCommandInterest(Name(identity.getName()).append("CMD"), |
| 78 | signingByIdentity(identity)); |
| 79 | } |
| 80 | |
| 81 | public: |
| 82 | CommandInterestSigner m_signer; |
| 83 | }; |
| 84 | |
| 85 | BOOST_FIXTURE_TEST_SUITE(TestValidationPolicyCommandInterest, ValidationPolicyCommandInterestFixture<DefaultOptions>) |
| 86 | |
| 87 | BOOST_AUTO_TEST_SUITE(Accepts) |
| 88 | |
| 89 | BOOST_AUTO_TEST_CASE(Basic) |
| 90 | { |
| 91 | auto i1 = makeCommandInterest(identity); |
| 92 | VALIDATE_SUCCESS(i1, "Should succeed (within grace period)"); |
| 93 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 94 | advanceClocks(5_ms); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 95 | auto i2 = makeCommandInterest(identity); |
| 96 | VALIDATE_SUCCESS(i2, "Should succeed (timestamp larger than previous)"); |
| 97 | } |
| 98 | |
| 99 | BOOST_AUTO_TEST_CASE(DataPassthru) |
| 100 | { |
| 101 | Data d1("/Security/V2/ValidatorFixture/Sub1"); |
| 102 | m_keyChain.sign(d1); |
| 103 | VALIDATE_SUCCESS(d1, "Should succeed (fallback on inner validation policy for data)"); |
| 104 | } |
| 105 | |
| 106 | BOOST_AUTO_TEST_SUITE_END() // Accepts |
| 107 | |
| 108 | BOOST_AUTO_TEST_SUITE(Rejects) |
| 109 | |
| 110 | BOOST_AUTO_TEST_CASE(NameTooShort) |
| 111 | { |
| 112 | auto i1 = makeInterest("/name/too/short"); |
| 113 | VALIDATE_FAILURE(*i1, "Should fail (name is too short)"); |
| 114 | } |
| 115 | |
| 116 | BOOST_AUTO_TEST_CASE(BadTimestamp) |
| 117 | { |
| 118 | auto i1 = makeCommandInterest(identity); |
| 119 | setNameComponent(i1, command_interest::POS_TIMESTAMP, "not-timestamp"); |
| 120 | VALIDATE_FAILURE(i1, "Should fail (timestamp is missing)"); |
| 121 | } |
| 122 | |
| 123 | BOOST_AUTO_TEST_CASE(BadSigInfo) |
| 124 | { |
| 125 | auto i1 = makeCommandInterest(identity); |
| 126 | setNameComponent(i1, command_interest::POS_SIG_INFO, "not-SignatureInfo"); |
| 127 | VALIDATE_FAILURE(i1, "Should fail (signature info is missing)"); |
| 128 | } |
| 129 | |
| 130 | BOOST_AUTO_TEST_CASE(MissingKeyLocator) |
| 131 | { |
| 132 | auto i1 = makeCommandInterest(identity); |
Junxiao Shi | 605671d | 2017-08-26 13:41:06 +0000 | [diff] [blame] | 133 | SignatureInfo sigInfo(tlv::SignatureSha256WithRsa); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 134 | setNameComponent(i1, command_interest::POS_SIG_INFO, |
| 135 | sigInfo.wireEncode().begin(), sigInfo.wireEncode().end()); |
| 136 | VALIDATE_FAILURE(i1, "Should fail (missing KeyLocator)"); |
| 137 | } |
| 138 | |
| 139 | BOOST_AUTO_TEST_CASE(BadKeyLocatorType) |
| 140 | { |
| 141 | auto i1 = makeCommandInterest(identity); |
| 142 | KeyLocator kl; |
| 143 | kl.setKeyDigest(makeBinaryBlock(tlv::KeyDigest, "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD", 8)); |
Junxiao Shi | 605671d | 2017-08-26 13:41:06 +0000 | [diff] [blame] | 144 | SignatureInfo sigInfo(tlv::SignatureSha256WithRsa); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 145 | sigInfo.setKeyLocator(kl); |
| 146 | setNameComponent(i1, command_interest::POS_SIG_INFO, |
| 147 | sigInfo.wireEncode().begin(), sigInfo.wireEncode().end()); |
| 148 | VALIDATE_FAILURE(i1, "Should fail (bad KeyLocator type)"); |
| 149 | } |
| 150 | |
| 151 | BOOST_AUTO_TEST_CASE(BadCertName) |
| 152 | { |
| 153 | auto i1 = makeCommandInterest(identity); |
| 154 | KeyLocator kl; |
| 155 | kl.setName("/bad/cert/name"); |
Junxiao Shi | 605671d | 2017-08-26 13:41:06 +0000 | [diff] [blame] | 156 | SignatureInfo sigInfo(tlv::SignatureSha256WithRsa); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 157 | sigInfo.setKeyLocator(kl); |
| 158 | setNameComponent(i1, command_interest::POS_SIG_INFO, |
| 159 | sigInfo.wireEncode().begin(), sigInfo.wireEncode().end()); |
| 160 | VALIDATE_FAILURE(i1, "Should fail (bad certificate name)"); |
| 161 | } |
| 162 | |
| 163 | BOOST_AUTO_TEST_CASE(InnerPolicyReject) |
| 164 | { |
| 165 | auto i1 = makeCommandInterest(otherIdentity); |
| 166 | VALIDATE_FAILURE(i1, "Should fail (inner policy should reject)"); |
| 167 | } |
| 168 | |
| 169 | class GracePeriod15Sec |
| 170 | { |
| 171 | public: |
| 172 | static ValidationPolicyCommandInterest::Options |
| 173 | getOptions() |
| 174 | { |
| 175 | ValidationPolicyCommandInterest::Options options; |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 176 | options.gracePeriod = 15_s; |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 177 | return options; |
| 178 | } |
| 179 | }; |
| 180 | |
| 181 | BOOST_FIXTURE_TEST_CASE(TimestampOutOfGracePositive, ValidationPolicyCommandInterestFixture<GracePeriod15Sec>) |
| 182 | { |
| 183 | auto i1 = makeCommandInterest(identity); // signed at 0s |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 184 | advanceClocks(16_s); // verifying at +16s |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 185 | VALIDATE_FAILURE(i1, "Should fail (timestamp outside the grace period)"); |
| 186 | rewindClockAfterValidation(); |
| 187 | |
| 188 | auto i2 = makeCommandInterest(identity); // signed at +16s |
| 189 | VALIDATE_SUCCESS(i2, "Should succeed"); |
| 190 | } |
| 191 | |
| 192 | BOOST_FIXTURE_TEST_CASE(TimestampOutOfGraceNegative, ValidationPolicyCommandInterestFixture<GracePeriod15Sec>) |
| 193 | { |
| 194 | auto i1 = makeCommandInterest(identity); // signed at 0s |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 195 | advanceClocks(1_s); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 196 | auto i2 = makeCommandInterest(identity); // signed at +1s |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 197 | advanceClocks(1_s); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 198 | auto i3 = makeCommandInterest(identity); // signed at +2s |
| 199 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 200 | systemClock->advance(-18_s); // verifying at -16s |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 201 | VALIDATE_FAILURE(i1, "Should fail (timestamp outside the grace period)"); |
| 202 | rewindClockAfterValidation(); |
| 203 | |
| 204 | // CommandInterestValidator should not remember i1's timestamp |
| 205 | VALIDATE_FAILURE(i2, "Should fail (timestamp outside the grace period)"); |
| 206 | rewindClockAfterValidation(); |
| 207 | |
| 208 | // CommandInterestValidator should not remember i2's timestamp, and should treat i3 as initial |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 209 | advanceClocks(18_s); // verifying at +2s |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 210 | VALIDATE_SUCCESS(i3, "Should succeed"); |
| 211 | } |
| 212 | |
| 213 | BOOST_AUTO_TEST_CASE(TimestampReorderEqual) |
| 214 | { |
| 215 | auto i1 = makeCommandInterest(identity); // signed at 0s |
| 216 | VALIDATE_SUCCESS(i1, "Should succeed"); |
| 217 | |
| 218 | auto i2 = makeCommandInterest(identity); // signed at 0s |
| 219 | setNameComponent(i2, command_interest::POS_TIMESTAMP, |
| 220 | i1.getName()[command_interest::POS_TIMESTAMP]); |
| 221 | VALIDATE_FAILURE(i2, "Should fail (timestamp reordered)"); |
| 222 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 223 | advanceClocks(2_s); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 224 | auto i3 = makeCommandInterest(identity); // signed at +2s |
| 225 | VALIDATE_SUCCESS(i3, "Should succeed"); |
| 226 | } |
| 227 | |
| 228 | BOOST_AUTO_TEST_CASE(TimestampReorderNegative) |
| 229 | { |
| 230 | auto i2 = makeCommandInterest(identity); // signed at 0ms |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 231 | advanceClocks(200_ms); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 232 | auto i3 = makeCommandInterest(identity); // signed at +200ms |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 233 | advanceClocks(900_ms); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 234 | auto i1 = makeCommandInterest(identity); // signed at +1100ms |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 235 | advanceClocks(300_ms); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 236 | auto i4 = makeCommandInterest(identity); // signed at +1400ms |
| 237 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 238 | systemClock->advance(-300_ms); // verifying at +1100ms |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 239 | VALIDATE_SUCCESS(i1, "Should succeed"); |
| 240 | rewindClockAfterValidation(); |
| 241 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 242 | systemClock->advance(-1100_ms); // verifying at 0ms |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 243 | VALIDATE_FAILURE(i2, "Should fail (timestamp reordered)"); |
| 244 | rewindClockAfterValidation(); |
| 245 | |
| 246 | // CommandInterestValidator should not remember i2's timestamp |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 247 | advanceClocks(200_ms); // verifying at +200ms |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 248 | VALIDATE_FAILURE(i3, "Should fail (timestamp reordered)"); |
| 249 | rewindClockAfterValidation(); |
| 250 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 251 | advanceClocks(1200_ms); // verifying at 1400ms |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 252 | VALIDATE_SUCCESS(i4, "Should succeed"); |
| 253 | } |
| 254 | |
| 255 | BOOST_AUTO_TEST_SUITE_END() // Rejects |
| 256 | |
| 257 | BOOST_AUTO_TEST_SUITE(Options) |
| 258 | |
| 259 | template<class T> |
| 260 | class GracePeriod |
| 261 | { |
| 262 | public: |
| 263 | static ValidationPolicyCommandInterest::Options |
| 264 | getOptions() |
| 265 | { |
| 266 | ValidationPolicyCommandInterest::Options options; |
| 267 | options.gracePeriod = time::seconds(T::value); |
| 268 | return options; |
| 269 | } |
| 270 | }; |
| 271 | |
| 272 | typedef boost::mpl::vector< |
| 273 | GracePeriod<boost::mpl::int_<0>>, |
| 274 | GracePeriod<boost::mpl::int_<-1>> |
| 275 | > GraceNonPositiveValues; |
| 276 | |
| 277 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(GraceNonPositive, GracePeriod, GraceNonPositiveValues, |
| 278 | ValidationPolicyCommandInterestFixture<GracePeriod>) |
| 279 | { |
| 280 | auto i1 = this->makeCommandInterest(this->identity); // signed at 0ms |
| 281 | auto i2 = this->makeCommandInterest(this->subIdentity); // signed at 0ms |
| 282 | for (auto interest : {&i1, &i2}) { |
| 283 | setNameComponent(*interest, command_interest::POS_TIMESTAMP, |
| 284 | name::Component::fromNumber(time::toUnixTimestamp(time::system_clock::now()).count())); |
| 285 | } // ensure timestamps are exactly 0ms |
| 286 | |
| 287 | VALIDATE_SUCCESS(i1, "Should succeed when validating at 0ms"); |
| 288 | this->rewindClockAfterValidation(); |
| 289 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 290 | this->advanceClocks(1_ms); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 291 | VALIDATE_FAILURE(i2, "Should fail when validating at 1ms"); |
| 292 | } |
| 293 | |
| 294 | class LimitedRecordsOptions |
| 295 | { |
| 296 | public: |
| 297 | static ValidationPolicyCommandInterest::Options |
| 298 | getOptions() |
| 299 | { |
| 300 | ValidationPolicyCommandInterest::Options options; |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 301 | options.gracePeriod = 15_s; |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 302 | options.maxRecords = 3; |
| 303 | return options; |
| 304 | } |
| 305 | }; |
| 306 | |
| 307 | BOOST_FIXTURE_TEST_CASE(LimitedRecords, ValidationPolicyCommandInterestFixture<LimitedRecordsOptions>) |
| 308 | { |
| 309 | Identity id1 = this->addSubCertificate("/Security/V2/ValidatorFixture/Sub1", identity); |
| 310 | this->cache.insert(id1.getDefaultKey().getDefaultCertificate()); |
| 311 | Identity id2 = this->addSubCertificate("/Security/V2/ValidatorFixture/Sub2", identity); |
| 312 | this->cache.insert(id2.getDefaultKey().getDefaultCertificate()); |
| 313 | Identity id3 = this->addSubCertificate("/Security/V2/ValidatorFixture/Sub3", identity); |
| 314 | this->cache.insert(id3.getDefaultKey().getDefaultCertificate()); |
| 315 | Identity id4 = this->addSubCertificate("/Security/V2/ValidatorFixture/Sub4", identity); |
| 316 | this->cache.insert(id4.getDefaultKey().getDefaultCertificate()); |
| 317 | |
| 318 | auto i1 = makeCommandInterest(id2); |
| 319 | auto i2 = makeCommandInterest(id3); |
| 320 | auto i3 = makeCommandInterest(id4); |
| 321 | auto i00 = makeCommandInterest(id1); // signed at 0s |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 322 | advanceClocks(1_s); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 323 | auto i01 = makeCommandInterest(id1); // signed at 1s |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 324 | advanceClocks(1_s); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 325 | auto i02 = makeCommandInterest(id1); // signed at 2s |
| 326 | |
| 327 | VALIDATE_SUCCESS(i00, "Should succeed"); |
| 328 | rewindClockAfterValidation(); |
| 329 | |
| 330 | VALIDATE_SUCCESS(i02, "Should succeed"); |
| 331 | rewindClockAfterValidation(); |
| 332 | |
| 333 | VALIDATE_SUCCESS(i1, "Should succeed"); |
| 334 | rewindClockAfterValidation(); |
| 335 | |
| 336 | VALIDATE_SUCCESS(i2, "Should succeed"); |
| 337 | rewindClockAfterValidation(); |
| 338 | |
| 339 | VALIDATE_SUCCESS(i3, "Should succeed, forgets identity id1"); |
| 340 | rewindClockAfterValidation(); |
| 341 | |
| 342 | VALIDATE_SUCCESS(i01, "Should succeed despite timestamp is reordered, because record has been evicted"); |
| 343 | } |
| 344 | |
| 345 | class UnlimitedRecordsOptions |
| 346 | { |
| 347 | public: |
| 348 | static ValidationPolicyCommandInterest::Options |
| 349 | getOptions() |
| 350 | { |
| 351 | ValidationPolicyCommandInterest::Options options; |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 352 | options.gracePeriod = 15_s; |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 353 | options.maxRecords = -1; |
| 354 | return options; |
| 355 | } |
| 356 | }; |
| 357 | |
| 358 | BOOST_FIXTURE_TEST_CASE(UnlimitedRecords, ValidationPolicyCommandInterestFixture<UnlimitedRecordsOptions>) |
| 359 | { |
| 360 | std::vector<Identity> identities; |
| 361 | for (int i = 0; i < 20; ++i) { |
| 362 | Identity id = this->addSubCertificate("/Security/V2/ValidatorFixture/Sub" + to_string(i), identity); |
| 363 | this->cache.insert(id.getDefaultKey().getDefaultCertificate()); |
| 364 | identities.push_back(id); |
| 365 | } |
| 366 | |
| 367 | auto i1 = makeCommandInterest(identities.at(0)); // signed at 0s |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 368 | advanceClocks(1_s); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 369 | for (int i = 0; i < 20; ++i) { |
| 370 | auto i2 = makeCommandInterest(identities.at(i)); // signed at +1s |
| 371 | |
| 372 | VALIDATE_SUCCESS(i2, "Should succeed"); |
| 373 | rewindClockAfterValidation(); |
| 374 | } |
| 375 | VALIDATE_FAILURE(i1, "Should fail (timestamp reorder)"); |
| 376 | } |
| 377 | |
| 378 | class ZeroRecordsOptions |
| 379 | { |
| 380 | public: |
| 381 | static ValidationPolicyCommandInterest::Options |
| 382 | getOptions() |
| 383 | { |
| 384 | ValidationPolicyCommandInterest::Options options; |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 385 | options.gracePeriod = 15_s; |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 386 | options.maxRecords = 0; |
| 387 | return options; |
| 388 | } |
| 389 | }; |
| 390 | |
| 391 | BOOST_FIXTURE_TEST_CASE(ZeroRecords, ValidationPolicyCommandInterestFixture<ZeroRecordsOptions>) |
| 392 | { |
| 393 | auto i1 = makeCommandInterest(identity); // signed at 0s |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 394 | advanceClocks(1_s); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 395 | auto i2 = makeCommandInterest(identity); // signed at +1s |
| 396 | VALIDATE_SUCCESS(i2, "Should succeed"); |
| 397 | rewindClockAfterValidation(); |
| 398 | |
| 399 | VALIDATE_SUCCESS(i1, "Should succeed despite timestamp is reordered, because record isn't kept"); |
| 400 | } |
| 401 | |
| 402 | class LimitedRecordLifetimeOptions |
| 403 | { |
| 404 | public: |
| 405 | static ValidationPolicyCommandInterest::Options |
| 406 | getOptions() |
| 407 | { |
| 408 | ValidationPolicyCommandInterest::Options options; |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 409 | options.gracePeriod = 400_s; |
| 410 | options.recordLifetime = 300_s; |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 411 | return options; |
| 412 | } |
| 413 | }; |
| 414 | |
| 415 | BOOST_FIXTURE_TEST_CASE(LimitedRecordLifetime, ValidationPolicyCommandInterestFixture<LimitedRecordLifetimeOptions>) |
| 416 | { |
| 417 | auto i1 = makeCommandInterest(identity); // signed at 0s |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 418 | advanceClocks(240_s); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 419 | auto i2 = makeCommandInterest(identity); // signed at +240s |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 420 | advanceClocks(120_s); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 421 | auto i3 = makeCommandInterest(identity); // signed at +360s |
| 422 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 423 | systemClock->advance(-360_s); // rewind system clock to 0s |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 424 | VALIDATE_SUCCESS(i1, "Should succeed"); |
| 425 | rewindClockAfterValidation(); |
| 426 | |
| 427 | VALIDATE_SUCCESS(i3, "Should succeed"); |
| 428 | rewindClockAfterValidation(); |
| 429 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 430 | advanceClocks(30_s, 301_s); // advance steady clock by 301s, and system clock to +301s |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 431 | VALIDATE_SUCCESS(i2, "Should succeed despite timestamp is reordered, because record has been expired"); |
| 432 | } |
| 433 | |
| 434 | class ZeroRecordLifetimeOptions |
| 435 | { |
| 436 | public: |
| 437 | static ValidationPolicyCommandInterest::Options |
| 438 | getOptions() |
| 439 | { |
| 440 | ValidationPolicyCommandInterest::Options options; |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 441 | options.gracePeriod = 15_s; |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 442 | options.recordLifetime = time::seconds::zero(); |
| 443 | return options; |
| 444 | } |
| 445 | }; |
| 446 | |
| 447 | BOOST_FIXTURE_TEST_CASE(ZeroRecordLifetime, ValidationPolicyCommandInterestFixture<ZeroRecordLifetimeOptions>) |
| 448 | { |
| 449 | auto i1 = makeCommandInterest(identity); // signed at 0s |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 450 | advanceClocks(1_s); |
Alexander Afanasyev | 9333887 | 2017-01-30 22:37:00 -0800 | [diff] [blame] | 451 | auto i2 = makeCommandInterest(identity); // signed at +1s |
| 452 | VALIDATE_SUCCESS(i2, "Should succeed"); |
| 453 | rewindClockAfterValidation(); |
| 454 | |
| 455 | VALIDATE_SUCCESS(i1, "Should succeed despite timestamp is reordered, because record has been expired"); |
| 456 | } |
| 457 | |
| 458 | BOOST_AUTO_TEST_SUITE_END() // Options |
| 459 | |
| 460 | BOOST_AUTO_TEST_SUITE_END() // TestValidationPolicyCommandInterest |
| 461 | BOOST_AUTO_TEST_SUITE_END() // V2 |
| 462 | BOOST_AUTO_TEST_SUITE_END() // Security |
| 463 | |
| 464 | } // namespace tests |
| 465 | } // namespace v2 |
| 466 | } // namespace security |
| 467 | } // namespace ndn |