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 | /* |
Davide Pesavento | 45c1f6a | 2025-01-01 19:30:30 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2025, 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 | |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 28 | #include "common/global.hpp" |
| 29 | #include "common/logger.hpp" |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 30 | #include "rib/rib.hpp" |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 31 | #include "table/fib.hpp" |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 32 | |
Davide Pesavento | 5d64263 | 2023-10-03 00:36:08 -0400 | [diff] [blame] | 33 | #include <boost/asio/defer.hpp> |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 34 | #include <boost/lexical_cast.hpp> |
Davide Pesavento | 5d64263 | 2023-10-03 00:36:08 -0400 | [diff] [blame] | 35 | |
Junxiao Shi | cbc8e94 | 2016-09-06 03:17:45 +0000 | [diff] [blame] | 36 | #include <ndn-cxx/lp/tags.hpp> |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 37 | #include <ndn-cxx/mgmt/nfd/rib-entry.hpp> |
Davide Pesavento | 4064127 | 2023-03-16 13:31:12 -0400 | [diff] [blame] | 38 | #include <ndn-cxx/mgmt/nfd/status-dataset.hpp> |
Alexander Afanasyev | a158370 | 2020-06-03 13:55:45 -0400 | [diff] [blame] | 39 | #include <ndn-cxx/security/certificate-fetcher-direct-fetch.hpp> |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 40 | |
| 41 | namespace nfd { |
Davide Pesavento | 8a05c7f | 2019-02-28 02:26:19 -0500 | [diff] [blame] | 42 | |
| 43 | using rib::RibUpdate; |
| 44 | using rib::Route; |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 45 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 46 | NFD_LOG_INIT(RibManager); |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 47 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 48 | const std::string MGMT_MODULE_NAME = "rib"; |
| 49 | const Name LOCALHOST_TOP_PREFIX = "/localhost/nfd"; |
Davide Pesavento | 20d94f6 | 2022-09-26 03:30:53 -0400 | [diff] [blame] | 50 | constexpr time::seconds ACTIVE_FACE_FETCH_INTERVAL = 5_min; |
Yanbiao Li | f48d080 | 2018-06-01 03:00:02 -0700 | [diff] [blame] | 51 | |
Davide Pesavento | 8a05c7f | 2019-02-28 02:26:19 -0500 | [diff] [blame] | 52 | RibManager::RibManager(rib::Rib& rib, ndn::Face& face, ndn::KeyChain& keyChain, |
Davide Pesavento | 0a71dd3 | 2019-03-17 20:36:18 -0400 | [diff] [blame] | 53 | ndn::nfd::Controller& nfdController, Dispatcher& dispatcher) |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 54 | : ManagerBase(MGMT_MODULE_NAME, dispatcher) |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 55 | , m_rib(rib) |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 56 | , m_keyChain(keyChain) |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 57 | , m_nfdController(nfdController) |
| 58 | , m_dispatcher(dispatcher) |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 59 | , m_faceMonitor(face) |
| 60 | , m_localhostValidator(face) |
Alexander Afanasyev | a158370 | 2020-06-03 13:55:45 -0400 | [diff] [blame] | 61 | , m_localhopValidator(make_unique<ndn::security::CertificateFetcherDirectFetch>(face)) |
| 62 | , m_paValidator(make_unique<ndn::security::CertificateFetcherDirectFetch>(face)) |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 63 | , m_isLocalhopEnabled(false) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 64 | { |
Davide Pesavento | 1db1bb6 | 2025-01-06 01:23:41 -0500 | [diff] [blame] | 65 | registerCommandHandler<ndn::nfd::RibRegisterCommand>([this] (auto&&, auto&&... args) { |
| 66 | registerEntry(std::forward<decltype(args)>(args)...); |
| 67 | }); |
| 68 | registerCommandHandler<ndn::nfd::RibUnregisterCommand>([this] (auto&&, auto&&... args) { |
| 69 | unregisterEntry(std::forward<decltype(args)>(args)...); |
| 70 | }); |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 71 | registerCommandHandler<ndn::nfd::RibAnnounceCommand>([this] (auto&&, auto&&... args) { |
| 72 | announceEntry(std::forward<decltype(args)>(args)...); |
| 73 | }); |
Davide Pesavento | 1db1bb6 | 2025-01-06 01:23:41 -0500 | [diff] [blame] | 74 | registerStatusDatasetHandler("list", [this] (auto&&, auto&&, auto&&... args) { |
| 75 | listEntries(std::forward<decltype(args)>(args)...); |
| 76 | }); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 79 | void |
| 80 | RibManager::applyLocalhostConfig(const ConfigSection& section, const std::string& filename) |
| 81 | { |
| 82 | m_localhostValidator.load(section, filename); |
| 83 | } |
| 84 | |
| 85 | void |
| 86 | RibManager::enableLocalhop(const ConfigSection& section, const std::string& filename) |
| 87 | { |
| 88 | m_localhopValidator.load(section, filename); |
| 89 | m_isLocalhopEnabled = true; |
| 90 | } |
| 91 | |
| 92 | void |
| 93 | RibManager::disableLocalhop() |
| 94 | { |
| 95 | m_isLocalhopEnabled = false; |
| 96 | } |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 97 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 98 | void |
Teng Liang | 18c2b29 | 2019-10-18 14:31:04 -0700 | [diff] [blame] | 99 | RibManager::applyPaConfig(const ConfigSection& section, const std::string& filename) |
| 100 | { |
| 101 | m_paValidator.load(section, filename); |
| 102 | } |
| 103 | |
| 104 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 105 | RibManager::registerWithNfd() |
| 106 | { |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 107 | registerTopPrefix(LOCALHOST_TOP_PREFIX); |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 108 | |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 109 | if (m_isLocalhopEnabled) { |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 110 | registerTopPrefix(LOCALHOP_TOP_PREFIX); |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 111 | } |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 112 | |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 113 | NFD_LOG_INFO("Start monitoring face create/destroy events"); |
Davide Pesavento | 412c982 | 2021-07-02 00:21:05 -0400 | [diff] [blame] | 114 | m_faceMonitor.onNotification.connect([this] (const auto& notif) { onNotification(notif); }); |
Junxiao Shi | 15b12e7 | 2014-08-09 19:56:24 -0700 | [diff] [blame] | 115 | m_faceMonitor.start(); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 116 | |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 117 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | void |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 121 | RibManager::enableLocalFields() |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 122 | { |
Eric Newberry | ecc45cb | 2016-11-08 19:57:12 +0000 | [diff] [blame] | 123 | m_nfdController.start<ndn::nfd::FaceUpdateCommand>( |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 124 | ControlParameters().setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, true), |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 125 | [] (const ControlParameters&) { |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 126 | NFD_LOG_TRACE("Local fields enabled"); |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 127 | }, |
| 128 | [] (const ControlResponse& res) { |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 129 | NDN_THROW(Error("Could not enable local fields (error " + |
| 130 | std::to_string(res.getCode()) + ": " + res.getText() + ")")); |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 131 | }); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | void |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 135 | RibManager::beginAddRoute(const Name& name, Route route, std::optional<time::nanoseconds> expires, |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 136 | const std::function<void(RibUpdateResult)>& done) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 137 | { |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 138 | if (expires) { |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 139 | route.expires = time::steady_clock::now() + *expires; |
| 140 | } |
| 141 | else if (route.expires) { |
| 142 | expires = *route.expires - time::steady_clock::now(); |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | if (expires && *expires <= 0_s) { |
| 146 | m_rib.onRouteExpiration(name, route); |
| 147 | return done(RibUpdateResult::EXPIRED); |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | NFD_LOG_INFO("Adding route " << name << " nexthop=" << route.faceId << |
| 151 | " origin=" << route.origin << " cost=" << route.cost); |
| 152 | |
| 153 | if (expires) { |
Davide Pesavento | 0a71dd3 | 2019-03-17 20:36:18 -0400 | [diff] [blame] | 154 | auto event = getScheduler().schedule(*expires, [=] { m_rib.onRouteExpiration(name, route); }); |
Junxiao Shi | feddc3c | 2019-01-17 19:06:00 +0000 | [diff] [blame] | 155 | route.setExpirationEvent(event); |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 156 | NFD_LOG_TRACE("Scheduled unregistration at: " << *route.expires); |
| 157 | } |
| 158 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 159 | RibUpdate update; |
| 160 | update.setAction(RibUpdate::REGISTER) |
| 161 | .setName(name) |
| 162 | .setRoute(route); |
| 163 | beginRibUpdate(update, done); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | void |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 167 | RibManager::beginRemoveRoute(const Name& name, const Route& route, |
| 168 | const std::function<void(RibUpdateResult)>& done) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 169 | { |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 170 | NFD_LOG_INFO("Removing route " << name << " nexthop=" << route.faceId << |
| 171 | " origin=" << route.origin); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 172 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 173 | RibUpdate update; |
| 174 | update.setAction(RibUpdate::UNREGISTER) |
| 175 | .setName(name) |
| 176 | .setRoute(route); |
| 177 | beginRibUpdate(update, done); |
| 178 | } |
| 179 | |
| 180 | void |
| 181 | RibManager::beginRibUpdate(const RibUpdate& update, |
| 182 | const std::function<void(RibUpdateResult)>& done) |
| 183 | { |
| 184 | m_rib.beginApplyUpdate(update, |
| 185 | [=] { |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 186 | NFD_LOG_DEBUG(update << " -> OK"); |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 187 | done(RibUpdateResult::OK); |
| 188 | }, |
| 189 | [=] (uint32_t code, const std::string& error) { |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 190 | NFD_LOG_DEBUG(update << " -> error " << code << ": " << error); |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 191 | |
| 192 | // Since the FIB rejected the update, clean up invalid routes |
| 193 | scheduleActiveFaceFetch(1_s); |
| 194 | |
| 195 | done(RibUpdateResult::ERROR); |
| 196 | }); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | void |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 200 | RibManager::registerTopPrefix(const Name& topPrefix) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 201 | { |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 202 | // add FIB nexthop |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 203 | m_nfdController.start<ndn::nfd::FibAddNextHopCommand>( |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 204 | ControlParameters().setName(Name(topPrefix).append(MGMT_MODULE_NAME)).setFaceId(0), |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 205 | [=] (const ControlParameters& res) { |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 206 | NFD_LOG_DEBUG("Successfully registered " << topPrefix << " with the forwarder"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 207 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 208 | // Routes must be inserted into the RIB so route flags can be applied |
| 209 | Route route; |
| 210 | route.faceId = res.getFaceId(); |
| 211 | route.origin = ndn::nfd::ROUTE_ORIGIN_APP; |
| 212 | route.flags = ndn::nfd::ROUTE_FLAG_CHILD_INHERIT; |
| 213 | |
| 214 | m_rib.insert(topPrefix, route); |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 215 | }, |
| 216 | [=] (const ControlResponse& res) { |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 217 | NDN_THROW(Error("Could not add FIB entry " + topPrefix.toUri() + " (error " + |
| 218 | std::to_string(res.getCode()) + ": " + res.getText() + ")")); |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 219 | }); |
| 220 | |
| 221 | // add top prefix to the dispatcher without prefix registration |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 222 | m_dispatcher.addTopPrefix(topPrefix, false); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 225 | static uint64_t |
| 226 | getIncomingFaceId(const Interest& request) |
| 227 | { |
| 228 | auto incomingFaceIdTag = request.getTag<lp::IncomingFaceIdTag>(); |
| 229 | // NDNLPv2 says "application MUST be prepared to receive a packet without IncomingFaceId field", |
| 230 | // but it's fine to assert IncomingFaceId is available, because InternalFace lives inside NFD |
| 231 | // and is initialized synchronously with IncomingFaceId field enabled. |
| 232 | BOOST_ASSERT(incomingFaceIdTag != nullptr); |
| 233 | return incomingFaceIdTag->get(); |
| 234 | } |
| 235 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 236 | void |
Davide Pesavento | ae43030 | 2023-05-11 01:42:46 -0400 | [diff] [blame] | 237 | RibManager::registerEntry(const Interest& interest, ControlParameters parameters, |
Davide Pesavento | 45c1f6a | 2025-01-01 19:30:30 -0500 | [diff] [blame] | 238 | const CommandContinuation& done) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 239 | { |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 240 | if (parameters.getName().size() > Fib::getMaxDepth()) { |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 241 | done(ControlResponse(414, "Route prefix cannot exceed " + std::to_string(Fib::getMaxDepth()) + |
Junxiao Shi | 7530635 | 2018-02-01 21:59:44 +0000 | [diff] [blame] | 242 | " components")); |
| 243 | return; |
| 244 | } |
| 245 | |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 246 | if (parameters.getFaceId() == 0) { // self registration |
| 247 | parameters.setFaceId(getIncomingFaceId(interest)); |
| 248 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 249 | |
| 250 | // Respond since command is valid and authorized |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 251 | done(ControlResponse(200, "OK").setBody(parameters.wireEncode())); |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame] | 252 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 253 | Route route; |
| 254 | route.faceId = parameters.getFaceId(); |
| 255 | route.origin = parameters.getOrigin(); |
| 256 | route.cost = parameters.getCost(); |
| 257 | route.flags = parameters.getFlags(); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 258 | |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 259 | std::optional<time::nanoseconds> expires; |
Alexander Afanasyev | f67cf08 | 2014-07-18 16:47:29 -0700 | [diff] [blame] | 260 | if (parameters.hasExpirationPeriod() && |
Nick Gordon | 9fcf123 | 2017-03-10 22:30:20 +0000 | [diff] [blame] | 261 | parameters.getExpirationPeriod() != time::milliseconds::max()) { |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 262 | expires = time::duration_cast<time::nanoseconds>(parameters.getExpirationPeriod()); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 263 | } |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 264 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 265 | beginAddRoute(parameters.getName(), std::move(route), expires, [] (RibUpdateResult) {}); |
Vince Lehman | 281ded7 | 2014-08-21 12:17:08 -0500 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | void |
Davide Pesavento | ae43030 | 2023-05-11 01:42:46 -0400 | [diff] [blame] | 269 | RibManager::unregisterEntry(const Interest& interest, ControlParameters parameters, |
Davide Pesavento | 45c1f6a | 2025-01-01 19:30:30 -0500 | [diff] [blame] | 270 | const CommandContinuation& done) |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 271 | { |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 272 | if (parameters.getFaceId() == 0) { // self unregistration |
| 273 | parameters.setFaceId(getIncomingFaceId(interest)); |
| 274 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 275 | |
| 276 | // Respond since command is valid and authorized |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 277 | done(ControlResponse(200, "OK").setBody(parameters.wireEncode())); |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame] | 278 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 279 | Route route; |
| 280 | route.faceId = parameters.getFaceId(); |
| 281 | route.origin = parameters.getOrigin(); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 282 | |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 283 | beginRemoveRoute(parameters.getName(), route, [] (auto&&...) {}); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | void |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 287 | RibManager::announceEntry(const Interest& interest, const ndn::nfd::RibAnnounceParameters& parameters, |
| 288 | const CommandContinuation& done) |
| 289 | { |
| 290 | const auto& announcement = parameters.getPrefixAnnouncement(); |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 291 | const auto& name = announcement.getAnnouncedName(); |
| 292 | if (name.size() > Fib::getMaxDepth()) { |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 293 | done(ControlResponse(414, "Route prefix cannot exceed " + std::to_string(Fib::getMaxDepth()) + |
| 294 | " components")); |
| 295 | return; |
| 296 | } |
| 297 | |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 298 | Route route(announcement, getIncomingFaceId(interest)); |
| 299 | |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 300 | // Prepare parameters for response |
| 301 | ControlParameters responseParams; |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 302 | responseParams |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 303 | .setName(name) |
| 304 | .setFaceId(route.faceId) |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 305 | .setOrigin(route.origin) |
| 306 | .setCost(route.cost) |
| 307 | .setFlags(route.flags) |
| 308 | .setExpirationPeriod(time::duration_cast<time::milliseconds>(route.annExpires - time::steady_clock::now())); |
| 309 | |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 310 | NDN_LOG_TRACE("Validating announcement " << announcement); |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 311 | BOOST_ASSERT(announcement.getData()); |
| 312 | m_paValidator.validate(*announcement.getData(), |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 313 | [=, route = std::move(route)] (const Data&) { |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 314 | // Respond since command is valid and authorized |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 315 | done(ControlResponse(200, "OK").setBody(responseParams.wireEncode())); |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 316 | beginAddRoute(name, std::move(route), std::nullopt, [] (RibUpdateResult) {}); |
| 317 | }, |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 318 | [=] (const Data&, const ndn::security::ValidationError& err) { |
| 319 | NDN_LOG_DEBUG("announce " << name << " -> " << err); |
| 320 | done(ControlResponse(403, "Prefix announcement rejected: " + |
| 321 | boost::lexical_cast<std::string>(err.getCode()))); |
| 322 | }); |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | void |
Davide Pesavento | ae43030 | 2023-05-11 01:42:46 -0400 | [diff] [blame] | 326 | RibManager::listEntries(ndn::mgmt::StatusDatasetContext& context) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 327 | { |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 328 | auto now = time::steady_clock::now(); |
| 329 | for (const auto& kv : m_rib) { |
Davide Pesavento | 8a05c7f | 2019-02-28 02:26:19 -0500 | [diff] [blame] | 330 | const rib::RibEntry& entry = *kv.second; |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 331 | ndn::nfd::RibEntry item; |
| 332 | item.setName(entry.getName()); |
| 333 | for (const Route& route : entry.getRoutes()) { |
| 334 | ndn::nfd::Route r; |
| 335 | r.setFaceId(route.faceId); |
| 336 | r.setOrigin(route.origin); |
| 337 | r.setCost(route.cost); |
| 338 | r.setFlags(route.flags); |
| 339 | if (route.expires) { |
| 340 | r.setExpirationPeriod(time::duration_cast<time::milliseconds>(*route.expires - now)); |
| 341 | } |
| 342 | item.addRoute(r); |
| 343 | } |
| 344 | context.append(item.wireEncode()); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 345 | } |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 346 | context.end(); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 347 | } |
| 348 | |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 349 | ndn::mgmt::Authorization |
Davide Pesavento | 412c982 | 2021-07-02 00:21:05 -0400 | [diff] [blame] | 350 | RibManager::makeAuthorization(const std::string&) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 351 | { |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 352 | return [this] (const Name& prefix, const Interest& interest, |
Davide Pesavento | 45c1f6a | 2025-01-01 19:30:30 -0500 | [diff] [blame] | 353 | const ndn::mgmt::ControlParametersBase* params, |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 354 | const ndn::mgmt::AcceptContinuation& accept, |
| 355 | const ndn::mgmt::RejectContinuation& reject) { |
| 356 | BOOST_ASSERT(params != nullptr); |
jaczhi | b065768 | 2025-01-08 23:01:45 -0800 | [diff] [blame] | 357 | BOOST_ASSERT(typeid(*params) == typeid(ndn::nfd::ControlParameters) || |
| 358 | typeid(*params) == typeid(ndn::nfd::RibAnnounceParameters)); |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 359 | BOOST_ASSERT(prefix == LOCALHOST_TOP_PREFIX || prefix == LOCALHOP_TOP_PREFIX); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 360 | |
Davide Pesavento | 5a89769 | 2019-10-31 01:28:43 -0400 | [diff] [blame] | 361 | auto& validator = prefix == LOCALHOST_TOP_PREFIX ? m_localhostValidator : m_localhopValidator; |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 362 | validator.validate(interest, |
Davide Pesavento | 6d6f207 | 2022-09-12 23:08:34 -0400 | [diff] [blame] | 363 | [&interest, accept] (auto&&...) { accept(extractSigner(interest)); }, |
Davide Pesavento | 412c982 | 2021-07-02 00:21:05 -0400 | [diff] [blame] | 364 | [reject] (auto&&...) { reject(ndn::mgmt::RejectReply::STATUS403); }); |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 365 | }; |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 366 | } |
| 367 | |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 368 | std::ostream& |
| 369 | operator<<(std::ostream& os, RibManager::SlAnnounceResult res) |
| 370 | { |
| 371 | switch (res) { |
Davide Pesavento | 5a89769 | 2019-10-31 01:28:43 -0400 | [diff] [blame] | 372 | case RibManager::SlAnnounceResult::OK: |
| 373 | return os << "OK"; |
| 374 | case RibManager::SlAnnounceResult::ERROR: |
| 375 | return os << "ERROR"; |
| 376 | case RibManager::SlAnnounceResult::VALIDATION_FAILURE: |
| 377 | return os << "VALIDATION_FAILURE"; |
| 378 | case RibManager::SlAnnounceResult::EXPIRED: |
| 379 | return os << "EXPIRED"; |
| 380 | case RibManager::SlAnnounceResult::NOT_FOUND: |
| 381 | return os << "NOT_FOUND"; |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 382 | } |
Davide Pesavento | 5a89769 | 2019-10-31 01:28:43 -0400 | [diff] [blame] | 383 | NDN_THROW(std::invalid_argument("Unknown SlAnnounceResult")); |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | RibManager::SlAnnounceResult |
| 387 | RibManager::getSlAnnounceResultFromRibUpdateResult(RibUpdateResult r) |
| 388 | { |
| 389 | switch (r) { |
| 390 | case RibUpdateResult::OK: |
| 391 | return SlAnnounceResult::OK; |
| 392 | case RibUpdateResult::ERROR: |
| 393 | return SlAnnounceResult::ERROR; |
| 394 | case RibUpdateResult::EXPIRED: |
| 395 | return SlAnnounceResult::EXPIRED; |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 396 | } |
Davide Pesavento | 5a89769 | 2019-10-31 01:28:43 -0400 | [diff] [blame] | 397 | NDN_CXX_UNREACHABLE; |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | void |
| 401 | RibManager::slAnnounce(const ndn::PrefixAnnouncement& pa, uint64_t faceId, |
| 402 | time::milliseconds maxLifetime, const SlAnnounceCallback& cb) |
| 403 | { |
| 404 | BOOST_ASSERT(pa.getData()); |
| 405 | |
Teng Liang | 18c2b29 | 2019-10-18 14:31:04 -0700 | [diff] [blame] | 406 | m_paValidator.validate(*pa.getData(), |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 407 | [=] (const Data&) { |
| 408 | Route route(pa, faceId); |
| 409 | route.expires = std::min(route.annExpires, time::steady_clock::now() + maxLifetime); |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 410 | beginAddRoute(pa.getAnnouncedName(), route, std::nullopt, |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 411 | [=] (RibUpdateResult ribRes) { |
| 412 | auto res = getSlAnnounceResultFromRibUpdateResult(ribRes); |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 413 | NFD_LOG_INFO("slAnnounce " << pa.getAnnouncedName() << " " << faceId << " -> " << res); |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 414 | cb(res); |
| 415 | }); |
| 416 | }, |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 417 | [=] (const Data&, const ndn::security::ValidationError& err) { |
Teng Liang | a4e6ec3 | 2018-10-21 09:25:00 -0700 | [diff] [blame] | 418 | NFD_LOG_INFO("slAnnounce " << pa.getAnnouncedName() << " " << faceId << |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 419 | " -> validation error: " << err); |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 420 | cb(SlAnnounceResult::VALIDATION_FAILURE); |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 421 | }); |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | void |
| 425 | RibManager::slRenew(const Name& name, uint64_t faceId, time::milliseconds maxLifetime, |
| 426 | const SlAnnounceCallback& cb) |
| 427 | { |
| 428 | Route routeQuery; |
| 429 | routeQuery.faceId = faceId; |
| 430 | routeQuery.origin = ndn::nfd::ROUTE_ORIGIN_PREFIXANN; |
Teng Liang | a4e6ec3 | 2018-10-21 09:25:00 -0700 | [diff] [blame] | 431 | Route* oldRoute = m_rib.findLongestPrefix(name, routeQuery); |
| 432 | |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 433 | if (oldRoute == nullptr || !oldRoute->announcement) { |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 434 | NFD_LOG_DEBUG("slRenew " << name << " " << faceId << " -> not found"); |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 435 | return cb(SlAnnounceResult::NOT_FOUND); |
| 436 | } |
Teng Liang | a4e6ec3 | 2018-10-21 09:25:00 -0700 | [diff] [blame] | 437 | Name routeName = oldRoute->announcement->getAnnouncedName(); |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 438 | |
| 439 | Route route = *oldRoute; |
| 440 | route.expires = std::min(route.annExpires, time::steady_clock::now() + maxLifetime); |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 441 | beginAddRoute(routeName, route, std::nullopt, |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 442 | [=] (RibUpdateResult ribRes) { |
| 443 | auto res = getSlAnnounceResultFromRibUpdateResult(ribRes); |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 444 | NFD_LOG_INFO("slRenew " << name << " " << faceId << " -> " << res << " " << routeName); |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 445 | cb(res); |
| 446 | }); |
| 447 | } |
| 448 | |
| 449 | void |
| 450 | RibManager::slFindAnn(const Name& name, const SlFindAnnCallback& cb) const |
| 451 | { |
Davide Pesavento | 8a05c7f | 2019-02-28 02:26:19 -0500 | [diff] [blame] | 452 | shared_ptr<rib::RibEntry> entry; |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 453 | auto exactMatch = m_rib.find(name); |
| 454 | if (exactMatch != m_rib.end()) { |
| 455 | entry = exactMatch->second; |
| 456 | } |
| 457 | else { |
| 458 | entry = m_rib.findParent(name); |
| 459 | } |
| 460 | if (entry == nullptr) { |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 461 | return cb(std::nullopt); |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | auto pa = entry->getPrefixAnnouncement(); |
| 465 | pa.toData(m_keyChain); |
| 466 | cb(pa); |
| 467 | } |
| 468 | |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 469 | void |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 470 | RibManager::fetchActiveFaces() |
| 471 | { |
| 472 | NFD_LOG_DEBUG("Fetching active faces"); |
| 473 | |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 474 | m_nfdController.fetch<ndn::nfd::FaceDataset>( |
Davide Pesavento | ae43030 | 2023-05-11 01:42:46 -0400 | [diff] [blame] | 475 | [this] (auto&&... args) { removeInvalidFaces(std::forward<decltype(args)>(args)...); }, |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 476 | [this] (uint32_t code, const std::string& reason) { |
| 477 | NFD_LOG_WARN("Failed to fetch face dataset (error " << code << ": " << reason << ")"); |
| 478 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
| 479 | }); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | void |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 483 | RibManager::scheduleActiveFaceFetch(time::seconds timeToWait) |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 484 | { |
Davide Pesavento | 0a71dd3 | 2019-03-17 20:36:18 -0400 | [diff] [blame] | 485 | m_activeFaceFetchEvent = getScheduler().schedule(timeToWait, [this] { fetchActiveFaces(); }); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | void |
Weiwei Liu | 6e21cdb | 2016-09-29 15:16:23 -0700 | [diff] [blame] | 489 | RibManager::removeInvalidFaces(const std::vector<ndn::nfd::FaceStatus>& activeFaces) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 490 | { |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 491 | NFD_LOG_DEBUG("Checking for invalid face registrations"); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 492 | |
Davide Pesavento | 5d64263 | 2023-10-03 00:36:08 -0400 | [diff] [blame] | 493 | std::set<uint64_t> activeIds; |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 494 | for (const auto& faceStatus : activeFaces) { |
Davide Pesavento | 5d64263 | 2023-10-03 00:36:08 -0400 | [diff] [blame] | 495 | activeIds.insert(faceStatus.getFaceId()); |
Junxiao Shi | 78926c9 | 2015-02-28 22:56:06 -0700 | [diff] [blame] | 496 | } |
Davide Pesavento | 5d64263 | 2023-10-03 00:36:08 -0400 | [diff] [blame] | 497 | boost::asio::defer(getGlobalIoService(), |
| 498 | [this, active = std::move(activeIds)] { m_rib.beginRemoveFailedFaces(active); }); |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 499 | |
| 500 | // Reschedule the check for future clean up |
| 501 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | void |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 505 | RibManager::onNotification(const ndn::nfd::FaceEventNotification& notification) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 506 | { |
Davide Pesavento | 21e24f9 | 2025-01-10 22:22:43 -0500 | [diff] [blame^] | 507 | NFD_LOG_TRACE("Received notification " << notification); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 508 | |
| 509 | if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) { |
Davide Pesavento | 5d64263 | 2023-10-03 00:36:08 -0400 | [diff] [blame] | 510 | boost::asio::defer(getGlobalIoService(), |
| 511 | [this, id = notification.getFaceId()] { m_rib.beginRemoveFace(id); }); |
Yanbiao Li | cf0db02 | 2016-01-29 00:54:25 -0800 | [diff] [blame] | 512 | } |
| 513 | } |
| 514 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 515 | } // namespace nfd |