Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014, 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 Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 10 | * |
| 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/>. |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 24 | */ |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 25 | |
| 26 | #include "rib-manager.hpp" |
Alexander Afanasyev | 03ea3eb | 2014-04-17 18:19:06 -0700 | [diff] [blame] | 27 | #include "core/global-io.hpp" |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 28 | #include "core/logger.hpp" |
Alexander Afanasyev | 63108c4 | 2014-07-07 19:10:47 -0700 | [diff] [blame] | 29 | #include "core/scheduler.hpp" |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 30 | #include <ndn-cxx/management/nfd-face-status.hpp> |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 31 | |
| 32 | namespace nfd { |
| 33 | namespace rib { |
| 34 | |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 35 | NFD_LOG_INIT("RibManager"); |
| 36 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 37 | const Name RibManager::COMMAND_PREFIX = "/localhost/nfd/rib"; |
| 38 | const Name RibManager::REMOTE_COMMAND_PREFIX = "/localhop/nfd/rib"; |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 39 | const Name RibManager::FACES_LIST_DATASET_PREFIX = "/localhost/nfd/faces/list"; |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 40 | |
| 41 | const size_t RibManager::COMMAND_UNSIGNED_NCOMPS = |
| 42 | RibManager::COMMAND_PREFIX.size() + |
| 43 | 1 + // verb |
| 44 | 1; // verb options |
| 45 | |
| 46 | const size_t RibManager::COMMAND_SIGNED_NCOMPS = |
| 47 | RibManager::COMMAND_UNSIGNED_NCOMPS + |
| 48 | 4; // (timestamp, nonce, signed info tlv, signature tlv) |
| 49 | |
Vince Lehman | cd16c83 | 2014-07-23 15:14:55 -0700 | [diff] [blame] | 50 | const RibManager::SignedVerbAndProcessor RibManager::SIGNED_COMMAND_VERBS[] = |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 51 | { |
Vince Lehman | cd16c83 | 2014-07-23 15:14:55 -0700 | [diff] [blame] | 52 | SignedVerbAndProcessor( |
| 53 | Name::Component("register"), |
| 54 | &RibManager::registerEntry |
| 55 | ), |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 56 | |
Vince Lehman | cd16c83 | 2014-07-23 15:14:55 -0700 | [diff] [blame] | 57 | SignedVerbAndProcessor( |
| 58 | Name::Component("unregister"), |
| 59 | &RibManager::unregisterEntry |
| 60 | ), |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 61 | }; |
| 62 | |
Vince Lehman | cd16c83 | 2014-07-23 15:14:55 -0700 | [diff] [blame] | 63 | const RibManager::UnsignedVerbAndProcessor RibManager::UNSIGNED_COMMAND_VERBS[] = |
| 64 | { |
| 65 | UnsignedVerbAndProcessor( |
| 66 | Name::Component("list"), |
| 67 | &RibManager::listEntries |
| 68 | ), |
| 69 | }; |
| 70 | |
| 71 | const Name RibManager::LIST_COMMAND_PREFIX("/localhost/nfd/rib/list"); |
| 72 | const size_t RibManager::LIST_COMMAND_NCOMPS = LIST_COMMAND_PREFIX.size(); |
| 73 | |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 74 | const time::seconds RibManager::ACTIVE_FACE_FETCH_INTERVAL = time::seconds(300); |
| 75 | |
Vince Lehman | 72446ec | 2014-07-09 10:50:02 -0500 | [diff] [blame] | 76 | RibManager::RibManager(ndn::Face& face) |
| 77 | : m_face(face) |
Junxiao Shi | 8e273ca | 2014-11-12 00:42:29 -0700 | [diff] [blame] | 78 | , m_nfdController(m_face, m_keyChain) |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 79 | , m_localhostValidator(m_face) |
| 80 | , m_localhopValidator(m_face) |
Yingdi Yu | f4db0b5 | 2014-04-17 13:17:39 -0700 | [diff] [blame] | 81 | , m_faceMonitor(m_face) |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 82 | , m_isLocalhopEnabled(false) |
Yanbiao Li | c17de83 | 2014-11-21 17:51:45 -0800 | [diff] [blame^] | 83 | , m_remoteRegistrator(m_nfdController, m_keyChain, m_managedRib) |
Vince Lehman | cd16c83 | 2014-07-23 15:14:55 -0700 | [diff] [blame] | 84 | , m_ribStatusPublisher(m_managedRib, face, LIST_COMMAND_PREFIX, m_keyChain) |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 85 | , m_lastTransactionId(0) |
Vince Lehman | cd16c83 | 2014-07-23 15:14:55 -0700 | [diff] [blame] | 86 | , 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 Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 92 | { |
| 93 | } |
| 94 | |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 95 | RibManager::~RibManager() |
| 96 | { |
| 97 | scheduler::cancel(m_activeFaceFetchEvent); |
| 98 | } |
| 99 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 100 | void |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 101 | RibManager::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), |
| 109 | bind(&RibManager::onNrdCommandPrefixAddNextHopSuccess, this, cref(commandPrefix)), |
| 110 | bind(&RibManager::onNrdCommandPrefixAddNextHopError, this, cref(commandPrefix), _2)); |
| 111 | |
| 112 | m_face.setInterestFilter(commandPrefix, onRequest); |
| 113 | } |
| 114 | |
| 115 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 116 | RibManager::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 Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 121 | this->startListening(COMMAND_PREFIX, bind(&RibManager::onLocalhostRequest, this, _2)); |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 122 | |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 123 | if (m_isLocalhopEnabled) { |
| 124 | this->startListening(REMOTE_COMMAND_PREFIX, |
| 125 | bind(&RibManager::onLocalhopRequest, this, _2)); |
| 126 | } |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 127 | |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 128 | NFD_LOG_INFO("Start monitoring face create/destroy events"); |
Junxiao Shi | 15b12e7 | 2014-08-09 19:56:24 -0700 | [diff] [blame] | 129 | m_faceMonitor.onNotification += bind(&RibManager::onNotification, this, _1); |
| 130 | m_faceMonitor.start(); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 131 | |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 132 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | void |
| 136 | RibManager::setConfigFile(ConfigFile& configFile) |
| 137 | { |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 138 | configFile.addSectionHandler("rib", |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 139 | bind(&RibManager::onConfig, this, _1, _2, _3)); |
| 140 | } |
| 141 | |
| 142 | void |
| 143 | RibManager::onConfig(const ConfigSection& configSection, |
Yingdi Yu | f4db0b5 | 2014-04-17 13:17:39 -0700 | [diff] [blame] | 144 | bool isDryRun, |
| 145 | const std::string& filename) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 146 | { |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 147 | for (ConfigSection::const_iterator i = configSection.begin(); |
| 148 | i != configSection.end(); ++i) |
| 149 | { |
| 150 | if (i->first == "localhost_security") |
| 151 | m_localhostValidator.load(i->second, filename); |
| 152 | else if (i->first == "localhop_security") |
| 153 | { |
| 154 | m_localhopValidator.load(i->second, filename); |
| 155 | m_isLocalhopEnabled = true; |
| 156 | } |
Yanbiao Li | c17de83 | 2014-11-21 17:51:45 -0800 | [diff] [blame^] | 157 | else if (i->first == "remote_register") |
| 158 | { |
| 159 | m_remoteRegistrator.loadConfig(i->second); |
| 160 | |
| 161 | // register callback to the RIB. |
| 162 | // do remote registration after an entry is inserted into the RIB. |
| 163 | // do remote unregistration after an entry is erased from the RIB. |
| 164 | m_managedRib.afterInsertEntry += [this] (const Name& prefix) { |
| 165 | m_remoteRegistrator.registerPrefix(prefix); |
| 166 | }; |
| 167 | |
| 168 | m_managedRib.afterEraseEntry += [this] (const Name& prefix) { |
| 169 | m_remoteRegistrator.unregisterPrefix(prefix); |
| 170 | }; |
| 171 | } |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 172 | else |
| 173 | throw Error("Unrecognized rib property: " + i->first); |
| 174 | } |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 178 | RibManager::sendResponse(const Name& name, |
| 179 | const ControlResponse& response) |
| 180 | { |
| 181 | const Block& encodedControl = response.wireEncode(); |
| 182 | |
Alexander Afanasyev | 97a9c2c | 2014-07-18 16:57:57 -0700 | [diff] [blame] | 183 | shared_ptr<Data> responseData = make_shared<Data>(name); |
| 184 | responseData->setContent(encodedControl); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 185 | |
Alexander Afanasyev | 97a9c2c | 2014-07-18 16:57:57 -0700 | [diff] [blame] | 186 | m_keyChain.sign(*responseData); |
| 187 | m_face.put(*responseData); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | void |
| 191 | RibManager::sendResponse(const Name& name, |
| 192 | uint32_t code, |
| 193 | const std::string& text) |
| 194 | { |
| 195 | ControlResponse response(code, text); |
| 196 | sendResponse(name, response); |
| 197 | } |
| 198 | |
| 199 | void |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 200 | RibManager::onLocalhostRequest(const Interest& request) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 201 | { |
Vince Lehman | cd16c83 | 2014-07-23 15:14:55 -0700 | [diff] [blame] | 202 | const Name& command = request.getName(); |
| 203 | const Name::Component& verb = command.get(COMMAND_PREFIX.size()); |
| 204 | |
| 205 | UnsignedVerbDispatchTable::const_iterator unsignedVerbProcessor = m_unsignedVerbDispatch.find(verb); |
| 206 | |
| 207 | if (unsignedVerbProcessor != m_unsignedVerbDispatch.end()) |
| 208 | { |
| 209 | NFD_LOG_DEBUG("command result: processing unsigned verb: " << verb); |
| 210 | (unsignedVerbProcessor->second)(this, request); |
| 211 | } |
| 212 | else |
| 213 | { |
| 214 | m_localhostValidator.validate(request, |
| 215 | bind(&RibManager::onCommandValidated, this, _1), |
| 216 | bind(&RibManager::onCommandValidationFailed, this, _1, _2)); |
| 217 | } |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | void |
| 221 | RibManager::onLocalhopRequest(const Interest& request) |
| 222 | { |
| 223 | m_localhopValidator.validate(request, |
| 224 | bind(&RibManager::onCommandValidated, this, _1), |
| 225 | bind(&RibManager::onCommandValidationFailed, this, _1, _2)); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 229 | RibManager::onCommandValidated(const shared_ptr<const Interest>& request) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 230 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 231 | // REMOTE_COMMAND_PREFIX number of componenets are same as |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 232 | // NRD_COMMAND_PREFIX's so no extra checks are required. |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 233 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 234 | 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 Lehman | cd16c83 | 2014-07-23 15:14:55 -0700 | [diff] [blame] | 238 | SignedVerbDispatchTable::const_iterator verbProcessor = m_signedVerbDispatch.find(verb); |
| 239 | if (verbProcessor != m_signedVerbDispatch.end()) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 240 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 241 | ControlParameters parameters; |
| 242 | if (!extractParameters(parameterComponent, parameters)) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 243 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 244 | NFD_LOG_DEBUG("command result: malformed verb: " << verb); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 245 | if (static_cast<bool>(request)) |
| 246 | sendResponse(command, 400, "Malformed command"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 247 | return; |
| 248 | } |
| 249 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 250 | NFD_LOG_DEBUG("command result: processing verb: " << verb); |
| 251 | (verbProcessor->second)(this, request, parameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 252 | } |
| 253 | else |
| 254 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 255 | NFD_LOG_DEBUG("Unsupported command: " << verb); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 256 | if (static_cast<bool>(request)) |
| 257 | sendResponse(request->getName(), 501, "Unsupported command"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 258 | } |
| 259 | } |
| 260 | |
| 261 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 262 | RibManager::registerEntry(const shared_ptr<const Interest>& request, |
| 263 | ControlParameters& parameters) |
| 264 | { |
| 265 | ndn::nfd::RibRegisterCommand command; |
| 266 | |
| 267 | if (!validateParameters(command, parameters)) |
| 268 | { |
| 269 | NFD_LOG_DEBUG("register result: FAIL reason: malformed"); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 270 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 271 | if (static_cast<bool>(request)) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 272 | { |
| 273 | sendResponse(request->getName(), 400, "Malformed command"); |
| 274 | } |
| 275 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 276 | return; |
| 277 | } |
| 278 | |
Alexander Afanasyev | 483efd1 | 2014-08-14 10:51:18 -0700 | [diff] [blame] | 279 | bool isSelfRegistration = (!parameters.hasFaceId() || parameters.getFaceId() == 0); |
| 280 | if (isSelfRegistration) |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame] | 281 | { |
| 282 | parameters.setFaceId(request->getIncomingFaceId()); |
| 283 | } |
| 284 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 285 | FaceEntry faceEntry; |
| 286 | faceEntry.faceId = parameters.getFaceId(); |
| 287 | faceEntry.origin = parameters.getOrigin(); |
| 288 | faceEntry.cost = parameters.getCost(); |
| 289 | faceEntry.flags = parameters.getFlags(); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 290 | |
Alexander Afanasyev | f67cf08 | 2014-07-18 16:47:29 -0700 | [diff] [blame] | 291 | if (parameters.hasExpirationPeriod() && |
| 292 | parameters.getExpirationPeriod() != time::milliseconds::max()) |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 293 | { |
| 294 | faceEntry.expires = time::steady_clock::now() + parameters.getExpirationPeriod(); |
| 295 | |
| 296 | // Schedule a new event, the old one will be cancelled during rib insertion. |
| 297 | EventId eventId; |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 298 | eventId = scheduler::schedule(parameters.getExpirationPeriod(), |
Vince Lehman | 281ded7 | 2014-08-21 12:17:08 -0500 | [diff] [blame] | 299 | bind(&RibManager::expireEntry, |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 300 | this, shared_ptr<Interest>(), parameters)); |
Vince Lehman | 281ded7 | 2014-08-21 12:17:08 -0500 | [diff] [blame] | 301 | NFD_LOG_TRACE("Scheduled unregistration at: " << faceEntry.expires << |
| 302 | " with EventId: " << eventId); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 303 | |
| 304 | //set the NewEventId of this entry |
| 305 | faceEntry.setExpirationEvent(eventId); |
| 306 | } |
| 307 | else |
| 308 | { |
| 309 | faceEntry.expires = time::steady_clock::TimePoint::max(); |
| 310 | } |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 311 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 312 | NFD_LOG_TRACE("register prefix: " << faceEntry); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 313 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 314 | m_managedRib.insert(parameters.getName(), faceEntry); |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 315 | m_registeredFaces.insert(faceEntry.faceId); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 316 | |
| 317 | sendUpdatesToFib(request, parameters); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | void |
Vince Lehman | 281ded7 | 2014-08-21 12:17:08 -0500 | [diff] [blame] | 321 | RibManager::expireEntry(const shared_ptr<const Interest>& request, ControlParameters& params) |
| 322 | { |
| 323 | FaceEntry face; |
| 324 | face.faceId = params.getFaceId(); |
| 325 | face.origin = params.getOrigin(); |
| 326 | face.cost = params.getCost(); |
| 327 | face.flags = params.getFlags(); |
| 328 | |
| 329 | NFD_LOG_DEBUG(face << " for " << params.getName() << " has expired"); |
| 330 | unregisterEntry(request, params); |
| 331 | } |
| 332 | |
| 333 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 334 | RibManager::unregisterEntry(const shared_ptr<const Interest>& request, |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 335 | ControlParameters& params) |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 336 | { |
Alexander Afanasyev | ce7520e | 2014-04-28 09:40:06 -0700 | [diff] [blame] | 337 | ndn::nfd::RibUnregisterCommand command; |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 338 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 339 | //passing all parameters gives error in validation. |
| 340 | //so passing only the required arguments. |
| 341 | ControlParameters parameters; |
| 342 | parameters.setName(params.getName()); |
Alexander Afanasyev | b609f00 | 2014-07-18 16:56:34 -0700 | [diff] [blame] | 343 | if (params.hasFaceId()) |
| 344 | parameters.setFaceId(params.getFaceId()); |
| 345 | if (params.hasOrigin()) |
| 346 | parameters.setOrigin(params.getOrigin()); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 347 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 348 | if (!validateParameters(command, parameters)) |
| 349 | { |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 350 | NFD_LOG_DEBUG("unregister result: FAIL reason: malformed"); |
| 351 | if (static_cast<bool>(request)) |
| 352 | sendResponse(request->getName(), 400, "Malformed command"); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 353 | return; |
| 354 | } |
| 355 | |
Alexander Afanasyev | 483efd1 | 2014-08-14 10:51:18 -0700 | [diff] [blame] | 356 | bool isSelfRegistration = (!parameters.hasFaceId() || parameters.getFaceId() == 0); |
| 357 | if (isSelfRegistration) |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame] | 358 | { |
| 359 | parameters.setFaceId(request->getIncomingFaceId()); |
| 360 | } |
| 361 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 362 | FaceEntry faceEntry; |
| 363 | faceEntry.faceId = parameters.getFaceId(); |
| 364 | faceEntry.origin = parameters.getOrigin(); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 365 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 366 | NFD_LOG_TRACE("unregister prefix: " << faceEntry); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 367 | |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 368 | m_managedRib.erase(parameters.getName(), faceEntry); |
| 369 | |
| 370 | sendUpdatesToFib(request, parameters); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | void |
| 374 | RibManager::onCommandValidationFailed(const shared_ptr<const Interest>& request, |
| 375 | const std::string& failureInfo) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 376 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 377 | NFD_LOG_DEBUG("RibRequestValidationFailed: " << failureInfo); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 378 | if (static_cast<bool>(request)) |
| 379 | sendResponse(request->getName(), 403, failureInfo); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 382 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 383 | bool |
| 384 | RibManager::extractParameters(const Name::Component& parameterComponent, |
| 385 | ControlParameters& extractedParameters) |
| 386 | { |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 387 | try |
| 388 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 389 | Block rawParameters = parameterComponent.blockFromValue(); |
| 390 | extractedParameters.wireDecode(rawParameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 391 | } |
Junxiao Shi | 67f11ac | 2014-10-19 09:29:13 -0700 | [diff] [blame] | 392 | catch (const tlv::Error&) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 393 | { |
| 394 | return false; |
| 395 | } |
| 396 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 397 | NFD_LOG_DEBUG("Parameters parsed OK"); |
| 398 | return true; |
| 399 | } |
| 400 | |
| 401 | bool |
| 402 | RibManager::validateParameters(const ControlCommand& command, |
| 403 | ControlParameters& parameters) |
| 404 | { |
| 405 | try |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 406 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 407 | command.validateRequest(parameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 408 | } |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 409 | catch (const ControlCommand::ArgumentError&) |
| 410 | { |
| 411 | return false; |
| 412 | } |
| 413 | |
| 414 | command.applyDefaultsToRequest(parameters); |
| 415 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 416 | return true; |
| 417 | } |
| 418 | |
| 419 | void |
| 420 | RibManager::onCommandError(uint32_t code, const std::string& error, |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 421 | const shared_ptr<const Interest>& request, |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 422 | const FaceEntry& faceEntry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 423 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 424 | NFD_LOG_ERROR("NFD returned an error: " << error << " (code: " << code << ")"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 425 | |
| 426 | ControlResponse response; |
| 427 | |
| 428 | if (code == 404) |
| 429 | { |
| 430 | response.setCode(code); |
| 431 | response.setText(error); |
| 432 | } |
| 433 | else |
| 434 | { |
| 435 | response.setCode(533); |
| 436 | std::ostringstream os; |
| 437 | os << "Failure to update NFD " << "(NFD Error: " << code << " " << error << ")"; |
| 438 | response.setText(os.str()); |
| 439 | } |
| 440 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 441 | if (static_cast<bool>(request)) |
| 442 | sendResponse(request->getName(), response); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 443 | } |
| 444 | |
| 445 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 446 | RibManager::onRegSuccess(const shared_ptr<const Interest>& request, |
| 447 | const ControlParameters& parameters, |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 448 | const FaceEntry& faceEntry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 449 | { |
| 450 | ControlResponse response; |
| 451 | |
| 452 | response.setCode(200); |
| 453 | response.setText("Success"); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 454 | response.setBody(parameters.wireEncode()); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 455 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 456 | NFD_LOG_TRACE("onRegSuccess: registered " << faceEntry); |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 457 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 458 | if (static_cast<bool>(request)) |
| 459 | sendResponse(request->getName(), response); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 460 | } |
| 461 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 462 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 463 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 464 | RibManager::onUnRegSuccess(const shared_ptr<const Interest>& request, |
| 465 | const ControlParameters& parameters, |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 466 | const FaceEntry& faceEntry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 467 | { |
| 468 | ControlResponse response; |
| 469 | |
| 470 | response.setCode(200); |
| 471 | response.setText("Success"); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 472 | response.setBody(parameters.wireEncode()); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 473 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 474 | NFD_LOG_TRACE("onUnRegSuccess: unregistered " << faceEntry); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 475 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 476 | if (static_cast<bool>(request)) |
| 477 | sendResponse(request->getName(), response); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | void |
| 481 | RibManager::sendSuccessResponse(const shared_ptr<const Interest>& request, |
| 482 | const ControlParameters& parameters) |
| 483 | { |
| 484 | if (!static_cast<bool>(request)) |
| 485 | { |
| 486 | return; |
| 487 | } |
| 488 | |
| 489 | ControlResponse response; |
| 490 | |
| 491 | response.setCode(200); |
| 492 | response.setText("Success"); |
| 493 | response.setBody(parameters.wireEncode()); |
| 494 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 495 | if (static_cast<bool>(request)) |
| 496 | sendResponse(request->getName(), response); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | void |
| 500 | RibManager::sendErrorResponse(uint32_t code, const std::string& error, |
| 501 | const shared_ptr<const Interest>& request) |
| 502 | { |
| 503 | NFD_LOG_ERROR("NFD returned an error: " << error << " (code: " << code << ")"); |
| 504 | |
| 505 | if (!static_cast<bool>(request)) |
| 506 | { |
| 507 | return; |
| 508 | } |
| 509 | |
| 510 | ControlResponse response; |
| 511 | |
| 512 | if (code == 404) |
| 513 | { |
| 514 | response.setCode(code); |
| 515 | response.setText(error); |
| 516 | } |
| 517 | else |
| 518 | { |
| 519 | response.setCode(533); |
| 520 | std::ostringstream os; |
| 521 | os << "Failure to update NFD " << "(NFD Error: " << code << " " << error << ")"; |
| 522 | response.setText(os.str()); |
| 523 | } |
| 524 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 525 | if (static_cast<bool>(request)) |
| 526 | sendResponse(request->getName(), response); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 527 | } |
| 528 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 529 | void |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 530 | RibManager::onNrdCommandPrefixAddNextHopSuccess(const Name& prefix) |
| 531 | { |
| 532 | NFD_LOG_DEBUG("Successfully registered " + prefix.toUri() + " with NFD"); |
| 533 | } |
| 534 | |
| 535 | void |
| 536 | RibManager::onNrdCommandPrefixAddNextHopError(const Name& name, const std::string& msg) |
| 537 | { |
| 538 | throw Error("Error in setting interest filter (" + name.toUri() + "): " + msg); |
| 539 | } |
| 540 | |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 541 | bool |
| 542 | RibManager::isTransactionComplete(const TransactionId transactionId) |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 543 | { |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 544 | FibTransactionTable::iterator it = m_pendingFibTransactions.find(transactionId); |
| 545 | |
| 546 | if (it != m_pendingFibTransactions.end()) |
| 547 | { |
| 548 | int& updatesLeft = it->second; |
| 549 | |
| 550 | updatesLeft--; |
| 551 | |
| 552 | // All of the updates have been applied successfully |
| 553 | if (updatesLeft == 0) |
| 554 | { |
| 555 | m_pendingFibTransactions.erase(it); |
| 556 | return true; |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | return false; |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | void |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 564 | RibManager::invalidateTransaction(const TransactionId transactionId) |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 565 | { |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 566 | FibTransactionTable::iterator it = m_pendingFibTransactions.find(transactionId); |
| 567 | |
| 568 | if (it != m_pendingFibTransactions.end()) |
| 569 | { |
| 570 | m_pendingFibTransactions.erase(it); |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | void |
| 575 | RibManager::onAddNextHopSuccess(const shared_ptr<const Interest>& request, |
| 576 | const ControlParameters& parameters, |
| 577 | const TransactionId transactionId, |
| 578 | const bool shouldSendResponse) |
| 579 | { |
| 580 | if (isTransactionComplete(transactionId) && shouldSendResponse) |
| 581 | { |
| 582 | sendSuccessResponse(request, parameters); |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | void |
| 587 | RibManager::onAddNextHopError(uint32_t code, const std::string& error, |
| 588 | const shared_ptr<const Interest>& request, |
| 589 | const TransactionId transactionId, const bool shouldSendResponse) |
| 590 | { |
| 591 | invalidateTransaction(transactionId); |
| 592 | |
| 593 | if (shouldSendResponse) |
| 594 | { |
| 595 | sendErrorResponse(code, error, request); |
| 596 | } |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 597 | |
| 598 | // Since the FIB rejected the update, clean up the invalid face |
| 599 | scheduleActiveFaceFetch(time::seconds(1)); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | void |
| 603 | RibManager::onRemoveNextHopSuccess(const shared_ptr<const Interest>& request, |
| 604 | const ControlParameters& parameters, |
| 605 | const TransactionId transactionId, |
| 606 | const bool shouldSendResponse) |
| 607 | { |
| 608 | if (isTransactionComplete(transactionId) && shouldSendResponse) |
| 609 | { |
| 610 | sendSuccessResponse(request, parameters); |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | void |
| 615 | RibManager::onRemoveNextHopError(uint32_t code, const std::string& error, |
| 616 | const shared_ptr<const Interest>& request, |
| 617 | const TransactionId transactionId, const bool shouldSendResponse) |
| 618 | { |
| 619 | invalidateTransaction(transactionId); |
| 620 | |
| 621 | if (shouldSendResponse) |
| 622 | { |
| 623 | sendErrorResponse(code, error, request); |
| 624 | } |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 628 | RibManager::onControlHeaderSuccess() |
| 629 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 630 | NFD_LOG_DEBUG("Local control header enabled"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | void |
| 634 | RibManager::onControlHeaderError(uint32_t code, const std::string& reason) |
| 635 | { |
Alexander Afanasyev | b305165 | 2014-04-30 17:50:26 -0700 | [diff] [blame] | 636 | std::ostringstream os; |
| 637 | os << "Couldn't enable local control header " |
| 638 | << "(code: " << code << ", info: " << reason << ")"; |
| 639 | throw Error(os.str()); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 640 | } |
| 641 | |
| 642 | void |
| 643 | RibManager::enableLocalControlHeader() |
| 644 | { |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 645 | m_nfdController.start<ndn::nfd::FaceEnableLocalControlCommand>( |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 646 | ControlParameters() |
| 647 | .setLocalControlFeature(ndn::nfd::LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID), |
| 648 | bind(&RibManager::onControlHeaderSuccess, this), |
| 649 | bind(&RibManager::onControlHeaderError, this, _1, _2)); |
| 650 | } |
| 651 | |
| 652 | void |
| 653 | RibManager::onNotification(const FaceEventNotification& notification) |
| 654 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 655 | NFD_LOG_TRACE("onNotification: " << notification); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 656 | |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 657 | if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 658 | { |
| 659 | NFD_LOG_DEBUG("Received notification for destroyed faceId: " << notification.getFaceId()); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 660 | |
Alexander Afanasyev | 63108c4 | 2014-07-07 19:10:47 -0700 | [diff] [blame] | 661 | scheduler::schedule(time::seconds(0), |
| 662 | bind(&RibManager::processErasureAfterNotification, this, |
| 663 | notification.getFaceId())); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 664 | } |
| 665 | } |
| 666 | |
| 667 | void |
Alexander Afanasyev | 63108c4 | 2014-07-07 19:10:47 -0700 | [diff] [blame] | 668 | RibManager::processErasureAfterNotification(uint64_t faceId) |
| 669 | { |
| 670 | m_managedRib.erase(faceId); |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 671 | m_registeredFaces.erase(faceId); |
Alexander Afanasyev | 63108c4 | 2014-07-07 19:10:47 -0700 | [diff] [blame] | 672 | |
| 673 | sendUpdatesToFibAfterFaceDestroyEvent(); |
| 674 | } |
| 675 | |
| 676 | void |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 677 | RibManager::sendUpdatesToFib(const shared_ptr<const Interest>& request, |
| 678 | const ControlParameters& parameters) |
| 679 | { |
| 680 | const Rib::FibUpdateList& updates = m_managedRib.getFibUpdates(); |
| 681 | |
| 682 | // If no updates were generated, consider the operation a success |
| 683 | if (updates.empty()) |
| 684 | { |
| 685 | sendSuccessResponse(request, parameters); |
| 686 | return; |
| 687 | } |
| 688 | |
| 689 | bool shouldWaitToRespond = false; |
| 690 | |
| 691 | // An application request should wait for all FIB updates to be applied |
| 692 | // successfully before sending a response |
| 693 | if (parameters.getOrigin() == ndn::nfd::ROUTE_ORIGIN_APP) |
| 694 | { |
| 695 | shouldWaitToRespond = true; |
| 696 | } |
| 697 | else // Respond immediately |
| 698 | { |
| 699 | sendSuccessResponse(request, parameters); |
| 700 | } |
| 701 | |
Vince Lehman | bc05b76 | 2014-08-15 15:37:02 -0500 | [diff] [blame] | 702 | std::string updateString = (updates.size() == 1) ? " update" : " updates"; |
| 703 | NFD_LOG_DEBUG("Applying " << updates.size() << updateString << " to FIB"); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 704 | |
| 705 | // Assign an ID to this FIB transaction |
| 706 | TransactionId currentTransactionId = ++m_lastTransactionId; |
| 707 | |
| 708 | // Add this transaction to the transaction table |
| 709 | m_pendingFibTransactions[currentTransactionId] = updates.size(); |
| 710 | |
| 711 | for (Rib::FibUpdateList::const_iterator it = updates.begin(); it != updates.end(); ++it) |
| 712 | { |
| 713 | shared_ptr<const FibUpdate> update(*it); |
Vince Lehman | bc05b76 | 2014-08-15 15:37:02 -0500 | [diff] [blame] | 714 | NFD_LOG_DEBUG("Sending FIB update: " << *update); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 715 | |
| 716 | if (update->action == FibUpdate::ADD_NEXTHOP) |
| 717 | { |
| 718 | FaceEntry faceEntry; |
| 719 | faceEntry.faceId = update->faceId; |
| 720 | faceEntry.cost = update->cost; |
| 721 | |
| 722 | m_nfdController.start<ndn::nfd::FibAddNextHopCommand>( |
| 723 | ControlParameters() |
| 724 | .setName(update->name) |
| 725 | .setFaceId(faceEntry.faceId) |
| 726 | .setCost(faceEntry.cost), |
| 727 | bind(&RibManager::onAddNextHopSuccess, this, request, |
| 728 | parameters, |
| 729 | currentTransactionId, |
| 730 | shouldWaitToRespond), |
| 731 | bind(&RibManager::onAddNextHopError, this, _1, _2, request, currentTransactionId, |
| 732 | shouldWaitToRespond)); |
| 733 | } |
| 734 | else if (update->action == FibUpdate::REMOVE_NEXTHOP) |
| 735 | { |
| 736 | FaceEntry faceEntry; |
| 737 | faceEntry.faceId = update->faceId; |
| 738 | |
| 739 | m_nfdController.start<ndn::nfd::FibRemoveNextHopCommand>( |
| 740 | ControlParameters() |
| 741 | .setName(update->name) |
| 742 | .setFaceId(faceEntry.faceId), |
| 743 | bind(&RibManager::onRemoveNextHopSuccess, this, request, |
| 744 | parameters, |
| 745 | currentTransactionId, |
| 746 | shouldWaitToRespond), |
| 747 | bind(&RibManager::onRemoveNextHopError, this, _1, _2, request, currentTransactionId, |
| 748 | shouldWaitToRespond)); |
| 749 | } |
| 750 | } |
| 751 | |
| 752 | m_managedRib.clearFibUpdates(); |
| 753 | } |
| 754 | |
| 755 | void |
| 756 | RibManager::sendUpdatesToFibAfterFaceDestroyEvent() |
| 757 | { |
| 758 | ControlParameters parameters; |
| 759 | parameters.setOrigin(ndn::nfd::ROUTE_ORIGIN_STATIC); |
| 760 | |
| 761 | sendUpdatesToFib(shared_ptr<const Interest>(), parameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 762 | } |
| 763 | |
Vince Lehman | cd16c83 | 2014-07-23 15:14:55 -0700 | [diff] [blame] | 764 | void |
| 765 | RibManager::listEntries(const Interest& request) |
| 766 | { |
| 767 | const Name& command = request.getName(); |
| 768 | const size_t commandNComps = command.size(); |
| 769 | |
| 770 | if (commandNComps < LIST_COMMAND_NCOMPS || |
| 771 | !LIST_COMMAND_PREFIX.isPrefixOf(command)) |
| 772 | { |
| 773 | NFD_LOG_DEBUG("command result: malformed"); |
| 774 | sendResponse(command, 400, "Malformed command"); |
| 775 | return; |
| 776 | } |
| 777 | |
| 778 | m_ribStatusPublisher.publish(); |
| 779 | } |
| 780 | |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 781 | void |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 782 | RibManager::scheduleActiveFaceFetch(const time::seconds& timeToWait) |
| 783 | { |
| 784 | scheduler::cancel(m_activeFaceFetchEvent); |
| 785 | |
| 786 | m_activeFaceFetchEvent = scheduler::schedule(timeToWait, |
| 787 | bind(&RibManager::fetchActiveFaces, this)); |
| 788 | } |
| 789 | |
| 790 | void |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 791 | RibManager::fetchActiveFaces() |
| 792 | { |
| 793 | NFD_LOG_DEBUG("Fetching active faces"); |
| 794 | |
| 795 | Interest interest(FACES_LIST_DATASET_PREFIX); |
| 796 | interest.setChildSelector(1); |
| 797 | interest.setMustBeFresh(true); |
| 798 | |
| 799 | shared_ptr<ndn::OBufferStream> buffer = make_shared<ndn::OBufferStream>(); |
| 800 | |
| 801 | m_face.expressInterest(interest, |
| 802 | bind(&RibManager::fetchSegments, this, _2, buffer), |
| 803 | bind(&RibManager::onFetchFaceStatusTimeout, this)); |
| 804 | } |
| 805 | |
| 806 | void |
| 807 | RibManager::fetchSegments(const Data& data, shared_ptr<ndn::OBufferStream> buffer) |
| 808 | { |
| 809 | buffer->write(reinterpret_cast<const char*>(data.getContent().value()), |
| 810 | data.getContent().value_size()); |
| 811 | |
| 812 | uint64_t currentSegment = data.getName().get(-1).toSegment(); |
| 813 | |
| 814 | const name::Component& finalBlockId = data.getMetaInfo().getFinalBlockId(); |
| 815 | if (finalBlockId.empty() || finalBlockId.toSegment() > currentSegment) |
| 816 | { |
| 817 | m_face.expressInterest(data.getName().getPrefix(-1).appendSegment(currentSegment+1), |
| 818 | bind(&RibManager::fetchSegments, this, _2, buffer), |
| 819 | bind(&RibManager::onFetchFaceStatusTimeout, this)); |
| 820 | } |
| 821 | else |
| 822 | { |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 823 | removeInvalidFaces(buffer); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 824 | } |
| 825 | } |
| 826 | |
| 827 | void |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 828 | RibManager::removeInvalidFaces(shared_ptr<ndn::OBufferStream> buffer) |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 829 | { |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 830 | NFD_LOG_DEBUG("Checking for invalid face registrations"); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 831 | |
| 832 | ndn::ConstBufferPtr buf = buffer->buf(); |
| 833 | |
| 834 | Block block; |
| 835 | size_t offset = 0; |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 836 | FaceIdSet activeFaces; |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 837 | |
| 838 | while (offset < buf->size()) |
| 839 | { |
| 840 | if (!Block::fromBuffer(buf, offset, block)) |
| 841 | { |
| 842 | std::cerr << "ERROR: cannot decode FaceStatus TLV" << std::endl; |
| 843 | break; |
| 844 | } |
| 845 | |
| 846 | offset += block.size(); |
| 847 | |
| 848 | ndn::nfd::FaceStatus status(block); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 849 | activeFaces.insert(status.getFaceId()); |
| 850 | } |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 851 | |
| 852 | // Look for face IDs that were registered but not active to find missed |
| 853 | // face destroyed events |
| 854 | for (FaceIdSet::iterator it = m_registeredFaces.begin(); it != m_registeredFaces.end(); ++it) |
| 855 | { |
| 856 | if (activeFaces.find(*it) == activeFaces.end()) |
| 857 | { |
| 858 | NFD_LOG_DEBUG("Removing invalid face ID: " << *it); |
| 859 | scheduler::schedule(time::seconds(0), |
| 860 | bind(&RibManager::processErasureAfterNotification, this, *it)); |
| 861 | } |
| 862 | } |
| 863 | |
| 864 | // Reschedule the check for future clean up |
| 865 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 866 | } |
| 867 | |
| 868 | void |
| 869 | RibManager::onFetchFaceStatusTimeout() |
| 870 | { |
| 871 | std::cerr << "Face Status Dataset request timed out" << std::endl; |
Vince Lehman | 26b215c | 2014-08-17 15:00:41 -0500 | [diff] [blame] | 872 | scheduleActiveFaceFetch(ACTIVE_FACE_FETCH_INTERVAL); |
Vince Lehman | cd613c5 | 2014-07-30 14:34:49 -0500 | [diff] [blame] | 873 | } |
| 874 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 875 | } // namespace rib |
| 876 | } // namespace nfd |