Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 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 |
| 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 | |
| 26 | #ifndef NFD_RIB_RIB_MANAGER_HPP |
| 27 | #define NFD_RIB_RIB_MANAGER_HPP |
| 28 | |
| 29 | #include "rib.hpp" |
| 30 | #include "face-monitor.hpp" |
| 31 | #include "core/config-file.hpp" |
| 32 | |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 33 | #include <ndn-cxx/security/validator-config.hpp> |
| 34 | #include <ndn-cxx/management/nfd-controller.hpp> |
| 35 | #include <ndn-cxx/management/nfd-control-command.hpp> |
| 36 | #include <ndn-cxx/management/nfd-control-response.hpp> |
| 37 | #include <ndn-cxx/management/nfd-control-parameters.hpp> |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 38 | |
| 39 | namespace nfd { |
| 40 | namespace rib { |
| 41 | |
| 42 | using ndn::nfd::ControlCommand; |
| 43 | using ndn::nfd::ControlResponse; |
| 44 | using ndn::nfd::ControlParameters; |
| 45 | |
| 46 | class RibManager : noncopyable |
| 47 | { |
| 48 | public: |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame^] | 49 | class Error : public std::runtime_error |
| 50 | { |
| 51 | public: |
| 52 | explicit |
| 53 | Error(const std::string& what) |
| 54 | : std::runtime_error(what) |
| 55 | { |
| 56 | } |
| 57 | }; |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 58 | |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame^] | 59 | RibManager(); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 60 | |
| 61 | void |
| 62 | registerWithNfd(); |
| 63 | |
| 64 | void |
| 65 | enableLocalControlHeader(); |
| 66 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 67 | void |
| 68 | setConfigFile(ConfigFile& configFile); |
| 69 | |
| 70 | private: |
| 71 | void |
| 72 | onConfig(const ConfigSection& configSection, |
| 73 | bool isDryRun, |
| 74 | const std::string& filename); |
| 75 | |
| 76 | void |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame^] | 77 | onLocalhopRequest(const Interest& request); |
| 78 | |
| 79 | void |
| 80 | onLocalhostRequest(const Interest& request); |
| 81 | |
| 82 | void |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 83 | sendResponse(const Name& name, |
| 84 | const ControlResponse& response); |
| 85 | |
| 86 | void |
| 87 | sendResponse(const Name& name, |
| 88 | uint32_t code, |
| 89 | const std::string& text); |
| 90 | |
| 91 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 92 | registerEntry(const shared_ptr<const Interest>& request, |
| 93 | ControlParameters& parameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 94 | |
| 95 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 96 | unregisterEntry(const shared_ptr<const Interest>& request, |
| 97 | ControlParameters& parameters); |
| 98 | |
| 99 | void |
| 100 | onCommandValidated(const shared_ptr<const Interest>& request); |
| 101 | |
| 102 | void |
| 103 | onCommandValidationFailed(const shared_ptr<const Interest>& request, |
| 104 | const std::string& failureInfo); |
| 105 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 106 | |
| 107 | void |
| 108 | onCommandError(uint32_t code, const std::string& error, |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 109 | const shared_ptr<const Interest>& request, |
| 110 | const RibEntry& ribEntry); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 111 | |
| 112 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 113 | onRegSuccess(const shared_ptr<const Interest>& request, |
| 114 | const ControlParameters& parameters, |
| 115 | const RibEntry& ribEntry); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 116 | |
| 117 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 118 | onUnRegSuccess(const shared_ptr<const Interest>& request, |
| 119 | const ControlParameters& parameters, |
| 120 | const RibEntry& ribEntry); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 121 | |
| 122 | void |
| 123 | onControlHeaderSuccess(); |
| 124 | |
| 125 | void |
| 126 | onControlHeaderError(uint32_t code, const std::string& reason); |
| 127 | |
| 128 | void |
| 129 | setInterestFilterFailed(const Name& name, const std::string& msg); |
| 130 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 131 | static bool |
| 132 | extractParameters(const Name::Component& parameterComponent, |
| 133 | ControlParameters& extractedParameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 134 | |
| 135 | bool |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 136 | validateParameters(const ControlCommand& command, |
| 137 | ControlParameters& parameters); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 138 | |
| 139 | void |
| 140 | onNotification(const FaceEventNotification& notification); |
| 141 | |
| 142 | private: |
| 143 | Rib m_managedRib; |
Yingdi Yu | f4db0b5 | 2014-04-17 13:17:39 -0700 | [diff] [blame] | 144 | ndn::Face m_face; |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 145 | ndn::shared_ptr<ndn::nfd::Controller> m_nfdController; |
| 146 | ndn::KeyChain m_keyChain; |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame^] | 147 | ndn::ValidatorConfig m_localhostValidator; |
| 148 | ndn::ValidatorConfig m_localhopValidator; |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 149 | FaceMonitor m_faceMonitor; |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame^] | 150 | bool m_isLocalhopEnabled; |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 151 | |
| 152 | typedef boost::function<void(RibManager*, |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 153 | const shared_ptr<const Interest>& request, |
| 154 | ControlParameters& parameters)> VerbProcessor; |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 155 | |
| 156 | typedef std::map<name::Component, VerbProcessor> VerbDispatchTable; |
| 157 | |
| 158 | typedef std::pair<name::Component, VerbProcessor> VerbAndProcessor; |
| 159 | |
| 160 | |
| 161 | const VerbDispatchTable m_verbDispatch; |
| 162 | |
| 163 | static const Name COMMAND_PREFIX; // /localhost/nrd |
| 164 | static const Name REMOTE_COMMAND_PREFIX; // /localhop/nrd |
| 165 | |
| 166 | // number of components in an invalid, but not malformed, unsigned command. |
| 167 | // (/localhost/nrd + verb + options) = 4 |
| 168 | static const size_t COMMAND_UNSIGNED_NCOMPS; |
| 169 | |
| 170 | // number of components in a valid signed Interest. |
| 171 | // 8 with signed Interest support. |
| 172 | static const size_t COMMAND_SIGNED_NCOMPS; |
| 173 | |
| 174 | static const VerbAndProcessor COMMAND_VERBS[]; |
| 175 | }; |
| 176 | |
| 177 | } // namespace rib |
| 178 | } // namespace nfd |
| 179 | |
| 180 | #endif // NFD_RIB_RIB_MANAGER_HPP |