blob: 2b6faf416dd347208bc4d0fee16e39e64c6d0329 [file] [log] [blame]
Ashlesh Gawande54e726c2017-01-30 12:48:06 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -04002/*
Davide Pesaventod1f1df82022-03-12 16:40:37 -05003 * Copyright (c) 2014-2022, The University of Memphis,
Ashlesh Gawande54e726c2017-01-30 12:48:06 -06004 * 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/>.
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -040020 */
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060021
22#include "test-common.hpp"
23#include "nlsr.hpp"
Saurab Dulal427e0122019-11-28 11:58:02 -060024#include "security/certificate-store.hpp"
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060025
26#include <ndn-cxx/interest.hpp>
27#include <ndn-cxx/security/key-chain.hpp>
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060028#include <ndn-cxx/security/signing-helpers.hpp>
29#include <ndn-cxx/security/signing-info.hpp>
Ashlesh Gawande30d96e42021-03-21 19:15:33 -070030#include <ndn-cxx/util/dummy-client-face.hpp>
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060031
32#include <boost/filesystem.hpp>
Ashlesh Gawande30d96e42021-03-21 19:15:33 -070033#include <boost/lexical_cast.hpp>
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060034#include <boost/property_tree/info_parser.hpp>
Ashlesh Gawande30d96e42021-03-21 19:15:33 -070035#include <boost/property_tree/ptree.hpp>
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060036
37using namespace ndn;
38
39namespace nlsr {
40namespace test {
41
Davide Pesaventod1f1df82022-03-12 16:40:37 -050042class LsaRuleFixture : public UnitTestTimeFixture
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060043{
44public:
45 LsaRuleFixture()
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050046 : face(m_ioService, m_keyChain, {true, true})
47 , rootIdName("/ndn")
48 , siteIdentityName("/ndn/edu/test-site")
49 , opIdentityName("/ndn/edu/test-site/%C1.Operator/op1")
50 , routerIdName("/ndn/edu/test-site/%C1.Router/router1")
Saurab Dulal427e0122019-11-28 11:58:02 -060051 , confParam(face, m_keyChain)
52 , confProcessor(confParam, SYNC_PROTOCOL_PSYNC, HYPERBOLIC_STATE_OFF,
53 "/ndn/", "/edu/test-site", "/%C1.Router/router1")
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070054 , lsdb(face, m_keyChain, confParam)
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060055 , ROOT_CERT_PATH(boost::filesystem::current_path() / std::string("root.cert"))
56 {
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050057 rootId = addIdentity(rootIdName);
58 siteIdentity = addSubCertificate(siteIdentityName, rootId);
59 opIdentity = addSubCertificate(opIdentityName, siteIdentity);
60 routerId = addSubCertificate(routerIdName, opIdentity);
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060061
Saurab Dulal427e0122019-11-28 11:58:02 -060062 // Create certificate and load it to the validator
63 // previously this was done by in nlsr ctor
64 confParam.initializeKey();
65
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050066 saveCertificate(rootId, ROOT_CERT_PATH.string());
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060067
Saurab Dulal427e0122019-11-28 11:58:02 -060068 confParam.loadCertToValidator(rootId.getDefaultKey().getDefaultCertificate());
69 confParam.loadCertToValidator(siteIdentity.getDefaultKey().getDefaultCertificate());
70 confParam.loadCertToValidator(opIdentity.getDefaultKey().getDefaultCertificate());
71 confParam.loadCertToValidator(routerId.getDefaultKey().getDefaultCertificate());
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060072
73 // Loading the security section's validator part into the validator
74 // See conf file processor for more details
75 std::ifstream inputFile;
76 inputFile.open(std::string("nlsr.conf"));
77
78 BOOST_REQUIRE(inputFile.is_open());
79
80 boost::property_tree::ptree pt;
81
82 boost::property_tree::read_info(inputFile, pt);
83
Ashlesh Gawande85998a12017-12-07 22:22:13 -060084 // Loads section and file name
85 for (const auto& tn : pt) {
86 if (tn.first == "security") {
87 auto it = tn.second.begin();
88 confParam.getValidator().load(it->second, std::string("nlsr.conf"));
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060089 break;
90 }
91 }
92 inputFile.close();
93
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050094 this->advanceClocks(ndn::time::milliseconds(10));
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060095
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050096 face.sentInterests.clear();
97 }
Ashlesh Gawande54e726c2017-01-30 12:48:06 -060098
99public:
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500100 ndn::util::DummyClientFace face;
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600101
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500102 ndn::Name rootIdName, siteIdentityName, opIdentityName, routerIdName;
103 ndn::security::pib::Identity rootId, siteIdentity, opIdentity, routerId;
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600104 ConfParameter confParam;
105 DummyConfFileProcessor confProcessor;
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700106 Lsdb lsdb;
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600107
108 const boost::filesystem::path ROOT_CERT_PATH;
109};
110
111BOOST_FIXTURE_TEST_SUITE(TestLsaDataValidation, LsaRuleFixture)
112
113BOOST_AUTO_TEST_CASE(ValidateCorrectLSA)
114{
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600115 ndn::Name lsaDataName = confParam.getLsaPrefix();
116 lsaDataName.append(confParam.getSiteName());
117 lsaDataName.append(confParam.getRouterName());
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600118
119 // Append LSA type
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800120 lsaDataName.append(boost::lexical_cast<std::string>(Lsa::Type::NAME));
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600121
122 // This would be the sequence number of its own NameLsa
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700123 lsaDataName.appendNumber(lsdb.m_sequencingManager.getNameLsaSeq());
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600124
125 // Append version, segmentNo
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500126 lsaDataName.appendNumber(1).appendNumber(1);
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600127
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500128 ndn::Data data(lsaDataName);
129 data.setFreshnessPeriod(ndn::time::seconds(10));
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600130
131 // Sign data with NLSR's key
Saurab Dulal427e0122019-11-28 11:58:02 -0600132 m_keyChain.sign(data, confParam.getSigningInfo());
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600133
134 // Make NLSR validate data signed by its own key
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600135 confParam.getValidator().validate(data,
136 [] (const Data&) { BOOST_CHECK(true); },
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -0400137 [] (const Data&, const ndn::security::ValidationError&) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600138 BOOST_CHECK(false);
139 });
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600140}
141
142BOOST_AUTO_TEST_CASE(DoNotValidateIncorrectLSA)
143{
144 // getSubName removes the /localhop compnonent from /localhop/ndn/NLSR/LSA
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600145 ndn::Name lsaDataName = confParam.getLsaPrefix().getSubName(1);
146 lsaDataName.append(confParam.getSiteName());
147 lsaDataName.append(confParam.getRouterName());
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600148
149 // Append LSA type
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800150 lsaDataName.append(boost::lexical_cast<std::string>(Lsa::Type::NAME));
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600151
152 // This would be the sequence number of its own NameLsa
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700153 lsaDataName.appendNumber(lsdb.m_sequencingManager.getNameLsaSeq());
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600154
155 // Append version, segmentNo
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500156 lsaDataName.appendNumber(1).appendNumber(1);
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600157
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500158 ndn::Data data(lsaDataName);
159 data.setFreshnessPeriod(ndn::time::seconds(10));
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600160
161 // Make NLSR validate data signed by its own key
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600162 confParam.getValidator().validate(data,
163 [] (const Data&) { BOOST_CHECK(false); },
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -0400164 [] (const Data&, const ndn::security::ValidationError&) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600165 BOOST_CHECK(true);
166 });
Ashlesh Gawande54e726c2017-01-30 12:48:06 -0600167}
168
169BOOST_AUTO_TEST_SUITE_END()
170
171} // namespace test
172} // namespace nlsr