blob: 46819bdb6ef67ec8ea0c44c12cd911220770f72d [file] [log] [blame]
Alexander Afanasyev3ecec502014-04-16 13:42:44 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordon9fcf1232017-03-10 22:30:20 +00003 * Copyright (c) 2014-2017, 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#include "readvertise/readvertise.hpp"
28#include "readvertise/client-to-nlsr-readvertise-policy.hpp"
29#include "readvertise/nfd-rib-readvertise-destination.hpp"
30
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -070031#include "core/logger.hpp"
Alexander Afanasyev63108c42014-07-07 19:10:47 -070032#include "core/scheduler.hpp"
Nick Gordon9fcf1232017-03-10 22:30:20 +000033
Junxiao Shicbc8e942016-09-06 03:17:45 +000034#include <ndn-cxx/lp/tags.hpp>
Nick Gordon9fcf1232017-03-10 22:30:20 +000035#include <ndn-cxx/mgmt/nfd/control-command.hpp>
36#include <ndn-cxx/mgmt/nfd/control-response.hpp>
37#include <ndn-cxx/mgmt/nfd/control-parameters.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000038#include <ndn-cxx/mgmt/nfd/face-status.hpp>
39#include <ndn-cxx/mgmt/nfd/rib-entry.hpp>
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070040
Davide Pesaventod396b612017-02-20 22:11:50 -050041#include <boost/range/adaptor/transformed.hpp>
42
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070043namespace nfd {
44namespace rib {
45
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -070046NFD_LOG_INIT("RibManager");
47
Yanbiao Licf0db022016-01-29 00:54:25 -080048const Name RibManager::LOCAL_HOST_TOP_PREFIX = "/localhost/nfd";
49const Name RibManager::LOCAL_HOP_TOP_PREFIX = "/localhop/nfd";
Junxiao Shifde3f542016-07-10 19:54:53 +000050const std::string RibManager::MGMT_MODULE_NAME = "rib";
Vince Lehmancd613c52014-07-30 14:34:49 -050051const Name RibManager::FACES_LIST_DATASET_PREFIX = "/localhost/nfd/faces/list";
Vince Lehman26b215c2014-08-17 15:00:41 -050052const time::seconds RibManager::ACTIVE_FACE_FETCH_INTERVAL = time::seconds(300);
Nick Gordon9fcf1232017-03-10 22:30:20 +000053const Name RibManager::READVERTISE_NLSR_PREFIX = "/localhost/nlsr";
Vince Lehman26b215c2014-08-17 15:00:41 -050054
Yanbiao Licf0db022016-01-29 00:54:25 -080055RibManager::RibManager(Dispatcher& dispatcher,
56 ndn::Face& face,
57 ndn::KeyChain& keyChain)
Junxiao Shifde3f542016-07-10 19:54:53 +000058 : ManagerBase(dispatcher, MGMT_MODULE_NAME)
Yanbiao Licf0db022016-01-29 00:54:25 -080059 , m_face(face)
Vince Lehmanc1dfdb42015-07-16 12:17:36 -050060 , m_keyChain(keyChain)
Junxiao Shi8e273ca2014-11-12 00:42:29 -070061 , m_nfdController(m_face, m_keyChain)
Yanbiao Licf0db022016-01-29 00:54:25 -080062 , m_faceMonitor(m_face)
Yingdi Yue5224e92014-04-29 18:04:02 -070063 , m_localhostValidator(m_face)
64 , m_localhopValidator(m_face)
Yingdi Yue5224e92014-04-29 18:04:02 -070065 , m_isLocalhopEnabled(false)
Yanbiao Licf0db022016-01-29 00:54:25 -080066 , m_prefixPropagator(m_nfdController, m_keyChain, m_rib)
67 , m_fibUpdater(m_rib, m_nfdController)
68 , m_addTopPrefix([&dispatcher] (const Name& topPrefix) {
69 dispatcher.addTopPrefix(topPrefix, false);
70 })
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070071{
Yanbiao Licf0db022016-01-29 00:54:25 -080072 registerCommandHandler<ndn::nfd::RibRegisterCommand>("register",
73 bind(&RibManager::registerEntry, this, _2, _3, _4, _5));
74 registerCommandHandler<ndn::nfd::RibUnregisterCommand>("unregister",
75 bind(&RibManager::unregisterEntry, this, _2, _3, _4, _5));
76
77 registerStatusDatasetHandler("list", bind(&RibManager::listEntries, this, _1, _2, _3));
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070078}
79
Davide Pesaventod396b612017-02-20 22:11:50 -050080RibManager::~RibManager() = default;
Vince Lehman26b215c2014-08-17 15:00:41 -050081
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070082void
83RibManager::registerWithNfd()
84{
Yanbiao Licf0db022016-01-29 00:54:25 -080085 registerTopPrefix(LOCAL_HOST_TOP_PREFIX);
Alexander Afanasyevb3893c92014-05-15 01:49:54 -070086
Junxiao Shia3295742014-05-16 22:40:10 -070087 if (m_isLocalhopEnabled) {
Yanbiao Licf0db022016-01-29 00:54:25 -080088 registerTopPrefix(LOCAL_HOP_TOP_PREFIX);
Junxiao Shia3295742014-05-16 22:40:10 -070089 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070090
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -070091 NFD_LOG_INFO("Start monitoring face create/destroy events");
Junxiao Shifbf78342015-01-23 14:46:41 -070092 m_faceMonitor.onNotification.connect(bind(&RibManager::onNotification, this, _1));
Junxiao Shi15b12e72014-08-09 19:56:24 -070093 m_faceMonitor.start();
Vince Lehmancd613c52014-07-30 14:34:49 -050094
Vince Lehman26b215c2014-08-17 15:00:41 -050095 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070096}
97
98void
Eric Newberryecc45cb2016-11-08 19:57:12 +000099RibManager::enableLocalFields()
Yanbiao Licf0db022016-01-29 00:54:25 -0800100{
Eric Newberryecc45cb2016-11-08 19:57:12 +0000101 m_nfdController.start<ndn::nfd::FaceUpdateCommand>(
Yanbiao Licf0db022016-01-29 00:54:25 -0800102 ControlParameters()
Eric Newberryecc45cb2016-11-08 19:57:12 +0000103 .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, true),
104 bind(&RibManager::onEnableLocalFieldsSuccess, this),
105 bind(&RibManager::onEnableLocalFieldsError, this, _1));
Yanbiao Licf0db022016-01-29 00:54:25 -0800106}
107
108void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700109RibManager::setConfigFile(ConfigFile& configFile)
110{
Yingdi Yue5224e92014-04-29 18:04:02 -0700111 configFile.addSectionHandler("rib",
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700112 bind(&RibManager::onConfig, this, _1, _2, _3));
113}
114
115void
Yanbiao Licf0db022016-01-29 00:54:25 -0800116RibManager::onRibUpdateSuccess(const RibUpdate& update)
117{
118 NFD_LOG_DEBUG("RIB update succeeded for " << update);
119}
120
121void
122RibManager::onRibUpdateFailure(const RibUpdate& update, uint32_t code, const std::string& error)
123{
124 NFD_LOG_DEBUG("RIB update failed for " << update << " (code: " << code
125 << ", error: " << error << ")");
126
127 // Since the FIB rejected the update, clean up invalid routes
128 scheduleActiveFaceFetch(time::seconds(1));
129}
130
131void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700132RibManager::onConfig(const ConfigSection& configSection,
Yingdi Yuf4db0b52014-04-17 13:17:39 -0700133 bool isDryRun,
134 const std::string& filename)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700135{
Yanbiao Lid7c96362015-01-30 23:58:24 -0800136 bool isAutoPrefixPropagatorEnabled = false;
Nick Gordon9fcf1232017-03-10 22:30:20 +0000137 bool wantReadvertiseToNlsr = false;
Yanbiao Lib9d439d2014-12-11 16:12:32 -0800138
Vince Lehman76c751c2014-11-18 17:36:38 -0600139 for (const auto& item : configSection) {
140 if (item.first == "localhost_security") {
141 m_localhostValidator.load(item.second, filename);
Yingdi Yue5224e92014-04-29 18:04:02 -0700142 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600143 else if (item.first == "localhop_security") {
144 m_localhopValidator.load(item.second, filename);
145 m_isLocalhopEnabled = true;
Yanbiao Lib9d439d2014-12-11 16:12:32 -0800146 }
Yanbiao Lid7c96362015-01-30 23:58:24 -0800147 else if (item.first == "auto_prefix_propagate") {
148 m_prefixPropagator.loadConfig(item.second);
149 isAutoPrefixPropagatorEnabled = true;
Vince Lehman76c751c2014-11-18 17:36:38 -0600150
151 // Avoid other actions when isDryRun == true
152 if (isDryRun) {
153 continue;
154 }
155
Yanbiao Lid7c96362015-01-30 23:58:24 -0800156 m_prefixPropagator.enable();
Vince Lehman76c751c2014-11-18 17:36:38 -0600157 }
Nick Gordon9fcf1232017-03-10 22:30:20 +0000158 else if (item.first == "readvertise_nlsr") {
159 wantReadvertiseToNlsr = ConfigFile::parseYesNo(item, "rib.readvertise_nlsr");
160 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600161 else {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700162 BOOST_THROW_EXCEPTION(Error("Unrecognized rib property: " + item.first));
Vince Lehman76c751c2014-11-18 17:36:38 -0600163 }
164 }
165
Yanbiao Lid7c96362015-01-30 23:58:24 -0800166 if (!isAutoPrefixPropagatorEnabled) {
167 m_prefixPropagator.disable();
Vince Lehman76c751c2014-11-18 17:36:38 -0600168 }
Nick Gordon9fcf1232017-03-10 22:30:20 +0000169
170 if (wantReadvertiseToNlsr && m_readvertiseNlsr == nullptr) {
171 NFD_LOG_DEBUG("Enabling readvertise-to-nlsr.");
172 m_readvertiseNlsr.reset(new Readvertise(
173 m_rib,
174 make_unique<ClientToNlsrReadvertisePolicy>(),
175 make_unique<NfdRibReadvertiseDestination>(m_nfdController, READVERTISE_NLSR_PREFIX, m_rib)));
176 }
177 else if (!wantReadvertiseToNlsr && m_readvertiseNlsr != nullptr) {
178 NFD_LOG_DEBUG("Disabling readvertise-to-nlsr.");
179 m_readvertiseNlsr.reset();
180 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700181}
182
183void
Yanbiao Licf0db022016-01-29 00:54:25 -0800184RibManager::registerTopPrefix(const Name& topPrefix)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700185{
Yanbiao Licf0db022016-01-29 00:54:25 -0800186 // register entry to the FIB
187 m_nfdController.start<ndn::nfd::FibAddNextHopCommand>(
188 ControlParameters()
Junxiao Shifde3f542016-07-10 19:54:53 +0000189 .setName(Name(topPrefix).append(MGMT_MODULE_NAME))
Yanbiao Licf0db022016-01-29 00:54:25 -0800190 .setFaceId(0),
Junxiao Shib2600172016-07-11 08:53:53 +0000191 bind(&RibManager::onCommandPrefixAddNextHopSuccess, this, cref(topPrefix), _1),
Junxiao Shi29b41282016-08-22 03:47:02 +0000192 bind(&RibManager::onCommandPrefixAddNextHopError, this, cref(topPrefix), _1));
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700193
Yanbiao Licf0db022016-01-29 00:54:25 -0800194 // add top prefix to the dispatcher
195 m_addTopPrefix(topPrefix);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700196}
197
198void
Yanbiao Licf0db022016-01-29 00:54:25 -0800199RibManager::registerEntry(const Name& topPrefix, const Interest& interest,
200 ControlParameters parameters,
201 const ndn::mgmt::CommandContinuation& done)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700202{
Yanbiao Licf0db022016-01-29 00:54:25 -0800203 setFaceForSelfRegistration(interest, parameters);
Vince Lehman76c751c2014-11-18 17:36:38 -0600204
205 // Respond since command is valid and authorized
Yanbiao Licf0db022016-01-29 00:54:25 -0800206 done(ControlResponse(200, "Success").setBody(parameters.wireEncode()));
Alexander Afanasyevfb1c8082014-07-17 15:16:15 -0700207
Vince Lehman218be0a2015-01-15 17:25:20 -0600208 Route route;
209 route.faceId = parameters.getFaceId();
210 route.origin = parameters.getOrigin();
211 route.cost = parameters.getCost();
212 route.flags = parameters.getFlags();
Syed Obaid3313a372014-07-01 01:31:33 -0500213
Alexander Afanasyevf67cf082014-07-18 16:47:29 -0700214 if (parameters.hasExpirationPeriod() &&
Nick Gordon9fcf1232017-03-10 22:30:20 +0000215 parameters.getExpirationPeriod() != time::milliseconds::max()) {
Vince Lehman76c751c2014-11-18 17:36:38 -0600216 route.expires = time::steady_clock::now() + parameters.getExpirationPeriod();
Syed Obaid3313a372014-07-01 01:31:33 -0500217
Vince Lehman76c751c2014-11-18 17:36:38 -0600218 // Schedule a new event, the old one will be cancelled during rib insertion.
219 scheduler::EventId eventId = scheduler::schedule(parameters.getExpirationPeriod(),
Yanbiao Licf0db022016-01-29 00:54:25 -0800220 bind(&Rib::onRouteExpiration, &m_rib, parameters.getName(), route));
Syed Obaid3313a372014-07-01 01:31:33 -0500221
Vince Lehman76c751c2014-11-18 17:36:38 -0600222 NFD_LOG_TRACE("Scheduled unregistration at: " << route.expires <<
223 " with EventId: " << eventId);
224
225 // Set the NewEventId of this entry
226 route.setExpirationEvent(eventId);
227 }
228 else {
229 route.expires = time::steady_clock::TimePoint::max();
230 }
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700231
Vince Lehmanff8b3972015-02-20 16:51:21 -0600232 NFD_LOG_INFO("Adding route " << parameters.getName() << " nexthop=" << route.faceId
233 << " origin=" << route.origin
234 << " cost=" << route.cost);
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700235
Vince Lehman76c751c2014-11-18 17:36:38 -0600236 RibUpdate update;
237 update.setAction(RibUpdate::REGISTER)
238 .setName(parameters.getName())
239 .setRoute(route);
240
Yanbiao Licf0db022016-01-29 00:54:25 -0800241 m_rib.beginApplyUpdate(update,
Junxiao Shib2600172016-07-11 08:53:53 +0000242 bind(&RibManager::onRibUpdateSuccess, this, update),
243 bind(&RibManager::onRibUpdateFailure, this, update, _1, _2));
Vince Lehman76c751c2014-11-18 17:36:38 -0600244
Vince Lehman218be0a2015-01-15 17:25:20 -0600245 m_registeredFaces.insert(route.faceId);
Vince Lehman281ded72014-08-21 12:17:08 -0500246}
247
248void
Yanbiao Licf0db022016-01-29 00:54:25 -0800249RibManager::unregisterEntry(const Name& topPrefix, const Interest& interest,
250 ControlParameters parameters,
251 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
Vince Lehmanff8b3972015-02-20 16:51:21 -0600262 NFD_LOG_INFO("Removing route " << parameters.getName() << " nexthop=" << route.faceId
263 << " origin=" << route.origin);
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700264
Vince Lehman76c751c2014-11-18 17:36:38 -0600265 RibUpdate update;
266 update.setAction(RibUpdate::UNREGISTER)
267 .setName(parameters.getName())
268 .setRoute(route);
Vince Lehman4387e782014-06-19 16:57:45 -0500269
Yanbiao Licf0db022016-01-29 00:54:25 -0800270 m_rib.beginApplyUpdate(update,
Junxiao Shib2600172016-07-11 08:53:53 +0000271 bind(&RibManager::onRibUpdateSuccess, this, update),
272 bind(&RibManager::onRibUpdateFailure, this, update, _1, _2));
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700273}
274
275void
Yanbiao Licf0db022016-01-29 00:54:25 -0800276RibManager::listEntries(const Name& topPrefix, const Interest& interest,
277 ndn::mgmt::StatusDatasetContext& context)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700278{
Davide Pesaventod396b612017-02-20 22:11:50 -0500279 for (const auto& ribTableEntry : m_rib) {
Yanbiao Licf0db022016-01-29 00:54:25 -0800280 const auto& ribEntry = *ribTableEntry.second;
Davide Pesaventod396b612017-02-20 22:11:50 -0500281 const auto& routes = ribEntry.getRoutes() |
282 boost::adaptors::transformed([] (const Route& route) {
283 auto r = ndn::nfd::Route()
284 .setFaceId(route.faceId)
285 .setOrigin(route.origin)
286 .setCost(route.cost)
287 .setFlags(route.flags);
288 if (route.expires < time::steady_clock::TimePoint::max()) {
289 r.setExpirationPeriod(time::duration_cast<time::milliseconds>(
290 route.expires - time::steady_clock::now()));
291 }
292 return r;
293 });
294 context.append(ndn::nfd::RibEntry()
295 .setName(ribEntry.getName())
296 .setRoutes(std::begin(routes), std::end(routes))
297 .wireEncode());
Vince Lehman76c751c2014-11-18 17:36:38 -0600298 }
Yanbiao Licf0db022016-01-29 00:54:25 -0800299 context.end();
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700300}
301
302void
Yanbiao Licf0db022016-01-29 00:54:25 -0800303RibManager::setFaceForSelfRegistration(const Interest& request, ControlParameters& parameters)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700304{
Yanbiao Licf0db022016-01-29 00:54:25 -0800305 bool isSelfRegistration = (parameters.getFaceId() == 0);
306 if (isSelfRegistration) {
307 shared_ptr<lp::IncomingFaceIdTag> incomingFaceIdTag = request.getTag<lp::IncomingFaceIdTag>();
308 // NDNLPv2 says "application MUST be prepared to receive a packet without IncomingFaceId field",
309 // but it's fine to assert IncomingFaceId is available, because InternalFace lives inside NFD
310 // and is initialized synchronously with IncomingFaceId field enabled.
311 BOOST_ASSERT(incomingFaceIdTag != nullptr);
312 parameters.setFaceId(*incomingFaceIdTag);
Vince Lehman76c751c2014-11-18 17:36:38 -0600313 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700314}
315
Junxiao Shi21738402016-08-19 19:48:00 +0000316ndn::mgmt::Authorization
317RibManager::makeAuthorization(const std::string& verb)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700318{
Junxiao Shi21738402016-08-19 19:48:00 +0000319 return [this] (const Name& prefix, const Interest& interest,
320 const ndn::mgmt::ControlParameters* params,
321 const ndn::mgmt::AcceptContinuation& accept,
322 const ndn::mgmt::RejectContinuation& reject) {
323 BOOST_ASSERT(params != nullptr);
324 BOOST_ASSERT(typeid(*params) == typeid(ndn::nfd::ControlParameters));
325 BOOST_ASSERT(prefix == LOCAL_HOST_TOP_PREFIX || prefix == LOCAL_HOP_TOP_PREFIX);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700326
Junxiao Shi21738402016-08-19 19:48:00 +0000327 ndn::ValidatorConfig& validator = prefix == LOCAL_HOST_TOP_PREFIX ?
328 m_localhostValidator : m_localhopValidator;
329 validator.validate(interest,
330 bind([&interest, this, accept] { extractRequester(interest, accept); }),
331 bind([reject] { reject(ndn::mgmt::RejectReply::STATUS403); }));
332 };
Vince Lehman26b215c2014-08-17 15:00:41 -0500333}
334
335void
Vince Lehmancd613c52014-07-30 14:34:49 -0500336RibManager::fetchActiveFaces()
337{
338 NFD_LOG_DEBUG("Fetching active faces");
339
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700340 m_nfdController.fetch<ndn::nfd::FaceDataset>(
341 bind(&RibManager::removeInvalidFaces, this, _1),
342 bind(&RibManager::onFetchActiveFacesFailure, this, _1, _2),
343 ndn::nfd::CommandOptions());
Vince Lehmancd613c52014-07-30 14:34:49 -0500344}
345
346void
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700347RibManager::onFetchActiveFacesFailure(uint32_t code, const std::string& reason)
Vince Lehmancd613c52014-07-30 14:34:49 -0500348{
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700349 NFD_LOG_DEBUG("Face Status Dataset request failure " << code << " " << reason);
Yanbiao Licf0db022016-01-29 00:54:25 -0800350 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
351}
352
353void
354RibManager::onFaceDestroyedEvent(uint64_t faceId)
355{
356 m_rib.beginRemoveFace(faceId);
357 m_registeredFaces.erase(faceId);
358}
359
360void
361RibManager::scheduleActiveFaceFetch(const time::seconds& timeToWait)
362{
Davide Pesaventod396b612017-02-20 22:11:50 -0500363 m_activeFaceFetchEvent = scheduler::schedule(timeToWait, [this] { this->fetchActiveFaces(); });
Yanbiao Licf0db022016-01-29 00:54:25 -0800364}
365
366void
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700367RibManager::removeInvalidFaces(const std::vector<ndn::nfd::FaceStatus>& activeFaces)
Vince Lehmancd613c52014-07-30 14:34:49 -0500368{
Vince Lehman26b215c2014-08-17 15:00:41 -0500369 NFD_LOG_DEBUG("Checking for invalid face registrations");
Vince Lehmancd613c52014-07-30 14:34:49 -0500370
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700371 FaceIdSet activeFaceIds;
Davide Pesaventod396b612017-02-20 22:11:50 -0500372 for (const auto& faceStatus : activeFaces) {
373 activeFaceIds.insert(faceStatus.getFaceId());
Junxiao Shi78926c92015-02-28 22:56:06 -0700374 }
375
Vince Lehman26b215c2014-08-17 15:00:41 -0500376 // Look for face IDs that were registered but not active to find missed
377 // face destroyed events
Davide Pesaventod396b612017-02-20 22:11:50 -0500378 for (auto faceId : m_registeredFaces) {
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700379 if (activeFaceIds.count(faceId) == 0) {
Vince Lehman76c751c2014-11-18 17:36:38 -0600380 NFD_LOG_DEBUG("Removing invalid face ID: " << faceId);
Davide Pesaventod396b612017-02-20 22:11:50 -0500381 scheduler::schedule(time::seconds(0), [this, faceId] { this->onFaceDestroyedEvent(faceId); });
Vince Lehman26b215c2014-08-17 15:00:41 -0500382 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600383 }
Vince Lehman26b215c2014-08-17 15:00:41 -0500384
385 // Reschedule the check for future clean up
386 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Vince Lehmancd613c52014-07-30 14:34:49 -0500387}
388
389void
Davide Pesaventod396b612017-02-20 22:11:50 -0500390RibManager::onNotification(const ndn::nfd::FaceEventNotification& notification)
Vince Lehmancd613c52014-07-30 14:34:49 -0500391{
Yanbiao Licf0db022016-01-29 00:54:25 -0800392 NFD_LOG_TRACE("onNotification: " << notification);
393
394 if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) {
395 NFD_LOG_DEBUG("Received notification for destroyed faceId: " << notification.getFaceId());
396
397 scheduler::schedule(time::seconds(0),
398 bind(&RibManager::onFaceDestroyedEvent, this, notification.getFaceId()));
399 }
400}
401
402void
Junxiao Shib2600172016-07-11 08:53:53 +0000403RibManager::onCommandPrefixAddNextHopSuccess(const Name& prefix,
404 const ndn::nfd::ControlParameters& result)
Yanbiao Licf0db022016-01-29 00:54:25 -0800405{
406 NFD_LOG_DEBUG("Successfully registered " + prefix.toUri() + " with NFD");
407
408 // Routes must be inserted into the RIB so route flags can be applied
409 Route route;
410 route.faceId = result.getFaceId();
411 route.origin = ndn::nfd::ROUTE_ORIGIN_APP;
412 route.expires = time::steady_clock::TimePoint::max();
413 route.flags = ndn::nfd::ROUTE_FLAG_CHILD_INHERIT;
414
415 m_rib.insert(prefix, route);
416
417 m_registeredFaces.insert(route.faceId);
418}
419
420void
Junxiao Shi29b41282016-08-22 03:47:02 +0000421RibManager::onCommandPrefixAddNextHopError(const Name& name,
422 const ndn::nfd::ControlResponse& response)
Yanbiao Licf0db022016-01-29 00:54:25 -0800423{
Junxiao Shi29b41282016-08-22 03:47:02 +0000424 BOOST_THROW_EXCEPTION(Error("Error in setting interest filter (" + name.toUri() +
425 "): " + response.getText()));
Yanbiao Licf0db022016-01-29 00:54:25 -0800426}
427
428void
Eric Newberryecc45cb2016-11-08 19:57:12 +0000429RibManager::onEnableLocalFieldsSuccess()
Yanbiao Licf0db022016-01-29 00:54:25 -0800430{
Eric Newberryecc45cb2016-11-08 19:57:12 +0000431 NFD_LOG_DEBUG("Local fields enabled");
Yanbiao Licf0db022016-01-29 00:54:25 -0800432}
433
434void
Eric Newberryecc45cb2016-11-08 19:57:12 +0000435RibManager::onEnableLocalFieldsError(const ndn::nfd::ControlResponse& response)
Yanbiao Licf0db022016-01-29 00:54:25 -0800436{
Eric Newberryecc45cb2016-11-08 19:57:12 +0000437 BOOST_THROW_EXCEPTION(Error("Couldn't enable local fields (code: " +
438 to_string(response.getCode()) + ", info: " + response.getText() +
439 ")"));
Vince Lehmancd613c52014-07-30 14:34:49 -0500440}
441
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700442} // namespace rib
443} // namespace nfd