blob: 03faf219c766cbf1da7959180543c8b4a39a8ec3 [file] [log] [blame]
Alexander Afanasyev3ecec502014-04-16 13:42:44 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi1e46be32015-01-08 20:18:05 -07003 * Copyright (c) 2014-2015, Regents of the University of California,
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 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"
Alexander Afanasyev03ea3eb2014-04-17 18:19:06 -070027#include "core/global-io.hpp"
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -070028#include "core/logger.hpp"
Alexander Afanasyev63108c42014-07-07 19:10:47 -070029#include "core/scheduler.hpp"
Vince Lehmancd613c52014-07-30 14:34:49 -050030#include <ndn-cxx/management/nfd-face-status.hpp>
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070031
32namespace nfd {
33namespace rib {
34
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -070035NFD_LOG_INIT("RibManager");
36
Alexander Afanasyev20d31442014-04-19 17:00:53 -070037const Name RibManager::COMMAND_PREFIX = "/localhost/nfd/rib";
38const Name RibManager::REMOTE_COMMAND_PREFIX = "/localhop/nfd/rib";
Vince Lehmancd613c52014-07-30 14:34:49 -050039const Name RibManager::FACES_LIST_DATASET_PREFIX = "/localhost/nfd/faces/list";
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070040
41const size_t RibManager::COMMAND_UNSIGNED_NCOMPS =
42 RibManager::COMMAND_PREFIX.size() +
43 1 + // verb
44 1; // verb options
45
46const size_t RibManager::COMMAND_SIGNED_NCOMPS =
47 RibManager::COMMAND_UNSIGNED_NCOMPS +
48 4; // (timestamp, nonce, signed info tlv, signature tlv)
49
Vince Lehmancd16c832014-07-23 15:14:55 -070050const RibManager::SignedVerbAndProcessor RibManager::SIGNED_COMMAND_VERBS[] =
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070051 {
Vince Lehmancd16c832014-07-23 15:14:55 -070052 SignedVerbAndProcessor(
53 Name::Component("register"),
54 &RibManager::registerEntry
55 ),
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070056
Vince Lehmancd16c832014-07-23 15:14:55 -070057 SignedVerbAndProcessor(
58 Name::Component("unregister"),
59 &RibManager::unregisterEntry
60 ),
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070061 };
62
Vince Lehmancd16c832014-07-23 15:14:55 -070063const RibManager::UnsignedVerbAndProcessor RibManager::UNSIGNED_COMMAND_VERBS[] =
64 {
65 UnsignedVerbAndProcessor(
66 Name::Component("list"),
67 &RibManager::listEntries
68 ),
69 };
70
71const Name RibManager::LIST_COMMAND_PREFIX("/localhost/nfd/rib/list");
72const size_t RibManager::LIST_COMMAND_NCOMPS = LIST_COMMAND_PREFIX.size();
73
Vince Lehman26b215c2014-08-17 15:00:41 -050074const time::seconds RibManager::ACTIVE_FACE_FETCH_INTERVAL = time::seconds(300);
75
Vince Lehmanc1dfdb42015-07-16 12:17:36 -050076RibManager::RibManager(ndn::Face& face, ndn::KeyChain& keyChain)
Vince Lehman72446ec2014-07-09 10:50:02 -050077 : m_face(face)
Vince Lehmanc1dfdb42015-07-16 12:17:36 -050078 , m_keyChain(keyChain)
Junxiao Shi8e273ca2014-11-12 00:42:29 -070079 , m_nfdController(m_face, m_keyChain)
Yingdi Yue5224e92014-04-29 18:04:02 -070080 , m_localhostValidator(m_face)
81 , m_localhopValidator(m_face)
Yingdi Yuf4db0b52014-04-17 13:17:39 -070082 , m_faceMonitor(m_face)
Yingdi Yue5224e92014-04-29 18:04:02 -070083 , m_isLocalhopEnabled(false)
Yanbiao Lid7c96362015-01-30 23:58:24 -080084 , m_prefixPropagator(m_nfdController, m_keyChain, m_managedRib)
Vince Lehmancd16c832014-07-23 15:14:55 -070085 , m_ribStatusPublisher(m_managedRib, face, LIST_COMMAND_PREFIX, m_keyChain)
Vince Lehman76c751c2014-11-18 17:36:38 -060086 , m_fibUpdater(m_managedRib, m_nfdController)
Vince Lehmancd16c832014-07-23 15:14:55 -070087 , m_signedVerbDispatch(SIGNED_COMMAND_VERBS,
88 SIGNED_COMMAND_VERBS +
89 (sizeof(SIGNED_COMMAND_VERBS) / sizeof(SignedVerbAndProcessor)))
90 , m_unsignedVerbDispatch(UNSIGNED_COMMAND_VERBS,
91 UNSIGNED_COMMAND_VERBS +
92 (sizeof(UNSIGNED_COMMAND_VERBS) / sizeof(UnsignedVerbAndProcessor)))
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070093{
94}
95
Vince Lehman26b215c2014-08-17 15:00:41 -050096RibManager::~RibManager()
97{
98 scheduler::cancel(m_activeFaceFetchEvent);
99}
100
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700101void
Junxiao Shia3295742014-05-16 22:40:10 -0700102RibManager::startListening(const Name& commandPrefix, const ndn::OnInterest& onRequest)
103{
104 NFD_LOG_INFO("Listening on: " << commandPrefix);
105
106 m_nfdController.start<ndn::nfd::FibAddNextHopCommand>(
107 ControlParameters()
108 .setName(commandPrefix)
109 .setFaceId(0),
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600110 bind(&RibManager::onNrdCommandPrefixAddNextHopSuccess, this, cref(commandPrefix), _1),
Junxiao Shia3295742014-05-16 22:40:10 -0700111 bind(&RibManager::onNrdCommandPrefixAddNextHopError, this, cref(commandPrefix), _2));
112
113 m_face.setInterestFilter(commandPrefix, onRequest);
114}
115
116void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700117RibManager::registerWithNfd()
118{
119 //check whether the components of localhop and localhost prefixes are same
120 BOOST_ASSERT(COMMAND_PREFIX.size() == REMOTE_COMMAND_PREFIX.size());
121
Junxiao Shia3295742014-05-16 22:40:10 -0700122 this->startListening(COMMAND_PREFIX, bind(&RibManager::onLocalhostRequest, this, _2));
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700123
Junxiao Shia3295742014-05-16 22:40:10 -0700124 if (m_isLocalhopEnabled) {
125 this->startListening(REMOTE_COMMAND_PREFIX,
126 bind(&RibManager::onLocalhopRequest, this, _2));
127 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700128
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700129 NFD_LOG_INFO("Start monitoring face create/destroy events");
Junxiao Shifbf78342015-01-23 14:46:41 -0700130 m_faceMonitor.onNotification.connect(bind(&RibManager::onNotification, this, _1));
Junxiao Shi15b12e72014-08-09 19:56:24 -0700131 m_faceMonitor.start();
Vince Lehmancd613c52014-07-30 14:34:49 -0500132
Vince Lehman26b215c2014-08-17 15:00:41 -0500133 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700134}
135
136void
137RibManager::setConfigFile(ConfigFile& configFile)
138{
Yingdi Yue5224e92014-04-29 18:04:02 -0700139 configFile.addSectionHandler("rib",
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700140 bind(&RibManager::onConfig, this, _1, _2, _3));
141}
142
143void
144RibManager::onConfig(const ConfigSection& configSection,
Yingdi Yuf4db0b52014-04-17 13:17:39 -0700145 bool isDryRun,
146 const std::string& filename)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700147{
Yanbiao Lid7c96362015-01-30 23:58:24 -0800148 bool isAutoPrefixPropagatorEnabled = false;
Yanbiao Lib9d439d2014-12-11 16:12:32 -0800149
Vince Lehman76c751c2014-11-18 17:36:38 -0600150 for (const auto& item : configSection) {
151 if (item.first == "localhost_security") {
152 m_localhostValidator.load(item.second, filename);
Yingdi Yue5224e92014-04-29 18:04:02 -0700153 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600154 else if (item.first == "localhop_security") {
155 m_localhopValidator.load(item.second, filename);
156 m_isLocalhopEnabled = true;
Yanbiao Lib9d439d2014-12-11 16:12:32 -0800157 }
Yanbiao Lid7c96362015-01-30 23:58:24 -0800158 else if (item.first == "auto_prefix_propagate") {
159 m_prefixPropagator.loadConfig(item.second);
160 isAutoPrefixPropagatorEnabled = true;
Vince Lehman76c751c2014-11-18 17:36:38 -0600161
162 // Avoid other actions when isDryRun == true
163 if (isDryRun) {
164 continue;
165 }
166
Yanbiao Lid7c96362015-01-30 23:58:24 -0800167 m_prefixPropagator.enable();
Vince Lehman76c751c2014-11-18 17:36:38 -0600168 }
169 else {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700170 BOOST_THROW_EXCEPTION(Error("Unrecognized rib property: " + item.first));
Vince Lehman76c751c2014-11-18 17:36:38 -0600171 }
172 }
173
Yanbiao Lid7c96362015-01-30 23:58:24 -0800174 if (!isAutoPrefixPropagatorEnabled) {
175 m_prefixPropagator.disable();
Vince Lehman76c751c2014-11-18 17:36:38 -0600176 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700177}
178
179void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700180RibManager::sendResponse(const Name& name,
181 const ControlResponse& response)
182{
183 const Block& encodedControl = response.wireEncode();
184
Alexander Afanasyev97a9c2c2014-07-18 16:57:57 -0700185 shared_ptr<Data> responseData = make_shared<Data>(name);
186 responseData->setContent(encodedControl);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700187
Alexander Afanasyev97a9c2c2014-07-18 16:57:57 -0700188 m_keyChain.sign(*responseData);
189 m_face.put(*responseData);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700190}
191
192void
193RibManager::sendResponse(const Name& name,
194 uint32_t code,
195 const std::string& text)
196{
197 ControlResponse response(code, text);
198 sendResponse(name, response);
199}
200
201void
Yingdi Yue5224e92014-04-29 18:04:02 -0700202RibManager::onLocalhostRequest(const Interest& request)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700203{
Vince Lehmancd16c832014-07-23 15:14:55 -0700204 const Name& command = request.getName();
Yanbiao Lib9d439d2014-12-11 16:12:32 -0800205 const Name::Component& verb = command.get(COMMAND_PREFIX.size());
Vince Lehmancd16c832014-07-23 15:14:55 -0700206
207 UnsignedVerbDispatchTable::const_iterator unsignedVerbProcessor = m_unsignedVerbDispatch.find(verb);
208
Vince Lehman76c751c2014-11-18 17:36:38 -0600209 if (unsignedVerbProcessor != m_unsignedVerbDispatch.end()) {
210 NFD_LOG_DEBUG("command result: processing unsigned verb: " << verb);
211 (unsignedVerbProcessor->second)(this, request);
212 }
213 else {
214 m_localhostValidator.validate(request,
215 bind(&RibManager::onCommandValidated, this, _1),
216 bind(&RibManager::onCommandValidationFailed, this, _1, _2));
217 }
Yingdi Yue5224e92014-04-29 18:04:02 -0700218}
219
220void
221RibManager::onLocalhopRequest(const Interest& request)
222{
223 m_localhopValidator.validate(request,
224 bind(&RibManager::onCommandValidated, this, _1),
225 bind(&RibManager::onCommandValidationFailed, this, _1, _2));
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700226}
227
228void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700229RibManager::onCommandValidated(const shared_ptr<const Interest>& request)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700230{
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700231 // REMOTE_COMMAND_PREFIX number of componenets are same as
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700232 // NRD_COMMAND_PREFIX's so no extra checks are required.
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700233
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700234 const Name& command = request->getName();
235 const Name::Component& verb = command[COMMAND_PREFIX.size()];
236 const Name::Component& parameterComponent = command[COMMAND_PREFIX.size() + 1];
237
Vince Lehmancd16c832014-07-23 15:14:55 -0700238 SignedVerbDispatchTable::const_iterator verbProcessor = m_signedVerbDispatch.find(verb);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700239
Vince Lehman76c751c2014-11-18 17:36:38 -0600240 if (verbProcessor != m_signedVerbDispatch.end()) {
241
242 ControlParameters parameters;
243 if (!extractParameters(parameterComponent, parameters)) {
244 NFD_LOG_DEBUG("command result: malformed verb: " << verb);
245
246 if (static_cast<bool>(request)) {
247 sendResponse(command, 400, "Malformed command");
248 }
249
250 return;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700251 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600252
253 NFD_LOG_DEBUG("command result: processing verb: " << verb);
254 (verbProcessor->second)(this, request, parameters);
255 }
256 else {
257 NFD_LOG_DEBUG("Unsupported command: " << verb);
258
259 if (static_cast<bool>(request)) {
260 sendResponse(request->getName(), 501, "Unsupported command");
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700261 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600262 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700263}
264
265void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700266RibManager::registerEntry(const shared_ptr<const Interest>& request,
267 ControlParameters& parameters)
268{
269 ndn::nfd::RibRegisterCommand command;
270
Vince Lehman76c751c2014-11-18 17:36:38 -0600271 if (!validateParameters(command, parameters)) {
272 NFD_LOG_DEBUG("register result: FAIL reason: malformed");
Vince Lehmancd613c52014-07-30 14:34:49 -0500273
Vince Lehman76c751c2014-11-18 17:36:38 -0600274 if (static_cast<bool>(request)) {
275 sendResponse(request->getName(), 400, "Malformed command");
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700276 }
277
Vince Lehman76c751c2014-11-18 17:36:38 -0600278 return;
279 }
280
Alexander Afanasyev483efd12014-08-14 10:51:18 -0700281 bool isSelfRegistration = (!parameters.hasFaceId() || parameters.getFaceId() == 0);
Vince Lehman76c751c2014-11-18 17:36:38 -0600282 if (isSelfRegistration) {
Junxiao Shi0de23a22015-12-03 20:07:02 +0000283 shared_ptr<lp::IncomingFaceIdTag> incomingFaceIdTag = request->getTag<lp::IncomingFaceIdTag>();
284 if (incomingFaceIdTag == nullptr) {
285 sendResponse(request->getName(), 503,
286 "requested self-registration, but IncomingFaceId is unavailable");
287 return;
288 }
289 parameters.setFaceId(*incomingFaceIdTag);
Vince Lehman76c751c2014-11-18 17:36:38 -0600290 }
291
292 // Respond since command is valid and authorized
293 sendSuccessResponse(request, parameters);
Alexander Afanasyevfb1c8082014-07-17 15:16:15 -0700294
Vince Lehman218be0a2015-01-15 17:25:20 -0600295 Route route;
296 route.faceId = parameters.getFaceId();
297 route.origin = parameters.getOrigin();
298 route.cost = parameters.getCost();
299 route.flags = parameters.getFlags();
Syed Obaid3313a372014-07-01 01:31:33 -0500300
Alexander Afanasyevf67cf082014-07-18 16:47:29 -0700301 if (parameters.hasExpirationPeriod() &&
302 parameters.getExpirationPeriod() != time::milliseconds::max())
Vince Lehman76c751c2014-11-18 17:36:38 -0600303 {
304 route.expires = time::steady_clock::now() + parameters.getExpirationPeriod();
Syed Obaid3313a372014-07-01 01:31:33 -0500305
Vince Lehman76c751c2014-11-18 17:36:38 -0600306 // Schedule a new event, the old one will be cancelled during rib insertion.
307 scheduler::EventId eventId = scheduler::schedule(parameters.getExpirationPeriod(),
308 bind(&Rib::onRouteExpiration, &m_managedRib, parameters.getName(), route));
Syed Obaid3313a372014-07-01 01:31:33 -0500309
Vince Lehman76c751c2014-11-18 17:36:38 -0600310 NFD_LOG_TRACE("Scheduled unregistration at: " << route.expires <<
311 " with EventId: " << eventId);
312
313 // Set the NewEventId of this entry
314 route.setExpirationEvent(eventId);
315 }
316 else {
317 route.expires = time::steady_clock::TimePoint::max();
318 }
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700319
Vince Lehmanff8b3972015-02-20 16:51:21 -0600320 NFD_LOG_INFO("Adding route " << parameters.getName() << " nexthop=" << route.faceId
321 << " origin=" << route.origin
322 << " cost=" << route.cost);
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700323
Vince Lehman76c751c2014-11-18 17:36:38 -0600324 RibUpdate update;
325 update.setAction(RibUpdate::REGISTER)
326 .setName(parameters.getName())
327 .setRoute(route);
328
329 m_managedRib.beginApplyUpdate(update,
330 bind(&RibManager::onRibUpdateSuccess, this, update),
331 bind(&RibManager::onRibUpdateFailure, this, update, _1, _2));
332
Vince Lehman218be0a2015-01-15 17:25:20 -0600333 m_registeredFaces.insert(route.faceId);
Vince Lehman281ded72014-08-21 12:17:08 -0500334}
335
336void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700337RibManager::unregisterEntry(const shared_ptr<const Interest>& request,
Syed Obaid3313a372014-07-01 01:31:33 -0500338 ControlParameters& params)
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700339{
Alexander Afanasyevce7520e2014-04-28 09:40:06 -0700340 ndn::nfd::RibUnregisterCommand command;
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700341
Vince Lehman76c751c2014-11-18 17:36:38 -0600342 // Passing all parameters gives error in validation,
343 // so passing only the required arguments.
Syed Obaid3313a372014-07-01 01:31:33 -0500344 ControlParameters parameters;
345 parameters.setName(params.getName());
Syed Obaid3313a372014-07-01 01:31:33 -0500346
Vince Lehman76c751c2014-11-18 17:36:38 -0600347 if (params.hasFaceId()) {
348 parameters.setFaceId(params.getFaceId());
349 }
350
351 if (params.hasOrigin()) {
352 parameters.setOrigin(params.getOrigin());
353 }
354
355 if (!validateParameters(command, parameters)) {
356 NFD_LOG_DEBUG("unregister result: FAIL reason: malformed");
357
358 if (static_cast<bool>(request)) {
359 sendResponse(request->getName(), 400, "Malformed command");
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700360 }
361
Vince Lehman76c751c2014-11-18 17:36:38 -0600362 return;
363 }
364
Alexander Afanasyev483efd12014-08-14 10:51:18 -0700365 bool isSelfRegistration = (!parameters.hasFaceId() || parameters.getFaceId() == 0);
Vince Lehman76c751c2014-11-18 17:36:38 -0600366 if (isSelfRegistration) {
Junxiao Shi0de23a22015-12-03 20:07:02 +0000367 shared_ptr<lp::IncomingFaceIdTag> incomingFaceIdTag = request->getTag<lp::IncomingFaceIdTag>();
368 if (incomingFaceIdTag == nullptr) {
369 sendResponse(request->getName(), 503,
370 "requested self-registration, but IncomingFaceId is unavailable");
371 return;
372 }
373 parameters.setFaceId(*incomingFaceIdTag);
Vince Lehman76c751c2014-11-18 17:36:38 -0600374 }
375
376 // Respond since command is valid and authorized
377 sendSuccessResponse(request, parameters);
Alexander Afanasyevfb1c8082014-07-17 15:16:15 -0700378
Vince Lehman218be0a2015-01-15 17:25:20 -0600379 Route route;
380 route.faceId = parameters.getFaceId();
381 route.origin = parameters.getOrigin();
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700382
Vince Lehmanff8b3972015-02-20 16:51:21 -0600383 NFD_LOG_INFO("Removing route " << parameters.getName() << " nexthop=" << route.faceId
384 << " origin=" << route.origin);
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700385
Vince Lehman76c751c2014-11-18 17:36:38 -0600386 RibUpdate update;
387 update.setAction(RibUpdate::UNREGISTER)
388 .setName(parameters.getName())
389 .setRoute(route);
Vince Lehman4387e782014-06-19 16:57:45 -0500390
Vince Lehman76c751c2014-11-18 17:36:38 -0600391 m_managedRib.beginApplyUpdate(update,
392 bind(&RibManager::onRibUpdateSuccess, this, update),
393 bind(&RibManager::onRibUpdateFailure, this, update, _1, _2));
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700394}
395
396void
397RibManager::onCommandValidationFailed(const shared_ptr<const Interest>& request,
398 const std::string& failureInfo)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700399{
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700400 NFD_LOG_DEBUG("RibRequestValidationFailed: " << failureInfo);
Vince Lehman76c751c2014-11-18 17:36:38 -0600401
402 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500403 sendResponse(request->getName(), 403, failureInfo);
Vince Lehman76c751c2014-11-18 17:36:38 -0600404 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700405}
406
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700407
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700408bool
409RibManager::extractParameters(const Name::Component& parameterComponent,
410 ControlParameters& extractedParameters)
411{
Vince Lehman76c751c2014-11-18 17:36:38 -0600412 try {
413 Block rawParameters = parameterComponent.blockFromValue();
414 extractedParameters.wireDecode(rawParameters);
415 }
416 catch (const tlv::Error&) {
417 return false;
418 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700419
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700420 NFD_LOG_DEBUG("Parameters parsed OK");
421 return true;
422}
423
424bool
425RibManager::validateParameters(const ControlCommand& command,
426 ControlParameters& parameters)
427{
Vince Lehman76c751c2014-11-18 17:36:38 -0600428 try {
429 command.validateRequest(parameters);
430 }
431 catch (const ControlCommand::ArgumentError&) {
432 return false;
433 }
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700434
435 command.applyDefaultsToRequest(parameters);
436
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700437 return true;
438}
439
440void
441RibManager::onCommandError(uint32_t code, const std::string& error,
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700442 const shared_ptr<const Interest>& request,
Vince Lehman218be0a2015-01-15 17:25:20 -0600443 const Route& route)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700444{
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700445 NFD_LOG_ERROR("NFD returned an error: " << error << " (code: " << code << ")");
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700446
447 ControlResponse response;
448
Vince Lehman76c751c2014-11-18 17:36:38 -0600449 if (code == 404) {
450 response.setCode(code);
451 response.setText(error);
452 }
453 else {
454 response.setCode(533);
455 std::ostringstream os;
456 os << "Failure to update NFD " << "(NFD Error: " << code << " " << error << ")";
457 response.setText(os.str());
458 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700459
Vince Lehman76c751c2014-11-18 17:36:38 -0600460 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500461 sendResponse(request->getName(), response);
Vince Lehman76c751c2014-11-18 17:36:38 -0600462 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700463}
464
465void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700466RibManager::onRegSuccess(const shared_ptr<const Interest>& request,
467 const ControlParameters& parameters,
Vince Lehman218be0a2015-01-15 17:25:20 -0600468 const Route& route)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700469{
470 ControlResponse response;
471
472 response.setCode(200);
473 response.setText("Success");
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700474 response.setBody(parameters.wireEncode());
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700475
Vince Lehman218be0a2015-01-15 17:25:20 -0600476 NFD_LOG_TRACE("onRegSuccess: registered " << route);
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700477
Vince Lehman76c751c2014-11-18 17:36:38 -0600478 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500479 sendResponse(request->getName(), response);
Vince Lehman76c751c2014-11-18 17:36:38 -0600480 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700481}
482
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700483
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700484void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700485RibManager::onUnRegSuccess(const shared_ptr<const Interest>& request,
486 const ControlParameters& parameters,
Vince Lehman218be0a2015-01-15 17:25:20 -0600487 const Route& route)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700488{
489 ControlResponse response;
490
491 response.setCode(200);
492 response.setText("Success");
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700493 response.setBody(parameters.wireEncode());
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700494
Vince Lehman218be0a2015-01-15 17:25:20 -0600495 NFD_LOG_TRACE("onUnRegSuccess: unregistered " << route);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700496
Vince Lehman76c751c2014-11-18 17:36:38 -0600497 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500498 sendResponse(request->getName(), response);
Vince Lehman76c751c2014-11-18 17:36:38 -0600499 }
Vince Lehman4387e782014-06-19 16:57:45 -0500500}
501
502void
503RibManager::sendSuccessResponse(const shared_ptr<const Interest>& request,
504 const ControlParameters& parameters)
505{
Vince Lehman76c751c2014-11-18 17:36:38 -0600506 if (!static_cast<bool>(request)) {
507 return;
508 }
Vince Lehman4387e782014-06-19 16:57:45 -0500509
510 ControlResponse response;
511
512 response.setCode(200);
513 response.setText("Success");
514 response.setBody(parameters.wireEncode());
515
Vince Lehman76c751c2014-11-18 17:36:38 -0600516 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500517 sendResponse(request->getName(), response);
Vince Lehman76c751c2014-11-18 17:36:38 -0600518 }
Vince Lehman4387e782014-06-19 16:57:45 -0500519}
520
521void
522RibManager::sendErrorResponse(uint32_t code, const std::string& error,
523 const shared_ptr<const Interest>& request)
524{
525 NFD_LOG_ERROR("NFD returned an error: " << error << " (code: " << code << ")");
526
Vince Lehman76c751c2014-11-18 17:36:38 -0600527 if (!static_cast<bool>(request)) {
528 return;
529 }
Vince Lehman4387e782014-06-19 16:57:45 -0500530
531 ControlResponse response;
532
Vince Lehman76c751c2014-11-18 17:36:38 -0600533 if (code == 404) {
534 response.setCode(code);
535 response.setText(error);
536 }
537 else {
538 response.setCode(533);
539 std::ostringstream os;
540 os << "Failure to update NFD " << "(NFD Error: " << code << " " << error << ")";
541 response.setText(os.str());
542 }
Vince Lehman4387e782014-06-19 16:57:45 -0500543
Vince Lehman76c751c2014-11-18 17:36:38 -0600544 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500545 sendResponse(request->getName(), response);
Vince Lehman76c751c2014-11-18 17:36:38 -0600546 }
547}
548
549void
550RibManager::onRibUpdateSuccess(const RibUpdate& update)
551{
552 NFD_LOG_DEBUG("RIB update succeeded for " << update);
553}
554
555void
556RibManager::onRibUpdateFailure(const RibUpdate& update, uint32_t code, const std::string& error)
557{
558 NFD_LOG_DEBUG("RIB update failed for " << update << " (code: " << code
559 << ", error: " << error << ")");
560
561 // Since the FIB rejected the update, clean up invalid routes
562 scheduleActiveFaceFetch(time::seconds(1));
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700563}
564
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700565void
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600566RibManager::onNrdCommandPrefixAddNextHopSuccess(const Name& prefix,
567 const ndn::nfd::ControlParameters& result)
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700568{
569 NFD_LOG_DEBUG("Successfully registered " + prefix.toUri() + " with NFD");
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600570
571 // Routes must be inserted into the RIB so route flags can be applied
572 Route route;
573 route.faceId = result.getFaceId();
574 route.origin = ndn::nfd::ROUTE_ORIGIN_APP;
575 route.expires = time::steady_clock::TimePoint::max();
576 route.flags = ndn::nfd::ROUTE_FLAG_CHILD_INHERIT;
577
578 m_managedRib.insert(prefix, route);
579
580 m_registeredFaces.insert(route.faceId);
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700581}
582
583void
584RibManager::onNrdCommandPrefixAddNextHopError(const Name& name, const std::string& msg)
585{
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700586 BOOST_THROW_EXCEPTION(Error("Error in setting interest filter (" + name.toUri() + "): " + msg));
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700587}
588
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700589void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700590RibManager::onControlHeaderSuccess()
591{
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700592 NFD_LOG_DEBUG("Local control header enabled");
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700593}
594
595void
596RibManager::onControlHeaderError(uint32_t code, const std::string& reason)
597{
Alexander Afanasyevb3051652014-04-30 17:50:26 -0700598 std::ostringstream os;
599 os << "Couldn't enable local control header "
600 << "(code: " << code << ", info: " << reason << ")";
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700601 BOOST_THROW_EXCEPTION(Error(os.str()));
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700602}
603
604void
605RibManager::enableLocalControlHeader()
606{
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700607 m_nfdController.start<ndn::nfd::FaceEnableLocalControlCommand>(
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700608 ControlParameters()
609 .setLocalControlFeature(ndn::nfd::LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID),
610 bind(&RibManager::onControlHeaderSuccess, this),
611 bind(&RibManager::onControlHeaderError, this, _1, _2));
612}
613
614void
615RibManager::onNotification(const FaceEventNotification& notification)
616{
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700617 NFD_LOG_TRACE("onNotification: " << notification);
Vince Lehmancd613c52014-07-30 14:34:49 -0500618
Vince Lehman76c751c2014-11-18 17:36:38 -0600619 if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) {
620 NFD_LOG_DEBUG("Received notification for destroyed faceId: " << notification.getFaceId());
Vince Lehmancd613c52014-07-30 14:34:49 -0500621
Vince Lehman76c751c2014-11-18 17:36:38 -0600622 scheduler::schedule(time::seconds(0),
623 bind(&RibManager::onFaceDestroyedEvent, this, notification.getFaceId()));
624 }
Vince Lehman4387e782014-06-19 16:57:45 -0500625}
626
627void
Vince Lehman76c751c2014-11-18 17:36:38 -0600628RibManager::onFaceDestroyedEvent(uint64_t faceId)
Alexander Afanasyev63108c42014-07-07 19:10:47 -0700629{
Vince Lehman76c751c2014-11-18 17:36:38 -0600630 m_managedRib.beginRemoveFace(faceId);
Vince Lehman26b215c2014-08-17 15:00:41 -0500631 m_registeredFaces.erase(faceId);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700632}
633
Vince Lehmancd16c832014-07-23 15:14:55 -0700634void
635RibManager::listEntries(const Interest& request)
636{
637 const Name& command = request.getName();
638 const size_t commandNComps = command.size();
639
Vince Lehman76c751c2014-11-18 17:36:38 -0600640 if (commandNComps < LIST_COMMAND_NCOMPS || !LIST_COMMAND_PREFIX.isPrefixOf(command)) {
641 NFD_LOG_DEBUG("command result: malformed");
642
643 sendResponse(command, 400, "Malformed command");
644 return;
645 }
Vince Lehmancd16c832014-07-23 15:14:55 -0700646
647 m_ribStatusPublisher.publish();
648}
649
Vince Lehmancd613c52014-07-30 14:34:49 -0500650void
Vince Lehman26b215c2014-08-17 15:00:41 -0500651RibManager::scheduleActiveFaceFetch(const time::seconds& timeToWait)
652{
653 scheduler::cancel(m_activeFaceFetchEvent);
654
655 m_activeFaceFetchEvent = scheduler::schedule(timeToWait,
656 bind(&RibManager::fetchActiveFaces, this));
657}
658
659void
Vince Lehmancd613c52014-07-30 14:34:49 -0500660RibManager::fetchActiveFaces()
661{
662 NFD_LOG_DEBUG("Fetching active faces");
663
664 Interest interest(FACES_LIST_DATASET_PREFIX);
665 interest.setChildSelector(1);
666 interest.setMustBeFresh(true);
667
668 shared_ptr<ndn::OBufferStream> buffer = make_shared<ndn::OBufferStream>();
669
670 m_face.expressInterest(interest,
671 bind(&RibManager::fetchSegments, this, _2, buffer),
672 bind(&RibManager::onFetchFaceStatusTimeout, this));
673}
674
675void
676RibManager::fetchSegments(const Data& data, shared_ptr<ndn::OBufferStream> buffer)
677{
678 buffer->write(reinterpret_cast<const char*>(data.getContent().value()),
679 data.getContent().value_size());
680
681 uint64_t currentSegment = data.getName().get(-1).toSegment();
682
683 const name::Component& finalBlockId = data.getMetaInfo().getFinalBlockId();
Vince Lehman76c751c2014-11-18 17:36:38 -0600684
685 if (finalBlockId.empty() || finalBlockId.toSegment() > currentSegment) {
686 m_face.expressInterest(data.getName().getPrefix(-1).appendSegment(currentSegment+1),
687 bind(&RibManager::fetchSegments, this, _2, buffer),
688 bind(&RibManager::onFetchFaceStatusTimeout, this));
689 }
690 else {
691 removeInvalidFaces(buffer);
692 }
Vince Lehmancd613c52014-07-30 14:34:49 -0500693}
694
695void
Vince Lehman26b215c2014-08-17 15:00:41 -0500696RibManager::removeInvalidFaces(shared_ptr<ndn::OBufferStream> buffer)
Vince Lehmancd613c52014-07-30 14:34:49 -0500697{
Vince Lehman26b215c2014-08-17 15:00:41 -0500698 NFD_LOG_DEBUG("Checking for invalid face registrations");
Vince Lehmancd613c52014-07-30 14:34:49 -0500699
700 ndn::ConstBufferPtr buf = buffer->buf();
701
702 Block block;
703 size_t offset = 0;
Vince Lehman26b215c2014-08-17 15:00:41 -0500704 FaceIdSet activeFaces;
Vince Lehmancd613c52014-07-30 14:34:49 -0500705
Junxiao Shi78926c92015-02-28 22:56:06 -0700706 while (offset < buf->size()) {
707 bool isOk = false;
708 std::tie(isOk, block) = Block::fromBuffer(buf, offset);
709 if (!isOk) {
710 std::cerr << "ERROR: cannot decode FaceStatus TLV" << std::endl;
711 break;
Vince Lehmancd613c52014-07-30 14:34:49 -0500712 }
Vince Lehman26b215c2014-08-17 15:00:41 -0500713
Junxiao Shi78926c92015-02-28 22:56:06 -0700714 offset += block.size();
715
716 ndn::nfd::FaceStatus status(block);
717 activeFaces.insert(status.getFaceId());
718 }
719
Vince Lehman26b215c2014-08-17 15:00:41 -0500720 // Look for face IDs that were registered but not active to find missed
721 // face destroyed events
Vince Lehman76c751c2014-11-18 17:36:38 -0600722 for (uint64_t faceId : m_registeredFaces) {
723 if (activeFaces.find(faceId) == activeFaces.end()) {
724 NFD_LOG_DEBUG("Removing invalid face ID: " << faceId);
725
726 scheduler::schedule(time::seconds(0),
727 bind(&RibManager::onFaceDestroyedEvent, this, faceId));
Vince Lehman26b215c2014-08-17 15:00:41 -0500728 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600729 }
Vince Lehman26b215c2014-08-17 15:00:41 -0500730
731 // Reschedule the check for future clean up
732 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Vince Lehmancd613c52014-07-30 14:34:49 -0500733}
734
735void
736RibManager::onFetchFaceStatusTimeout()
737{
738 std::cerr << "Face Status Dataset request timed out" << std::endl;
Vince Lehman26b215c2014-08-17 15:00:41 -0500739 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Vince Lehmancd613c52014-07-30 14:34:49 -0500740}
741
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700742} // namespace rib
743} // namespace nfd