blob: e38ee3c22a0e18f5cc8ffbe9cd9bba08eb7858df [file] [log] [blame]
Alexander Afanasyev3ecec502014-04-16 13:42:44 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi1e46be32015-01-08 20:18:05 -07003 * Copyright (c) 2014-2015, 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 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
29#include "rib.hpp"
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070030#include "core/config-file.hpp"
Vince Lehmancd16c832014-07-23 15:14:55 -070031#include "rib-status-publisher.hpp"
Yanbiao Lic17de832014-11-21 17:51:45 -080032#include "remote-registrator.hpp"
Vince Lehman76c751c2014-11-18 17:36:38 -060033#include "fib-updater.hpp"
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070034
Alexander Afanasyev4a771362014-04-24 21:29:33 -070035#include <ndn-cxx/security/validator-config.hpp>
Alexander Afanasyev585e5a62014-08-12 11:49:31 -070036#include <ndn-cxx/management/nfd-face-monitor.hpp>
Alexander Afanasyev4a771362014-04-24 21:29:33 -070037#include <ndn-cxx/management/nfd-controller.hpp>
38#include <ndn-cxx/management/nfd-control-command.hpp>
39#include <ndn-cxx/management/nfd-control-response.hpp>
40#include <ndn-cxx/management/nfd-control-parameters.hpp>
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070041
42namespace nfd {
43namespace rib {
44
45using ndn::nfd::ControlCommand;
46using ndn::nfd::ControlResponse;
47using ndn::nfd::ControlParameters;
48
Alexander Afanasyev585e5a62014-08-12 11:49:31 -070049using ndn::nfd::FaceEventNotification;
50
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070051class RibManager : noncopyable
52{
53public:
Yingdi Yue5224e92014-04-29 18:04:02 -070054 class Error : public std::runtime_error
55 {
56 public:
57 explicit
58 Error(const std::string& what)
59 : std::runtime_error(what)
60 {
61 }
62 };
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070063
Vince Lehmanc1dfdb42015-07-16 12:17:36 -050064 RibManager(ndn::Face& face, ndn::KeyChain& keyChain);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070065
Vince Lehman26b215c2014-08-17 15:00:41 -050066 ~RibManager();
67
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070068 void
69 registerWithNfd();
70
71 void
72 enableLocalControlHeader();
73
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070074 void
75 setConfigFile(ConfigFile& configFile);
76
Vince Lehman76c751c2014-11-18 17:36:38 -060077 void
78 onRibUpdateSuccess(const RibUpdate& update);
Vince Lehman4387e782014-06-19 16:57:45 -050079
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070080 void
Vince Lehman76c751c2014-11-18 17:36:38 -060081 onRibUpdateFailure(const RibUpdate& update, uint32_t code, const std::string& error);
82
83private:
84 void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070085 onConfig(const ConfigSection& configSection,
86 bool isDryRun,
87 const std::string& filename);
88
89 void
Junxiao Shia3295742014-05-16 22:40:10 -070090 startListening(const Name& commandPrefix, const ndn::OnInterest& onRequest);
91
92 void
Yingdi Yue5224e92014-04-29 18:04:02 -070093 onLocalhopRequest(const Interest& request);
94
95 void
96 onLocalhostRequest(const Interest& request);
97
98 void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070099 sendResponse(const Name& name,
100 const ControlResponse& response);
101
102 void
103 sendResponse(const Name& name,
104 uint32_t code,
105 const std::string& text);
106
107 void
Vince Lehman4387e782014-06-19 16:57:45 -0500108 sendSuccessResponse(const shared_ptr<const Interest>& request,
109 const ControlParameters& parameters);
110
111 void
112 sendErrorResponse(uint32_t code, const std::string& error,
113 const shared_ptr<const Interest>& request);
114
115 void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700116 registerEntry(const shared_ptr<const Interest>& request,
117 ControlParameters& parameters);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700118
119 void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700120 unregisterEntry(const shared_ptr<const Interest>& request,
121 ControlParameters& parameters);
122
Vince Lehman76c751c2014-11-18 17:36:38 -0600123private:
Vince Lehman281ded72014-08-21 12:17:08 -0500124 void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700125 onCommandValidated(const shared_ptr<const Interest>& request);
126
127 void
128 onCommandValidationFailed(const shared_ptr<const Interest>& request,
129 const std::string& failureInfo);
130
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700131
132 void
133 onCommandError(uint32_t code, const std::string& error,
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700134 const shared_ptr<const Interest>& request,
Vince Lehman218be0a2015-01-15 17:25:20 -0600135 const Route& route);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700136
137 void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700138 onRegSuccess(const shared_ptr<const Interest>& request,
139 const ControlParameters& parameters,
Vince Lehman218be0a2015-01-15 17:25:20 -0600140 const Route& route);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700141
142 void
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700143 onUnRegSuccess(const shared_ptr<const Interest>& request,
144 const ControlParameters& parameters,
Vince Lehman218be0a2015-01-15 17:25:20 -0600145 const Route& route);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700146
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600147PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700148 void
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600149 onNrdCommandPrefixAddNextHopSuccess(const Name& prefix,
150 const ndn::nfd::ControlParameters& result);
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700151
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600152private:
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700153 void
154 onNrdCommandPrefixAddNextHopError(const Name& name, const std::string& msg);
155
156 void
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700157 onControlHeaderSuccess();
158
159 void
160 onControlHeaderError(uint32_t code, const std::string& reason);
Vince Lehman281ded72014-08-21 12:17:08 -0500161
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700162 static bool
163 extractParameters(const Name::Component& parameterComponent,
164 ControlParameters& extractedParameters);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700165
166 bool
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700167 validateParameters(const ControlCommand& command,
168 ControlParameters& parameters);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700169
170 void
171 onNotification(const FaceEventNotification& notification);
172
Vince Lehman76c751c2014-11-18 17:36:38 -0600173PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Vince Lehman4387e782014-06-19 16:57:45 -0500174 void
Vince Lehman76c751c2014-11-18 17:36:38 -0600175 onFaceDestroyedEvent(uint64_t faceId);
Alexander Afanasyev63108c42014-07-07 19:10:47 -0700176
Vince Lehman76c751c2014-11-18 17:36:38 -0600177private:
Vince Lehmancd16c832014-07-23 15:14:55 -0700178 void
179 listEntries(const Interest& request);
180
Vince Lehmancd613c52014-07-30 14:34:49 -0500181 void
Vince Lehman26b215c2014-08-17 15:00:41 -0500182 scheduleActiveFaceFetch(const time::seconds& timeToWait);
183
184 void
Vince Lehmancd613c52014-07-30 14:34:49 -0500185 fetchActiveFaces();
186
187 void
188 fetchSegments(const Data& data, shared_ptr<ndn::OBufferStream> buffer);
189
190 void
Vince Lehmancd613c52014-07-30 14:34:49 -0500191 onFetchFaceStatusTimeout();
192
Vince Lehman281ded72014-08-21 12:17:08 -0500193PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Vince Lehman26b215c2014-08-17 15:00:41 -0500194 /** \param buffer Face dataset contents
195 */
196 void
197 removeInvalidFaces(shared_ptr<ndn::OBufferStream> buffer);
198
199PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700200 Rib m_managedRib;
Vince Lehman281ded72014-08-21 12:17:08 -0500201
202private:
Vince Lehman72446ec2014-07-09 10:50:02 -0500203 ndn::Face& m_face;
Vince Lehmanc1dfdb42015-07-16 12:17:36 -0500204 ndn::KeyChain& m_keyChain;
Alexander Afanasyevb3893c92014-05-15 01:49:54 -0700205 ndn::nfd::Controller m_nfdController;
Yingdi Yue5224e92014-04-29 18:04:02 -0700206 ndn::ValidatorConfig m_localhostValidator;
207 ndn::ValidatorConfig m_localhopValidator;
Alexander Afanasyev585e5a62014-08-12 11:49:31 -0700208 ndn::nfd::FaceMonitor m_faceMonitor;
Yingdi Yue5224e92014-04-29 18:04:02 -0700209 bool m_isLocalhopEnabled;
Yanbiao Lic17de832014-11-21 17:51:45 -0800210 RemoteRegistrator m_remoteRegistrator;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700211
Vince Lehmancd16c832014-07-23 15:14:55 -0700212 RibStatusPublisher m_ribStatusPublisher;
213
Vince Lehman76c751c2014-11-18 17:36:38 -0600214PUBLIC_WITH_TESTS_ELSE_PRIVATE:
215 FibUpdater m_fibUpdater;
Vince Lehman4387e782014-06-19 16:57:45 -0500216
Vince Lehman76c751c2014-11-18 17:36:38 -0600217private:
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700218 typedef function<void(RibManager*,
219 const shared_ptr<const Interest>& request,
Vince Lehmancd16c832014-07-23 15:14:55 -0700220 ControlParameters& parameters)> SignedVerbProcessor;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700221
Vince Lehmancd16c832014-07-23 15:14:55 -0700222 typedef std::map<name::Component, SignedVerbProcessor> SignedVerbDispatchTable;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700223
Vince Lehmancd16c832014-07-23 15:14:55 -0700224 typedef std::pair<name::Component, SignedVerbProcessor> SignedVerbAndProcessor;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700225
226
Vince Lehmancd16c832014-07-23 15:14:55 -0700227 const SignedVerbDispatchTable m_signedVerbDispatch;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700228
229 static const Name COMMAND_PREFIX; // /localhost/nrd
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600230
231PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700232 static const Name REMOTE_COMMAND_PREFIX; // /localhop/nrd
233
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600234private:
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700235 // number of components in an invalid, but not malformed, unsigned command.
236 // (/localhost/nrd + verb + options) = 4
237 static const size_t COMMAND_UNSIGNED_NCOMPS;
238
239 // number of components in a valid signed Interest.
240 // 8 with signed Interest support.
241 static const size_t COMMAND_SIGNED_NCOMPS;
242
Vince Lehmancd16c832014-07-23 15:14:55 -0700243 static const SignedVerbAndProcessor SIGNED_COMMAND_VERBS[];
244
245 typedef function<void(RibManager*, const Interest&)> UnsignedVerbProcessor;
246 typedef std::map<Name::Component, UnsignedVerbProcessor> UnsignedVerbDispatchTable;
247 typedef std::pair<Name::Component, UnsignedVerbProcessor> UnsignedVerbAndProcessor;
248
249 const UnsignedVerbDispatchTable m_unsignedVerbDispatch;
250 static const UnsignedVerbAndProcessor UNSIGNED_COMMAND_VERBS[];
251
252 static const Name LIST_COMMAND_PREFIX;
253 static const size_t LIST_COMMAND_NCOMPS;
Vince Lehmancd613c52014-07-30 14:34:49 -0500254
255 static const Name FACES_LIST_DATASET_PREFIX;
256
Vince Lehman26b215c2014-08-17 15:00:41 -0500257 static const time::seconds ACTIVE_FACE_FETCH_INTERVAL;
Junxiao Shi1e46be32015-01-08 20:18:05 -0700258 scheduler::EventId m_activeFaceFetchEvent;
Vince Lehman26b215c2014-08-17 15:00:41 -0500259
260 typedef std::set<uint64_t> FaceIdSet;
261 /** \brief contains FaceIds with one or more Routes in the RIB
262 */
263 FaceIdSet m_registeredFaces;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700264};
265
266} // namespace rib
267} // namespace nfd
268
269#endif // NFD_RIB_RIB_MANAGER_HPP