blob: b7b22f2cbe8dc9e9469a14f3a0d4c99cd79a4645 [file] [log] [blame]
Yanbiao Li73860e32015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberry944f38b2017-07-20 20:54:22 -04002/*
Davide Pesavento78ddcab2019-02-28 22:00:03 -05003 * Copyright (c) 2014-2019, Regents of the University of California,
Yanbiao Li73860e32015-08-19 16:30:16 -07004 * 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 Pesaventoa3148082018-04-12 18:21:54 -040027
28#include "core/logger.hpp"
Junxiao Shi40cb61c2015-09-23 18:36:45 -070029#include "face/generic-link-service.hpp"
Junxiao Shib8590312016-12-29 21:22:25 +000030#include "face/protocol-factory.hpp"
Yukai Tu0a49d342015-09-13 12:54:22 +080031#include "fw/face-table.hpp"
Yanbiao Li73860e32015-08-19 16:30:16 -070032
Junxiao Shicbc8e942016-09-06 03:17:45 +000033#include <ndn-cxx/lp/tags.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000034#include <ndn-cxx/mgmt/nfd/channel-status.hpp>
Davide Pesavento28181322018-11-08 16:44:50 -050035#include <ndn-cxx/mgmt/nfd/face-event-notification.hpp>
36#include <ndn-cxx/mgmt/nfd/face-query-filter.hpp>
37#include <ndn-cxx/mgmt/nfd/face-status.hpp>
Yanbiao Li73860e32015-08-19 16:30:16 -070038
Yanbiao Li73860e32015-08-19 16:30:16 -070039namespace nfd {
40
Davide Pesaventoa3148082018-04-12 18:21:54 -040041NFD_LOG_INIT(FaceManager);
Yanbiao Li73860e32015-08-19 16:30:16 -070042
Junxiao Shiea47bde2017-01-26 17:49:16 +000043FaceManager::FaceManager(FaceSystem& faceSystem,
Davide Pesavento78ddcab2019-02-28 22:00:03 -050044 Dispatcher& dispatcher, CommandAuthenticator& authenticator)
45 : ManagerBase("faces", dispatcher, authenticator)
Junxiao Shiea47bde2017-01-26 17:49:16 +000046 , m_faceSystem(faceSystem)
47 , m_faceTable(faceSystem.getFaceTable())
Yanbiao Li73860e32015-08-19 16:30:16 -070048{
Yanbiao Li58ba3f92017-02-15 14:27:18 +000049 // register handlers for ControlCommand
Davide Pesavento28181322018-11-08 16:44:50 -050050 registerCommandHandler<ndn::nfd::FaceCreateCommand>("create", bind(&FaceManager::createFace, this, _4, _5));
51 registerCommandHandler<ndn::nfd::FaceUpdateCommand>("update", bind(&FaceManager::updateFace, this, _3, _4, _5));
52 registerCommandHandler<ndn::nfd::FaceDestroyCommand>("destroy", bind(&FaceManager::destroyFace, this, _4, _5));
Yanbiao Li73860e32015-08-19 16:30:16 -070053
Yanbiao Li58ba3f92017-02-15 14:27:18 +000054 // register handlers for StatusDataset
Davide Pesavento28181322018-11-08 16:44:50 -050055 registerStatusDatasetHandler("list", bind(&FaceManager::listFaces, this, _3));
56 registerStatusDatasetHandler("channels", bind(&FaceManager::listChannels, this, _3));
57 registerStatusDatasetHandler("query", bind(&FaceManager::queryFaces, this, _2, _3));
Yanbiao Li73860e32015-08-19 16:30:16 -070058
Yanbiao Li58ba3f92017-02-15 14:27:18 +000059 // register notification stream
Junxiao Shiae04d342016-07-19 13:20:22 +000060 m_postNotification = registerNotificationStream("events");
Eric Newberry1b4ba052016-10-07 23:04:07 -070061 m_faceAddConn = m_faceTable.afterAdd.connect([this] (const Face& face) {
62 connectFaceStateChangeSignal(face);
63 notifyFaceEvent(face, ndn::nfd::FACE_EVENT_CREATED);
64 });
65 m_faceRemoveConn = m_faceTable.beforeRemove.connect([this] (const Face& face) {
66 notifyFaceEvent(face, ndn::nfd::FACE_EVENT_DESTROYED);
67 });
Yanbiao Li73860e32015-08-19 16:30:16 -070068}
69
70void
Davide Pesavento28181322018-11-08 16:44:50 -050071FaceManager::createFace(const ControlParameters& parameters,
Yanbiao Li73860e32015-08-19 16:30:16 -070072 const ndn::mgmt::CommandContinuation& done)
73{
Eric Newberry78e32b02017-04-01 14:34:44 +000074 FaceUri remoteUri;
75 if (!remoteUri.parse(parameters.getUri())) {
76 NFD_LOG_TRACE("failed to parse remote URI: " << parameters.getUri());
Eric Newberry42602412016-08-27 09:33:18 -070077 done(ControlResponse(400, "Malformed command"));
78 return;
Yanbiao Li73860e32015-08-19 16:30:16 -070079 }
80
Eric Newberry78e32b02017-04-01 14:34:44 +000081 if (!remoteUri.isCanonical()) {
82 NFD_LOG_TRACE("received non-canonical remote URI: " << remoteUri.toString());
83 done(ControlResponse(400, "Non-canonical remote URI"));
Eric Newberry42602412016-08-27 09:33:18 -070084 return;
Yanbiao Li73860e32015-08-19 16:30:16 -070085 }
86
Davide Pesavento87fc0f82018-04-11 23:43:51 -040087 optional<FaceUri> localUri;
Eric Newberry78e32b02017-04-01 14:34:44 +000088 if (parameters.hasLocalUri()) {
89 localUri = FaceUri{};
90
91 if (!localUri->parse(parameters.getLocalUri())) {
92 NFD_LOG_TRACE("failed to parse local URI: " << parameters.getLocalUri());
93 done(ControlResponse(400, "Malformed command"));
94 return;
95 }
96
97 if (!localUri->isCanonical()) {
98 NFD_LOG_TRACE("received non-canonical local URI: " << localUri->toString());
99 done(ControlResponse(400, "Non-canonical local URI"));
100 return;
101 }
102 }
103
Davide Pesaventoe5eebad2017-04-06 20:23:26 -0400104 face::ProtocolFactory* factory = m_faceSystem.getFactoryByScheme(remoteUri.getScheme());
Junxiao Shib8590312016-12-29 21:22:25 +0000105 if (factory == nullptr) {
Eric Newberry78e32b02017-04-01 14:34:44 +0000106 NFD_LOG_TRACE("received create request for unsupported protocol: " << remoteUri.getScheme());
Eric Newberry42602412016-08-27 09:33:18 -0700107 done(ControlResponse(406, "Unsupported protocol"));
108 return;
Yanbiao Li73860e32015-08-19 16:30:16 -0700109 }
110
Davide Pesavento15b55052018-01-27 19:09:28 -0500111 face::FaceParams faceParams;
112 faceParams.persistency = parameters.getFacePersistency();
Eric Newberry0c3e57b2018-01-25 20:54:46 -0700113 if (parameters.hasBaseCongestionMarkingInterval()) {
114 faceParams.baseCongestionMarkingInterval = parameters.getBaseCongestionMarkingInterval();
115 }
116 if (parameters.hasDefaultCongestionThreshold()) {
117 faceParams.defaultCongestionThreshold = parameters.getDefaultCongestionThreshold();
118 }
Eric Newberry812d6152018-06-06 15:06:01 -0700119 if (parameters.hasMtu()) {
120 faceParams.mtu = parameters.getMtu();
121 }
Davide Pesavento15b55052018-01-27 19:09:28 -0500122 faceParams.wantLocalFields = parameters.hasFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) &&
123 parameters.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED);
124 faceParams.wantLpReliability = parameters.hasFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED) &&
125 parameters.getFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED);
Eric Newberry0c3e57b2018-01-25 20:54:46 -0700126 if (parameters.hasFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED)) {
127 faceParams.wantCongestionMarking = parameters.getFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED);
128 }
Yanbiao Li73860e32015-08-19 16:30:16 -0700129 try {
Davide Pesavento15b55052018-01-27 19:09:28 -0500130 factory->createFace({remoteUri, localUri, faceParams},
Davide Pesavento28181322018-11-08 16:44:50 -0500131 [this, parameters, done] (const auto& face) {
132 this->afterCreateFaceSuccess(face, parameters, done);
133 },
134 [done] (uint32_t status, const std::string& reason) {
135 NFD_LOG_DEBUG("Face creation failed: " << reason);
136 done(ControlResponse(status, reason));
137 });
Yanbiao Li73860e32015-08-19 16:30:16 -0700138 }
139 catch (const std::runtime_error& error) {
Eric Newberry42602412016-08-27 09:33:18 -0700140 NFD_LOG_ERROR("Face creation failed: " << error.what());
141 done(ControlResponse(500, "Face creation failed due to internal error"));
142 return;
Yanbiao Li73860e32015-08-19 16:30:16 -0700143 }
144 catch (const std::logic_error& error) {
Eric Newberry42602412016-08-27 09:33:18 -0700145 NFD_LOG_ERROR("Face creation failed: " << error.what());
146 done(ControlResponse(500, "Face creation failed due to internal error"));
147 return;
Yanbiao Li73860e32015-08-19 16:30:16 -0700148 }
149}
150
Davide Pesavento28181322018-11-08 16:44:50 -0500151template<typename T>
152static void
153copyMtu(const Face& face, T& to)
154{
155 auto transport = face.getTransport();
156 BOOST_ASSERT(transport != nullptr);
157
158 if (transport->getMtu() > 0) {
159 to.setMtu(std::min(static_cast<size_t>(transport->getMtu()), ndn::MAX_NDN_PACKET_SIZE));
160 }
161 else if (transport->getMtu() == face::MTU_UNLIMITED) {
162 to.setMtu(ndn::MAX_NDN_PACKET_SIZE);
163 }
164}
165
166static ControlParameters
167makeUpdateFaceResponse(const Face& face)
168{
169 ControlParameters params;
170 params.setFaceId(face.getId())
171 .setFacePersistency(face.getPersistency());
172
173 auto linkService = dynamic_cast<face::GenericLinkService*>(face.getLinkService());
174 if (linkService != nullptr) {
175 const auto& options = linkService->getOptions();
176 params.setBaseCongestionMarkingInterval(options.baseCongestionMarkingInterval)
177 .setDefaultCongestionThreshold(options.defaultCongestionThreshold)
178 .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, options.allowLocalFields, false)
179 .setFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED, options.reliabilityOptions.isEnabled, false)
180 .setFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED, options.allowCongestionMarking, false);
181 }
182
183 return params;
184}
185
186static ControlParameters
187makeCreateFaceResponse(const Face& face)
188{
189 ControlParameters params = makeUpdateFaceResponse(face);
190 params.setUri(face.getRemoteUri().toString())
191 .setLocalUri(face.getLocalUri().toString());
192
193 copyMtu(face, params);
194
195 return params;
196}
197
Yanbiao Li73860e32015-08-19 16:30:16 -0700198void
Davide Pesavento28181322018-11-08 16:44:50 -0500199FaceManager::afterCreateFaceSuccess(const shared_ptr<Face>& face,
200 const ControlParameters& parameters,
Yanbiao Li73860e32015-08-19 16:30:16 -0700201 const ndn::mgmt::CommandContinuation& done)
202{
Davide Pesavento28181322018-11-08 16:44:50 -0500203 if (face->getId() != face::INVALID_FACEID) { // Face already exists
Yanbiao Li58ba3f92017-02-15 14:27:18 +0000204 NFD_LOG_TRACE("Attempted to create duplicate face of " << face->getId());
Davide Pesavento28181322018-11-08 16:44:50 -0500205 ControlParameters response = makeCreateFaceResponse(*face);
Yanbiao Li58ba3f92017-02-15 14:27:18 +0000206 done(ControlResponse(409, "Face with remote URI already exists").setBody(response.wireEncode()));
207 return;
208 }
209
Eric Newberryf40551a2016-09-05 15:41:16 -0700210 // If scope non-local and flags set to enable local fields, request shouldn't
211 // have made it this far
212 BOOST_ASSERT(face->getScope() == ndn::nfd::FACE_SCOPE_LOCAL ||
213 !parameters.hasFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) ||
214 (parameters.hasFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) &&
215 !parameters.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED)));
216
217 m_faceTable.add(face);
218
Davide Pesavento28181322018-11-08 16:44:50 -0500219 ControlParameters response = makeCreateFaceResponse(*face);
Eric Newberry42602412016-08-27 09:33:18 -0700220 done(ControlResponse(200, "OK").setBody(response.wireEncode()));
221}
222
Davide Pesavento28181322018-11-08 16:44:50 -0500223static void
224updateLinkServiceOptions(Face& face, const ControlParameters& parameters)
Eric Newberry42602412016-08-27 09:33:18 -0700225{
Davide Pesavento28181322018-11-08 16:44:50 -0500226 auto linkService = dynamic_cast<face::GenericLinkService*>(face.getLinkService());
227 if (linkService == nullptr) {
228 return;
229 }
230 auto options = linkService->getOptions();
Eric Newberry42602412016-08-27 09:33:18 -0700231
Davide Pesavento28181322018-11-08 16:44:50 -0500232 if (parameters.hasFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) &&
233 face.getScope() == ndn::nfd::FACE_SCOPE_LOCAL) {
234 options.allowLocalFields = parameters.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED);
235 }
236 if (parameters.hasFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED)) {
237 options.reliabilityOptions.isEnabled = parameters.getFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED);
238 }
239 if (parameters.hasFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED)) {
240 options.allowCongestionMarking = parameters.getFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED);
241 }
242 if (parameters.hasBaseCongestionMarkingInterval()) {
243 options.baseCongestionMarkingInterval = parameters.getBaseCongestionMarkingInterval();
244 }
245 if (parameters.hasDefaultCongestionThreshold()) {
246 options.defaultCongestionThreshold = parameters.getDefaultCongestionThreshold();
247 }
248
249 linkService->setOptions(options);
Yanbiao Li73860e32015-08-19 16:30:16 -0700250}
251
252void
Davide Pesavento28181322018-11-08 16:44:50 -0500253FaceManager::updateFace(const Interest& interest,
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700254 const ControlParameters& parameters,
255 const ndn::mgmt::CommandContinuation& done)
256{
257 FaceId faceId = parameters.getFaceId();
Davide Pesavento28181322018-11-08 16:44:50 -0500258 if (faceId == 0) { // Self-update
259 auto incomingFaceIdTag = interest.getTag<lp::IncomingFaceIdTag>();
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700260 if (incomingFaceIdTag == nullptr) {
261 NFD_LOG_TRACE("unable to determine face for self-update");
262 done(ControlResponse(404, "No FaceId specified and IncomingFaceId not available"));
263 return;
264 }
265 faceId = *incomingFaceIdTag;
266 }
267
268 Face* face = m_faceTable.get(faceId);
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700269 if (face == nullptr) {
270 NFD_LOG_TRACE("invalid face specified");
271 done(ControlResponse(404, "Specified face does not exist"));
272 return;
273 }
274
275 // Verify validity of requested changes
276 ControlParameters response;
277 bool areParamsValid = true;
278
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700279 if (parameters.hasFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) &&
280 parameters.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED) &&
281 face->getScope() != ndn::nfd::FACE_SCOPE_LOCAL) {
282 NFD_LOG_TRACE("received request to enable local fields on non-local face");
283 areParamsValid = false;
284 response.setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED,
285 parameters.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED));
286 }
287
Yanbiao Li58ba3f92017-02-15 14:27:18 +0000288 // check whether the requested FacePersistency change is valid if it's present
289 if (parameters.hasFacePersistency()) {
290 auto persistency = parameters.getFacePersistency();
291 if (!face->getTransport()->canChangePersistencyTo(persistency)) {
292 NFD_LOG_TRACE("cannot change face persistency to " << persistency);
293 areParamsValid = false;
294 response.setFacePersistency(persistency);
295 }
296 }
297
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700298 if (!areParamsValid) {
299 done(ControlResponse(409, "Invalid properties specified").setBody(response.wireEncode()));
300 return;
301 }
302
303 // All specified properties are valid, so make changes
Yanbiao Li58ba3f92017-02-15 14:27:18 +0000304 if (parameters.hasFacePersistency()) {
305 face->setPersistency(parameters.getFacePersistency());
306 }
Davide Pesavento28181322018-11-08 16:44:50 -0500307 updateLinkServiceOptions(*face, parameters);
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700308
Davide Pesavento28181322018-11-08 16:44:50 -0500309 // Prepare and send ControlResponse
310 response = makeUpdateFaceResponse(*face);
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700311 done(ControlResponse(200, "OK").setBody(response.wireEncode()));
312}
313
314void
Davide Pesavento28181322018-11-08 16:44:50 -0500315FaceManager::destroyFace(const ControlParameters& parameters,
Junxiao Shi40cb61c2015-09-23 18:36:45 -0700316 const ndn::mgmt::CommandContinuation& done)
317{
Junxiao Shi5b43f9a2016-07-19 13:15:56 +0000318 Face* face = m_faceTable.get(parameters.getFaceId());
319 if (face != nullptr) {
320 face->close();
Junxiao Shi40cb61c2015-09-23 18:36:45 -0700321 }
322
323 done(ControlResponse(200, "OK").setBody(parameters.wireEncode()));
324}
325
Davide Pesavento28181322018-11-08 16:44:50 -0500326template<typename T>
327static void
328copyFaceProperties(const Face& face, T& to)
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700329{
Davide Pesavento28181322018-11-08 16:44:50 -0500330 to.setFaceId(face.getId())
331 .setRemoteUri(face.getRemoteUri().toString())
332 .setLocalUri(face.getLocalUri().toString())
333 .setFaceScope(face.getScope())
334 .setFacePersistency(face.getPersistency())
335 .setLinkType(face.getLinkType());
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700336
Davide Pesavento28181322018-11-08 16:44:50 -0500337 auto linkService = dynamic_cast<face::GenericLinkService*>(face.getLinkService());
338 if (linkService != nullptr) {
339 const auto& options = linkService->getOptions();
340 to.setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, options.allowLocalFields)
341 .setFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED, options.reliabilityOptions.isEnabled)
342 .setFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED, options.allowCongestionMarking);
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700343 }
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700344}
345
Davide Pesavento28181322018-11-08 16:44:50 -0500346static ndn::nfd::FaceStatus
347makeFaceStatus(const Face& face, const time::steady_clock::TimePoint& now)
Yanbiao Li58ba3f92017-02-15 14:27:18 +0000348{
Davide Pesavento28181322018-11-08 16:44:50 -0500349 ndn::nfd::FaceStatus status;
350 copyFaceProperties(face, status);
351
352 auto expirationTime = face.getExpirationTime();
353 if (expirationTime != time::steady_clock::TimePoint::max()) {
354 status.setExpirationPeriod(std::max(0_ms,
355 time::duration_cast<time::milliseconds>(expirationTime - now)));
356 }
357
Yanbiao Li58ba3f92017-02-15 14:27:18 +0000358 auto linkService = dynamic_cast<face::GenericLinkService*>(face.getLinkService());
Davide Pesavento28181322018-11-08 16:44:50 -0500359 if (linkService != nullptr) {
360 const auto& options = linkService->getOptions();
361 status.setBaseCongestionMarkingInterval(options.baseCongestionMarkingInterval)
362 .setDefaultCongestionThreshold(options.defaultCongestionThreshold);
Eric Newberry812d6152018-06-06 15:06:01 -0700363 }
364
Davide Pesavento28181322018-11-08 16:44:50 -0500365 copyMtu(face, status);
366
367 const auto& counters = face.getCounters();
368 status.setNInInterests(counters.nInInterests)
369 .setNOutInterests(counters.nOutInterests)
370 .setNInData(counters.nInData)
371 .setNOutData(counters.nOutData)
372 .setNInNacks(counters.nInNacks)
373 .setNOutNacks(counters.nOutNacks)
374 .setNInBytes(counters.nInBytes)
375 .setNOutBytes(counters.nOutBytes);
376
377 return status;
Yanbiao Li58ba3f92017-02-15 14:27:18 +0000378}
379
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700380void
Davide Pesavento28181322018-11-08 16:44:50 -0500381FaceManager::listFaces(ndn::mgmt::StatusDatasetContext& context)
Yanbiao Li73860e32015-08-19 16:30:16 -0700382{
Eric Newberryc64d30a2015-12-26 11:07:27 -0700383 auto now = time::steady_clock::now();
Davide Pesavento28181322018-11-08 16:44:50 -0500384 for (const auto& face : m_faceTable) {
385 ndn::nfd::FaceStatus status = makeFaceStatus(face, now);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700386 context.append(status.wireEncode());
Yanbiao Li73860e32015-08-19 16:30:16 -0700387 }
388 context.end();
389}
390
391void
Davide Pesavento28181322018-11-08 16:44:50 -0500392FaceManager::listChannels(ndn::mgmt::StatusDatasetContext& context)
Yanbiao Li73860e32015-08-19 16:30:16 -0700393{
Davide Pesavento28181322018-11-08 16:44:50 -0500394 auto factories = m_faceSystem.listProtocolFactories();
Davide Pesaventoe5eebad2017-04-06 20:23:26 -0400395 for (const auto* factory : factories) {
Junxiao Shib8590312016-12-29 21:22:25 +0000396 for (const auto& channel : factory->getChannels()) {
397 ndn::nfd::ChannelStatus entry;
398 entry.setLocalUri(channel->getUri().toString());
399 context.append(entry.wireEncode());
Yanbiao Li73860e32015-08-19 16:30:16 -0700400 }
401 }
Yanbiao Li73860e32015-08-19 16:30:16 -0700402 context.end();
403}
404
Davide Pesavento28181322018-11-08 16:44:50 -0500405static bool
406matchFilter(const ndn::nfd::FaceQueryFilter& filter, const Face& face)
Yanbiao Li73860e32015-08-19 16:30:16 -0700407{
408 if (filter.hasFaceId() &&
Junxiao Shib84e6742016-07-19 13:16:22 +0000409 filter.getFaceId() != static_cast<uint64_t>(face.getId())) {
Yanbiao Li73860e32015-08-19 16:30:16 -0700410 return false;
411 }
412
413 if (filter.hasUriScheme() &&
Junxiao Shib84e6742016-07-19 13:16:22 +0000414 filter.getUriScheme() != face.getRemoteUri().getScheme() &&
415 filter.getUriScheme() != face.getLocalUri().getScheme()) {
Yanbiao Li73860e32015-08-19 16:30:16 -0700416 return false;
417 }
418
419 if (filter.hasRemoteUri() &&
Junxiao Shib84e6742016-07-19 13:16:22 +0000420 filter.getRemoteUri() != face.getRemoteUri().toString()) {
Yanbiao Li73860e32015-08-19 16:30:16 -0700421 return false;
422 }
423
424 if (filter.hasLocalUri() &&
Junxiao Shib84e6742016-07-19 13:16:22 +0000425 filter.getLocalUri() != face.getLocalUri().toString()) {
Yanbiao Li73860e32015-08-19 16:30:16 -0700426 return false;
427 }
428
429 if (filter.hasFaceScope() &&
Junxiao Shib84e6742016-07-19 13:16:22 +0000430 filter.getFaceScope() != face.getScope()) {
Yanbiao Li73860e32015-08-19 16:30:16 -0700431 return false;
432 }
433
434 if (filter.hasFacePersistency() &&
Junxiao Shib84e6742016-07-19 13:16:22 +0000435 filter.getFacePersistency() != face.getPersistency()) {
Yanbiao Li73860e32015-08-19 16:30:16 -0700436 return false;
437 }
438
439 if (filter.hasLinkType() &&
Junxiao Shib84e6742016-07-19 13:16:22 +0000440 filter.getLinkType() != face.getLinkType()) {
Yanbiao Li73860e32015-08-19 16:30:16 -0700441 return false;
442 }
443
444 return true;
445}
446
Junxiao Shicde37ad2015-12-24 01:02:05 -0700447void
Davide Pesavento28181322018-11-08 16:44:50 -0500448FaceManager::queryFaces(const Interest& interest,
449 ndn::mgmt::StatusDatasetContext& context)
Junxiao Shida93f1f2015-11-11 06:13:16 -0700450{
Davide Pesavento28181322018-11-08 16:44:50 -0500451 ndn::nfd::FaceQueryFilter faceFilter;
452 try {
453 faceFilter.wireDecode(interest.getName()[-1].blockFromValue());
Eric Newberry1b4ba052016-10-07 23:04:07 -0700454 }
Davide Pesavento28181322018-11-08 16:44:50 -0500455 catch (const tlv::Error& e) {
456 NFD_LOG_DEBUG("Malformed query filter: " << e.what());
457 return context.reject(ControlResponse(400, "Malformed filter"));
458 }
459
460 auto now = time::steady_clock::now();
461 for (const auto& face : m_faceTable) {
462 if (matchFilter(faceFilter, face)) {
463 ndn::nfd::FaceStatus status = makeFaceStatus(face, now);
464 context.append(status.wireEncode());
465 }
466 }
467 context.end();
Junxiao Shida93f1f2015-11-11 06:13:16 -0700468}
469
470void
Eric Newberry1b4ba052016-10-07 23:04:07 -0700471FaceManager::notifyFaceEvent(const Face& face, ndn::nfd::FaceEventKind kind)
Yanbiao Li73860e32015-08-19 16:30:16 -0700472{
473 ndn::nfd::FaceEventNotification notification;
Eric Newberry1b4ba052016-10-07 23:04:07 -0700474 notification.setKind(kind);
Davide Pesavento28181322018-11-08 16:44:50 -0500475 copyFaceProperties(face, notification);
Yanbiao Li73860e32015-08-19 16:30:16 -0700476
Junxiao Shiae04d342016-07-19 13:20:22 +0000477 m_postNotification(notification.wireEncode());
Yanbiao Li73860e32015-08-19 16:30:16 -0700478}
479
480void
Eric Newberry1b4ba052016-10-07 23:04:07 -0700481FaceManager::connectFaceStateChangeSignal(const Face& face)
Yanbiao Li73860e32015-08-19 16:30:16 -0700482{
Davide Pesavento3cf75dc2018-03-17 00:38:03 -0400483 using face::FaceState;
484
Eric Newberry1b4ba052016-10-07 23:04:07 -0700485 FaceId faceId = face.getId();
486 m_faceStateChangeConn[faceId] = face.afterStateChange.connect(
Davide Pesavento3cf75dc2018-03-17 00:38:03 -0400487 [this, faceId, &face] (FaceState oldState, FaceState newState) {
488 if (newState == FaceState::UP) {
Eric Newberry1b4ba052016-10-07 23:04:07 -0700489 notifyFaceEvent(face, ndn::nfd::FACE_EVENT_UP);
490 }
Davide Pesavento3cf75dc2018-03-17 00:38:03 -0400491 else if (newState == FaceState::DOWN) {
Eric Newberry1b4ba052016-10-07 23:04:07 -0700492 notifyFaceEvent(face, ndn::nfd::FACE_EVENT_DOWN);
493 }
Davide Pesavento3cf75dc2018-03-17 00:38:03 -0400494 else if (newState == FaceState::CLOSED) {
495 // cannot use face.getId() because it may already be reset to INVALID_FACEID
Eric Newberry1b4ba052016-10-07 23:04:07 -0700496 m_faceStateChangeConn.erase(faceId);
497 }
498 });
Yanbiao Li73860e32015-08-19 16:30:16 -0700499}
500
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200501} // namespace nfd