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()); |
| 266 | parameters.setFaceId(params.getFaceId()); |
| 267 | parameters.setOrigin(params.getOrigin()); |
| 268 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 269 | if (!validateParameters(command, parameters)) |
| 270 | { |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 271 | NFD_LOG_DEBUG("unregister result: FAIL reason: malformed"); |
| 272 | if (static_cast<bool>(request)) |
| 273 | sendResponse(request->getName(), 400, "Malformed command"); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 274 | return; |
| 275 | } |
| 276 | |
Alexander Afanasyev | fb1c808 | 2014-07-17 15:16:15 -0700 | [diff] [blame^] | 277 | if (!parameters.hasFaceId() || parameters.getFaceId() == 0) |
| 278 | { |
| 279 | parameters.setFaceId(request->getIncomingFaceId()); |
| 280 | } |
| 281 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 282 | FaceEntry faceEntry; |
| 283 | faceEntry.faceId = parameters.getFaceId(); |
| 284 | faceEntry.origin = parameters.getOrigin(); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 285 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 286 | NFD_LOG_TRACE("unregister prefix: " << faceEntry); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 287 | |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 288 | m_managedRib.erase(parameters.getName(), faceEntry); |
| 289 | |
| 290 | sendUpdatesToFib(request, parameters); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | void |
| 294 | RibManager::onCommandValidationFailed(const shared_ptr<const Interest>& request, |
| 295 | const std::string& failureInfo) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 296 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 297 | NFD_LOG_DEBUG("RibRequestValidationFailed: " << failureInfo); |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 298 | if (static_cast<bool>(request)) |
| 299 | sendResponse(request->getName(), 403, failureInfo); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 300 | } |
| 301 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 302 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 303 | bool |
| 304 | RibManager::extractParameters(const Name::Component& parameterComponent, |
| 305 | ControlParameters& extractedParameters) |
| 306 | { |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 307 | try |
| 308 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 309 | Block rawParameters = parameterComponent.blockFromValue(); |
| 310 | extractedParameters.wireDecode(rawParameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 311 | } |
| 312 | catch (const ndn::Tlv::Error& e) |
| 313 | { |
| 314 | return false; |
| 315 | } |
| 316 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 317 | NFD_LOG_DEBUG("Parameters parsed OK"); |
| 318 | return true; |
| 319 | } |
| 320 | |
| 321 | bool |
| 322 | RibManager::validateParameters(const ControlCommand& command, |
| 323 | ControlParameters& parameters) |
| 324 | { |
| 325 | try |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 326 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 327 | command.validateRequest(parameters); |
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 | catch (const ControlCommand::ArgumentError&) |
| 330 | { |
| 331 | return false; |
| 332 | } |
| 333 | |
| 334 | command.applyDefaultsToRequest(parameters); |
| 335 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 336 | return true; |
| 337 | } |
| 338 | |
| 339 | void |
| 340 | RibManager::onCommandError(uint32_t code, const std::string& error, |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 341 | const shared_ptr<const Interest>& request, |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 342 | const FaceEntry& faceEntry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 343 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 344 | NFD_LOG_ERROR("NFD returned an error: " << error << " (code: " << code << ")"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 345 | |
| 346 | ControlResponse response; |
| 347 | |
| 348 | if (code == 404) |
| 349 | { |
| 350 | response.setCode(code); |
| 351 | response.setText(error); |
| 352 | } |
| 353 | else |
| 354 | { |
| 355 | response.setCode(533); |
| 356 | std::ostringstream os; |
| 357 | os << "Failure to update NFD " << "(NFD Error: " << code << " " << error << ")"; |
| 358 | response.setText(os.str()); |
| 359 | } |
| 360 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 361 | if (static_cast<bool>(request)) |
| 362 | sendResponse(request->getName(), response); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 366 | RibManager::onRegSuccess(const shared_ptr<const Interest>& request, |
| 367 | const ControlParameters& parameters, |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 368 | const FaceEntry& faceEntry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 369 | { |
| 370 | ControlResponse response; |
| 371 | |
| 372 | response.setCode(200); |
| 373 | response.setText("Success"); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 374 | response.setBody(parameters.wireEncode()); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 375 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 376 | NFD_LOG_TRACE("onRegSuccess: registered " << faceEntry); |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 377 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 378 | if (static_cast<bool>(request)) |
| 379 | sendResponse(request->getName(), response); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 382 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 383 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 384 | RibManager::onUnRegSuccess(const shared_ptr<const Interest>& request, |
| 385 | const ControlParameters& parameters, |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 386 | const FaceEntry& faceEntry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 387 | { |
| 388 | ControlResponse response; |
| 389 | |
| 390 | response.setCode(200); |
| 391 | response.setText("Success"); |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 392 | response.setBody(parameters.wireEncode()); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 393 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 394 | NFD_LOG_TRACE("onUnRegSuccess: unregistered " << faceEntry); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 395 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 396 | if (static_cast<bool>(request)) |
| 397 | sendResponse(request->getName(), response); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | void |
| 401 | RibManager::sendSuccessResponse(const shared_ptr<const Interest>& request, |
| 402 | const ControlParameters& parameters) |
| 403 | { |
| 404 | if (!static_cast<bool>(request)) |
| 405 | { |
| 406 | return; |
| 407 | } |
| 408 | |
| 409 | ControlResponse response; |
| 410 | |
| 411 | response.setCode(200); |
| 412 | response.setText("Success"); |
| 413 | response.setBody(parameters.wireEncode()); |
| 414 | |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 415 | if (static_cast<bool>(request)) |
| 416 | sendResponse(request->getName(), response); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | void |
| 420 | RibManager::sendErrorResponse(uint32_t code, const std::string& error, |
| 421 | const shared_ptr<const Interest>& request) |
| 422 | { |
| 423 | NFD_LOG_ERROR("NFD returned an error: " << error << " (code: " << code << ")"); |
| 424 | |
| 425 | if (!static_cast<bool>(request)) |
| 426 | { |
| 427 | return; |
| 428 | } |
| 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 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 449 | void |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 450 | RibManager::onNrdCommandPrefixAddNextHopSuccess(const Name& prefix) |
| 451 | { |
| 452 | NFD_LOG_DEBUG("Successfully registered " + prefix.toUri() + " with NFD"); |
| 453 | } |
| 454 | |
| 455 | void |
| 456 | RibManager::onNrdCommandPrefixAddNextHopError(const Name& name, const std::string& msg) |
| 457 | { |
| 458 | throw Error("Error in setting interest filter (" + name.toUri() + "): " + msg); |
| 459 | } |
| 460 | |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 461 | bool |
| 462 | RibManager::isTransactionComplete(const TransactionId transactionId) |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 463 | { |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 464 | FibTransactionTable::iterator it = m_pendingFibTransactions.find(transactionId); |
| 465 | |
| 466 | if (it != m_pendingFibTransactions.end()) |
| 467 | { |
| 468 | int& updatesLeft = it->second; |
| 469 | |
| 470 | updatesLeft--; |
| 471 | |
| 472 | // All of the updates have been applied successfully |
| 473 | if (updatesLeft == 0) |
| 474 | { |
| 475 | m_pendingFibTransactions.erase(it); |
| 476 | return true; |
| 477 | } |
| 478 | } |
| 479 | |
| 480 | return false; |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | void |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 484 | RibManager::invalidateTransaction(const TransactionId transactionId) |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 485 | { |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 486 | FibTransactionTable::iterator it = m_pendingFibTransactions.find(transactionId); |
| 487 | |
| 488 | if (it != m_pendingFibTransactions.end()) |
| 489 | { |
| 490 | m_pendingFibTransactions.erase(it); |
| 491 | } |
| 492 | } |
| 493 | |
| 494 | void |
| 495 | RibManager::onAddNextHopSuccess(const shared_ptr<const Interest>& request, |
| 496 | const ControlParameters& parameters, |
| 497 | const TransactionId transactionId, |
| 498 | const bool shouldSendResponse) |
| 499 | { |
| 500 | if (isTransactionComplete(transactionId) && shouldSendResponse) |
| 501 | { |
| 502 | sendSuccessResponse(request, parameters); |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | void |
| 507 | RibManager::onAddNextHopError(uint32_t code, const std::string& error, |
| 508 | const shared_ptr<const Interest>& request, |
| 509 | const TransactionId transactionId, const bool shouldSendResponse) |
| 510 | { |
| 511 | invalidateTransaction(transactionId); |
| 512 | |
| 513 | if (shouldSendResponse) |
| 514 | { |
| 515 | sendErrorResponse(code, error, request); |
| 516 | } |
| 517 | } |
| 518 | |
| 519 | void |
| 520 | RibManager::onRemoveNextHopSuccess(const shared_ptr<const Interest>& request, |
| 521 | const ControlParameters& parameters, |
| 522 | const TransactionId transactionId, |
| 523 | const bool shouldSendResponse) |
| 524 | { |
| 525 | if (isTransactionComplete(transactionId) && shouldSendResponse) |
| 526 | { |
| 527 | sendSuccessResponse(request, parameters); |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | void |
| 532 | RibManager::onRemoveNextHopError(uint32_t code, const std::string& error, |
| 533 | const shared_ptr<const Interest>& request, |
| 534 | const TransactionId transactionId, const bool shouldSendResponse) |
| 535 | { |
| 536 | invalidateTransaction(transactionId); |
| 537 | |
| 538 | if (shouldSendResponse) |
| 539 | { |
| 540 | sendErrorResponse(code, error, request); |
| 541 | } |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 545 | RibManager::onControlHeaderSuccess() |
| 546 | { |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 547 | NFD_LOG_DEBUG("Local control header enabled"); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | void |
| 551 | RibManager::onControlHeaderError(uint32_t code, const std::string& reason) |
| 552 | { |
Alexander Afanasyev | b305165 | 2014-04-30 17:50:26 -0700 | [diff] [blame] | 553 | std::ostringstream os; |
| 554 | os << "Couldn't enable local control header " |
| 555 | << "(code: " << code << ", info: " << reason << ")"; |
| 556 | throw Error(os.str()); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | void |
| 560 | RibManager::enableLocalControlHeader() |
| 561 | { |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 562 | m_nfdController.start<ndn::nfd::FaceEnableLocalControlCommand>( |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 563 | ControlParameters() |
| 564 | .setLocalControlFeature(ndn::nfd::LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID), |
| 565 | bind(&RibManager::onControlHeaderSuccess, this), |
| 566 | bind(&RibManager::onControlHeaderError, this, _1, _2)); |
| 567 | } |
| 568 | |
| 569 | void |
| 570 | RibManager::onNotification(const FaceEventNotification& notification) |
| 571 | { |
| 572 | /// \todo A notification can be missed, in this case check Facelist |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 573 | NFD_LOG_TRACE("onNotification: " << notification); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 574 | if (notification.getKind() == ndn::nfd::FACE_EVENT_DESTROYED) //face destroyed |
| 575 | { |
Alexander Afanasyev | 63108c4 | 2014-07-07 19:10:47 -0700 | [diff] [blame] | 576 | scheduler::schedule(time::seconds(0), |
| 577 | bind(&RibManager::processErasureAfterNotification, this, |
| 578 | notification.getFaceId())); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 579 | } |
| 580 | } |
| 581 | |
| 582 | void |
Alexander Afanasyev | 63108c4 | 2014-07-07 19:10:47 -0700 | [diff] [blame] | 583 | RibManager::processErasureAfterNotification(uint64_t faceId) |
| 584 | { |
| 585 | m_managedRib.erase(faceId); |
| 586 | |
| 587 | sendUpdatesToFibAfterFaceDestroyEvent(); |
| 588 | } |
| 589 | |
| 590 | void |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 591 | RibManager::sendUpdatesToFib(const shared_ptr<const Interest>& request, |
| 592 | const ControlParameters& parameters) |
| 593 | { |
| 594 | const Rib::FibUpdateList& updates = m_managedRib.getFibUpdates(); |
| 595 | |
| 596 | // If no updates were generated, consider the operation a success |
| 597 | if (updates.empty()) |
| 598 | { |
| 599 | sendSuccessResponse(request, parameters); |
| 600 | return; |
| 601 | } |
| 602 | |
| 603 | bool shouldWaitToRespond = false; |
| 604 | |
| 605 | // An application request should wait for all FIB updates to be applied |
| 606 | // successfully before sending a response |
| 607 | if (parameters.getOrigin() == ndn::nfd::ROUTE_ORIGIN_APP) |
| 608 | { |
| 609 | shouldWaitToRespond = true; |
| 610 | } |
| 611 | else // Respond immediately |
| 612 | { |
| 613 | sendSuccessResponse(request, parameters); |
| 614 | } |
| 615 | |
| 616 | NFD_LOG_DEBUG("Applying " << updates.size() << " updates to FIB"); |
| 617 | |
| 618 | // Assign an ID to this FIB transaction |
| 619 | TransactionId currentTransactionId = ++m_lastTransactionId; |
| 620 | |
| 621 | // Add this transaction to the transaction table |
| 622 | m_pendingFibTransactions[currentTransactionId] = updates.size(); |
| 623 | |
| 624 | for (Rib::FibUpdateList::const_iterator it = updates.begin(); it != updates.end(); ++it) |
| 625 | { |
| 626 | shared_ptr<const FibUpdate> update(*it); |
| 627 | |
| 628 | if (update->action == FibUpdate::ADD_NEXTHOP) |
| 629 | { |
| 630 | FaceEntry faceEntry; |
| 631 | faceEntry.faceId = update->faceId; |
| 632 | faceEntry.cost = update->cost; |
| 633 | |
| 634 | m_nfdController.start<ndn::nfd::FibAddNextHopCommand>( |
| 635 | ControlParameters() |
| 636 | .setName(update->name) |
| 637 | .setFaceId(faceEntry.faceId) |
| 638 | .setCost(faceEntry.cost), |
| 639 | bind(&RibManager::onAddNextHopSuccess, this, request, |
| 640 | parameters, |
| 641 | currentTransactionId, |
| 642 | shouldWaitToRespond), |
| 643 | bind(&RibManager::onAddNextHopError, this, _1, _2, request, currentTransactionId, |
| 644 | shouldWaitToRespond)); |
| 645 | } |
| 646 | else if (update->action == FibUpdate::REMOVE_NEXTHOP) |
| 647 | { |
| 648 | FaceEntry faceEntry; |
| 649 | faceEntry.faceId = update->faceId; |
| 650 | |
| 651 | m_nfdController.start<ndn::nfd::FibRemoveNextHopCommand>( |
| 652 | ControlParameters() |
| 653 | .setName(update->name) |
| 654 | .setFaceId(faceEntry.faceId), |
| 655 | bind(&RibManager::onRemoveNextHopSuccess, this, request, |
| 656 | parameters, |
| 657 | currentTransactionId, |
| 658 | shouldWaitToRespond), |
| 659 | bind(&RibManager::onRemoveNextHopError, this, _1, _2, request, currentTransactionId, |
| 660 | shouldWaitToRespond)); |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | m_managedRib.clearFibUpdates(); |
| 665 | } |
| 666 | |
| 667 | void |
| 668 | RibManager::sendUpdatesToFibAfterFaceDestroyEvent() |
| 669 | { |
| 670 | ControlParameters parameters; |
| 671 | parameters.setOrigin(ndn::nfd::ROUTE_ORIGIN_STATIC); |
| 672 | |
| 673 | sendUpdatesToFib(shared_ptr<const Interest>(), parameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | } // namespace rib |
| 677 | } // namespace nfd |