Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 3 | * Copyright (c) 2014-2019, The University of Memphis, |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
| 6 | * |
| 7 | * This file is part of NLSR (Named-data Link State Routing). |
| 8 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 9 | * |
| 10 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 11 | * of the GNU General Public License as published by the Free Software Foundation, |
| 12 | * either version 3 of the License, or (at your option) any later version. |
| 13 | * |
| 14 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 15 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE. See the GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along with |
| 19 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 20 | **/ |
| 21 | |
| 22 | #include "test-common.hpp" |
| 23 | #include "nlsr.hpp" |
| 24 | |
| 25 | #include <ndn-cxx/interest.hpp> |
| 26 | #include <ndn-cxx/security/key-chain.hpp> |
| 27 | #include <ndn-cxx/util/dummy-client-face.hpp> |
| 28 | #include <ndn-cxx/security/signing-helpers.hpp> |
| 29 | #include <ndn-cxx/security/signing-info.hpp> |
| 30 | |
| 31 | #include <boost/filesystem.hpp> |
| 32 | #include <boost/property_tree/ptree.hpp> |
| 33 | #include <boost/property_tree/info_parser.hpp> |
| 34 | |
| 35 | using namespace ndn; |
| 36 | |
| 37 | namespace nlsr { |
| 38 | namespace test { |
| 39 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 40 | class LsaRuleFixture : public nlsr::test::UnitTestTimeFixture |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 41 | { |
| 42 | public: |
| 43 | LsaRuleFixture() |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 44 | : face(m_ioService, m_keyChain, {true, true}) |
| 45 | , rootIdName("/ndn") |
| 46 | , siteIdentityName("/ndn/edu/test-site") |
| 47 | , opIdentityName("/ndn/edu/test-site/%C1.Operator/op1") |
| 48 | , routerIdName("/ndn/edu/test-site/%C1.Router/router1") |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 49 | , confParam(face) |
| 50 | , confProcessor(confParam) |
| 51 | , nlsr(face, m_keyChain, confParam) |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 52 | , ROOT_CERT_PATH(boost::filesystem::current_path() / std::string("root.cert")) |
| 53 | { |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 54 | rootId = addIdentity(rootIdName); |
| 55 | siteIdentity = addSubCertificate(siteIdentityName, rootId); |
| 56 | opIdentity = addSubCertificate(opIdentityName, siteIdentity); |
| 57 | routerId = addSubCertificate(routerIdName, opIdentity); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 58 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 59 | saveCertificate(rootId, ROOT_CERT_PATH.string()); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 60 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 61 | auto load = [this] (const ndn::security::Identity& id) { |
| 62 | nlsr.loadCertToPublish(id.getDefaultKey().getDefaultCertificate()); |
| 63 | }; |
| 64 | load(rootId); |
| 65 | load(siteIdentity); |
| 66 | load(opIdentity); |
| 67 | load(routerId); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 68 | |
| 69 | // Loading the security section's validator part into the validator |
| 70 | // See conf file processor for more details |
| 71 | std::ifstream inputFile; |
| 72 | inputFile.open(std::string("nlsr.conf")); |
| 73 | |
| 74 | BOOST_REQUIRE(inputFile.is_open()); |
| 75 | |
| 76 | boost::property_tree::ptree pt; |
| 77 | |
| 78 | boost::property_tree::read_info(inputFile, pt); |
| 79 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 80 | // Loads section and file name |
| 81 | for (const auto& tn : pt) { |
| 82 | if (tn.first == "security") { |
| 83 | auto it = tn.second.begin(); |
| 84 | confParam.getValidator().load(it->second, std::string("nlsr.conf")); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 85 | break; |
| 86 | } |
| 87 | } |
| 88 | inputFile.close(); |
| 89 | |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 90 | // Initialize NLSR to initialize the keyChain |
| 91 | nlsr.initialize(); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 92 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 93 | this->advanceClocks(ndn::time::milliseconds(10)); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 94 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 95 | face.sentInterests.clear(); |
| 96 | } |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 97 | |
| 98 | public: |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 99 | ndn::util::DummyClientFace face; |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 100 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 101 | ndn::Name rootIdName, siteIdentityName, opIdentityName, routerIdName; |
| 102 | ndn::security::pib::Identity rootId, siteIdentity, opIdentity, routerId; |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 103 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 104 | ConfParameter confParam; |
| 105 | DummyConfFileProcessor confProcessor; |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 106 | Nlsr nlsr; |
| 107 | |
| 108 | const boost::filesystem::path ROOT_CERT_PATH; |
| 109 | }; |
| 110 | |
| 111 | BOOST_FIXTURE_TEST_SUITE(TestLsaDataValidation, LsaRuleFixture) |
| 112 | |
| 113 | BOOST_AUTO_TEST_CASE(ValidateCorrectLSA) |
| 114 | { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 115 | ndn::Name lsaDataName = confParam.getLsaPrefix(); |
| 116 | lsaDataName.append(confParam.getSiteName()); |
| 117 | lsaDataName.append(confParam.getRouterName()); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 118 | |
| 119 | // Append LSA type |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 120 | lsaDataName.append(std::to_string(Lsa::Type::NAME)); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 121 | |
| 122 | // This would be the sequence number of its own NameLsa |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 123 | lsaDataName.appendNumber(nlsr.m_lsdb.getSequencingManager().getNameLsaSeq()); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 124 | |
| 125 | // Append version, segmentNo |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 126 | lsaDataName.appendNumber(1).appendNumber(1); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 127 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 128 | ndn::Data data(lsaDataName); |
| 129 | data.setFreshnessPeriod(ndn::time::seconds(10)); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 130 | |
| 131 | // Sign data with NLSR's key |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 132 | m_keyChain.sign(data, nlsr.m_signingInfo); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 133 | |
| 134 | // Make NLSR validate data signed by its own key |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 135 | confParam.getValidator().validate(data, |
| 136 | [] (const Data&) { BOOST_CHECK(true); }, |
| 137 | [] (const Data&, const ndn::security::v2::ValidationError&) { |
| 138 | BOOST_CHECK(false); |
| 139 | }); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | BOOST_AUTO_TEST_CASE(DoNotValidateIncorrectLSA) |
| 143 | { |
| 144 | // getSubName removes the /localhop compnonent from /localhop/ndn/NLSR/LSA |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 145 | ndn::Name lsaDataName = confParam.getLsaPrefix().getSubName(1); |
| 146 | lsaDataName.append(confParam.getSiteName()); |
| 147 | lsaDataName.append(confParam.getRouterName()); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 148 | |
| 149 | // Append LSA type |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 150 | lsaDataName.append(std::to_string(Lsa::Type::NAME)); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 151 | |
| 152 | // This would be the sequence number of its own NameLsa |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 153 | lsaDataName.appendNumber(nlsr.m_lsdb.getSequencingManager().getNameLsaSeq()); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 154 | |
| 155 | // Append version, segmentNo |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 156 | lsaDataName.appendNumber(1).appendNumber(1); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 157 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 158 | ndn::Data data(lsaDataName); |
| 159 | data.setFreshnessPeriod(ndn::time::seconds(10)); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 160 | |
| 161 | // Make NLSR validate data signed by its own key |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame^] | 162 | confParam.getValidator().validate(data, |
| 163 | [] (const Data&) { BOOST_CHECK(false); }, |
| 164 | [] (const Data&, const ndn::security::v2::ValidationError&) { |
| 165 | BOOST_CHECK(true); |
| 166 | }); |
Ashlesh Gawande | 54e726c | 2017-01-30 12:48:06 -0600 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | BOOST_AUTO_TEST_SUITE_END() |
| 170 | |
| 171 | } // namespace test |
| 172 | } // namespace nlsr |