akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2015, The University of Memphis, |
| 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 6 | * |
| 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/>. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 20 | **/ |
Muktadir R Chowdhury | bfa2760 | 2014-10-31 10:57:41 -0500 | [diff] [blame] | 21 | |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 22 | #include <cstdlib> |
akmhoque | 92afde4 | 2014-02-18 14:04:07 -0600 | [diff] [blame] | 23 | #include <string> |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 24 | #include <sstream> |
akmhoque | 05d5fcf | 2014-04-15 14:58:45 -0500 | [diff] [blame] | 25 | #include <cstdio> |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 26 | #include <unistd.h> |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 27 | |
| 28 | #include "nlsr.hpp" |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 29 | #include "adjacent.hpp" |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 30 | #include "logger.hpp" |
akmhoque | 2bb198e | 2014-02-28 11:46:27 -0600 | [diff] [blame] | 31 | |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 32 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 33 | namespace nlsr { |
| 34 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 35 | INIT_LOGGER("nlsr"); |
| 36 | |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 37 | const ndn::Name Nlsr::LOCALHOST_PREFIX = ndn::Name("/localhost/nlsr"); |
| 38 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 39 | using namespace ndn; |
| 40 | using namespace std; |
| 41 | |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame^] | 42 | Nlsr::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)) |
| 66 | , m_validator(m_nlsrFace, DEFAULT_BROADCAST_PREFIX, m_certificateCache) |
| 67 | , m_prefixUpdateProcessor(m_nlsrFace, |
| 68 | m_namePrefixList, |
| 69 | m_nlsrLsdb, |
| 70 | m_syncLogicHandler, |
| 71 | DEFAULT_BROADCAST_PREFIX, |
| 72 | m_keyChain, |
| 73 | m_certificateCache) |
| 74 | , m_faceMonitor(m_nlsrFace) |
| 75 | , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT) |
| 76 | { |
| 77 | m_faceMonitor.onNotification.connect(bind(&Nlsr::onFaceEventNotification, this, _1)); |
| 78 | m_faceMonitor.start(); |
| 79 | } |
| 80 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 81 | void |
| 82 | Nlsr::registrationFailed(const ndn::Name& name) |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 83 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 84 | std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << endl; |
| 85 | throw Error("Error: Prefix registration failed"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 86 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 87 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 88 | void |
| 89 | Nlsr::onRegistrationSuccess(const ndn::Name& name) |
| 90 | { |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame^] | 91 | _LOG_DEBUG("Successfully registered prefix: " << name); |
| 92 | |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 93 | if (name.equals(m_confParam.getRouterPrefix())) { |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame^] | 94 | m_lsdbDatasetHandler.startListeningOnRouterPrefix(); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 95 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 96 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 97 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 98 | void |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 99 | Nlsr::onLocalhostRegistrationSuccess(const ndn::Name& name) |
| 100 | { |
| 101 | _LOG_DEBUG("Successfully registered prefix: " << name); |
| 102 | |
| 103 | m_prefixUpdateProcessor.startListening(); |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame^] | 104 | m_lsdbDatasetHandler.startListeningOnLocalhost(); |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 108 | Nlsr::setInfoInterestFilter() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 109 | { |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 110 | ndn::Name name(m_confParam.getRouterPrefix()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 111 | _LOG_DEBUG("Setting interest filter for name: " << name); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 112 | getNlsrFace().setInterestFilter(name, |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 113 | ndn::bind(&HelloProtocol::processInterest, |
| 114 | &m_helloProtocol, _1, _2), |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 115 | ndn::bind(&Nlsr::onRegistrationSuccess, this, _1), |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 116 | ndn::bind(&Nlsr::registrationFailed, this, _1), |
| 117 | m_defaultIdentity, |
| 118 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | void |
| 122 | Nlsr::setLsaInterestFilter() |
| 123 | { |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 124 | ndn::Name name = m_confParam.getLsaPrefix(); |
akmhoque | 50125a9 | 2014-06-30 08:54:17 -0500 | [diff] [blame] | 125 | name.append(m_confParam.getSiteName()); |
| 126 | name.append(m_confParam.getRouterName()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 127 | _LOG_DEBUG("Setting interest filter for name: " << name); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 128 | getNlsrFace().setInterestFilter(name, |
| 129 | ndn::bind(&Lsdb::processInterest, |
| 130 | &m_nlsrLsdb, _1, _2), |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 131 | ndn::bind(&Nlsr::onRegistrationSuccess, this, _1), |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 132 | ndn::bind(&Nlsr::registrationFailed, this, _1), |
| 133 | m_defaultIdentity, |
| 134 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | void |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 138 | Nlsr::setStrategies() |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 139 | { |
| 140 | std::string strategy("ndn:/localhost/nfd/strategy/broadcast"); |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame] | 141 | ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 142 | broadcastKeyPrefix.append("KEYS"); |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 143 | m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0); |
| 144 | m_fib.setStrategy(broadcastKeyPrefix, strategy, 0); |
| 145 | m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | void |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 149 | Nlsr::daemonize() |
| 150 | { |
| 151 | pid_t process_id = 0; |
| 152 | pid_t sid = 0; |
| 153 | process_id = fork(); |
| 154 | if (process_id < 0){ |
| 155 | std::cerr << "Daemonization failed!" << std::endl; |
| 156 | throw Error("Error: Daemonization process- fork failed!"); |
| 157 | } |
| 158 | if (process_id > 0) { |
| 159 | _LOG_DEBUG("Process daemonized. Process id: " << process_id); |
| 160 | exit(0); |
| 161 | } |
| 162 | |
| 163 | umask(0); |
| 164 | sid = setsid(); |
| 165 | if(sid < 0) { |
| 166 | throw Error("Error: Daemonization process- setting id failed!"); |
| 167 | } |
| 168 | |
| 169 | if (chdir("/") < 0) { |
| 170 | throw Error("Error: Daemonization process-chdir failed!"); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 175 | Nlsr::initialize() |
| 176 | { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 177 | _LOG_DEBUG("Initializing Nlsr"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 178 | m_confParam.buildRouterPrefix(); |
Alexander Afanasyev | 411ee4b | 2014-08-16 23:17:03 -0700 | [diff] [blame] | 179 | m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime())); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 180 | m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 181 | m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime()); |
akmhoque | c8a10f7 | 2014-04-25 18:42:55 -0500 | [diff] [blame] | 182 | m_sequencingManager.setSeqFileName(m_confParam.getSeqFileDir()); |
| 183 | m_sequencingManager.initiateSeqNoFromFile(); |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 184 | |
Vince Lehman | 9d09780 | 2015-03-16 17:55:59 -0500 | [diff] [blame] | 185 | m_syncLogicHandler.createSyncSocket(m_confParam.getChronosyncPrefix()); |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 186 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 187 | /* Logging start */ |
| 188 | m_confParam.writeLog(); |
| 189 | m_adjacencyList.writeLog(); |
| 190 | m_namePrefixList.writeLog(); |
| 191 | /* Logging end */ |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 192 | initializeKey(); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 193 | setStrategies(); |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 194 | _LOG_DEBUG("Default NLSR identity: " << m_defaultIdentity); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 195 | setInfoInterestFilter(); |
| 196 | setLsaInterestFilter(); |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 197 | |
| 198 | // Set event intervals |
| 199 | setFirstHelloInterval(m_confParam.getFirstHelloInterval()); |
| 200 | m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval()); |
| 201 | m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval()); |
| 202 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 203 | m_nlsrLsdb.buildAndInstallOwnNameLsa(); |
| 204 | m_nlsrLsdb.buildAndInstallOwnCoordinateLsa(); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 205 | |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 206 | registerKeyPrefix(); |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 207 | registerLocalhostPrefix(); |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 208 | |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 209 | m_helloProtocol.scheduleInterest(m_firstHelloInterval); |
Vince Lehman | 0913112 | 2014-09-09 17:10:11 -0500 | [diff] [blame] | 210 | |
| 211 | // Need to set direct neighbors' costs to 0 for hyperbolic routing |
| 212 | if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) { |
| 213 | |
| 214 | std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList(); |
| 215 | |
| 216 | for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) { |
| 217 | it->setLinkCost(0); |
| 218 | } |
| 219 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | void |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 223 | Nlsr::initializeKey() |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 224 | { |
| 225 | m_defaultIdentity = m_confParam.getRouterPrefix(); |
| 226 | m_defaultIdentity.append("NLSR"); |
| 227 | |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 228 | try |
| 229 | { |
| 230 | m_keyChain.deleteIdentity(m_defaultIdentity); |
| 231 | } |
| 232 | catch (std::exception& e) |
| 233 | { |
| 234 | } |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 235 | |
Yingdi Yu | 9a18bfb | 2014-06-19 14:06:21 -0700 | [diff] [blame] | 236 | ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(m_defaultIdentity, true); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 237 | |
Yingdi Yu | 191f5fa | 2014-08-06 17:08:52 -0700 | [diff] [blame] | 238 | ndn::shared_ptr<ndn::IdentityCertificate> certificate = |
| 239 | ndn::make_shared<ndn::IdentityCertificate>(); |
| 240 | ndn::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName); |
| 241 | Name certificateName = keyName.getPrefix(-1); |
| 242 | certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion(); |
| 243 | certificate->setName(certificateName); |
| 244 | certificate->setNotBefore(time::system_clock::now() - time::days(1)); |
| 245 | certificate->setNotAfter(time::system_clock::now() + time::days(7300)); // ~20 years |
| 246 | certificate->setPublicKeyInfo(*pubKey); |
| 247 | certificate->addSubjectDescription(CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME, |
| 248 | keyName.toUri())); |
| 249 | certificate->encode(); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 250 | m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix()); |
| 251 | |
| 252 | m_keyChain.addCertificateAsIdentityDefault(*certificate); |
| 253 | loadCertToPublish(certificate); |
| 254 | |
| 255 | m_defaultCertName = certificate->getName(); |
| 256 | } |
| 257 | |
| 258 | void |
| 259 | Nlsr::registerKeyPrefix() |
| 260 | { |
| 261 | ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 262 | keyPrefix.append("KEYS"); |
| 263 | m_nlsrFace.setInterestFilter(keyPrefix, |
Yingdi Yu | 6a3a4dd | 2014-06-20 14:10:39 -0700 | [diff] [blame] | 264 | ndn::bind(&Nlsr::onKeyInterest, |
| 265 | this, _1, _2), |
| 266 | ndn::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1), |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 267 | ndn::bind(&Nlsr::registrationFailed, this, _1), |
| 268 | m_defaultIdentity, |
| 269 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 270 | |
| 271 | } |
| 272 | |
| 273 | void |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 274 | Nlsr::registerLocalhostPrefix() |
| 275 | { |
| 276 | _LOG_TRACE("Registering prefix: " << LOCALHOST_PREFIX); |
| 277 | |
| 278 | m_nlsrFace.registerPrefix(LOCALHOST_PREFIX, |
| 279 | std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1), |
| 280 | std::bind(&Nlsr::registrationFailed, this, _1)); |
| 281 | } |
| 282 | |
| 283 | void |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 284 | Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest) |
| 285 | { |
| 286 | const ndn::Name& interestName = interest.getName(); |
| 287 | |
| 288 | ndn::Name certName = interestName.getSubName(name.size()); |
| 289 | |
| 290 | if (certName[-2].toUri() == "ID-CERT") |
| 291 | { |
| 292 | certName = certName.getPrefix(-1); |
| 293 | } |
| 294 | else if (certName[-1].toUri() != "ID-CERT") |
| 295 | return; //Wrong key interest. |
| 296 | |
| 297 | ndn::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName); |
| 298 | |
| 299 | if (!static_cast<bool>(cert)) |
| 300 | return; // cert is not found |
| 301 | |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 302 | ndn::shared_ptr<ndn::Data> data = ndn::make_shared<ndn::Data>(); |
| 303 | data->setName(interestName); |
| 304 | data->setContent(cert->wireEncode()); |
| 305 | m_keyChain.signWithSha256(*data); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 306 | |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 307 | m_nlsrFace.put(*data); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | void |
| 311 | Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name) |
| 312 | { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 313 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 314 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 315 | void |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 316 | Nlsr::onDestroyFaceSuccess(const ndn::nfd::ControlParameters& commandSuccessResult) |
| 317 | { |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | void |
| 321 | Nlsr::onDestroyFaceFailure(int32_t code, const std::string& error) |
| 322 | { |
| 323 | std::cerr << error << " (code: " << code << ")"; |
| 324 | throw Error("Error: Face destruction failed"); |
| 325 | } |
| 326 | |
| 327 | void |
| 328 | Nlsr::destroyFaces() |
| 329 | { |
| 330 | std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList(); |
| 331 | for (std::list<Adjacent>::iterator it = adjacents.begin(); |
| 332 | it != adjacents.end(); it++) { |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 333 | m_fib.destroyFace((*it).getConnectingFaceUri(), |
| 334 | ndn::bind(&Nlsr::onDestroyFaceSuccess, this, _1), |
| 335 | ndn::bind(&Nlsr::onDestroyFaceFailure, this, _1, _2)); |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 336 | } |
| 337 | } |
| 338 | |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 339 | |
| 340 | |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 341 | |
| 342 | void |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 343 | Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification) |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 344 | { |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 345 | _LOG_TRACE("Nlsr::onFaceEventNotification called"); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 346 | ndn::nfd::FaceEventKind kind = faceEventNotification.getKind(); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 347 | |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 348 | if (kind == ndn::nfd::FACE_EVENT_DESTROYED) { |
| 349 | uint64_t faceId = faceEventNotification.getFaceId(); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 350 | |
| 351 | Adjacent* adjacent = m_adjacencyList.findAdjacent(faceId); |
| 352 | |
| 353 | if (adjacent != nullptr) { |
| 354 | _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed"); |
| 355 | |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 356 | adjacent->setFaceId(0); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 357 | |
Vince Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 358 | // Only trigger an Adjacency LSA build if this node is changing from ACTIVE to INACTIVE |
| 359 | // since this rebuild will effectively cancel the previous Adjacency LSA refresh event |
| 360 | // and schedule a new one further in the future. |
| 361 | // |
| 362 | // Continuously scheduling the refresh in the future will block the router from refreshing |
| 363 | // its Adjacency LSA. Since other routers' Name prefixes' expiration times are updated |
| 364 | // when this router refreshes its Adjacency LSA, the other routers' prefixes will expire |
| 365 | // and be removed from the RIB. |
| 366 | // |
| 367 | // This check is required to fix Bug #2733 for now. This check would be unnecessary |
| 368 | // to fix Bug #2733 when Issue #2732 is completed, but the check also helps with |
| 369 | // optimization so it can remain even when Issue #2732 is implemented. |
| 370 | if (adjacent->getStatus() == Adjacent::STATUS_ACTIVE) { |
| 371 | adjacent->setStatus(Adjacent::STATUS_INACTIVE); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 372 | |
Vince Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 373 | // A new adjacency LSA cannot be built until the neighbor is marked INACTIVE and |
| 374 | // has met the HELLO retry threshold |
| 375 | adjacent->setInterestTimedOutNo(m_confParam.getInterestRetryNumber()); |
| 376 | |
| 377 | m_nlsrLsdb.scheduleAdjLsaBuild(); |
| 378 | } |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 379 | } |
| 380 | } |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | |
| 384 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 385 | Nlsr::startEventLoop() |
| 386 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 387 | m_nlsrFace.processEvents(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 388 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 389 | |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 390 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 391 | Nlsr::usage(const string& progname) |
| 392 | { |
akmhoque | 4826599 | 2014-08-10 08:27:13 -0500 | [diff] [blame] | 393 | std::cout << "Usage: " << progname << " [OPTIONS...]" << std::endl; |
| 394 | std::cout << " NDN routing...." << std::endl; |
Vince Lehman | b722b10 | 2014-08-24 16:33:49 -0500 | [diff] [blame] | 395 | std::cout << " -d Run in daemon mode" << std::endl; |
| 396 | std::cout << " -f <FILE> Specify configuration file name" << std::endl; |
| 397 | std::cout << " -V Display version information" << std::endl; |
| 398 | std::cout << " -h Display this help message" << std::endl; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 399 | } |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 400 | |
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame] | 401 | |
| 402 | } // namespace nlsr |