Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 3 | * 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 | * The University of Memphis |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 24 | */ |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_MGMT_FACE_MANAGER_HPP |
| 27 | #define NFD_DAEMON_MGMT_FACE_MANAGER_HPP |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 28 | |
| 29 | #include "common.hpp" |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 30 | #include "face/local-face.hpp" |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 31 | #include "mgmt/manager-base.hpp" |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 32 | #include "mgmt/face-status-publisher.hpp" |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 33 | #include "mgmt/channel-status-publisher.hpp" |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 34 | #include "mgmt/notification-stream.hpp" |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 35 | |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 36 | #include <ndn-cxx/management/nfd-control-parameters.hpp> |
| 37 | #include <ndn-cxx/management/nfd-control-response.hpp> |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 38 | |
| 39 | namespace nfd { |
| 40 | |
| 41 | const std::string FACE_MANAGER_PRIVILEGE = "faces"; |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 42 | |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 43 | class ConfigFile; |
| 44 | class Face; |
| 45 | class FaceTable; |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 46 | class LocalFace; |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 47 | class NetworkInterfaceInfo; |
| 48 | class ProtocolFactory; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 49 | |
| 50 | class FaceManager : public ManagerBase |
| 51 | { |
| 52 | public: |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 53 | class Error : public ManagerBase::Error |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 54 | { |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 55 | public: |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 56 | Error(const std::string& what) : ManagerBase::Error(what) {} |
| 57 | }; |
| 58 | |
| 59 | /** |
| 60 | * \throws FaceManager::Error if localPort is an invalid port number |
| 61 | */ |
| 62 | |
| 63 | FaceManager(FaceTable& faceTable, |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 64 | shared_ptr<InternalFace> face); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 65 | |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 66 | virtual |
| 67 | ~FaceManager(); |
| 68 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 69 | /** \brief Subscribe to a face management section(s) for the config file |
| 70 | */ |
| 71 | void |
| 72 | setConfigFile(ConfigFile& configFile); |
| 73 | |
| 74 | void |
| 75 | onFaceRequest(const Interest& request); |
| 76 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 77 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| 78 | void |
| 79 | listFaces(const Interest& request); |
| 80 | |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 81 | void |
| 82 | listChannels(const Interest& request); |
| 83 | |
Alexander Afanasyev | 5959b01 | 2014-06-02 19:18:12 +0300 | [diff] [blame] | 84 | shared_ptr<ProtocolFactory> |
| 85 | findFactory(const std::string& protocol); |
| 86 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 87 | PROTECTED_WITH_TESTS_ELSE_PRIVATE: |
| 88 | |
| 89 | void |
| 90 | onValidatedFaceRequest(const shared_ptr<const Interest>& request); |
| 91 | |
| 92 | VIRTUAL_WITH_TESTS void |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 93 | createFace(const Interest& request, |
| 94 | ControlParameters& parameters); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 95 | |
| 96 | VIRTUAL_WITH_TESTS void |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 97 | destroyFace(const Interest& request, |
| 98 | ControlParameters& parameters); |
| 99 | |
| 100 | VIRTUAL_WITH_TESTS bool |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 101 | extractLocalControlParameters(const Interest& request, |
| 102 | ControlParameters& parameters, |
| 103 | ControlCommand& command, |
| 104 | shared_ptr<LocalFace>& outFace, |
| 105 | LocalControlFeature& outFeature); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 106 | |
| 107 | VIRTUAL_WITH_TESTS void |
| 108 | enableLocalControl(const Interest& request, |
| 109 | ControlParameters& parambeters); |
| 110 | |
| 111 | VIRTUAL_WITH_TESTS void |
| 112 | disableLocalControl(const Interest& request, |
| 113 | ControlParameters& parameters); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 114 | |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 115 | void |
| 116 | ignoreUnsignedVerb(const Interest& request); |
| 117 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 118 | void |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 119 | addCreatedFaceToForwarder(const shared_ptr<Face>& newFace); |
| 120 | |
| 121 | void |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 122 | onCreated(const Name& requestName, |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 123 | ControlParameters& parameters, |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 124 | const shared_ptr<Face>& newFace); |
| 125 | |
| 126 | void |
| 127 | onConnectFailed(const Name& requestName, const std::string& reason); |
| 128 | |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 129 | void |
| 130 | onAddFace(shared_ptr<Face> face); |
| 131 | |
| 132 | void |
| 133 | onRemoveFace(shared_ptr<Face> face); |
| 134 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 135 | private: |
| 136 | void |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 137 | onConfig(const ConfigSection& configSection, bool isDryRun, const std::string& filename); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 138 | |
| 139 | void |
| 140 | processSectionUnix(const ConfigSection& configSection, bool isDryRun); |
| 141 | |
| 142 | void |
| 143 | processSectionTcp(const ConfigSection& configSection, bool isDryRun); |
| 144 | |
| 145 | void |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 146 | processSectionUdp(const ConfigSection& configSection, |
| 147 | bool isDryRun, |
| 148 | const std::list<shared_ptr<NetworkInterfaceInfo> >& nicList); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 149 | |
| 150 | void |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 151 | processSectionEther(const ConfigSection& configSection, |
| 152 | bool isDryRun, |
| 153 | const std::list<shared_ptr<NetworkInterfaceInfo> >& nicList); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 154 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 155 | void |
| 156 | processSectionWebSocket(const ConfigSection& configSection, bool isDryRun); |
| 157 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 158 | /** \brief parse a config option that can be either "yes" or "no" |
| 159 | * \throw ConfigFile::Error value is neither "yes" nor "no" |
| 160 | * \return true if "yes", false if "no" |
| 161 | */ |
| 162 | bool |
| 163 | parseYesNo(const ConfigSection::const_iterator& i, |
| 164 | const std::string& optionName, |
| 165 | const std::string& sectionName); |
| 166 | |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 167 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 168 | typedef std::map< std::string/*protocol*/, shared_ptr<ProtocolFactory> > FactoryMap; |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 169 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 170 | FactoryMap m_factories; |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 171 | |
| 172 | private: |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 173 | FaceTable& m_faceTable; |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 174 | FaceStatusPublisher m_faceStatusPublisher; |
| 175 | ChannelStatusPublisher m_channelStatusPublisher; |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 176 | NotificationStream m_notificationStream; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 177 | |
| 178 | typedef function<void(FaceManager*, |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 179 | const Interest&, |
| 180 | ControlParameters&)> SignedVerbProcessor; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 181 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 182 | typedef std::map<Name::Component, SignedVerbProcessor> SignedVerbDispatchTable; |
| 183 | typedef std::pair<Name::Component, SignedVerbProcessor> SignedVerbAndProcessor; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 184 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 185 | typedef function<void(FaceManager*, const Interest&)> UnsignedVerbProcessor; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 186 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 187 | typedef std::map<Name::Component, UnsignedVerbProcessor> UnsignedVerbDispatchTable; |
| 188 | typedef std::pair<Name::Component, UnsignedVerbProcessor> UnsignedVerbAndProcessor; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 189 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 190 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 191 | const SignedVerbDispatchTable m_signedVerbDispatch; |
| 192 | const UnsignedVerbDispatchTable m_unsignedVerbDispatch; |
| 193 | |
| 194 | static const Name COMMAND_PREFIX; // /localhost/nfd/faces |
| 195 | |
| 196 | // number of components in an invalid signed command (i.e. should be signed, but isn't) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 197 | // (/localhost/nfd/faces + verb + parameters) = 5 |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 198 | static const size_t COMMAND_UNSIGNED_NCOMPS; |
| 199 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 200 | // number of components in a valid signed command. |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 201 | // (see UNSIGNED_NCOMPS), 9 with signed Interest support. |
| 202 | static const size_t COMMAND_SIGNED_NCOMPS; |
| 203 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 204 | static const SignedVerbAndProcessor SIGNED_COMMAND_VERBS[]; |
| 205 | static const UnsignedVerbAndProcessor UNSIGNED_COMMAND_VERBS[]; |
| 206 | |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 207 | static const Name FACES_LIST_DATASET_PREFIX; |
| 208 | static const size_t FACES_LIST_DATASET_NCOMPS; |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 209 | |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 210 | static const Name CHANNELS_LIST_DATASET_PREFIX; |
| 211 | static const size_t CHANNELS_LIST_DATASET_NCOMPS; |
| 212 | |
| 213 | static const Name FACE_EVENTS_PREFIX; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 214 | }; |
| 215 | |
| 216 | inline bool |
| 217 | FaceManager::parseYesNo(const ConfigSection::const_iterator& i, |
| 218 | const std::string& optionName, |
| 219 | const std::string& sectionName) |
| 220 | { |
| 221 | const std::string value = i->second.get_value<std::string>(); |
| 222 | if (value == "yes") |
| 223 | { |
| 224 | return true; |
| 225 | } |
| 226 | else if (value == "no") |
| 227 | { |
| 228 | return false; |
| 229 | } |
| 230 | |
| 231 | throw ConfigFile::Error("Invalid value for option \"" + |
| 232 | optionName + "\" in \"" + |
| 233 | sectionName + "\" section"); |
| 234 | |
| 235 | } |
| 236 | |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 237 | inline void |
| 238 | FaceManager::ignoreUnsignedVerb(const Interest& request) |
| 239 | { |
| 240 | // do nothing |
| 241 | } |
| 242 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 243 | } // namespace nfd |
| 244 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 245 | #endif // NFD_DAEMON_MGMT_FACE_MANAGER_HPP |