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 | |
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 | |
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) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 73 | , m_prefixUpdateProcessor(m_nlsrFace, |
| 74 | m_namePrefixList, |
| 75 | m_nlsrLsdb, |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 76 | DEFAULT_BROADCAST_PREFIX, |
| 77 | m_keyChain, |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 78 | m_certificateCache, |
| 79 | m_certStore) |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 80 | , m_nfdRibCommandProcessor(m_localhostDispatcher, |
Nick Gordon | 4d2c6c0 | 2017-01-20 13:18:46 -0600 | [diff] [blame] | 81 | m_namePrefixList, |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 82 | m_nlsrLsdb) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 83 | , m_faceMonitor(m_nlsrFace) |
| 84 | , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT) |
| 85 | { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 86 | m_faceMonitor.onNotification.connect(std::bind(&Nlsr::onFaceEventNotification, this, _1)); |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 87 | m_faceMonitor.start(); |
| 88 | } |
| 89 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 90 | void |
| 91 | Nlsr::registrationFailed(const ndn::Name& name) |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 92 | { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 93 | std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << std::endl; |
| 94 | BOOST_THROW_EXCEPTION(Error("Error: Prefix registration failed")); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 95 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 96 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 97 | void |
| 98 | Nlsr::onRegistrationSuccess(const ndn::Name& name) |
| 99 | { |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 100 | _LOG_DEBUG("Successfully registered prefix: " << name); |
| 101 | |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 102 | if (name.equals(m_confParam.getRouterPrefix())) { |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 103 | // the top-level prefixes are added. |
| 104 | try { |
| 105 | m_routerNameDispatcher.addTopPrefix(m_confParam.getRouterPrefix(), false, m_signingInfo); |
| 106 | } |
| 107 | catch (const std::exception& e) { |
| 108 | _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n"); |
| 109 | } |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 110 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 111 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 112 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 113 | void |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 114 | Nlsr::onLocalhostRegistrationSuccess(const ndn::Name& name) |
| 115 | { |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 116 | _LOG_DEBUG("Successfully registered local prefix: " << name); |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 117 | |
| 118 | m_prefixUpdateProcessor.startListening(); |
Nick Gordon | 4d2c6c0 | 2017-01-20 13:18:46 -0600 | [diff] [blame] | 119 | m_nfdRibCommandProcessor.startListening(); |
| 120 | // All dispatcher-related sub-prefixes *must* be registered before |
| 121 | // the top-level prefixes are added. |
| 122 | try { |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 123 | m_localhostDispatcher.addTopPrefix(LOCALHOST_PREFIX, false, m_signingInfo); |
Nick Gordon | 4d2c6c0 | 2017-01-20 13:18:46 -0600 | [diff] [blame] | 124 | } |
| 125 | catch (const std::exception& e) { |
| 126 | _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n"); |
| 127 | } |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 131 | Nlsr::setInfoInterestFilter() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 132 | { |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 133 | ndn::Name name(m_confParam.getRouterPrefix()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 134 | _LOG_DEBUG("Setting interest filter for name: " << name); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 135 | getNlsrFace().setInterestFilter(name, |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 136 | std::bind(&HelloProtocol::processInterest, |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 137 | &m_helloProtocol, _1, _2), |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 138 | std::bind(&Nlsr::onRegistrationSuccess, this, _1), |
| 139 | std::bind(&Nlsr::registrationFailed, this, _1), |
| 140 | m_signingInfo, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 141 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | void |
| 145 | Nlsr::setLsaInterestFilter() |
| 146 | { |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 147 | ndn::Name name = m_confParam.getLsaPrefix(); |
akmhoque | 50125a9 | 2014-06-30 08:54:17 -0500 | [diff] [blame] | 148 | name.append(m_confParam.getSiteName()); |
| 149 | name.append(m_confParam.getRouterName()); |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 150 | _LOG_DEBUG("Setting interest filter for LsaPrefix: " << name); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 151 | getNlsrFace().setInterestFilter(name, |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 152 | std::bind(&Lsdb::processInterest, |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 153 | &m_nlsrLsdb, _1, _2), |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 154 | std::bind(&Nlsr::onRegistrationSuccess, this, _1), |
| 155 | std::bind(&Nlsr::registrationFailed, this, _1), |
| 156 | m_signingInfo, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 157 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | void |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 161 | Nlsr::setStrategies() |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 162 | { |
Vince Lehman | 53c0e3e | 2015-09-14 14:33:20 -0500 | [diff] [blame] | 163 | const std::string strategy("ndn:/localhost/nfd/strategy/multicast"); |
| 164 | |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame] | 165 | ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 166 | broadcastKeyPrefix.append("KEYS"); |
Vince Lehman | 53c0e3e | 2015-09-14 14:33:20 -0500 | [diff] [blame] | 167 | |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 168 | m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0); |
| 169 | m_fib.setStrategy(broadcastKeyPrefix, strategy, 0); |
| 170 | m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | void |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 174 | Nlsr::daemonize() |
| 175 | { |
| 176 | pid_t process_id = 0; |
| 177 | pid_t sid = 0; |
| 178 | process_id = fork(); |
| 179 | if (process_id < 0){ |
| 180 | std::cerr << "Daemonization failed!" << std::endl; |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 181 | BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- fork failed!")); |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 182 | } |
| 183 | if (process_id > 0) { |
| 184 | _LOG_DEBUG("Process daemonized. Process id: " << process_id); |
| 185 | exit(0); |
| 186 | } |
| 187 | |
| 188 | umask(0); |
| 189 | sid = setsid(); |
| 190 | if(sid < 0) { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 191 | BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- setting id failed!")); |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | if (chdir("/") < 0) { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 195 | BOOST_THROW_EXCEPTION(Error("Error: Daemonization process-chdir failed!")); |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 196 | } |
| 197 | } |
| 198 | |
| 199 | void |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 200 | Nlsr::canonizeContinuation(std::list<Adjacent>::iterator iterator) |
| 201 | { |
| 202 | canonizeNeighborUris(iterator, [this] (std::list<Adjacent>::iterator iterator) { |
| 203 | canonizeContinuation(iterator); |
| 204 | }); |
| 205 | } |
| 206 | |
| 207 | void |
| 208 | Nlsr::canonizeNeighborUris(std::list<Adjacent>::iterator currentNeighbor, |
| 209 | std::function<void(std::list<Adjacent>::iterator)> then) |
| 210 | { |
| 211 | if (currentNeighbor != m_adjacencyList.getAdjList().end()) { |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 212 | ndn::util::FaceUri uri(currentNeighbor->getFaceUri()); |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 213 | uri.canonize([this, then, currentNeighbor] (ndn::util::FaceUri canonicalUri) { |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 214 | _LOG_DEBUG("Canonized URI: " << currentNeighbor->getFaceUri() |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 215 | << " to: " << canonicalUri); |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 216 | currentNeighbor->setFaceUri(canonicalUri); |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 217 | then(std::next(currentNeighbor)); |
| 218 | }, |
| 219 | [this, then, currentNeighbor] (const std::string& reason) { |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 220 | _LOG_ERROR("Could not canonize URI: " << currentNeighbor->getFaceUri() |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 221 | << " because: " << reason); |
| 222 | then(std::next(currentNeighbor)); |
| 223 | }, |
| 224 | m_nlsrFace.getIoService(), |
| 225 | TIME_ALLOWED_FOR_CANONIZATION); |
| 226 | } |
| 227 | // We have finished canonizing all neighbors, so initialize NLSR. |
| 228 | else { |
| 229 | initialize(); |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 234 | Nlsr::initialize() |
| 235 | { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 236 | _LOG_DEBUG("Initializing Nlsr"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 237 | m_confParam.buildRouterPrefix(); |
Muktadir R Chowdhury | 3ac0728 | 2016-06-17 16:30:29 -0500 | [diff] [blame] | 238 | m_lsdbDatasetHandler.setRouterNameCommandPrefix(m_confParam.getRouterPrefix()); |
Alexander Afanasyev | 411ee4b | 2014-08-16 23:17:03 -0700 | [diff] [blame] | 239 | m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime())); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 240 | m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 241 | m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime()); |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 242 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 243 | m_nlsrLsdb.getSequencingManager().setSeqFileDirectory(m_confParam.getSeqFileDir()); |
| 244 | m_nlsrLsdb.getSequencingManager().initiateSeqNoFromFile(m_confParam.getHyperbolicState()); |
| 245 | |
| 246 | m_nlsrLsdb.getSyncLogicHandler().createSyncSocket(m_confParam.getChronosyncPrefix()); |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 247 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 248 | // Logging start |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 249 | m_confParam.writeLog(); |
| 250 | m_adjacencyList.writeLog(); |
Nick Gordon | 494de40 | 2017-06-14 12:48:51 -0500 | [diff] [blame] | 251 | _LOG_DEBUG(m_namePrefixList); |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 252 | // Logging end |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 253 | initializeKey(); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 254 | setStrategies(); |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 255 | _LOG_DEBUG("Default NLSR identity: " << m_signingInfo.getSignerName()); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 256 | setInfoInterestFilter(); |
| 257 | setLsaInterestFilter(); |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 258 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 259 | initializeFaces(std::bind(&Nlsr::processFaceDataset, this, _1), |
| 260 | std::bind(&Nlsr::onFaceDatasetFetchTimeout, this, _1, _2, 0)); |
| 261 | |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 262 | // Set event intervals |
| 263 | setFirstHelloInterval(m_confParam.getFirstHelloInterval()); |
| 264 | m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval()); |
| 265 | m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval()); |
| 266 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 267 | m_nlsrLsdb.buildAndInstallOwnNameLsa(); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 268 | |
| 269 | // Install coordinate LSAs if using HR or dry-run HR. |
| 270 | if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) { |
| 271 | m_nlsrLsdb.buildAndInstallOwnCoordinateLsa(); |
| 272 | } |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 273 | |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 274 | registerKeyPrefix(); |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 275 | registerLocalhostPrefix(); |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 276 | |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 277 | m_helloProtocol.scheduleInterest(m_firstHelloInterval); |
Vince Lehman | 0913112 | 2014-09-09 17:10:11 -0500 | [diff] [blame] | 278 | |
| 279 | // Need to set direct neighbors' costs to 0 for hyperbolic routing |
| 280 | if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) { |
| 281 | |
| 282 | std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList(); |
| 283 | |
| 284 | for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) { |
| 285 | it->setLinkCost(0); |
| 286 | } |
| 287 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | void |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 291 | Nlsr::initializeKey() |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 292 | { |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 293 | ndn::Name defaultIdentity = m_confParam.getRouterPrefix(); |
| 294 | defaultIdentity.append("NLSR"); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 295 | |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 296 | try { |
| 297 | m_keyChain.deleteIdentity(defaultIdentity); |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 298 | } |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 299 | catch (const std::exception& e) { |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 300 | } |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 301 | m_signingInfo = ndn::security::SigningInfo(ndn::security::SigningInfo::SIGNER_TYPE_ID, defaultIdentity); |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 302 | |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 303 | ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(defaultIdentity, true); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 304 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 305 | std::shared_ptr<ndn::IdentityCertificate> certificate = |
| 306 | std::make_shared<ndn::IdentityCertificate>(); |
| 307 | std::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName); |
Yingdi Yu | 191f5fa | 2014-08-06 17:08:52 -0700 | [diff] [blame] | 308 | Name certificateName = keyName.getPrefix(-1); |
| 309 | certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion(); |
| 310 | certificate->setName(certificateName); |
| 311 | certificate->setNotBefore(time::system_clock::now() - time::days(1)); |
| 312 | certificate->setNotAfter(time::system_clock::now() + time::days(7300)); // ~20 years |
| 313 | certificate->setPublicKeyInfo(*pubKey); |
| 314 | certificate->addSubjectDescription(CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME, |
| 315 | keyName.toUri())); |
| 316 | certificate->encode(); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 317 | m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix()); |
| 318 | |
| 319 | m_keyChain.addCertificateAsIdentityDefault(*certificate); |
| 320 | loadCertToPublish(certificate); |
| 321 | |
| 322 | m_defaultCertName = certificate->getName(); |
| 323 | } |
| 324 | |
| 325 | void |
| 326 | Nlsr::registerKeyPrefix() |
| 327 | { |
| 328 | ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 329 | keyPrefix.append("KEYS"); |
| 330 | m_nlsrFace.setInterestFilter(keyPrefix, |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 331 | std::bind(&Nlsr::onKeyInterest, |
Yingdi Yu | 6a3a4dd | 2014-06-20 14:10:39 -0700 | [diff] [blame] | 332 | this, _1, _2), |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 333 | std::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1), |
| 334 | std::bind(&Nlsr::registrationFailed, this, _1), |
| 335 | m_signingInfo, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 336 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 337 | |
| 338 | } |
| 339 | |
| 340 | void |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 341 | Nlsr::registerLocalhostPrefix() |
| 342 | { |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 343 | m_nlsrFace.registerPrefix(LOCALHOST_PREFIX, |
| 344 | std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1), |
| 345 | std::bind(&Nlsr::registrationFailed, this, _1)); |
| 346 | } |
| 347 | |
| 348 | void |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 349 | Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest) |
| 350 | { |
| 351 | const ndn::Name& interestName = interest.getName(); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 352 | ndn::Name certName = interestName.getSubName(name.size()); |
| 353 | |
| 354 | if (certName[-2].toUri() == "ID-CERT") |
| 355 | { |
| 356 | certName = certName.getPrefix(-1); |
| 357 | } |
| 358 | else if (certName[-1].toUri() != "ID-CERT") |
dmcoomes | 9eaf3f4 | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 359 | { |
| 360 | _LOG_DEBUG("certName for interest " << interest << " is malformed," |
| 361 | << " contains incorrect namespace syntax"); |
| 362 | return; |
| 363 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 364 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 365 | std::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 366 | |
| 367 | if (!static_cast<bool>(cert)) |
dmcoomes | 9eaf3f4 | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 368 | { |
| 369 | _LOG_DEBUG("cert is not found for " << interest); |
| 370 | return; // cert is not found |
| 371 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 372 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 373 | std::shared_ptr<ndn::Data> data = std::make_shared<ndn::Data>(); |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 374 | data->setName(interestName); |
| 375 | data->setContent(cert->wireEncode()); |
| 376 | m_keyChain.signWithSha256(*data); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 377 | |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 378 | m_nlsrFace.put(*data); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | void |
| 382 | Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name) |
| 383 | { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 384 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 385 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 386 | void |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 387 | Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification) |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 388 | { |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 389 | _LOG_TRACE("Nlsr::onFaceEventNotification called"); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 390 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 391 | switch (faceEventNotification.getKind()) { |
| 392 | case ndn::nfd::FACE_EVENT_DESTROYED: { |
| 393 | uint64_t faceId = faceEventNotification.getFaceId(); |
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 | auto adjacent = m_adjacencyList.findAdjacent(faceId); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 396 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 397 | if (adjacent != m_adjacencyList.end()) { |
| 398 | _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed"); |
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 | adjacent->setFaceId(0); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 401 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 402 | // Only trigger an Adjacency LSA build if this node is changing |
| 403 | // from ACTIVE to INACTIVE since this rebuild will effectively |
| 404 | // cancel the previous Adjacency LSA refresh event and schedule |
| 405 | // a new one further in the future. |
| 406 | // |
| 407 | // Continuously scheduling the refresh in the future will block |
| 408 | // the router from refreshing its Adjacency LSA. Since other |
| 409 | // routers' Name prefixes' expiration times are updated when |
| 410 | // this router refreshes its Adjacency LSA, the other routers' |
| 411 | // prefixes will expire and be removed from the RIB. |
| 412 | // |
| 413 | // This check is required to fix Bug #2733 for now. This check |
| 414 | // would be unnecessary to fix Bug #2733 when Issue #2732 is |
| 415 | // completed, but the check also helps with optimization so it |
| 416 | // can remain even when Issue #2732 is implemented. |
| 417 | if (adjacent->getStatus() == Adjacent::STATUS_ACTIVE) { |
| 418 | adjacent->setStatus(Adjacent::STATUS_INACTIVE); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 419 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 420 | // A new adjacency LSA cannot be built until the neighbor is marked INACTIVE and |
| 421 | // has met the HELLO retry threshold |
| 422 | adjacent->setInterestTimedOutNo(m_confParam.getInterestRetryNumber()); |
Vince Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 423 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 424 | if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) { |
| 425 | getRoutingTable().scheduleRoutingTableCalculation(*this); |
| 426 | } |
| 427 | else { |
| 428 | m_nlsrLsdb.scheduleAdjLsaBuild(); |
| 429 | } |
Nick Gordon | e8e03ac | 2016-07-07 14:24:38 -0500 | [diff] [blame] | 430 | } |
Vince Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 431 | } |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 432 | break; |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 433 | } |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 434 | case ndn::nfd::FACE_EVENT_CREATED: { |
| 435 | // Find the neighbor in our adjacency list |
| 436 | _LOG_DEBUG("Face created event received."); |
| 437 | auto adjacent = m_adjacencyList.findAdjacent( |
| 438 | ndn::util::FaceUri(faceEventNotification.getRemoteUri())); |
| 439 | // If we have a neighbor by that FaceUri and it has no FaceId, we |
| 440 | // have a match. |
| 441 | if (adjacent != m_adjacencyList.end()) { |
| 442 | _LOG_DEBUG("Face creation event matches neighbor: " << adjacent->getName() |
| 443 | << ". New Face ID: " << faceEventNotification.getFaceId() |
| 444 | << ". Registering prefixes."); |
| 445 | adjacent->setFaceId(faceEventNotification.getFaceId()); |
| 446 | |
| 447 | registerAdjacencyPrefixes(*adjacent, ndn::time::milliseconds::max()); |
| 448 | } |
| 449 | break; |
| 450 | } |
| 451 | default: |
| 452 | break; |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 453 | } |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 454 | } |
| 455 | |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 456 | void |
| 457 | Nlsr::initializeFaces(const FetchDatasetCallback& onFetchSuccess, |
| 458 | const FetchDatasetTimeoutCallback& onFetchFailure) |
| 459 | { |
| 460 | _LOG_TRACE("Initializing Faces..."); |
| 461 | |
| 462 | m_faceDatasetController.fetch<ndn::nfd::FaceDataset>(onFetchSuccess, onFetchFailure); |
| 463 | |
| 464 | } |
| 465 | |
| 466 | void |
| 467 | Nlsr::processFaceDataset(const std::vector<ndn::nfd::FaceStatus>& faces) |
| 468 | { |
| 469 | // Iterate over each neighbor listed in nlsr.conf |
| 470 | bool anyFaceChanged = false; |
| 471 | for (auto&& adjacency : m_adjacencyList.getAdjList()) { |
| 472 | |
| 473 | const std::string faceUriString = adjacency.getFaceUri().toString(); |
| 474 | // Check the list of FaceStatus objects we got for a match |
| 475 | for (const ndn::nfd::FaceStatus& faceStatus : faces) { |
| 476 | |
| 477 | // Set the adjacency FaceID if we find a URI match and it was |
| 478 | // previously unset. Change the boolean to true. |
| 479 | if (adjacency.getFaceId() == 0 && faceUriString == faceStatus.getRemoteUri()) { |
| 480 | adjacency.setFaceId(faceStatus.getFaceId()); |
| 481 | anyFaceChanged = true; |
| 482 | // Register the prefixes for each neighbor |
| 483 | this->registerAdjacencyPrefixes(adjacency, ndn::time::milliseconds::max()); |
| 484 | } |
| 485 | } |
| 486 | // If this adjacency has no information in this dataset, then one |
| 487 | // of two things is happening: 1. NFD is starting slowly and this |
| 488 | // Face wasn't ready yet, or 2. NFD is configured |
| 489 | // incorrectly and this Face isn't available. |
| 490 | if (adjacency.getFaceId() == 0) { |
| 491 | _LOG_WARN("The adjacency " << adjacency.getName() << |
| 492 | " has no Face information in this dataset."); |
| 493 | } |
| 494 | } |
| 495 | |
| 496 | if (anyFaceChanged) { |
| 497 | // Only do these things if something has changed. Schedule an |
| 498 | // adjacency LSA build to update with all of the new neighbors if |
| 499 | // HR is off. |
| 500 | if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) { |
| 501 | getRoutingTable().scheduleRoutingTableCalculation(*this); |
| 502 | } |
| 503 | else { |
| 504 | m_nlsrLsdb.scheduleAdjLsaBuild(); |
| 505 | } |
| 506 | |
| 507 | // Begin the Hello Protocol loop immediately, so we don't wait. |
| 508 | m_helloProtocol.sendScheduledInterest(0); |
| 509 | } |
| 510 | |
| 511 | scheduleDatasetFetch(); |
| 512 | } |
| 513 | |
| 514 | void |
| 515 | Nlsr::registerAdjacencyPrefixes(const Adjacent& adj, |
| 516 | const ndn::time::milliseconds& timeout) |
| 517 | { |
| 518 | std::string faceUri = adj.getFaceUri().toString(); |
| 519 | double linkCost = adj.getLinkCost(); |
| 520 | |
| 521 | m_fib.registerPrefix(adj.getName(), faceUri, linkCost, |
| 522 | timeout, ndn::nfd::ROUTE_FLAG_CAPTURE, 0); |
| 523 | |
| 524 | m_fib.registerPrefix(m_confParam.getChronosyncPrefix(), |
| 525 | faceUri, linkCost, timeout, |
| 526 | ndn::nfd::ROUTE_FLAG_CAPTURE, 0); |
| 527 | |
| 528 | m_fib.registerPrefix(m_confParam.getLsaPrefix(), |
| 529 | faceUri, linkCost, timeout, |
| 530 | ndn::nfd::ROUTE_FLAG_CAPTURE, 0); |
| 531 | |
| 532 | ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 533 | broadcastKeyPrefix.append("KEYS"); |
| 534 | m_fib.registerPrefix(broadcastKeyPrefix, |
| 535 | faceUri, linkCost, timeout, |
| 536 | ndn::nfd::ROUTE_FLAG_CAPTURE, 0); |
| 537 | } |
| 538 | |
| 539 | void |
| 540 | Nlsr::onFaceDatasetFetchTimeout(uint32_t code, |
| 541 | const std::string& msg, |
| 542 | uint32_t nRetriesSoFar) |
| 543 | { |
| 544 | // If we have exceeded the maximum attempt count, do not try again. |
| 545 | if (nRetriesSoFar++ < m_confParam.getFaceDatasetFetchTries()) { |
| 546 | _LOG_DEBUG("Failed to fetch dataset: " << msg << ". Attempting retry #" << nRetriesSoFar); |
| 547 | m_faceDatasetController.fetch<ndn::nfd::FaceDataset>(std::bind(&Nlsr::processFaceDataset, |
| 548 | this, _1), |
| 549 | std::bind(&Nlsr::onFaceDatasetFetchTimeout, |
| 550 | this, _1, _2, nRetriesSoFar)); |
| 551 | } |
| 552 | else { |
| 553 | _LOG_ERROR("Failed to fetch dataset: " << msg << ". Exceeded limit of " << |
| 554 | m_confParam.getFaceDatasetFetchTries() << ", so not trying again this time."); |
| 555 | // If we fail to fetch it, just do nothing until the next |
| 556 | // interval. Since this is a backup mechanism, we aren't as |
| 557 | // concerned with retrying. |
| 558 | scheduleDatasetFetch(); |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | void |
| 563 | Nlsr::scheduleDatasetFetch() |
| 564 | { |
| 565 | m_scheduler.scheduleEvent(m_confParam.getFaceDatasetFetchInterval(), |
| 566 | [this] { |
| 567 | this->initializeFaces( |
| 568 | [this] (const std::vector<ndn::nfd::FaceStatus>& faces) { |
| 569 | this->processFaceDataset(faces); |
| 570 | }, |
| 571 | [this] (uint32_t code, const std::string& msg) { |
| 572 | this->onFaceDatasetFetchTimeout(code, msg, 0); |
| 573 | }); |
| 574 | }); |
| 575 | } |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 576 | |
| 577 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 578 | Nlsr::startEventLoop() |
| 579 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 580 | m_nlsrFace.processEvents(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 581 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 582 | |
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame] | 583 | } // namespace nlsr |