blob: b3d515c7b104c13d675bfd39378c3b1609a2530a [file] [log] [blame]
Alexander Afanasyev3ecec502014-04-16 13:42:44 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi75306352018-02-01 21:59:44 +00002/*
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -05003 * Copyright (c) 2014-2024, Regents of the University of California,
Junxiao Shi1e46be32015-01-08 20:18:05 -07004 * 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 Afanasyev3ecec502014-04-16 13:42:44 -070010 *
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/>.
Vince12e49462014-06-09 13:29:32 -050024 */
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070025
26#include "rib-manager.hpp"
Nick Gordon9fcf1232017-03-10 22:30:20 +000027
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040028#include "common/global.hpp"
29#include "common/logger.hpp"
Davide Pesavento78ddcab2019-02-28 22:00:03 -050030#include "rib/rib.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040031#include "table/fib.hpp"
Nick Gordon9fcf1232017-03-10 22:30:20 +000032
Davide Pesavento5d642632023-10-03 00:36:08 -040033#include <boost/asio/defer.hpp>
34
Junxiao Shicbc8e942016-09-06 03:17:45 +000035#include <ndn-cxx/lp/tags.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000036#include <ndn-cxx/mgmt/nfd/rib-entry.hpp>
Davide Pesavento40641272023-03-16 13:31:12 -040037#include <ndn-cxx/mgmt/nfd/status-dataset.hpp>
Alexander Afanasyeva1583702020-06-03 13:55:45 -040038#include <ndn-cxx/security/certificate-fetcher-direct-fetch.hpp>
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070039
40namespace nfd {
Davide Pesavento8a05c7f2019-02-28 02:26:19 -050041
42using rib::RibUpdate;
43using rib::Route;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070044
Davide Pesaventoa3148082018-04-12 18:21:54 -040045NFD_LOG_INIT(RibManager);
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -070046
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040047const std::string MGMT_MODULE_NAME = "rib";
48const Name LOCALHOST_TOP_PREFIX = "/localhost/nfd";
Davide Pesavento20d94f62022-09-26 03:30:53 -040049constexpr time::seconds ACTIVE_FACE_FETCH_INTERVAL = 5_min;
Yanbiao Lif48d0802018-06-01 03:00:02 -070050
Davide Pesavento8a05c7f2019-02-28 02:26:19 -050051RibManager::RibManager(rib::Rib& rib, ndn::Face& face, ndn::KeyChain& keyChain,
Davide Pesavento0a71dd32019-03-17 20:36:18 -040052 ndn::nfd::Controller& nfdController, Dispatcher& dispatcher)
Davide Pesavento78ddcab2019-02-28 22:00:03 -050053 : ManagerBase(MGMT_MODULE_NAME, dispatcher)
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000054 , m_rib(rib)
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +000055 , m_keyChain(keyChain)
Junxiao Shif4cfed12018-08-22 23:26:29 +000056 , m_nfdController(nfdController)
57 , m_dispatcher(dispatcher)
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000058 , m_faceMonitor(face)
59 , m_localhostValidator(face)
Alexander Afanasyeva1583702020-06-03 13:55:45 -040060 , m_localhopValidator(make_unique<ndn::security::CertificateFetcherDirectFetch>(face))
61 , m_paValidator(make_unique<ndn::security::CertificateFetcherDirectFetch>(face))
Junxiao Shif4cfed12018-08-22 23:26:29 +000062 , m_isLocalhopEnabled(false)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070063{
Yanbiao Licf0db022016-01-29 00:54:25 -080064 registerCommandHandler<ndn::nfd::RibRegisterCommand>("register",
Davide Pesaventoae430302023-05-11 01:42:46 -040065 [this] (auto&&, auto&&, auto&&... args) { registerEntry(std::forward<decltype(args)>(args)...); });
Yanbiao Licf0db022016-01-29 00:54:25 -080066 registerCommandHandler<ndn::nfd::RibUnregisterCommand>("unregister",
Davide Pesaventoae430302023-05-11 01:42:46 -040067 [this] (auto&&, auto&&, auto&&... args) { unregisterEntry(std::forward<decltype(args)>(args)...); });
68 registerStatusDatasetHandler("list",
69 [this] (auto&&, auto&&, auto&&... args) { listEntries(std::forward<decltype(args)>(args)...); });
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070070}
71
Junxiao Shif4cfed12018-08-22 23:26:29 +000072void
73RibManager::applyLocalhostConfig(const ConfigSection& section, const std::string& filename)
74{
75 m_localhostValidator.load(section, filename);
76}
77
78void
79RibManager::enableLocalhop(const ConfigSection& section, const std::string& filename)
80{
81 m_localhopValidator.load(section, filename);
82 m_isLocalhopEnabled = true;
83}
84
85void
86RibManager::disableLocalhop()
87{
88 m_isLocalhopEnabled = false;
89}
Vince Lehman26b215c2014-08-17 15:00:41 -050090
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070091void
Teng Liang18c2b292019-10-18 14:31:04 -070092RibManager::applyPaConfig(const ConfigSection& section, const std::string& filename)
93{
94 m_paValidator.load(section, filename);
95}
96
97void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070098RibManager::registerWithNfd()
99{
Junxiao Shif4cfed12018-08-22 23:26:29 +0000100 registerTopPrefix(LOCALHOST_TOP_PREFIX);
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700101
Junxiao Shia3295742014-05-16 22:40:10 -0700102 if (m_isLocalhopEnabled) {
Junxiao Shif4cfed12018-08-22 23:26:29 +0000103 registerTopPrefix(LOCALHOP_TOP_PREFIX);
Junxiao Shia3295742014-05-16 22:40:10 -0700104 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700105
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700106 NFD_LOG_INFO("Start monitoring face create/destroy events");
Davide Pesavento412c9822021-07-02 00:21:05 -0400107 m_faceMonitor.onNotification.connect([this] (const auto& notif) { onNotification(notif); });
Junxiao Shi15b12e72014-08-09 19:56:24 -0700108 m_faceMonitor.start();
Vince Lehmancd613c52014-07-30 14:34:49 -0500109
Vince Lehman26b215c2014-08-17 15:00:41 -0500110 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700111}
112
113void
Eric Newberryecc45cb2016-11-08 19:57:12 +0000114RibManager::enableLocalFields()
Yanbiao Licf0db022016-01-29 00:54:25 -0800115{
Eric Newberryecc45cb2016-11-08 19:57:12 +0000116 m_nfdController.start<ndn::nfd::FaceUpdateCommand>(
Junxiao Shi52009042018-09-10 12:33:56 +0000117 ControlParameters().setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, true),
Davide Pesavento19779d82019-02-14 13:40:04 -0500118 [] (const ControlParameters&) {
Junxiao Shi52009042018-09-10 12:33:56 +0000119 NFD_LOG_DEBUG("Local fields enabled");
120 },
121 [] (const ControlResponse& res) {
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -0500122 NDN_THROW(Error("Couldn't enable local fields (" + std::to_string(res.getCode()) +
Davide Pesavento19779d82019-02-14 13:40:04 -0500123 " " + res.getText() + ")"));
Junxiao Shi52009042018-09-10 12:33:56 +0000124 });
Yanbiao Licf0db022016-01-29 00:54:25 -0800125}
126
127void
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400128RibManager::beginAddRoute(const Name& name, Route route, std::optional<time::nanoseconds> expires,
Junxiao Shi52009042018-09-10 12:33:56 +0000129 const std::function<void(RibUpdateResult)>& done)
Yanbiao Licf0db022016-01-29 00:54:25 -0800130{
Junxiao Shi52009042018-09-10 12:33:56 +0000131 if (expires) {
Junxiao Shi52009042018-09-10 12:33:56 +0000132 route.expires = time::steady_clock::now() + *expires;
133 }
134 else if (route.expires) {
135 expires = *route.expires - time::steady_clock::now();
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000136 }
137
138 if (expires && *expires <= 0_s) {
139 m_rib.onRouteExpiration(name, route);
140 return done(RibUpdateResult::EXPIRED);
Junxiao Shi52009042018-09-10 12:33:56 +0000141 }
142
143 NFD_LOG_INFO("Adding route " << name << " nexthop=" << route.faceId <<
144 " origin=" << route.origin << " cost=" << route.cost);
145
146 if (expires) {
Davide Pesavento0a71dd32019-03-17 20:36:18 -0400147 auto event = getScheduler().schedule(*expires, [=] { m_rib.onRouteExpiration(name, route); });
Junxiao Shifeddc3c2019-01-17 19:06:00 +0000148 route.setExpirationEvent(event);
Junxiao Shi52009042018-09-10 12:33:56 +0000149 NFD_LOG_TRACE("Scheduled unregistration at: " << *route.expires);
150 }
151
Junxiao Shi52009042018-09-10 12:33:56 +0000152 RibUpdate update;
153 update.setAction(RibUpdate::REGISTER)
154 .setName(name)
155 .setRoute(route);
156 beginRibUpdate(update, done);
Yanbiao Licf0db022016-01-29 00:54:25 -0800157}
158
159void
Junxiao Shi52009042018-09-10 12:33:56 +0000160RibManager::beginRemoveRoute(const Name& name, const Route& route,
161 const std::function<void(RibUpdateResult)>& done)
Yanbiao Licf0db022016-01-29 00:54:25 -0800162{
Junxiao Shi52009042018-09-10 12:33:56 +0000163 NFD_LOG_INFO("Removing route " << name << " nexthop=" << route.faceId <<
164 " origin=" << route.origin);
Yanbiao Licf0db022016-01-29 00:54:25 -0800165
Junxiao Shi52009042018-09-10 12:33:56 +0000166 RibUpdate update;
167 update.setAction(RibUpdate::UNREGISTER)
168 .setName(name)
169 .setRoute(route);
170 beginRibUpdate(update, done);
171}
172
173void
174RibManager::beginRibUpdate(const RibUpdate& update,
175 const std::function<void(RibUpdateResult)>& done)
176{
177 m_rib.beginApplyUpdate(update,
178 [=] {
179 NFD_LOG_DEBUG("RIB update succeeded for " << update);
180 done(RibUpdateResult::OK);
181 },
182 [=] (uint32_t code, const std::string& error) {
183 NFD_LOG_DEBUG("RIB update failed for " << update << " (" << code << " " << error << ")");
184
185 // Since the FIB rejected the update, clean up invalid routes
186 scheduleActiveFaceFetch(1_s);
187
188 done(RibUpdateResult::ERROR);
189 });
Yanbiao Licf0db022016-01-29 00:54:25 -0800190}
191
192void
Yanbiao Licf0db022016-01-29 00:54:25 -0800193RibManager::registerTopPrefix(const Name& topPrefix)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700194{
Junxiao Shi52009042018-09-10 12:33:56 +0000195 // add FIB nexthop
Yanbiao Licf0db022016-01-29 00:54:25 -0800196 m_nfdController.start<ndn::nfd::FibAddNextHopCommand>(
Junxiao Shi52009042018-09-10 12:33:56 +0000197 ControlParameters().setName(Name(topPrefix).append(MGMT_MODULE_NAME))
198 .setFaceId(0),
199 [=] (const ControlParameters& res) {
200 NFD_LOG_DEBUG("Successfully registered " << topPrefix << " with NFD");
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700201
Junxiao Shi52009042018-09-10 12:33:56 +0000202 // Routes must be inserted into the RIB so route flags can be applied
203 Route route;
204 route.faceId = res.getFaceId();
205 route.origin = ndn::nfd::ROUTE_ORIGIN_APP;
206 route.flags = ndn::nfd::ROUTE_FLAG_CHILD_INHERIT;
207
208 m_rib.insert(topPrefix, route);
Junxiao Shi52009042018-09-10 12:33:56 +0000209 },
210 [=] (const ControlResponse& res) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500211 NDN_THROW(Error("Cannot add FIB entry " + topPrefix.toUri() + " (" +
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -0500212 std::to_string(res.getCode()) + " " + res.getText() + ")"));
Junxiao Shi52009042018-09-10 12:33:56 +0000213 });
214
215 // add top prefix to the dispatcher without prefix registration
Junxiao Shif4cfed12018-08-22 23:26:29 +0000216 m_dispatcher.addTopPrefix(topPrefix, false);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700217}
218
219void
Davide Pesaventoae430302023-05-11 01:42:46 -0400220RibManager::registerEntry(const Interest& interest, ControlParameters parameters,
Yanbiao Licf0db022016-01-29 00:54:25 -0800221 const ndn::mgmt::CommandContinuation& done)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700222{
Davide Pesavento2cae8ca2019-04-18 20:48:05 -0400223 if (parameters.getName().size() > Fib::getMaxDepth()) {
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -0500224 done(ControlResponse(414, "Route prefix cannot exceed " + std::to_string(Fib::getMaxDepth()) +
Junxiao Shi75306352018-02-01 21:59:44 +0000225 " components"));
226 return;
227 }
228
Yanbiao Licf0db022016-01-29 00:54:25 -0800229 setFaceForSelfRegistration(interest, parameters);
Vince Lehman76c751c2014-11-18 17:36:38 -0600230
231 // Respond since command is valid and authorized
Yanbiao Licf0db022016-01-29 00:54:25 -0800232 done(ControlResponse(200, "Success").setBody(parameters.wireEncode()));
Alexander Afanasyevfb1c8082014-07-17 15:16:15 -0700233
Vince Lehman218be0a2015-01-15 17:25:20 -0600234 Route route;
235 route.faceId = parameters.getFaceId();
236 route.origin = parameters.getOrigin();
237 route.cost = parameters.getCost();
238 route.flags = parameters.getFlags();
Syed Obaid3313a372014-07-01 01:31:33 -0500239
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400240 std::optional<time::nanoseconds> expires;
Alexander Afanasyevf67cf082014-07-18 16:47:29 -0700241 if (parameters.hasExpirationPeriod() &&
Nick Gordon9fcf1232017-03-10 22:30:20 +0000242 parameters.getExpirationPeriod() != time::milliseconds::max()) {
Junxiao Shi52009042018-09-10 12:33:56 +0000243 expires = time::duration_cast<time::nanoseconds>(parameters.getExpirationPeriod());
Vince Lehman76c751c2014-11-18 17:36:38 -0600244 }
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700245
Junxiao Shi52009042018-09-10 12:33:56 +0000246 beginAddRoute(parameters.getName(), std::move(route), expires, [] (RibUpdateResult) {});
Vince Lehman281ded72014-08-21 12:17:08 -0500247}
248
249void
Davide Pesaventoae430302023-05-11 01:42:46 -0400250RibManager::unregisterEntry(const Interest& interest, ControlParameters parameters,
Yanbiao Licf0db022016-01-29 00:54:25 -0800251 const ndn::mgmt::CommandContinuation& done)
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700252{
Yanbiao Licf0db022016-01-29 00:54:25 -0800253 setFaceForSelfRegistration(interest, parameters);
Vince Lehman76c751c2014-11-18 17:36:38 -0600254
255 // Respond since command is valid and authorized
Yanbiao Licf0db022016-01-29 00:54:25 -0800256 done(ControlResponse(200, "Success").setBody(parameters.wireEncode()));
Alexander Afanasyevfb1c8082014-07-17 15:16:15 -0700257
Vince Lehman218be0a2015-01-15 17:25:20 -0600258 Route route;
259 route.faceId = parameters.getFaceId();
260 route.origin = parameters.getOrigin();
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700261
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400262 beginRemoveRoute(parameters.getName(), route, [] (auto&&...) {});
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700263}
264
265void
Davide Pesaventoae430302023-05-11 01:42:46 -0400266RibManager::listEntries(ndn::mgmt::StatusDatasetContext& context)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700267{
Junxiao Shi3f21e582017-05-29 15:26:32 +0000268 auto now = time::steady_clock::now();
269 for (const auto& kv : m_rib) {
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500270 const rib::RibEntry& entry = *kv.second;
Junxiao Shi3f21e582017-05-29 15:26:32 +0000271 ndn::nfd::RibEntry item;
272 item.setName(entry.getName());
273 for (const Route& route : entry.getRoutes()) {
274 ndn::nfd::Route r;
275 r.setFaceId(route.faceId);
276 r.setOrigin(route.origin);
277 r.setCost(route.cost);
278 r.setFlags(route.flags);
279 if (route.expires) {
280 r.setExpirationPeriod(time::duration_cast<time::milliseconds>(*route.expires - now));
281 }
282 item.addRoute(r);
283 }
284 context.append(item.wireEncode());
Vince Lehman76c751c2014-11-18 17:36:38 -0600285 }
Yanbiao Licf0db022016-01-29 00:54:25 -0800286 context.end();
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700287}
288
289void
Yanbiao Licf0db022016-01-29 00:54:25 -0800290RibManager::setFaceForSelfRegistration(const Interest& request, ControlParameters& parameters)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700291{
Yanbiao Licf0db022016-01-29 00:54:25 -0800292 bool isSelfRegistration = (parameters.getFaceId() == 0);
293 if (isSelfRegistration) {
294 shared_ptr<lp::IncomingFaceIdTag> incomingFaceIdTag = request.getTag<lp::IncomingFaceIdTag>();
295 // NDNLPv2 says "application MUST be prepared to receive a packet without IncomingFaceId field",
296 // but it's fine to assert IncomingFaceId is available, because InternalFace lives inside NFD
297 // and is initialized synchronously with IncomingFaceId field enabled.
298 BOOST_ASSERT(incomingFaceIdTag != nullptr);
299 parameters.setFaceId(*incomingFaceIdTag);
Vince Lehman76c751c2014-11-18 17:36:38 -0600300 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700301}
302
Junxiao Shi21738402016-08-19 19:48:00 +0000303ndn::mgmt::Authorization
Davide Pesavento412c9822021-07-02 00:21:05 -0400304RibManager::makeAuthorization(const std::string&)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700305{
Junxiao Shi21738402016-08-19 19:48:00 +0000306 return [this] (const Name& prefix, const Interest& interest,
307 const ndn::mgmt::ControlParameters* params,
308 const ndn::mgmt::AcceptContinuation& accept,
309 const ndn::mgmt::RejectContinuation& reject) {
310 BOOST_ASSERT(params != nullptr);
311 BOOST_ASSERT(typeid(*params) == typeid(ndn::nfd::ControlParameters));
Junxiao Shif4cfed12018-08-22 23:26:29 +0000312 BOOST_ASSERT(prefix == LOCALHOST_TOP_PREFIX || prefix == LOCALHOP_TOP_PREFIX);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700313
Davide Pesavento5a897692019-10-31 01:28:43 -0400314 auto& validator = prefix == LOCALHOST_TOP_PREFIX ? m_localhostValidator : m_localhopValidator;
Junxiao Shi21738402016-08-19 19:48:00 +0000315 validator.validate(interest,
Davide Pesavento6d6f2072022-09-12 23:08:34 -0400316 [&interest, accept] (auto&&...) { accept(extractSigner(interest)); },
Davide Pesavento412c9822021-07-02 00:21:05 -0400317 [reject] (auto&&...) { reject(ndn::mgmt::RejectReply::STATUS403); });
Junxiao Shi21738402016-08-19 19:48:00 +0000318 };
Vince Lehman26b215c2014-08-17 15:00:41 -0500319}
320
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000321std::ostream&
322operator<<(std::ostream& os, RibManager::SlAnnounceResult res)
323{
324 switch (res) {
Davide Pesavento5a897692019-10-31 01:28:43 -0400325 case RibManager::SlAnnounceResult::OK:
326 return os << "OK";
327 case RibManager::SlAnnounceResult::ERROR:
328 return os << "ERROR";
329 case RibManager::SlAnnounceResult::VALIDATION_FAILURE:
330 return os << "VALIDATION_FAILURE";
331 case RibManager::SlAnnounceResult::EXPIRED:
332 return os << "EXPIRED";
333 case RibManager::SlAnnounceResult::NOT_FOUND:
334 return os << "NOT_FOUND";
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000335 }
Davide Pesavento5a897692019-10-31 01:28:43 -0400336 NDN_THROW(std::invalid_argument("Unknown SlAnnounceResult"));
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000337}
338
339RibManager::SlAnnounceResult
340RibManager::getSlAnnounceResultFromRibUpdateResult(RibUpdateResult r)
341{
342 switch (r) {
343 case RibUpdateResult::OK:
344 return SlAnnounceResult::OK;
345 case RibUpdateResult::ERROR:
346 return SlAnnounceResult::ERROR;
347 case RibUpdateResult::EXPIRED:
348 return SlAnnounceResult::EXPIRED;
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000349 }
Davide Pesavento5a897692019-10-31 01:28:43 -0400350 NDN_CXX_UNREACHABLE;
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000351}
352
353void
354RibManager::slAnnounce(const ndn::PrefixAnnouncement& pa, uint64_t faceId,
355 time::milliseconds maxLifetime, const SlAnnounceCallback& cb)
356{
357 BOOST_ASSERT(pa.getData());
358
Teng Liang18c2b292019-10-18 14:31:04 -0700359 m_paValidator.validate(*pa.getData(),
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000360 [=] (const Data&) {
361 Route route(pa, faceId);
362 route.expires = std::min(route.annExpires, time::steady_clock::now() + maxLifetime);
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400363 beginAddRoute(pa.getAnnouncedName(), route, std::nullopt,
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000364 [=] (RibUpdateResult ribRes) {
365 auto res = getSlAnnounceResultFromRibUpdateResult(ribRes);
Teng Lianga4e6ec32018-10-21 09:25:00 -0700366 NFD_LOG_INFO("slAnnounce " << pa.getAnnouncedName() << " " << faceId << ": " << res);
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000367 cb(res);
368 });
369 },
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400370 [=] (const Data&, ndn::security::ValidationError err) {
Teng Lianga4e6ec32018-10-21 09:25:00 -0700371 NFD_LOG_INFO("slAnnounce " << pa.getAnnouncedName() << " " << faceId <<
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000372 " validation error: " << err);
373 cb(SlAnnounceResult::VALIDATION_FAILURE);
374 }
375 );
376}
377
378void
379RibManager::slRenew(const Name& name, uint64_t faceId, time::milliseconds maxLifetime,
380 const SlAnnounceCallback& cb)
381{
382 Route routeQuery;
383 routeQuery.faceId = faceId;
384 routeQuery.origin = ndn::nfd::ROUTE_ORIGIN_PREFIXANN;
Teng Lianga4e6ec32018-10-21 09:25:00 -0700385 Route* oldRoute = m_rib.findLongestPrefix(name, routeQuery);
386
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000387 if (oldRoute == nullptr || !oldRoute->announcement) {
Teng Lianga4e6ec32018-10-21 09:25:00 -0700388 NFD_LOG_DEBUG("slRenew " << name << " " << faceId << ": not found");
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000389 return cb(SlAnnounceResult::NOT_FOUND);
390 }
Teng Lianga4e6ec32018-10-21 09:25:00 -0700391 Name routeName = oldRoute->announcement->getAnnouncedName();
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000392
393 Route route = *oldRoute;
394 route.expires = std::min(route.annExpires, time::steady_clock::now() + maxLifetime);
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400395 beginAddRoute(routeName, route, std::nullopt,
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000396 [=] (RibUpdateResult ribRes) {
397 auto res = getSlAnnounceResultFromRibUpdateResult(ribRes);
Teng Lianga4e6ec32018-10-21 09:25:00 -0700398 NFD_LOG_INFO("slRenew " << name << " " << faceId << ": " << res << " " << routeName);
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000399 cb(res);
400 });
401}
402
403void
404RibManager::slFindAnn(const Name& name, const SlFindAnnCallback& cb) const
405{
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500406 shared_ptr<rib::RibEntry> entry;
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000407 auto exactMatch = m_rib.find(name);
408 if (exactMatch != m_rib.end()) {
409 entry = exactMatch->second;
410 }
411 else {
412 entry = m_rib.findParent(name);
413 }
414 if (entry == nullptr) {
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400415 return cb(std::nullopt);
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000416 }
417
418 auto pa = entry->getPrefixAnnouncement();
419 pa.toData(m_keyChain);
420 cb(pa);
421}
422
Vince Lehman26b215c2014-08-17 15:00:41 -0500423void
Vince Lehmancd613c52014-07-30 14:34:49 -0500424RibManager::fetchActiveFaces()
425{
426 NFD_LOG_DEBUG("Fetching active faces");
427
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700428 m_nfdController.fetch<ndn::nfd::FaceDataset>(
Davide Pesaventoae430302023-05-11 01:42:46 -0400429 [this] (auto&&... args) { removeInvalidFaces(std::forward<decltype(args)>(args)...); },
430 [this] (auto&&... args) { onFetchActiveFacesFailure(std::forward<decltype(args)>(args)...); });
Vince Lehmancd613c52014-07-30 14:34:49 -0500431}
432
433void
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700434RibManager::onFetchActiveFacesFailure(uint32_t code, const std::string& reason)
Vince Lehmancd613c52014-07-30 14:34:49 -0500435{
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700436 NFD_LOG_DEBUG("Face Status Dataset request failure " << code << " " << reason);
Yanbiao Licf0db022016-01-29 00:54:25 -0800437 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
438}
439
440void
Yanbiao Licf0db022016-01-29 00:54:25 -0800441RibManager::scheduleActiveFaceFetch(const time::seconds& timeToWait)
442{
Davide Pesavento0a71dd32019-03-17 20:36:18 -0400443 m_activeFaceFetchEvent = getScheduler().schedule(timeToWait, [this] { fetchActiveFaces(); });
Yanbiao Licf0db022016-01-29 00:54:25 -0800444}
445
446void
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700447RibManager::removeInvalidFaces(const std::vector<ndn::nfd::FaceStatus>& activeFaces)
Vince Lehmancd613c52014-07-30 14:34:49 -0500448{
Vince Lehman26b215c2014-08-17 15:00:41 -0500449 NFD_LOG_DEBUG("Checking for invalid face registrations");
Vince Lehmancd613c52014-07-30 14:34:49 -0500450
Davide Pesavento5d642632023-10-03 00:36:08 -0400451 std::set<uint64_t> activeIds;
Davide Pesaventod396b612017-02-20 22:11:50 -0500452 for (const auto& faceStatus : activeFaces) {
Davide Pesavento5d642632023-10-03 00:36:08 -0400453 activeIds.insert(faceStatus.getFaceId());
Junxiao Shi78926c92015-02-28 22:56:06 -0700454 }
Davide Pesavento5d642632023-10-03 00:36:08 -0400455 boost::asio::defer(getGlobalIoService(),
456 [this, active = std::move(activeIds)] { m_rib.beginRemoveFailedFaces(active); });
Vince Lehman26b215c2014-08-17 15:00:41 -0500457
458 // Reschedule the check for future clean up
459 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Vince Lehmancd613c52014-07-30 14:34:49 -0500460}
461
462void
Davide Pesaventod396b612017-02-20 22:11:50 -0500463RibManager::onNotification(const ndn::nfd::FaceEventNotification& notification)
Vince Lehmancd613c52014-07-30 14:34:49 -0500464{
Yanbiao Licf0db022016-01-29 00:54:25 -0800465 NFD_LOG_TRACE("onNotification: " << notification);
466
467 if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) {
Davide Pesavento0a71dd32019-03-17 20:36:18 -0400468 NFD_LOG_DEBUG("Received notification for destroyed FaceId " << notification.getFaceId());
Davide Pesavento5d642632023-10-03 00:36:08 -0400469 boost::asio::defer(getGlobalIoService(),
470 [this, id = notification.getFaceId()] { m_rib.beginRemoveFace(id); });
Yanbiao Licf0db022016-01-29 00:54:25 -0800471 }
472}
473
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700474} // namespace nfd