blob: c25e977a479a908124155e3952b87b2ccd9af6fb [file] [log] [blame]
Alexander Afanasyev31367922015-02-09 20:51:10 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa3148082018-04-12 18:21:54 -04002/*
3 * Copyright (c) 2014-2018, Regents of the University of California,
Alexander Afanasyev31367922015-02-09 20:51:10 -08004 * 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 Shib2600172016-07-11 08:53:53 +000026#include "service.hpp"
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000027
28#include "auto-prefix-propagator.hpp"
29#include "fib-updater.hpp"
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000030#include "readvertise/client-to-nlsr-readvertise-policy.hpp"
31#include "readvertise/nfd-rib-readvertise-destination.hpp"
32#include "readvertise/readvertise.hpp"
33
Alexander Afanasyev31367922015-02-09 20:51:10 -080034#include "core/global-io.hpp"
Junxiao Shif4cfed12018-08-22 23:26:29 +000035#include "core/logger.hpp"
Alexander Afanasyev31367922015-02-09 20:51:10 -080036
37#include <boost/property_tree/info_parser.hpp>
Alexander Afanasyev31367922015-02-09 20:51:10 -080038#include <ndn-cxx/transport/tcp-transport.hpp>
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000039#include <ndn-cxx/transport/unix-transport.hpp>
Alexander Afanasyev31367922015-02-09 20:51:10 -080040
41namespace nfd {
42namespace rib {
43
Junxiao Shif4cfed12018-08-22 23:26:29 +000044NFD_LOG_INIT(RibService);
Alexander Afanasyev31367922015-02-09 20:51:10 -080045
Teng Liang04d5ce62018-08-06 10:20:24 +080046Service* Service::s_instance = nullptr;
47
Junxiao Shif4cfed12018-08-22 23:26:29 +000048static const std::string CFG_SECTION = "rib";
49static const std::string CFG_LOCALHOST_SECURITY = "localhost_security";
50static const std::string CFG_LOCALHOP_SECURITY = "localhop_security";
51static const std::string CFG_PREFIX_PROPAGATE = "auto_prefix_propagate";
52static const std::string CFG_READVERTISE_NLSR = "readvertise_nlsr";
53static const Name READVERTISE_NLSR_PREFIX = "/localhost/nlsr";
54
55static ConfigSection
56loadConfigSectionFromFile(const std::string& filename)
Alexander Afanasyev31367922015-02-09 20:51:10 -080057{
Junxiao Shif4cfed12018-08-22 23:26:29 +000058 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 */
68static shared_ptr<ndn::Transport>
69makeLocalNfdTransport(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 Liang04d5ce62018-08-06 10:20:24 +080075 }
Junxiao Shif4cfed12018-08-22 23:26:29 +000076 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 Liang04d5ce62018-08-06 10:20:24 +080081 }
Junxiao Shif4cfed12018-08-22 23:26:29 +000082 else {
83 BOOST_THROW_EXCEPTION(ConfigFile::Error("No transport is available to communicate with NFD"));
84 }
85}
86
87Service::Service(const std::string& configFile, ndn::KeyChain& keyChain)
Ashlesh Gawandef84bac52018-08-27 07:39:31 +000088 : Service(keyChain, makeLocalNfdTransport(loadConfigSectionFromFile(configFile)),
89 [&configFile] (ConfigFile& config, bool isDryRun) {
90 config.parse(configFile, isDryRun);
91 })
Junxiao Shif4cfed12018-08-22 23:26:29 +000092{
Alexander Afanasyev31367922015-02-09 20:51:10 -080093}
94
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000095Service::Service(const ConfigSection& configSection, ndn::KeyChain& keyChain)
Ashlesh Gawandef84bac52018-08-27 07:39:31 +000096 : Service(keyChain, makeLocalNfdTransport(configSection),
97 [&configSection] (ConfigFile& config, bool isDryRun) {
98 config.parse(configSection, isDryRun, "internal://nfd.conf");
99 })
Junxiao Shif4cfed12018-08-22 23:26:29 +0000100{
Junxiao Shif4cfed12018-08-22 23:26:29 +0000101}
102
Ashlesh Gawandef84bac52018-08-27 07:39:31 +0000103template<typename ConfigParseFunc>
104Service::Service(ndn::KeyChain& keyChain, shared_ptr<ndn::Transport> localNfdTransport,
105 const ConfigParseFunc& configParse)
Junxiao Shif4cfed12018-08-22 23:26:29 +0000106 : 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 Shi5ba7dfc2018-09-26 14:24:05 +0000111 , m_ribManager(m_rib, m_face, m_keyChain, m_nfdController, m_dispatcher)
Alexander Afanasyev31367922015-02-09 20:51:10 -0800112{
Teng Liang04d5ce62018-08-06 10:20:24 +0800113 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 Gawandef84bac52018-08-27 07:39:31 +0000120
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 Afanasyev31367922015-02-09 20:51:10 -0800128}
129
Teng Liang04d5ce62018-08-06 10:20:24 +0800130Service::~Service()
131{
132 s_instance = nullptr;
133}
134
135Service&
136Service::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 Afanasyevc3ea5a72015-02-12 20:14:16 -0800146
Alexander Afanasyev31367922015-02-09 20:51:10 -0800147void
Junxiao Shif4cfed12018-08-22 23:26:29 +0000148Service::processConfig(const ConfigSection& section, bool isDryRun, const std::string& filename)
Alexander Afanasyev31367922015-02-09 20:51:10 -0800149{
Junxiao Shif4cfed12018-08-22 23:26:29 +0000150 if (isDryRun) {
151 checkConfig(section, filename);
152 }
153 else {
154 applyConfig(section, filename);
155 }
156}
Alexander Afanasyev31367922015-02-09 20:51:10 -0800157
Junxiao Shif4cfed12018-08-22 23:26:29 +0000158void
159Service::checkConfig(const ConfigSection& section, const std::string& filename)
160{
161 for (const auto& item : section) {
162 const std::string& key = item.first;
Ashlesh Gawandef84bac52018-08-27 07:39:31 +0000163 const ConfigSection& value = item.second;
Junxiao Shif4cfed12018-08-22 23:26:29 +0000164 if (key == CFG_LOCALHOST_SECURITY || key == CFG_LOCALHOP_SECURITY) {
165 ndn::security::v2::validator_config::ValidationPolicyConfig policy;
Ashlesh Gawandef84bac52018-08-27 07:39:31 +0000166 policy.load(value, filename);
Junxiao Shif4cfed12018-08-22 23:26:29 +0000167 }
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
180void
181Service::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 Afanasyev31367922015-02-09 20:51:10 -0800198 }
Junxiao Shif4cfed12018-08-22 23:26:29 +0000199 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 Afanasyev31367922015-02-09 20:51:10 -0800209 }
210
Junxiao Shif4cfed12018-08-22 23:26:29 +0000211 if (!wantPrefixPropagate && m_prefixPropagator != nullptr) {
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000212 m_prefixPropagator->disable();
213 }
214
Junxiao Shif4cfed12018-08-22 23:26:29 +0000215 if (wantReadvertiseNlsr && m_readvertiseNlsr == nullptr) {
216 NFD_LOG_DEBUG("Enabling readvertise-to-nlsr");
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000217 m_readvertiseNlsr = make_unique<Readvertise>(
218 m_rib,
219 make_unique<ClientToNlsrReadvertisePolicy>(),
Junxiao Shif4cfed12018-08-22 23:26:29 +0000220 make_unique<NfdRibReadvertiseDestination>(m_nfdController, READVERTISE_NLSR_PREFIX, m_rib));
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000221 }
Junxiao Shif4cfed12018-08-22 23:26:29 +0000222 else if (!wantReadvertiseNlsr && m_readvertiseNlsr != nullptr) {
223 NFD_LOG_DEBUG("Disabling readvertise-to-nlsr");
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000224 m_readvertiseNlsr.reset();
225 }
Alexander Afanasyev31367922015-02-09 20:51:10 -0800226}
227
Alexander Afanasyev31367922015-02-09 20:51:10 -0800228} // namespace rib
229} // namespace nfd