NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
rib-manager.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2021, 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.
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 #ifndef NFD_DAEMON_MGMT_RIB_MANAGER_HPP
27 #define NFD_DAEMON_MGMT_RIB_MANAGER_HPP
28 
29 #include "manager-base.hpp"
30 #include "rib/route.hpp"
31 
37 
38 namespace nfd {
39 
40 namespace rib {
41 class Rib;
42 class RibUpdate;
43 } // namespace rib
44 
49 class RibManager final : public ManagerBase
50 {
51 public:
52  RibManager(rib::Rib& rib, ndn::Face& face, ndn::KeyChain& keyChain,
53  ndn::nfd::Controller& nfdController, Dispatcher& dispatcher);
54 
58  void
59  applyLocalhostConfig(const ConfigSection& section, const std::string& filename);
60 
65  void
66  enableLocalhop(const ConfigSection& section, const std::string& filename);
67 
71  void
72  disableLocalhop();
73 
77  void
78  applyPaConfig(const ConfigSection& section, const std::string& filename);
79 
83  void
84  registerWithNfd();
85 
89  void
90  enableLocalFields();
91 
92 public: // self-learning support
93  enum class SlAnnounceResult {
94  OK,
95  ERROR,
96  VALIDATION_FAILURE,
97  EXPIRED,
98  NOT_FOUND,
99  };
100 
101  using SlAnnounceCallback = std::function<void(SlAnnounceResult res)>;
102  using SlFindAnnCallback = std::function<void(optional<ndn::PrefixAnnouncement>)>;
103 
121  void
122  slAnnounce(const ndn::PrefixAnnouncement& pa, uint64_t faceId, time::milliseconds maxLifetime,
123  const SlAnnounceCallback& cb);
124 
143  void
144  slRenew(const Name& name, uint64_t faceId, time::milliseconds maxLifetime,
145  const SlAnnounceCallback& cb);
146 
158  void
159  slFindAnn(const Name& name, const SlFindAnnCallback& cb) const;
160 
161 private: // RIB and FibUpdater actions
162  enum class RibUpdateResult
163  {
164  OK,
165  ERROR,
166  EXPIRED,
167  };
168 
169  static SlAnnounceResult
170  getSlAnnounceResultFromRibUpdateResult(RibUpdateResult r);
171 
178  void
179  beginAddRoute(const Name& name, rib::Route route, optional<time::nanoseconds> expires,
180  const std::function<void(RibUpdateResult)>& done);
181 
187  void
188  beginRemoveRoute(const Name& name, const rib::Route& route,
189  const std::function<void(RibUpdateResult)>& done);
190 
191  void
192  beginRibUpdate(const rib::RibUpdate& update,
193  const std::function<void(RibUpdateResult)>& done);
194 
195 private: // management Dispatcher related
196  void
197  registerTopPrefix(const Name& topPrefix);
198 
201  void
202  registerEntry(const Name& topPrefix, const Interest& interest,
203  ControlParameters parameters,
204  const ndn::mgmt::CommandContinuation& done);
205 
208  void
209  unregisterEntry(const Name& topPrefix, const Interest& interest,
210  ControlParameters parameters,
211  const ndn::mgmt::CommandContinuation& done);
212 
215  void
216  listEntries(const Name& topPrefix, const Interest& interest,
218 
219  void
220  setFaceForSelfRegistration(const Interest& request, ControlParameters& parameters);
221 
223  makeAuthorization(const std::string& verb) final;
224 
225 private: // Face monitor
226  void
227  fetchActiveFaces();
228 
229  void
230  onFetchActiveFacesFailure(uint32_t code, const std::string& reason);
231 
233  void
234  scheduleActiveFaceFetch(const time::seconds& timeToWait);
235 
236  void
237  removeInvalidFaces(const std::vector<ndn::nfd::FaceStatus>& activeFaces);
238 
239  void
240  onNotification(const ndn::nfd::FaceEventNotification& notification);
241 
242 public:
243  static const Name LOCALHOP_TOP_PREFIX;
244 
245 private:
246  rib::Rib& m_rib;
247  ndn::KeyChain& m_keyChain;
248  ndn::nfd::Controller& m_nfdController;
249  Dispatcher& m_dispatcher;
250 
251  ndn::nfd::FaceMonitor m_faceMonitor;
252  ndn::ValidatorConfig m_localhostValidator;
253  ndn::ValidatorConfig m_localhopValidator;
254  ndn::ValidatorConfig m_paValidator;
255  bool m_isLocalhopEnabled;
256 
257  scheduler::ScopedEventId m_activeFaceFetchEvent;
258 };
259 
260 std::ostream&
261 operator<<(std::ostream& os, RibManager::SlAnnounceResult res);
262 
263 } // namespace nfd
264 
265 #endif // NFD_DAEMON_MGMT_RIB_MANAGER_HPP
boost::chrono::seconds seconds
Definition: time.hpp:47
A collection of common functions shared by all NFD managers, such as communicating with the dispatche...
represents the Routing Information Base
Definition: rib.hpp:59
represents parameters in a ControlCommand request or response
ndn security KeyChain
Definition: key-chain.cpp:70
represents a dispatcher on server side of NFD Management protocol
Definition: dispatcher.hpp:130
std::ostream & operator<<(std::ostream &os, const FibUpdate &update)
Definition: fib-update.hpp:74
Helper for validator that uses SignedInterest + CommandInterest + Config policy and NetworkFetcher...
represents a Face status change notification
Represents an Interest packet.
Definition: interest.hpp:48
A subscriber for Face status change notification stream.
A prefix announcement object that represents an application&#39;s intent of registering a prefix toward i...
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:39
#define NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE
Definition: common.hpp:41
represents a route for a name prefix
Definition: route.hpp:43
Provide a communication channel with local or remote NDN forwarder.
Definition: face.hpp:90
NFD Management protocol client.
Definition: controller.hpp:51
boost::property_tree::ptree ConfigSection
a config file section
Implements the RIB Management of NFD Management Protocol.
Definition: rib-manager.hpp:49
Represents an absolute name.
Definition: name.hpp:41
std::function< void(const ControlResponse &resp)> CommandContinuation
a function to be called after ControlCommandHandler completes
Definition: dispatcher.hpp:95
RibManager
Definition: rib-manager.cpp:43
std::function< void(SlAnnounceResult res)> SlAnnounceCallback
static const Name LOCALHOP_TOP_PREFIX
std::function< void(optional< ndn::PrefixAnnouncement >)> SlFindAnnCallback
Provides a context for generating the response to a StatusDataset request.
std::function< void(const Name &prefix, const Interest &interest, const ControlParameters *params, const AcceptContinuation &accept, const RejectContinuation &reject)> Authorization
a function that performs authorization
Definition: dispatcher.hpp:77
boost::chrono::milliseconds milliseconds
Definition: time.hpp:48