Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -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 | |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 26 | #include "service.hpp" |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 27 | |
| 28 | #include "auto-prefix-propagator.hpp" |
| 29 | #include "fib-updater.hpp" |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 30 | #include "readvertise/client-to-nlsr-readvertise-policy.hpp" |
| 31 | #include "readvertise/nfd-rib-readvertise-destination.hpp" |
| 32 | #include "readvertise/readvertise.hpp" |
| 33 | |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 34 | #include "core/global-io.hpp" |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 35 | #include "core/logger.hpp" |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 36 | |
| 37 | #include <boost/property_tree/info_parser.hpp> |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 38 | #include <ndn-cxx/transport/tcp-transport.hpp> |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 39 | #include <ndn-cxx/transport/unix-transport.hpp> |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 40 | |
| 41 | namespace nfd { |
| 42 | namespace rib { |
| 43 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 44 | NFD_LOG_INIT(RibService); |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 45 | |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 46 | Service* Service::s_instance = nullptr; |
| 47 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 48 | static const std::string CFG_SECTION = "rib"; |
| 49 | static const std::string CFG_LOCALHOST_SECURITY = "localhost_security"; |
| 50 | static const std::string CFG_LOCALHOP_SECURITY = "localhop_security"; |
| 51 | static const std::string CFG_PREFIX_PROPAGATE = "auto_prefix_propagate"; |
| 52 | static const std::string CFG_READVERTISE_NLSR = "readvertise_nlsr"; |
| 53 | static const Name READVERTISE_NLSR_PREFIX = "/localhost/nlsr"; |
| 54 | |
| 55 | static ConfigSection |
| 56 | loadConfigSectionFromFile(const std::string& filename) |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 57 | { |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 58 | ConfigSection config; |
| 59 | // Any format errors should have been caught already |
| 60 | boost::property_tree::read_info(filename, config); |
| 61 | return config; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * \brief Look into the config file and construct appropriate transport to communicate with NFD |
| 66 | * If NFD-RIB instance was initialized with config file, INFO format is assumed |
| 67 | */ |
| 68 | static shared_ptr<ndn::Transport> |
| 69 | makeLocalNfdTransport(const ConfigSection& config) |
| 70 | { |
| 71 | if (config.get_child_optional("face_system.unix")) { |
| 72 | // default socket path should be the same as in UnixStreamFactory::processConfig |
| 73 | auto path = config.get<std::string>("face_system.unix.path", "/var/run/nfd.sock"); |
| 74 | return make_shared<ndn::UnixTransport>(path); |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 75 | } |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 76 | else if (config.get_child_optional("face_system.tcp") && |
| 77 | config.get<std::string>("face_system.tcp.listen", "yes") == "yes") { |
| 78 | // default port should be the same as in TcpFactory::processConfig |
| 79 | auto port = config.get<std::string>("face_system.tcp.port", "6363"); |
| 80 | return make_shared<ndn::TcpTransport>("localhost", port); |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 81 | } |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 82 | else { |
| 83 | BOOST_THROW_EXCEPTION(ConfigFile::Error("No transport is available to communicate with NFD")); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | Service::Service(const std::string& configFile, ndn::KeyChain& keyChain) |
Ashlesh Gawande | f84bac5 | 2018-08-27 07:39:31 +0000 | [diff] [blame] | 88 | : Service(keyChain, makeLocalNfdTransport(loadConfigSectionFromFile(configFile)), |
| 89 | [&configFile] (ConfigFile& config, bool isDryRun) { |
| 90 | config.parse(configFile, isDryRun); |
| 91 | }) |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 92 | { |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 93 | } |
| 94 | |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 95 | Service::Service(const ConfigSection& configSection, ndn::KeyChain& keyChain) |
Ashlesh Gawande | f84bac5 | 2018-08-27 07:39:31 +0000 | [diff] [blame] | 96 | : Service(keyChain, makeLocalNfdTransport(configSection), |
| 97 | [&configSection] (ConfigFile& config, bool isDryRun) { |
| 98 | config.parse(configSection, isDryRun, "internal://nfd.conf"); |
| 99 | }) |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 100 | { |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Ashlesh Gawande | f84bac5 | 2018-08-27 07:39:31 +0000 | [diff] [blame] | 103 | template<typename ConfigParseFunc> |
| 104 | Service::Service(ndn::KeyChain& keyChain, shared_ptr<ndn::Transport> localNfdTransport, |
| 105 | const ConfigParseFunc& configParse) |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 106 | : m_keyChain(keyChain) |
| 107 | , m_face(std::move(localNfdTransport), getGlobalIoService(), m_keyChain) |
| 108 | , m_nfdController(m_face, m_keyChain) |
| 109 | , m_fibUpdater(m_rib, m_nfdController) |
| 110 | , m_dispatcher(m_face, m_keyChain) |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 111 | , m_ribManager(m_rib, m_face, m_keyChain, m_nfdController, m_dispatcher) |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 112 | { |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 113 | if (s_instance != nullptr) { |
| 114 | BOOST_THROW_EXCEPTION(std::logic_error("RIB service cannot be instantiated more than once")); |
| 115 | } |
| 116 | if (&getGlobalIoService() != &getRibIoService()) { |
| 117 | BOOST_THROW_EXCEPTION(std::logic_error("RIB service must run on RIB thread")); |
| 118 | } |
| 119 | s_instance = this; |
Ashlesh Gawande | f84bac5 | 2018-08-27 07:39:31 +0000 | [diff] [blame] | 120 | |
| 121 | ConfigFile config(ConfigFile::ignoreUnknownSection); |
| 122 | config.addSectionHandler(CFG_SECTION, bind(&Service::processConfig, this, _1, _2, _3)); |
| 123 | configParse(config, true); |
| 124 | configParse(config, false); |
| 125 | |
| 126 | m_ribManager.registerWithNfd(); |
| 127 | m_ribManager.enableLocalFields(); |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 128 | } |
| 129 | |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 130 | Service::~Service() |
| 131 | { |
| 132 | s_instance = nullptr; |
| 133 | } |
| 134 | |
| 135 | Service& |
| 136 | Service::get() |
| 137 | { |
| 138 | if (s_instance == nullptr) { |
| 139 | BOOST_THROW_EXCEPTION(std::logic_error("RIB service is not instantiated")); |
| 140 | } |
| 141 | if (&getGlobalIoService() != &getRibIoService()) { |
| 142 | BOOST_THROW_EXCEPTION(std::logic_error("Must get RIB service on RIB thread")); |
| 143 | } |
| 144 | return *s_instance; |
| 145 | } |
Alexander Afanasyev | c3ea5a7 | 2015-02-12 20:14:16 -0800 | [diff] [blame] | 146 | |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 147 | void |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 148 | Service::processConfig(const ConfigSection& section, bool isDryRun, const std::string& filename) |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 149 | { |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 150 | if (isDryRun) { |
| 151 | checkConfig(section, filename); |
| 152 | } |
| 153 | else { |
| 154 | applyConfig(section, filename); |
| 155 | } |
| 156 | } |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 157 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 158 | void |
| 159 | Service::checkConfig(const ConfigSection& section, const std::string& filename) |
| 160 | { |
| 161 | for (const auto& item : section) { |
| 162 | const std::string& key = item.first; |
Ashlesh Gawande | f84bac5 | 2018-08-27 07:39:31 +0000 | [diff] [blame] | 163 | const ConfigSection& value = item.second; |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 164 | if (key == CFG_LOCALHOST_SECURITY || key == CFG_LOCALHOP_SECURITY) { |
Alexander Afanasyev | 3c0c035 | 2018-10-17 11:59:23 -0400 | [diff] [blame^] | 165 | ndn::ValidatorConfig testValidator(m_face); |
| 166 | testValidator.load(value, filename); |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 167 | } |
| 168 | else if (key == CFG_PREFIX_PROPAGATE) { |
| 169 | // AutoPrefixPropagator does not support config dry-run |
| 170 | } |
| 171 | else if (key == CFG_READVERTISE_NLSR) { |
| 172 | ConfigFile::parseYesNo(item, CFG_SECTION + "." + CFG_READVERTISE_NLSR); |
| 173 | } |
| 174 | else { |
| 175 | BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option " + CFG_SECTION + "." + key)); |
| 176 | } |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | void |
| 181 | Service::applyConfig(const ConfigSection& section, const std::string& filename) |
| 182 | { |
| 183 | bool wantPrefixPropagate = false; |
| 184 | bool wantReadvertiseNlsr = false; |
| 185 | |
| 186 | for (const auto& item : section) { |
| 187 | const std::string& key = item.first; |
| 188 | const ConfigSection& value = item.second; |
| 189 | if (key == CFG_LOCALHOST_SECURITY) { |
| 190 | m_ribManager.applyLocalhostConfig(value, filename); |
| 191 | } |
| 192 | else if (key == CFG_LOCALHOP_SECURITY) { |
| 193 | m_ribManager.enableLocalhop(value, filename); |
| 194 | } |
| 195 | else if (key == CFG_PREFIX_PROPAGATE) { |
| 196 | if (m_prefixPropagator == nullptr) { |
| 197 | m_prefixPropagator = make_unique<AutoPrefixPropagator>(m_nfdController, m_keyChain, m_rib); |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 198 | } |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 199 | m_prefixPropagator->loadConfig(item.second); |
| 200 | m_prefixPropagator->enable(); |
| 201 | wantPrefixPropagate = true; |
| 202 | } |
| 203 | else if (key == CFG_READVERTISE_NLSR) { |
| 204 | wantReadvertiseNlsr = ConfigFile::parseYesNo(item, CFG_SECTION + "." + CFG_READVERTISE_NLSR); |
| 205 | } |
| 206 | else { |
| 207 | BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option " + CFG_SECTION + "." + key)); |
| 208 | } |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 209 | } |
| 210 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 211 | if (!wantPrefixPropagate && m_prefixPropagator != nullptr) { |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 212 | m_prefixPropagator->disable(); |
| 213 | } |
| 214 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 215 | if (wantReadvertiseNlsr && m_readvertiseNlsr == nullptr) { |
| 216 | NFD_LOG_DEBUG("Enabling readvertise-to-nlsr"); |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 217 | m_readvertiseNlsr = make_unique<Readvertise>( |
| 218 | m_rib, |
| 219 | make_unique<ClientToNlsrReadvertisePolicy>(), |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 220 | make_unique<NfdRibReadvertiseDestination>(m_nfdController, READVERTISE_NLSR_PREFIX, m_rib)); |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 221 | } |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 222 | else if (!wantReadvertiseNlsr && m_readvertiseNlsr != nullptr) { |
| 223 | NFD_LOG_DEBUG("Disabling readvertise-to-nlsr"); |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 224 | m_readvertiseNlsr.reset(); |
| 225 | } |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 226 | } |
| 227 | |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 228 | } // namespace rib |
| 229 | } // namespace nfd |