Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 2 | /* |
Junxiao Shi | ea47bde | 2017-01-26 17:49:16 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [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 | |
| 26 | #include "nfd.hpp" |
| 27 | |
Alexander Afanasyev | 3f41ade | 2015-06-29 18:31:22 -0700 | [diff] [blame] | 28 | #include "core/global-io.hpp" |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 29 | #include "core/logger-factory.hpp" |
| 30 | #include "core/privilege-helper.hpp" |
Alexander Afanasyev | 3f41ade | 2015-06-29 18:31:22 -0700 | [diff] [blame] | 31 | #include "core/config-file.hpp" |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 32 | #include "fw/forwarder.hpp" |
Junxiao Shi | ea47bde | 2017-01-26 17:49:16 +0000 | [diff] [blame] | 33 | #include "face/face-system.hpp" |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 34 | #include "face/null-face.hpp" |
Yanbiao Li | 4ee73d4 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 35 | #include "face/internal-face.hpp" |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 36 | #include "mgmt/fib-manager.hpp" |
| 37 | #include "mgmt/face-manager.hpp" |
| 38 | #include "mgmt/strategy-choice-manager.hpp" |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 39 | #include "mgmt/forwarder-status-manager.hpp" |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 40 | #include "mgmt/general-config-section.hpp" |
| 41 | #include "mgmt/tables-config-section.hpp" |
| 42 | |
| 43 | namespace nfd { |
| 44 | |
Alexander Afanasyev | 3f41ade | 2015-06-29 18:31:22 -0700 | [diff] [blame] | 45 | NFD_LOG_INIT("Nfd"); |
| 46 | |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 47 | static const std::string INTERNAL_CONFIG = "internal://nfd.conf"; |
| 48 | |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 49 | Nfd::Nfd(ndn::KeyChain& keyChain) |
| 50 | : m_keyChain(keyChain) |
| 51 | , m_netmon(make_shared<ndn::net::NetworkMonitor>(getGlobalIoService())) |
Alexander Afanasyev | 441ba21 | 2015-09-10 23:41:07 -0700 | [diff] [blame] | 52 | { |
Alexander Afanasyev | 441ba21 | 2015-09-10 23:41:07 -0700 | [diff] [blame] | 53 | } |
| 54 | |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 55 | Nfd::Nfd(const std::string& configFile, ndn::KeyChain& keyChain) |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 56 | : Nfd(keyChain) |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 57 | { |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 58 | m_configFile = configFile; |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | Nfd::Nfd(const ConfigSection& config, ndn::KeyChain& keyChain) |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 62 | : Nfd(keyChain) |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 63 | { |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 64 | m_configSection = config; |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 65 | } |
| 66 | |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 67 | // It is necessary to explicitly define the destructor, because some member variables (e.g., |
| 68 | // unique_ptr<Forwarder>) are forward-declared, but implicitly declared destructor requires |
| 69 | // complete types for all members when instantiated. |
| 70 | Nfd::~Nfd() = default; |
Alexander Afanasyev | 2bda6f8 | 2015-02-10 14:17:19 -0800 | [diff] [blame] | 71 | |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 72 | void |
| 73 | Nfd::initialize() |
| 74 | { |
| 75 | initializeLogging(); |
| 76 | |
Alexander Afanasyev | 2bda6f8 | 2015-02-10 14:17:19 -0800 | [diff] [blame] | 77 | m_forwarder.reset(new Forwarder()); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 78 | |
Junxiao Shi | a044be7 | 2015-10-26 11:00:56 -0700 | [diff] [blame] | 79 | FaceTable& faceTable = m_forwarder->getFaceTable(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 80 | faceTable.addReserved(face::makeNullFace(), face::FACEID_NULL); |
| 81 | faceTable.addReserved(face::makeNullFace(FaceUri("contentstore://")), face::FACEID_CONTENT_STORE); |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 82 | m_faceSystem = make_unique<face::FaceSystem>(faceTable, m_netmon); |
Junxiao Shi | ea47bde | 2017-01-26 17:49:16 +0000 | [diff] [blame] | 83 | |
| 84 | initializeManagement(); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 85 | |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 86 | PrivilegeHelper::drop(); |
Alexander Afanasyev | 3f41ade | 2015-06-29 18:31:22 -0700 | [diff] [blame] | 87 | |
Junxiao Shi | 2d49175 | 2017-07-14 21:32:05 +0000 | [diff] [blame] | 88 | m_netmon->onNetworkStateChanged.connect([this] { |
| 89 | // delay stages, so if multiple events are triggered in short sequence, |
| 90 | // only one auto-detection procedure is triggered |
| 91 | m_reloadConfigEvent = scheduler::schedule(time::seconds(5), |
| 92 | [this] { |
| 93 | NFD_LOG_INFO("Network change detected, reloading face section of the config file..."); |
| 94 | this->reloadConfigFileFaceSection(); |
| 95 | }); |
| 96 | }); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | void |
| 100 | Nfd::initializeLogging() |
| 101 | { |
| 102 | ConfigFile config(&ConfigFile::ignoreUnknownSection); |
| 103 | LoggerFactory::getInstance().setConfigFile(config); |
| 104 | |
| 105 | if (!m_configFile.empty()) { |
| 106 | config.parse(m_configFile, true); |
| 107 | config.parse(m_configFile, false); |
| 108 | } |
| 109 | else { |
| 110 | config.parse(m_configSection, true, INTERNAL_CONFIG); |
| 111 | config.parse(m_configSection, false, INTERNAL_CONFIG); |
| 112 | } |
| 113 | } |
| 114 | |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 115 | static inline void |
| 116 | ignoreRibAndLogSections(const std::string& filename, const std::string& sectionName, |
| 117 | const ConfigSection& section, bool isDryRun) |
| 118 | { |
| 119 | // Ignore "log" and "rib" sections, but raise an error if we're missing a |
| 120 | // handler for an NFD section. |
| 121 | if (sectionName == "rib" || sectionName == "log") { |
| 122 | // do nothing |
| 123 | } |
| 124 | else { |
| 125 | // missing NFD section |
| 126 | ConfigFile::throwErrorOnUnknownSection(filename, sectionName, section, isDryRun); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | void |
| 131 | Nfd::initializeManagement() |
| 132 | { |
Junxiao Shi | 6535f1e | 2015-10-08 13:02:18 -0700 | [diff] [blame] | 133 | std::tie(m_internalFace, m_internalClientFace) = face::makeInternalFace(m_keyChain); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 134 | m_forwarder->getFaceTable().addReserved(m_internalFace, face::FACEID_INTERNAL_FACE); |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 135 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 136 | m_dispatcher.reset(new ndn::mgmt::Dispatcher(*m_internalClientFace, m_keyChain)); |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 137 | m_authenticator = CommandAuthenticator::create(); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 138 | |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 139 | m_forwarderStatusManager.reset(new ForwarderStatusManager(*m_forwarder, *m_dispatcher)); |
Junxiao Shi | ea47bde | 2017-01-26 17:49:16 +0000 | [diff] [blame] | 140 | m_faceManager.reset(new FaceManager(*m_faceSystem, *m_dispatcher, *m_authenticator)); |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 141 | m_fibManager.reset(new FibManager(m_forwarder->getFib(), m_forwarder->getFaceTable(), |
| 142 | *m_dispatcher, *m_authenticator)); |
| 143 | m_strategyChoiceManager.reset(new StrategyChoiceManager(m_forwarder->getStrategyChoice(), |
| 144 | *m_dispatcher, *m_authenticator)); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 145 | |
| 146 | ConfigFile config(&ignoreRibAndLogSections); |
| 147 | general::setConfigFile(config); |
| 148 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 149 | TablesConfigSection tablesConfig(*m_forwarder); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 150 | tablesConfig.setConfigFile(config); |
| 151 | |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 152 | m_authenticator->setConfigFile(config); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 153 | m_faceManager->setConfigFile(config); |
| 154 | |
| 155 | // parse config file |
| 156 | if (!m_configFile.empty()) { |
| 157 | config.parse(m_configFile, true); |
| 158 | config.parse(m_configFile, false); |
| 159 | } |
| 160 | else { |
| 161 | config.parse(m_configSection, true, INTERNAL_CONFIG); |
| 162 | config.parse(m_configSection, false, INTERNAL_CONFIG); |
| 163 | } |
| 164 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 165 | tablesConfig.ensureConfigured(); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 166 | |
| 167 | // add FIB entry for NFD Management Protocol |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 168 | Name topPrefix("/localhost/nfd"); |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 169 | m_forwarder->getFib().insert(topPrefix).first->addNextHop(*m_internalFace, 0); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 170 | m_dispatcher->addTopPrefix(topPrefix, false); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | void |
| 174 | Nfd::reloadConfigFile() |
| 175 | { |
| 176 | // Logging |
| 177 | initializeLogging(); |
| 178 | /// \todo Reopen log file |
| 179 | |
| 180 | // Other stuff |
| 181 | ConfigFile config(&ignoreRibAndLogSections); |
| 182 | |
| 183 | general::setConfigFile(config); |
| 184 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 185 | TablesConfigSection tablesConfig(*m_forwarder); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 186 | tablesConfig.setConfigFile(config); |
| 187 | |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 188 | m_authenticator->setConfigFile(config); |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 189 | m_faceManager->setConfigFile(config); |
| 190 | |
| 191 | if (!m_configFile.empty()) { |
| 192 | config.parse(m_configFile, false); |
| 193 | } |
| 194 | else { |
| 195 | config.parse(m_configSection, false, INTERNAL_CONFIG); |
| 196 | } |
| 197 | } |
| 198 | |
Alexander Afanasyev | 3f41ade | 2015-06-29 18:31:22 -0700 | [diff] [blame] | 199 | void |
| 200 | Nfd::reloadConfigFileFaceSection() |
| 201 | { |
| 202 | // reload only face_system section of the config file to re-initialize multicast faces |
| 203 | ConfigFile config(&ConfigFile::ignoreUnknownSection); |
| 204 | m_faceManager->setConfigFile(config); |
| 205 | |
| 206 | if (!m_configFile.empty()) { |
| 207 | config.parse(m_configFile, false); |
| 208 | } |
| 209 | else { |
| 210 | config.parse(m_configSection, false, INTERNAL_CONFIG); |
| 211 | } |
| 212 | } |
| 213 | |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 214 | } // namespace nfd |