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 | |
Junxiao Shi | 7530635 | 2018-02-01 21:59:44 +0000 | [diff] [blame] | 28 | #include "core/fib-max-depth.hpp" |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 29 | #include "core/logger.hpp" |
Alexander Afanasyev | 63108c4 | 2014-07-07 19:10:47 -0700 | [diff] [blame] | 30 | #include "core/scheduler.hpp" |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 31 | |
Junxiao Shi | cbc8e94 | 2016-09-06 03:17:45 +0000 | [diff] [blame] | 32 | #include <ndn-cxx/lp/tags.hpp> |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 33 | #include <ndn-cxx/mgmt/nfd/control-command.hpp> |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 34 | #include <ndn-cxx/mgmt/nfd/control-parameters.hpp> |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 35 | #include <ndn-cxx/mgmt/nfd/control-response.hpp> |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 36 | #include <ndn-cxx/mgmt/nfd/face-status.hpp> |
| 37 | #include <ndn-cxx/mgmt/nfd/rib-entry.hpp> |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 38 | |
| 39 | namespace nfd { |
| 40 | namespace rib { |
| 41 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 42 | NFD_LOG_INIT(RibManager); |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 43 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 44 | static const std::string MGMT_MODULE_NAME = "rib"; |
| 45 | static const Name LOCALHOST_TOP_PREFIX = "/localhost/nfd"; |
| 46 | static const Name LOCALHOP_TOP_PREFIX = "/localhop/nfd"; |
| 47 | static const time::seconds ACTIVE_FACE_FETCH_INTERVAL = time::seconds(300); |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 48 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 49 | RibManager::RibManager(Rib& rib, ndn::Face& face, ndn::nfd::Controller& nfdController, Dispatcher& dispatcher) |
Junxiao Shi | fde3f54 | 2016-07-10 19:54:53 +0000 | [diff] [blame] | 50 | : ManagerBase(dispatcher, MGMT_MODULE_NAME) |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 51 | , m_rib(rib) |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 52 | , m_nfdController(nfdController) |
| 53 | , m_dispatcher(dispatcher) |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 54 | , m_faceMonitor(face) |
| 55 | , m_localhostValidator(face) |
| 56 | , m_localhopValidator(face) |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 57 | , m_isLocalhopEnabled(false) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 58 | { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 59 | registerCommandHandler<ndn::nfd::RibRegisterCommand>("register", |
| 60 | bind(&RibManager::registerEntry, this, _2, _3, _4, _5)); |
| 61 | registerCommandHandler<ndn::nfd::RibUnregisterCommand>("unregister", |
| 62 | bind(&RibManager::unregisterEntry, this, _2, _3, _4, _5)); |
| 63 | |
| 64 | registerStatusDatasetHandler("list", bind(&RibManager::listEntries, this, _1, _2, _3)); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 65 | } |
| 66 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 67 | void |
| 68 | RibManager::applyLocalhostConfig(const ConfigSection& section, const std::string& filename) |
| 69 | { |
| 70 | m_localhostValidator.load(section, filename); |
| 71 | } |
| 72 | |
| 73 | void |
| 74 | RibManager::enableLocalhop(const ConfigSection& section, const std::string& filename) |
| 75 | { |
| 76 | m_localhopValidator.load(section, filename); |
| 77 | m_isLocalhopEnabled = true; |
| 78 | } |
| 79 | |
| 80 | void |
| 81 | RibManager::disableLocalhop() |
| 82 | { |
| 83 | m_isLocalhopEnabled = false; |
| 84 | } |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 85 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 86 | void |
| 87 | RibManager::registerWithNfd() |
| 88 | { |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 89 | registerTopPrefix(LOCALHOST_TOP_PREFIX); |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 90 | |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 91 | if (m_isLocalhopEnabled) { |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 92 | registerTopPrefix(LOCALHOP_TOP_PREFIX); |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 93 | } |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 94 | |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 95 | NFD_LOG_INFO("Start monitoring face create/destroy events"); |
Junxiao Shi | fbf7834 | 2015-01-23 14:46:41 -0700 | [diff] [blame] | 96 | m_faceMonitor.onNotification.connect(bind(&RibManager::onNotification, this, _1)); |
Junxiao Shi | 15b12e7 | 2014-08-09 19:56:24 -0700 | [diff] [blame] | 97 | m_faceMonitor.start(); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 98 | |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 99 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | void |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 103 | RibManager::enableLocalFields() |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 104 | { |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 105 | m_nfdController.start<ndn::nfd::FaceUpdateCommand>( |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 106 | ControlParameters().setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, true), |
| 107 | [] (const ControlParameters& res) { |
| 108 | NFD_LOG_DEBUG("Local fields enabled"); |
| 109 | }, |
| 110 | [] (const ControlResponse& res) { |
| 111 | BOOST_THROW_EXCEPTION(Error("Couldn't enable local fields (" + to_string(res.getCode()) + |
| 112 | " " + res.getText() + ")")); |
| 113 | }); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | void |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 117 | RibManager::beginAddRoute(const Name& name, Route route, optional<time::nanoseconds> expires, |
| 118 | const std::function<void(RibUpdateResult)>& done) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 119 | { |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 120 | if (expires) { |
| 121 | if (*expires <= 0_ns) { |
| 122 | done(RibUpdateResult::EXPIRED); |
| 123 | return; |
| 124 | } |
| 125 | route.expires = time::steady_clock::now() + *expires; |
| 126 | } |
| 127 | else if (route.expires) { |
| 128 | expires = *route.expires - time::steady_clock::now(); |
| 129 | if (*expires <= 0_ns) { |
| 130 | done(RibUpdateResult::EXPIRED); |
| 131 | return; |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | NFD_LOG_INFO("Adding route " << name << " nexthop=" << route.faceId << |
| 136 | " origin=" << route.origin << " cost=" << route.cost); |
| 137 | |
| 138 | if (expires) { |
| 139 | route.setExpirationEvent(scheduler::schedule( |
| 140 | *expires, [=] { m_rib.onRouteExpiration(name, route); })); |
| 141 | NFD_LOG_TRACE("Scheduled unregistration at: " << *route.expires); |
| 142 | } |
| 143 | |
| 144 | m_registeredFaces.insert(route.faceId); |
| 145 | |
| 146 | RibUpdate update; |
| 147 | update.setAction(RibUpdate::REGISTER) |
| 148 | .setName(name) |
| 149 | .setRoute(route); |
| 150 | beginRibUpdate(update, done); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | void |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 154 | RibManager::beginRemoveRoute(const Name& name, const Route& route, |
| 155 | const std::function<void(RibUpdateResult)>& done) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 156 | { |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 157 | NFD_LOG_INFO("Removing route " << name << " nexthop=" << route.faceId << |
| 158 | " origin=" << route.origin); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 159 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 160 | RibUpdate update; |
| 161 | update.setAction(RibUpdate::UNREGISTER) |
| 162 | .setName(name) |
| 163 | .setRoute(route); |
| 164 | beginRibUpdate(update, done); |
| 165 | } |
| 166 | |
| 167 | void |
| 168 | RibManager::beginRibUpdate(const RibUpdate& update, |
| 169 | const std::function<void(RibUpdateResult)>& done) |
| 170 | { |
| 171 | m_rib.beginApplyUpdate(update, |
| 172 | [=] { |
| 173 | NFD_LOG_DEBUG("RIB update succeeded for " << update); |
| 174 | done(RibUpdateResult::OK); |
| 175 | }, |
| 176 | [=] (uint32_t code, const std::string& error) { |
| 177 | NFD_LOG_DEBUG("RIB update failed for " << update << " (" << code << " " << error << ")"); |
| 178 | |
| 179 | // Since the FIB rejected the update, clean up invalid routes |
| 180 | scheduleActiveFaceFetch(1_s); |
| 181 | |
| 182 | done(RibUpdateResult::ERROR); |
| 183 | }); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 187 | RibManager::registerTopPrefix(const Name& topPrefix) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 188 | { |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 189 | // add FIB nexthop |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 190 | m_nfdController.start<ndn::nfd::FibAddNextHopCommand>( |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 191 | ControlParameters().setName(Name(topPrefix).append(MGMT_MODULE_NAME)) |
| 192 | .setFaceId(0), |
| 193 | [=] (const ControlParameters& res) { |
| 194 | NFD_LOG_DEBUG("Successfully registered " << topPrefix << " with NFD"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 195 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 196 | // Routes must be inserted into the RIB so route flags can be applied |
| 197 | Route route; |
| 198 | route.faceId = res.getFaceId(); |
| 199 | route.origin = ndn::nfd::ROUTE_ORIGIN_APP; |
| 200 | route.flags = ndn::nfd::ROUTE_FLAG_CHILD_INHERIT; |
| 201 | |
| 202 | m_rib.insert(topPrefix, route); |
| 203 | |
| 204 | m_registeredFaces.insert(route.faceId); |
| 205 | }, |
| 206 | [=] (const ControlResponse& res) { |
| 207 | BOOST_THROW_EXCEPTION(Error("Cannot add FIB entry " + topPrefix.toUri() + " (" + |
| 208 | to_string(res.getCode()) + " " + res.getText() + ")")); |
| 209 | }); |
| 210 | |
| 211 | // add top prefix to the dispatcher without prefix registration |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 212 | m_dispatcher.addTopPrefix(topPrefix, false); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 216 | RibManager::registerEntry(const Name& topPrefix, const Interest& interest, |
| 217 | ControlParameters parameters, |
| 218 | const ndn::mgmt::CommandContinuation& done) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 219 | { |
Junxiao Shi | 7530635 | 2018-02-01 21:59:44 +0000 | [diff] [blame] | 220 | if (parameters.getName().size() > FIB_MAX_DEPTH) { |
| 221 | done(ControlResponse(414, "Route prefix cannot exceed " + ndn::to_string(FIB_MAX_DEPTH) + |
| 222 | " components")); |
| 223 | return; |
| 224 | } |
| 225 | |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 226 | setFaceForSelfRegistration(interest, parameters); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 227 | |
| 228 | // Respond since command is valid and authorized |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 229 | done(ControlResponse(200, "Success").setBody(parameters.wireEncode())); |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame] | 230 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 231 | Route route; |
| 232 | route.faceId = parameters.getFaceId(); |
| 233 | route.origin = parameters.getOrigin(); |
| 234 | route.cost = parameters.getCost(); |
| 235 | route.flags = parameters.getFlags(); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 236 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 237 | optional<time::nanoseconds> expires; |
Alexander Afanasyev | f67cf08 | 2014-07-18 16:47:29 -0700 | [diff] [blame] | 238 | if (parameters.hasExpirationPeriod() && |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 239 | parameters.getExpirationPeriod() != time::milliseconds::max()) { |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 240 | expires = time::duration_cast<time::nanoseconds>(parameters.getExpirationPeriod()); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 241 | } |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 242 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 243 | beginAddRoute(parameters.getName(), std::move(route), expires, [] (RibUpdateResult) {}); |
Vince Lehman | 281ded7 | 2014-08-21 12:17:08 -0500 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 247 | RibManager::unregisterEntry(const Name& topPrefix, const Interest& interest, |
| 248 | ControlParameters parameters, |
| 249 | const ndn::mgmt::CommandContinuation& done) |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 250 | { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 251 | setFaceForSelfRegistration(interest, parameters); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 252 | |
| 253 | // Respond since command is valid and authorized |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 254 | done(ControlResponse(200, "Success").setBody(parameters.wireEncode())); |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame] | 255 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 256 | Route route; |
| 257 | route.faceId = parameters.getFaceId(); |
| 258 | route.origin = parameters.getOrigin(); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 259 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 260 | beginRemoveRoute(parameters.getName(), route, [] (RibUpdateResult) {}); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 264 | RibManager::listEntries(const Name& topPrefix, const Interest& interest, |
| 265 | ndn::mgmt::StatusDatasetContext& context) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 266 | { |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 267 | auto now = time::steady_clock::now(); |
| 268 | for (const auto& kv : m_rib) { |
| 269 | const RibEntry& entry = *kv.second; |
| 270 | ndn::nfd::RibEntry item; |
| 271 | item.setName(entry.getName()); |
| 272 | for (const Route& route : entry.getRoutes()) { |
| 273 | ndn::nfd::Route r; |
| 274 | r.setFaceId(route.faceId); |
| 275 | r.setOrigin(route.origin); |
| 276 | r.setCost(route.cost); |
| 277 | r.setFlags(route.flags); |
| 278 | if (route.expires) { |
| 279 | r.setExpirationPeriod(time::duration_cast<time::milliseconds>(*route.expires - now)); |
| 280 | } |
| 281 | item.addRoute(r); |
| 282 | } |
| 283 | context.append(item.wireEncode()); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 284 | } |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 285 | context.end(); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 289 | RibManager::setFaceForSelfRegistration(const Interest& request, ControlParameters& parameters) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 290 | { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 291 | bool isSelfRegistration = (parameters.getFaceId() == 0); |
| 292 | if (isSelfRegistration) { |
| 293 | shared_ptr<lp::IncomingFaceIdTag> incomingFaceIdTag = request.getTag<lp::IncomingFaceIdTag>(); |
| 294 | // NDNLPv2 says "application MUST be prepared to receive a packet without IncomingFaceId field", |
| 295 | // but it's fine to assert IncomingFaceId is available, because InternalFace lives inside NFD |
| 296 | // and is initialized synchronously with IncomingFaceId field enabled. |
| 297 | BOOST_ASSERT(incomingFaceIdTag != nullptr); |
| 298 | parameters.setFaceId(*incomingFaceIdTag); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 299 | } |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 300 | } |
| 301 | |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 302 | ndn::mgmt::Authorization |
| 303 | RibManager::makeAuthorization(const std::string& verb) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 304 | { |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 305 | return [this] (const Name& prefix, const Interest& interest, |
| 306 | const ndn::mgmt::ControlParameters* params, |
| 307 | const ndn::mgmt::AcceptContinuation& accept, |
| 308 | const ndn::mgmt::RejectContinuation& reject) { |
| 309 | BOOST_ASSERT(params != nullptr); |
| 310 | BOOST_ASSERT(typeid(*params) == typeid(ndn::nfd::ControlParameters)); |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 311 | BOOST_ASSERT(prefix == LOCALHOST_TOP_PREFIX || prefix == LOCALHOP_TOP_PREFIX); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 312 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 313 | ndn::ValidatorConfig& validator = prefix == LOCALHOST_TOP_PREFIX ? |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 314 | m_localhostValidator : m_localhopValidator; |
| 315 | validator.validate(interest, |
| 316 | bind([&interest, this, accept] { extractRequester(interest, accept); }), |
| 317 | bind([reject] { reject(ndn::mgmt::RejectReply::STATUS403); })); |
| 318 | }; |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | void |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 322 | RibManager::fetchActiveFaces() |
| 323 | { |
| 324 | NFD_LOG_DEBUG("Fetching active faces"); |
| 325 | |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 326 | m_nfdController.fetch<ndn::nfd::FaceDataset>( |
| 327 | bind(&RibManager::removeInvalidFaces, this, _1), |
| 328 | bind(&RibManager::onFetchActiveFacesFailure, this, _1, _2), |
| 329 | ndn::nfd::CommandOptions()); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | void |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 333 | RibManager::onFetchActiveFacesFailure(uint32_t code, const std::string& reason) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 334 | { |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 335 | NFD_LOG_DEBUG("Face Status Dataset request failure " << code << " " << reason); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 336 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
| 337 | } |
| 338 | |
| 339 | void |
| 340 | RibManager::onFaceDestroyedEvent(uint64_t faceId) |
| 341 | { |
| 342 | m_rib.beginRemoveFace(faceId); |
| 343 | m_registeredFaces.erase(faceId); |
| 344 | } |
| 345 | |
| 346 | void |
| 347 | RibManager::scheduleActiveFaceFetch(const time::seconds& timeToWait) |
| 348 | { |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 349 | m_activeFaceFetchEvent = scheduler::schedule(timeToWait, [this] { this->fetchActiveFaces(); }); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | void |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 353 | RibManager::removeInvalidFaces(const std::vector<ndn::nfd::FaceStatus>& activeFaces) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 354 | { |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 355 | NFD_LOG_DEBUG("Checking for invalid face registrations"); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 356 | |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 357 | FaceIdSet activeFaceIds; |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 358 | for (const auto& faceStatus : activeFaces) { |
| 359 | activeFaceIds.insert(faceStatus.getFaceId()); |
Junxiao Shi | 78926c9 | 2015-02-28 22:56:06 -0700 | [diff] [blame] | 360 | } |
| 361 | |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 362 | // Look for face IDs that were registered but not active to find missed |
| 363 | // face destroyed events |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 364 | for (auto faceId : m_registeredFaces) { |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 365 | if (activeFaceIds.count(faceId) == 0) { |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 366 | NFD_LOG_DEBUG("Removing invalid face ID: " << faceId); |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 367 | scheduler::schedule(time::seconds(0), [this, faceId] { this->onFaceDestroyedEvent(faceId); }); |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 368 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 369 | } |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 370 | |
| 371 | // Reschedule the check for future clean up |
| 372 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | void |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 376 | RibManager::onNotification(const ndn::nfd::FaceEventNotification& notification) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 377 | { |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 378 | NFD_LOG_TRACE("onNotification: " << notification); |
| 379 | |
| 380 | if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) { |
| 381 | NFD_LOG_DEBUG("Received notification for destroyed faceId: " << notification.getFaceId()); |
| 382 | |
| 383 | scheduler::schedule(time::seconds(0), |
| 384 | bind(&RibManager::onFaceDestroyedEvent, this, notification.getFaceId())); |
| 385 | } |
| 386 | } |
| 387 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 388 | } // namespace rib |
| 389 | } // namespace nfd |