blob: da9de61ad31fe48b3c91717a2a4d8c2b121830b3 [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)
Nick Gordonb7b58392017-08-17 16:29:21 -050056 , m_namePrefixTable(*this, m_routingTable.afterRoutingChange)
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{
dmcoomes5bcb39e2017-10-31 15:07:55 -050092 NLSR_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{
dmcoomes5bcb39e2017-10-31 15:07:55 -050099 NLSR_LOG_DEBUG("Successfully registered prefix: " << name);
Vince Lehmand6bb3fa2015-04-24 14:21:39 -0500100
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) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500107 NLSR_LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n");
laqinfand22da512017-05-25 17:29:53 -0500108 }
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) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500121 NLSR_LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n");
Nick Gordon4d2c6c02017-01-20 13:18:46 -0600122 }
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());
dmcoomes5bcb39e2017-10-31 15:07:55 -0500129 NLSR_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());
dmcoomes5bcb39e2017-10-31 15:07:55 -0500145 NLSR_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) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500179 NLSR_LOG_DEBUG("Process daemonized. Process id: " << process_id);
akmhoque0494c252014-07-23 23:46:44 -0500180 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 Gordon922714a2017-06-13 14:12:02 -0500195Nlsr::canonizeContinuation(std::list<Adjacent>::iterator iterator,
196 std::function<void(void)> finally)
Nick Gordon9461afb2017-04-25 15:54:50 -0500197{
Nick Gordon922714a2017-06-13 14:12:02 -0500198 canonizeNeighborUris(iterator, [this, finally] (std::list<Adjacent>::iterator iterator) {
199 canonizeContinuation(iterator, finally);
200 },
201 finally);
Nick Gordon9461afb2017-04-25 15:54:50 -0500202}
203
204void
205Nlsr::canonizeNeighborUris(std::list<Adjacent>::iterator currentNeighbor,
Nick Gordon922714a2017-06-13 14:12:02 -0500206 std::function<void(std::list<Adjacent>::iterator)> then,
207 std::function<void(void)> finally)
Nick Gordon9461afb2017-04-25 15:54:50 -0500208{
209 if (currentNeighbor != m_adjacencyList.getAdjList().end()) {
Nick Gordone9733ed2017-04-26 10:48:39 -0500210 ndn::util::FaceUri uri(currentNeighbor->getFaceUri());
Nick Gordon9461afb2017-04-25 15:54:50 -0500211 uri.canonize([this, then, currentNeighbor] (ndn::util::FaceUri canonicalUri) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500212 NLSR_LOG_DEBUG("Canonized URI: " << currentNeighbor->getFaceUri()
Nick Gordon9461afb2017-04-25 15:54:50 -0500213 << " to: " << canonicalUri);
Nick Gordone9733ed2017-04-26 10:48:39 -0500214 currentNeighbor->setFaceUri(canonicalUri);
Nick Gordon9461afb2017-04-25 15:54:50 -0500215 then(std::next(currentNeighbor));
216 },
217 [this, then, currentNeighbor] (const std::string& reason) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500218 NLSR_LOG_ERROR("Could not canonize URI: " << currentNeighbor->getFaceUri()
Nick Gordon9461afb2017-04-25 15:54:50 -0500219 << " because: " << reason);
220 then(std::next(currentNeighbor));
221 },
222 m_nlsrFace.getIoService(),
223 TIME_ALLOWED_FOR_CANONIZATION);
224 }
Nick Gordon922714a2017-06-13 14:12:02 -0500225 // We have finished canonizing all neighbors, so call finally()
Nick Gordon9461afb2017-04-25 15:54:50 -0500226 else {
Nick Gordon922714a2017-06-13 14:12:02 -0500227 finally();
Nick Gordon9461afb2017-04-25 15:54:50 -0500228 }
229}
230
231void
akmhoque53353462014-04-22 08:43:45 -0500232Nlsr::initialize()
233{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500234 NLSR_LOG_DEBUG("Initializing Nlsr");
akmhoque53353462014-04-22 08:43:45 -0500235 m_confParam.buildRouterPrefix();
Muktadir R Chowdhury3ac07282016-06-17 16:30:29 -0500236 m_lsdbDatasetHandler.setRouterNameCommandPrefix(m_confParam.getRouterPrefix());
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700237 m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime()));
akmhoque31d1d4b2014-05-05 22:08:14 -0500238 m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri());
akmhoque53353462014-04-22 08:43:45 -0500239 m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600240
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500241 m_nlsrLsdb.getSequencingManager().setSeqFileDirectory(m_confParam.getSeqFileDir());
242 m_nlsrLsdb.getSequencingManager().initiateSeqNoFromFile(m_confParam.getHyperbolicState());
243
244 m_nlsrLsdb.getSyncLogicHandler().createSyncSocket(m_confParam.getChronosyncPrefix());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600245
dmcoomes9f936662017-03-02 10:33:09 -0600246 // Logging start
akmhoque674b0b12014-05-20 14:33:28 -0500247 m_confParam.writeLog();
248 m_adjacencyList.writeLog();
dmcoomes5bcb39e2017-10-31 15:07:55 -0500249 NLSR_LOG_DEBUG(m_namePrefixList);
dmcoomes9f936662017-03-02 10:33:09 -0600250 // Logging end
akmhoque443ad812014-07-29 10:26:56 -0500251 initializeKey();
akmhoquec04e7272014-07-02 11:00:14 -0500252 setStrategies();
dmcoomes5bcb39e2017-10-31 15:07:55 -0500253 NLSR_LOG_DEBUG("Default NLSR identity: " << m_signingInfo.getSignerName());
akmhoque31d1d4b2014-05-05 22:08:14 -0500254 setInfoInterestFilter();
255 setLsaInterestFilter();
Vince Lehman50df6b72015-03-03 12:06:40 -0600256
Nick Gordond5c1a372016-10-31 13:56:23 -0500257 initializeFaces(std::bind(&Nlsr::processFaceDataset, this, _1),
258 std::bind(&Nlsr::onFaceDatasetFetchTimeout, this, _1, _2, 0));
259
Vince Lehman50df6b72015-03-03 12:06:40 -0600260 // Set event intervals
261 setFirstHelloInterval(m_confParam.getFirstHelloInterval());
262 m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval());
263 m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval());
264
akmhoque674b0b12014-05-20 14:33:28 -0500265 m_nlsrLsdb.buildAndInstallOwnNameLsa();
Nick Gordon5c467f02016-07-13 13:40:10 -0500266
267 // Install coordinate LSAs if using HR or dry-run HR.
268 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
269 m_nlsrLsdb.buildAndInstallOwnCoordinateLsa();
270 }
Vince Lehman904c2412014-09-23 19:36:11 -0500271
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700272 registerKeyPrefix();
alvy297f4162015-03-03 17:15:33 -0600273 registerLocalhostPrefix();
Vince Lehman7b616582014-10-17 16:25:39 -0500274
Vince Lehman7b616582014-10-17 16:25:39 -0500275 m_helloProtocol.scheduleInterest(m_firstHelloInterval);
Vince Lehman09131122014-09-09 17:10:11 -0500276
277 // Need to set direct neighbors' costs to 0 for hyperbolic routing
278 if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
279
280 std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList();
281
282 for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) {
283 it->setLinkCost(0);
284 }
285 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700286}
287
288void
akmhoque443ad812014-07-29 10:26:56 -0500289Nlsr::initializeKey()
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700290{
Joao Pereira97473d42015-07-03 16:57:27 -0400291 ndn::Name defaultIdentity = m_confParam.getRouterPrefix();
292 defaultIdentity.append("NLSR");
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700293
Joao Pereira97473d42015-07-03 16:57:27 -0400294 try {
295 m_keyChain.deleteIdentity(defaultIdentity);
akmhoque102aea42014-08-04 10:22:12 -0500296 }
dmcoomes9f936662017-03-02 10:33:09 -0600297 catch (const std::exception& e) {
akmhoque102aea42014-08-04 10:22:12 -0500298 }
Joao Pereira97473d42015-07-03 16:57:27 -0400299 m_signingInfo = ndn::security::SigningInfo(ndn::security::SigningInfo::SIGNER_TYPE_ID, defaultIdentity);
akmhoque443ad812014-07-29 10:26:56 -0500300
Joao Pereira97473d42015-07-03 16:57:27 -0400301 ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(defaultIdentity, true);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700302
dmcoomes9f936662017-03-02 10:33:09 -0600303 std::shared_ptr<ndn::IdentityCertificate> certificate =
304 std::make_shared<ndn::IdentityCertificate>();
305 std::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName);
Nick Gordone98480b2017-05-24 11:23:03 -0500306 ndn::Name certificateName = keyName.getPrefix(-1);
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700307 certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion();
308 certificate->setName(certificateName);
Nick Gordone98480b2017-05-24 11:23:03 -0500309 certificate->setNotBefore(ndn::time::system_clock::now() - ndn::time::days(1));
310 certificate->setNotAfter(ndn::time::system_clock::now() + ndn::time::days(7300)); // ~20 years
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700311 certificate->setPublicKeyInfo(*pubKey);
Nick Gordone98480b2017-05-24 11:23:03 -0500312 certificate->addSubjectDescription(ndn::CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME,
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700313 keyName.toUri()));
314 certificate->encode();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700315 m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix());
316
317 m_keyChain.addCertificateAsIdentityDefault(*certificate);
318 loadCertToPublish(certificate);
319
320 m_defaultCertName = certificate->getName();
321}
322
323void
324Nlsr::registerKeyPrefix()
325{
326 ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX;
327 keyPrefix.append("KEYS");
328 m_nlsrFace.setInterestFilter(keyPrefix,
Joao Pereira97473d42015-07-03 16:57:27 -0400329 std::bind(&Nlsr::onKeyInterest,
Yingdi Yu6a3a4dd2014-06-20 14:10:39 -0700330 this, _1, _2),
Joao Pereira97473d42015-07-03 16:57:27 -0400331 std::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1),
332 std::bind(&Nlsr::registrationFailed, this, _1),
333 m_signingInfo,
akmhoque060d3022014-08-12 13:35:06 -0500334 ndn::nfd::ROUTE_FLAG_CAPTURE);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700335
336}
337
338void
alvy297f4162015-03-03 17:15:33 -0600339Nlsr::registerLocalhostPrefix()
340{
alvy297f4162015-03-03 17:15:33 -0600341 m_nlsrFace.registerPrefix(LOCALHOST_PREFIX,
342 std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1),
343 std::bind(&Nlsr::registrationFailed, this, _1));
344}
345
346void
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700347Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest)
348{
349 const ndn::Name& interestName = interest.getName();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700350 ndn::Name certName = interestName.getSubName(name.size());
351
352 if (certName[-2].toUri() == "ID-CERT")
353 {
354 certName = certName.getPrefix(-1);
355 }
356 else if (certName[-1].toUri() != "ID-CERT")
dmcoomes9eaf3f42017-02-21 11:39:01 -0600357 {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500358 NLSR_LOG_DEBUG("certName for interest " << interest << " is malformed,"
dmcoomes9eaf3f42017-02-21 11:39:01 -0600359 << " contains incorrect namespace syntax");
360 return;
361 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700362
dmcoomes9f936662017-03-02 10:33:09 -0600363 std::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700364
365 if (!static_cast<bool>(cert))
dmcoomes9eaf3f42017-02-21 11:39:01 -0600366 {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500367 NLSR_LOG_DEBUG("cert is not found for " << interest);
dmcoomes9eaf3f42017-02-21 11:39:01 -0600368 return; // cert is not found
369 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700370
dmcoomes9f936662017-03-02 10:33:09 -0600371 std::shared_ptr<ndn::Data> data = std::make_shared<ndn::Data>();
akmhoque69c9aa92014-07-23 15:15:05 -0500372 data->setName(interestName);
373 data->setContent(cert->wireEncode());
374 m_keyChain.signWithSha256(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700375
akmhoque69c9aa92014-07-23 15:15:05 -0500376 m_nlsrFace.put(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700377}
378
379void
380Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name)
381{
akmhoque53353462014-04-22 08:43:45 -0500382}
akmhoque5a44dd42014-03-12 18:11:32 -0500383
akmhoque53353462014-04-22 08:43:45 -0500384void
akmhoquec04e7272014-07-02 11:00:14 -0500385Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification)
akmhoquee1765152014-06-30 11:32:01 -0500386{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500387 NLSR_LOG_TRACE("Nlsr::onFaceEventNotification called");
Vince Lehman02e32992015-03-11 12:31:20 -0500388
Nick Gordond5c1a372016-10-31 13:56:23 -0500389 switch (faceEventNotification.getKind()) {
390 case ndn::nfd::FACE_EVENT_DESTROYED: {
391 uint64_t faceId = faceEventNotification.getFaceId();
Vince Lehman02e32992015-03-11 12:31:20 -0500392
Nick Gordond5c1a372016-10-31 13:56:23 -0500393 auto adjacent = m_adjacencyList.findAdjacent(faceId);
Vince Lehman02e32992015-03-11 12:31:20 -0500394
Nick Gordond5c1a372016-10-31 13:56:23 -0500395 if (adjacent != m_adjacencyList.end()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500396 NLSR_LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed");
Vince Lehman02e32992015-03-11 12:31:20 -0500397
Nick Gordond5c1a372016-10-31 13:56:23 -0500398 adjacent->setFaceId(0);
Vince Lehman02e32992015-03-11 12:31:20 -0500399
Nick Gordond5c1a372016-10-31 13:56:23 -0500400 // Only trigger an Adjacency LSA build if this node is changing
401 // from ACTIVE to INACTIVE since this rebuild will effectively
402 // cancel the previous Adjacency LSA refresh event and schedule
403 // a new one further in the future.
404 //
405 // Continuously scheduling the refresh in the future will block
406 // the router from refreshing its Adjacency LSA. Since other
407 // routers' Name prefixes' expiration times are updated when
408 // this router refreshes its Adjacency LSA, the other routers'
409 // prefixes will expire and be removed from the RIB.
410 //
411 // This check is required to fix Bug #2733 for now. This check
412 // would be unnecessary to fix Bug #2733 when Issue #2732 is
413 // completed, but the check also helps with optimization so it
414 // can remain even when Issue #2732 is implemented.
415 if (adjacent->getStatus() == Adjacent::STATUS_ACTIVE) {
416 adjacent->setStatus(Adjacent::STATUS_INACTIVE);
Vince Lehman02e32992015-03-11 12:31:20 -0500417
Nick Gordond5c1a372016-10-31 13:56:23 -0500418 // A new adjacency LSA cannot be built until the neighbor is marked INACTIVE and
419 // has met the HELLO retry threshold
420 adjacent->setInterestTimedOutNo(m_confParam.getInterestRetryNumber());
Vince Lehman199e9cf2015-04-07 13:22:16 -0500421
Nick Gordond5c1a372016-10-31 13:56:23 -0500422 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
423 getRoutingTable().scheduleRoutingTableCalculation(*this);
424 }
425 else {
426 m_nlsrLsdb.scheduleAdjLsaBuild();
427 }
Nick Gordone8e03ac2016-07-07 14:24:38 -0500428 }
Vince Lehman199e9cf2015-04-07 13:22:16 -0500429 }
Nick Gordond5c1a372016-10-31 13:56:23 -0500430 break;
akmhoquec04e7272014-07-02 11:00:14 -0500431 }
Nick Gordond5c1a372016-10-31 13:56:23 -0500432 case ndn::nfd::FACE_EVENT_CREATED: {
433 // Find the neighbor in our adjacency list
Nick Gordond5c1a372016-10-31 13:56:23 -0500434 auto adjacent = m_adjacencyList.findAdjacent(
435 ndn::util::FaceUri(faceEventNotification.getRemoteUri()));
436 // If we have a neighbor by that FaceUri and it has no FaceId, we
437 // have a match.
438 if (adjacent != m_adjacencyList.end()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500439 NLSR_LOG_DEBUG("Face creation event matches neighbor: " << adjacent->getName()
Nick Gordond5c1a372016-10-31 13:56:23 -0500440 << ". New Face ID: " << faceEventNotification.getFaceId()
441 << ". Registering prefixes.");
442 adjacent->setFaceId(faceEventNotification.getFaceId());
443
444 registerAdjacencyPrefixes(*adjacent, ndn::time::milliseconds::max());
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500445
446 if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) {
447 getRoutingTable().scheduleRoutingTableCalculation(*this);
448 }
449 else {
450 m_nlsrLsdb.scheduleAdjLsaBuild();
451 }
Nick Gordond5c1a372016-10-31 13:56:23 -0500452 }
453 break;
454 }
455 default:
456 break;
akmhoquec04e7272014-07-02 11:00:14 -0500457 }
akmhoquee1765152014-06-30 11:32:01 -0500458}
459
Nick Gordond5c1a372016-10-31 13:56:23 -0500460void
461Nlsr::initializeFaces(const FetchDatasetCallback& onFetchSuccess,
462 const FetchDatasetTimeoutCallback& onFetchFailure)
463{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500464 NLSR_LOG_TRACE("Initializing Faces...");
Nick Gordond5c1a372016-10-31 13:56:23 -0500465
466 m_faceDatasetController.fetch<ndn::nfd::FaceDataset>(onFetchSuccess, onFetchFailure);
467
468}
469
470void
471Nlsr::processFaceDataset(const std::vector<ndn::nfd::FaceStatus>& faces)
472{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500473 NLSR_LOG_DEBUG("Processing face dataset");
Nick Gordond5c1a372016-10-31 13:56:23 -0500474
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500475 // Iterate over each neighbor listed in nlsr.conf
476 for (auto& adjacent : m_adjacencyList.getAdjList()) {
477
478 const std::string faceUriString = adjacent.getFaceUri().toString();
Nick Gordond5c1a372016-10-31 13:56:23 -0500479 // Check the list of FaceStatus objects we got for a match
480 for (const ndn::nfd::FaceStatus& faceStatus : faces) {
Nick Gordond5c1a372016-10-31 13:56:23 -0500481 // Set the adjacency FaceID if we find a URI match and it was
482 // previously unset. Change the boolean to true.
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500483 if (adjacent.getFaceId() == 0 && faceUriString == faceStatus.getRemoteUri()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500484 NLSR_LOG_DEBUG("FaceUri: " << faceStatus.getRemoteUri() <<
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500485 " FaceId: "<< faceStatus.getFaceId());
486 adjacent.setFaceId(faceStatus.getFaceId());
Nick Gordond5c1a372016-10-31 13:56:23 -0500487 // Register the prefixes for each neighbor
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500488 this->registerAdjacencyPrefixes(adjacent, ndn::time::milliseconds::max());
Nick Gordond5c1a372016-10-31 13:56:23 -0500489 }
490 }
491 // If this adjacency has no information in this dataset, then one
492 // of two things is happening: 1. NFD is starting slowly and this
493 // Face wasn't ready yet, or 2. NFD is configured
494 // incorrectly and this Face isn't available.
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500495 if (adjacent.getFaceId() == 0) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500496 NLSR_LOG_WARN("The adjacency " << adjacent.getName() <<
Nick Gordond5c1a372016-10-31 13:56:23 -0500497 " has no Face information in this dataset.");
498 }
499 }
500
Nick Gordond5c1a372016-10-31 13:56:23 -0500501 scheduleDatasetFetch();
502}
503
504void
505Nlsr::registerAdjacencyPrefixes(const Adjacent& adj,
506 const ndn::time::milliseconds& timeout)
507{
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500508 ndn::util::FaceUri faceUri = adj.getFaceUri();
509 double linkCost = adj.getLinkCost();
Nick Gordond5c1a372016-10-31 13:56:23 -0500510
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500511 m_fib.registerPrefix(adj.getName(), faceUri, linkCost,
512 timeout, ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
Nick Gordond5c1a372016-10-31 13:56:23 -0500513
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500514 m_fib.registerPrefix(m_confParam.getChronosyncPrefix(),
515 faceUri, linkCost, timeout,
516 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
Nick Gordond5c1a372016-10-31 13:56:23 -0500517
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500518 m_fib.registerPrefix(m_confParam.getLsaPrefix(),
519 faceUri, linkCost, timeout,
520 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
Nick Gordond5c1a372016-10-31 13:56:23 -0500521
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500522 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
523 broadcastKeyPrefix.append("KEYS");
524 m_fib.registerPrefix(broadcastKeyPrefix,
525 faceUri, linkCost, timeout,
526 ndn::nfd::ROUTE_FLAG_CAPTURE, 0);
Nick Gordond5c1a372016-10-31 13:56:23 -0500527}
528
529void
530Nlsr::onFaceDatasetFetchTimeout(uint32_t code,
531 const std::string& msg,
532 uint32_t nRetriesSoFar)
533{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500534 NLSR_LOG_DEBUG("onFaceDatasetFetchTimeout");
Nick Gordond5c1a372016-10-31 13:56:23 -0500535 // If we have exceeded the maximum attempt count, do not try again.
536 if (nRetriesSoFar++ < m_confParam.getFaceDatasetFetchTries()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500537 NLSR_LOG_DEBUG("Failed to fetch dataset: " << msg << ". Attempting retry #" << nRetriesSoFar);
Nick Gordond5c1a372016-10-31 13:56:23 -0500538 m_faceDatasetController.fetch<ndn::nfd::FaceDataset>(std::bind(&Nlsr::processFaceDataset,
539 this, _1),
540 std::bind(&Nlsr::onFaceDatasetFetchTimeout,
541 this, _1, _2, nRetriesSoFar));
542 }
543 else {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500544 NLSR_LOG_ERROR("Failed to fetch dataset: " << msg << ". Exceeded limit of " <<
Nick Gordond5c1a372016-10-31 13:56:23 -0500545 m_confParam.getFaceDatasetFetchTries() << ", so not trying again this time.");
546 // If we fail to fetch it, just do nothing until the next
547 // interval. Since this is a backup mechanism, we aren't as
548 // concerned with retrying.
549 scheduleDatasetFetch();
550 }
551}
552
553void
554Nlsr::scheduleDatasetFetch()
555{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500556 NLSR_LOG_DEBUG("Scheduling Dataset Fetch in " << m_confParam.getFaceDatasetFetchInterval()
Ashlesh Gawande793e8702017-08-01 15:59:26 -0500557 << " seconds");
Nick Gordond5c1a372016-10-31 13:56:23 -0500558 m_scheduler.scheduleEvent(m_confParam.getFaceDatasetFetchInterval(),
559 [this] {
560 this->initializeFaces(
561 [this] (const std::vector<ndn::nfd::FaceStatus>& faces) {
562 this->processFaceDataset(faces);
563 },
564 [this] (uint32_t code, const std::string& msg) {
565 this->onFaceDatasetFetchTimeout(code, msg, 0);
566 });
567 });
568}
akmhoquee1765152014-06-30 11:32:01 -0500569
570void
akmhoque53353462014-04-22 08:43:45 -0500571Nlsr::startEventLoop()
572{
akmhoquefdbddb12014-05-02 18:35:19 -0500573 m_nlsrFace.processEvents();
akmhoque53353462014-04-22 08:43:45 -0500574}
akmhoque5a44dd42014-03-12 18:11:32 -0500575
akmhoqueb1710aa2014-02-19 17:13:36 -0600576} // namespace nlsr