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