blob: 32bda236c3d17aceee9fd4d2ec6f8ffdd1b36c21 [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
Laqin Fan54a43f02017-03-08 12:31:30 -060022#include "nlsr.hpp"
23#include "adjacent.hpp"
24#include "logger.hpp"
25
akmhoque298385a2014-02-13 14:13:09 -060026#include <cstdlib>
akmhoque92afde42014-02-18 14:04:07 -060027#include <string>
akmhoque298385a2014-02-13 14:13:09 -060028#include <sstream>
akmhoque05d5fcf2014-04-15 14:58:45 -050029#include <cstdio>
akmhoque0494c252014-07-23 23:46:44 -050030#include <unistd.h>
akmhoque298385a2014-02-13 14:13:09 -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
Laqin Fana4cf4022017-01-03 18:57:35 +000040Nlsr::Nlsr(boost::asio::io_service& ioService, ndn::Scheduler& scheduler, ndn::Face& face, ndn::KeyChain& keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050041 : m_nlsrFace(face)
42 , m_scheduler(scheduler)
Laqin Fana4cf4022017-01-03 18:57:35 +000043 , m_keyChain(keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050044 , m_confParam()
45 , m_adjacencyList()
46 , m_namePrefixList()
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050047 , m_isDaemonProcess(false)
48 , m_configFileName("nlsr.conf")
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050049 , m_nlsrLsdb(*this, scheduler)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050050 , m_adjBuildCount(0)
51 , m_isBuildAdjLsaSheduled(false)
52 , m_isRouteCalculationScheduled(false)
53 , m_isRoutingTableCalculating(false)
54 , m_routingTable(scheduler)
55 , m_fib(m_nlsrFace, scheduler, m_adjacencyList, m_confParam, m_keyChain)
56 , m_namePrefixTable(*this)
laqinfand22da512017-05-25 17:29:53 -050057 , m_localhostDispatcher(m_nlsrFace, m_keyChain)
58 , m_routerNameDispatcher(m_nlsrFace, m_keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050059 , m_lsdbDatasetHandler(m_nlsrLsdb,
laqinfand22da512017-05-25 17:29:53 -050060 m_localhostDispatcher,
61 m_routerNameDispatcher,
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050062 m_nlsrFace,
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050063 m_keyChain)
Nick Gordond5c1a372016-10-31 13:56:23 -050064
Vince Lehmanf7eec4f2015-05-08 19:02:31 -050065 , m_helloProtocol(*this, scheduler)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050066 , m_certificateCache(new ndn::CertificateCacheTtl(ioService))
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050067 , m_validator(m_nlsrFace, DEFAULT_BROADCAST_PREFIX, m_certificateCache, m_certStore)
Nick Gordond5c1a372016-10-31 13:56:23 -050068 , m_controller(m_nlsrFace, m_keyChain, m_validator)
69 , m_faceDatasetController(m_nlsrFace, m_keyChain)
Laqin Fan54a43f02017-03-08 12:31:30 -060070 , m_prefixUpdateProcessor(m_localhostDispatcher,
71 m_nlsrFace,
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050072 m_namePrefixList,
73 m_nlsrLsdb,
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050074 DEFAULT_BROADCAST_PREFIX,
75 m_keyChain,
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050076 m_certificateCache,
77 m_certStore)
laqinfand22da512017-05-25 17:29:53 -050078 , m_nfdRibCommandProcessor(m_localhostDispatcher,
Nick Gordon4d2c6c02017-01-20 13:18:46 -060079 m_namePrefixList,
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050080 m_nlsrLsdb)
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -060081 , m_statsCollector(m_nlsrLsdb, m_helloProtocol)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050082 , m_faceMonitor(m_nlsrFace)
83 , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT)
84{
dmcoomes9f936662017-03-02 10:33:09 -060085 m_faceMonitor.onNotification.connect(std::bind(&Nlsr::onFaceEventNotification, this, _1));
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050086 m_faceMonitor.start();
87}
88
akmhoque53353462014-04-22 08:43:45 -050089void
90Nlsr::registrationFailed(const ndn::Name& name)
akmhoque298385a2014-02-13 14:13:09 -060091{
Ashlesh Gawande793e8702017-08-01 15:59:26 -050092 _LOG_ERROR("ERROR: Failed to register prefix in local hub's daemon");
dmcoomes9f936662017-03-02 10:33:09 -060093 BOOST_THROW_EXCEPTION(Error("Error: Prefix registration failed"));
akmhoque53353462014-04-22 08:43:45 -050094}
akmhoque1fd8c1e2014-02-19 19:41:49 -060095
akmhoque157b0a42014-05-13 00:26:37 -050096void
97Nlsr::onRegistrationSuccess(const ndn::Name& name)
98{
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050099 _LOG_DEBUG("Successfully registered prefix: " << name);
100
Jiewen Tana0497d82015-02-02 21:59:18 -0800101 if (name.equals(m_confParam.getRouterPrefix())) {
laqinfand22da512017-05-25 17:29:53 -0500102 // the top-level prefixes are added.
103 try {
104 m_routerNameDispatcher.addTopPrefix(m_confParam.getRouterPrefix(), false, m_signingInfo);
105 }
106 catch (const std::exception& e) {
107 _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n");
108 }
Jiewen Tana0497d82015-02-02 21:59:18 -0800109 }
akmhoque157b0a42014-05-13 00:26:37 -0500110}
akmhoque1fd8c1e2014-02-19 19:41:49 -0600111
akmhoque53353462014-04-22 08:43:45 -0500112void
alvy297f4162015-03-03 17:15:33 -0600113Nlsr::onLocalhostRegistrationSuccess(const ndn::Name& name)
114{
Nick Gordon4d2c6c02017-01-20 13:18:46 -0600115 // All dispatcher-related sub-prefixes *must* be registered before
116 // the top-level prefixes are added.
117 try {
laqinfand22da512017-05-25 17:29:53 -0500118 m_localhostDispatcher.addTopPrefix(LOCALHOST_PREFIX, false, m_signingInfo);
Nick Gordon4d2c6c02017-01-20 13:18:46 -0600119 }
120 catch (const std::exception& e) {
121 _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n");
122 }
alvy297f4162015-03-03 17:15:33 -0600123}
124
125void
akmhoque31d1d4b2014-05-05 22:08:14 -0500126Nlsr::setInfoInterestFilter()
akmhoque53353462014-04-22 08:43:45 -0500127{
akmhoque31d1d4b2014-05-05 22:08:14 -0500128 ndn::Name name(m_confParam.getRouterPrefix());
akmhoque674b0b12014-05-20 14:33:28 -0500129 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoquefdbddb12014-05-02 18:35:19 -0500130 getNlsrFace().setInterestFilter(name,
Joao Pereira97473d42015-07-03 16:57:27 -0400131 std::bind(&HelloProtocol::processInterest,
akmhoque31d1d4b2014-05-05 22:08:14 -0500132 &m_helloProtocol, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400133 std::bind(&Nlsr::onRegistrationSuccess, this, _1),
134 std::bind(&Nlsr::registrationFailed, this, _1),
135 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500136 ndn::nfd::ROUTE_FLAG_CAPTURE);
akmhoque31d1d4b2014-05-05 22:08:14 -0500137}
138
139void
140Nlsr::setLsaInterestFilter()
141{
akmhoque157b0a42014-05-13 00:26:37 -0500142 ndn::Name name = m_confParam.getLsaPrefix();
akmhoque50125a92014-06-30 08:54:17 -0500143 name.append(m_confParam.getSiteName());
144 name.append(m_confParam.getRouterName());
laqinfand22da512017-05-25 17:29:53 -0500145 _LOG_DEBUG("Setting interest filter for LsaPrefix: " << name);
akmhoque31d1d4b2014-05-05 22:08:14 -0500146 getNlsrFace().setInterestFilter(name,
Joao Pereira97473d42015-07-03 16:57:27 -0400147 std::bind(&Lsdb::processInterest,
akmhoque31d1d4b2014-05-05 22:08:14 -0500148 &m_nlsrLsdb, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400149 std::bind(&Nlsr::onRegistrationSuccess, this, _1),
150 std::bind(&Nlsr::registrationFailed, this, _1),
151 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500152 ndn::nfd::ROUTE_FLAG_CAPTURE);
akmhoque53353462014-04-22 08:43:45 -0500153}
154
155void
akmhoquec04e7272014-07-02 11:00:14 -0500156Nlsr::setStrategies()
akmhoque157b0a42014-05-13 00:26:37 -0500157{
Vince Lehman53c0e3e2015-09-14 14:33:20 -0500158 const std::string strategy("ndn:/localhost/nfd/strategy/multicast");
159
akmhoque3cb0cfc2014-06-24 10:32:24 -0500160 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
161 broadcastKeyPrefix.append("KEYS");
Vince Lehman53c0e3e2015-09-14 14:33:20 -0500162
akmhoque393d4ff2014-07-16 14:27:03 -0500163 m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0);
164 m_fib.setStrategy(broadcastKeyPrefix, strategy, 0);
165 m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0);
akmhoque157b0a42014-05-13 00:26:37 -0500166}
167
168void
akmhoque0494c252014-07-23 23:46:44 -0500169Nlsr::daemonize()
170{
171 pid_t process_id = 0;
172 pid_t sid = 0;
173 process_id = fork();
174 if (process_id < 0){
175 std::cerr << "Daemonization failed!" << std::endl;
dmcoomes9f936662017-03-02 10:33:09 -0600176 BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- fork failed!"));
akmhoque0494c252014-07-23 23:46:44 -0500177 }
178 if (process_id > 0) {
179 _LOG_DEBUG("Process daemonized. Process id: " << process_id);
180 exit(0);
181 }
182
183 umask(0);
184 sid = setsid();
185 if(sid < 0) {
dmcoomes9f936662017-03-02 10:33:09 -0600186 BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- setting id failed!"));
akmhoque0494c252014-07-23 23:46:44 -0500187 }
188
189 if (chdir("/") < 0) {
dmcoomes9f936662017-03-02 10:33:09 -0600190 BOOST_THROW_EXCEPTION(Error("Error: Daemonization process-chdir failed!"));
akmhoque0494c252014-07-23 23:46:44 -0500191 }
192}
193
194void
Nick Gordon9461afb2017-04-25 15:54:50 -0500195Nlsr::canonizeContinuation(std::list<Adjacent>::iterator iterator)
196{
197 canonizeNeighborUris(iterator, [this] (std::list<Adjacent>::iterator iterator) {
198 canonizeContinuation(iterator);
199 });
200}
201
202void
203Nlsr::canonizeNeighborUris(std::list<Adjacent>::iterator currentNeighbor,
204 std::function<void(std::list<Adjacent>::iterator)> then)
205{
206 if (currentNeighbor != m_adjacencyList.getAdjList().end()) {
Nick Gordone9733ed2017-04-26 10:48:39 -0500207 ndn::util::FaceUri uri(currentNeighbor->getFaceUri());
Nick Gordon9461afb2017-04-25 15:54:50 -0500208 uri.canonize([this, then, currentNeighbor] (ndn::util::FaceUri canonicalUri) {
Nick Gordone9733ed2017-04-26 10:48:39 -0500209 _LOG_DEBUG("Canonized URI: " << currentNeighbor->getFaceUri()
Nick Gordon9461afb2017-04-25 15:54:50 -0500210 << " to: " << canonicalUri);
Nick Gordone9733ed2017-04-26 10:48:39 -0500211 currentNeighbor->setFaceUri(canonicalUri);
Nick Gordon9461afb2017-04-25 15:54:50 -0500212 then(std::next(currentNeighbor));
213 },
214 [this, then, currentNeighbor] (const std::string& reason) {
Nick Gordone9733ed2017-04-26 10:48:39 -0500215 _LOG_ERROR("Could not canonize URI: " << currentNeighbor->getFaceUri()
Nick Gordon9461afb2017-04-25 15:54:50 -0500216 << " because: " << reason);
217 then(std::next(currentNeighbor));
218 },
219 m_nlsrFace.getIoService(),
220 TIME_ALLOWED_FOR_CANONIZATION);
221 }
222 // We have finished canonizing all neighbors, so initialize NLSR.
223 else {
224 initialize();
225 }
226}
227
228void
akmhoque53353462014-04-22 08:43:45 -0500229Nlsr::initialize()
230{
akmhoque674b0b12014-05-20 14:33:28 -0500231 _LOG_DEBUG("Initializing Nlsr");
akmhoque53353462014-04-22 08:43:45 -0500232 m_confParam.buildRouterPrefix();
Muktadir R Chowdhury3ac07282016-06-17 16:30:29 -0500233 m_lsdbDatasetHandler.setRouterNameCommandPrefix(m_confParam.getRouterPrefix());
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700234 m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime()));
akmhoque31d1d4b2014-05-05 22:08:14 -0500235 m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri());
akmhoque53353462014-04-22 08:43:45 -0500236 m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600237
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500238 m_nlsrLsdb.getSequencingManager().setSeqFileDirectory(m_confParam.getSeqFileDir());
239 m_nlsrLsdb.getSequencingManager().initiateSeqNoFromFile(m_confParam.getHyperbolicState());
240
241 m_nlsrLsdb.getSyncLogicHandler().createSyncSocket(m_confParam.getChronosyncPrefix());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600242
dmcoomes9f936662017-03-02 10:33:09 -0600243 // Logging start
akmhoque674b0b12014-05-20 14:33:28 -0500244 m_confParam.writeLog();
245 m_adjacencyList.writeLog();
Nick Gordon494de402017-06-14 12:48:51 -0500246 _LOG_DEBUG(m_namePrefixList);
dmcoomes9f936662017-03-02 10:33:09 -0600247 // Logging end
akmhoque443ad812014-07-29 10:26:56 -0500248 initializeKey();
akmhoquec04e7272014-07-02 11:00:14 -0500249 setStrategies();
Joao Pereira97473d42015-07-03 16:57:27 -0400250 _LOG_DEBUG("Default NLSR identity: " << m_signingInfo.getSignerName());
akmhoque31d1d4b2014-05-05 22:08:14 -0500251 setInfoInterestFilter();
252 setLsaInterestFilter();
Vince Lehman50df6b72015-03-03 12:06:40 -0600253
Nick Gordond5c1a372016-10-31 13:56:23 -0500254 initializeFaces(std::bind(&Nlsr::processFaceDataset, this, _1),
255 std::bind(&Nlsr::onFaceDatasetFetchTimeout, this, _1, _2, 0));
256
Vince Lehman50df6b72015-03-03 12:06:40 -0600257 // Set event intervals
258 setFirstHelloInterval(m_confParam.getFirstHelloInterval());
259 m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval());
260 m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval());
261
akmhoque674b0b12014-05-20 14:33:28 -0500262 m_nlsrLsdb.buildAndInstallOwnNameLsa();
Nick Gordon5c467f02016-07-13 13:40:10 -0500263
264 // Install coordinate LSAs if using HR or dry-run HR.
265 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
266 m_nlsrLsdb.buildAndInstallOwnCoordinateLsa();
267 }
Vince Lehman904c2412014-09-23 19:36:11 -0500268
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700269 registerKeyPrefix();
alvy297f4162015-03-03 17:15:33 -0600270 registerLocalhostPrefix();
Vince Lehman7b616582014-10-17 16:25:39 -0500271
Vince Lehman7b616582014-10-17 16:25:39 -0500272 m_helloProtocol.scheduleInterest(m_firstHelloInterval);
Vince Lehman09131122014-09-09 17:10:11 -0500273
274 // Need to set direct neighbors' costs to 0 for hyperbolic routing
275 if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
276
277 std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList();
278
279 for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) {
280 it->setLinkCost(0);
281 }
282 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700283}
284
285void
akmhoque443ad812014-07-29 10:26:56 -0500286Nlsr::initializeKey()
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700287{
Joao Pereira97473d42015-07-03 16:57:27 -0400288 ndn::Name defaultIdentity = m_confParam.getRouterPrefix();
289 defaultIdentity.append("NLSR");
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700290
Joao Pereira97473d42015-07-03 16:57:27 -0400291 try {
292 m_keyChain.deleteIdentity(defaultIdentity);
akmhoque102aea42014-08-04 10:22:12 -0500293 }
dmcoomes9f936662017-03-02 10:33:09 -0600294 catch (const std::exception& e) {
akmhoque102aea42014-08-04 10:22:12 -0500295 }
Joao Pereira97473d42015-07-03 16:57:27 -0400296 m_signingInfo = ndn::security::SigningInfo(ndn::security::SigningInfo::SIGNER_TYPE_ID, defaultIdentity);
akmhoque443ad812014-07-29 10:26:56 -0500297
Joao Pereira97473d42015-07-03 16:57:27 -0400298 ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(defaultIdentity, true);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700299
dmcoomes9f936662017-03-02 10:33:09 -0600300 std::shared_ptr<ndn::IdentityCertificate> certificate =
301 std::make_shared<ndn::IdentityCertificate>();
302 std::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName);
Nick Gordone98480b2017-05-24 11:23:03 -0500303 ndn::Name certificateName = keyName.getPrefix(-1);
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700304 certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion();
305 certificate->setName(certificateName);
Nick Gordone98480b2017-05-24 11:23:03 -0500306 certificate->setNotBefore(ndn::time::system_clock::now() - ndn::time::days(1));
307 certificate->setNotAfter(ndn::time::system_clock::now() + ndn::time::days(7300)); // ~20 years
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700308 certificate->setPublicKeyInfo(*pubKey);
Nick Gordone98480b2017-05-24 11:23:03 -0500309 certificate->addSubjectDescription(ndn::CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME,
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700310 keyName.toUri()));
311 certificate->encode();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700312 m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix());
313
314 m_keyChain.addCertificateAsIdentityDefault(*certificate);
315 loadCertToPublish(certificate);
316
317 m_defaultCertName = certificate->getName();
318}
319
320void
321Nlsr::registerKeyPrefix()
322{
323 ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX;
324 keyPrefix.append("KEYS");
325 m_nlsrFace.setInterestFilter(keyPrefix,
Joao Pereira97473d42015-07-03 16:57:27 -0400326 std::bind(&Nlsr::onKeyInterest,
Yingdi Yu6a3a4dd2014-06-20 14:10:39 -0700327 this, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400328 std::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1),
329 std::bind(&Nlsr::registrationFailed, this, _1),
330 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500331 ndn::nfd::ROUTE_FLAG_CAPTURE);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700332
333}
334
335void
alvy297f4162015-03-03 17:15:33 -0600336Nlsr::registerLocalhostPrefix()
337{
alvy297f4162015-03-03 17:15:33 -0600338 m_nlsrFace.registerPrefix(LOCALHOST_PREFIX,
339 std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1),
340 std::bind(&Nlsr::registrationFailed, this, _1));
341}
342
343void
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700344Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest)
345{
346 const ndn::Name& interestName = interest.getName();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700347 ndn::Name certName = interestName.getSubName(name.size());
348
349 if (certName[-2].toUri() == "ID-CERT")
350 {
351 certName = certName.getPrefix(-1);
352 }
353 else if (certName[-1].toUri() != "ID-CERT")
dmcoomes9eaf3f42017-02-21 11:39:01 -0600354 {
355 _LOG_DEBUG("certName for interest " << interest << " is malformed,"
356 << " contains incorrect namespace syntax");
357 return;
358 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700359
dmcoomes9f936662017-03-02 10:33:09 -0600360 std::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700361
362 if (!static_cast<bool>(cert))
dmcoomes9eaf3f42017-02-21 11:39:01 -0600363 {
364 _LOG_DEBUG("cert is not found for " << interest);
365 return; // cert is not found
366 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700367
dmcoomes9f936662017-03-02 10:33:09 -0600368 std::shared_ptr<ndn::Data> data = std::make_shared<ndn::Data>();
akmhoque69c9aa92014-07-23 15:15:05 -0500369 data->setName(interestName);
370 data->setContent(cert->wireEncode());
371 m_keyChain.signWithSha256(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700372
akmhoque69c9aa92014-07-23 15:15:05 -0500373 m_nlsrFace.put(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700374}
375
376void
377Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name)
378{
akmhoque53353462014-04-22 08:43:45 -0500379}
akmhoque5a44dd42014-03-12 18:11:32 -0500380
akmhoque53353462014-04-22 08:43:45 -0500381void
akmhoquec04e7272014-07-02 11:00:14 -0500382Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification)
akmhoquee1765152014-06-30 11:32:01 -0500383{
Vince Lehman02e32992015-03-11 12:31:20 -0500384 _LOG_TRACE("Nlsr::onFaceEventNotification called");
Vince Lehman02e32992015-03-11 12:31:20 -0500385
Nick Gordond5c1a372016-10-31 13:56:23 -0500386 switch (faceEventNotification.getKind()) {
387 case ndn::nfd::FACE_EVENT_DESTROYED: {
388 uint64_t faceId = faceEventNotification.getFaceId();
Vince Lehman02e32992015-03-11 12:31:20 -0500389
Nick Gordond5c1a372016-10-31 13:56:23 -0500390 auto adjacent = m_adjacencyList.findAdjacent(faceId);
Vince Lehman02e32992015-03-11 12:31:20 -0500391
Nick Gordond5c1a372016-10-31 13:56:23 -0500392 if (adjacent != m_adjacencyList.end()) {
393 _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed");
Vince Lehman02e32992015-03-11 12:31:20 -0500394
Nick Gordond5c1a372016-10-31 13:56:23 -0500395 adjacent->setFaceId(0);
Vince Lehman02e32992015-03-11 12:31:20 -0500396
Nick Gordond5c1a372016-10-31 13:56:23 -0500397 // Only trigger an Adjacency LSA build if this node is changing
398 // from ACTIVE to INACTIVE since this rebuild will effectively
399 // cancel the previous Adjacency LSA refresh event and schedule
400 // a new one further in the future.
401 //
402 // Continuously scheduling the refresh in the future will block
403 // the router from refreshing its Adjacency LSA. Since other
404 // routers' Name prefixes' expiration times are updated when
405 // this router refreshes its Adjacency LSA, the other routers'
406 // prefixes will expire and be removed from the RIB.
407 //
408 // This check is required to fix Bug #2733 for now. This check
409 // would be unnecessary to fix Bug #2733 when Issue #2732 is
410 // completed, but the check also helps with optimization so it
411 // can remain even when Issue #2732 is implemented.
412 if (adjacent->getStatus() == Adjacent::STATUS_ACTIVE) {
413 adjacent->setStatus(Adjacent::STATUS_INACTIVE);
Vince Lehman02e32992015-03-11 12:31:20 -0500414
Nick Gordond5c1a372016-10-31 13:56:23 -0500415 // A new adjacency LSA cannot be built until the neighbor is marked INACTIVE and
416 // has met the HELLO retry threshold
417 adjacent->setInterestTimedOutNo(m_confParam.getInterestRetryNumber());
Vince Lehman199e9cf2015-04-07 13:22:16 -0500418
Nick Gordond5c1a372016-10-31 13:56:23 -0500419 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
420 getRoutingTable().scheduleRoutingTableCalculation(*this);
421 }
422 else {
423 m_nlsrLsdb.scheduleAdjLsaBuild();
424 }
Nick Gordone8e03ac2016-07-07 14:24:38 -0500425 }
Vince Lehman199e9cf2015-04-07 13:22:16 -0500426 }
Nick Gordond5c1a372016-10-31 13:56:23 -0500427 break;
akmhoquec04e7272014-07-02 11:00:14 -0500428 }
Nick Gordond5c1a372016-10-31 13:56:23 -0500429 case ndn::nfd::FACE_EVENT_CREATED: {
430 // Find the neighbor in our adjacency list
Nick Gordond5c1a372016-10-31 13:56:23 -0500431 auto adjacent = m_adjacencyList.findAdjacent(
432 ndn::util::FaceUri(faceEventNotification.getRemoteUri()));
433 // If we have a neighbor by that FaceUri and it has no FaceId, we
434 // have a match.
435 if (adjacent != m_adjacencyList.end()) {
436 _LOG_DEBUG("Face creation event matches neighbor: " << adjacent->getName()
437 << ". New Face ID: " << faceEventNotification.getFaceId()
438 << ". Registering prefixes.");
439 adjacent->setFaceId(faceEventNotification.getFaceId());
440
441 registerAdjacencyPrefixes(*adjacent, ndn::time::milliseconds::max());
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500442
443 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
444 getRoutingTable().scheduleRoutingTableCalculation(*this);
445 }
446 else {
447 m_nlsrLsdb.scheduleAdjLsaBuild();
448 }
Nick Gordond5c1a372016-10-31 13:56:23 -0500449 }
450 break;
451 }
452 default:
453 break;
akmhoquec04e7272014-07-02 11:00:14 -0500454 }
akmhoquee1765152014-06-30 11:32:01 -0500455}
456
Nick Gordond5c1a372016-10-31 13:56:23 -0500457void
458Nlsr::initializeFaces(const FetchDatasetCallback& onFetchSuccess,
459 const FetchDatasetTimeoutCallback& onFetchFailure)
460{
461 _LOG_TRACE("Initializing Faces...");
462
463 m_faceDatasetController.fetch<ndn::nfd::FaceDataset>(onFetchSuccess, onFetchFailure);
464
465}
466
467void
468Nlsr::processFaceDataset(const std::vector<ndn::nfd::FaceStatus>& faces)
469{
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500470 _LOG_DEBUG("Processing face dataset");
Nick Gordond5c1a372016-10-31 13:56:23 -0500471
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500472 // Iterate over each neighbor listed in nlsr.conf
473 for (auto& adjacent : m_adjacencyList.getAdjList()) {
474
475 const std::string faceUriString = adjacent.getFaceUri().toString();
Nick Gordond5c1a372016-10-31 13:56:23 -0500476 // Check the list of FaceStatus objects we got for a match
477 for (const ndn::nfd::FaceStatus& faceStatus : faces) {
Nick Gordond5c1a372016-10-31 13:56:23 -0500478 // Set the adjacency FaceID if we find a URI match and it was
479 // previously unset. Change the boolean to true.
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500480 if (adjacent.getFaceId() == 0 && faceUriString == faceStatus.getRemoteUri()) {
481 _LOG_DEBUG("FaceUri: " << faceStatus.getRemoteUri() <<
482 " FaceId: "<< faceStatus.getFaceId());
483 adjacent.setFaceId(faceStatus.getFaceId());
Nick Gordond5c1a372016-10-31 13:56:23 -0500484 // Register the prefixes for each neighbor
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500485 this->registerAdjacencyPrefixes(adjacent, ndn::time::milliseconds::max());
Nick Gordond5c1a372016-10-31 13:56:23 -0500486 }
487 }
488 // If this adjacency has no information in this dataset, then one
489 // of two things is happening: 1. NFD is starting slowly and this
490 // Face wasn't ready yet, or 2. NFD is configured
491 // incorrectly and this Face isn't available.
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500492 if (adjacent.getFaceId() == 0) {
493 _LOG_WARN("The adjacency " << adjacent.getName() <<
Nick Gordond5c1a372016-10-31 13:56:23 -0500494 " has no Face information in this dataset.");
495 }
496 }
497
Nick Gordond5c1a372016-10-31 13:56:23 -0500498 scheduleDatasetFetch();
499}
500
501void
502Nlsr::registerAdjacencyPrefixes(const Adjacent& adj,
503 const ndn::time::milliseconds& timeout)
504{
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500505 ndn::util::FaceUri faceUri = adj.getFaceUri();
506 double linkCost = adj.getLinkCost();
Nick Gordond5c1a372016-10-31 13:56:23 -0500507
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500508 m_fib.registerPrefix(adj.getName(), faceUri, linkCost,
509 timeout, ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
Nick Gordond5c1a372016-10-31 13:56:23 -0500510
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500511 m_fib.registerPrefix(m_confParam.getChronosyncPrefix(),
512 faceUri, linkCost, timeout,
513 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
Nick Gordond5c1a372016-10-31 13:56:23 -0500514
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500515 m_fib.registerPrefix(m_confParam.getLsaPrefix(),
516 faceUri, linkCost, timeout,
517 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
Nick Gordond5c1a372016-10-31 13:56:23 -0500518
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500519 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
520 broadcastKeyPrefix.append("KEYS");
521 m_fib.registerPrefix(broadcastKeyPrefix,
522 faceUri, linkCost, timeout,
523 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
Nick Gordond5c1a372016-10-31 13:56:23 -0500524}
525
526void
527Nlsr::onFaceDatasetFetchTimeout(uint32_t code,
528 const std::string& msg,
529 uint32_t nRetriesSoFar)
530{
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500531 _LOG_DEBUG("onFaceDatasetFetchTimeout");
Nick Gordond5c1a372016-10-31 13:56:23 -0500532 // If we have exceeded the maximum attempt count, do not try again.
533 if (nRetriesSoFar++ < m_confParam.getFaceDatasetFetchTries()) {
534 _LOG_DEBUG("Failed to fetch dataset: " << msg << ". Attempting retry #" << nRetriesSoFar);
535 m_faceDatasetController.fetch<ndn::nfd::FaceDataset>(std::bind(&Nlsr::processFaceDataset,
536 this, _1),
537 std::bind(&Nlsr::onFaceDatasetFetchTimeout,
538 this, _1, _2, nRetriesSoFar));
539 }
540 else {
541 _LOG_ERROR("Failed to fetch dataset: " << msg << ". Exceeded limit of " <<
542 m_confParam.getFaceDatasetFetchTries() << ", so not trying again this time.");
543 // If we fail to fetch it, just do nothing until the next
544 // interval. Since this is a backup mechanism, we aren't as
545 // concerned with retrying.
546 scheduleDatasetFetch();
547 }
548}
549
550void
551Nlsr::scheduleDatasetFetch()
552{
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500553 _LOG_DEBUG("Scheduling Dataset Fetch in " << m_confParam.getFaceDatasetFetchInterval()
554 << " seconds");
Nick Gordond5c1a372016-10-31 13:56:23 -0500555 m_scheduler.scheduleEvent(m_confParam.getFaceDatasetFetchInterval(),
556 [this] {
557 this->initializeFaces(
558 [this] (const std::vector<ndn::nfd::FaceStatus>& faces) {
559 this->processFaceDataset(faces);
560 },
561 [this] (uint32_t code, const std::string& msg) {
562 this->onFaceDatasetFetchTimeout(code, msg, 0);
563 });
564 });
565}
akmhoquee1765152014-06-30 11:32:01 -0500566
567void
akmhoque53353462014-04-22 08:43:45 -0500568Nlsr::startEventLoop()
569{
akmhoquefdbddb12014-05-02 18:35:19 -0500570 m_nlsrFace.processEvents();
akmhoque53353462014-04-22 08:43:45 -0500571}
akmhoque5a44dd42014-03-12 18:11:32 -0500572
akmhoqueb1710aa2014-02-19 17:13:36 -0600573} // namespace nlsr