blob: 0b4eb6f27946302b325a8f456f7caa6a9b5aa429 [file] [log] [blame]
Alexander Afanasyev3ecec502014-04-16 13:42:44 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento9f8b10e2018-08-22 08:45:37 +00002/*
Junxiao Shifeddc3c2019-01-17 19:06:00 +00003 * Copyright (c) 2014-2019, Regents of the University of California,
Junxiao Shi1e46be32015-01-08 20:18:05 -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.
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070010 *
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/>.
Vince12e49462014-06-09 13:29:32 -050024 */
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070025
26#ifndef NFD_RIB_RIB_MANAGER_HPP
27#define NFD_RIB_RIB_MANAGER_HPP
28
Vince Lehman76c751c2014-11-18 17:36:38 -060029#include "fib-updater.hpp"
Nick Gordon9fcf1232017-03-10 22:30:20 +000030#include "rib.hpp"
31
32#include "core/config-file.hpp"
33#include "core/manager-base.hpp"
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070034
Alexander Afanasyev4a771362014-04-24 21:29:33 -070035#include <ndn-cxx/security/validator-config.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000036#include <ndn-cxx/mgmt/nfd/controller.hpp>
Nick Gordon9fcf1232017-03-10 22:30:20 +000037#include <ndn-cxx/mgmt/nfd/face-event-notification.hpp>
38#include <ndn-cxx/mgmt/nfd/face-monitor.hpp>
Junxiao Shifeddc3c2019-01-17 19:06:00 +000039#include <ndn-cxx/util/scheduler.hpp>
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070040
41namespace nfd {
42namespace rib {
43
Junxiao Shif4cfed12018-08-22 23:26:29 +000044/**
45 * @brief Serve commands and datasets in NFD RIB management protocol.
46 */
Yanbiao Licf0db022016-01-29 00:54:25 -080047class RibManager : public nfd::ManagerBase
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070048{
49public:
Yingdi Yue5224e92014-04-29 18:04:02 -070050 class Error : public std::runtime_error
51 {
52 public:
Junxiao Shif4cfed12018-08-22 23:26:29 +000053 using std::runtime_error::runtime_error;
Yingdi Yue5224e92014-04-29 18:04:02 -070054 };
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070055
Davide Pesaventoe1bdc082018-10-11 21:20:23 -040056 RibManager(Rib& rib, ndn::Face& face, ndn::KeyChain& keyChain, ndn::nfd::Controller& nfdController,
57 Dispatcher& dispatcher, ndn::util::Scheduler& scheduler);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070058
Junxiao Shif4cfed12018-08-22 23:26:29 +000059 /**
60 * @brief Apply localhost_security configuration.
61 */
62 void
63 applyLocalhostConfig(const ConfigSection& section, const std::string& filename);
Vince Lehman26b215c2014-08-17 15:00:41 -050064
Junxiao Shif4cfed12018-08-22 23:26:29 +000065 /**
66 * @brief Apply localhop_security configuration and allow accepting commands on
67 * /localhop/nfd/rib prefix.
68 */
69 void
70 enableLocalhop(const ConfigSection& section, const std::string& filename);
71
72 /**
73 * @brief Disallow accepting commands on /localhop/nfd/rib prefix.
74 */
75 void
76 disableLocalhop();
77
78 /**
79 * @brief Start accepting commands and dataset requests.
80 */
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070081 void
82 registerWithNfd();
83
Junxiao Shif4cfed12018-08-22 23:26:29 +000084 /**
85 * @brief Enable NDNLP IncomingFaceId field in order to support self-registration commands.
86 */
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070087 void
Eric Newberryecc45cb2016-11-08 19:57:12 +000088 enableLocalFields();
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070089
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +000090public: // self-learning support
91 enum class SlAnnounceResult {
92 OK, ///< RIB and FIB have been updated
93 ERROR, ///< unspecified error
94 VALIDATION_FAILURE, ///< the announcement cannot be verified against the trust schema
95 EXPIRED, ///< the announcement has expired
96 NOT_FOUND, ///< route does not exist (slRenew only)
97 };
98
99 using SlAnnounceCallback = std::function<void(SlAnnounceResult res)>;
100 using SlFindAnnCallback = std::function<void(optional<ndn::PrefixAnnouncement>)>;
101
102 /** \brief Insert a route by prefix announcement from self-learning strategy.
103 * \param pa A prefix announcement. It must contain the Data.
104 * \param faceId Face on which the announcement arrives.
105 * \param maxLifetime Maximum route lifetime as imposed by self-learning strategy.
106 * \param cb Callback to receive the operation result.
107 *
108 * If \p pa passes validation and is unexpired, inserts or replaces a route for the announced
109 * name and faceId whose lifetime is set to the earlier of now+maxLifetime or prefix
110 * announcement expiration time, updates FIB, and invokes \p cb with SlAnnounceResult::OK.
111 * In case \p pa expires when validation completes, invokes \p cb with SlAnnounceResult::EXPIRED.
112 * If \p pa cannot be verified by the trust schema given in rib.localhop_security config key,
113 * or the relevant config has not been loaded via \c enableLocalHop, invokes \p cb with
114 * SlAnnounceResult::VALIDATION_FAILURE.
115 *
116 * Self-learning strategy invokes this method after receiving a Data carrying a prefix
117 * announcement.
118 */
119 void
120 slAnnounce(const ndn::PrefixAnnouncement& pa, uint64_t faceId, time::milliseconds maxLifetime,
121 const SlAnnounceCallback& cb);
122
123 /** \brief Renew a route created by prefix announcement from self-learning strategy.
124 * \param name Data name, for finding RIB entry by longest-prefix-match.
125 * \param faceId Nexthop face.
126 * \param maxLifetime Maximum route lifetime as imposed by self-learning strategy.
127 * \param cb Callback to receive the operation result.
128 *
129 * If the specified route exists, prolongs its lifetime to the earlier of now+maxLifetime or
130 * prefix announcement expiration time, and invokes \p cb with SlAnnounceResult::OK.
131 * If the prefix announcement has expired, invokes \p cb with SlAnnounceResult::EXPIRED.
132 * If the route is not found, invokes \p cb with SlAnnounceResult::NOT_FOUND.
133 *
134 * Self-learning strategy invokes this method after an Interest forwarded via a learned route
135 * is satisfied.
136 *
137 * \bug In current implementation, if an slAnnounce operation is in progress to create a Route
138 * or replace a prefix announcement, slRenew could fail because Route does not exist in
139 * existing RIB, or overwrite the new prefix announcement with an old one.
140 */
141 void
142 slRenew(const Name& name, uint64_t faceId, time::milliseconds maxLifetime,
143 const SlAnnounceCallback& cb);
144
145 /** \brief Retrieve an outgoing prefix announcement for self-learning strategy.
146 * \param name Data name.
147 * \param cb Callback to receive a prefix announcement that announces a prefix of \p name, or
148 * nullopt if no RIB entry is found by longest-prefix-match of \p name.
149 *
150 * Self-learning strategy invokes this method before sending a Data in reply to a discovery
151 * Interest, so as to attach a prefix announcement onto that Data.
152 *
153 * \bug In current implementation, if an slAnnounce operation is in progress, slFindAnn does not
154 * wait for that operation to complete and its result reflects the prior RIB state.
155 */
156 void
157 slFindAnn(const Name& name, const SlFindAnnCallback& cb) const;
158
Junxiao Shi52009042018-09-10 12:33:56 +0000159private: // RIB and FibUpdater actions
160 enum class RibUpdateResult
161 {
162 OK,
163 ERROR,
164 EXPIRED,
165 };
166
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000167 static SlAnnounceResult
168 getSlAnnounceResultFromRibUpdateResult(RibUpdateResult r);
169
Junxiao Shi52009042018-09-10 12:33:56 +0000170 /** \brief Start adding a route to RIB and FIB.
171 * \param name route name
172 * \param route route parameters; may contain absolute expiration time
173 * \param expires relative expiration time; if specified, overwrites \c route.expires
174 * \param done completion callback
175 */
Vince Lehman76c751c2014-11-18 17:36:38 -0600176 void
Junxiao Shi52009042018-09-10 12:33:56 +0000177 beginAddRoute(const Name& name, Route route, optional<time::nanoseconds> expires,
178 const std::function<void(RibUpdateResult)>& done);
179
180 /** \brief Start removing a route from RIB and FIB.
181 * \param name route name
182 * \param route route parameters
183 * \param done completion callback
184 */
185 void
186 beginRemoveRoute(const Name& name, const Route& route,
187 const std::function<void(RibUpdateResult)>& done);
Vince Lehman4387e782014-06-19 16:57:45 -0500188
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700189 void
Junxiao Shi52009042018-09-10 12:33:56 +0000190 beginRibUpdate(const RibUpdate& update, const std::function<void(RibUpdateResult)>& done);
Vince Lehman76c751c2014-11-18 17:36:38 -0600191
Junxiao Shi52009042018-09-10 12:33:56 +0000192private: // management Dispatcher related
Vince Lehman76c751c2014-11-18 17:36:38 -0600193 void
Yanbiao Licf0db022016-01-29 00:54:25 -0800194 registerTopPrefix(const Name& topPrefix);
195
Junxiao Shi52009042018-09-10 12:33:56 +0000196 /** \brief Serve rib/register command.
197 */
Yanbiao Licf0db022016-01-29 00:54:25 -0800198 void
199 registerEntry(const Name& topPrefix, const Interest& interest,
200 ControlParameters parameters,
201 const ndn::mgmt::CommandContinuation& done);
Junxiao Shia3295742014-05-16 22:40:10 -0700202
Junxiao Shi52009042018-09-10 12:33:56 +0000203 /** \brief Serve rib/unregister command.
204 */
Junxiao Shia3295742014-05-16 22:40:10 -0700205 void
Yanbiao Licf0db022016-01-29 00:54:25 -0800206 unregisterEntry(const Name& topPrefix, const Interest& interest,
207 ControlParameters parameters,
208 const ndn::mgmt::CommandContinuation& done);
Yingdi Yue5224e92014-04-29 18:04:02 -0700209
Junxiao Shi52009042018-09-10 12:33:56 +0000210 /** \brief Serve rib/list dataset.
211 */
Yingdi Yue5224e92014-04-29 18:04:02 -0700212 void
Yanbiao Licf0db022016-01-29 00:54:25 -0800213 listEntries(const Name& topPrefix, const Interest& interest,
214 ndn::mgmt::StatusDatasetContext& context);
Yingdi Yue5224e92014-04-29 18:04:02 -0700215
216 void
Yanbiao Licf0db022016-01-29 00:54:25 -0800217 setFaceForSelfRegistration(const Interest& request, ControlParameters& parameters);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700218
Nick Gordon9fcf1232017-03-10 22:30:20 +0000219 ndn::mgmt::Authorization
Junxiao Shi21738402016-08-19 19:48:00 +0000220 makeAuthorization(const std::string& verb) override;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700221
Yanbiao Licf0db022016-01-29 00:54:25 -0800222private: // Face monitor
Vince Lehman26b215c2014-08-17 15:00:41 -0500223 void
Vince Lehmancd613c52014-07-30 14:34:49 -0500224 fetchActiveFaces();
225
226 void
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700227 onFetchActiveFacesFailure(uint32_t code, const std::string& reason);
Vince Lehmancd613c52014-07-30 14:34:49 -0500228
Yanbiao Licf0db022016-01-29 00:54:25 -0800229 void
230 onFaceDestroyedEvent(uint64_t faceId);
231
Vince Lehman281ded72014-08-21 12:17:08 -0500232PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Yanbiao Licf0db022016-01-29 00:54:25 -0800233 void
234 scheduleActiveFaceFetch(const time::seconds& timeToWait);
235
Vince Lehman26b215c2014-08-17 15:00:41 -0500236 void
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700237 removeInvalidFaces(const std::vector<ndn::nfd::FaceStatus>& activeFaces);
Vince Lehman26b215c2014-08-17 15:00:41 -0500238
Yanbiao Licf0db022016-01-29 00:54:25 -0800239 void
Nick Gordon9fcf1232017-03-10 22:30:20 +0000240 onNotification(const ndn::nfd::FaceEventNotification& notification);
Yanbiao Licf0db022016-01-29 00:54:25 -0800241
Yanbiao Lif48d0802018-06-01 03:00:02 -0700242public:
243 static const Name LOCALHOP_TOP_PREFIX;
244
Yanbiao Licf0db022016-01-29 00:54:25 -0800245private:
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000246 Rib& m_rib;
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000247 ndn::KeyChain& m_keyChain;
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000248 ndn::nfd::Controller& m_nfdController;
Junxiao Shif4cfed12018-08-22 23:26:29 +0000249 Dispatcher& m_dispatcher;
Davide Pesaventoe1bdc082018-10-11 21:20:23 -0400250 ndn::util::Scheduler& m_scheduler;
Junxiao Shif4cfed12018-08-22 23:26:29 +0000251
Yanbiao Licf0db022016-01-29 00:54:25 -0800252 ndn::nfd::FaceMonitor m_faceMonitor;
Yingdi Yue5224e92014-04-29 18:04:02 -0700253 ndn::ValidatorConfig m_localhostValidator;
254 ndn::ValidatorConfig m_localhopValidator;
Junxiao Shif4cfed12018-08-22 23:26:29 +0000255 bool m_isLocalhopEnabled;
Vince Lehman4387e782014-06-19 16:57:45 -0500256
Davide Pesaventoe1bdc082018-10-11 21:20:23 -0400257 ndn::util::scheduler::ScopedEventId m_activeFaceFetchEvent;
258 using FaceIdSet = std::set<uint64_t>;
259 FaceIdSet m_registeredFaces; ///< contains FaceIds with one or more Routes in the RIB
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700260};
261
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +0000262std::ostream&
263operator<<(std::ostream& os, RibManager::SlAnnounceResult res);
264
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700265} // namespace rib
266} // namespace nfd
267
268#endif // NFD_RIB_RIB_MANAGER_HPP