blob: 768526b386e1dccdb73a20935a99874c6a788c59 [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/*
Junxiao Shifeddc3c2019-01-17 19:06:00 +00003 * Copyright (c) 2014-2019, 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
Junxiao Shicbc8e942016-09-06 03:17:45 +000033#include <ndn-cxx/lp/tags.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000034#include <ndn-cxx/mgmt/nfd/face-status.hpp>
35#include <ndn-cxx/mgmt/nfd/rib-entry.hpp>
Zhiyi Zhanga499aa22019-09-24 15:00:40 -070036#include <ndn-cxx/security/v2/certificate-fetcher-direct-fetch.hpp>
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070037
38namespace nfd {
Davide Pesavento8a05c7f2019-02-28 02:26:19 -050039
40using rib::RibUpdate;
41using rib::Route;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070042
Davide Pesaventoa3148082018-04-12 18:21:54 -040043NFD_LOG_INIT(RibManager);
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -070044
Junxiao Shif4cfed12018-08-22 23:26:29 +000045static const std::string MGMT_MODULE_NAME = "rib";
46static const Name LOCALHOST_TOP_PREFIX = "/localhost/nfd";
Davide Pesaventoe1bdc082018-10-11 21:20:23 -040047static const time::seconds ACTIVE_FACE_FETCH_INTERVAL = 5_min;
Vince Lehman26b215c2014-08-17 15:00:41 -050048
Yanbiao Lif48d0802018-06-01 03:00:02 -070049const Name RibManager::LOCALHOP_TOP_PREFIX = "/localhop/nfd";
50
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)
Zhiyi Zhanga499aa22019-09-24 15:00:40 -070060 , m_localhopValidator(make_unique<ndn::security::v2::CertificateFetcherDirectFetch>(face))
Teng Liang18c2b292019-10-18 14:31:04 -070061 , m_paValidator(make_unique<ndn::security::v2::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",
65 bind(&RibManager::registerEntry, this, _2, _3, _4, _5));
66 registerCommandHandler<ndn::nfd::RibUnregisterCommand>("unregister",
67 bind(&RibManager::unregisterEntry, this, _2, _3, _4, _5));
68
69 registerStatusDatasetHandler("list", bind(&RibManager::listEntries, this, _1, _2, _3));
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");
Junxiao Shifbf78342015-01-23 14:46:41 -0700107 m_faceMonitor.onNotification.connect(bind(&RibManager::onNotification, this, _1));
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 Pesavento19779d82019-02-14 13:40:04 -0500122 NDN_THROW(Error("Couldn't enable local fields (" + to_string(res.getCode()) +
123 " " + res.getText() + ")"));
Junxiao Shi52009042018-09-10 12:33:56 +0000124 });
Yanbiao Licf0db022016-01-29 00:54:25 -0800125}
126
127void
Junxiao Shi52009042018-09-10 12:33:56 +0000128RibManager::beginAddRoute(const Name& name, Route route, optional<time::nanoseconds> expires,
129 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() + " (" +
212 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
Yanbiao Licf0db022016-01-29 00:54:25 -0800220RibManager::registerEntry(const Name& topPrefix, const Interest& interest,
221 ControlParameters parameters,
222 const ndn::mgmt::CommandContinuation& done)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700223{
Davide Pesavento2cae8ca2019-04-18 20:48:05 -0400224 if (parameters.getName().size() > Fib::getMaxDepth()) {
225 done(ControlResponse(414, "Route prefix cannot exceed " + to_string(Fib::getMaxDepth()) +
Junxiao Shi75306352018-02-01 21:59:44 +0000226 " components"));
227 return;
228 }
229
Yanbiao Licf0db022016-01-29 00:54:25 -0800230 setFaceForSelfRegistration(interest, parameters);
Vince Lehman76c751c2014-11-18 17:36:38 -0600231
232 // Respond since command is valid and authorized
Yanbiao Licf0db022016-01-29 00:54:25 -0800233 done(ControlResponse(200, "Success").setBody(parameters.wireEncode()));
Alexander Afanasyevfb1c8082014-07-17 15:16:15 -0700234
Vince Lehman218be0a2015-01-15 17:25:20 -0600235 Route route;
236 route.faceId = parameters.getFaceId();
237 route.origin = parameters.getOrigin();
238 route.cost = parameters.getCost();
239 route.flags = parameters.getFlags();
Syed Obaid3313a372014-07-01 01:31:33 -0500240
Junxiao Shi52009042018-09-10 12:33:56 +0000241 optional<time::nanoseconds> expires;
Alexander Afanasyevf67cf082014-07-18 16:47:29 -0700242 if (parameters.hasExpirationPeriod() &&
Nick Gordon9fcf1232017-03-10 22:30:20 +0000243 parameters.getExpirationPeriod() != time::milliseconds::max()) {
Junxiao Shi52009042018-09-10 12:33:56 +0000244 expires = time::duration_cast<time::nanoseconds>(parameters.getExpirationPeriod());
Vince Lehman76c751c2014-11-18 17:36:38 -0600245 }
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700246
Junxiao Shi52009042018-09-10 12:33:56 +0000247 beginAddRoute(parameters.getName(), std::move(route), expires, [] (RibUpdateResult) {});
Vince Lehman281ded72014-08-21 12:17:08 -0500248}
249
250void
Yanbiao Licf0db022016-01-29 00:54:25 -0800251RibManager::unregisterEntry(const Name& topPrefix, const Interest& interest,
252 ControlParameters parameters,
253 const ndn::mgmt::CommandContinuation& done)
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700254{
Yanbiao Licf0db022016-01-29 00:54:25 -0800255 setFaceForSelfRegistration(interest, parameters);
Vince Lehman76c751c2014-11-18 17:36:38 -0600256
257 // Respond since command is valid and authorized
Yanbiao Licf0db022016-01-29 00:54:25 -0800258 done(ControlResponse(200, "Success").setBody(parameters.wireEncode()));
Alexander Afanasyevfb1c8082014-07-17 15:16:15 -0700259
Vince Lehman218be0a2015-01-15 17:25:20 -0600260 Route route;
261 route.faceId = parameters.getFaceId();
262 route.origin = parameters.getOrigin();
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700263
Junxiao Shi52009042018-09-10 12:33:56 +0000264 beginRemoveRoute(parameters.getName(), route, [] (RibUpdateResult) {});
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700265}
266
267void
Yanbiao Licf0db022016-01-29 00:54:25 -0800268RibManager::listEntries(const Name& topPrefix, const Interest& interest,
269 ndn::mgmt::StatusDatasetContext& context)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700270{
Junxiao Shi3f21e582017-05-29 15:26:32 +0000271 auto now = time::steady_clock::now();
272 for (const auto& kv : m_rib) {
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500273 const rib::RibEntry& entry = *kv.second;
Junxiao Shi3f21e582017-05-29 15:26:32 +0000274 ndn::nfd::RibEntry item;
275 item.setName(entry.getName());
276 for (const Route& route : entry.getRoutes()) {
277 ndn::nfd::Route r;
278 r.setFaceId(route.faceId);
279 r.setOrigin(route.origin);
280 r.setCost(route.cost);
281 r.setFlags(route.flags);
282 if (route.expires) {
283 r.setExpirationPeriod(time::duration_cast<time::milliseconds>(*route.expires - now));
284 }
285 item.addRoute(r);
286 }
287 context.append(item.wireEncode());
Vince Lehman76c751c2014-11-18 17:36:38 -0600288 }
Yanbiao Licf0db022016-01-29 00:54:25 -0800289 context.end();
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700290}
291
292void
Yanbiao Licf0db022016-01-29 00:54:25 -0800293RibManager::setFaceForSelfRegistration(const Interest& request, ControlParameters& parameters)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700294{
Yanbiao Licf0db022016-01-29 00:54:25 -0800295 bool isSelfRegistration = (parameters.getFaceId() == 0);
296 if (isSelfRegistration) {
297 shared_ptr<lp::IncomingFaceIdTag> incomingFaceIdTag = request.getTag<lp::IncomingFaceIdTag>();
298 // NDNLPv2 says "application MUST be prepared to receive a packet without IncomingFaceId field",
299 // but it's fine to assert IncomingFaceId is available, because InternalFace lives inside NFD
300 // and is initialized synchronously with IncomingFaceId field enabled.
301 BOOST_ASSERT(incomingFaceIdTag != nullptr);
302 parameters.setFaceId(*incomingFaceIdTag);
Vince Lehman76c751c2014-11-18 17:36:38 -0600303 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700304}
305
Junxiao Shi21738402016-08-19 19:48:00 +0000306ndn::mgmt::Authorization
307RibManager::makeAuthorization(const std::string& verb)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700308{
Junxiao Shi21738402016-08-19 19:48:00 +0000309 return [this] (const Name& prefix, const Interest& interest,
310 const ndn::mgmt::ControlParameters* params,
311 const ndn::mgmt::AcceptContinuation& accept,
312 const ndn::mgmt::RejectContinuation& reject) {
313 BOOST_ASSERT(params != nullptr);
314 BOOST_ASSERT(typeid(*params) == typeid(ndn::nfd::ControlParameters));
Junxiao Shif4cfed12018-08-22 23:26:29 +0000315 BOOST_ASSERT(prefix == LOCALHOST_TOP_PREFIX || prefix == LOCALHOP_TOP_PREFIX);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700316
Davide Pesavento5a897692019-10-31 01:28:43 -0400317 auto& validator = prefix == LOCALHOST_TOP_PREFIX ? m_localhostValidator : m_localhopValidator;
Junxiao Shi21738402016-08-19 19:48:00 +0000318 validator.validate(interest,
319 bind([&interest, this, accept] { extractRequester(interest, accept); }),
320 bind([reject] { reject(ndn::mgmt::RejectReply::STATUS403); }));
321 };
Vince Lehman26b215c2014-08-17 15:00:41 -0500322}
323
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000324std::ostream&
325operator<<(std::ostream& os, RibManager::SlAnnounceResult res)
326{
327 switch (res) {
Davide Pesavento5a897692019-10-31 01:28:43 -0400328 case RibManager::SlAnnounceResult::OK:
329 return os << "OK";
330 case RibManager::SlAnnounceResult::ERROR:
331 return os << "ERROR";
332 case RibManager::SlAnnounceResult::VALIDATION_FAILURE:
333 return os << "VALIDATION_FAILURE";
334 case RibManager::SlAnnounceResult::EXPIRED:
335 return os << "EXPIRED";
336 case RibManager::SlAnnounceResult::NOT_FOUND:
337 return os << "NOT_FOUND";
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000338 }
Davide Pesavento5a897692019-10-31 01:28:43 -0400339 NDN_THROW(std::invalid_argument("Unknown SlAnnounceResult"));
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000340}
341
342RibManager::SlAnnounceResult
343RibManager::getSlAnnounceResultFromRibUpdateResult(RibUpdateResult r)
344{
345 switch (r) {
346 case RibUpdateResult::OK:
347 return SlAnnounceResult::OK;
348 case RibUpdateResult::ERROR:
349 return SlAnnounceResult::ERROR;
350 case RibUpdateResult::EXPIRED:
351 return SlAnnounceResult::EXPIRED;
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000352 }
Davide Pesavento5a897692019-10-31 01:28:43 -0400353 NDN_CXX_UNREACHABLE;
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000354}
355
356void
357RibManager::slAnnounce(const ndn::PrefixAnnouncement& pa, uint64_t faceId,
358 time::milliseconds maxLifetime, const SlAnnounceCallback& cb)
359{
360 BOOST_ASSERT(pa.getData());
361
Teng Liang18c2b292019-10-18 14:31:04 -0700362 m_paValidator.validate(*pa.getData(),
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000363 [=] (const Data&) {
364 Route route(pa, faceId);
365 route.expires = std::min(route.annExpires, time::steady_clock::now() + maxLifetime);
366 beginAddRoute(pa.getAnnouncedName(), route, nullopt,
367 [=] (RibUpdateResult ribRes) {
368 auto res = getSlAnnounceResultFromRibUpdateResult(ribRes);
Teng Lianga4e6ec32018-10-21 09:25:00 -0700369 NFD_LOG_INFO("slAnnounce " << pa.getAnnouncedName() << " " << faceId << ": " << res);
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000370 cb(res);
371 });
372 },
373 [=] (const Data&, ndn::security::v2::ValidationError err) {
Teng Lianga4e6ec32018-10-21 09:25:00 -0700374 NFD_LOG_INFO("slAnnounce " << pa.getAnnouncedName() << " " << faceId <<
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000375 " validation error: " << err);
376 cb(SlAnnounceResult::VALIDATION_FAILURE);
377 }
378 );
379}
380
381void
382RibManager::slRenew(const Name& name, uint64_t faceId, time::milliseconds maxLifetime,
383 const SlAnnounceCallback& cb)
384{
385 Route routeQuery;
386 routeQuery.faceId = faceId;
387 routeQuery.origin = ndn::nfd::ROUTE_ORIGIN_PREFIXANN;
Teng Lianga4e6ec32018-10-21 09:25:00 -0700388 Route* oldRoute = m_rib.findLongestPrefix(name, routeQuery);
389
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000390 if (oldRoute == nullptr || !oldRoute->announcement) {
Teng Lianga4e6ec32018-10-21 09:25:00 -0700391 NFD_LOG_DEBUG("slRenew " << name << " " << faceId << ": not found");
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000392 return cb(SlAnnounceResult::NOT_FOUND);
393 }
Teng Lianga4e6ec32018-10-21 09:25:00 -0700394 Name routeName = oldRoute->announcement->getAnnouncedName();
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000395
396 Route route = *oldRoute;
397 route.expires = std::min(route.annExpires, time::steady_clock::now() + maxLifetime);
Teng Lianga4e6ec32018-10-21 09:25:00 -0700398 beginAddRoute(routeName, route, nullopt,
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000399 [=] (RibUpdateResult ribRes) {
400 auto res = getSlAnnounceResultFromRibUpdateResult(ribRes);
Teng Lianga4e6ec32018-10-21 09:25:00 -0700401 NFD_LOG_INFO("slRenew " << name << " " << faceId << ": " << res << " " << routeName);
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000402 cb(res);
403 });
404}
405
406void
407RibManager::slFindAnn(const Name& name, const SlFindAnnCallback& cb) const
408{
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500409 shared_ptr<rib::RibEntry> entry;
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000410 auto exactMatch = m_rib.find(name);
411 if (exactMatch != m_rib.end()) {
412 entry = exactMatch->second;
413 }
414 else {
415 entry = m_rib.findParent(name);
416 }
417 if (entry == nullptr) {
418 return cb(nullopt);
419 }
420
421 auto pa = entry->getPrefixAnnouncement();
422 pa.toData(m_keyChain);
423 cb(pa);
424}
425
Vince Lehman26b215c2014-08-17 15:00:41 -0500426void
Vince Lehmancd613c52014-07-30 14:34:49 -0500427RibManager::fetchActiveFaces()
428{
429 NFD_LOG_DEBUG("Fetching active faces");
430
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700431 m_nfdController.fetch<ndn::nfd::FaceDataset>(
432 bind(&RibManager::removeInvalidFaces, this, _1),
433 bind(&RibManager::onFetchActiveFacesFailure, this, _1, _2),
434 ndn::nfd::CommandOptions());
Vince Lehmancd613c52014-07-30 14:34:49 -0500435}
436
437void
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700438RibManager::onFetchActiveFacesFailure(uint32_t code, const std::string& reason)
Vince Lehmancd613c52014-07-30 14:34:49 -0500439{
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700440 NFD_LOG_DEBUG("Face Status Dataset request failure " << code << " " << reason);
Yanbiao Licf0db022016-01-29 00:54:25 -0800441 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
442}
443
444void
Yanbiao Licf0db022016-01-29 00:54:25 -0800445RibManager::scheduleActiveFaceFetch(const time::seconds& timeToWait)
446{
Davide Pesavento0a71dd32019-03-17 20:36:18 -0400447 m_activeFaceFetchEvent = getScheduler().schedule(timeToWait, [this] { fetchActiveFaces(); });
Yanbiao Licf0db022016-01-29 00:54:25 -0800448}
449
450void
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700451RibManager::removeInvalidFaces(const std::vector<ndn::nfd::FaceStatus>& activeFaces)
Vince Lehmancd613c52014-07-30 14:34:49 -0500452{
Vince Lehman26b215c2014-08-17 15:00:41 -0500453 NFD_LOG_DEBUG("Checking for invalid face registrations");
Vince Lehmancd613c52014-07-30 14:34:49 -0500454
Junxiao Shi17a70012019-06-25 10:50:32 +0000455 std::set<uint64_t> activeFaceIds;
Davide Pesaventod396b612017-02-20 22:11:50 -0500456 for (const auto& faceStatus : activeFaces) {
457 activeFaceIds.insert(faceStatus.getFaceId());
Junxiao Shi78926c92015-02-28 22:56:06 -0700458 }
Junxiao Shi17a70012019-06-25 10:50:32 +0000459 getGlobalIoService().post([=] { m_rib.beginRemoveFailedFaces(activeFaceIds); });
Vince Lehman26b215c2014-08-17 15:00:41 -0500460
461 // Reschedule the check for future clean up
462 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Vince Lehmancd613c52014-07-30 14:34:49 -0500463}
464
465void
Davide Pesaventod396b612017-02-20 22:11:50 -0500466RibManager::onNotification(const ndn::nfd::FaceEventNotification& notification)
Vince Lehmancd613c52014-07-30 14:34:49 -0500467{
Yanbiao Licf0db022016-01-29 00:54:25 -0800468 NFD_LOG_TRACE("onNotification: " << notification);
469
470 if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) {
Davide Pesavento0a71dd32019-03-17 20:36:18 -0400471 NFD_LOG_DEBUG("Received notification for destroyed FaceId " << notification.getFaceId());
Junxiao Shi17a70012019-06-25 10:50:32 +0000472 getGlobalIoService().post([this, id = notification.getFaceId()] { m_rib.beginRemoveFace(id); });
Yanbiao Licf0db022016-01-29 00:54:25 -0800473 }
474}
475
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700476} // namespace nfd