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