Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 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. |
| 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/>. |
| 24 | */ |
| 25 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_MGMT_MANAGER_BASE_HPP |
| 27 | #define NFD_DAEMON_MGMT_MANAGER_BASE_HPP |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 28 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 29 | #include "command-authenticator.hpp" |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 30 | |
| 31 | #include <ndn-cxx/mgmt/dispatcher.hpp> |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 32 | #include <ndn-cxx/mgmt/nfd/control-command.hpp> |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 33 | #include <ndn-cxx/mgmt/nfd/control-parameters.hpp> |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 34 | #include <ndn-cxx/mgmt/nfd/control-response.hpp> |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 35 | |
| 36 | namespace nfd { |
| 37 | |
| 38 | using ndn::mgmt::Dispatcher; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 39 | using ndn::nfd::ControlCommand; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 40 | using ndn::nfd::ControlParameters; |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 41 | using ndn::nfd::ControlResponse; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 42 | |
| 43 | /** |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 44 | * @brief A collection of common functions shared by all NFD managers, |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 45 | * such as communicating with the dispatcher and command validator. |
| 46 | */ |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 47 | class ManagerBase : noncopyable |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 48 | { |
| 49 | public: |
| 50 | class Error : public std::runtime_error |
| 51 | { |
| 52 | public: |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 53 | using std::runtime_error::runtime_error; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 54 | }; |
| 55 | |
Davide Pesavento | d396b61 | 2017-02-20 22:11:50 -0500 | [diff] [blame] | 56 | virtual |
| 57 | ~ManagerBase(); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 58 | |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 59 | const std::string& |
| 60 | getModule() const |
| 61 | { |
| 62 | return m_module; |
| 63 | } |
| 64 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 65 | protected: |
| 66 | /** |
| 67 | * @warning if you use this constructor, you MUST override makeAuthorization() |
| 68 | */ |
| 69 | ManagerBase(const std::string& module, Dispatcher& dispatcher); |
| 70 | |
| 71 | ManagerBase(const std::string& module, Dispatcher& dispatcher, |
| 72 | CommandAuthenticator& authenticator); |
| 73 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 74 | PUBLIC_WITH_TESTS_ELSE_PROTECTED: // registrations to the dispatcher |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 75 | // difference from mgmt::ControlCommand: accepts nfd::ControlParameters |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 76 | using ControlCommandHandler = std::function<void(const ControlCommand& command, |
| 77 | const Name& prefix, const Interest& interest, |
| 78 | const ControlParameters& parameters, |
| 79 | const ndn::mgmt::CommandContinuation done)>; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 80 | |
| 81 | template<typename Command> |
| 82 | void |
| 83 | registerCommandHandler(const std::string& verb, |
| 84 | const ControlCommandHandler& handler); |
| 85 | |
| 86 | void |
| 87 | registerStatusDatasetHandler(const std::string& verb, |
| 88 | const ndn::mgmt::StatusDatasetHandler& handler); |
| 89 | |
| 90 | ndn::mgmt::PostNotification |
| 91 | registerNotificationStream(const std::string& verb); |
| 92 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 93 | PUBLIC_WITH_TESTS_ELSE_PROTECTED: // helpers |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 94 | /** |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 95 | * @brief Extracts the requester from a ControlCommand request. |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 96 | * |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 97 | * This is called after the signature has been validated. |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 98 | * |
| 99 | * @param interest a request for ControlCommand |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 100 | * @param accept callback of successful validation, takes the requester string as a argument |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 101 | */ |
| 102 | void |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 103 | extractRequester(const Interest& interest, ndn::mgmt::AcceptContinuation accept); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 104 | |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 105 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| 106 | /** |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 107 | * @brief Returns an authorization function for a specific management module and verb. |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 108 | */ |
| 109 | virtual ndn::mgmt::Authorization |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 110 | makeAuthorization(const std::string& verb); |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 111 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 112 | /** |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 113 | * @brief Validates the @p parameters for a given @p command. |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 114 | * |
| 115 | * @param parameters the original ControlParameters |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 116 | * @return whether the original ControlParameters can be validated |
| 117 | */ |
| 118 | static bool |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 119 | validateParameters(const ControlCommand& command, |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 120 | const ndn::mgmt::ControlParameters& parameters); |
| 121 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 122 | /** |
| 123 | * @brief Handles a control command. |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 124 | */ |
| 125 | static void |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 126 | handleCommand(shared_ptr<ControlCommand> command, |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 127 | const ControlCommandHandler& handler, |
| 128 | const Name& prefix, const Interest& interest, |
| 129 | const ndn::mgmt::ControlParameters& params, |
| 130 | ndn::mgmt::CommandContinuation done); |
| 131 | |
| 132 | /** |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 133 | * @brief Generates the relative prefix for a handler by appending the verb name to the module name. |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 134 | * |
| 135 | * @param verb the verb name |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 136 | * @return the generated relative prefix |
| 137 | */ |
| 138 | PartialName |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 139 | makeRelPrefix(const std::string& verb) |
| 140 | { |
| 141 | return PartialName(m_module).append(verb); |
| 142 | } |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 143 | |
| 144 | private: |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 145 | std::string m_module; |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 146 | Dispatcher& m_dispatcher; |
| 147 | CommandAuthenticator* m_authenticator = nullptr; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 148 | }; |
| 149 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 150 | template<typename Command> |
| 151 | inline void |
| 152 | ManagerBase::registerCommandHandler(const std::string& verb, |
| 153 | const ControlCommandHandler& handler) |
| 154 | { |
| 155 | auto command = make_shared<Command>(); |
| 156 | |
| 157 | m_dispatcher.addControlCommand<ControlParameters>( |
| 158 | makeRelPrefix(verb), |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 159 | makeAuthorization(verb), |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 160 | bind(&ManagerBase::validateParameters, std::cref(*command), _1), |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 161 | bind(&ManagerBase::handleCommand, command, handler, _1, _2, _3, _4)); |
| 162 | } |
| 163 | |
| 164 | } // namespace nfd |
| 165 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 166 | #endif // NFD_DAEMON_MGMT_MANAGER_BASE_HPP |