blob: 2175c93d262e3f907688b18cb803c9c977541f48 [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
42void
43Nlsr::registrationFailed(const ndn::Name& name)
akmhoque298385a2014-02-13 14:13:09 -060044{
akmhoquefdbddb12014-05-02 18:35:19 -050045 std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << endl;
46 throw Error("Error: Prefix registration failed");
akmhoque53353462014-04-22 08:43:45 -050047}
akmhoque1fd8c1e2014-02-19 19:41:49 -060048
akmhoque157b0a42014-05-13 00:26:37 -050049void
50Nlsr::onRegistrationSuccess(const ndn::Name& name)
51{
Jiewen Tana0497d82015-02-02 21:59:18 -080052 if (name.equals(m_confParam.getRouterPrefix())) {
53 m_lsdbDatasetHandler = std::unique_ptr<LsdbDatasetInterestHandler>(
54 new LsdbDatasetInterestHandler(m_nlsrLsdb,
55 m_nlsrFace,
56 m_confParam.getRouterPrefix(),
57 m_keyChain));
58 }
akmhoque157b0a42014-05-13 00:26:37 -050059}
akmhoque1fd8c1e2014-02-19 19:41:49 -060060
akmhoque53353462014-04-22 08:43:45 -050061void
alvy297f4162015-03-03 17:15:33 -060062Nlsr::onLocalhostRegistrationSuccess(const ndn::Name& name)
63{
64 _LOG_DEBUG("Successfully registered prefix: " << name);
65
66 m_prefixUpdateProcessor.startListening();
67}
68
69void
akmhoque31d1d4b2014-05-05 22:08:14 -050070Nlsr::setInfoInterestFilter()
akmhoque53353462014-04-22 08:43:45 -050071{
akmhoque31d1d4b2014-05-05 22:08:14 -050072 ndn::Name name(m_confParam.getRouterPrefix());
akmhoque674b0b12014-05-20 14:33:28 -050073 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoquefdbddb12014-05-02 18:35:19 -050074 getNlsrFace().setInterestFilter(name,
akmhoque31d1d4b2014-05-05 22:08:14 -050075 ndn::bind(&HelloProtocol::processInterest,
76 &m_helloProtocol, _1, _2),
akmhoque157b0a42014-05-13 00:26:37 -050077 ndn::bind(&Nlsr::onRegistrationSuccess, this, _1),
akmhoque060d3022014-08-12 13:35:06 -050078 ndn::bind(&Nlsr::registrationFailed, this, _1),
79 m_defaultIdentity,
80 ndn::nfd::ROUTE_FLAG_CAPTURE);
akmhoque31d1d4b2014-05-05 22:08:14 -050081}
82
83void
84Nlsr::setLsaInterestFilter()
85{
akmhoque157b0a42014-05-13 00:26:37 -050086 ndn::Name name = m_confParam.getLsaPrefix();
akmhoque50125a92014-06-30 08:54:17 -050087 name.append(m_confParam.getSiteName());
88 name.append(m_confParam.getRouterName());
akmhoque674b0b12014-05-20 14:33:28 -050089 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoque31d1d4b2014-05-05 22:08:14 -050090 getNlsrFace().setInterestFilter(name,
91 ndn::bind(&Lsdb::processInterest,
92 &m_nlsrLsdb, _1, _2),
akmhoque157b0a42014-05-13 00:26:37 -050093 ndn::bind(&Nlsr::onRegistrationSuccess, this, _1),
akmhoque060d3022014-08-12 13:35:06 -050094 ndn::bind(&Nlsr::registrationFailed, this, _1),
95 m_defaultIdentity,
96 ndn::nfd::ROUTE_FLAG_CAPTURE);
akmhoque53353462014-04-22 08:43:45 -050097}
98
99void
akmhoquec04e7272014-07-02 11:00:14 -0500100Nlsr::setStrategies()
akmhoque157b0a42014-05-13 00:26:37 -0500101{
102 std::string strategy("ndn:/localhost/nfd/strategy/broadcast");
akmhoque3cb0cfc2014-06-24 10:32:24 -0500103 ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX;
104 broadcastKeyPrefix.append("KEYS");
akmhoque393d4ff2014-07-16 14:27:03 -0500105 m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0);
106 m_fib.setStrategy(broadcastKeyPrefix, strategy, 0);
107 m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0);
akmhoque157b0a42014-05-13 00:26:37 -0500108}
109
110void
akmhoque0494c252014-07-23 23:46:44 -0500111Nlsr::daemonize()
112{
113 pid_t process_id = 0;
114 pid_t sid = 0;
115 process_id = fork();
116 if (process_id < 0){
117 std::cerr << "Daemonization failed!" << std::endl;
118 throw Error("Error: Daemonization process- fork failed!");
119 }
120 if (process_id > 0) {
121 _LOG_DEBUG("Process daemonized. Process id: " << process_id);
122 exit(0);
123 }
124
125 umask(0);
126 sid = setsid();
127 if(sid < 0) {
128 throw Error("Error: Daemonization process- setting id failed!");
129 }
130
131 if (chdir("/") < 0) {
132 throw Error("Error: Daemonization process-chdir failed!");
133 }
134}
135
136void
akmhoque53353462014-04-22 08:43:45 -0500137Nlsr::initialize()
138{
akmhoque674b0b12014-05-20 14:33:28 -0500139 _LOG_DEBUG("Initializing Nlsr");
akmhoque53353462014-04-22 08:43:45 -0500140 m_confParam.buildRouterPrefix();
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700141 m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime()));
akmhoque31d1d4b2014-05-05 22:08:14 -0500142 m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri());
akmhoque53353462014-04-22 08:43:45 -0500143 m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime());
akmhoquec8a10f72014-04-25 18:42:55 -0500144 m_sequencingManager.setSeqFileName(m_confParam.getSeqFileDir());
145 m_sequencingManager.initiateSeqNoFromFile();
Vince Lehmanc11cc202015-01-20 11:41:33 -0600146
Vince Lehman9d097802015-03-16 17:55:59 -0500147 m_syncLogicHandler.createSyncSocket(m_confParam.getChronosyncPrefix());
Vince Lehmanc11cc202015-01-20 11:41:33 -0600148
akmhoque674b0b12014-05-20 14:33:28 -0500149 /* Logging start */
150 m_confParam.writeLog();
151 m_adjacencyList.writeLog();
152 m_namePrefixList.writeLog();
153 /* Logging end */
akmhoque443ad812014-07-29 10:26:56 -0500154 initializeKey();
akmhoquec04e7272014-07-02 11:00:14 -0500155 setStrategies();
akmhoque060d3022014-08-12 13:35:06 -0500156 _LOG_DEBUG("Default NLSR identity: " << m_defaultIdentity);
akmhoque31d1d4b2014-05-05 22:08:14 -0500157 setInfoInterestFilter();
158 setLsaInterestFilter();
Vince Lehman50df6b72015-03-03 12:06:40 -0600159
160 // Set event intervals
161 setFirstHelloInterval(m_confParam.getFirstHelloInterval());
162 m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval());
163 m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval());
164
akmhoque674b0b12014-05-20 14:33:28 -0500165 m_nlsrLsdb.buildAndInstallOwnNameLsa();
166 m_nlsrLsdb.buildAndInstallOwnCoordinateLsa();
Vince Lehman904c2412014-09-23 19:36:11 -0500167
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700168 registerKeyPrefix();
alvy297f4162015-03-03 17:15:33 -0600169 registerLocalhostPrefix();
Vince Lehman7b616582014-10-17 16:25:39 -0500170
Vince Lehman7b616582014-10-17 16:25:39 -0500171 m_helloProtocol.scheduleInterest(m_firstHelloInterval);
Vince Lehman09131122014-09-09 17:10:11 -0500172
173 // Need to set direct neighbors' costs to 0 for hyperbolic routing
174 if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
175
176 std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList();
177
178 for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) {
179 it->setLinkCost(0);
180 }
181 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700182}
183
184void
akmhoque443ad812014-07-29 10:26:56 -0500185Nlsr::initializeKey()
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700186{
187 m_defaultIdentity = m_confParam.getRouterPrefix();
188 m_defaultIdentity.append("NLSR");
189
akmhoque102aea42014-08-04 10:22:12 -0500190 try
191 {
192 m_keyChain.deleteIdentity(m_defaultIdentity);
193 }
194 catch (std::exception& e)
195 {
196 }
akmhoque443ad812014-07-29 10:26:56 -0500197
Yingdi Yu9a18bfb2014-06-19 14:06:21 -0700198 ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(m_defaultIdentity, true);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700199
Yingdi Yu191f5fa2014-08-06 17:08:52 -0700200 ndn::shared_ptr<ndn::IdentityCertificate> certificate =
201 ndn::make_shared<ndn::IdentityCertificate>();
202 ndn::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName);
203 Name certificateName = keyName.getPrefix(-1);
204 certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion();
205 certificate->setName(certificateName);
206 certificate->setNotBefore(time::system_clock::now() - time::days(1));
207 certificate->setNotAfter(time::system_clock::now() + time::days(7300)); // ~20 years
208 certificate->setPublicKeyInfo(*pubKey);
209 certificate->addSubjectDescription(CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME,
210 keyName.toUri()));
211 certificate->encode();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700212 m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix());
213
214 m_keyChain.addCertificateAsIdentityDefault(*certificate);
215 loadCertToPublish(certificate);
216
217 m_defaultCertName = certificate->getName();
218}
219
220void
221Nlsr::registerKeyPrefix()
222{
223 ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX;
224 keyPrefix.append("KEYS");
225 m_nlsrFace.setInterestFilter(keyPrefix,
Yingdi Yu6a3a4dd2014-06-20 14:10:39 -0700226 ndn::bind(&Nlsr::onKeyInterest,
227 this, _1, _2),
228 ndn::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1),
akmhoque060d3022014-08-12 13:35:06 -0500229 ndn::bind(&Nlsr::registrationFailed, this, _1),
230 m_defaultIdentity,
231 ndn::nfd::ROUTE_FLAG_CAPTURE);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700232
233}
234
235void
alvy297f4162015-03-03 17:15:33 -0600236Nlsr::registerLocalhostPrefix()
237{
238 _LOG_TRACE("Registering prefix: " << LOCALHOST_PREFIX);
239
240 m_nlsrFace.registerPrefix(LOCALHOST_PREFIX,
241 std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1),
242 std::bind(&Nlsr::registrationFailed, this, _1));
243}
244
245void
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700246Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest)
247{
248 const ndn::Name& interestName = interest.getName();
249
250 ndn::Name certName = interestName.getSubName(name.size());
251
252 if (certName[-2].toUri() == "ID-CERT")
253 {
254 certName = certName.getPrefix(-1);
255 }
256 else if (certName[-1].toUri() != "ID-CERT")
257 return; //Wrong key interest.
258
259 ndn::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName);
260
261 if (!static_cast<bool>(cert))
262 return; // cert is not found
263
akmhoque69c9aa92014-07-23 15:15:05 -0500264 ndn::shared_ptr<ndn::Data> data = ndn::make_shared<ndn::Data>();
265 data->setName(interestName);
266 data->setContent(cert->wireEncode());
267 m_keyChain.signWithSha256(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700268
akmhoque69c9aa92014-07-23 15:15:05 -0500269 m_nlsrFace.put(*data);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700270}
271
272void
273Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name)
274{
akmhoque53353462014-04-22 08:43:45 -0500275}
akmhoque5a44dd42014-03-12 18:11:32 -0500276
akmhoque53353462014-04-22 08:43:45 -0500277void
akmhoquee1765152014-06-30 11:32:01 -0500278Nlsr::onDestroyFaceSuccess(const ndn::nfd::ControlParameters& commandSuccessResult)
279{
akmhoquee1765152014-06-30 11:32:01 -0500280}
281
282void
283Nlsr::onDestroyFaceFailure(int32_t code, const std::string& error)
284{
285 std::cerr << error << " (code: " << code << ")";
286 throw Error("Error: Face destruction failed");
287}
288
289void
290Nlsr::destroyFaces()
291{
292 std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList();
293 for (std::list<Adjacent>::iterator it = adjacents.begin();
294 it != adjacents.end(); it++) {
akmhoquec04e7272014-07-02 11:00:14 -0500295 m_fib.destroyFace((*it).getConnectingFaceUri(),
296 ndn::bind(&Nlsr::onDestroyFaceSuccess, this, _1),
297 ndn::bind(&Nlsr::onDestroyFaceFailure, this, _1, _2));
akmhoquee1765152014-06-30 11:32:01 -0500298 }
299}
300
akmhoquec04e7272014-07-02 11:00:14 -0500301
302
akmhoquee1765152014-06-30 11:32:01 -0500303
304void
akmhoquec04e7272014-07-02 11:00:14 -0500305Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification)
akmhoquee1765152014-06-30 11:32:01 -0500306{
Vince Lehman02e32992015-03-11 12:31:20 -0500307 _LOG_TRACE("Nlsr::onFaceEventNotification called");
akmhoquec04e7272014-07-02 11:00:14 -0500308 ndn::nfd::FaceEventKind kind = faceEventNotification.getKind();
Vince Lehman02e32992015-03-11 12:31:20 -0500309
akmhoquec04e7272014-07-02 11:00:14 -0500310 if (kind == ndn::nfd::FACE_EVENT_DESTROYED) {
311 uint64_t faceId = faceEventNotification.getFaceId();
Vince Lehman02e32992015-03-11 12:31:20 -0500312
313 Adjacent* adjacent = m_adjacencyList.findAdjacent(faceId);
314
315 if (adjacent != nullptr) {
316 _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed");
317
akmhoquec04e7272014-07-02 11:00:14 -0500318 adjacent->setFaceId(0);
Vince Lehman02e32992015-03-11 12:31:20 -0500319
Vince Lehman199e9cf2015-04-07 13:22:16 -0500320 // Only trigger an Adjacency LSA build if this node is changing from ACTIVE to INACTIVE
321 // since this rebuild will effectively cancel the previous Adjacency LSA refresh event
322 // and schedule a new one further in the future.
323 //
324 // Continuously scheduling the refresh in the future will block the router from refreshing
325 // its Adjacency LSA. Since other routers' Name prefixes' expiration times are updated
326 // when this router refreshes its Adjacency LSA, the other routers' prefixes will expire
327 // and be removed from the RIB.
328 //
329 // This check is required to fix Bug #2733 for now. This check would be unnecessary
330 // to fix Bug #2733 when Issue #2732 is completed, but the check also helps with
331 // optimization so it can remain even when Issue #2732 is implemented.
332 if (adjacent->getStatus() == Adjacent::STATUS_ACTIVE) {
333 adjacent->setStatus(Adjacent::STATUS_INACTIVE);
Vince Lehman02e32992015-03-11 12:31:20 -0500334
Vince Lehman199e9cf2015-04-07 13:22:16 -0500335 // A new adjacency LSA cannot be built until the neighbor is marked INACTIVE and
336 // has met the HELLO retry threshold
337 adjacent->setInterestTimedOutNo(m_confParam.getInterestRetryNumber());
338
339 m_nlsrLsdb.scheduleAdjLsaBuild();
340 }
akmhoquec04e7272014-07-02 11:00:14 -0500341 }
342 }
akmhoquee1765152014-06-30 11:32:01 -0500343}
344
345
346void
akmhoque53353462014-04-22 08:43:45 -0500347Nlsr::startEventLoop()
348{
akmhoquefdbddb12014-05-02 18:35:19 -0500349 m_nlsrFace.processEvents();
akmhoque53353462014-04-22 08:43:45 -0500350}
akmhoque5a44dd42014-03-12 18:11:32 -0500351
akmhoquefdbddb12014-05-02 18:35:19 -0500352void
akmhoque53353462014-04-22 08:43:45 -0500353Nlsr::usage(const string& progname)
354{
akmhoque48265992014-08-10 08:27:13 -0500355 std::cout << "Usage: " << progname << " [OPTIONS...]" << std::endl;
356 std::cout << " NDN routing...." << std::endl;
Vince Lehmanb722b102014-08-24 16:33:49 -0500357 std::cout << " -d Run in daemon mode" << std::endl;
358 std::cout << " -f <FILE> Specify configuration file name" << std::endl;
359 std::cout << " -V Display version information" << std::endl;
360 std::cout << " -h Display this help message" << std::endl;
akmhoque53353462014-04-22 08:43:45 -0500361}
akmhoque298385a2014-02-13 14:13:09 -0600362
akmhoqueb1710aa2014-02-19 17:13:36 -0600363
364} // namespace nlsr