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