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