blob: 57093134c9cc636155a9a09b3acb1c3aeeff73e3 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonfeae5572017-01-13 12:06:26 -06003 * Copyright (c) 2014-2017, The University of Memphis,
Vince Lehmanc2e51f62015-01-20 15:03:11 -06004 * Regents of the University of California,
5 * Arizona Board of Regents.
akmhoque3d06e792014-05-27 16:23:20 -05006 *
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/>.
akmhoque3d06e792014-05-27 16:23:20 -050020 **/
Muktadir R Chowdhurybfa27602014-10-31 10:57:41 -050021
akmhoque298385a2014-02-13 14:13:09 -060022#include <cstdlib>
akmhoque92afde42014-02-18 14:04:07 -060023#include <string>
akmhoque298385a2014-02-13 14:13:09 -060024#include <sstream>
akmhoque05d5fcf2014-04-15 14:58:45 -050025#include <cstdio>
akmhoque0494c252014-07-23 23:46:44 -050026#include <unistd.h>
akmhoque298385a2014-02-13 14:13:09 -060027
28#include "nlsr.hpp"
akmhoque157b0a42014-05-13 00:26:37 -050029#include "adjacent.hpp"
akmhoque674b0b12014-05-20 14:33:28 -050030#include "logger.hpp"
akmhoque2bb198e2014-02-28 11:46:27 -060031
Nick Gordond5c1a372016-10-31 13:56:23 -050032#include <ndn-cxx/util/face-uri.hpp>
akmhoque298385a2014-02-13 14:13:09 -060033
akmhoque53353462014-04-22 08:43:45 -050034namespace nlsr {
35
akmhoque674b0b12014-05-20 14:33:28 -050036INIT_LOGGER("nlsr");
37
alvy297f4162015-03-03 17:15:33 -060038const ndn::Name Nlsr::LOCALHOST_PREFIX = ndn::Name("/localhost/nlsr");
39
akmhoque53353462014-04-22 08:43:45 -050040using namespace ndn;
41using namespace std;
42
Laqin Fana4cf4022017-01-03 18:57:35 +000043Nlsr::Nlsr(boost::asio::io_service& ioService, ndn::Scheduler& scheduler, ndn::Face& face, ndn::KeyChain& keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050044 : m_nlsrFace(face)
45 , m_scheduler(scheduler)
Laqin Fana4cf4022017-01-03 18:57:35 +000046 , m_keyChain(keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050047 , m_confParam()
48 , m_adjacencyList()
49 , m_namePrefixList()
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050050 , m_isDaemonProcess(false)
51 , m_configFileName("nlsr.conf")
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050052 , m_nlsrLsdb(*this, scheduler)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050053 , m_adjBuildCount(0)
54 , m_isBuildAdjLsaSheduled(false)
55 , m_isRouteCalculationScheduled(false)
56 , m_isRoutingTableCalculating(false)
57 , m_routingTable(scheduler)
58 , m_fib(m_nlsrFace, scheduler, m_adjacencyList, m_confParam, m_keyChain)
59 , m_namePrefixTable(*this)
laqinfand22da512017-05-25 17:29:53 -050060 , m_localhostDispatcher(m_nlsrFace, m_keyChain)
61 , m_routerNameDispatcher(m_nlsrFace, m_keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050062 , m_lsdbDatasetHandler(m_nlsrLsdb,
laqinfand22da512017-05-25 17:29:53 -050063 m_localhostDispatcher,
64 m_routerNameDispatcher,
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050065 m_nlsrFace,
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050066 m_keyChain)
Nick Gordond5c1a372016-10-31 13:56:23 -050067
Vince Lehmanf7eec4f2015-05-08 19:02:31 -050068 , m_helloProtocol(*this, scheduler)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050069 , m_certificateCache(new ndn::CertificateCacheTtl(ioService))
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050070 , m_validator(m_nlsrFace, DEFAULT_BROADCAST_PREFIX, m_certificateCache, m_certStore)
Nick Gordond5c1a372016-10-31 13:56:23 -050071 , m_controller(m_nlsrFace, m_keyChain, m_validator)
72 , m_faceDatasetController(m_nlsrFace, m_keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050073 , m_prefixUpdateProcessor(m_nlsrFace,
74 m_namePrefixList,
75 m_nlsrLsdb,
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050076 DEFAULT_BROADCAST_PREFIX,
77 m_keyChain,
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050078 m_certificateCache,
79 m_certStore)
laqinfand22da512017-05-25 17:29:53 -050080 , m_nfdRibCommandProcessor(m_localhostDispatcher,
Nick Gordon4d2c6c02017-01-20 13:18:46 -060081 m_namePrefixList,
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050082 m_nlsrLsdb)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050083 , m_faceMonitor(m_nlsrFace)
84 , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT)
85{
dmcoomes9f936662017-03-02 10:33:09 -060086 m_faceMonitor.onNotification.connect(std::bind(&Nlsr::onFaceEventNotification, this, _1));
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050087 m_faceMonitor.start();
88}
89
akmhoque53353462014-04-22 08:43:45 -050090void
91Nlsr::registrationFailed(const ndn::Name& name)
akmhoque298385a2014-02-13 14:13:09 -060092{
dmcoomes9f936662017-03-02 10:33:09 -060093 std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << std::endl;
94 BOOST_THROW_EXCEPTION(Error("Error: Prefix registration failed"));
akmhoque53353462014-04-22 08:43:45 -050095}
akmhoque1fd8c1e2014-02-19 19:41:49 -060096
akmhoque157b0a42014-05-13 00:26:37 -050097void
98Nlsr::onRegistrationSuccess(const ndn::Name& name)
99{
Vince Lehmand6bb3fa2015-04-24 14:21:39 -0500100 _LOG_DEBUG("Successfully registered prefix: " << name);
101
Jiewen Tana0497d82015-02-02 21:59:18 -0800102 if (name.equals(m_confParam.getRouterPrefix())) {
laqinfand22da512017-05-25 17:29:53 -0500103 // the top-level prefixes are added.
104 try {
105 m_routerNameDispatcher.addTopPrefix(m_confParam.getRouterPrefix(), false, m_signingInfo);
106 }
107 catch (const std::exception& e) {
108 _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n");
109 }
Jiewen Tana0497d82015-02-02 21:59:18 -0800110 }
akmhoque157b0a42014-05-13 00:26:37 -0500111}
akmhoque1fd8c1e2014-02-19 19:41:49 -0600112
akmhoque53353462014-04-22 08:43:45 -0500113void
alvy297f4162015-03-03 17:15:33 -0600114Nlsr::onLocalhostRegistrationSuccess(const ndn::Name& name)
115{
laqinfand22da512017-05-25 17:29:53 -0500116 _LOG_DEBUG("Successfully registered local prefix: " << name);
alvy297f4162015-03-03 17:15:33 -0600117
118 m_prefixUpdateProcessor.startListening();
Nick Gordon4d2c6c02017-01-20 13:18:46 -0600119 m_nfdRibCommandProcessor.startListening();
120 // All dispatcher-related sub-prefixes *must* be registered before
121 // the top-level prefixes are added.
122 try {
laqinfand22da512017-05-25 17:29:53 -0500123 m_localhostDispatcher.addTopPrefix(LOCALHOST_PREFIX, false, m_signingInfo);
Nick Gordon4d2c6c02017-01-20 13:18:46 -0600124 }
125 catch (const std::exception& e) {
126 _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n");
127 }
alvy297f4162015-03-03 17:15:33 -0600128}
129
130void
akmhoque31d1d4b2014-05-05 22:08:14 -0500131Nlsr::setInfoInterestFilter()
akmhoque53353462014-04-22 08:43:45 -0500132{
akmhoque31d1d4b2014-05-05 22:08:14 -0500133 ndn::Name name(m_confParam.getRouterPrefix());
akmhoque674b0b12014-05-20 14:33:28 -0500134 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoquefdbddb12014-05-02 18:35:19 -0500135 getNlsrFace().setInterestFilter(name,
Joao Pereira97473d42015-07-03 16:57:27 -0400136 std::bind(&HelloProtocol::processInterest,
akmhoque31d1d4b2014-05-05 22:08:14 -0500137 &m_helloProtocol, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400138 std::bind(&Nlsr::onRegistrationSuccess, this, _1),
139 std::bind(&Nlsr::registrationFailed, this, _1),
140 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500141 ndn::nfd::ROUTE_FLAG_CAPTURE);
akmhoque31d1d4b2014-05-05 22:08:14 -0500142}
143
144void
145Nlsr::setLsaInterestFilter()
146{
akmhoque157b0a42014-05-13 00:26:37 -0500147 ndn::Name name = m_confParam.getLsaPrefix();
akmhoque50125a92014-06-30 08:54:17 -0500148 name.append(m_confParam.getSiteName());
149 name.append(m_confParam.getRouterName());
laqinfand22da512017-05-25 17:29:53 -0500150 _LOG_DEBUG("Setting interest filter for LsaPrefix: " << name);
akmhoque31d1d4b2014-05-05 22:08:14 -0500151 getNlsrFace().setInterestFilter(name,
Joao Pereira97473d42015-07-03 16:57:27 -0400152 std::bind(&Lsdb::processInterest,
akmhoque31d1d4b2014-05-05 22:08:14 -0500153 &m_nlsrLsdb, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400154 std::bind(&Nlsr::onRegistrationSuccess, this, _1),
155 std::bind(&Nlsr::registrationFailed, this, _1),
156 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500157 ndn::nfd::ROUTE_FLAG_CAPTURE);
akmhoque53353462014-04-22 08:43:45 -0500158}
159
160void
akmhoquec04e7272014-07-02 11:00:14 -0500161Nlsr::setStrategies()
akmhoque157b0a42014-05-13 00:26:37 -0500162{
Vince Lehman53c0e3e2015-09-14 14:33:20 -0500163 const std::string strategy("ndn:/localhost/nfd/strategy/multicast");
164
akmhoque3cb0cfc2014-06-24 10:32:24 -0500165 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
166 broadcastKeyPrefix.append("KEYS");
Vince Lehman53c0e3e2015-09-14 14:33:20 -0500167
akmhoque393d4ff2014-07-16 14:27:03 -0500168 m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0);
169 m_fib.setStrategy(broadcastKeyPrefix, strategy, 0);
170 m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0);
akmhoque157b0a42014-05-13 00:26:37 -0500171}
172
173void
akmhoque0494c252014-07-23 23:46:44 -0500174Nlsr::daemonize()
175{
176 pid_t process_id = 0;
177 pid_t sid = 0;
178 process_id = fork();
179 if (process_id < 0){
180 std::cerr << "Daemonization failed!" << std::endl;
dmcoomes9f936662017-03-02 10:33:09 -0600181 BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- fork failed!"));
akmhoque0494c252014-07-23 23:46:44 -0500182 }
183 if (process_id > 0) {
184 _LOG_DEBUG("Process daemonized. Process id: " << process_id);
185 exit(0);
186 }
187
188 umask(0);
189 sid = setsid();
190 if(sid < 0) {
dmcoomes9f936662017-03-02 10:33:09 -0600191 BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- setting id failed!"));
akmhoque0494c252014-07-23 23:46:44 -0500192 }
193
194 if (chdir("/") < 0) {
dmcoomes9f936662017-03-02 10:33:09 -0600195 BOOST_THROW_EXCEPTION(Error("Error: Daemonization process-chdir failed!"));
akmhoque0494c252014-07-23 23:46:44 -0500196 }
197}
198
199void
Nick Gordon9461afb2017-04-25 15:54:50 -0500200Nlsr::canonizeContinuation(std::list<Adjacent>::iterator iterator)
201{
202 canonizeNeighborUris(iterator, [this] (std::list<Adjacent>::iterator iterator) {
203 canonizeContinuation(iterator);
204 });
205}
206
207void
208Nlsr::canonizeNeighborUris(std::list<Adjacent>::iterator currentNeighbor,
209 std::function<void(std::list<Adjacent>::iterator)> then)
210{
211 if (currentNeighbor != m_adjacencyList.getAdjList().end()) {
Nick Gordone9733ed2017-04-26 10:48:39 -0500212 ndn::util::FaceUri uri(currentNeighbor->getFaceUri());
Nick Gordon9461afb2017-04-25 15:54:50 -0500213 uri.canonize([this, then, currentNeighbor] (ndn::util::FaceUri canonicalUri) {
Nick Gordone9733ed2017-04-26 10:48:39 -0500214 _LOG_DEBUG("Canonized URI: " << currentNeighbor->getFaceUri()
Nick Gordon9461afb2017-04-25 15:54:50 -0500215 << " to: " << canonicalUri);
Nick Gordone9733ed2017-04-26 10:48:39 -0500216 currentNeighbor->setFaceUri(canonicalUri);
Nick Gordon9461afb2017-04-25 15:54:50 -0500217 then(std::next(currentNeighbor));
218 },
219 [this, then, currentNeighbor] (const std::string& reason) {
Nick Gordone9733ed2017-04-26 10:48:39 -0500220 _LOG_ERROR("Could not canonize URI: " << currentNeighbor->getFaceUri()
Nick Gordon9461afb2017-04-25 15:54:50 -0500221 << " because: " << reason);
222 then(std::next(currentNeighbor));
223 },
224 m_nlsrFace.getIoService(),
225 TIME_ALLOWED_FOR_CANONIZATION);
226 }
227 // We have finished canonizing all neighbors, so initialize NLSR.
228 else {
229 initialize();
230 }
231}
232
233void
akmhoque53353462014-04-22 08:43:45 -0500234Nlsr::initialize()
235{
akmhoque674b0b12014-05-20 14:33:28 -0500236 _LOG_DEBUG("Initializing Nlsr");
akmhoque53353462014-04-22 08:43:45 -0500237 m_confParam.buildRouterPrefix();
Muktadir R Chowdhury3ac07282016-06-17 16:30:29 -0500238 m_lsdbDatasetHandler.setRouterNameCommandPrefix(m_confParam.getRouterPrefix());
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700239 m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime()));
akmhoque31d1d4b2014-05-05 22:08:14 -0500240 m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri());
akmhoque53353462014-04-22 08:43:45 -0500241 m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600242
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500243 m_nlsrLsdb.getSequencingManager().setSeqFileDirectory(m_confParam.getSeqFileDir());
244 m_nlsrLsdb.getSequencingManager().initiateSeqNoFromFile(m_confParam.getHyperbolicState());
245
246 m_nlsrLsdb.getSyncLogicHandler().createSyncSocket(m_confParam.getChronosyncPrefix());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600247
dmcoomes9f936662017-03-02 10:33:09 -0600248 // Logging start
akmhoque674b0b12014-05-20 14:33:28 -0500249 m_confParam.writeLog();
250 m_adjacencyList.writeLog();
Nick Gordon494de402017-06-14 12:48:51 -0500251 _LOG_DEBUG(m_namePrefixList);
dmcoomes9f936662017-03-02 10:33:09 -0600252 // Logging end
akmhoque443ad812014-07-29 10:26:56 -0500253 initializeKey();
akmhoquec04e7272014-07-02 11:00:14 -0500254 setStrategies();
Joao Pereira97473d42015-07-03 16:57:27 -0400255 _LOG_DEBUG("Default NLSR identity: " << m_signingInfo.getSignerName());
akmhoque31d1d4b2014-05-05 22:08:14 -0500256 setInfoInterestFilter();
257 setLsaInterestFilter();
Vince Lehman50df6b72015-03-03 12:06:40 -0600258
Nick Gordond5c1a372016-10-31 13:56:23 -0500259 initializeFaces(std::bind(&Nlsr::processFaceDataset, this, _1),
260 std::bind(&Nlsr::onFaceDatasetFetchTimeout, this, _1, _2, 0));
261
Vince Lehman50df6b72015-03-03 12:06:40 -0600262 // Set event intervals
263 setFirstHelloInterval(m_confParam.getFirstHelloInterval());
264 m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval());
265 m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval());
266
akmhoque674b0b12014-05-20 14:33:28 -0500267 m_nlsrLsdb.buildAndInstallOwnNameLsa();
Nick Gordon5c467f02016-07-13 13:40:10 -0500268
269 // Install coordinate LSAs if using HR or dry-run HR.
270 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
271 m_nlsrLsdb.buildAndInstallOwnCoordinateLsa();
272 }
Vince Lehman904c2412014-09-23 19:36:11 -0500273
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700274 registerKeyPrefix();
alvy297f4162015-03-03 17:15:33 -0600275 registerLocalhostPrefix();
Vince Lehman7b616582014-10-17 16:25:39 -0500276
Vince Lehman7b616582014-10-17 16:25:39 -0500277 m_helloProtocol.scheduleInterest(m_firstHelloInterval);
Vince Lehman09131122014-09-09 17:10:11 -0500278
279 // Need to set direct neighbors' costs to 0 for hyperbolic routing
280 if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
281
282 std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList();
283
284 for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) {
285 it->setLinkCost(0);
286 }
287 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700288}
289
290void
akmhoque443ad812014-07-29 10:26:56 -0500291Nlsr::initializeKey()
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700292{
Joao Pereira97473d42015-07-03 16:57:27 -0400293 ndn::Name defaultIdentity = m_confParam.getRouterPrefix();
294 defaultIdentity.append("NLSR");
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700295
Joao Pereira97473d42015-07-03 16:57:27 -0400296 try {
297 m_keyChain.deleteIdentity(defaultIdentity);
akmhoque102aea42014-08-04 10:22:12 -0500298 }
dmcoomes9f936662017-03-02 10:33:09 -0600299 catch (const std::exception& e) {
akmhoque102aea42014-08-04 10:22:12 -0500300 }
Joao Pereira97473d42015-07-03 16:57:27 -0400301 m_signingInfo = ndn::security::SigningInfo(ndn::security::SigningInfo::SIGNER_TYPE_ID, defaultIdentity);
akmhoque443ad812014-07-29 10:26:56 -0500302
Joao Pereira97473d42015-07-03 16:57:27 -0400303 ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(defaultIdentity, true);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700304
dmcoomes9f936662017-03-02 10:33:09 -0600305 std::shared_ptr<ndn::IdentityCertificate> certificate =
306 std::make_shared<ndn::IdentityCertificate>();
307 std::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName);
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700308 Name certificateName = keyName.getPrefix(-1);
309 certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion();
310 certificate->setName(certificateName);
311 certificate->setNotBefore(time::system_clock::now() - time::days(1));
312 certificate->setNotAfter(time::system_clock::now() + time::days(7300)); // ~20 years
313 certificate->setPublicKeyInfo(*pubKey);
314 certificate->addSubjectDescription(CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME,
315 keyName.toUri()));
316 certificate->encode();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700317 m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix());
318
319 m_keyChain.addCertificateAsIdentityDefault(*certificate);
320 loadCertToPublish(certificate);
321
322 m_defaultCertName = certificate->getName();
323}
324
325void
326Nlsr::registerKeyPrefix()
327{
328 ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX;
329 keyPrefix.append("KEYS");
330 m_nlsrFace.setInterestFilter(keyPrefix,
Joao Pereira97473d42015-07-03 16:57:27 -0400331 std::bind(&Nlsr::onKeyInterest,
Yingdi Yu6a3a4dd2014-06-20 14:10:39 -0700332 this, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400333 std::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1),
334 std::bind(&Nlsr::registrationFailed, this, _1),
335 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500336 ndn::nfd::ROUTE_FLAG_CAPTURE);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700337
338}
339
340void
alvy297f4162015-03-03 17:15:33 -0600341Nlsr::registerLocalhostPrefix()
342{
alvy297f4162015-03-03 17:15:33 -0600343 m_nlsrFace.registerPrefix(LOCALHOST_PREFIX,
344 std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1),
345 std::bind(&Nlsr::registrationFailed, this, _1));
346}
347
348void
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700349Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest)
350{
351 const ndn::Name& interestName = interest.getName();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700352 ndn::Name certName = interestName.getSubName(name.size());
353
354 if (certName[-2].toUri() == "ID-CERT")
355 {
356 certName = certName.getPrefix(-1);
357 }
358 else if (certName[-1].toUri() != "ID-CERT")
dmcoomes9eaf3f42017-02-21 11:39:01 -0600359 {
360 _LOG_DEBUG("certName for interest " << interest << " is malformed,"
361 << " contains incorrect namespace syntax");
362 return;
363 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700364
dmcoomes9f936662017-03-02 10:33:09 -0600365 std::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700366
367 if (!static_cast<bool>(cert))
dmcoomes9eaf3f42017-02-21 11:39:01 -0600368 {
369 _LOG_DEBUG("cert is not found for " << interest);
370 return; // cert is not found
371 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700372
dmcoomes9f936662017-03-02 10:33:09 -0600373 std::shared_ptr<ndn::Data> data = std::make_shared<ndn::Data>();
akmhoque69c9aa92014-07-23 15:15:05 -0500374 data->setName(interestName);
375 data->setContent(cert->wireEncode());
376 m_keyChain.signWithSha256(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700377
akmhoque69c9aa92014-07-23 15:15:05 -0500378 m_nlsrFace.put(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700379}
380
381void
382Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name)
383{
akmhoque53353462014-04-22 08:43:45 -0500384}
akmhoque5a44dd42014-03-12 18:11:32 -0500385
akmhoque53353462014-04-22 08:43:45 -0500386void
akmhoquec04e7272014-07-02 11:00:14 -0500387Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification)
akmhoquee1765152014-06-30 11:32:01 -0500388{
Vince Lehman02e32992015-03-11 12:31:20 -0500389 _LOG_TRACE("Nlsr::onFaceEventNotification called");
Vince Lehman02e32992015-03-11 12:31:20 -0500390
Nick Gordond5c1a372016-10-31 13:56:23 -0500391 switch (faceEventNotification.getKind()) {
392 case ndn::nfd::FACE_EVENT_DESTROYED: {
393 uint64_t faceId = faceEventNotification.getFaceId();
Vince Lehman02e32992015-03-11 12:31:20 -0500394
Nick Gordond5c1a372016-10-31 13:56:23 -0500395 auto adjacent = m_adjacencyList.findAdjacent(faceId);
Vince Lehman02e32992015-03-11 12:31:20 -0500396
Nick Gordond5c1a372016-10-31 13:56:23 -0500397 if (adjacent != m_adjacencyList.end()) {
398 _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed");
Vince Lehman02e32992015-03-11 12:31:20 -0500399
Nick Gordond5c1a372016-10-31 13:56:23 -0500400 adjacent->setFaceId(0);
Vince Lehman02e32992015-03-11 12:31:20 -0500401
Nick Gordond5c1a372016-10-31 13:56:23 -0500402 // Only trigger an Adjacency LSA build if this node is changing
403 // from ACTIVE to INACTIVE since this rebuild will effectively
404 // cancel the previous Adjacency LSA refresh event and schedule
405 // a new one further in the future.
406 //
407 // Continuously scheduling the refresh in the future will block
408 // the router from refreshing its Adjacency LSA. Since other
409 // routers' Name prefixes' expiration times are updated when
410 // this router refreshes its Adjacency LSA, the other routers'
411 // prefixes will expire and be removed from the RIB.
412 //
413 // This check is required to fix Bug #2733 for now. This check
414 // would be unnecessary to fix Bug #2733 when Issue #2732 is
415 // completed, but the check also helps with optimization so it
416 // can remain even when Issue #2732 is implemented.
417 if (adjacent->getStatus() == Adjacent::STATUS_ACTIVE) {
418 adjacent->setStatus(Adjacent::STATUS_INACTIVE);
Vince Lehman02e32992015-03-11 12:31:20 -0500419
Nick Gordond5c1a372016-10-31 13:56:23 -0500420 // A new adjacency LSA cannot be built until the neighbor is marked INACTIVE and
421 // has met the HELLO retry threshold
422 adjacent->setInterestTimedOutNo(m_confParam.getInterestRetryNumber());
Vince Lehman199e9cf2015-04-07 13:22:16 -0500423
Nick Gordond5c1a372016-10-31 13:56:23 -0500424 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
425 getRoutingTable().scheduleRoutingTableCalculation(*this);
426 }
427 else {
428 m_nlsrLsdb.scheduleAdjLsaBuild();
429 }
Nick Gordone8e03ac2016-07-07 14:24:38 -0500430 }
Vince Lehman199e9cf2015-04-07 13:22:16 -0500431 }
Nick Gordond5c1a372016-10-31 13:56:23 -0500432 break;
akmhoquec04e7272014-07-02 11:00:14 -0500433 }
Nick Gordond5c1a372016-10-31 13:56:23 -0500434 case ndn::nfd::FACE_EVENT_CREATED: {
435 // Find the neighbor in our adjacency list
436 _LOG_DEBUG("Face created event received.");
437 auto adjacent = m_adjacencyList.findAdjacent(
438 ndn::util::FaceUri(faceEventNotification.getRemoteUri()));
439 // If we have a neighbor by that FaceUri and it has no FaceId, we
440 // have a match.
441 if (adjacent != m_adjacencyList.end()) {
442 _LOG_DEBUG("Face creation event matches neighbor: " << adjacent->getName()
443 << ". New Face ID: " << faceEventNotification.getFaceId()
444 << ". Registering prefixes.");
445 adjacent->setFaceId(faceEventNotification.getFaceId());
446
447 registerAdjacencyPrefixes(*adjacent, ndn::time::milliseconds::max());
448 }
449 break;
450 }
451 default:
452 break;
akmhoquec04e7272014-07-02 11:00:14 -0500453 }
akmhoquee1765152014-06-30 11:32:01 -0500454}
455
Nick Gordond5c1a372016-10-31 13:56:23 -0500456void
457Nlsr::initializeFaces(const FetchDatasetCallback& onFetchSuccess,
458 const FetchDatasetTimeoutCallback& onFetchFailure)
459{
460 _LOG_TRACE("Initializing Faces...");
461
462 m_faceDatasetController.fetch<ndn::nfd::FaceDataset>(onFetchSuccess, onFetchFailure);
463
464}
465
466void
467Nlsr::processFaceDataset(const std::vector<ndn::nfd::FaceStatus>& faces)
468{
469 // Iterate over each neighbor listed in nlsr.conf
470 bool anyFaceChanged = false;
471 for (auto&& adjacency : m_adjacencyList.getAdjList()) {
472
473 const std::string faceUriString = adjacency.getFaceUri().toString();
474 // Check the list of FaceStatus objects we got for a match
475 for (const ndn::nfd::FaceStatus& faceStatus : faces) {
476
477 // Set the adjacency FaceID if we find a URI match and it was
478 // previously unset. Change the boolean to true.
479 if (adjacency.getFaceId() == 0 && faceUriString == faceStatus.getRemoteUri()) {
480 adjacency.setFaceId(faceStatus.getFaceId());
481 anyFaceChanged = true;
482 // Register the prefixes for each neighbor
483 this->registerAdjacencyPrefixes(adjacency, ndn::time::milliseconds::max());
484 }
485 }
486 // If this adjacency has no information in this dataset, then one
487 // of two things is happening: 1. NFD is starting slowly and this
488 // Face wasn't ready yet, or 2. NFD is configured
489 // incorrectly and this Face isn't available.
490 if (adjacency.getFaceId() == 0) {
491 _LOG_WARN("The adjacency " << adjacency.getName() <<
492 " has no Face information in this dataset.");
493 }
494 }
495
496 if (anyFaceChanged) {
497 // Only do these things if something has changed. Schedule an
498 // adjacency LSA build to update with all of the new neighbors if
499 // HR is off.
500 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
501 getRoutingTable().scheduleRoutingTableCalculation(*this);
502 }
503 else {
504 m_nlsrLsdb.scheduleAdjLsaBuild();
505 }
506
507 // Begin the Hello Protocol loop immediately, so we don't wait.
508 m_helloProtocol.sendScheduledInterest(0);
509 }
510
511 scheduleDatasetFetch();
512}
513
514void
515Nlsr::registerAdjacencyPrefixes(const Adjacent& adj,
516 const ndn::time::milliseconds& timeout)
517{
518 std::string faceUri = adj.getFaceUri().toString();
519 double linkCost = adj.getLinkCost();
520
521 m_fib.registerPrefix(adj.getName(), faceUri, linkCost,
522 timeout, ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
523
524 m_fib.registerPrefix(m_confParam.getChronosyncPrefix(),
525 faceUri, linkCost, timeout,
526 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
527
528 m_fib.registerPrefix(m_confParam.getLsaPrefix(),
529 faceUri, linkCost, timeout,
530 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
531
532 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
533 broadcastKeyPrefix.append("KEYS");
534 m_fib.registerPrefix(broadcastKeyPrefix,
535 faceUri, linkCost, timeout,
536 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
537}
538
539void
540Nlsr::onFaceDatasetFetchTimeout(uint32_t code,
541 const std::string& msg,
542 uint32_t nRetriesSoFar)
543{
544 // If we have exceeded the maximum attempt count, do not try again.
545 if (nRetriesSoFar++ < m_confParam.getFaceDatasetFetchTries()) {
546 _LOG_DEBUG("Failed to fetch dataset: " << msg << ". Attempting retry #" << nRetriesSoFar);
547 m_faceDatasetController.fetch<ndn::nfd::FaceDataset>(std::bind(&Nlsr::processFaceDataset,
548 this, _1),
549 std::bind(&Nlsr::onFaceDatasetFetchTimeout,
550 this, _1, _2, nRetriesSoFar));
551 }
552 else {
553 _LOG_ERROR("Failed to fetch dataset: " << msg << ". Exceeded limit of " <<
554 m_confParam.getFaceDatasetFetchTries() << ", so not trying again this time.");
555 // If we fail to fetch it, just do nothing until the next
556 // interval. Since this is a backup mechanism, we aren't as
557 // concerned with retrying.
558 scheduleDatasetFetch();
559 }
560}
561
562void
563Nlsr::scheduleDatasetFetch()
564{
565 m_scheduler.scheduleEvent(m_confParam.getFaceDatasetFetchInterval(),
566 [this] {
567 this->initializeFaces(
568 [this] (const std::vector<ndn::nfd::FaceStatus>& faces) {
569 this->processFaceDataset(faces);
570 },
571 [this] (uint32_t code, const std::string& msg) {
572 this->onFaceDatasetFetchTimeout(code, msg, 0);
573 });
574 });
575}
akmhoquee1765152014-06-30 11:32:01 -0500576
577void
akmhoque53353462014-04-22 08:43:45 -0500578Nlsr::startEventLoop()
579{
akmhoquefdbddb12014-05-02 18:35:19 -0500580 m_nlsrFace.processEvents();
akmhoque53353462014-04-22 08:43:45 -0500581}
akmhoque5a44dd42014-03-12 18:11:32 -0500582
akmhoqueb1710aa2014-02-19 17:13:36 -0600583} // namespace nlsr