blob: bbc9f88d92cf7462d520dc255be797a8089d56fe [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Vince Lehmanc2e51f62015-01-20 15:03:11 -06003 * Copyright (c) 2014-2015, The University of Memphis,
4 * 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)
60 , m_helloProtocol(*this, scheduler)
61 , m_lsdbDatasetHandler(m_nlsrLsdb,
62 m_nlsrFace,
63 m_confParam.getRouterPrefix(),
64 m_keyChain)
65 , 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)
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,
akmhoque31d1d4b2014-05-05 22:08:14 -0500114 ndn::bind(&HelloProtocol::processInterest,
115 &m_helloProtocol, _1, _2),
akmhoque157b0a42014-05-13 00:26:37 -0500116 ndn::bind(&Nlsr::onRegistrationSuccess, this, _1),
akmhoque060d3022014-08-12 13:35:06 -0500117 ndn::bind(&Nlsr::registrationFailed, this, _1),
118 m_defaultIdentity,
119 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,
130 ndn::bind(&Lsdb::processInterest,
131 &m_nlsrLsdb, _1, _2),
akmhoque157b0a42014-05-13 00:26:37 -0500132 ndn::bind(&Nlsr::onRegistrationSuccess, this, _1),
akmhoque060d3022014-08-12 13:35:06 -0500133 ndn::bind(&Nlsr::registrationFailed, this, _1),
134 m_defaultIdentity,
135 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{
141 std::string strategy("ndn:/localhost/nfd/strategy/broadcast");
akmhoque3cb0cfc2014-06-24 10:32:24 -0500142 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
143 broadcastKeyPrefix.append("KEYS");
akmhoque393d4ff2014-07-16 14:27:03 -0500144 m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0);
145 m_fib.setStrategy(broadcastKeyPrefix, strategy, 0);
146 m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0);
akmhoque157b0a42014-05-13 00:26:37 -0500147}
148
149void
akmhoque0494c252014-07-23 23:46:44 -0500150Nlsr::daemonize()
151{
152 pid_t process_id = 0;
153 pid_t sid = 0;
154 process_id = fork();
155 if (process_id < 0){
156 std::cerr << "Daemonization failed!" << std::endl;
157 throw Error("Error: Daemonization process- fork failed!");
158 }
159 if (process_id > 0) {
160 _LOG_DEBUG("Process daemonized. Process id: " << process_id);
161 exit(0);
162 }
163
164 umask(0);
165 sid = setsid();
166 if(sid < 0) {
167 throw Error("Error: Daemonization process- setting id failed!");
168 }
169
170 if (chdir("/") < 0) {
171 throw Error("Error: Daemonization process-chdir failed!");
172 }
173}
174
175void
akmhoque53353462014-04-22 08:43:45 -0500176Nlsr::initialize()
177{
akmhoque674b0b12014-05-20 14:33:28 -0500178 _LOG_DEBUG("Initializing Nlsr");
akmhoque53353462014-04-22 08:43:45 -0500179 m_confParam.buildRouterPrefix();
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700180 m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime()));
akmhoque31d1d4b2014-05-05 22:08:14 -0500181 m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri());
akmhoque53353462014-04-22 08:43:45 -0500182 m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime());
akmhoquec8a10f72014-04-25 18:42:55 -0500183 m_sequencingManager.setSeqFileName(m_confParam.getSeqFileDir());
184 m_sequencingManager.initiateSeqNoFromFile();
Vince Lehmanc11cc202015-01-20 11:41:33 -0600185
Vince Lehman9d097802015-03-16 17:55:59 -0500186 m_syncLogicHandler.createSyncSocket(m_confParam.getChronosyncPrefix());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600187
akmhoque674b0b12014-05-20 14:33:28 -0500188 /* Logging start */
189 m_confParam.writeLog();
190 m_adjacencyList.writeLog();
191 m_namePrefixList.writeLog();
192 /* Logging end */
akmhoque443ad812014-07-29 10:26:56 -0500193 initializeKey();
akmhoquec04e7272014-07-02 11:00:14 -0500194 setStrategies();
akmhoque060d3022014-08-12 13:35:06 -0500195 _LOG_DEBUG("Default NLSR identity: " << m_defaultIdentity);
akmhoque31d1d4b2014-05-05 22:08:14 -0500196 setInfoInterestFilter();
197 setLsaInterestFilter();
Vince Lehman50df6b72015-03-03 12:06:40 -0600198
199 // Set event intervals
200 setFirstHelloInterval(m_confParam.getFirstHelloInterval());
201 m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval());
202 m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval());
203
akmhoque674b0b12014-05-20 14:33:28 -0500204 m_nlsrLsdb.buildAndInstallOwnNameLsa();
205 m_nlsrLsdb.buildAndInstallOwnCoordinateLsa();
Vince Lehman904c2412014-09-23 19:36:11 -0500206
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700207 registerKeyPrefix();
alvy297f4162015-03-03 17:15:33 -0600208 registerLocalhostPrefix();
Vince Lehman7b616582014-10-17 16:25:39 -0500209
Vince Lehman7b616582014-10-17 16:25:39 -0500210 m_helloProtocol.scheduleInterest(m_firstHelloInterval);
Vince Lehman09131122014-09-09 17:10:11 -0500211
212 // Need to set direct neighbors' costs to 0 for hyperbolic routing
213 if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
214
215 std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList();
216
217 for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) {
218 it->setLinkCost(0);
219 }
220 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700221}
222
223void
akmhoque443ad812014-07-29 10:26:56 -0500224Nlsr::initializeKey()
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700225{
226 m_defaultIdentity = m_confParam.getRouterPrefix();
227 m_defaultIdentity.append("NLSR");
228
akmhoque102aea42014-08-04 10:22:12 -0500229 try
230 {
231 m_keyChain.deleteIdentity(m_defaultIdentity);
232 }
233 catch (std::exception& e)
234 {
235 }
akmhoque443ad812014-07-29 10:26:56 -0500236
Yingdi Yu9a18bfb2014-06-19 14:06:21 -0700237 ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(m_defaultIdentity, true);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700238
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700239 ndn::shared_ptr<ndn::IdentityCertificate> certificate =
240 ndn::make_shared<ndn::IdentityCertificate>();
241 ndn::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName);
242 Name certificateName = keyName.getPrefix(-1);
243 certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion();
244 certificate->setName(certificateName);
245 certificate->setNotBefore(time::system_clock::now() - time::days(1));
246 certificate->setNotAfter(time::system_clock::now() + time::days(7300)); // ~20 years
247 certificate->setPublicKeyInfo(*pubKey);
248 certificate->addSubjectDescription(CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME,
249 keyName.toUri()));
250 certificate->encode();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700251 m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix());
252
253 m_keyChain.addCertificateAsIdentityDefault(*certificate);
254 loadCertToPublish(certificate);
255
256 m_defaultCertName = certificate->getName();
257}
258
259void
260Nlsr::registerKeyPrefix()
261{
262 ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX;
263 keyPrefix.append("KEYS");
264 m_nlsrFace.setInterestFilter(keyPrefix,
Yingdi Yu6a3a4dd2014-06-20 14:10:39 -0700265 ndn::bind(&Nlsr::onKeyInterest,
266 this, _1, _2),
267 ndn::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1),
akmhoque060d3022014-08-12 13:35:06 -0500268 ndn::bind(&Nlsr::registrationFailed, this, _1),
269 m_defaultIdentity,
270 ndn::nfd::ROUTE_FLAG_CAPTURE);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700271
272}
273
274void
alvy297f4162015-03-03 17:15:33 -0600275Nlsr::registerLocalhostPrefix()
276{
277 _LOG_TRACE("Registering prefix: " << LOCALHOST_PREFIX);
278
279 m_nlsrFace.registerPrefix(LOCALHOST_PREFIX,
280 std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1),
281 std::bind(&Nlsr::registrationFailed, this, _1));
282}
283
284void
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700285Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest)
286{
287 const ndn::Name& interestName = interest.getName();
288
289 ndn::Name certName = interestName.getSubName(name.size());
290
291 if (certName[-2].toUri() == "ID-CERT")
292 {
293 certName = certName.getPrefix(-1);
294 }
295 else if (certName[-1].toUri() != "ID-CERT")
296 return; //Wrong key interest.
297
298 ndn::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName);
299
300 if (!static_cast<bool>(cert))
301 return; // cert is not found
302
akmhoque69c9aa92014-07-23 15:15:05 -0500303 ndn::shared_ptr<ndn::Data> data = ndn::make_shared<ndn::Data>();
304 data->setName(interestName);
305 data->setContent(cert->wireEncode());
306 m_keyChain.signWithSha256(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700307
akmhoque69c9aa92014-07-23 15:15:05 -0500308 m_nlsrFace.put(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700309}
310
311void
312Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name)
313{
akmhoque53353462014-04-22 08:43:45 -0500314}
akmhoque5a44dd42014-03-12 18:11:32 -0500315
akmhoque53353462014-04-22 08:43:45 -0500316void
akmhoquee1765152014-06-30 11:32:01 -0500317Nlsr::onDestroyFaceSuccess(const ndn::nfd::ControlParameters& commandSuccessResult)
318{
akmhoquee1765152014-06-30 11:32:01 -0500319}
320
321void
322Nlsr::onDestroyFaceFailure(int32_t code, const std::string& error)
323{
324 std::cerr << error << " (code: " << code << ")";
325 throw Error("Error: Face destruction failed");
326}
327
328void
329Nlsr::destroyFaces()
330{
331 std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList();
332 for (std::list<Adjacent>::iterator it = adjacents.begin();
333 it != adjacents.end(); it++) {
akmhoquec04e7272014-07-02 11:00:14 -0500334 m_fib.destroyFace((*it).getConnectingFaceUri(),
335 ndn::bind(&Nlsr::onDestroyFaceSuccess, this, _1),
336 ndn::bind(&Nlsr::onDestroyFaceFailure, this, _1, _2));
akmhoquee1765152014-06-30 11:32:01 -0500337 }
338}
339
akmhoquec04e7272014-07-02 11:00:14 -0500340
341
akmhoquee1765152014-06-30 11:32:01 -0500342
343void
akmhoquec04e7272014-07-02 11:00:14 -0500344Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification)
akmhoquee1765152014-06-30 11:32:01 -0500345{
Vince Lehman02e32992015-03-11 12:31:20 -0500346 _LOG_TRACE("Nlsr::onFaceEventNotification called");
akmhoquec04e7272014-07-02 11:00:14 -0500347 ndn::nfd::FaceEventKind kind = faceEventNotification.getKind();
Vince Lehman02e32992015-03-11 12:31:20 -0500348
akmhoquec04e7272014-07-02 11:00:14 -0500349 if (kind == ndn::nfd::FACE_EVENT_DESTROYED) {
350 uint64_t faceId = faceEventNotification.getFaceId();
Vince Lehman02e32992015-03-11 12:31:20 -0500351
352 Adjacent* adjacent = m_adjacencyList.findAdjacent(faceId);
353
354 if (adjacent != nullptr) {
355 _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed");
356
akmhoquec04e7272014-07-02 11:00:14 -0500357 adjacent->setFaceId(0);
Vince Lehman02e32992015-03-11 12:31:20 -0500358
Vince Lehman199e9cf2015-04-07 13:22:16 -0500359 // Only trigger an Adjacency LSA build if this node is changing from ACTIVE to INACTIVE
360 // since this rebuild will effectively cancel the previous Adjacency LSA refresh event
361 // and schedule a new one further in the future.
362 //
363 // Continuously scheduling the refresh in the future will block the router from refreshing
364 // its Adjacency LSA. Since other routers' Name prefixes' expiration times are updated
365 // when this router refreshes its Adjacency LSA, the other routers' prefixes will expire
366 // and be removed from the RIB.
367 //
368 // This check is required to fix Bug #2733 for now. This check would be unnecessary
369 // to fix Bug #2733 when Issue #2732 is completed, but the check also helps with
370 // optimization so it can remain even when Issue #2732 is implemented.
371 if (adjacent->getStatus() == Adjacent::STATUS_ACTIVE) {
372 adjacent->setStatus(Adjacent::STATUS_INACTIVE);
Vince Lehman02e32992015-03-11 12:31:20 -0500373
Vince Lehman199e9cf2015-04-07 13:22:16 -0500374 // A new adjacency LSA cannot be built until the neighbor is marked INACTIVE and
375 // has met the HELLO retry threshold
376 adjacent->setInterestTimedOutNo(m_confParam.getInterestRetryNumber());
377
378 m_nlsrLsdb.scheduleAdjLsaBuild();
379 }
akmhoquec04e7272014-07-02 11:00:14 -0500380 }
381 }
akmhoquee1765152014-06-30 11:32:01 -0500382}
383
384
385void
akmhoque53353462014-04-22 08:43:45 -0500386Nlsr::startEventLoop()
387{
akmhoquefdbddb12014-05-02 18:35:19 -0500388 m_nlsrFace.processEvents();
akmhoque53353462014-04-22 08:43:45 -0500389}
akmhoque5a44dd42014-03-12 18:11:32 -0500390
akmhoquefdbddb12014-05-02 18:35:19 -0500391void
akmhoque53353462014-04-22 08:43:45 -0500392Nlsr::usage(const string& progname)
393{
akmhoque48265992014-08-10 08:27:13 -0500394 std::cout << "Usage: " << progname << " [OPTIONS...]" << std::endl;
395 std::cout << " NDN routing...." << std::endl;
Vince Lehmanb722b102014-08-24 16:33:49 -0500396 std::cout << " -d Run in daemon mode" << std::endl;
397 std::cout << " -f <FILE> Specify configuration file name" << std::endl;
398 std::cout << " -V Display version information" << std::endl;
399 std::cout << " -h Display this help message" << std::endl;
akmhoque53353462014-04-22 08:43:45 -0500400}
akmhoque298385a2014-02-13 14:13:09 -0600401
akmhoqueb1710aa2014-02-19 17:13:36 -0600402
403} // namespace nlsr