| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /* |
| * Copyright (c) 2014-2019, Regents of the University of California, |
| * Arizona Board of Regents, |
| * Colorado State University, |
| * University Pierre & Marie Curie, Sorbonne University, |
| * Washington University in St. Louis, |
| * Beijing Institute of Technology, |
| * The University of Memphis. |
| * |
| * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| * See AUTHORS.md for complete list of NFD authors and contributors. |
| * |
| * NFD is free software: you can redistribute it and/or modify it under the terms |
| * of the GNU General Public License as published by the Free Software Foundation, |
| * either version 3 of the License, or (at your option) any later version. |
| * |
| * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| * PURPOSE. See the GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License along with |
| * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| |
| #include "service.hpp" |
| |
| #include "fib-updater.hpp" |
| #include "readvertise/client-to-nlsr-readvertise-policy.hpp" |
| #include "readvertise/host-to-gateway-readvertise-policy.hpp" |
| #include "readvertise/nfd-rib-readvertise-destination.hpp" |
| #include "readvertise/readvertise.hpp" |
| |
| #include "core/logger.hpp" |
| #include "daemon/global.hpp" |
| |
| #include <boost/property_tree/info_parser.hpp> |
| #include <ndn-cxx/transport/tcp-transport.hpp> |
| #include <ndn-cxx/transport/unix-transport.hpp> |
| |
| namespace nfd { |
| namespace rib { |
| |
| NFD_LOG_INIT(RibService); |
| |
| Service* Service::s_instance = nullptr; |
| |
| static const std::string CFG_SECTION = "rib"; |
| static const std::string CFG_LOCALHOST_SECURITY = "localhost_security"; |
| static const std::string CFG_LOCALHOP_SECURITY = "localhop_security"; |
| static const std::string CFG_PREFIX_PROPAGATE = "auto_prefix_propagate"; |
| static const std::string CFG_READVERTISE_NLSR = "readvertise_nlsr"; |
| static const Name READVERTISE_NLSR_PREFIX = "/localhost/nlsr"; |
| static const uint64_t PROPAGATE_DEFAULT_COST = 15; |
| static const time::milliseconds PROPAGATE_DEFAULT_TIMEOUT = 10_s; |
| |
| static ConfigSection |
| loadConfigSectionFromFile(const std::string& filename) |
| { |
| ConfigSection config; |
| // Any format errors should have been caught already |
| boost::property_tree::read_info(filename, config); |
| return config; |
| } |
| |
| /** |
| * \brief Look into the config file and construct appropriate transport to communicate with NFD |
| * If NFD-RIB instance was initialized with config file, INFO format is assumed |
| */ |
| static shared_ptr<ndn::Transport> |
| makeLocalNfdTransport(const ConfigSection& config) |
| { |
| if (config.get_child_optional("face_system.unix")) { |
| // default socket path should be the same as in UnixStreamFactory::processConfig |
| auto path = config.get<std::string>("face_system.unix.path", "/var/run/nfd.sock"); |
| return make_shared<ndn::UnixTransport>(path); |
| } |
| else if (config.get_child_optional("face_system.tcp") && |
| config.get<std::string>("face_system.tcp.listen", "yes") == "yes") { |
| // default port should be the same as in TcpFactory::processConfig |
| auto port = config.get<std::string>("face_system.tcp.port", "6363"); |
| return make_shared<ndn::TcpTransport>("localhost", port); |
| } |
| else { |
| NDN_THROW(ConfigFile::Error("No transport is available to communicate with NFD")); |
| } |
| } |
| |
| Service::Service(const std::string& configFile, ndn::KeyChain& keyChain) |
| : Service(keyChain, makeLocalNfdTransport(loadConfigSectionFromFile(configFile)), |
| [&configFile] (ConfigFile& config, bool isDryRun) { |
| config.parse(configFile, isDryRun); |
| }) |
| { |
| } |
| |
| Service::Service(const ConfigSection& configSection, ndn::KeyChain& keyChain) |
| : Service(keyChain, makeLocalNfdTransport(configSection), |
| [&configSection] (ConfigFile& config, bool isDryRun) { |
| config.parse(configSection, isDryRun, "internal://nfd.conf"); |
| }) |
| { |
| } |
| |
| template<typename ConfigParseFunc> |
| Service::Service(ndn::KeyChain& keyChain, shared_ptr<ndn::Transport> localNfdTransport, |
| const ConfigParseFunc& configParse) |
| : m_keyChain(keyChain) |
| , m_face(std::move(localNfdTransport), getGlobalIoService(), m_keyChain) |
| , m_nfdController(m_face, m_keyChain) |
| , m_fibUpdater(m_rib, m_nfdController) |
| , m_dispatcher(m_face, m_keyChain) |
| , m_ribManager(m_rib, m_face, m_keyChain, m_nfdController, m_dispatcher) |
| { |
| if (s_instance != nullptr) { |
| NDN_THROW(std::logic_error("RIB service cannot be instantiated more than once")); |
| } |
| if (&getGlobalIoService() != &getRibIoService()) { |
| NDN_THROW(std::logic_error("RIB service must run on RIB thread")); |
| } |
| s_instance = this; |
| |
| ConfigFile config(ConfigFile::ignoreUnknownSection); |
| config.addSectionHandler(CFG_SECTION, bind(&Service::processConfig, this, _1, _2, _3)); |
| configParse(config, true); |
| configParse(config, false); |
| |
| m_ribManager.registerWithNfd(); |
| m_ribManager.enableLocalFields(); |
| } |
| |
| Service::~Service() |
| { |
| s_instance = nullptr; |
| } |
| |
| Service& |
| Service::get() |
| { |
| if (s_instance == nullptr) { |
| NDN_THROW(std::logic_error("RIB service is not instantiated")); |
| } |
| if (&getGlobalIoService() != &getRibIoService()) { |
| NDN_THROW(std::logic_error("Must get RIB service on RIB thread")); |
| } |
| return *s_instance; |
| } |
| |
| void |
| Service::processConfig(const ConfigSection& section, bool isDryRun, const std::string& filename) |
| { |
| if (isDryRun) { |
| checkConfig(section, filename); |
| } |
| else { |
| applyConfig(section, filename); |
| } |
| } |
| |
| void |
| Service::checkConfig(const ConfigSection& section, const std::string& filename) |
| { |
| for (const auto& item : section) { |
| const std::string& key = item.first; |
| const ConfigSection& value = item.second; |
| if (key == CFG_LOCALHOST_SECURITY || key == CFG_LOCALHOP_SECURITY) { |
| ndn::ValidatorConfig testValidator(m_face); |
| testValidator.load(value, filename); |
| } |
| else if (key == CFG_PREFIX_PROPAGATE) { |
| // AutoPrefixPropagator does not support config dry-run |
| } |
| else if (key == CFG_READVERTISE_NLSR) { |
| ConfigFile::parseYesNo(item, CFG_SECTION + "." + CFG_READVERTISE_NLSR); |
| } |
| else { |
| NDN_THROW(ConfigFile::Error("Unrecognized option " + CFG_SECTION + "." + key)); |
| } |
| } |
| } |
| |
| void |
| Service::applyConfig(const ConfigSection& section, const std::string& filename) |
| { |
| bool wantPrefixPropagate = false; |
| bool wantReadvertiseNlsr = false; |
| |
| for (const auto& item : section) { |
| const std::string& key = item.first; |
| const ConfigSection& value = item.second; |
| if (key == CFG_LOCALHOST_SECURITY) { |
| m_ribManager.applyLocalhostConfig(value, filename); |
| } |
| else if (key == CFG_LOCALHOP_SECURITY) { |
| m_ribManager.enableLocalhop(value, filename); |
| } |
| else if (key == CFG_PREFIX_PROPAGATE) { |
| wantPrefixPropagate = true; |
| |
| if (!m_readvertisePropagation) { |
| NFD_LOG_DEBUG("Enabling automatic prefix propagation"); |
| |
| auto parameters = ndn::nfd::ControlParameters() |
| .setCost(PROPAGATE_DEFAULT_COST) |
| .setOrigin(ndn::nfd::ROUTE_ORIGIN_CLIENT); |
| auto cost = item.second.get_optional<uint64_t>("cost"); |
| if (cost) { |
| parameters.setCost(*cost); |
| } |
| |
| auto options = ndn::nfd::CommandOptions() |
| .setPrefix(RibManager::LOCALHOP_TOP_PREFIX) |
| .setTimeout(PROPAGATE_DEFAULT_TIMEOUT); |
| auto timeout = item.second.get_optional<uint64_t>("timeout"); |
| if (timeout) { |
| options.setTimeout(time::milliseconds(*timeout)); |
| } |
| |
| m_readvertisePropagation = make_unique<Readvertise>( |
| m_rib, |
| make_unique<HostToGatewayReadvertisePolicy>(m_keyChain, item.second), |
| make_unique<NfdRibReadvertiseDestination>(m_nfdController, m_rib, options, parameters)); |
| } |
| } |
| else if (key == CFG_READVERTISE_NLSR) { |
| wantReadvertiseNlsr = ConfigFile::parseYesNo(item, CFG_SECTION + "." + CFG_READVERTISE_NLSR); |
| } |
| else { |
| NDN_THROW(ConfigFile::Error("Unrecognized option " + CFG_SECTION + "." + key)); |
| } |
| } |
| |
| if (!wantPrefixPropagate && m_readvertisePropagation != nullptr) { |
| NFD_LOG_DEBUG("Disabling automatic prefix propagation"); |
| m_readvertisePropagation.reset(); |
| } |
| |
| if (wantReadvertiseNlsr && m_readvertiseNlsr == nullptr) { |
| NFD_LOG_DEBUG("Enabling readvertise-to-nlsr"); |
| auto options = ndn::nfd::CommandOptions().setPrefix(READVERTISE_NLSR_PREFIX); |
| m_readvertiseNlsr = make_unique<Readvertise>( |
| m_rib, |
| make_unique<ClientToNlsrReadvertisePolicy>(), |
| make_unique<NfdRibReadvertiseDestination>(m_nfdController, m_rib, options)); |
| } |
| else if (!wantReadvertiseNlsr && m_readvertiseNlsr != nullptr) { |
| NFD_LOG_DEBUG("Disabling readvertise-to-nlsr"); |
| m_readvertiseNlsr.reset(); |
| } |
| } |
| |
| } // namespace rib |
| } // namespace nfd |