blob: 8215aded8af7100238e06858afc67e9de0195997 [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 Lehman72446ec2014-07-09 10:50:02 -050076RibManager::RibManager(ndn::Face& face)
77 : m_face(face)
Junxiao Shi8e273ca2014-11-12 00:42:29 -070078 , m_nfdController(m_face, m_keyChain)
Yingdi Yue5224e92014-04-29 18:04:02 -070079 , m_localhostValidator(m_face)
80 , m_localhopValidator(m_face)
Yingdi Yuf4db0b52014-04-17 13:17:39 -070081 , m_faceMonitor(m_face)
Yingdi Yue5224e92014-04-29 18:04:02 -070082 , m_isLocalhopEnabled(false)
Yanbiao Lic17de832014-11-21 17:51:45 -080083 , m_remoteRegistrator(m_nfdController, m_keyChain, m_managedRib)
Vince Lehmancd16c832014-07-23 15:14:55 -070084 , m_ribStatusPublisher(m_managedRib, face, LIST_COMMAND_PREFIX, m_keyChain)
Vince Lehman76c751c2014-11-18 17:36:38 -060085 , m_fibUpdater(m_managedRib, m_nfdController)
Vince Lehmancd16c832014-07-23 15:14:55 -070086 , m_signedVerbDispatch(SIGNED_COMMAND_VERBS,
87 SIGNED_COMMAND_VERBS +
88 (sizeof(SIGNED_COMMAND_VERBS) / sizeof(SignedVerbAndProcessor)))
89 , m_unsignedVerbDispatch(UNSIGNED_COMMAND_VERBS,
90 UNSIGNED_COMMAND_VERBS +
91 (sizeof(UNSIGNED_COMMAND_VERBS) / sizeof(UnsignedVerbAndProcessor)))
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070092{
93}
94
Vince Lehman26b215c2014-08-17 15:00:41 -050095RibManager::~RibManager()
96{
97 scheduler::cancel(m_activeFaceFetchEvent);
98}
99
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700100void
Junxiao Shia3295742014-05-16 22:40:10 -0700101RibManager::startListening(const Name& commandPrefix, const ndn::OnInterest& onRequest)
102{
103 NFD_LOG_INFO("Listening on: " << commandPrefix);
104
105 m_nfdController.start<ndn::nfd::FibAddNextHopCommand>(
106 ControlParameters()
107 .setName(commandPrefix)
108 .setFaceId(0),
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600109 bind(&RibManager::onNrdCommandPrefixAddNextHopSuccess, this, cref(commandPrefix), _1),
Junxiao Shia3295742014-05-16 22:40:10 -0700110 bind(&RibManager::onNrdCommandPrefixAddNextHopError, this, cref(commandPrefix), _2));
111
112 m_face.setInterestFilter(commandPrefix, onRequest);
113}
114
115void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700116RibManager::registerWithNfd()
117{
118 //check whether the components of localhop and localhost prefixes are same
119 BOOST_ASSERT(COMMAND_PREFIX.size() == REMOTE_COMMAND_PREFIX.size());
120
Junxiao Shia3295742014-05-16 22:40:10 -0700121 this->startListening(COMMAND_PREFIX, bind(&RibManager::onLocalhostRequest, this, _2));
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700122
Junxiao Shia3295742014-05-16 22:40:10 -0700123 if (m_isLocalhopEnabled) {
124 this->startListening(REMOTE_COMMAND_PREFIX,
125 bind(&RibManager::onLocalhopRequest, this, _2));
126 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700127
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700128 NFD_LOG_INFO("Start monitoring face create/destroy events");
Junxiao Shifbf78342015-01-23 14:46:41 -0700129 m_faceMonitor.onNotification.connect(bind(&RibManager::onNotification, this, _1));
Junxiao Shi15b12e72014-08-09 19:56:24 -0700130 m_faceMonitor.start();
Vince Lehmancd613c52014-07-30 14:34:49 -0500131
Vince Lehman26b215c2014-08-17 15:00:41 -0500132 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700133}
134
135void
136RibManager::setConfigFile(ConfigFile& configFile)
137{
Yingdi Yue5224e92014-04-29 18:04:02 -0700138 configFile.addSectionHandler("rib",
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700139 bind(&RibManager::onConfig, this, _1, _2, _3));
140}
141
142void
143RibManager::onConfig(const ConfigSection& configSection,
Yingdi Yuf4db0b52014-04-17 13:17:39 -0700144 bool isDryRun,
145 const std::string& filename)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700146{
Yanbiao Lib9d439d2014-12-11 16:12:32 -0800147 bool isRemoteRegisterEnabled = false;
148
Vince Lehman76c751c2014-11-18 17:36:38 -0600149 for (const auto& item : configSection) {
150 if (item.first == "localhost_security") {
151 m_localhostValidator.load(item.second, filename);
Yingdi Yue5224e92014-04-29 18:04:02 -0700152 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600153 else if (item.first == "localhop_security") {
154 m_localhopValidator.load(item.second, filename);
155 m_isLocalhopEnabled = true;
Yanbiao Lib9d439d2014-12-11 16:12:32 -0800156 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600157 else if (item.first == "remote_register") {
158 m_remoteRegistrator.loadConfig(item.second);
159 isRemoteRegisterEnabled = true;
160
161 // Avoid other actions when isDryRun == true
162 if (isDryRun) {
163 continue;
164 }
165
166 m_remoteRegistrator.enable();
167 }
168 else {
169 throw Error("Unrecognized rib property: " + item.first);
170 }
171 }
172
173 if (!isRemoteRegisterEnabled) {
174 m_remoteRegistrator.disable();
175 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700176}
177
178void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700179RibManager::sendResponse(const Name& name,
180 const ControlResponse& response)
181{
182 const Block& encodedControl = response.wireEncode();
183
Alexander Afanasyev97a9c2c2014-07-18 16:57:57 -0700184 shared_ptr<Data> responseData = make_shared<Data>(name);
185 responseData->setContent(encodedControl);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700186
Alexander Afanasyev97a9c2c2014-07-18 16:57:57 -0700187 m_keyChain.sign(*responseData);
188 m_face.put(*responseData);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700189}
190
191void
192RibManager::sendResponse(const Name& name,
193 uint32_t code,
194 const std::string& text)
195{
196 ControlResponse response(code, text);
197 sendResponse(name, response);
198}
199
200void
Yingdi Yue5224e92014-04-29 18:04:02 -0700201RibManager::onLocalhostRequest(const Interest& request)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700202{
Vince Lehmancd16c832014-07-23 15:14:55 -0700203 const Name& command = request.getName();
Yanbiao Lib9d439d2014-12-11 16:12:32 -0800204 const Name::Component& verb = command.get(COMMAND_PREFIX.size());
Vince Lehmancd16c832014-07-23 15:14:55 -0700205
206 UnsignedVerbDispatchTable::const_iterator unsignedVerbProcessor = m_unsignedVerbDispatch.find(verb);
207
Vince Lehman76c751c2014-11-18 17:36:38 -0600208 if (unsignedVerbProcessor != m_unsignedVerbDispatch.end()) {
209 NFD_LOG_DEBUG("command result: processing unsigned verb: " << verb);
210 (unsignedVerbProcessor->second)(this, request);
211 }
212 else {
213 m_localhostValidator.validate(request,
214 bind(&RibManager::onCommandValidated, this, _1),
215 bind(&RibManager::onCommandValidationFailed, this, _1, _2));
216 }
Yingdi Yue5224e92014-04-29 18:04:02 -0700217}
218
219void
220RibManager::onLocalhopRequest(const Interest& request)
221{
222 m_localhopValidator.validate(request,
223 bind(&RibManager::onCommandValidated, this, _1),
224 bind(&RibManager::onCommandValidationFailed, this, _1, _2));
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700225}
226
227void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700228RibManager::onCommandValidated(const shared_ptr<const Interest>& request)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700229{
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700230 // REMOTE_COMMAND_PREFIX number of componenets are same as
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700231 // NRD_COMMAND_PREFIX's so no extra checks are required.
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700232
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700233 const Name& command = request->getName();
234 const Name::Component& verb = command[COMMAND_PREFIX.size()];
235 const Name::Component& parameterComponent = command[COMMAND_PREFIX.size() + 1];
236
Vince Lehmancd16c832014-07-23 15:14:55 -0700237 SignedVerbDispatchTable::const_iterator verbProcessor = m_signedVerbDispatch.find(verb);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700238
Vince Lehman76c751c2014-11-18 17:36:38 -0600239 if (verbProcessor != m_signedVerbDispatch.end()) {
240
241 ControlParameters parameters;
242 if (!extractParameters(parameterComponent, parameters)) {
243 NFD_LOG_DEBUG("command result: malformed verb: " << verb);
244
245 if (static_cast<bool>(request)) {
246 sendResponse(command, 400, "Malformed command");
247 }
248
249 return;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700250 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600251
252 NFD_LOG_DEBUG("command result: processing verb: " << verb);
253 (verbProcessor->second)(this, request, parameters);
254 }
255 else {
256 NFD_LOG_DEBUG("Unsupported command: " << verb);
257
258 if (static_cast<bool>(request)) {
259 sendResponse(request->getName(), 501, "Unsupported command");
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700260 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600261 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700262}
263
264void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700265RibManager::registerEntry(const shared_ptr<const Interest>& request,
266 ControlParameters& parameters)
267{
268 ndn::nfd::RibRegisterCommand command;
269
Vince Lehman76c751c2014-11-18 17:36:38 -0600270 if (!validateParameters(command, parameters)) {
271 NFD_LOG_DEBUG("register result: FAIL reason: malformed");
Vince Lehmancd613c52014-07-30 14:34:49 -0500272
Vince Lehman76c751c2014-11-18 17:36:38 -0600273 if (static_cast<bool>(request)) {
274 sendResponse(request->getName(), 400, "Malformed command");
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700275 }
276
Vince Lehman76c751c2014-11-18 17:36:38 -0600277 return;
278 }
279
Alexander Afanasyev483efd12014-08-14 10:51:18 -0700280 bool isSelfRegistration = (!parameters.hasFaceId() || parameters.getFaceId() == 0);
Vince Lehman76c751c2014-11-18 17:36:38 -0600281 if (isSelfRegistration) {
282 parameters.setFaceId(request->getIncomingFaceId());
283 }
284
285 // Respond since command is valid and authorized
286 sendSuccessResponse(request, parameters);
Alexander Afanasyevfb1c8082014-07-17 15:16:15 -0700287
Vince Lehman218be0a2015-01-15 17:25:20 -0600288 Route route;
289 route.faceId = parameters.getFaceId();
290 route.origin = parameters.getOrigin();
291 route.cost = parameters.getCost();
292 route.flags = parameters.getFlags();
Syed Obaid3313a372014-07-01 01:31:33 -0500293
Alexander Afanasyevf67cf082014-07-18 16:47:29 -0700294 if (parameters.hasExpirationPeriod() &&
295 parameters.getExpirationPeriod() != time::milliseconds::max())
Vince Lehman76c751c2014-11-18 17:36:38 -0600296 {
297 route.expires = time::steady_clock::now() + parameters.getExpirationPeriod();
Syed Obaid3313a372014-07-01 01:31:33 -0500298
Vince Lehman76c751c2014-11-18 17:36:38 -0600299 // Schedule a new event, the old one will be cancelled during rib insertion.
300 scheduler::EventId eventId = scheduler::schedule(parameters.getExpirationPeriod(),
301 bind(&Rib::onRouteExpiration, &m_managedRib, parameters.getName(), route));
Syed Obaid3313a372014-07-01 01:31:33 -0500302
Vince Lehman76c751c2014-11-18 17:36:38 -0600303 NFD_LOG_TRACE("Scheduled unregistration at: " << route.expires <<
304 " with EventId: " << eventId);
305
306 // Set the NewEventId of this entry
307 route.setExpirationEvent(eventId);
308 }
309 else {
310 route.expires = time::steady_clock::TimePoint::max();
311 }
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700312
Vince Lehmanff8b3972015-02-20 16:51:21 -0600313 NFD_LOG_INFO("Adding route " << parameters.getName() << " nexthop=" << route.faceId
314 << " origin=" << route.origin
315 << " cost=" << route.cost);
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700316
Vince Lehman76c751c2014-11-18 17:36:38 -0600317 RibUpdate update;
318 update.setAction(RibUpdate::REGISTER)
319 .setName(parameters.getName())
320 .setRoute(route);
321
322 m_managedRib.beginApplyUpdate(update,
323 bind(&RibManager::onRibUpdateSuccess, this, update),
324 bind(&RibManager::onRibUpdateFailure, this, update, _1, _2));
325
Vince Lehman218be0a2015-01-15 17:25:20 -0600326 m_registeredFaces.insert(route.faceId);
Vince Lehman281ded72014-08-21 12:17:08 -0500327}
328
329void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700330RibManager::unregisterEntry(const shared_ptr<const Interest>& request,
Syed Obaid3313a372014-07-01 01:31:33 -0500331 ControlParameters& params)
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700332{
Alexander Afanasyevce7520e2014-04-28 09:40:06 -0700333 ndn::nfd::RibUnregisterCommand command;
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700334
Vince Lehman76c751c2014-11-18 17:36:38 -0600335 // Passing all parameters gives error in validation,
336 // so passing only the required arguments.
Syed Obaid3313a372014-07-01 01:31:33 -0500337 ControlParameters parameters;
338 parameters.setName(params.getName());
Syed Obaid3313a372014-07-01 01:31:33 -0500339
Vince Lehman76c751c2014-11-18 17:36:38 -0600340 if (params.hasFaceId()) {
341 parameters.setFaceId(params.getFaceId());
342 }
343
344 if (params.hasOrigin()) {
345 parameters.setOrigin(params.getOrigin());
346 }
347
348 if (!validateParameters(command, parameters)) {
349 NFD_LOG_DEBUG("unregister result: FAIL reason: malformed");
350
351 if (static_cast<bool>(request)) {
352 sendResponse(request->getName(), 400, "Malformed command");
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700353 }
354
Vince Lehman76c751c2014-11-18 17:36:38 -0600355 return;
356 }
357
Alexander Afanasyev483efd12014-08-14 10:51:18 -0700358 bool isSelfRegistration = (!parameters.hasFaceId() || parameters.getFaceId() == 0);
Vince Lehman76c751c2014-11-18 17:36:38 -0600359 if (isSelfRegistration) {
360 parameters.setFaceId(request->getIncomingFaceId());
361 }
362
363 // Respond since command is valid and authorized
364 sendSuccessResponse(request, parameters);
Alexander Afanasyevfb1c8082014-07-17 15:16:15 -0700365
Vince Lehman218be0a2015-01-15 17:25:20 -0600366 Route route;
367 route.faceId = parameters.getFaceId();
368 route.origin = parameters.getOrigin();
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700369
Vince Lehmanff8b3972015-02-20 16:51:21 -0600370 NFD_LOG_INFO("Removing route " << parameters.getName() << " nexthop=" << route.faceId
371 << " origin=" << route.origin);
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700372
Vince Lehman76c751c2014-11-18 17:36:38 -0600373 RibUpdate update;
374 update.setAction(RibUpdate::UNREGISTER)
375 .setName(parameters.getName())
376 .setRoute(route);
Vince Lehman4387e782014-06-19 16:57:45 -0500377
Vince Lehman76c751c2014-11-18 17:36:38 -0600378 m_managedRib.beginApplyUpdate(update,
379 bind(&RibManager::onRibUpdateSuccess, this, update),
380 bind(&RibManager::onRibUpdateFailure, this, update, _1, _2));
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700381}
382
383void
384RibManager::onCommandValidationFailed(const shared_ptr<const Interest>& request,
385 const std::string& failureInfo)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700386{
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700387 NFD_LOG_DEBUG("RibRequestValidationFailed: " << failureInfo);
Vince Lehman76c751c2014-11-18 17:36:38 -0600388
389 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500390 sendResponse(request->getName(), 403, failureInfo);
Vince Lehman76c751c2014-11-18 17:36:38 -0600391 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700392}
393
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700394
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700395bool
396RibManager::extractParameters(const Name::Component& parameterComponent,
397 ControlParameters& extractedParameters)
398{
Vince Lehman76c751c2014-11-18 17:36:38 -0600399 try {
400 Block rawParameters = parameterComponent.blockFromValue();
401 extractedParameters.wireDecode(rawParameters);
402 }
403 catch (const tlv::Error&) {
404 return false;
405 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700406
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700407 NFD_LOG_DEBUG("Parameters parsed OK");
408 return true;
409}
410
411bool
412RibManager::validateParameters(const ControlCommand& command,
413 ControlParameters& parameters)
414{
Vince Lehman76c751c2014-11-18 17:36:38 -0600415 try {
416 command.validateRequest(parameters);
417 }
418 catch (const ControlCommand::ArgumentError&) {
419 return false;
420 }
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700421
422 command.applyDefaultsToRequest(parameters);
423
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700424 return true;
425}
426
427void
428RibManager::onCommandError(uint32_t code, const std::string& error,
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700429 const shared_ptr<const Interest>& request,
Vince Lehman218be0a2015-01-15 17:25:20 -0600430 const Route& route)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700431{
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700432 NFD_LOG_ERROR("NFD returned an error: " << error << " (code: " << code << ")");
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700433
434 ControlResponse response;
435
Vince Lehman76c751c2014-11-18 17:36:38 -0600436 if (code == 404) {
437 response.setCode(code);
438 response.setText(error);
439 }
440 else {
441 response.setCode(533);
442 std::ostringstream os;
443 os << "Failure to update NFD " << "(NFD Error: " << code << " " << error << ")";
444 response.setText(os.str());
445 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700446
Vince Lehman76c751c2014-11-18 17:36:38 -0600447 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500448 sendResponse(request->getName(), response);
Vince Lehman76c751c2014-11-18 17:36:38 -0600449 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700450}
451
452void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700453RibManager::onRegSuccess(const shared_ptr<const Interest>& request,
454 const ControlParameters& parameters,
Vince Lehman218be0a2015-01-15 17:25:20 -0600455 const Route& route)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700456{
457 ControlResponse response;
458
459 response.setCode(200);
460 response.setText("Success");
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700461 response.setBody(parameters.wireEncode());
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700462
Vince Lehman218be0a2015-01-15 17:25:20 -0600463 NFD_LOG_TRACE("onRegSuccess: registered " << route);
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700464
Vince Lehman76c751c2014-11-18 17:36:38 -0600465 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500466 sendResponse(request->getName(), response);
Vince Lehman76c751c2014-11-18 17:36:38 -0600467 }
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700468}
469
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700470
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700471void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700472RibManager::onUnRegSuccess(const shared_ptr<const Interest>& request,
473 const ControlParameters& parameters,
Vince Lehman218be0a2015-01-15 17:25:20 -0600474 const Route& route)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700475{
476 ControlResponse response;
477
478 response.setCode(200);
479 response.setText("Success");
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700480 response.setBody(parameters.wireEncode());
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700481
Vince Lehman218be0a2015-01-15 17:25:20 -0600482 NFD_LOG_TRACE("onUnRegSuccess: unregistered " << route);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700483
Vince Lehman76c751c2014-11-18 17:36:38 -0600484 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500485 sendResponse(request->getName(), response);
Vince Lehman76c751c2014-11-18 17:36:38 -0600486 }
Vince Lehman4387e782014-06-19 16:57:45 -0500487}
488
489void
490RibManager::sendSuccessResponse(const shared_ptr<const Interest>& request,
491 const ControlParameters& parameters)
492{
Vince Lehman76c751c2014-11-18 17:36:38 -0600493 if (!static_cast<bool>(request)) {
494 return;
495 }
Vince Lehman4387e782014-06-19 16:57:45 -0500496
497 ControlResponse response;
498
499 response.setCode(200);
500 response.setText("Success");
501 response.setBody(parameters.wireEncode());
502
Vince Lehman76c751c2014-11-18 17:36:38 -0600503 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500504 sendResponse(request->getName(), response);
Vince Lehman76c751c2014-11-18 17:36:38 -0600505 }
Vince Lehman4387e782014-06-19 16:57:45 -0500506}
507
508void
509RibManager::sendErrorResponse(uint32_t code, const std::string& error,
510 const shared_ptr<const Interest>& request)
511{
512 NFD_LOG_ERROR("NFD returned an error: " << error << " (code: " << code << ")");
513
Vince Lehman76c751c2014-11-18 17:36:38 -0600514 if (!static_cast<bool>(request)) {
515 return;
516 }
Vince Lehman4387e782014-06-19 16:57:45 -0500517
518 ControlResponse response;
519
Vince Lehman76c751c2014-11-18 17:36:38 -0600520 if (code == 404) {
521 response.setCode(code);
522 response.setText(error);
523 }
524 else {
525 response.setCode(533);
526 std::ostringstream os;
527 os << "Failure to update NFD " << "(NFD Error: " << code << " " << error << ")";
528 response.setText(os.str());
529 }
Vince Lehman4387e782014-06-19 16:57:45 -0500530
Vince Lehman76c751c2014-11-18 17:36:38 -0600531 if (static_cast<bool>(request)) {
Syed Obaid3313a372014-07-01 01:31:33 -0500532 sendResponse(request->getName(), response);
Vince Lehman76c751c2014-11-18 17:36:38 -0600533 }
534}
535
536void
537RibManager::onRibUpdateSuccess(const RibUpdate& update)
538{
539 NFD_LOG_DEBUG("RIB update succeeded for " << update);
540}
541
542void
543RibManager::onRibUpdateFailure(const RibUpdate& update, uint32_t code, const std::string& error)
544{
545 NFD_LOG_DEBUG("RIB update failed for " << update << " (code: " << code
546 << ", error: " << error << ")");
547
548 // Since the FIB rejected the update, clean up invalid routes
549 scheduleActiveFaceFetch(time::seconds(1));
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700550}
551
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700552void
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600553RibManager::onNrdCommandPrefixAddNextHopSuccess(const Name& prefix,
554 const ndn::nfd::ControlParameters& result)
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700555{
556 NFD_LOG_DEBUG("Successfully registered " + prefix.toUri() + " with NFD");
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600557
558 // Routes must be inserted into the RIB so route flags can be applied
559 Route route;
560 route.faceId = result.getFaceId();
561 route.origin = ndn::nfd::ROUTE_ORIGIN_APP;
562 route.expires = time::steady_clock::TimePoint::max();
563 route.flags = ndn::nfd::ROUTE_FLAG_CHILD_INHERIT;
564
565 m_managedRib.insert(prefix, route);
566
567 m_registeredFaces.insert(route.faceId);
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700568}
569
570void
571RibManager::onNrdCommandPrefixAddNextHopError(const Name& name, const std::string& msg)
572{
573 throw Error("Error in setting interest filter (" + name.toUri() + "): " + msg);
574}
575
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700576void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700577RibManager::onControlHeaderSuccess()
578{
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700579 NFD_LOG_DEBUG("Local control header enabled");
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700580}
581
582void
583RibManager::onControlHeaderError(uint32_t code, const std::string& reason)
584{
Alexander Afanasyevb3051652014-04-30 17:50:26 -0700585 std::ostringstream os;
586 os << "Couldn't enable local control header "
587 << "(code: " << code << ", info: " << reason << ")";
588 throw Error(os.str());
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700589}
590
591void
592RibManager::enableLocalControlHeader()
593{
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700594 m_nfdController.start<ndn::nfd::FaceEnableLocalControlCommand>(
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700595 ControlParameters()
596 .setLocalControlFeature(ndn::nfd::LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID),
597 bind(&RibManager::onControlHeaderSuccess, this),
598 bind(&RibManager::onControlHeaderError, this, _1, _2));
599}
600
601void
602RibManager::onNotification(const FaceEventNotification& notification)
603{
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700604 NFD_LOG_TRACE("onNotification: " << notification);
Vince Lehmancd613c52014-07-30 14:34:49 -0500605
Vince Lehman76c751c2014-11-18 17:36:38 -0600606 if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) {
607 NFD_LOG_DEBUG("Received notification for destroyed faceId: " << notification.getFaceId());
Vince Lehmancd613c52014-07-30 14:34:49 -0500608
Vince Lehman76c751c2014-11-18 17:36:38 -0600609 scheduler::schedule(time::seconds(0),
610 bind(&RibManager::onFaceDestroyedEvent, this, notification.getFaceId()));
611 }
Vince Lehman4387e782014-06-19 16:57:45 -0500612}
613
614void
Vince Lehman76c751c2014-11-18 17:36:38 -0600615RibManager::onFaceDestroyedEvent(uint64_t faceId)
Alexander Afanasyev63108c42014-07-07 19:10:47 -0700616{
Vince Lehman76c751c2014-11-18 17:36:38 -0600617 m_managedRib.beginRemoveFace(faceId);
Vince Lehman26b215c2014-08-17 15:00:41 -0500618 m_registeredFaces.erase(faceId);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700619}
620
Vince Lehmancd16c832014-07-23 15:14:55 -0700621void
622RibManager::listEntries(const Interest& request)
623{
624 const Name& command = request.getName();
625 const size_t commandNComps = command.size();
626
Vince Lehman76c751c2014-11-18 17:36:38 -0600627 if (commandNComps < LIST_COMMAND_NCOMPS || !LIST_COMMAND_PREFIX.isPrefixOf(command)) {
628 NFD_LOG_DEBUG("command result: malformed");
629
630 sendResponse(command, 400, "Malformed command");
631 return;
632 }
Vince Lehmancd16c832014-07-23 15:14:55 -0700633
634 m_ribStatusPublisher.publish();
635}
636
Vince Lehmancd613c52014-07-30 14:34:49 -0500637void
Vince Lehman26b215c2014-08-17 15:00:41 -0500638RibManager::scheduleActiveFaceFetch(const time::seconds& timeToWait)
639{
640 scheduler::cancel(m_activeFaceFetchEvent);
641
642 m_activeFaceFetchEvent = scheduler::schedule(timeToWait,
643 bind(&RibManager::fetchActiveFaces, this));
644}
645
646void
Vince Lehmancd613c52014-07-30 14:34:49 -0500647RibManager::fetchActiveFaces()
648{
649 NFD_LOG_DEBUG("Fetching active faces");
650
651 Interest interest(FACES_LIST_DATASET_PREFIX);
652 interest.setChildSelector(1);
653 interest.setMustBeFresh(true);
654
655 shared_ptr<ndn::OBufferStream> buffer = make_shared<ndn::OBufferStream>();
656
657 m_face.expressInterest(interest,
658 bind(&RibManager::fetchSegments, this, _2, buffer),
659 bind(&RibManager::onFetchFaceStatusTimeout, this));
660}
661
662void
663RibManager::fetchSegments(const Data& data, shared_ptr<ndn::OBufferStream> buffer)
664{
665 buffer->write(reinterpret_cast<const char*>(data.getContent().value()),
666 data.getContent().value_size());
667
668 uint64_t currentSegment = data.getName().get(-1).toSegment();
669
670 const name::Component& finalBlockId = data.getMetaInfo().getFinalBlockId();
Vince Lehman76c751c2014-11-18 17:36:38 -0600671
672 if (finalBlockId.empty() || finalBlockId.toSegment() > currentSegment) {
673 m_face.expressInterest(data.getName().getPrefix(-1).appendSegment(currentSegment+1),
674 bind(&RibManager::fetchSegments, this, _2, buffer),
675 bind(&RibManager::onFetchFaceStatusTimeout, this));
676 }
677 else {
678 removeInvalidFaces(buffer);
679 }
Vince Lehmancd613c52014-07-30 14:34:49 -0500680}
681
682void
Vince Lehman26b215c2014-08-17 15:00:41 -0500683RibManager::removeInvalidFaces(shared_ptr<ndn::OBufferStream> buffer)
Vince Lehmancd613c52014-07-30 14:34:49 -0500684{
Vince Lehman26b215c2014-08-17 15:00:41 -0500685 NFD_LOG_DEBUG("Checking for invalid face registrations");
Vince Lehmancd613c52014-07-30 14:34:49 -0500686
687 ndn::ConstBufferPtr buf = buffer->buf();
688
689 Block block;
690 size_t offset = 0;
Vince Lehman26b215c2014-08-17 15:00:41 -0500691 FaceIdSet activeFaces;
Vince Lehmancd613c52014-07-30 14:34:49 -0500692
Junxiao Shi78926c92015-02-28 22:56:06 -0700693 while (offset < buf->size()) {
694 bool isOk = false;
695 std::tie(isOk, block) = Block::fromBuffer(buf, offset);
696 if (!isOk) {
697 std::cerr << "ERROR: cannot decode FaceStatus TLV" << std::endl;
698 break;
Vince Lehmancd613c52014-07-30 14:34:49 -0500699 }
Vince Lehman26b215c2014-08-17 15:00:41 -0500700
Junxiao Shi78926c92015-02-28 22:56:06 -0700701 offset += block.size();
702
703 ndn::nfd::FaceStatus status(block);
704 activeFaces.insert(status.getFaceId());
705 }
706
Vince Lehman26b215c2014-08-17 15:00:41 -0500707 // Look for face IDs that were registered but not active to find missed
708 // face destroyed events
Vince Lehman76c751c2014-11-18 17:36:38 -0600709 for (uint64_t faceId : m_registeredFaces) {
710 if (activeFaces.find(faceId) == activeFaces.end()) {
711 NFD_LOG_DEBUG("Removing invalid face ID: " << faceId);
712
713 scheduler::schedule(time::seconds(0),
714 bind(&RibManager::onFaceDestroyedEvent, this, faceId));
Vince Lehman26b215c2014-08-17 15:00:41 -0500715 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600716 }
Vince Lehman26b215c2014-08-17 15:00:41 -0500717
718 // Reschedule the check for future clean up
719 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Vince Lehmancd613c52014-07-30 14:34:49 -0500720}
721
722void
723RibManager::onFetchFaceStatusTimeout()
724{
725 std::cerr << "Face Status Dataset request timed out" << std::endl;
Vince Lehman26b215c2014-08-17 15:00:41 -0500726 scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL);
Vince Lehmancd613c52014-07-30 14:34:49 -0500727}
728
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700729} // namespace rib
730} // namespace nfd