blob: 2bcc157ec10bb409aa95f33cd867e6b9e397b5c0 [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
akmhoque298385a2014-02-13 14:13:09 -060032
akmhoque53353462014-04-22 08:43:45 -050033namespace nlsr {
34
akmhoque674b0b12014-05-20 14:33:28 -050035INIT_LOGGER("nlsr");
36
alvy297f4162015-03-03 17:15:33 -060037const ndn::Name Nlsr::LOCALHOST_PREFIX = ndn::Name("/localhost/nlsr");
38
akmhoque53353462014-04-22 08:43:45 -050039using namespace ndn;
40using namespace std;
41
Laqin Fana4cf4022017-01-03 18:57:35 +000042Nlsr::Nlsr(boost::asio::io_service& ioService, ndn::Scheduler& scheduler, ndn::Face& face, ndn::KeyChain& keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050043 : m_nlsrFace(face)
44 , m_scheduler(scheduler)
Laqin Fana4cf4022017-01-03 18:57:35 +000045 , m_keyChain(keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050046 , m_confParam()
47 , m_adjacencyList()
48 , m_namePrefixList()
49 , m_sequencingManager()
50 , m_isDaemonProcess(false)
51 , m_configFileName("nlsr.conf")
52 , m_nlsrLsdb(*this, scheduler, m_syncLogicHandler)
53 , 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)
60 , m_syncLogicHandler(m_nlsrFace, m_nlsrLsdb, m_confParam, m_sequencingManager)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050061 , m_lsdbDatasetHandler(m_nlsrLsdb,
62 m_nlsrFace,
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050063 m_keyChain)
Vince Lehmanf7eec4f2015-05-08 19:02:31 -050064 , m_helloProtocol(*this, scheduler)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050065 , m_certificateCache(new ndn::CertificateCacheTtl(ioService))
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050066 , m_validator(m_nlsrFace, DEFAULT_BROADCAST_PREFIX, m_certificateCache, m_certStore)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050067 , m_prefixUpdateProcessor(m_nlsrFace,
68 m_namePrefixList,
69 m_nlsrLsdb,
70 m_syncLogicHandler,
71 DEFAULT_BROADCAST_PREFIX,
72 m_keyChain,
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050073 m_certificateCache,
74 m_certStore)
Nick Gordond1f4f332017-01-20 13:40:57 -060075 , m_dispatcher(m_nlsrFace, m_keyChain, m_signingInfo)
Nick Gordon4d2c6c02017-01-20 13:18:46 -060076 , m_nfdRibCommandProcessor(m_dispatcher,
77 m_namePrefixList,
78 m_nlsrLsdb,
79 m_syncLogicHandler)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050080 , m_faceMonitor(m_nlsrFace)
81 , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT)
82{
dmcoomes9f936662017-03-02 10:33:09 -060083 m_faceMonitor.onNotification.connect(std::bind(&Nlsr::onFaceEventNotification, this, _1));
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050084 m_faceMonitor.start();
85}
86
akmhoque53353462014-04-22 08:43:45 -050087void
88Nlsr::registrationFailed(const ndn::Name& name)
akmhoque298385a2014-02-13 14:13:09 -060089{
dmcoomes9f936662017-03-02 10:33:09 -060090 std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << std::endl;
91 BOOST_THROW_EXCEPTION(Error("Error: Prefix registration failed"));
akmhoque53353462014-04-22 08:43:45 -050092}
akmhoque1fd8c1e2014-02-19 19:41:49 -060093
akmhoque157b0a42014-05-13 00:26:37 -050094void
95Nlsr::onRegistrationSuccess(const ndn::Name& name)
96{
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050097 _LOG_DEBUG("Successfully registered prefix: " << name);
98
Jiewen Tana0497d82015-02-02 21:59:18 -080099 if (name.equals(m_confParam.getRouterPrefix())) {
Vince Lehmand6bb3fa2015-04-24 14:21:39 -0500100 m_lsdbDatasetHandler.startListeningOnRouterPrefix();
Jiewen Tana0497d82015-02-02 21:59:18 -0800101 }
akmhoque157b0a42014-05-13 00:26:37 -0500102}
akmhoque1fd8c1e2014-02-19 19:41:49 -0600103
akmhoque53353462014-04-22 08:43:45 -0500104void
alvy297f4162015-03-03 17:15:33 -0600105Nlsr::onLocalhostRegistrationSuccess(const ndn::Name& name)
106{
107 _LOG_DEBUG("Successfully registered prefix: " << name);
108
109 m_prefixUpdateProcessor.startListening();
Vince Lehmand6bb3fa2015-04-24 14:21:39 -0500110 m_lsdbDatasetHandler.startListeningOnLocalhost();
Nick Gordon4d2c6c02017-01-20 13:18:46 -0600111 // Dispatcher prefix registrations
112 m_nfdRibCommandProcessor.startListening();
113 // All dispatcher-related sub-prefixes *must* be registered before
114 // the top-level prefixes are added.
115 try {
116 m_dispatcher.addTopPrefix(LOCALHOST_PREFIX, false, m_signingInfo);
117 }
118 catch (const std::exception& e) {
119 _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n");
120 }
alvy297f4162015-03-03 17:15:33 -0600121}
122
123void
akmhoque31d1d4b2014-05-05 22:08:14 -0500124Nlsr::setInfoInterestFilter()
akmhoque53353462014-04-22 08:43:45 -0500125{
akmhoque31d1d4b2014-05-05 22:08:14 -0500126 ndn::Name name(m_confParam.getRouterPrefix());
akmhoque674b0b12014-05-20 14:33:28 -0500127 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoquefdbddb12014-05-02 18:35:19 -0500128 getNlsrFace().setInterestFilter(name,
Joao Pereira97473d42015-07-03 16:57:27 -0400129 std::bind(&HelloProtocol::processInterest,
akmhoque31d1d4b2014-05-05 22:08:14 -0500130 &m_helloProtocol, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400131 std::bind(&Nlsr::onRegistrationSuccess, this, _1),
132 std::bind(&Nlsr::registrationFailed, this, _1),
133 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500134 ndn::nfd::ROUTE_FLAG_CAPTURE);
akmhoque31d1d4b2014-05-05 22:08:14 -0500135}
136
137void
138Nlsr::setLsaInterestFilter()
139{
akmhoque157b0a42014-05-13 00:26:37 -0500140 ndn::Name name = m_confParam.getLsaPrefix();
akmhoque50125a92014-06-30 08:54:17 -0500141 name.append(m_confParam.getSiteName());
142 name.append(m_confParam.getRouterName());
akmhoque674b0b12014-05-20 14:33:28 -0500143 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoque31d1d4b2014-05-05 22:08:14 -0500144 getNlsrFace().setInterestFilter(name,
Joao Pereira97473d42015-07-03 16:57:27 -0400145 std::bind(&Lsdb::processInterest,
akmhoque31d1d4b2014-05-05 22:08:14 -0500146 &m_nlsrLsdb, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400147 std::bind(&Nlsr::onRegistrationSuccess, this, _1),
148 std::bind(&Nlsr::registrationFailed, this, _1),
149 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500150 ndn::nfd::ROUTE_FLAG_CAPTURE);
akmhoque53353462014-04-22 08:43:45 -0500151}
152
153void
akmhoquec04e7272014-07-02 11:00:14 -0500154Nlsr::setStrategies()
akmhoque157b0a42014-05-13 00:26:37 -0500155{
Vince Lehman53c0e3e2015-09-14 14:33:20 -0500156 const std::string strategy("ndn:/localhost/nfd/strategy/multicast");
157
akmhoque3cb0cfc2014-06-24 10:32:24 -0500158 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
159 broadcastKeyPrefix.append("KEYS");
Vince Lehman53c0e3e2015-09-14 14:33:20 -0500160
akmhoque393d4ff2014-07-16 14:27:03 -0500161 m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0);
162 m_fib.setStrategy(broadcastKeyPrefix, strategy, 0);
163 m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0);
akmhoque157b0a42014-05-13 00:26:37 -0500164}
165
166void
akmhoque0494c252014-07-23 23:46:44 -0500167Nlsr::daemonize()
168{
169 pid_t process_id = 0;
170 pid_t sid = 0;
171 process_id = fork();
172 if (process_id < 0){
173 std::cerr << "Daemonization failed!" << std::endl;
dmcoomes9f936662017-03-02 10:33:09 -0600174 BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- fork failed!"));
akmhoque0494c252014-07-23 23:46:44 -0500175 }
176 if (process_id > 0) {
177 _LOG_DEBUG("Process daemonized. Process id: " << process_id);
178 exit(0);
179 }
180
181 umask(0);
182 sid = setsid();
183 if(sid < 0) {
dmcoomes9f936662017-03-02 10:33:09 -0600184 BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- setting id failed!"));
akmhoque0494c252014-07-23 23:46:44 -0500185 }
186
187 if (chdir("/") < 0) {
dmcoomes9f936662017-03-02 10:33:09 -0600188 BOOST_THROW_EXCEPTION(Error("Error: Daemonization process-chdir failed!"));
akmhoque0494c252014-07-23 23:46:44 -0500189 }
190}
191
192void
akmhoque53353462014-04-22 08:43:45 -0500193Nlsr::initialize()
194{
akmhoque674b0b12014-05-20 14:33:28 -0500195 _LOG_DEBUG("Initializing Nlsr");
akmhoque53353462014-04-22 08:43:45 -0500196 m_confParam.buildRouterPrefix();
Muktadir R Chowdhury3ac07282016-06-17 16:30:29 -0500197 m_lsdbDatasetHandler.setRouterNameCommandPrefix(m_confParam.getRouterPrefix());
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700198 m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime()));
akmhoque31d1d4b2014-05-05 22:08:14 -0500199 m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri());
akmhoque53353462014-04-22 08:43:45 -0500200 m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime());
akmhoquec8a10f72014-04-25 18:42:55 -0500201 m_sequencingManager.setSeqFileName(m_confParam.getSeqFileDir());
Nick Gordon5c467f02016-07-13 13:40:10 -0500202 m_sequencingManager.initiateSeqNoFromFile(m_confParam.getHyperbolicState());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600203
Vince Lehman9d097802015-03-16 17:55:59 -0500204 m_syncLogicHandler.createSyncSocket(m_confParam.getChronosyncPrefix());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600205
dmcoomes9f936662017-03-02 10:33:09 -0600206 // Logging start
akmhoque674b0b12014-05-20 14:33:28 -0500207 m_confParam.writeLog();
208 m_adjacencyList.writeLog();
209 m_namePrefixList.writeLog();
dmcoomes9f936662017-03-02 10:33:09 -0600210 // Logging end
akmhoque443ad812014-07-29 10:26:56 -0500211 initializeKey();
akmhoquec04e7272014-07-02 11:00:14 -0500212 setStrategies();
Joao Pereira97473d42015-07-03 16:57:27 -0400213 _LOG_DEBUG("Default NLSR identity: " << m_signingInfo.getSignerName());
akmhoque31d1d4b2014-05-05 22:08:14 -0500214 setInfoInterestFilter();
215 setLsaInterestFilter();
Vince Lehman50df6b72015-03-03 12:06:40 -0600216
217 // Set event intervals
218 setFirstHelloInterval(m_confParam.getFirstHelloInterval());
219 m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval());
220 m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval());
221
akmhoque674b0b12014-05-20 14:33:28 -0500222 m_nlsrLsdb.buildAndInstallOwnNameLsa();
Nick Gordon5c467f02016-07-13 13:40:10 -0500223
224 // Install coordinate LSAs if using HR or dry-run HR.
225 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
226 m_nlsrLsdb.buildAndInstallOwnCoordinateLsa();
227 }
Vince Lehman904c2412014-09-23 19:36:11 -0500228
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700229 registerKeyPrefix();
alvy297f4162015-03-03 17:15:33 -0600230 registerLocalhostPrefix();
Vince Lehman7b616582014-10-17 16:25:39 -0500231
Vince Lehman7b616582014-10-17 16:25:39 -0500232 m_helloProtocol.scheduleInterest(m_firstHelloInterval);
Vince Lehman09131122014-09-09 17:10:11 -0500233
234 // Need to set direct neighbors' costs to 0 for hyperbolic routing
235 if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
236
237 std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList();
238
239 for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) {
240 it->setLinkCost(0);
241 }
242 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700243}
244
245void
akmhoque443ad812014-07-29 10:26:56 -0500246Nlsr::initializeKey()
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700247{
Joao Pereira97473d42015-07-03 16:57:27 -0400248 ndn::Name defaultIdentity = m_confParam.getRouterPrefix();
249 defaultIdentity.append("NLSR");
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700250
Joao Pereira97473d42015-07-03 16:57:27 -0400251 try {
252 m_keyChain.deleteIdentity(defaultIdentity);
akmhoque102aea42014-08-04 10:22:12 -0500253 }
dmcoomes9f936662017-03-02 10:33:09 -0600254 catch (const std::exception& e) {
akmhoque102aea42014-08-04 10:22:12 -0500255 }
Joao Pereira97473d42015-07-03 16:57:27 -0400256 m_signingInfo = ndn::security::SigningInfo(ndn::security::SigningInfo::SIGNER_TYPE_ID, defaultIdentity);
akmhoque443ad812014-07-29 10:26:56 -0500257
Joao Pereira97473d42015-07-03 16:57:27 -0400258 ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(defaultIdentity, true);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700259
dmcoomes9f936662017-03-02 10:33:09 -0600260 std::shared_ptr<ndn::IdentityCertificate> certificate =
261 std::make_shared<ndn::IdentityCertificate>();
262 std::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName);
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700263 Name certificateName = keyName.getPrefix(-1);
264 certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion();
265 certificate->setName(certificateName);
266 certificate->setNotBefore(time::system_clock::now() - time::days(1));
267 certificate->setNotAfter(time::system_clock::now() + time::days(7300)); // ~20 years
268 certificate->setPublicKeyInfo(*pubKey);
269 certificate->addSubjectDescription(CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME,
270 keyName.toUri()));
271 certificate->encode();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700272 m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix());
273
274 m_keyChain.addCertificateAsIdentityDefault(*certificate);
275 loadCertToPublish(certificate);
276
277 m_defaultCertName = certificate->getName();
278}
279
280void
281Nlsr::registerKeyPrefix()
282{
283 ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX;
284 keyPrefix.append("KEYS");
285 m_nlsrFace.setInterestFilter(keyPrefix,
Joao Pereira97473d42015-07-03 16:57:27 -0400286 std::bind(&Nlsr::onKeyInterest,
Yingdi Yu6a3a4dd2014-06-20 14:10:39 -0700287 this, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400288 std::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1),
289 std::bind(&Nlsr::registrationFailed, this, _1),
290 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500291 ndn::nfd::ROUTE_FLAG_CAPTURE);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700292
293}
294
295void
alvy297f4162015-03-03 17:15:33 -0600296Nlsr::registerLocalhostPrefix()
297{
alvy297f4162015-03-03 17:15:33 -0600298 m_nlsrFace.registerPrefix(LOCALHOST_PREFIX,
299 std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1),
300 std::bind(&Nlsr::registrationFailed, this, _1));
301}
302
303void
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700304Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest)
305{
306 const ndn::Name& interestName = interest.getName();
307
308 ndn::Name certName = interestName.getSubName(name.size());
309
310 if (certName[-2].toUri() == "ID-CERT")
311 {
312 certName = certName.getPrefix(-1);
313 }
314 else if (certName[-1].toUri() != "ID-CERT")
dmcoomes9eaf3f42017-02-21 11:39:01 -0600315 {
316 _LOG_DEBUG("certName for interest " << interest << " is malformed,"
317 << " contains incorrect namespace syntax");
318 return;
319 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700320
dmcoomes9f936662017-03-02 10:33:09 -0600321 std::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700322
323 if (!static_cast<bool>(cert))
dmcoomes9eaf3f42017-02-21 11:39:01 -0600324 {
325 _LOG_DEBUG("cert is not found for " << interest);
326 return; // cert is not found
327 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700328
dmcoomes9f936662017-03-02 10:33:09 -0600329 std::shared_ptr<ndn::Data> data = std::make_shared<ndn::Data>();
akmhoque69c9aa92014-07-23 15:15:05 -0500330 data->setName(interestName);
331 data->setContent(cert->wireEncode());
332 m_keyChain.signWithSha256(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700333
akmhoque69c9aa92014-07-23 15:15:05 -0500334 m_nlsrFace.put(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700335}
336
337void
338Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name)
339{
akmhoque53353462014-04-22 08:43:45 -0500340}
akmhoque5a44dd42014-03-12 18:11:32 -0500341
akmhoque53353462014-04-22 08:43:45 -0500342void
akmhoquee1765152014-06-30 11:32:01 -0500343Nlsr::onDestroyFaceSuccess(const ndn::nfd::ControlParameters& commandSuccessResult)
344{
akmhoquee1765152014-06-30 11:32:01 -0500345}
346
347void
Junxiao Shi63bd0342016-08-17 16:57:14 +0000348Nlsr::onDestroyFaceFailure(const ndn::nfd::ControlResponse& response)
akmhoquee1765152014-06-30 11:32:01 -0500349{
Junxiao Shi63bd0342016-08-17 16:57:14 +0000350 std::cerr << response.getText() << " (code: " << response.getCode() << ")";
dmcoomes9f936662017-03-02 10:33:09 -0600351 BOOST_THROW_EXCEPTION(Error("Error: Face destruction failed"));
akmhoquee1765152014-06-30 11:32:01 -0500352}
353
354void
355Nlsr::destroyFaces()
356{
357 std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList();
358 for (std::list<Adjacent>::iterator it = adjacents.begin();
359 it != adjacents.end(); it++) {
akmhoquec04e7272014-07-02 11:00:14 -0500360 m_fib.destroyFace((*it).getConnectingFaceUri(),
Joao Pereira97473d42015-07-03 16:57:27 -0400361 std::bind(&Nlsr::onDestroyFaceSuccess, this, _1),
Junxiao Shi63bd0342016-08-17 16:57:14 +0000362 std::bind(&Nlsr::onDestroyFaceFailure, this, _1));
akmhoquee1765152014-06-30 11:32:01 -0500363 }
364}
365
akmhoquec04e7272014-07-02 11:00:14 -0500366
367
akmhoquee1765152014-06-30 11:32:01 -0500368
369void
akmhoquec04e7272014-07-02 11:00:14 -0500370Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification)
akmhoquee1765152014-06-30 11:32:01 -0500371{
Vince Lehman02e32992015-03-11 12:31:20 -0500372 _LOG_TRACE("Nlsr::onFaceEventNotification called");
akmhoquec04e7272014-07-02 11:00:14 -0500373 ndn::nfd::FaceEventKind kind = faceEventNotification.getKind();
Vince Lehman02e32992015-03-11 12:31:20 -0500374
akmhoquec04e7272014-07-02 11:00:14 -0500375 if (kind == ndn::nfd::FACE_EVENT_DESTROYED) {
376 uint64_t faceId = faceEventNotification.getFaceId();
Vince Lehman02e32992015-03-11 12:31:20 -0500377
Nick Gordonc780a692017-04-27 18:03:02 -0500378 auto adjacent = m_adjacencyList.findAdjacent(faceId);
Vince Lehman02e32992015-03-11 12:31:20 -0500379
Nick Gordonc780a692017-04-27 18:03:02 -0500380 if (adjacent != m_adjacencyList.end()) {
Vince Lehman02e32992015-03-11 12:31:20 -0500381 _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed");
382
akmhoquec04e7272014-07-02 11:00:14 -0500383 adjacent->setFaceId(0);
Vince Lehman02e32992015-03-11 12:31:20 -0500384
Nick G97e34942016-07-11 14:46:27 -0500385 // Only trigger an Adjacency LSA build if this node is changing
386 // from ACTIVE to INACTIVE since this rebuild will effectively
387 // cancel the previous Adjacency LSA refresh event and schedule
388 // a new one further in the future.
Vince Lehman199e9cf2015-04-07 13:22:16 -0500389 //
Nick G97e34942016-07-11 14:46:27 -0500390 // Continuously scheduling the refresh in the future will block
391 // the router from refreshing its Adjacency LSA. Since other
392 // routers' Name prefixes' expiration times are updated when
393 // this router refreshes its Adjacency LSA, the other routers'
394 // prefixes will expire and be removed from the RIB.
Vince Lehman199e9cf2015-04-07 13:22:16 -0500395 //
Nick G97e34942016-07-11 14:46:27 -0500396 // This check is required to fix Bug #2733 for now. This check
397 // would be unnecessary to fix Bug #2733 when Issue #2732 is
398 // completed, but the check also helps with optimization so it
399 // can remain even when Issue #2732 is implemented.
Vince Lehman199e9cf2015-04-07 13:22:16 -0500400 if (adjacent->getStatus() == Adjacent::STATUS_ACTIVE) {
401 adjacent->setStatus(Adjacent::STATUS_INACTIVE);
Vince Lehman02e32992015-03-11 12:31:20 -0500402
Vince Lehman199e9cf2015-04-07 13:22:16 -0500403 // A new adjacency LSA cannot be built until the neighbor is marked INACTIVE and
404 // has met the HELLO retry threshold
405 adjacent->setInterestTimedOutNo(m_confParam.getInterestRetryNumber());
406
Nick Gordone8e03ac2016-07-07 14:24:38 -0500407 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
408 getRoutingTable().scheduleRoutingTableCalculation(*this);
409 }
410 else {
411 m_nlsrLsdb.scheduleAdjLsaBuild();
412 }
Vince Lehman199e9cf2015-04-07 13:22:16 -0500413 }
akmhoquec04e7272014-07-02 11:00:14 -0500414 }
415 }
akmhoquee1765152014-06-30 11:32:01 -0500416}
417
418
419void
akmhoque53353462014-04-22 08:43:45 -0500420Nlsr::startEventLoop()
421{
akmhoquefdbddb12014-05-02 18:35:19 -0500422 m_nlsrFace.processEvents();
akmhoque53353462014-04-22 08:43:45 -0500423}
akmhoque5a44dd42014-03-12 18:11:32 -0500424
akmhoqueb1710aa2014-02-19 17:13:36 -0600425} // namespace nlsr