Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | 944f38b | 2017-07-20 20:54:22 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 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. |
| 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/>. |
| 24 | */ |
| 25 | |
| 26 | #include "face-manager.hpp" |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 27 | |
| 28 | #include "core/logger.hpp" |
Junxiao Shi | 40cb61c | 2015-09-23 18:36:45 -0700 | [diff] [blame] | 29 | #include "face/generic-link-service.hpp" |
Junxiao Shi | b859031 | 2016-12-29 21:22:25 +0000 | [diff] [blame] | 30 | #include "face/protocol-factory.hpp" |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 31 | #include "fw/face-table.hpp" |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 32 | |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 33 | #include <boost/logic/tribool.hpp> |
| 34 | |
Junxiao Shi | cbc8e94 | 2016-09-06 03:17:45 +0000 | [diff] [blame] | 35 | #include <ndn-cxx/lp/tags.hpp> |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 36 | #include <ndn-cxx/mgmt/nfd/channel-status.hpp> |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 37 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 38 | namespace nfd { |
| 39 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 40 | NFD_LOG_INIT(FaceManager); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 41 | |
Junxiao Shi | ea47bde | 2017-01-26 17:49:16 +0000 | [diff] [blame] | 42 | FaceManager::FaceManager(FaceSystem& faceSystem, |
Davide Pesavento | cfb1a31 | 2018-03-01 01:30:56 -0500 | [diff] [blame] | 43 | Dispatcher& dispatcher, |
| 44 | CommandAuthenticator& authenticator) |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 45 | : NfdManagerBase(dispatcher, authenticator, "faces") |
Junxiao Shi | ea47bde | 2017-01-26 17:49:16 +0000 | [diff] [blame] | 46 | , m_faceSystem(faceSystem) |
| 47 | , m_faceTable(faceSystem.getFaceTable()) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 48 | { |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 49 | // register handlers for ControlCommand |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 50 | registerCommandHandler<ndn::nfd::FaceCreateCommand>("create", |
| 51 | bind(&FaceManager::createFace, this, _2, _3, _4, _5)); |
| 52 | |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 53 | registerCommandHandler<ndn::nfd::FaceUpdateCommand>("update", |
| 54 | bind(&FaceManager::updateFace, this, _2, _3, _4, _5)); |
| 55 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 56 | registerCommandHandler<ndn::nfd::FaceDestroyCommand>("destroy", |
| 57 | bind(&FaceManager::destroyFace, this, _2, _3, _4, _5)); |
| 58 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 59 | // register handlers for StatusDataset |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 60 | registerStatusDatasetHandler("list", bind(&FaceManager::listFaces, this, _1, _2, _3)); |
| 61 | registerStatusDatasetHandler("channels", bind(&FaceManager::listChannels, this, _1, _2, _3)); |
| 62 | registerStatusDatasetHandler("query", bind(&FaceManager::queryFaces, this, _1, _2, _3)); |
| 63 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 64 | // register notification stream |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 65 | m_postNotification = registerNotificationStream("events"); |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 66 | m_faceAddConn = m_faceTable.afterAdd.connect([this] (const Face& face) { |
| 67 | connectFaceStateChangeSignal(face); |
| 68 | notifyFaceEvent(face, ndn::nfd::FACE_EVENT_CREATED); |
| 69 | }); |
| 70 | m_faceRemoveConn = m_faceTable.beforeRemove.connect([this] (const Face& face) { |
| 71 | notifyFaceEvent(face, ndn::nfd::FACE_EVENT_DESTROYED); |
| 72 | }); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | void |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 76 | FaceManager::createFace(const Name& topPrefix, const Interest& interest, |
| 77 | const ControlParameters& parameters, |
| 78 | const ndn::mgmt::CommandContinuation& done) |
| 79 | { |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 80 | FaceUri remoteUri; |
| 81 | if (!remoteUri.parse(parameters.getUri())) { |
| 82 | NFD_LOG_TRACE("failed to parse remote URI: " << parameters.getUri()); |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 83 | done(ControlResponse(400, "Malformed command")); |
| 84 | return; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 87 | if (!remoteUri.isCanonical()) { |
| 88 | NFD_LOG_TRACE("received non-canonical remote URI: " << remoteUri.toString()); |
| 89 | done(ControlResponse(400, "Non-canonical remote URI")); |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 90 | return; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 93 | optional<FaceUri> localUri; |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 94 | if (parameters.hasLocalUri()) { |
| 95 | localUri = FaceUri{}; |
| 96 | |
| 97 | if (!localUri->parse(parameters.getLocalUri())) { |
| 98 | NFD_LOG_TRACE("failed to parse local URI: " << parameters.getLocalUri()); |
| 99 | done(ControlResponse(400, "Malformed command")); |
| 100 | return; |
| 101 | } |
| 102 | |
| 103 | if (!localUri->isCanonical()) { |
| 104 | NFD_LOG_TRACE("received non-canonical local URI: " << localUri->toString()); |
| 105 | done(ControlResponse(400, "Non-canonical local URI")); |
| 106 | return; |
| 107 | } |
| 108 | } |
| 109 | |
Davide Pesavento | e5eebad | 2017-04-06 20:23:26 -0400 | [diff] [blame] | 110 | face::ProtocolFactory* factory = m_faceSystem.getFactoryByScheme(remoteUri.getScheme()); |
Junxiao Shi | b859031 | 2016-12-29 21:22:25 +0000 | [diff] [blame] | 111 | if (factory == nullptr) { |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 112 | NFD_LOG_TRACE("received create request for unsupported protocol: " << remoteUri.getScheme()); |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 113 | done(ControlResponse(406, "Unsupported protocol")); |
| 114 | return; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 117 | face::FaceParams faceParams; |
| 118 | faceParams.persistency = parameters.getFacePersistency(); |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 119 | if (parameters.hasBaseCongestionMarkingInterval()) { |
| 120 | faceParams.baseCongestionMarkingInterval = parameters.getBaseCongestionMarkingInterval(); |
| 121 | } |
| 122 | if (parameters.hasDefaultCongestionThreshold()) { |
| 123 | faceParams.defaultCongestionThreshold = parameters.getDefaultCongestionThreshold(); |
| 124 | } |
Eric Newberry | 812d615 | 2018-06-06 15:06:01 -0700 | [diff] [blame^] | 125 | if (parameters.hasMtu()) { |
| 126 | faceParams.mtu = parameters.getMtu(); |
| 127 | } |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 128 | faceParams.wantLocalFields = parameters.hasFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) && |
| 129 | parameters.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED); |
| 130 | faceParams.wantLpReliability = parameters.hasFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED) && |
| 131 | parameters.getFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED); |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 132 | if (parameters.hasFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED)) { |
| 133 | faceParams.wantCongestionMarking = parameters.getFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED); |
| 134 | } |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 135 | try { |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 136 | factory->createFace({remoteUri, localUri, faceParams}, |
| 137 | bind(&FaceManager::afterCreateFaceSuccess, this, parameters, _1, done), |
| 138 | bind(&FaceManager::afterCreateFaceFailure, this, _1, _2, done)); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 139 | } |
| 140 | catch (const std::runtime_error& error) { |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 141 | NFD_LOG_ERROR("Face creation failed: " << error.what()); |
| 142 | done(ControlResponse(500, "Face creation failed due to internal error")); |
| 143 | return; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 144 | } |
| 145 | catch (const std::logic_error& error) { |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 146 | NFD_LOG_ERROR("Face creation failed: " << error.what()); |
| 147 | done(ControlResponse(500, "Face creation failed due to internal error")); |
| 148 | return; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | |
| 152 | void |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 153 | FaceManager::afterCreateFaceSuccess(const ControlParameters& parameters, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 154 | const shared_ptr<Face>& face, |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 155 | const ndn::mgmt::CommandContinuation& done) |
| 156 | { |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 157 | if (face->getId() != face::INVALID_FACEID) {// Face already exists |
| 158 | NFD_LOG_TRACE("Attempted to create duplicate face of " << face->getId()); |
| 159 | |
Junxiao Shi | 1cce2a3 | 2017-05-02 02:39:55 +0000 | [diff] [blame] | 160 | ControlParameters response = collectFaceProperties(*face, true); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 161 | done(ControlResponse(409, "Face with remote URI already exists").setBody(response.wireEncode())); |
| 162 | return; |
| 163 | } |
| 164 | |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 165 | // If scope non-local and flags set to enable local fields, request shouldn't |
| 166 | // have made it this far |
| 167 | BOOST_ASSERT(face->getScope() == ndn::nfd::FACE_SCOPE_LOCAL || |
| 168 | !parameters.hasFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) || |
| 169 | (parameters.hasFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) && |
| 170 | !parameters.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED))); |
| 171 | |
| 172 | m_faceTable.add(face); |
| 173 | |
Junxiao Shi | 1cce2a3 | 2017-05-02 02:39:55 +0000 | [diff] [blame] | 174 | ControlParameters response = collectFaceProperties(*face, true); |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 175 | done(ControlResponse(200, "OK").setBody(response.wireEncode())); |
| 176 | } |
| 177 | |
| 178 | void |
| 179 | FaceManager::afterCreateFaceFailure(uint32_t status, |
| 180 | const std::string& reason, |
| 181 | const ndn::mgmt::CommandContinuation& done) |
| 182 | { |
| 183 | NFD_LOG_DEBUG("Face creation failed: " << reason); |
| 184 | |
| 185 | done(ControlResponse(status, reason)); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | void |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 189 | FaceManager::updateFace(const Name& topPrefix, const Interest& interest, |
| 190 | const ControlParameters& parameters, |
| 191 | const ndn::mgmt::CommandContinuation& done) |
| 192 | { |
| 193 | FaceId faceId = parameters.getFaceId(); |
| 194 | if (faceId == 0) { |
| 195 | // Self-updating |
| 196 | shared_ptr<lp::IncomingFaceIdTag> incomingFaceIdTag = interest.getTag<lp::IncomingFaceIdTag>(); |
| 197 | if (incomingFaceIdTag == nullptr) { |
| 198 | NFD_LOG_TRACE("unable to determine face for self-update"); |
| 199 | done(ControlResponse(404, "No FaceId specified and IncomingFaceId not available")); |
| 200 | return; |
| 201 | } |
| 202 | faceId = *incomingFaceIdTag; |
| 203 | } |
| 204 | |
| 205 | Face* face = m_faceTable.get(faceId); |
| 206 | |
| 207 | if (face == nullptr) { |
| 208 | NFD_LOG_TRACE("invalid face specified"); |
| 209 | done(ControlResponse(404, "Specified face does not exist")); |
| 210 | return; |
| 211 | } |
| 212 | |
| 213 | // Verify validity of requested changes |
| 214 | ControlParameters response; |
| 215 | bool areParamsValid = true; |
| 216 | |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 217 | if (parameters.hasFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) && |
| 218 | parameters.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) && |
| 219 | face->getScope() != ndn::nfd::FACE_SCOPE_LOCAL) { |
| 220 | NFD_LOG_TRACE("received request to enable local fields on non-local face"); |
| 221 | areParamsValid = false; |
| 222 | response.setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, |
| 223 | parameters.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED)); |
| 224 | } |
| 225 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 226 | // check whether the requested FacePersistency change is valid if it's present |
| 227 | if (parameters.hasFacePersistency()) { |
| 228 | auto persistency = parameters.getFacePersistency(); |
| 229 | if (!face->getTransport()->canChangePersistencyTo(persistency)) { |
| 230 | NFD_LOG_TRACE("cannot change face persistency to " << persistency); |
| 231 | areParamsValid = false; |
| 232 | response.setFacePersistency(persistency); |
| 233 | } |
| 234 | } |
| 235 | |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 236 | if (!areParamsValid) { |
| 237 | done(ControlResponse(409, "Invalid properties specified").setBody(response.wireEncode())); |
| 238 | return; |
| 239 | } |
| 240 | |
| 241 | // All specified properties are valid, so make changes |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 242 | if (parameters.hasFacePersistency()) { |
| 243 | face->setPersistency(parameters.getFacePersistency()); |
| 244 | } |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 245 | setLinkServiceOptions(*face, parameters); |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 246 | |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 247 | // Set ControlResponse fields |
Junxiao Shi | 1cce2a3 | 2017-05-02 02:39:55 +0000 | [diff] [blame] | 248 | response = collectFaceProperties(*face, false); |
Eric Newberry | 812d615 | 2018-06-06 15:06:01 -0700 | [diff] [blame^] | 249 | response.unsetMtu(); // This parameter is only included with the response to faces/create and FaceStatus |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 250 | |
| 251 | done(ControlResponse(200, "OK").setBody(response.wireEncode())); |
| 252 | } |
| 253 | |
| 254 | void |
Junxiao Shi | 40cb61c | 2015-09-23 18:36:45 -0700 | [diff] [blame] | 255 | FaceManager::destroyFace(const Name& topPrefix, const Interest& interest, |
| 256 | const ControlParameters& parameters, |
| 257 | const ndn::mgmt::CommandContinuation& done) |
| 258 | { |
Junxiao Shi | 5b43f9a | 2016-07-19 13:15:56 +0000 | [diff] [blame] | 259 | Face* face = m_faceTable.get(parameters.getFaceId()); |
| 260 | if (face != nullptr) { |
| 261 | face->close(); |
Junxiao Shi | 40cb61c | 2015-09-23 18:36:45 -0700 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | done(ControlResponse(200, "OK").setBody(parameters.wireEncode())); |
| 265 | } |
| 266 | |
| 267 | void |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 268 | FaceManager::setLinkServiceOptions(Face& face, |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 269 | const ControlParameters& parameters) |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 270 | { |
| 271 | auto linkService = dynamic_cast<face::GenericLinkService*>(face.getLinkService()); |
| 272 | BOOST_ASSERT(linkService != nullptr); |
| 273 | |
| 274 | auto options = linkService->getOptions(); |
| 275 | if (parameters.hasFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) && |
| 276 | face.getScope() == ndn::nfd::FACE_SCOPE_LOCAL) { |
| 277 | options.allowLocalFields = parameters.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED); |
| 278 | } |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 279 | if (parameters.hasFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED)) { |
| 280 | options.reliabilityOptions.isEnabled = parameters.getFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED); |
| 281 | } |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 282 | if (parameters.hasFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED)) { |
| 283 | options.allowCongestionMarking = parameters.getFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED); |
| 284 | } |
| 285 | if (parameters.hasBaseCongestionMarkingInterval()) { |
| 286 | options.baseCongestionMarkingInterval = parameters.getBaseCongestionMarkingInterval(); |
| 287 | } |
| 288 | if (parameters.hasDefaultCongestionThreshold()) { |
| 289 | options.defaultCongestionThreshold = parameters.getDefaultCongestionThreshold(); |
| 290 | } |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 291 | linkService->setOptions(options); |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 292 | } |
| 293 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 294 | ControlParameters |
Junxiao Shi | 1cce2a3 | 2017-05-02 02:39:55 +0000 | [diff] [blame] | 295 | FaceManager::collectFaceProperties(const Face& face, bool wantUris) |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 296 | { |
| 297 | auto linkService = dynamic_cast<face::GenericLinkService*>(face.getLinkService()); |
| 298 | BOOST_ASSERT(linkService != nullptr); |
| 299 | auto options = linkService->getOptions(); |
| 300 | |
Eric Newberry | 812d615 | 2018-06-06 15:06:01 -0700 | [diff] [blame^] | 301 | auto transport = face.getTransport(); |
| 302 | BOOST_ASSERT(transport != nullptr); |
| 303 | |
Junxiao Shi | 1cce2a3 | 2017-05-02 02:39:55 +0000 | [diff] [blame] | 304 | ControlParameters params; |
| 305 | params.setFaceId(face.getId()) |
| 306 | .setFacePersistency(face.getPersistency()) |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 307 | .setBaseCongestionMarkingInterval(options.baseCongestionMarkingInterval) |
| 308 | .setDefaultCongestionThreshold(options.defaultCongestionThreshold) |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 309 | .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, options.allowLocalFields, false) |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 310 | .setFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED, options.reliabilityOptions.isEnabled, false) |
| 311 | .setFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED, options.allowCongestionMarking, false); |
Eric Newberry | 812d615 | 2018-06-06 15:06:01 -0700 | [diff] [blame^] | 312 | |
| 313 | if (transport->getMtu() > 0) { |
| 314 | params.setMtu(std::min<uint64_t>(transport->getMtu(), ndn::MAX_NDN_PACKET_SIZE)); |
| 315 | } |
| 316 | else if (transport->getMtu() == face::MTU_UNLIMITED) { |
| 317 | params.setMtu(ndn::MAX_NDN_PACKET_SIZE); |
| 318 | } |
| 319 | |
Junxiao Shi | 1cce2a3 | 2017-05-02 02:39:55 +0000 | [diff] [blame] | 320 | if (wantUris) { |
| 321 | params.setUri(face.getRemoteUri().toString()) |
| 322 | .setLocalUri(face.getLocalUri().toString()); |
| 323 | } |
| 324 | return params; |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 325 | } |
| 326 | |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 327 | void |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 328 | FaceManager::listFaces(const Name& topPrefix, const Interest& interest, |
| 329 | ndn::mgmt::StatusDatasetContext& context) |
| 330 | { |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 331 | auto now = time::steady_clock::now(); |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 332 | for (const Face& face : m_faceTable) { |
| 333 | ndn::nfd::FaceStatus status = collectFaceStatus(face, now); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 334 | context.append(status.wireEncode()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 335 | } |
| 336 | context.end(); |
| 337 | } |
| 338 | |
| 339 | void |
| 340 | FaceManager::listChannels(const Name& topPrefix, const Interest& interest, |
| 341 | ndn::mgmt::StatusDatasetContext& context) |
| 342 | { |
Davide Pesavento | e5eebad | 2017-04-06 20:23:26 -0400 | [diff] [blame] | 343 | std::set<const face::ProtocolFactory*> factories = m_faceSystem.listProtocolFactories(); |
| 344 | for (const auto* factory : factories) { |
Junxiao Shi | b859031 | 2016-12-29 21:22:25 +0000 | [diff] [blame] | 345 | for (const auto& channel : factory->getChannels()) { |
| 346 | ndn::nfd::ChannelStatus entry; |
| 347 | entry.setLocalUri(channel->getUri().toString()); |
| 348 | context.append(entry.wireEncode()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 349 | } |
| 350 | } |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 351 | context.end(); |
| 352 | } |
| 353 | |
| 354 | void |
| 355 | FaceManager::queryFaces(const Name& topPrefix, const Interest& interest, |
| 356 | ndn::mgmt::StatusDatasetContext& context) |
| 357 | { |
| 358 | ndn::nfd::FaceQueryFilter faceFilter; |
| 359 | const Name& query = interest.getName(); |
| 360 | try { |
| 361 | faceFilter.wireDecode(query[-1].blockFromValue()); |
| 362 | } |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 363 | catch (const tlv::Error& e) { |
| 364 | NFD_LOG_DEBUG("Malformed query filter: " << e.what()); |
| 365 | return context.reject(ControlResponse(400, "Malformed filter")); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 366 | } |
| 367 | |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 368 | auto now = time::steady_clock::now(); |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 369 | for (const Face& face : m_faceTable) { |
| 370 | if (!matchFilter(faceFilter, face)) { |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 371 | continue; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 372 | } |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 373 | ndn::nfd::FaceStatus status = collectFaceStatus(face, now); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 374 | context.append(status.wireEncode()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 375 | } |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 376 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 377 | context.end(); |
| 378 | } |
| 379 | |
| 380 | bool |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 381 | FaceManager::matchFilter(const ndn::nfd::FaceQueryFilter& filter, const Face& face) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 382 | { |
| 383 | if (filter.hasFaceId() && |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 384 | filter.getFaceId() != static_cast<uint64_t>(face.getId())) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 385 | return false; |
| 386 | } |
| 387 | |
| 388 | if (filter.hasUriScheme() && |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 389 | filter.getUriScheme() != face.getRemoteUri().getScheme() && |
| 390 | filter.getUriScheme() != face.getLocalUri().getScheme()) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 391 | return false; |
| 392 | } |
| 393 | |
| 394 | if (filter.hasRemoteUri() && |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 395 | filter.getRemoteUri() != face.getRemoteUri().toString()) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 396 | return false; |
| 397 | } |
| 398 | |
| 399 | if (filter.hasLocalUri() && |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 400 | filter.getLocalUri() != face.getLocalUri().toString()) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 401 | return false; |
| 402 | } |
| 403 | |
| 404 | if (filter.hasFaceScope() && |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 405 | filter.getFaceScope() != face.getScope()) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 406 | return false; |
| 407 | } |
| 408 | |
| 409 | if (filter.hasFacePersistency() && |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 410 | filter.getFacePersistency() != face.getPersistency()) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 411 | return false; |
| 412 | } |
| 413 | |
| 414 | if (filter.hasLinkType() && |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 415 | filter.getLinkType() != face.getLinkType()) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 416 | return false; |
| 417 | } |
| 418 | |
| 419 | return true; |
| 420 | } |
| 421 | |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 422 | ndn::nfd::FaceStatus |
| 423 | FaceManager::collectFaceStatus(const Face& face, const time::steady_clock::TimePoint& now) |
| 424 | { |
| 425 | ndn::nfd::FaceStatus status; |
| 426 | |
| 427 | collectFaceProperties(face, status); |
| 428 | |
| 429 | time::steady_clock::TimePoint expirationTime = face.getExpirationTime(); |
| 430 | if (expirationTime != time::steady_clock::TimePoint::max()) { |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 431 | status.setExpirationPeriod(std::max(0_ms, |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 432 | time::duration_cast<time::milliseconds>(expirationTime - now))); |
| 433 | } |
| 434 | |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 435 | // Get LinkService options |
| 436 | auto linkService = dynamic_cast<face::GenericLinkService*>(face.getLinkService()); |
| 437 | if (linkService != nullptr) { |
| 438 | auto linkServiceOptions = linkService->getOptions(); |
| 439 | status.setBaseCongestionMarkingInterval(linkServiceOptions.baseCongestionMarkingInterval); |
| 440 | status.setDefaultCongestionThreshold(linkServiceOptions.defaultCongestionThreshold); |
| 441 | } |
| 442 | |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 443 | const face::FaceCounters& counters = face.getCounters(); |
| 444 | status.setNInInterests(counters.nInInterests) |
| 445 | .setNOutInterests(counters.nOutInterests) |
Junxiao Shi | f03d479 | 2017-04-06 16:41:22 +0000 | [diff] [blame] | 446 | .setNInData(counters.nInData) |
| 447 | .setNOutData(counters.nOutData) |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 448 | .setNInNacks(counters.nInNacks) |
| 449 | .setNOutNacks(counters.nOutNacks) |
| 450 | .setNInBytes(counters.nInBytes) |
| 451 | .setNOutBytes(counters.nOutBytes); |
| 452 | |
| 453 | return status; |
| 454 | } |
| 455 | |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 456 | template<typename FaceTraits> |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 457 | void |
| 458 | FaceManager::collectFaceProperties(const Face& face, FaceTraits& traits) |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 459 | { |
| 460 | traits.setFaceId(face.getId()) |
| 461 | .setRemoteUri(face.getRemoteUri().toString()) |
| 462 | .setLocalUri(face.getLocalUri().toString()) |
| 463 | .setFaceScope(face.getScope()) |
| 464 | .setFacePersistency(face.getPersistency()) |
| 465 | .setLinkType(face.getLinkType()); |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 466 | |
| 467 | // Set Flag bits |
| 468 | auto linkService = dynamic_cast<face::GenericLinkService*>(face.getLinkService()); |
| 469 | if (linkService != nullptr) { |
| 470 | auto linkServiceOptions = linkService->getOptions(); |
| 471 | traits.setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, linkServiceOptions.allowLocalFields); |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 472 | traits.setFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED, |
| 473 | linkServiceOptions.reliabilityOptions.isEnabled); |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 474 | traits.setFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED, |
| 475 | linkServiceOptions.allowCongestionMarking); |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 476 | } |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | void |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 480 | FaceManager::notifyFaceEvent(const Face& face, ndn::nfd::FaceEventKind kind) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 481 | { |
| 482 | ndn::nfd::FaceEventNotification notification; |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 483 | notification.setKind(kind); |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 484 | collectFaceProperties(face, notification); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 485 | |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 486 | m_postNotification(notification.wireEncode()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | void |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 490 | FaceManager::connectFaceStateChangeSignal(const Face& face) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 491 | { |
Davide Pesavento | 3cf75dc | 2018-03-17 00:38:03 -0400 | [diff] [blame] | 492 | using face::FaceState; |
| 493 | |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 494 | FaceId faceId = face.getId(); |
| 495 | m_faceStateChangeConn[faceId] = face.afterStateChange.connect( |
Davide Pesavento | 3cf75dc | 2018-03-17 00:38:03 -0400 | [diff] [blame] | 496 | [this, faceId, &face] (FaceState oldState, FaceState newState) { |
| 497 | if (newState == FaceState::UP) { |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 498 | notifyFaceEvent(face, ndn::nfd::FACE_EVENT_UP); |
| 499 | } |
Davide Pesavento | 3cf75dc | 2018-03-17 00:38:03 -0400 | [diff] [blame] | 500 | else if (newState == FaceState::DOWN) { |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 501 | notifyFaceEvent(face, ndn::nfd::FACE_EVENT_DOWN); |
| 502 | } |
Davide Pesavento | 3cf75dc | 2018-03-17 00:38:03 -0400 | [diff] [blame] | 503 | else if (newState == FaceState::CLOSED) { |
| 504 | // cannot use face.getId() because it may already be reset to INVALID_FACEID |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 505 | m_faceStateChangeConn.erase(faceId); |
| 506 | } |
| 507 | }); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 508 | } |
| 509 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 510 | } // namespace nfd |