blob: fbd067b98198e96f03b525a75b195c467008a924 [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
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050042Nlsr::Nlsr(boost::asio::io_service& ioService, ndn::Scheduler& scheduler, ndn::Face& face)
43 : m_nlsrFace(face)
44 , m_scheduler(scheduler)
45 , m_confParam()
46 , m_adjacencyList()
47 , m_namePrefixList()
48 , m_sequencingManager()
49 , m_isDaemonProcess(false)
50 , m_configFileName("nlsr.conf")
51 , m_nlsrLsdb(*this, scheduler, m_syncLogicHandler)
52 , m_adjBuildCount(0)
53 , m_isBuildAdjLsaSheduled(false)
54 , m_isRouteCalculationScheduled(false)
55 , m_isRoutingTableCalculating(false)
56 , m_routingTable(scheduler)
57 , m_fib(m_nlsrFace, scheduler, m_adjacencyList, m_confParam, m_keyChain)
58 , m_namePrefixTable(*this)
59 , m_syncLogicHandler(m_nlsrFace, m_nlsrLsdb, m_confParam, m_sequencingManager)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050060 , m_lsdbDatasetHandler(m_nlsrLsdb,
61 m_nlsrFace,
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050062 m_keyChain)
Vince Lehmanf7eec4f2015-05-08 19:02:31 -050063 , m_helloProtocol(*this, scheduler)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050064 , m_certificateCache(new ndn::CertificateCacheTtl(ioService))
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050065 , m_validator(m_nlsrFace, DEFAULT_BROADCAST_PREFIX, m_certificateCache, m_certStore)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050066 , m_prefixUpdateProcessor(m_nlsrFace,
67 m_namePrefixList,
68 m_nlsrLsdb,
69 m_syncLogicHandler,
70 DEFAULT_BROADCAST_PREFIX,
71 m_keyChain,
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050072 m_certificateCache,
73 m_certStore)
Nick Gordond1f4f332017-01-20 13:40:57 -060074 , m_dispatcher(m_nlsrFace, m_keyChain, m_signingInfo)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050075 , m_faceMonitor(m_nlsrFace)
76 , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT)
77{
78 m_faceMonitor.onNotification.connect(bind(&Nlsr::onFaceEventNotification, this, _1));
79 m_faceMonitor.start();
80}
81
akmhoque53353462014-04-22 08:43:45 -050082void
83Nlsr::registrationFailed(const ndn::Name& name)
akmhoque298385a2014-02-13 14:13:09 -060084{
akmhoquefdbddb12014-05-02 18:35:19 -050085 std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << endl;
86 throw Error("Error: Prefix registration failed");
akmhoque53353462014-04-22 08:43:45 -050087}
akmhoque1fd8c1e2014-02-19 19:41:49 -060088
akmhoque157b0a42014-05-13 00:26:37 -050089void
90Nlsr::onRegistrationSuccess(const ndn::Name& name)
91{
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050092 _LOG_DEBUG("Successfully registered prefix: " << name);
93
Jiewen Tana0497d82015-02-02 21:59:18 -080094 if (name.equals(m_confParam.getRouterPrefix())) {
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050095 m_lsdbDatasetHandler.startListeningOnRouterPrefix();
Jiewen Tana0497d82015-02-02 21:59:18 -080096 }
akmhoque157b0a42014-05-13 00:26:37 -050097}
akmhoque1fd8c1e2014-02-19 19:41:49 -060098
akmhoque53353462014-04-22 08:43:45 -050099void
alvy297f4162015-03-03 17:15:33 -0600100Nlsr::onLocalhostRegistrationSuccess(const ndn::Name& name)
101{
102 _LOG_DEBUG("Successfully registered prefix: " << name);
103
104 m_prefixUpdateProcessor.startListening();
Vince Lehmand6bb3fa2015-04-24 14:21:39 -0500105 m_lsdbDatasetHandler.startListeningOnLocalhost();
alvy297f4162015-03-03 17:15:33 -0600106}
107
108void
akmhoque31d1d4b2014-05-05 22:08:14 -0500109Nlsr::setInfoInterestFilter()
akmhoque53353462014-04-22 08:43:45 -0500110{
akmhoque31d1d4b2014-05-05 22:08:14 -0500111 ndn::Name name(m_confParam.getRouterPrefix());
akmhoque674b0b12014-05-20 14:33:28 -0500112 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoquefdbddb12014-05-02 18:35:19 -0500113 getNlsrFace().setInterestFilter(name,
Joao Pereira97473d42015-07-03 16:57:27 -0400114 std::bind(&HelloProtocol::processInterest,
akmhoque31d1d4b2014-05-05 22:08:14 -0500115 &m_helloProtocol, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400116 std::bind(&Nlsr::onRegistrationSuccess, this, _1),
117 std::bind(&Nlsr::registrationFailed, this, _1),
118 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500119 ndn::nfd::ROUTE_FLAG_CAPTURE);
akmhoque31d1d4b2014-05-05 22:08:14 -0500120}
121
122void
123Nlsr::setLsaInterestFilter()
124{
akmhoque157b0a42014-05-13 00:26:37 -0500125 ndn::Name name = m_confParam.getLsaPrefix();
akmhoque50125a92014-06-30 08:54:17 -0500126 name.append(m_confParam.getSiteName());
127 name.append(m_confParam.getRouterName());
akmhoque674b0b12014-05-20 14:33:28 -0500128 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoque31d1d4b2014-05-05 22:08:14 -0500129 getNlsrFace().setInterestFilter(name,
Joao Pereira97473d42015-07-03 16:57:27 -0400130 std::bind(&Lsdb::processInterest,
akmhoque31d1d4b2014-05-05 22:08:14 -0500131 &m_nlsrLsdb, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400132 std::bind(&Nlsr::onRegistrationSuccess, this, _1),
133 std::bind(&Nlsr::registrationFailed, this, _1),
134 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500135 ndn::nfd::ROUTE_FLAG_CAPTURE);
akmhoque53353462014-04-22 08:43:45 -0500136}
137
138void
akmhoquec04e7272014-07-02 11:00:14 -0500139Nlsr::setStrategies()
akmhoque157b0a42014-05-13 00:26:37 -0500140{
Vince Lehman53c0e3e2015-09-14 14:33:20 -0500141 const std::string strategy("ndn:/localhost/nfd/strategy/multicast");
142
akmhoque3cb0cfc2014-06-24 10:32:24 -0500143 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
144 broadcastKeyPrefix.append("KEYS");
Vince Lehman53c0e3e2015-09-14 14:33:20 -0500145
akmhoque393d4ff2014-07-16 14:27:03 -0500146 m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0);
147 m_fib.setStrategy(broadcastKeyPrefix, strategy, 0);
148 m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0);
akmhoque157b0a42014-05-13 00:26:37 -0500149}
150
151void
akmhoque0494c252014-07-23 23:46:44 -0500152Nlsr::daemonize()
153{
154 pid_t process_id = 0;
155 pid_t sid = 0;
156 process_id = fork();
157 if (process_id < 0){
158 std::cerr << "Daemonization failed!" << std::endl;
159 throw Error("Error: Daemonization process- fork failed!");
160 }
161 if (process_id > 0) {
162 _LOG_DEBUG("Process daemonized. Process id: " << process_id);
163 exit(0);
164 }
165
166 umask(0);
167 sid = setsid();
168 if(sid < 0) {
169 throw Error("Error: Daemonization process- setting id failed!");
170 }
171
172 if (chdir("/") < 0) {
173 throw Error("Error: Daemonization process-chdir failed!");
174 }
175}
176
177void
akmhoque53353462014-04-22 08:43:45 -0500178Nlsr::initialize()
179{
akmhoque674b0b12014-05-20 14:33:28 -0500180 _LOG_DEBUG("Initializing Nlsr");
akmhoque53353462014-04-22 08:43:45 -0500181 m_confParam.buildRouterPrefix();
Muktadir R Chowdhury3ac07282016-06-17 16:30:29 -0500182 m_lsdbDatasetHandler.setRouterNameCommandPrefix(m_confParam.getRouterPrefix());
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700183 m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime()));
akmhoque31d1d4b2014-05-05 22:08:14 -0500184 m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri());
akmhoque53353462014-04-22 08:43:45 -0500185 m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime());
akmhoquec8a10f72014-04-25 18:42:55 -0500186 m_sequencingManager.setSeqFileName(m_confParam.getSeqFileDir());
Nick Gordon5c467f02016-07-13 13:40:10 -0500187 m_sequencingManager.initiateSeqNoFromFile(m_confParam.getHyperbolicState());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600188
Vince Lehman9d097802015-03-16 17:55:59 -0500189 m_syncLogicHandler.createSyncSocket(m_confParam.getChronosyncPrefix());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600190
akmhoque674b0b12014-05-20 14:33:28 -0500191 /* Logging start */
192 m_confParam.writeLog();
193 m_adjacencyList.writeLog();
194 m_namePrefixList.writeLog();
195 /* Logging end */
akmhoque443ad812014-07-29 10:26:56 -0500196 initializeKey();
akmhoquec04e7272014-07-02 11:00:14 -0500197 setStrategies();
Joao Pereira97473d42015-07-03 16:57:27 -0400198 _LOG_DEBUG("Default NLSR identity: " << m_signingInfo.getSignerName());
akmhoque31d1d4b2014-05-05 22:08:14 -0500199 setInfoInterestFilter();
200 setLsaInterestFilter();
Nick Gordond1f4f332017-01-20 13:40:57 -0600201 try {
202 m_dispatcher.addTopPrefix(LOCALHOST_PREFIX, true, m_signingInfo);
203 }
204 catch (const std::exception& e) {
205 _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n");
206 }
Vince Lehman50df6b72015-03-03 12:06:40 -0600207
208 // Set event intervals
209 setFirstHelloInterval(m_confParam.getFirstHelloInterval());
210 m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval());
211 m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval());
212
akmhoque674b0b12014-05-20 14:33:28 -0500213 m_nlsrLsdb.buildAndInstallOwnNameLsa();
Nick Gordon5c467f02016-07-13 13:40:10 -0500214
215 // Install coordinate LSAs if using HR or dry-run HR.
216 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
217 m_nlsrLsdb.buildAndInstallOwnCoordinateLsa();
218 }
Vince Lehman904c2412014-09-23 19:36:11 -0500219
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700220 registerKeyPrefix();
alvy297f4162015-03-03 17:15:33 -0600221 registerLocalhostPrefix();
Vince Lehman7b616582014-10-17 16:25:39 -0500222
Vince Lehman7b616582014-10-17 16:25:39 -0500223 m_helloProtocol.scheduleInterest(m_firstHelloInterval);
Vince Lehman09131122014-09-09 17:10:11 -0500224
225 // Need to set direct neighbors' costs to 0 for hyperbolic routing
226 if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
227
228 std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList();
229
230 for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) {
231 it->setLinkCost(0);
232 }
233 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700234}
235
236void
akmhoque443ad812014-07-29 10:26:56 -0500237Nlsr::initializeKey()
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700238{
Joao Pereira97473d42015-07-03 16:57:27 -0400239 ndn::Name defaultIdentity = m_confParam.getRouterPrefix();
240 defaultIdentity.append("NLSR");
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700241
Joao Pereira97473d42015-07-03 16:57:27 -0400242 try {
243 m_keyChain.deleteIdentity(defaultIdentity);
akmhoque102aea42014-08-04 10:22:12 -0500244 }
Joao Pereira97473d42015-07-03 16:57:27 -0400245 catch (std::exception& e) {
akmhoque102aea42014-08-04 10:22:12 -0500246 }
Joao Pereira97473d42015-07-03 16:57:27 -0400247 m_signingInfo = ndn::security::SigningInfo(ndn::security::SigningInfo::SIGNER_TYPE_ID, defaultIdentity);
akmhoque443ad812014-07-29 10:26:56 -0500248
Joao Pereira97473d42015-07-03 16:57:27 -0400249 ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(defaultIdentity, true);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700250
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700251 ndn::shared_ptr<ndn::IdentityCertificate> certificate =
252 ndn::make_shared<ndn::IdentityCertificate>();
253 ndn::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName);
254 Name certificateName = keyName.getPrefix(-1);
255 certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion();
256 certificate->setName(certificateName);
257 certificate->setNotBefore(time::system_clock::now() - time::days(1));
258 certificate->setNotAfter(time::system_clock::now() + time::days(7300)); // ~20 years
259 certificate->setPublicKeyInfo(*pubKey);
260 certificate->addSubjectDescription(CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME,
261 keyName.toUri()));
262 certificate->encode();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700263 m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix());
264
265 m_keyChain.addCertificateAsIdentityDefault(*certificate);
266 loadCertToPublish(certificate);
267
268 m_defaultCertName = certificate->getName();
269}
270
271void
272Nlsr::registerKeyPrefix()
273{
274 ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX;
275 keyPrefix.append("KEYS");
276 m_nlsrFace.setInterestFilter(keyPrefix,
Joao Pereira97473d42015-07-03 16:57:27 -0400277 std::bind(&Nlsr::onKeyInterest,
Yingdi Yu6a3a4dd2014-06-20 14:10:39 -0700278 this, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400279 std::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1),
280 std::bind(&Nlsr::registrationFailed, this, _1),
281 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500282 ndn::nfd::ROUTE_FLAG_CAPTURE);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700283
284}
285
286void
alvy297f4162015-03-03 17:15:33 -0600287Nlsr::registerLocalhostPrefix()
288{
289 _LOG_TRACE("Registering prefix: " << LOCALHOST_PREFIX);
290
291 m_nlsrFace.registerPrefix(LOCALHOST_PREFIX,
292 std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1),
293 std::bind(&Nlsr::registrationFailed, this, _1));
294}
295
296void
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700297Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest)
298{
299 const ndn::Name& interestName = interest.getName();
300
301 ndn::Name certName = interestName.getSubName(name.size());
302
303 if (certName[-2].toUri() == "ID-CERT")
304 {
305 certName = certName.getPrefix(-1);
306 }
307 else if (certName[-1].toUri() != "ID-CERT")
308 return; //Wrong key interest.
309
310 ndn::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName);
311
312 if (!static_cast<bool>(cert))
313 return; // cert is not found
314
akmhoque69c9aa92014-07-23 15:15:05 -0500315 ndn::shared_ptr<ndn::Data> data = ndn::make_shared<ndn::Data>();
316 data->setName(interestName);
317 data->setContent(cert->wireEncode());
318 m_keyChain.signWithSha256(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700319
akmhoque69c9aa92014-07-23 15:15:05 -0500320 m_nlsrFace.put(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700321}
322
323void
324Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name)
325{
akmhoque53353462014-04-22 08:43:45 -0500326}
akmhoque5a44dd42014-03-12 18:11:32 -0500327
akmhoque53353462014-04-22 08:43:45 -0500328void
akmhoquee1765152014-06-30 11:32:01 -0500329Nlsr::onDestroyFaceSuccess(const ndn::nfd::ControlParameters& commandSuccessResult)
330{
akmhoquee1765152014-06-30 11:32:01 -0500331}
332
333void
Junxiao Shi63bd0342016-08-17 16:57:14 +0000334Nlsr::onDestroyFaceFailure(const ndn::nfd::ControlResponse& response)
akmhoquee1765152014-06-30 11:32:01 -0500335{
Junxiao Shi63bd0342016-08-17 16:57:14 +0000336 std::cerr << response.getText() << " (code: " << response.getCode() << ")";
akmhoquee1765152014-06-30 11:32:01 -0500337 throw Error("Error: Face destruction failed");
338}
339
340void
341Nlsr::destroyFaces()
342{
343 std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList();
344 for (std::list<Adjacent>::iterator it = adjacents.begin();
345 it != adjacents.end(); it++) {
akmhoquec04e7272014-07-02 11:00:14 -0500346 m_fib.destroyFace((*it).getConnectingFaceUri(),
Joao Pereira97473d42015-07-03 16:57:27 -0400347 std::bind(&Nlsr::onDestroyFaceSuccess, this, _1),
Junxiao Shi63bd0342016-08-17 16:57:14 +0000348 std::bind(&Nlsr::onDestroyFaceFailure, this, _1));
akmhoquee1765152014-06-30 11:32:01 -0500349 }
350}
351
akmhoquec04e7272014-07-02 11:00:14 -0500352
353
akmhoquee1765152014-06-30 11:32:01 -0500354
355void
akmhoquec04e7272014-07-02 11:00:14 -0500356Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification)
akmhoquee1765152014-06-30 11:32:01 -0500357{
Vince Lehman02e32992015-03-11 12:31:20 -0500358 _LOG_TRACE("Nlsr::onFaceEventNotification called");
akmhoquec04e7272014-07-02 11:00:14 -0500359 ndn::nfd::FaceEventKind kind = faceEventNotification.getKind();
Vince Lehman02e32992015-03-11 12:31:20 -0500360
akmhoquec04e7272014-07-02 11:00:14 -0500361 if (kind == ndn::nfd::FACE_EVENT_DESTROYED) {
362 uint64_t faceId = faceEventNotification.getFaceId();
Vince Lehman02e32992015-03-11 12:31:20 -0500363
364 Adjacent* adjacent = m_adjacencyList.findAdjacent(faceId);
365
366 if (adjacent != nullptr) {
367 _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed");
368
akmhoquec04e7272014-07-02 11:00:14 -0500369 adjacent->setFaceId(0);
Vince Lehman02e32992015-03-11 12:31:20 -0500370
Nick G97e34942016-07-11 14:46:27 -0500371 // Only trigger an Adjacency LSA build if this node is changing
372 // from ACTIVE to INACTIVE since this rebuild will effectively
373 // cancel the previous Adjacency LSA refresh event and schedule
374 // a new one further in the future.
Vince Lehman199e9cf2015-04-07 13:22:16 -0500375 //
Nick G97e34942016-07-11 14:46:27 -0500376 // Continuously scheduling the refresh in the future will block
377 // the router from refreshing its Adjacency LSA. Since other
378 // routers' Name prefixes' expiration times are updated when
379 // this router refreshes its Adjacency LSA, the other routers'
380 // prefixes will expire and be removed from the RIB.
Vince Lehman199e9cf2015-04-07 13:22:16 -0500381 //
Nick G97e34942016-07-11 14:46:27 -0500382 // This check is required to fix Bug #2733 for now. This check
383 // would be unnecessary to fix Bug #2733 when Issue #2732 is
384 // completed, but the check also helps with optimization so it
385 // can remain even when Issue #2732 is implemented.
Vince Lehman199e9cf2015-04-07 13:22:16 -0500386 if (adjacent->getStatus() == Adjacent::STATUS_ACTIVE) {
387 adjacent->setStatus(Adjacent::STATUS_INACTIVE);
Vince Lehman02e32992015-03-11 12:31:20 -0500388
Vince Lehman199e9cf2015-04-07 13:22:16 -0500389 // A new adjacency LSA cannot be built until the neighbor is marked INACTIVE and
390 // has met the HELLO retry threshold
391 adjacent->setInterestTimedOutNo(m_confParam.getInterestRetryNumber());
392
Nick Gordone8e03ac2016-07-07 14:24:38 -0500393 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
394 getRoutingTable().scheduleRoutingTableCalculation(*this);
395 }
396 else {
397 m_nlsrLsdb.scheduleAdjLsaBuild();
398 }
Vince Lehman199e9cf2015-04-07 13:22:16 -0500399 }
akmhoquec04e7272014-07-02 11:00:14 -0500400 }
401 }
akmhoquee1765152014-06-30 11:32:01 -0500402}
403
404
405void
akmhoque53353462014-04-22 08:43:45 -0500406Nlsr::startEventLoop()
407{
akmhoquefdbddb12014-05-02 18:35:19 -0500408 m_nlsrFace.processEvents();
akmhoque53353462014-04-22 08:43:45 -0500409}
akmhoque5a44dd42014-03-12 18:11:32 -0500410
akmhoqueb1710aa2014-02-19 17:13:36 -0600411} // namespace nlsr