akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Nick Gordon | feae557 | 2017-01-13 12:06:26 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, The University of Memphis, |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame] | 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 | |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 22 | #include "nlsr.hpp" |
| 23 | #include "adjacent.hpp" |
| 24 | #include "logger.hpp" |
| 25 | |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 26 | #include <cstdlib> |
akmhoque | 92afde4 | 2014-02-18 14:04:07 -0600 | [diff] [blame] | 27 | #include <string> |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 28 | #include <sstream> |
akmhoque | 05d5fcf | 2014-04-15 14:58:45 -0500 | [diff] [blame] | 29 | #include <cstdio> |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 30 | #include <unistd.h> |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 31 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 32 | #include <ndn-cxx/util/face-uri.hpp> |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 33 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 34 | namespace nlsr { |
| 35 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 36 | INIT_LOGGER("nlsr"); |
| 37 | |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 38 | const ndn::Name Nlsr::LOCALHOST_PREFIX = ndn::Name("/localhost/nlsr"); |
| 39 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 40 | using namespace ndn; |
| 41 | using namespace std; |
| 42 | |
Laqin Fan | a4cf402 | 2017-01-03 18:57:35 +0000 | [diff] [blame] | 43 | Nlsr::Nlsr(boost::asio::io_service& ioService, ndn::Scheduler& scheduler, ndn::Face& face, ndn::KeyChain& keyChain) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 44 | : m_nlsrFace(face) |
| 45 | , m_scheduler(scheduler) |
Laqin Fan | a4cf402 | 2017-01-03 18:57:35 +0000 | [diff] [blame] | 46 | , m_keyChain(keyChain) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 47 | , m_confParam() |
| 48 | , m_adjacencyList() |
| 49 | , m_namePrefixList() |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 50 | , m_isDaemonProcess(false) |
| 51 | , m_configFileName("nlsr.conf") |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 52 | , m_nlsrLsdb(*this, scheduler) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 53 | , m_adjBuildCount(0) |
| 54 | , m_isBuildAdjLsaSheduled(false) |
| 55 | , m_isRouteCalculationScheduled(false) |
| 56 | , m_isRoutingTableCalculating(false) |
| 57 | , m_routingTable(scheduler) |
| 58 | , m_fib(m_nlsrFace, scheduler, m_adjacencyList, m_confParam, m_keyChain) |
| 59 | , m_namePrefixTable(*this) |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 60 | , m_localhostDispatcher(m_nlsrFace, m_keyChain) |
| 61 | , m_routerNameDispatcher(m_nlsrFace, m_keyChain) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 62 | , m_lsdbDatasetHandler(m_nlsrLsdb, |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 63 | m_localhostDispatcher, |
| 64 | m_routerNameDispatcher, |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 65 | m_nlsrFace, |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 66 | m_keyChain) |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 67 | |
Vince Lehman | f7eec4f | 2015-05-08 19:02:31 -0500 | [diff] [blame] | 68 | , m_helloProtocol(*this, scheduler) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 69 | , m_certificateCache(new ndn::CertificateCacheTtl(ioService)) |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 70 | , m_validator(m_nlsrFace, DEFAULT_BROADCAST_PREFIX, m_certificateCache, m_certStore) |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 71 | , m_controller(m_nlsrFace, m_keyChain, m_validator) |
| 72 | , m_faceDatasetController(m_nlsrFace, m_keyChain) |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 73 | , m_prefixUpdateProcessor(m_localhostDispatcher, |
| 74 | m_nlsrFace, |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 75 | m_namePrefixList, |
| 76 | m_nlsrLsdb, |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 77 | DEFAULT_BROADCAST_PREFIX, |
| 78 | m_keyChain, |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 79 | m_certificateCache, |
| 80 | m_certStore) |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 81 | , m_nfdRibCommandProcessor(m_localhostDispatcher, |
Nick Gordon | 4d2c6c0 | 2017-01-20 13:18:46 -0600 | [diff] [blame] | 82 | m_namePrefixList, |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 83 | m_nlsrLsdb) |
Alejandro Gil Torres | e0d2048 | 2016-03-06 23:56:19 -0600 | [diff] [blame^] | 84 | , m_statsCollector(m_nlsrLsdb, m_helloProtocol) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 85 | , m_faceMonitor(m_nlsrFace) |
| 86 | , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT) |
| 87 | { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 88 | m_faceMonitor.onNotification.connect(std::bind(&Nlsr::onFaceEventNotification, this, _1)); |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 89 | m_faceMonitor.start(); |
| 90 | } |
| 91 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 92 | void |
| 93 | Nlsr::registrationFailed(const ndn::Name& name) |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 94 | { |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 95 | _LOG_ERROR("ERROR: Failed to register prefix in local hub's daemon"); |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 96 | BOOST_THROW_EXCEPTION(Error("Error: Prefix registration failed")); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 97 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 98 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 99 | void |
| 100 | Nlsr::onRegistrationSuccess(const ndn::Name& name) |
| 101 | { |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 102 | _LOG_DEBUG("Successfully registered prefix: " << name); |
| 103 | |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 104 | if (name.equals(m_confParam.getRouterPrefix())) { |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 105 | // the top-level prefixes are added. |
| 106 | try { |
| 107 | m_routerNameDispatcher.addTopPrefix(m_confParam.getRouterPrefix(), false, m_signingInfo); |
| 108 | } |
| 109 | catch (const std::exception& e) { |
| 110 | _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n"); |
| 111 | } |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 112 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 113 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 114 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 115 | void |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 116 | Nlsr::onLocalhostRegistrationSuccess(const ndn::Name& name) |
| 117 | { |
Nick Gordon | 4d2c6c0 | 2017-01-20 13:18:46 -0600 | [diff] [blame] | 118 | // All dispatcher-related sub-prefixes *must* be registered before |
| 119 | // the top-level prefixes are added. |
| 120 | try { |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 121 | m_localhostDispatcher.addTopPrefix(LOCALHOST_PREFIX, false, m_signingInfo); |
Nick Gordon | 4d2c6c0 | 2017-01-20 13:18:46 -0600 | [diff] [blame] | 122 | } |
| 123 | catch (const std::exception& e) { |
| 124 | _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n"); |
| 125 | } |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 129 | Nlsr::setInfoInterestFilter() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 130 | { |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 131 | ndn::Name name(m_confParam.getRouterPrefix()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 132 | _LOG_DEBUG("Setting interest filter for name: " << name); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 133 | getNlsrFace().setInterestFilter(name, |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 134 | std::bind(&HelloProtocol::processInterest, |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 135 | &m_helloProtocol, _1, _2), |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 136 | std::bind(&Nlsr::onRegistrationSuccess, this, _1), |
| 137 | std::bind(&Nlsr::registrationFailed, this, _1), |
| 138 | m_signingInfo, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 139 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | void |
| 143 | Nlsr::setLsaInterestFilter() |
| 144 | { |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 145 | ndn::Name name = m_confParam.getLsaPrefix(); |
akmhoque | 50125a9 | 2014-06-30 08:54:17 -0500 | [diff] [blame] | 146 | name.append(m_confParam.getSiteName()); |
| 147 | name.append(m_confParam.getRouterName()); |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 148 | _LOG_DEBUG("Setting interest filter for LsaPrefix: " << name); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 149 | getNlsrFace().setInterestFilter(name, |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 150 | std::bind(&Lsdb::processInterest, |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 151 | &m_nlsrLsdb, _1, _2), |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 152 | std::bind(&Nlsr::onRegistrationSuccess, this, _1), |
| 153 | std::bind(&Nlsr::registrationFailed, this, _1), |
| 154 | m_signingInfo, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 155 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | void |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 159 | Nlsr::setStrategies() |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 160 | { |
Vince Lehman | 53c0e3e | 2015-09-14 14:33:20 -0500 | [diff] [blame] | 161 | const std::string strategy("ndn:/localhost/nfd/strategy/multicast"); |
| 162 | |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame] | 163 | ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 164 | broadcastKeyPrefix.append("KEYS"); |
Vince Lehman | 53c0e3e | 2015-09-14 14:33:20 -0500 | [diff] [blame] | 165 | |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 166 | m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0); |
| 167 | m_fib.setStrategy(broadcastKeyPrefix, strategy, 0); |
| 168 | m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | void |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 172 | Nlsr::daemonize() |
| 173 | { |
| 174 | pid_t process_id = 0; |
| 175 | pid_t sid = 0; |
| 176 | process_id = fork(); |
| 177 | if (process_id < 0){ |
| 178 | std::cerr << "Daemonization failed!" << std::endl; |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 179 | BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- fork failed!")); |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 180 | } |
| 181 | if (process_id > 0) { |
| 182 | _LOG_DEBUG("Process daemonized. Process id: " << process_id); |
| 183 | exit(0); |
| 184 | } |
| 185 | |
| 186 | umask(0); |
| 187 | sid = setsid(); |
| 188 | if(sid < 0) { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 189 | BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- setting id failed!")); |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | if (chdir("/") < 0) { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 193 | BOOST_THROW_EXCEPTION(Error("Error: Daemonization process-chdir failed!")); |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 194 | } |
| 195 | } |
| 196 | |
| 197 | void |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 198 | Nlsr::canonizeContinuation(std::list<Adjacent>::iterator iterator) |
| 199 | { |
| 200 | canonizeNeighborUris(iterator, [this] (std::list<Adjacent>::iterator iterator) { |
| 201 | canonizeContinuation(iterator); |
| 202 | }); |
| 203 | } |
| 204 | |
| 205 | void |
| 206 | Nlsr::canonizeNeighborUris(std::list<Adjacent>::iterator currentNeighbor, |
| 207 | std::function<void(std::list<Adjacent>::iterator)> then) |
| 208 | { |
| 209 | if (currentNeighbor != m_adjacencyList.getAdjList().end()) { |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 210 | ndn::util::FaceUri uri(currentNeighbor->getFaceUri()); |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 211 | uri.canonize([this, then, currentNeighbor] (ndn::util::FaceUri canonicalUri) { |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 212 | _LOG_DEBUG("Canonized URI: " << currentNeighbor->getFaceUri() |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 213 | << " to: " << canonicalUri); |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 214 | currentNeighbor->setFaceUri(canonicalUri); |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 215 | then(std::next(currentNeighbor)); |
| 216 | }, |
| 217 | [this, then, currentNeighbor] (const std::string& reason) { |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 218 | _LOG_ERROR("Could not canonize URI: " << currentNeighbor->getFaceUri() |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 219 | << " because: " << reason); |
| 220 | then(std::next(currentNeighbor)); |
| 221 | }, |
| 222 | m_nlsrFace.getIoService(), |
| 223 | TIME_ALLOWED_FOR_CANONIZATION); |
| 224 | } |
| 225 | // We have finished canonizing all neighbors, so initialize NLSR. |
| 226 | else { |
| 227 | initialize(); |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 232 | Nlsr::initialize() |
| 233 | { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 234 | _LOG_DEBUG("Initializing Nlsr"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 235 | m_confParam.buildRouterPrefix(); |
Muktadir R Chowdhury | 3ac0728 | 2016-06-17 16:30:29 -0500 | [diff] [blame] | 236 | m_lsdbDatasetHandler.setRouterNameCommandPrefix(m_confParam.getRouterPrefix()); |
Alexander Afanasyev | 411ee4b | 2014-08-16 23:17:03 -0700 | [diff] [blame] | 237 | m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime())); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 238 | m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 239 | m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime()); |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 240 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 241 | 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 Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 245 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 246 | // Logging start |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 247 | m_confParam.writeLog(); |
| 248 | m_adjacencyList.writeLog(); |
Nick Gordon | 494de40 | 2017-06-14 12:48:51 -0500 | [diff] [blame] | 249 | _LOG_DEBUG(m_namePrefixList); |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 250 | // Logging end |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 251 | initializeKey(); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 252 | setStrategies(); |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 253 | _LOG_DEBUG("Default NLSR identity: " << m_signingInfo.getSignerName()); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 254 | setInfoInterestFilter(); |
| 255 | setLsaInterestFilter(); |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 256 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 257 | initializeFaces(std::bind(&Nlsr::processFaceDataset, this, _1), |
| 258 | std::bind(&Nlsr::onFaceDatasetFetchTimeout, this, _1, _2, 0)); |
| 259 | |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 260 | // Set event intervals |
| 261 | setFirstHelloInterval(m_confParam.getFirstHelloInterval()); |
| 262 | m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval()); |
| 263 | m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval()); |
| 264 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 265 | m_nlsrLsdb.buildAndInstallOwnNameLsa(); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 266 | |
| 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 Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 271 | |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 272 | registerKeyPrefix(); |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 273 | registerLocalhostPrefix(); |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 274 | |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 275 | m_helloProtocol.scheduleInterest(m_firstHelloInterval); |
Vince Lehman | 0913112 | 2014-09-09 17:10:11 -0500 | [diff] [blame] | 276 | |
| 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 Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | void |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 289 | Nlsr::initializeKey() |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 290 | { |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 291 | ndn::Name defaultIdentity = m_confParam.getRouterPrefix(); |
| 292 | defaultIdentity.append("NLSR"); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 293 | |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 294 | try { |
| 295 | m_keyChain.deleteIdentity(defaultIdentity); |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 296 | } |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 297 | catch (const std::exception& e) { |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 298 | } |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 299 | m_signingInfo = ndn::security::SigningInfo(ndn::security::SigningInfo::SIGNER_TYPE_ID, defaultIdentity); |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 300 | |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 301 | ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(defaultIdentity, true); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 302 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 303 | std::shared_ptr<ndn::IdentityCertificate> certificate = |
| 304 | std::make_shared<ndn::IdentityCertificate>(); |
| 305 | std::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName); |
Yingdi Yu | 191f5fa | 2014-08-06 17:08:52 -0700 | [diff] [blame] | 306 | Name certificateName = keyName.getPrefix(-1); |
| 307 | certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion(); |
| 308 | certificate->setName(certificateName); |
| 309 | certificate->setNotBefore(time::system_clock::now() - time::days(1)); |
| 310 | certificate->setNotAfter(time::system_clock::now() + time::days(7300)); // ~20 years |
| 311 | certificate->setPublicKeyInfo(*pubKey); |
| 312 | certificate->addSubjectDescription(CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME, |
| 313 | keyName.toUri())); |
| 314 | certificate->encode(); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 315 | m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix()); |
| 316 | |
| 317 | m_keyChain.addCertificateAsIdentityDefault(*certificate); |
| 318 | loadCertToPublish(certificate); |
| 319 | |
| 320 | m_defaultCertName = certificate->getName(); |
| 321 | } |
| 322 | |
| 323 | void |
| 324 | Nlsr::registerKeyPrefix() |
| 325 | { |
| 326 | ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 327 | keyPrefix.append("KEYS"); |
| 328 | m_nlsrFace.setInterestFilter(keyPrefix, |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 329 | std::bind(&Nlsr::onKeyInterest, |
Yingdi Yu | 6a3a4dd | 2014-06-20 14:10:39 -0700 | [diff] [blame] | 330 | this, _1, _2), |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 331 | std::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1), |
| 332 | std::bind(&Nlsr::registrationFailed, this, _1), |
| 333 | m_signingInfo, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 334 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 335 | |
| 336 | } |
| 337 | |
| 338 | void |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 339 | Nlsr::registerLocalhostPrefix() |
| 340 | { |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 341 | m_nlsrFace.registerPrefix(LOCALHOST_PREFIX, |
| 342 | std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1), |
| 343 | std::bind(&Nlsr::registrationFailed, this, _1)); |
| 344 | } |
| 345 | |
| 346 | void |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 347 | Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest) |
| 348 | { |
| 349 | const ndn::Name& interestName = interest.getName(); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 350 | 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") |
dmcoomes | 9eaf3f4 | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 357 | { |
| 358 | _LOG_DEBUG("certName for interest " << interest << " is malformed," |
| 359 | << " contains incorrect namespace syntax"); |
| 360 | return; |
| 361 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 362 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 363 | std::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 364 | |
| 365 | if (!static_cast<bool>(cert)) |
dmcoomes | 9eaf3f4 | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 366 | { |
| 367 | _LOG_DEBUG("cert is not found for " << interest); |
| 368 | return; // cert is not found |
| 369 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 370 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 371 | std::shared_ptr<ndn::Data> data = std::make_shared<ndn::Data>(); |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 372 | data->setName(interestName); |
| 373 | data->setContent(cert->wireEncode()); |
| 374 | m_keyChain.signWithSha256(*data); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 375 | |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 376 | m_nlsrFace.put(*data); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | void |
| 380 | Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name) |
| 381 | { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 382 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 383 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 384 | void |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 385 | Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification) |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 386 | { |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 387 | _LOG_TRACE("Nlsr::onFaceEventNotification called"); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 388 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 389 | switch (faceEventNotification.getKind()) { |
| 390 | case ndn::nfd::FACE_EVENT_DESTROYED: { |
| 391 | uint64_t faceId = faceEventNotification.getFaceId(); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 392 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 393 | auto adjacent = m_adjacencyList.findAdjacent(faceId); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 394 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 395 | if (adjacent != m_adjacencyList.end()) { |
| 396 | _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed"); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 397 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 398 | adjacent->setFaceId(0); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 399 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 400 | // 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 Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 417 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 418 | // 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 Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 421 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 422 | if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) { |
| 423 | getRoutingTable().scheduleRoutingTableCalculation(*this); |
| 424 | } |
| 425 | else { |
| 426 | m_nlsrLsdb.scheduleAdjLsaBuild(); |
| 427 | } |
Nick Gordon | e8e03ac | 2016-07-07 14:24:38 -0500 | [diff] [blame] | 428 | } |
Vince Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 429 | } |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 430 | break; |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 431 | } |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 432 | case ndn::nfd::FACE_EVENT_CREATED: { |
| 433 | // Find the neighbor in our adjacency list |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 434 | 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()) { |
| 439 | _LOG_DEBUG("Face creation event matches neighbor: " << adjacent->getName() |
| 440 | << ". New Face ID: " << faceEventNotification.getFaceId() |
| 441 | << ". Registering prefixes."); |
| 442 | adjacent->setFaceId(faceEventNotification.getFaceId()); |
| 443 | |
| 444 | registerAdjacencyPrefixes(*adjacent, ndn::time::milliseconds::max()); |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 445 | |
| 446 | if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) { |
| 447 | getRoutingTable().scheduleRoutingTableCalculation(*this); |
| 448 | } |
| 449 | else { |
| 450 | m_nlsrLsdb.scheduleAdjLsaBuild(); |
| 451 | } |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 452 | } |
| 453 | break; |
| 454 | } |
| 455 | default: |
| 456 | break; |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 457 | } |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 458 | } |
| 459 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 460 | void |
| 461 | Nlsr::initializeFaces(const FetchDatasetCallback& onFetchSuccess, |
| 462 | const FetchDatasetTimeoutCallback& onFetchFailure) |
| 463 | { |
| 464 | _LOG_TRACE("Initializing Faces..."); |
| 465 | |
| 466 | m_faceDatasetController.fetch<ndn::nfd::FaceDataset>(onFetchSuccess, onFetchFailure); |
| 467 | |
| 468 | } |
| 469 | |
| 470 | void |
| 471 | Nlsr::processFaceDataset(const std::vector<ndn::nfd::FaceStatus>& faces) |
| 472 | { |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 473 | _LOG_DEBUG("Processing face dataset"); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 474 | |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 475 | // 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 Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 479 | // Check the list of FaceStatus objects we got for a match |
| 480 | for (const ndn::nfd::FaceStatus& faceStatus : faces) { |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 481 | // Set the adjacency FaceID if we find a URI match and it was |
| 482 | // previously unset. Change the boolean to true. |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 483 | if (adjacent.getFaceId() == 0 && faceUriString == faceStatus.getRemoteUri()) { |
| 484 | _LOG_DEBUG("FaceUri: " << faceStatus.getRemoteUri() << |
| 485 | " FaceId: "<< faceStatus.getFaceId()); |
| 486 | adjacent.setFaceId(faceStatus.getFaceId()); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 487 | // Register the prefixes for each neighbor |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 488 | this->registerAdjacencyPrefixes(adjacent, ndn::time::milliseconds::max()); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 489 | } |
| 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 Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 495 | if (adjacent.getFaceId() == 0) { |
| 496 | _LOG_WARN("The adjacency " << adjacent.getName() << |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 497 | " has no Face information in this dataset."); |
| 498 | } |
| 499 | } |
| 500 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 501 | scheduleDatasetFetch(); |
| 502 | } |
| 503 | |
| 504 | void |
| 505 | Nlsr::registerAdjacencyPrefixes(const Adjacent& adj, |
| 506 | const ndn::time::milliseconds& timeout) |
| 507 | { |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 508 | ndn::util::FaceUri faceUri = adj.getFaceUri(); |
| 509 | double linkCost = adj.getLinkCost(); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 510 | |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 511 | m_fib.registerPrefix(adj.getName(), faceUri, linkCost, |
| 512 | timeout, ndn::nfd::ROUTE_FLAG_CAPTURE, 0); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 513 | |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 514 | m_fib.registerPrefix(m_confParam.getChronosyncPrefix(), |
| 515 | faceUri, linkCost, timeout, |
| 516 | ndn::nfd::ROUTE_FLAG_CAPTURE, 0); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 517 | |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 518 | m_fib.registerPrefix(m_confParam.getLsaPrefix(), |
| 519 | faceUri, linkCost, timeout, |
| 520 | ndn::nfd::ROUTE_FLAG_CAPTURE, 0); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 521 | |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 522 | 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 Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | void |
| 530 | Nlsr::onFaceDatasetFetchTimeout(uint32_t code, |
| 531 | const std::string& msg, |
| 532 | uint32_t nRetriesSoFar) |
| 533 | { |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 534 | _LOG_DEBUG("onFaceDatasetFetchTimeout"); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 535 | // If we have exceeded the maximum attempt count, do not try again. |
| 536 | if (nRetriesSoFar++ < m_confParam.getFaceDatasetFetchTries()) { |
| 537 | _LOG_DEBUG("Failed to fetch dataset: " << msg << ". Attempting retry #" << nRetriesSoFar); |
| 538 | 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 { |
| 544 | _LOG_ERROR("Failed to fetch dataset: " << msg << ". Exceeded limit of " << |
| 545 | 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 | |
| 553 | void |
| 554 | Nlsr::scheduleDatasetFetch() |
| 555 | { |
Ashlesh Gawande | 793e870 | 2017-08-01 15:59:26 -0500 | [diff] [blame] | 556 | _LOG_DEBUG("Scheduling Dataset Fetch in " << m_confParam.getFaceDatasetFetchInterval() |
| 557 | << " seconds"); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 558 | 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 | } |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 569 | |
| 570 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 571 | Nlsr::startEventLoop() |
| 572 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 573 | m_nlsrFace.processEvents(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 574 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 575 | |
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame] | 576 | } // namespace nlsr |