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 | |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 32 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 33 | namespace nlsr { |
| 34 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 35 | INIT_LOGGER("nlsr"); |
| 36 | |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 37 | const ndn::Name Nlsr::LOCALHOST_PREFIX = ndn::Name("/localhost/nlsr"); |
| 38 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 39 | using namespace ndn; |
| 40 | using namespace std; |
| 41 | |
Laqin Fan | a4cf402 | 2017-01-03 18:57:35 +0000 | [diff] [blame] | 42 | 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] | 43 | : m_nlsrFace(face) |
| 44 | , m_scheduler(scheduler) |
Laqin Fan | a4cf402 | 2017-01-03 18:57:35 +0000 | [diff] [blame] | 45 | , m_keyChain(keyChain) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 46 | , m_confParam() |
| 47 | , m_adjacencyList() |
| 48 | , m_namePrefixList() |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 49 | , m_isDaemonProcess(false) |
| 50 | , m_configFileName("nlsr.conf") |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 51 | , m_nlsrLsdb(*this, scheduler) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 52 | , m_adjBuildCount(0) |
| 53 | , m_isBuildAdjLsaSheduled(false) |
| 54 | , m_isRouteCalculationScheduled(false) |
| 55 | , m_isRoutingTableCalculating(false) |
| 56 | , m_routingTable(scheduler) |
| 57 | , m_fib(m_nlsrFace, scheduler, m_adjacencyList, m_confParam, m_keyChain) |
| 58 | , m_namePrefixTable(*this) |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 59 | , m_localhostDispatcher(m_nlsrFace, m_keyChain) |
| 60 | , m_routerNameDispatcher(m_nlsrFace, m_keyChain) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 61 | , m_lsdbDatasetHandler(m_nlsrLsdb, |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 62 | m_localhostDispatcher, |
| 63 | m_routerNameDispatcher, |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 64 | m_nlsrFace, |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 65 | m_keyChain) |
Vince Lehman | f7eec4f | 2015-05-08 19:02:31 -0500 | [diff] [blame] | 66 | , m_helloProtocol(*this, scheduler) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 67 | , m_certificateCache(new ndn::CertificateCacheTtl(ioService)) |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 68 | , m_validator(m_nlsrFace, DEFAULT_BROADCAST_PREFIX, m_certificateCache, m_certStore) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 69 | , m_prefixUpdateProcessor(m_nlsrFace, |
| 70 | m_namePrefixList, |
| 71 | m_nlsrLsdb, |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 72 | DEFAULT_BROADCAST_PREFIX, |
| 73 | m_keyChain, |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 74 | m_certificateCache, |
| 75 | m_certStore) |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 76 | , m_nfdRibCommandProcessor(m_localhostDispatcher, |
Nick Gordon | 4d2c6c0 | 2017-01-20 13:18:46 -0600 | [diff] [blame] | 77 | m_namePrefixList, |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 78 | m_nlsrLsdb) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 79 | , m_faceMonitor(m_nlsrFace) |
| 80 | , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT) |
| 81 | { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 82 | m_faceMonitor.onNotification.connect(std::bind(&Nlsr::onFaceEventNotification, this, _1)); |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 83 | m_faceMonitor.start(); |
| 84 | } |
| 85 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 86 | void |
| 87 | Nlsr::registrationFailed(const ndn::Name& name) |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 88 | { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 89 | std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << std::endl; |
| 90 | BOOST_THROW_EXCEPTION(Error("Error: Prefix registration failed")); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 91 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 92 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 93 | void |
| 94 | Nlsr::onRegistrationSuccess(const ndn::Name& name) |
| 95 | { |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 96 | _LOG_DEBUG("Successfully registered prefix: " << name); |
| 97 | |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 98 | if (name.equals(m_confParam.getRouterPrefix())) { |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 99 | // the top-level prefixes are added. |
| 100 | try { |
| 101 | m_routerNameDispatcher.addTopPrefix(m_confParam.getRouterPrefix(), false, m_signingInfo); |
| 102 | } |
| 103 | catch (const std::exception& e) { |
| 104 | _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n"); |
| 105 | } |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 106 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 107 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 108 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 109 | void |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 110 | Nlsr::onLocalhostRegistrationSuccess(const ndn::Name& name) |
| 111 | { |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 112 | _LOG_DEBUG("Successfully registered local prefix: " << name); |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 113 | |
| 114 | m_prefixUpdateProcessor.startListening(); |
Nick Gordon | 4d2c6c0 | 2017-01-20 13:18:46 -0600 | [diff] [blame] | 115 | m_nfdRibCommandProcessor.startListening(); |
| 116 | // All dispatcher-related sub-prefixes *must* be registered before |
| 117 | // the top-level prefixes are added. |
| 118 | try { |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 119 | m_localhostDispatcher.addTopPrefix(LOCALHOST_PREFIX, false, m_signingInfo); |
Nick Gordon | 4d2c6c0 | 2017-01-20 13:18:46 -0600 | [diff] [blame] | 120 | } |
| 121 | catch (const std::exception& e) { |
| 122 | _LOG_ERROR("Error setting top-level prefix in dispatcher: " << e.what() << "\n"); |
| 123 | } |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 127 | Nlsr::setInfoInterestFilter() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 128 | { |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 129 | ndn::Name name(m_confParam.getRouterPrefix()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 130 | _LOG_DEBUG("Setting interest filter for name: " << name); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 131 | getNlsrFace().setInterestFilter(name, |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 132 | std::bind(&HelloProtocol::processInterest, |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 133 | &m_helloProtocol, _1, _2), |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 134 | std::bind(&Nlsr::onRegistrationSuccess, this, _1), |
| 135 | std::bind(&Nlsr::registrationFailed, this, _1), |
| 136 | m_signingInfo, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 137 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | void |
| 141 | Nlsr::setLsaInterestFilter() |
| 142 | { |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 143 | ndn::Name name = m_confParam.getLsaPrefix(); |
akmhoque | 50125a9 | 2014-06-30 08:54:17 -0500 | [diff] [blame] | 144 | name.append(m_confParam.getSiteName()); |
| 145 | name.append(m_confParam.getRouterName()); |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 146 | _LOG_DEBUG("Setting interest filter for LsaPrefix: " << name); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 147 | getNlsrFace().setInterestFilter(name, |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 148 | std::bind(&Lsdb::processInterest, |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 149 | &m_nlsrLsdb, _1, _2), |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 150 | std::bind(&Nlsr::onRegistrationSuccess, this, _1), |
| 151 | std::bind(&Nlsr::registrationFailed, this, _1), |
| 152 | m_signingInfo, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 153 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | void |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 157 | Nlsr::setStrategies() |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 158 | { |
Vince Lehman | 53c0e3e | 2015-09-14 14:33:20 -0500 | [diff] [blame] | 159 | const std::string strategy("ndn:/localhost/nfd/strategy/multicast"); |
| 160 | |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame] | 161 | ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 162 | broadcastKeyPrefix.append("KEYS"); |
Vince Lehman | 53c0e3e | 2015-09-14 14:33:20 -0500 | [diff] [blame] | 163 | |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 164 | m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0); |
| 165 | m_fib.setStrategy(broadcastKeyPrefix, strategy, 0); |
| 166 | m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | void |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 170 | Nlsr::daemonize() |
| 171 | { |
| 172 | pid_t process_id = 0; |
| 173 | pid_t sid = 0; |
| 174 | process_id = fork(); |
| 175 | if (process_id < 0){ |
| 176 | std::cerr << "Daemonization failed!" << std::endl; |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 177 | BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- fork failed!")); |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 178 | } |
| 179 | if (process_id > 0) { |
| 180 | _LOG_DEBUG("Process daemonized. Process id: " << process_id); |
| 181 | exit(0); |
| 182 | } |
| 183 | |
| 184 | umask(0); |
| 185 | sid = setsid(); |
| 186 | if(sid < 0) { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 187 | BOOST_THROW_EXCEPTION(Error("Error: Daemonization process- setting id failed!")); |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | if (chdir("/") < 0) { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 191 | BOOST_THROW_EXCEPTION(Error("Error: Daemonization process-chdir failed!")); |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 192 | } |
| 193 | } |
| 194 | |
| 195 | void |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 196 | Nlsr::canonizeContinuation(std::list<Adjacent>::iterator iterator) |
| 197 | { |
| 198 | canonizeNeighborUris(iterator, [this] (std::list<Adjacent>::iterator iterator) { |
| 199 | canonizeContinuation(iterator); |
| 200 | }); |
| 201 | } |
| 202 | |
| 203 | void |
| 204 | Nlsr::canonizeNeighborUris(std::list<Adjacent>::iterator currentNeighbor, |
| 205 | std::function<void(std::list<Adjacent>::iterator)> then) |
| 206 | { |
| 207 | if (currentNeighbor != m_adjacencyList.getAdjList().end()) { |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 208 | ndn::util::FaceUri uri(currentNeighbor->getFaceUri()); |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 209 | uri.canonize([this, then, currentNeighbor] (ndn::util::FaceUri canonicalUri) { |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 210 | _LOG_DEBUG("Canonized URI: " << currentNeighbor->getFaceUri() |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 211 | << " to: " << canonicalUri); |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 212 | currentNeighbor->setFaceUri(canonicalUri); |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 213 | then(std::next(currentNeighbor)); |
| 214 | }, |
| 215 | [this, then, currentNeighbor] (const std::string& reason) { |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 216 | _LOG_ERROR("Could not canonize URI: " << currentNeighbor->getFaceUri() |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 217 | << " because: " << reason); |
| 218 | then(std::next(currentNeighbor)); |
| 219 | }, |
| 220 | m_nlsrFace.getIoService(), |
| 221 | TIME_ALLOWED_FOR_CANONIZATION); |
| 222 | } |
| 223 | // We have finished canonizing all neighbors, so initialize NLSR. |
| 224 | else { |
| 225 | initialize(); |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 230 | Nlsr::initialize() |
| 231 | { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 232 | _LOG_DEBUG("Initializing Nlsr"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 233 | m_confParam.buildRouterPrefix(); |
Muktadir R Chowdhury | 3ac0728 | 2016-06-17 16:30:29 -0500 | [diff] [blame] | 234 | m_lsdbDatasetHandler.setRouterNameCommandPrefix(m_confParam.getRouterPrefix()); |
Alexander Afanasyev | 411ee4b | 2014-08-16 23:17:03 -0700 | [diff] [blame] | 235 | m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime())); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 236 | m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 237 | m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime()); |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 238 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 239 | m_nlsrLsdb.getSequencingManager().setSeqFileDirectory(m_confParam.getSeqFileDir()); |
| 240 | m_nlsrLsdb.getSequencingManager().initiateSeqNoFromFile(m_confParam.getHyperbolicState()); |
| 241 | |
| 242 | m_nlsrLsdb.getSyncLogicHandler().createSyncSocket(m_confParam.getChronosyncPrefix()); |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 243 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 244 | // Logging start |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 245 | m_confParam.writeLog(); |
| 246 | m_adjacencyList.writeLog(); |
Nick Gordon | 494de40 | 2017-06-14 12:48:51 -0500 | [diff] [blame] | 247 | _LOG_DEBUG(m_namePrefixList); |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 248 | // Logging end |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 249 | initializeKey(); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 250 | setStrategies(); |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 251 | _LOG_DEBUG("Default NLSR identity: " << m_signingInfo.getSignerName()); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 252 | setInfoInterestFilter(); |
| 253 | setLsaInterestFilter(); |
Vince Lehman | 50df6b7 | 2015-03-03 12:06:40 -0600 | [diff] [blame] | 254 | |
| 255 | // Set event intervals |
| 256 | setFirstHelloInterval(m_confParam.getFirstHelloInterval()); |
| 257 | m_nlsrLsdb.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval()); |
| 258 | m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval()); |
| 259 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 260 | m_nlsrLsdb.buildAndInstallOwnNameLsa(); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 261 | |
| 262 | // Install coordinate LSAs if using HR or dry-run HR. |
| 263 | if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) { |
| 264 | m_nlsrLsdb.buildAndInstallOwnCoordinateLsa(); |
| 265 | } |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 266 | |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 267 | registerKeyPrefix(); |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 268 | registerLocalhostPrefix(); |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 269 | |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 270 | m_helloProtocol.scheduleInterest(m_firstHelloInterval); |
Vince Lehman | 0913112 | 2014-09-09 17:10:11 -0500 | [diff] [blame] | 271 | |
| 272 | // Need to set direct neighbors' costs to 0 for hyperbolic routing |
| 273 | if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) { |
| 274 | |
| 275 | std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList(); |
| 276 | |
| 277 | for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) { |
| 278 | it->setLinkCost(0); |
| 279 | } |
| 280 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | void |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 284 | Nlsr::initializeKey() |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 285 | { |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 286 | ndn::Name defaultIdentity = m_confParam.getRouterPrefix(); |
| 287 | defaultIdentity.append("NLSR"); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 288 | |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 289 | try { |
| 290 | m_keyChain.deleteIdentity(defaultIdentity); |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 291 | } |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 292 | catch (const std::exception& e) { |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 293 | } |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 294 | m_signingInfo = ndn::security::SigningInfo(ndn::security::SigningInfo::SIGNER_TYPE_ID, defaultIdentity); |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 295 | |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 296 | ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(defaultIdentity, true); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 297 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 298 | std::shared_ptr<ndn::IdentityCertificate> certificate = |
| 299 | std::make_shared<ndn::IdentityCertificate>(); |
| 300 | std::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName); |
Yingdi Yu | 191f5fa | 2014-08-06 17:08:52 -0700 | [diff] [blame] | 301 | Name certificateName = keyName.getPrefix(-1); |
| 302 | certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion(); |
| 303 | certificate->setName(certificateName); |
| 304 | certificate->setNotBefore(time::system_clock::now() - time::days(1)); |
| 305 | certificate->setNotAfter(time::system_clock::now() + time::days(7300)); // ~20 years |
| 306 | certificate->setPublicKeyInfo(*pubKey); |
| 307 | certificate->addSubjectDescription(CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME, |
| 308 | keyName.toUri())); |
| 309 | certificate->encode(); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 310 | m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix()); |
| 311 | |
| 312 | m_keyChain.addCertificateAsIdentityDefault(*certificate); |
| 313 | loadCertToPublish(certificate); |
| 314 | |
| 315 | m_defaultCertName = certificate->getName(); |
| 316 | } |
| 317 | |
| 318 | void |
| 319 | Nlsr::registerKeyPrefix() |
| 320 | { |
| 321 | ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 322 | keyPrefix.append("KEYS"); |
| 323 | m_nlsrFace.setInterestFilter(keyPrefix, |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 324 | std::bind(&Nlsr::onKeyInterest, |
Yingdi Yu | 6a3a4dd | 2014-06-20 14:10:39 -0700 | [diff] [blame] | 325 | this, _1, _2), |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 326 | std::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1), |
| 327 | std::bind(&Nlsr::registrationFailed, this, _1), |
| 328 | m_signingInfo, |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 329 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 330 | |
| 331 | } |
| 332 | |
| 333 | void |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 334 | Nlsr::registerLocalhostPrefix() |
| 335 | { |
alvy | 297f416 | 2015-03-03 17:15:33 -0600 | [diff] [blame] | 336 | m_nlsrFace.registerPrefix(LOCALHOST_PREFIX, |
| 337 | std::bind(&Nlsr::onLocalhostRegistrationSuccess, this, _1), |
| 338 | std::bind(&Nlsr::registrationFailed, this, _1)); |
| 339 | } |
| 340 | |
| 341 | void |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 342 | Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest) |
| 343 | { |
| 344 | const ndn::Name& interestName = interest.getName(); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 345 | ndn::Name certName = interestName.getSubName(name.size()); |
| 346 | |
| 347 | if (certName[-2].toUri() == "ID-CERT") |
| 348 | { |
| 349 | certName = certName.getPrefix(-1); |
| 350 | } |
| 351 | else if (certName[-1].toUri() != "ID-CERT") |
dmcoomes | 9eaf3f4 | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 352 | { |
| 353 | _LOG_DEBUG("certName for interest " << interest << " is malformed," |
| 354 | << " contains incorrect namespace syntax"); |
| 355 | return; |
| 356 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 357 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 358 | std::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 359 | |
| 360 | if (!static_cast<bool>(cert)) |
dmcoomes | 9eaf3f4 | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 361 | { |
| 362 | _LOG_DEBUG("cert is not found for " << interest); |
| 363 | return; // cert is not found |
| 364 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 365 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 366 | std::shared_ptr<ndn::Data> data = std::make_shared<ndn::Data>(); |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 367 | data->setName(interestName); |
| 368 | data->setContent(cert->wireEncode()); |
| 369 | m_keyChain.signWithSha256(*data); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 370 | |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 371 | m_nlsrFace.put(*data); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | void |
| 375 | Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name) |
| 376 | { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 377 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 378 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 379 | void |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 380 | Nlsr::onDestroyFaceSuccess(const ndn::nfd::ControlParameters& commandSuccessResult) |
| 381 | { |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | void |
Junxiao Shi | 63bd034 | 2016-08-17 16:57:14 +0000 | [diff] [blame] | 385 | Nlsr::onDestroyFaceFailure(const ndn::nfd::ControlResponse& response) |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 386 | { |
Junxiao Shi | 63bd034 | 2016-08-17 16:57:14 +0000 | [diff] [blame] | 387 | std::cerr << response.getText() << " (code: " << response.getCode() << ")"; |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 388 | BOOST_THROW_EXCEPTION(Error("Error: Face destruction failed")); |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | void |
| 392 | Nlsr::destroyFaces() |
| 393 | { |
| 394 | std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList(); |
| 395 | for (std::list<Adjacent>::iterator it = adjacents.begin(); |
| 396 | it != adjacents.end(); it++) { |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 397 | m_fib.destroyFace((*it).getFaceUri().toString(), |
Joao Pereira | 97473d4 | 2015-07-03 16:57:27 -0400 | [diff] [blame] | 398 | std::bind(&Nlsr::onDestroyFaceSuccess, this, _1), |
Junxiao Shi | 63bd034 | 2016-08-17 16:57:14 +0000 | [diff] [blame] | 399 | std::bind(&Nlsr::onDestroyFaceFailure, this, _1)); |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 400 | } |
| 401 | } |
| 402 | |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 403 | void |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 404 | Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification) |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 405 | { |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 406 | _LOG_TRACE("Nlsr::onFaceEventNotification called"); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 407 | ndn::nfd::FaceEventKind kind = faceEventNotification.getKind(); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 408 | |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 409 | if (kind == ndn::nfd::FACE_EVENT_DESTROYED) { |
| 410 | uint64_t faceId = faceEventNotification.getFaceId(); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 411 | |
Nick Gordon | c780a69 | 2017-04-27 18:03:02 -0500 | [diff] [blame] | 412 | auto adjacent = m_adjacencyList.findAdjacent(faceId); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 413 | |
Nick Gordon | c780a69 | 2017-04-27 18:03:02 -0500 | [diff] [blame] | 414 | if (adjacent != m_adjacencyList.end()) { |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 415 | _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " << faceId << " destroyed"); |
| 416 | |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 417 | adjacent->setFaceId(0); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 418 | |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 419 | // Only trigger an Adjacency LSA build if this node is changing |
| 420 | // from ACTIVE to INACTIVE since this rebuild will effectively |
| 421 | // cancel the previous Adjacency LSA refresh event and schedule |
| 422 | // a new one further in the future. |
Vince Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 423 | // |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 424 | // Continuously scheduling the refresh in the future will block |
| 425 | // the router from refreshing its Adjacency LSA. Since other |
| 426 | // routers' Name prefixes' expiration times are updated when |
| 427 | // this router refreshes its Adjacency LSA, the other routers' |
| 428 | // prefixes will expire and be removed from the RIB. |
Vince Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 429 | // |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 430 | // This check is required to fix Bug #2733 for now. This check |
| 431 | // would be unnecessary to fix Bug #2733 when Issue #2732 is |
| 432 | // completed, but the check also helps with optimization so it |
| 433 | // can remain even when Issue #2732 is implemented. |
Vince Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 434 | if (adjacent->getStatus() == Adjacent::STATUS_ACTIVE) { |
| 435 | adjacent->setStatus(Adjacent::STATUS_INACTIVE); |
Vince Lehman | 02e3299 | 2015-03-11 12:31:20 -0500 | [diff] [blame] | 436 | |
Vince Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 437 | // A new adjacency LSA cannot be built until the neighbor is marked INACTIVE and |
| 438 | // has met the HELLO retry threshold |
| 439 | adjacent->setInterestTimedOutNo(m_confParam.getInterestRetryNumber()); |
| 440 | |
Nick Gordon | e8e03ac | 2016-07-07 14:24:38 -0500 | [diff] [blame] | 441 | if (m_confParam.getHyperbolicState() != HYPERBOLIC_STATE_OFF) { |
| 442 | getRoutingTable().scheduleRoutingTableCalculation(*this); |
| 443 | } |
| 444 | else { |
| 445 | m_nlsrLsdb.scheduleAdjLsaBuild(); |
| 446 | } |
Vince Lehman | 199e9cf | 2015-04-07 13:22:16 -0500 | [diff] [blame] | 447 | } |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 448 | } |
| 449 | } |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | |
| 453 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 454 | Nlsr::startEventLoop() |
| 455 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 456 | m_nlsrFace.processEvents(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 457 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 458 | |
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame] | 459 | } // namespace nlsr |