Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 7530635 | 2018-02-01 21:59:44 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Junxiao Shi | 1e46be3 | 2015-01-08 20:18:05 -0700 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 24 | */ |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 25 | |
| 26 | #include "rib-manager.hpp" |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 27 | #include "readvertise/readvertise.hpp" |
| 28 | #include "readvertise/client-to-nlsr-readvertise-policy.hpp" |
| 29 | #include "readvertise/nfd-rib-readvertise-destination.hpp" |
| 30 | |
Junxiao Shi | 7530635 | 2018-02-01 21:59:44 +0000 | [diff] [blame] | 31 | #include "core/fib-max-depth.hpp" |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 32 | #include "core/logger.hpp" |
Alexander Afanasyev | 63108c4 | 2014-07-07 19:10:47 -0700 | [diff] [blame] | 33 | #include "core/scheduler.hpp" |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 34 | |
Junxiao Shi | cbc8e94 | 2016-09-06 03:17:45 +0000 | [diff] [blame] | 35 | #include <ndn-cxx/lp/tags.hpp> |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 36 | #include <ndn-cxx/mgmt/nfd/control-command.hpp> |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 37 | #include <ndn-cxx/mgmt/nfd/control-parameters.hpp> |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 38 | #include <ndn-cxx/mgmt/nfd/control-response.hpp> |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 39 | #include <ndn-cxx/mgmt/nfd/face-status.hpp> |
| 40 | #include <ndn-cxx/mgmt/nfd/rib-entry.hpp> |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 41 | |
| 42 | namespace nfd { |
| 43 | namespace rib { |
| 44 | |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 45 | NFD_LOG_INIT("RibManager"); |
| 46 | |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 47 | const Name RibManager::LOCAL_HOST_TOP_PREFIX = "/localhost/nfd"; |
| 48 | const Name RibManager::LOCAL_HOP_TOP_PREFIX = "/localhop/nfd"; |
Junxiao Shi | fde3f54 | 2016-07-10 19:54:53 +0000 | [diff] [blame] | 49 | const std::string RibManager::MGMT_MODULE_NAME = "rib"; |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 50 | const Name RibManager::FACES_LIST_DATASET_PREFIX = "/localhost/nfd/faces/list"; |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 51 | const time::seconds RibManager::ACTIVE_FACE_FETCH_INTERVAL = time::seconds(300); |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 52 | const Name RibManager::READVERTISE_NLSR_PREFIX = "/localhost/nlsr"; |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 53 | |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 54 | RibManager::RibManager(Dispatcher& dispatcher, |
| 55 | ndn::Face& face, |
| 56 | ndn::KeyChain& keyChain) |
Junxiao Shi | fde3f54 | 2016-07-10 19:54:53 +0000 | [diff] [blame] | 57 | : ManagerBase(dispatcher, MGMT_MODULE_NAME) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 58 | , m_face(face) |
Vince Lehman | c1dfdb4 | 2015-07-16 12:17:36 -0500 | [diff] [blame] | 59 | , m_keyChain(keyChain) |
Junxiao Shi | 8e273ca | 2014-11-12 00:42:29 -0700 | [diff] [blame] | 60 | , m_nfdController(m_face, m_keyChain) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 61 | , m_faceMonitor(m_face) |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 62 | , m_localhostValidator(m_face) |
| 63 | , m_localhopValidator(m_face) |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 64 | , m_isLocalhopEnabled(false) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 65 | , m_prefixPropagator(m_nfdController, m_keyChain, m_rib) |
| 66 | , m_fibUpdater(m_rib, m_nfdController) |
| 67 | , m_addTopPrefix([&dispatcher] (const Name& topPrefix) { |
| 68 | dispatcher.addTopPrefix(topPrefix, false); |
| 69 | }) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 70 | { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 71 | registerCommandHandler<ndn::nfd::RibRegisterCommand>("register", |
| 72 | bind(&RibManager::registerEntry, this, _2, _3, _4, _5)); |
| 73 | registerCommandHandler<ndn::nfd::RibUnregisterCommand>("unregister", |
| 74 | bind(&RibManager::unregisterEntry, this, _2, _3, _4, _5)); |
| 75 | |
| 76 | registerStatusDatasetHandler("list", bind(&RibManager::listEntries, this, _1, _2, _3)); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 79 | RibManager::~RibManager() = default; |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 80 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 81 | void |
| 82 | RibManager::registerWithNfd() |
| 83 | { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 84 | registerTopPrefix(LOCAL_HOST_TOP_PREFIX); |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 85 | |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 86 | if (m_isLocalhopEnabled) { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 87 | registerTopPrefix(LOCAL_HOP_TOP_PREFIX); |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 88 | } |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 89 | |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 90 | NFD_LOG_INFO("Start monitoring face create/destroy events"); |
Junxiao Shi | fbf7834 | 2015-01-23 14:46:41 -0700 | [diff] [blame] | 91 | m_faceMonitor.onNotification.connect(bind(&RibManager::onNotification, this, _1)); |
Junxiao Shi | 15b12e7 | 2014-08-09 19:56:24 -0700 | [diff] [blame] | 92 | m_faceMonitor.start(); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 93 | |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 94 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | void |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 98 | RibManager::enableLocalFields() |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 99 | { |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 100 | m_nfdController.start<ndn::nfd::FaceUpdateCommand>( |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 101 | ControlParameters() |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 102 | .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, true), |
| 103 | bind(&RibManager::onEnableLocalFieldsSuccess, this), |
| 104 | bind(&RibManager::onEnableLocalFieldsError, this, _1)); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 108 | RibManager::setConfigFile(ConfigFile& configFile) |
| 109 | { |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 110 | configFile.addSectionHandler("rib", |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 111 | bind(&RibManager::onConfig, this, _1, _2, _3)); |
| 112 | } |
| 113 | |
| 114 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 115 | RibManager::onRibUpdateSuccess(const RibUpdate& update) |
| 116 | { |
| 117 | NFD_LOG_DEBUG("RIB update succeeded for " << update); |
| 118 | } |
| 119 | |
| 120 | void |
| 121 | RibManager::onRibUpdateFailure(const RibUpdate& update, uint32_t code, const std::string& error) |
| 122 | { |
| 123 | NFD_LOG_DEBUG("RIB update failed for " << update << " (code: " << code |
| 124 | << ", error: " << error << ")"); |
| 125 | |
| 126 | // Since the FIB rejected the update, clean up invalid routes |
| 127 | scheduleActiveFaceFetch(time::seconds(1)); |
| 128 | } |
| 129 | |
| 130 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 131 | RibManager::onConfig(const ConfigSection& configSection, |
Yingdi Yu | f4db0b5 | 2014-04-17 13:17:39 -0700 | [diff] [blame] | 132 | bool isDryRun, |
| 133 | const std::string& filename) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 134 | { |
Yanbiao Li | d7c9636 | 2015-01-30 23:58:24 -0800 | [diff] [blame] | 135 | bool isAutoPrefixPropagatorEnabled = false; |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 136 | bool wantReadvertiseToNlsr = false; |
Yanbiao Li | b9d439d | 2014-12-11 16:12:32 -0800 | [diff] [blame] | 137 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 138 | for (const auto& item : configSection) { |
| 139 | if (item.first == "localhost_security") { |
| 140 | m_localhostValidator.load(item.second, filename); |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 141 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 142 | else if (item.first == "localhop_security") { |
| 143 | m_localhopValidator.load(item.second, filename); |
| 144 | m_isLocalhopEnabled = true; |
Yanbiao Li | b9d439d | 2014-12-11 16:12:32 -0800 | [diff] [blame] | 145 | } |
Yanbiao Li | d7c9636 | 2015-01-30 23:58:24 -0800 | [diff] [blame] | 146 | else if (item.first == "auto_prefix_propagate") { |
| 147 | m_prefixPropagator.loadConfig(item.second); |
| 148 | isAutoPrefixPropagatorEnabled = true; |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 149 | |
| 150 | // Avoid other actions when isDryRun == true |
| 151 | if (isDryRun) { |
| 152 | continue; |
| 153 | } |
| 154 | |
Yanbiao Li | d7c9636 | 2015-01-30 23:58:24 -0800 | [diff] [blame] | 155 | m_prefixPropagator.enable(); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 156 | } |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 157 | else if (item.first == "readvertise_nlsr") { |
| 158 | wantReadvertiseToNlsr = ConfigFile::parseYesNo(item, "rib.readvertise_nlsr"); |
| 159 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 160 | else { |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 161 | BOOST_THROW_EXCEPTION(Error("Unrecognized rib property: " + item.first)); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
Yanbiao Li | d7c9636 | 2015-01-30 23:58:24 -0800 | [diff] [blame] | 165 | if (!isAutoPrefixPropagatorEnabled) { |
| 166 | m_prefixPropagator.disable(); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 167 | } |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 168 | |
| 169 | if (wantReadvertiseToNlsr && m_readvertiseNlsr == nullptr) { |
| 170 | NFD_LOG_DEBUG("Enabling readvertise-to-nlsr."); |
| 171 | m_readvertiseNlsr.reset(new Readvertise( |
| 172 | m_rib, |
| 173 | make_unique<ClientToNlsrReadvertisePolicy>(), |
| 174 | make_unique<NfdRibReadvertiseDestination>(m_nfdController, READVERTISE_NLSR_PREFIX, m_rib))); |
| 175 | } |
| 176 | else if (!wantReadvertiseToNlsr && m_readvertiseNlsr != nullptr) { |
| 177 | NFD_LOG_DEBUG("Disabling readvertise-to-nlsr."); |
| 178 | m_readvertiseNlsr.reset(); |
| 179 | } |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 183 | RibManager::registerTopPrefix(const Name& topPrefix) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 184 | { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 185 | // register entry to the FIB |
| 186 | m_nfdController.start<ndn::nfd::FibAddNextHopCommand>( |
| 187 | ControlParameters() |
Junxiao Shi | fde3f54 | 2016-07-10 19:54:53 +0000 | [diff] [blame] | 188 | .setName(Name(topPrefix).append(MGMT_MODULE_NAME)) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 189 | .setFaceId(0), |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 190 | bind(&RibManager::onCommandPrefixAddNextHopSuccess, this, cref(topPrefix), _1), |
Junxiao Shi | 29b4128 | 2016-08-22 03:47:02 +0000 | [diff] [blame] | 191 | bind(&RibManager::onCommandPrefixAddNextHopError, this, cref(topPrefix), _1)); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 192 | |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 193 | // add top prefix to the dispatcher |
| 194 | m_addTopPrefix(topPrefix); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 198 | RibManager::registerEntry(const Name& topPrefix, const Interest& interest, |
| 199 | ControlParameters parameters, |
| 200 | const ndn::mgmt::CommandContinuation& done) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 201 | { |
Junxiao Shi | 7530635 | 2018-02-01 21:59:44 +0000 | [diff] [blame] | 202 | if (parameters.getName().size() > FIB_MAX_DEPTH) { |
| 203 | done(ControlResponse(414, "Route prefix cannot exceed " + ndn::to_string(FIB_MAX_DEPTH) + |
| 204 | " components")); |
| 205 | return; |
| 206 | } |
| 207 | |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 208 | setFaceForSelfRegistration(interest, parameters); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 209 | |
| 210 | // Respond since command is valid and authorized |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 211 | done(ControlResponse(200, "Success").setBody(parameters.wireEncode())); |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame] | 212 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 213 | Route route; |
| 214 | route.faceId = parameters.getFaceId(); |
| 215 | route.origin = parameters.getOrigin(); |
| 216 | route.cost = parameters.getCost(); |
| 217 | route.flags = parameters.getFlags(); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 218 | |
Alexander Afanasyev | f67cf08 | 2014-07-18 16:47:29 -0700 | [diff] [blame] | 219 | if (parameters.hasExpirationPeriod() && |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 220 | parameters.getExpirationPeriod() != time::milliseconds::max()) { |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 221 | route.expires = time::steady_clock::now() + parameters.getExpirationPeriod(); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 222 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 223 | // Schedule a new event, the old one will be cancelled during rib insertion. |
| 224 | scheduler::EventId eventId = scheduler::schedule(parameters.getExpirationPeriod(), |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 225 | bind(&Rib::onRouteExpiration, &m_rib, parameters.getName(), route)); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 226 | |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 227 | NFD_LOG_TRACE("Scheduled unregistration at: " << *route.expires << |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 228 | " with EventId: " << eventId); |
| 229 | |
| 230 | // Set the NewEventId of this entry |
| 231 | route.setExpirationEvent(eventId); |
| 232 | } |
| 233 | else { |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 234 | route.expires = ndn::nullopt; |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 235 | } |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 236 | |
Vince Lehman | ff8b397 | 2015-02-20 16:51:21 -0600 | [diff] [blame] | 237 | NFD_LOG_INFO("Adding route " << parameters.getName() << " nexthop=" << route.faceId |
| 238 | << " origin=" << route.origin |
| 239 | << " cost=" << route.cost); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 240 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 241 | RibUpdate update; |
| 242 | update.setAction(RibUpdate::REGISTER) |
| 243 | .setName(parameters.getName()) |
| 244 | .setRoute(route); |
| 245 | |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 246 | m_rib.beginApplyUpdate(update, |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 247 | bind(&RibManager::onRibUpdateSuccess, this, update), |
| 248 | bind(&RibManager::onRibUpdateFailure, this, update, _1, _2)); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 249 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 250 | m_registeredFaces.insert(route.faceId); |
Vince Lehman | 281ded7 | 2014-08-21 12:17:08 -0500 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 254 | RibManager::unregisterEntry(const Name& topPrefix, const Interest& interest, |
| 255 | ControlParameters parameters, |
| 256 | const ndn::mgmt::CommandContinuation& done) |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 257 | { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 258 | setFaceForSelfRegistration(interest, parameters); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 259 | |
| 260 | // Respond since command is valid and authorized |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 261 | done(ControlResponse(200, "Success").setBody(parameters.wireEncode())); |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame] | 262 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 263 | Route route; |
| 264 | route.faceId = parameters.getFaceId(); |
| 265 | route.origin = parameters.getOrigin(); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 266 | |
Vince Lehman | ff8b397 | 2015-02-20 16:51:21 -0600 | [diff] [blame] | 267 | NFD_LOG_INFO("Removing route " << parameters.getName() << " nexthop=" << route.faceId |
| 268 | << " origin=" << route.origin); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 269 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 270 | RibUpdate update; |
| 271 | update.setAction(RibUpdate::UNREGISTER) |
| 272 | .setName(parameters.getName()) |
| 273 | .setRoute(route); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 274 | |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 275 | m_rib.beginApplyUpdate(update, |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 276 | bind(&RibManager::onRibUpdateSuccess, this, update), |
| 277 | bind(&RibManager::onRibUpdateFailure, this, update, _1, _2)); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 281 | RibManager::listEntries(const Name& topPrefix, const Interest& interest, |
| 282 | ndn::mgmt::StatusDatasetContext& context) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 283 | { |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 284 | auto now = time::steady_clock::now(); |
| 285 | for (const auto& kv : m_rib) { |
| 286 | const RibEntry& entry = *kv.second; |
| 287 | ndn::nfd::RibEntry item; |
| 288 | item.setName(entry.getName()); |
| 289 | for (const Route& route : entry.getRoutes()) { |
| 290 | ndn::nfd::Route r; |
| 291 | r.setFaceId(route.faceId); |
| 292 | r.setOrigin(route.origin); |
| 293 | r.setCost(route.cost); |
| 294 | r.setFlags(route.flags); |
| 295 | if (route.expires) { |
| 296 | r.setExpirationPeriod(time::duration_cast<time::milliseconds>(*route.expires - now)); |
| 297 | } |
| 298 | item.addRoute(r); |
| 299 | } |
| 300 | context.append(item.wireEncode()); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 301 | } |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 302 | context.end(); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 306 | RibManager::setFaceForSelfRegistration(const Interest& request, ControlParameters& parameters) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 307 | { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 308 | bool isSelfRegistration = (parameters.getFaceId() == 0); |
| 309 | if (isSelfRegistration) { |
| 310 | shared_ptr<lp::IncomingFaceIdTag> incomingFaceIdTag = request.getTag<lp::IncomingFaceIdTag>(); |
| 311 | // NDNLPv2 says "application MUST be prepared to receive a packet without IncomingFaceId field", |
| 312 | // but it's fine to assert IncomingFaceId is available, because InternalFace lives inside NFD |
| 313 | // and is initialized synchronously with IncomingFaceId field enabled. |
| 314 | BOOST_ASSERT(incomingFaceIdTag != nullptr); |
| 315 | parameters.setFaceId(*incomingFaceIdTag); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 316 | } |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 317 | } |
| 318 | |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 319 | ndn::mgmt::Authorization |
| 320 | RibManager::makeAuthorization(const std::string& verb) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 321 | { |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 322 | return [this] (const Name& prefix, const Interest& interest, |
| 323 | const ndn::mgmt::ControlParameters* params, |
| 324 | const ndn::mgmt::AcceptContinuation& accept, |
| 325 | const ndn::mgmt::RejectContinuation& reject) { |
| 326 | BOOST_ASSERT(params != nullptr); |
| 327 | BOOST_ASSERT(typeid(*params) == typeid(ndn::nfd::ControlParameters)); |
| 328 | BOOST_ASSERT(prefix == LOCAL_HOST_TOP_PREFIX || prefix == LOCAL_HOP_TOP_PREFIX); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 329 | |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 330 | ndn::ValidatorConfig& validator = prefix == LOCAL_HOST_TOP_PREFIX ? |
| 331 | m_localhostValidator : m_localhopValidator; |
| 332 | validator.validate(interest, |
| 333 | bind([&interest, this, accept] { extractRequester(interest, accept); }), |
| 334 | bind([reject] { reject(ndn::mgmt::RejectReply::STATUS403); })); |
| 335 | }; |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | void |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 339 | RibManager::fetchActiveFaces() |
| 340 | { |
| 341 | NFD_LOG_DEBUG("Fetching active faces"); |
| 342 | |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 343 | m_nfdController.fetch<ndn::nfd::FaceDataset>( |
| 344 | bind(&RibManager::removeInvalidFaces, this, _1), |
| 345 | bind(&RibManager::onFetchActiveFacesFailure, this, _1, _2), |
| 346 | ndn::nfd::CommandOptions()); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | void |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 350 | RibManager::onFetchActiveFacesFailure(uint32_t code, const std::string& reason) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 351 | { |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 352 | NFD_LOG_DEBUG("Face Status Dataset request failure " << code << " " << reason); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 353 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
| 354 | } |
| 355 | |
| 356 | void |
| 357 | RibManager::onFaceDestroyedEvent(uint64_t faceId) |
| 358 | { |
| 359 | m_rib.beginRemoveFace(faceId); |
| 360 | m_registeredFaces.erase(faceId); |
| 361 | } |
| 362 | |
| 363 | void |
| 364 | RibManager::scheduleActiveFaceFetch(const time::seconds& timeToWait) |
| 365 | { |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 366 | m_activeFaceFetchEvent = scheduler::schedule(timeToWait, [this] { this->fetchActiveFaces(); }); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | void |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 370 | RibManager::removeInvalidFaces(const std::vector<ndn::nfd::FaceStatus>& activeFaces) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 371 | { |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 372 | NFD_LOG_DEBUG("Checking for invalid face registrations"); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 373 | |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 374 | FaceIdSet activeFaceIds; |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 375 | for (const auto& faceStatus : activeFaces) { |
| 376 | activeFaceIds.insert(faceStatus.getFaceId()); |
Junxiao Shi | 78926c9 | 2015-02-28 22:56:06 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 379 | // Look for face IDs that were registered but not active to find missed |
| 380 | // face destroyed events |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 381 | for (auto faceId : m_registeredFaces) { |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 382 | if (activeFaceIds.count(faceId) == 0) { |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 383 | NFD_LOG_DEBUG("Removing invalid face ID: " << faceId); |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 384 | scheduler::schedule(time::seconds(0), [this, faceId] { this->onFaceDestroyedEvent(faceId); }); |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 385 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 386 | } |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 387 | |
| 388 | // Reschedule the check for future clean up |
| 389 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | void |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 393 | RibManager::onNotification(const ndn::nfd::FaceEventNotification& notification) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 394 | { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 395 | NFD_LOG_TRACE("onNotification: " << notification); |
| 396 | |
| 397 | if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) { |
| 398 | NFD_LOG_DEBUG("Received notification for destroyed faceId: " << notification.getFaceId()); |
| 399 | |
| 400 | scheduler::schedule(time::seconds(0), |
| 401 | bind(&RibManager::onFaceDestroyedEvent, this, notification.getFaceId())); |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | void |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 406 | RibManager::onCommandPrefixAddNextHopSuccess(const Name& prefix, |
| 407 | const ndn::nfd::ControlParameters& result) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 408 | { |
| 409 | NFD_LOG_DEBUG("Successfully registered " + prefix.toUri() + " with NFD"); |
| 410 | |
| 411 | // Routes must be inserted into the RIB so route flags can be applied |
| 412 | Route route; |
| 413 | route.faceId = result.getFaceId(); |
| 414 | route.origin = ndn::nfd::ROUTE_ORIGIN_APP; |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 415 | route.expires = ndn::nullopt; |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 416 | route.flags = ndn::nfd::ROUTE_FLAG_CHILD_INHERIT; |
| 417 | |
| 418 | m_rib.insert(prefix, route); |
| 419 | |
| 420 | m_registeredFaces.insert(route.faceId); |
| 421 | } |
| 422 | |
| 423 | void |
Junxiao Shi | 29b4128 | 2016-08-22 03:47:02 +0000 | [diff] [blame] | 424 | RibManager::onCommandPrefixAddNextHopError(const Name& name, |
| 425 | const ndn::nfd::ControlResponse& response) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 426 | { |
Junxiao Shi | 29b4128 | 2016-08-22 03:47:02 +0000 | [diff] [blame] | 427 | BOOST_THROW_EXCEPTION(Error("Error in setting interest filter (" + name.toUri() + |
| 428 | "): " + response.getText())); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | void |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 432 | RibManager::onEnableLocalFieldsSuccess() |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 433 | { |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 434 | NFD_LOG_DEBUG("Local fields enabled"); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | void |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 438 | RibManager::onEnableLocalFieldsError(const ndn::nfd::ControlResponse& response) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 439 | { |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 440 | BOOST_THROW_EXCEPTION(Error("Couldn't enable local fields (code: " + |
| 441 | to_string(response.getCode()) + ", info: " + response.getText() + |
| 442 | ")")); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 443 | } |
| 444 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 445 | } // namespace rib |
| 446 | } // namespace nfd |