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" |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 30 | |
| 31 | namespace nfd { |
| 32 | namespace rib { |
| 33 | |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 34 | NFD_LOG_INIT("RibManager"); |
| 35 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 36 | const Name RibManager::COMMAND_PREFIX = "/localhost/nfd/rib"; |
| 37 | const Name RibManager::REMOTE_COMMAND_PREFIX = "/localhop/nfd/rib"; |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 38 | |
| 39 | const size_t RibManager::COMMAND_UNSIGNED_NCOMPS = |
| 40 | RibManager::COMMAND_PREFIX.size() + |
| 41 | 1 + // verb |
| 42 | 1; // verb options |
| 43 | |
| 44 | const size_t RibManager::COMMAND_SIGNED_NCOMPS = |
| 45 | RibManager::COMMAND_UNSIGNED_NCOMPS + |
| 46 | 4; // (timestamp, nonce, signed info tlv, signature tlv) |
| 47 | |
| 48 | const RibManager::VerbAndProcessor RibManager::COMMAND_VERBS[] = |
| 49 | { |
| 50 | VerbAndProcessor( |
| 51 | Name::Component("register"), |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 52 | &RibManager::registerEntry |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 53 | ), |
| 54 | |
| 55 | VerbAndProcessor( |
| 56 | Name::Component("unregister"), |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 57 | &RibManager::unregisterEntry |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 58 | ), |
| 59 | }; |
| 60 | |
Vince Lehman | 72446ec | 2014-07-09 10:50:02 -0500 | [diff] [blame] | 61 | RibManager::RibManager(ndn::Face& face) |
| 62 | : m_face(face) |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 63 | , m_nfdController(m_face) |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 64 | , m_localhostValidator(m_face) |
| 65 | , m_localhopValidator(m_face) |
Yingdi Yu | f4db0b5 | 2014-04-17 13:17:39 -0700 | [diff] [blame] | 66 | , m_faceMonitor(m_face) |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 67 | , m_isLocalhopEnabled(false) |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 68 | , m_lastTransactionId(0) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 69 | , m_verbDispatch(COMMAND_VERBS, |
| 70 | COMMAND_VERBS + (sizeof(COMMAND_VERBS) / sizeof(VerbAndProcessor))) |
| 71 | { |
| 72 | } |
| 73 | |
| 74 | void |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 75 | RibManager::startListening(const Name& commandPrefix, const ndn::OnInterest& onRequest) |
| 76 | { |
| 77 | NFD_LOG_INFO("Listening on: " << commandPrefix); |
| 78 | |
| 79 | m_nfdController.start<ndn::nfd::FibAddNextHopCommand>( |
| 80 | ControlParameters() |
| 81 | .setName(commandPrefix) |
| 82 | .setFaceId(0), |
| 83 | bind(&RibManager::onNrdCommandPrefixAddNextHopSuccess, this, cref(commandPrefix)), |
| 84 | bind(&RibManager::onNrdCommandPrefixAddNextHopError, this, cref(commandPrefix), _2)); |
| 85 | |
| 86 | m_face.setInterestFilter(commandPrefix, onRequest); |
| 87 | } |
| 88 | |
| 89 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 90 | RibManager::registerWithNfd() |
| 91 | { |
| 92 | //check whether the components of localhop and localhost prefixes are same |
| 93 | BOOST_ASSERT(COMMAND_PREFIX.size() == REMOTE_COMMAND_PREFIX.size()); |
| 94 | |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 95 | this->startListening(COMMAND_PREFIX, bind(&RibManager::onLocalhostRequest, this, _2)); |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 96 | |
Junxiao Shi | a329574 | 2014-05-16 22:40:10 -0700 | [diff] [blame] | 97 | if (m_isLocalhopEnabled) { |
| 98 | this->startListening(REMOTE_COMMAND_PREFIX, |
| 99 | bind(&RibManager::onLocalhopRequest, this, _2)); |
| 100 | } |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 101 | |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 102 | NFD_LOG_INFO("Start monitoring face create/destroy events"); |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 103 | m_faceMonitor.addSubscriber(bind(&RibManager::onNotification, this, _1)); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 104 | m_faceMonitor.startNotifications(); |
| 105 | } |
| 106 | |
| 107 | void |
| 108 | RibManager::setConfigFile(ConfigFile& configFile) |
| 109 | { |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 110 | configFile.addSectionHandler("rib", |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 111 | bind(&RibManager::onConfig, this, _1, _2, _3)); |
| 112 | } |
| 113 | |
| 114 | void |
| 115 | RibManager::onConfig(const ConfigSection& configSection, |
Yingdi Yu | f4db0b5 | 2014-04-17 13:17:39 -0700 | [diff] [blame] | 116 | bool isDryRun, |
| 117 | const std::string& filename) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 118 | { |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 119 | for (ConfigSection::const_iterator i = configSection.begin(); |
| 120 | i != configSection.end(); ++i) |
| 121 | { |
| 122 | if (i->first == "localhost_security") |
| 123 | m_localhostValidator.load(i->second, filename); |
| 124 | else if (i->first == "localhop_security") |
| 125 | { |
| 126 | m_localhopValidator.load(i->second, filename); |
| 127 | m_isLocalhopEnabled = true; |
| 128 | } |
| 129 | else |
| 130 | throw Error("Unrecognized rib property: " + i->first); |
| 131 | } |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 135 | RibManager::sendResponse(const Name& name, |
| 136 | const ControlResponse& response) |
| 137 | { |
| 138 | const Block& encodedControl = response.wireEncode(); |
| 139 | |
| 140 | Data responseData(name); |
| 141 | responseData.setContent(encodedControl); |
| 142 | |
| 143 | m_keyChain.sign(responseData); |
Yingdi Yu | f4db0b5 | 2014-04-17 13:17:39 -0700 | [diff] [blame] | 144 | m_face.put(responseData); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | void |
| 148 | RibManager::sendResponse(const Name& name, |
| 149 | uint32_t code, |
| 150 | const std::string& text) |
| 151 | { |
| 152 | ControlResponse response(code, text); |
| 153 | sendResponse(name, response); |
| 154 | } |
| 155 | |
| 156 | void |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 157 | RibManager::onLocalhostRequest(const Interest& request) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 158 | { |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 159 | m_localhostValidator.validate(request, |
| 160 | bind(&RibManager::onCommandValidated, this, _1), |
| 161 | bind(&RibManager::onCommandValidationFailed, this, _1, _2)); |
| 162 | } |
| 163 | |
| 164 | void |
| 165 | RibManager::onLocalhopRequest(const Interest& request) |
| 166 | { |
| 167 | m_localhopValidator.validate(request, |
| 168 | bind(&RibManager::onCommandValidated, this, _1), |
| 169 | bind(&RibManager::onCommandValidationFailed, this, _1, _2)); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 173 | RibManager::onCommandValidated(const shared_ptr<const Interest>& request) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 174 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 175 | // REMOTE_COMMAND_PREFIX number of componenets are same as |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 176 | // NRD_COMMAND_PREFIX's so no extra checks are required. |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 177 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 178 | const Name& command = request->getName(); |
| 179 | const Name::Component& verb = command[COMMAND_PREFIX.size()]; |
| 180 | const Name::Component& parameterComponent = command[COMMAND_PREFIX.size() + 1]; |
| 181 | |
| 182 | VerbDispatchTable::const_iterator verbProcessor = m_verbDispatch.find(verb); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 183 | if (verbProcessor != m_verbDispatch.end()) |
| 184 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 185 | ControlParameters parameters; |
| 186 | if (!extractParameters(parameterComponent, parameters)) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 187 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 188 | NFD_LOG_DEBUG("command result: malformed verb: " << verb); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 189 | if (static_cast<bool>(request)) |
| 190 | sendResponse(command, 400, "Malformed command"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 191 | return; |
| 192 | } |
| 193 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 194 | NFD_LOG_DEBUG("command result: processing verb: " << verb); |
| 195 | (verbProcessor->second)(this, request, parameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 196 | } |
| 197 | else |
| 198 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 199 | NFD_LOG_DEBUG("Unsupported command: " << verb); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 200 | if (static_cast<bool>(request)) |
| 201 | sendResponse(request->getName(), 501, "Unsupported command"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 202 | } |
| 203 | } |
| 204 | |
| 205 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 206 | RibManager::registerEntry(const shared_ptr<const Interest>& request, |
| 207 | ControlParameters& parameters) |
| 208 | { |
| 209 | ndn::nfd::RibRegisterCommand command; |
| 210 | |
| 211 | if (!validateParameters(command, parameters)) |
| 212 | { |
| 213 | NFD_LOG_DEBUG("register result: FAIL reason: malformed"); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 214 | if (static_cast<bool>(request)) |
| 215 | sendResponse(request->getName(), 400, "Malformed command"); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 216 | return; |
| 217 | } |
| 218 | |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame] | 219 | if (!parameters.hasFaceId() || parameters.getFaceId() == 0) |
| 220 | { |
| 221 | parameters.setFaceId(request->getIncomingFaceId()); |
| 222 | } |
| 223 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 224 | FaceEntry faceEntry; |
| 225 | faceEntry.faceId = parameters.getFaceId(); |
| 226 | faceEntry.origin = parameters.getOrigin(); |
| 227 | faceEntry.cost = parameters.getCost(); |
| 228 | faceEntry.flags = parameters.getFlags(); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 229 | |
| 230 | if (parameters.getExpirationPeriod() != time::milliseconds::max()) |
| 231 | { |
| 232 | faceEntry.expires = time::steady_clock::now() + parameters.getExpirationPeriod(); |
| 233 | |
| 234 | // Schedule a new event, the old one will be cancelled during rib insertion. |
| 235 | EventId eventId; |
| 236 | NFD_LOG_TRACE("scheduling unregistration at: " << faceEntry.expires); |
| 237 | eventId = scheduler::schedule(parameters.getExpirationPeriod(), |
| 238 | bind(&RibManager::unregisterEntry, |
| 239 | this, shared_ptr<Interest>(), parameters)); |
| 240 | |
| 241 | //set the NewEventId of this entry |
| 242 | faceEntry.setExpirationEvent(eventId); |
| 243 | } |
| 244 | else |
| 245 | { |
| 246 | faceEntry.expires = time::steady_clock::TimePoint::max(); |
| 247 | } |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 248 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 249 | NFD_LOG_TRACE("register prefix: " << faceEntry); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 250 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 251 | m_managedRib.insert(parameters.getName(), faceEntry); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 252 | |
| 253 | sendUpdatesToFib(request, parameters); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | void |
| 257 | RibManager::unregisterEntry(const shared_ptr<const Interest>& request, |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 258 | ControlParameters& params) |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 259 | { |
Alexander Afanasyev | ce7520e | 2014-04-28 09:40:06 -0700 | [diff] [blame] | 260 | ndn::nfd::RibUnregisterCommand command; |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 261 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 262 | //passing all parameters gives error in validation. |
| 263 | //so passing only the required arguments. |
| 264 | ControlParameters parameters; |
| 265 | parameters.setName(params.getName()); |
Alexander Afanasyev | b609f00 | 2014-07-18 16:56:34 -0700 | [diff] [blame^] | 266 | if (params.hasFaceId()) |
| 267 | parameters.setFaceId(params.getFaceId()); |
| 268 | if (params.hasOrigin()) |
| 269 | parameters.setOrigin(params.getOrigin()); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 270 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 271 | if (!validateParameters(command, parameters)) |
| 272 | { |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 273 | NFD_LOG_DEBUG("unregister result: FAIL reason: malformed"); |
| 274 | if (static_cast<bool>(request)) |
| 275 | sendResponse(request->getName(), 400, "Malformed command"); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 276 | return; |
| 277 | } |
| 278 | |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame] | 279 | if (!parameters.hasFaceId() || parameters.getFaceId() == 0) |
| 280 | { |
| 281 | parameters.setFaceId(request->getIncomingFaceId()); |
| 282 | } |
| 283 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 284 | FaceEntry faceEntry; |
| 285 | faceEntry.faceId = parameters.getFaceId(); |
| 286 | faceEntry.origin = parameters.getOrigin(); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 287 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 288 | NFD_LOG_TRACE("unregister prefix: " << faceEntry); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 289 | |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 290 | m_managedRib.erase(parameters.getName(), faceEntry); |
| 291 | |
| 292 | sendUpdatesToFib(request, parameters); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | void |
| 296 | RibManager::onCommandValidationFailed(const shared_ptr<const Interest>& request, |
| 297 | const std::string& failureInfo) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 298 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 299 | NFD_LOG_DEBUG("RibRequestValidationFailed: " << failureInfo); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 300 | if (static_cast<bool>(request)) |
| 301 | sendResponse(request->getName(), 403, failureInfo); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 302 | } |
| 303 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 304 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 305 | bool |
| 306 | RibManager::extractParameters(const Name::Component& parameterComponent, |
| 307 | ControlParameters& extractedParameters) |
| 308 | { |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 309 | try |
| 310 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 311 | Block rawParameters = parameterComponent.blockFromValue(); |
| 312 | extractedParameters.wireDecode(rawParameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 313 | } |
| 314 | catch (const ndn::Tlv::Error& e) |
| 315 | { |
| 316 | return false; |
| 317 | } |
| 318 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 319 | NFD_LOG_DEBUG("Parameters parsed OK"); |
| 320 | return true; |
| 321 | } |
| 322 | |
| 323 | bool |
| 324 | RibManager::validateParameters(const ControlCommand& command, |
| 325 | ControlParameters& parameters) |
| 326 | { |
| 327 | try |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 328 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 329 | command.validateRequest(parameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 330 | } |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 331 | catch (const ControlCommand::ArgumentError&) |
| 332 | { |
| 333 | return false; |
| 334 | } |
| 335 | |
| 336 | command.applyDefaultsToRequest(parameters); |
| 337 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 338 | return true; |
| 339 | } |
| 340 | |
| 341 | void |
| 342 | RibManager::onCommandError(uint32_t code, const std::string& error, |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 343 | const shared_ptr<const Interest>& request, |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 344 | const FaceEntry& faceEntry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 345 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 346 | NFD_LOG_ERROR("NFD returned an error: " << error << " (code: " << code << ")"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 347 | |
| 348 | ControlResponse response; |
| 349 | |
| 350 | if (code == 404) |
| 351 | { |
| 352 | response.setCode(code); |
| 353 | response.setText(error); |
| 354 | } |
| 355 | else |
| 356 | { |
| 357 | response.setCode(533); |
| 358 | std::ostringstream os; |
| 359 | os << "Failure to update NFD " << "(NFD Error: " << code << " " << error << ")"; |
| 360 | response.setText(os.str()); |
| 361 | } |
| 362 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 363 | if (static_cast<bool>(request)) |
| 364 | sendResponse(request->getName(), response); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 368 | RibManager::onRegSuccess(const shared_ptr<const Interest>& request, |
| 369 | const ControlParameters& parameters, |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 370 | const FaceEntry& faceEntry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 371 | { |
| 372 | ControlResponse response; |
| 373 | |
| 374 | response.setCode(200); |
| 375 | response.setText("Success"); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 376 | response.setBody(parameters.wireEncode()); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 377 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 378 | NFD_LOG_TRACE("onRegSuccess: registered " << faceEntry); |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 379 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 380 | if (static_cast<bool>(request)) |
| 381 | sendResponse(request->getName(), response); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 382 | } |
| 383 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 384 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 385 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 386 | RibManager::onUnRegSuccess(const shared_ptr<const Interest>& request, |
| 387 | const ControlParameters& parameters, |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 388 | const FaceEntry& faceEntry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 389 | { |
| 390 | ControlResponse response; |
| 391 | |
| 392 | response.setCode(200); |
| 393 | response.setText("Success"); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 394 | response.setBody(parameters.wireEncode()); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 395 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 396 | NFD_LOG_TRACE("onUnRegSuccess: unregistered " << faceEntry); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 397 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 398 | if (static_cast<bool>(request)) |
| 399 | sendResponse(request->getName(), response); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | void |
| 403 | RibManager::sendSuccessResponse(const shared_ptr<const Interest>& request, |
| 404 | const ControlParameters& parameters) |
| 405 | { |
| 406 | if (!static_cast<bool>(request)) |
| 407 | { |
| 408 | return; |
| 409 | } |
| 410 | |
| 411 | ControlResponse response; |
| 412 | |
| 413 | response.setCode(200); |
| 414 | response.setText("Success"); |
| 415 | response.setBody(parameters.wireEncode()); |
| 416 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 417 | if (static_cast<bool>(request)) |
| 418 | sendResponse(request->getName(), response); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | void |
| 422 | RibManager::sendErrorResponse(uint32_t code, const std::string& error, |
| 423 | const shared_ptr<const Interest>& request) |
| 424 | { |
| 425 | NFD_LOG_ERROR("NFD returned an error: " << error << " (code: " << code << ")"); |
| 426 | |
| 427 | if (!static_cast<bool>(request)) |
| 428 | { |
| 429 | return; |
| 430 | } |
| 431 | |
| 432 | ControlResponse response; |
| 433 | |
| 434 | if (code == 404) |
| 435 | { |
| 436 | response.setCode(code); |
| 437 | response.setText(error); |
| 438 | } |
| 439 | else |
| 440 | { |
| 441 | response.setCode(533); |
| 442 | std::ostringstream os; |
| 443 | os << "Failure to update NFD " << "(NFD Error: " << code << " " << error << ")"; |
| 444 | response.setText(os.str()); |
| 445 | } |
| 446 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 447 | if (static_cast<bool>(request)) |
| 448 | sendResponse(request->getName(), response); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 449 | } |
| 450 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 451 | void |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 452 | RibManager::onNrdCommandPrefixAddNextHopSuccess(const Name& prefix) |
| 453 | { |
| 454 | NFD_LOG_DEBUG("Successfully registered " + prefix.toUri() + " with NFD"); |
| 455 | } |
| 456 | |
| 457 | void |
| 458 | RibManager::onNrdCommandPrefixAddNextHopError(const Name& name, const std::string& msg) |
| 459 | { |
| 460 | throw Error("Error in setting interest filter (" + name.toUri() + "): " + msg); |
| 461 | } |
| 462 | |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 463 | bool |
| 464 | RibManager::isTransactionComplete(const TransactionId transactionId) |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 465 | { |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 466 | FibTransactionTable::iterator it = m_pendingFibTransactions.find(transactionId); |
| 467 | |
| 468 | if (it != m_pendingFibTransactions.end()) |
| 469 | { |
| 470 | int& updatesLeft = it->second; |
| 471 | |
| 472 | updatesLeft--; |
| 473 | |
| 474 | // All of the updates have been applied successfully |
| 475 | if (updatesLeft == 0) |
| 476 | { |
| 477 | m_pendingFibTransactions.erase(it); |
| 478 | return true; |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | return false; |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 483 | } |
| 484 | |
| 485 | void |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 486 | RibManager::invalidateTransaction(const TransactionId transactionId) |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 487 | { |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 488 | FibTransactionTable::iterator it = m_pendingFibTransactions.find(transactionId); |
| 489 | |
| 490 | if (it != m_pendingFibTransactions.end()) |
| 491 | { |
| 492 | m_pendingFibTransactions.erase(it); |
| 493 | } |
| 494 | } |
| 495 | |
| 496 | void |
| 497 | RibManager::onAddNextHopSuccess(const shared_ptr<const Interest>& request, |
| 498 | const ControlParameters& parameters, |
| 499 | const TransactionId transactionId, |
| 500 | const bool shouldSendResponse) |
| 501 | { |
| 502 | if (isTransactionComplete(transactionId) && shouldSendResponse) |
| 503 | { |
| 504 | sendSuccessResponse(request, parameters); |
| 505 | } |
| 506 | } |
| 507 | |
| 508 | void |
| 509 | RibManager::onAddNextHopError(uint32_t code, const std::string& error, |
| 510 | const shared_ptr<const Interest>& request, |
| 511 | const TransactionId transactionId, const bool shouldSendResponse) |
| 512 | { |
| 513 | invalidateTransaction(transactionId); |
| 514 | |
| 515 | if (shouldSendResponse) |
| 516 | { |
| 517 | sendErrorResponse(code, error, request); |
| 518 | } |
| 519 | } |
| 520 | |
| 521 | void |
| 522 | RibManager::onRemoveNextHopSuccess(const shared_ptr<const Interest>& request, |
| 523 | const ControlParameters& parameters, |
| 524 | const TransactionId transactionId, |
| 525 | const bool shouldSendResponse) |
| 526 | { |
| 527 | if (isTransactionComplete(transactionId) && shouldSendResponse) |
| 528 | { |
| 529 | sendSuccessResponse(request, parameters); |
| 530 | } |
| 531 | } |
| 532 | |
| 533 | void |
| 534 | RibManager::onRemoveNextHopError(uint32_t code, const std::string& error, |
| 535 | const shared_ptr<const Interest>& request, |
| 536 | const TransactionId transactionId, const bool shouldSendResponse) |
| 537 | { |
| 538 | invalidateTransaction(transactionId); |
| 539 | |
| 540 | if (shouldSendResponse) |
| 541 | { |
| 542 | sendErrorResponse(code, error, request); |
| 543 | } |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 547 | RibManager::onControlHeaderSuccess() |
| 548 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 549 | NFD_LOG_DEBUG("Local control header enabled"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | void |
| 553 | RibManager::onControlHeaderError(uint32_t code, const std::string& reason) |
| 554 | { |
Alexander Afanasyev | b305165 | 2014-04-30 17:50:26 -0700 | [diff] [blame] | 555 | std::ostringstream os; |
| 556 | os << "Couldn't enable local control header " |
| 557 | << "(code: " << code << ", info: " << reason << ")"; |
| 558 | throw Error(os.str()); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 559 | } |
| 560 | |
| 561 | void |
| 562 | RibManager::enableLocalControlHeader() |
| 563 | { |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 564 | m_nfdController.start<ndn::nfd::FaceEnableLocalControlCommand>( |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 565 | ControlParameters() |
| 566 | .setLocalControlFeature(ndn::nfd::LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID), |
| 567 | bind(&RibManager::onControlHeaderSuccess, this), |
| 568 | bind(&RibManager::onControlHeaderError, this, _1, _2)); |
| 569 | } |
| 570 | |
| 571 | void |
| 572 | RibManager::onNotification(const FaceEventNotification& notification) |
| 573 | { |
| 574 | /// \todo A notification can be missed, in this case check Facelist |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 575 | NFD_LOG_TRACE("onNotification: " << notification); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 576 | if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) //face destroyed |
| 577 | { |
Alexander Afanasyev | 63108c4 | 2014-07-07 19:10:47 -0700 | [diff] [blame] | 578 | scheduler::schedule(time::seconds(0), |
| 579 | bind(&RibManager::processErasureAfterNotification, this, |
| 580 | notification.getFaceId())); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 581 | } |
| 582 | } |
| 583 | |
| 584 | void |
Alexander Afanasyev | 63108c4 | 2014-07-07 19:10:47 -0700 | [diff] [blame] | 585 | RibManager::processErasureAfterNotification(uint64_t faceId) |
| 586 | { |
| 587 | m_managedRib.erase(faceId); |
| 588 | |
| 589 | sendUpdatesToFibAfterFaceDestroyEvent(); |
| 590 | } |
| 591 | |
| 592 | void |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 593 | RibManager::sendUpdatesToFib(const shared_ptr<const Interest>& request, |
| 594 | const ControlParameters& parameters) |
| 595 | { |
| 596 | const Rib::FibUpdateList& updates = m_managedRib.getFibUpdates(); |
| 597 | |
| 598 | // If no updates were generated, consider the operation a success |
| 599 | if (updates.empty()) |
| 600 | { |
| 601 | sendSuccessResponse(request, parameters); |
| 602 | return; |
| 603 | } |
| 604 | |
| 605 | bool shouldWaitToRespond = false; |
| 606 | |
| 607 | // An application request should wait for all FIB updates to be applied |
| 608 | // successfully before sending a response |
| 609 | if (parameters.getOrigin() == ndn::nfd::ROUTE_ORIGIN_APP) |
| 610 | { |
| 611 | shouldWaitToRespond = true; |
| 612 | } |
| 613 | else // Respond immediately |
| 614 | { |
| 615 | sendSuccessResponse(request, parameters); |
| 616 | } |
| 617 | |
| 618 | NFD_LOG_DEBUG("Applying " << updates.size() << " updates to FIB"); |
| 619 | |
| 620 | // Assign an ID to this FIB transaction |
| 621 | TransactionId currentTransactionId = ++m_lastTransactionId; |
| 622 | |
| 623 | // Add this transaction to the transaction table |
| 624 | m_pendingFibTransactions[currentTransactionId] = updates.size(); |
| 625 | |
| 626 | for (Rib::FibUpdateList::const_iterator it = updates.begin(); it != updates.end(); ++it) |
| 627 | { |
| 628 | shared_ptr<const FibUpdate> update(*it); |
| 629 | |
| 630 | if (update->action == FibUpdate::ADD_NEXTHOP) |
| 631 | { |
| 632 | FaceEntry faceEntry; |
| 633 | faceEntry.faceId = update->faceId; |
| 634 | faceEntry.cost = update->cost; |
| 635 | |
| 636 | m_nfdController.start<ndn::nfd::FibAddNextHopCommand>( |
| 637 | ControlParameters() |
| 638 | .setName(update->name) |
| 639 | .setFaceId(faceEntry.faceId) |
| 640 | .setCost(faceEntry.cost), |
| 641 | bind(&RibManager::onAddNextHopSuccess, this, request, |
| 642 | parameters, |
| 643 | currentTransactionId, |
| 644 | shouldWaitToRespond), |
| 645 | bind(&RibManager::onAddNextHopError, this, _1, _2, request, currentTransactionId, |
| 646 | shouldWaitToRespond)); |
| 647 | } |
| 648 | else if (update->action == FibUpdate::REMOVE_NEXTHOP) |
| 649 | { |
| 650 | FaceEntry faceEntry; |
| 651 | faceEntry.faceId = update->faceId; |
| 652 | |
| 653 | m_nfdController.start<ndn::nfd::FibRemoveNextHopCommand>( |
| 654 | ControlParameters() |
| 655 | .setName(update->name) |
| 656 | .setFaceId(faceEntry.faceId), |
| 657 | bind(&RibManager::onRemoveNextHopSuccess, this, request, |
| 658 | parameters, |
| 659 | currentTransactionId, |
| 660 | shouldWaitToRespond), |
| 661 | bind(&RibManager::onRemoveNextHopError, this, _1, _2, request, currentTransactionId, |
| 662 | shouldWaitToRespond)); |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | m_managedRib.clearFibUpdates(); |
| 667 | } |
| 668 | |
| 669 | void |
| 670 | RibManager::sendUpdatesToFibAfterFaceDestroyEvent() |
| 671 | { |
| 672 | ControlParameters parameters; |
| 673 | parameters.setOrigin(ndn::nfd::ROUTE_ORIGIN_STATIC); |
| 674 | |
| 675 | sendUpdatesToFib(shared_ptr<const Interest>(), parameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 676 | } |
| 677 | |
| 678 | } // namespace rib |
| 679 | } // namespace nfd |