blob: 649ed4c9c4eac5ca02aa7238ce97363157cf6dc0 [file] [log] [blame]
Steve DiBenedettoabe9e972014-02-20 15:37:04 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * Copyright (c) 2014 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 *
10 * This file is part of NFD (Named Data Networking Forwarding Daemon).
11 * See AUTHORS.md for complete list of NFD authors and contributors.
12 *
13 * NFD is free software: you can redistribute it and/or modify it under the terms
14 * of the GNU General Public License as published by the Free Software Foundation,
15 * either version 3 of the License, or (at your option) any later version.
16 *
17 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
18 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 * PURPOSE. See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
23 **/
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070024
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070025#ifndef NFD_DAEMON_MGMT_FACE_MANAGER_HPP
26#define NFD_DAEMON_MGMT_FACE_MANAGER_HPP
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070027
28#include "common.hpp"
Steve DiBenedetto7564d972014-03-24 14:28:46 -060029#include "face/local-face.hpp"
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070030#include "mgmt/manager-base.hpp"
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -060031#include "mgmt/face-status-publisher.hpp"
Steve DiBenedettofbb40a82014-03-11 19:40:15 -060032#include "mgmt/notification-stream.hpp"
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070033
Alexander Afanasyev4a771362014-04-24 21:29:33 -070034#include <ndn-cxx/management/nfd-control-parameters.hpp>
35#include <ndn-cxx/management/nfd-control-response.hpp>
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070036
37namespace nfd {
38
39const std::string FACE_MANAGER_PRIVILEGE = "faces";
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -060040
Davide Pesavento52a18f92014-04-10 00:55:01 +020041class ConfigFile;
42class Face;
43class FaceTable;
Steve DiBenedetto7564d972014-03-24 14:28:46 -060044class LocalFace;
Davide Pesavento52a18f92014-04-10 00:55:01 +020045class NetworkInterfaceInfo;
46class ProtocolFactory;
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070047
48class FaceManager : public ManagerBase
49{
50public:
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -060051 class Error : public ManagerBase::Error
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070052 {
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -060053 public:
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070054 Error(const std::string& what) : ManagerBase::Error(what) {}
55 };
56
57 /**
58 * \throws FaceManager::Error if localPort is an invalid port number
59 */
60
61 FaceManager(FaceTable& faceTable,
Steve DiBenedetto2c2b8892014-02-27 11:46:48 -070062 shared_ptr<InternalFace> face);
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070063
Steve DiBenedetto4aca99c2014-03-11 11:27:54 -060064 virtual
65 ~FaceManager();
66
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070067 /** \brief Subscribe to a face management section(s) for the config file
68 */
69 void
70 setConfigFile(ConfigFile& configFile);
71
72 void
73 onFaceRequest(const Interest& request);
74
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -060075PUBLIC_WITH_TESTS_ELSE_PRIVATE:
76 void
77 listFaces(const Interest& request);
78
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070079PROTECTED_WITH_TESTS_ELSE_PRIVATE:
80
81 void
82 onValidatedFaceRequest(const shared_ptr<const Interest>& request);
83
84 VIRTUAL_WITH_TESTS void
Steve DiBenedetto7564d972014-03-24 14:28:46 -060085 createFace(const Interest& request,
86 ControlParameters& parameters);
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070087
88 VIRTUAL_WITH_TESTS void
Steve DiBenedetto7564d972014-03-24 14:28:46 -060089 destroyFace(const Interest& request,
90 ControlParameters& parameters);
91
92 VIRTUAL_WITH_TESTS bool
Steve DiBenedetto51d242a2014-03-31 13:46:43 -060093 extractLocalControlParameters(const Interest& request,
94 ControlParameters& parameters,
95 ControlCommand& command,
96 shared_ptr<LocalFace>& outFace,
97 LocalControlFeature& outFeature);
Steve DiBenedetto7564d972014-03-24 14:28:46 -060098
99 VIRTUAL_WITH_TESTS void
100 enableLocalControl(const Interest& request,
101 ControlParameters& parambeters);
102
103 VIRTUAL_WITH_TESTS void
104 disableLocalControl(const Interest& request,
105 ControlParameters& parameters);
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700106
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600107 void
108 ignoreUnsignedVerb(const Interest& request);
109
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700110 void
Alexander Afanasyevbbe3f0c2014-03-23 11:44:01 -0700111 addCreatedFaceToForwarder(const shared_ptr<Face>& newFace);
112
113 void
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700114 onCreated(const Name& requestName,
Steve DiBenedetto7564d972014-03-24 14:28:46 -0600115 ControlParameters& parameters,
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700116 const shared_ptr<Face>& newFace);
117
118 void
119 onConnectFailed(const Name& requestName, const std::string& reason);
120
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600121 void
122 onAddFace(shared_ptr<Face> face);
123
124 void
125 onRemoveFace(shared_ptr<Face> face);
126
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700127private:
128 void
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -0600129 onConfig(const ConfigSection& configSection, bool isDryRun, const std::string& filename);
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700130
131 void
132 processSectionUnix(const ConfigSection& configSection, bool isDryRun);
133
134 void
135 processSectionTcp(const ConfigSection& configSection, bool isDryRun);
136
137 void
Steve DiBenedetto4aca99c2014-03-11 11:27:54 -0600138 processSectionUdp(const ConfigSection& configSection,
139 bool isDryRun,
140 const std::list<shared_ptr<NetworkInterfaceInfo> >& nicList);
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700141
142 void
Steve DiBenedetto4aca99c2014-03-11 11:27:54 -0600143 processSectionEther(const ConfigSection& configSection,
144 bool isDryRun,
145 const std::list<shared_ptr<NetworkInterfaceInfo> >& nicList);
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700146
Wentao Shang53df1632014-04-21 12:01:32 -0700147 void
148 processSectionWebSocket(const ConfigSection& configSection, bool isDryRun);
149
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700150 /** \brief parse a config option that can be either "yes" or "no"
151 * \throw ConfigFile::Error value is neither "yes" nor "no"
152 * \return true if "yes", false if "no"
153 */
154 bool
155 parseYesNo(const ConfigSection::const_iterator& i,
156 const std::string& optionName,
157 const std::string& sectionName);
158
159private:
160 typedef std::map< std::string/*protocol*/, shared_ptr<ProtocolFactory> > FactoryMap;
161 FactoryMap m_factories;
162 FaceTable& m_faceTable;
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -0600163 FaceStatusPublisher m_statusPublisher;
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600164 NotificationStream m_notificationStream;
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700165
166 typedef function<void(FaceManager*,
Steve DiBenedetto7564d972014-03-24 14:28:46 -0600167 const Interest&,
168 ControlParameters&)> SignedVerbProcessor;
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700169
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -0600170 typedef std::map<Name::Component, SignedVerbProcessor> SignedVerbDispatchTable;
171 typedef std::pair<Name::Component, SignedVerbProcessor> SignedVerbAndProcessor;
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700172
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -0600173 typedef function<void(FaceManager*, const Interest&)> UnsignedVerbProcessor;
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700174
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -0600175 typedef std::map<Name::Component, UnsignedVerbProcessor> UnsignedVerbDispatchTable;
176 typedef std::pair<Name::Component, UnsignedVerbProcessor> UnsignedVerbAndProcessor;
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700177
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700178
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -0600179 const SignedVerbDispatchTable m_signedVerbDispatch;
180 const UnsignedVerbDispatchTable m_unsignedVerbDispatch;
181
182 static const Name COMMAND_PREFIX; // /localhost/nfd/faces
183
184 // number of components in an invalid signed command (i.e. should be signed, but isn't)
Steve DiBenedetto7564d972014-03-24 14:28:46 -0600185 // (/localhost/nfd/faces + verb + parameters) = 5
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700186 static const size_t COMMAND_UNSIGNED_NCOMPS;
187
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -0600188 // number of components in a valid signed command.
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700189 // (see UNSIGNED_NCOMPS), 9 with signed Interest support.
190 static const size_t COMMAND_SIGNED_NCOMPS;
191
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -0600192 static const SignedVerbAndProcessor SIGNED_COMMAND_VERBS[];
193 static const UnsignedVerbAndProcessor UNSIGNED_COMMAND_VERBS[];
194
195 static const Name LIST_COMMAND_PREFIX;
196 static const size_t LIST_COMMAND_NCOMPS;
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600197
198 static const Name EVENTS_COMMAND_PREFIX;
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700199};
200
201inline bool
202FaceManager::parseYesNo(const ConfigSection::const_iterator& i,
203 const std::string& optionName,
204 const std::string& sectionName)
205{
206 const std::string value = i->second.get_value<std::string>();
207 if (value == "yes")
208 {
209 return true;
210 }
211 else if (value == "no")
212 {
213 return false;
214 }
215
216 throw ConfigFile::Error("Invalid value for option \"" +
217 optionName + "\" in \"" +
218 sectionName + "\" section");
219
220}
221
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600222inline void
223FaceManager::ignoreUnsignedVerb(const Interest& request)
224{
225 // do nothing
226}
227
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700228} // namespace nfd
229
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700230#endif // NFD_DAEMON_MGMT_FACE_MANAGER_HPP