blob: 1634ef9e29b323656f066e303d4e621330fbc4dc [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/*
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -04003 * Copyright (c) 2014-2022, 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
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000028#include "fib-updater.hpp"
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000029#include "readvertise/client-to-nlsr-readvertise-policy.hpp"
Yanbiao Lif48d0802018-06-01 03:00:02 -070030#include "readvertise/host-to-gateway-readvertise-policy.hpp"
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000031#include "readvertise/nfd-rib-readvertise-destination.hpp"
32#include "readvertise/readvertise.hpp"
33
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040034#include "common/global.hpp"
35#include "common/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
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040041namespace nfd::rib {
Alexander Afanasyev31367922015-02-09 20:51:10 -080042
Junxiao Shif4cfed12018-08-22 23:26:29 +000043NFD_LOG_INIT(RibService);
Alexander Afanasyev31367922015-02-09 20:51:10 -080044
Davide Pesavento412c9822021-07-02 00:21:05 -040045const std::string CFG_RIB = "rib";
Wenkai Zheng6598fb02019-09-08 18:03:46 -070046const std::string CFG_LOCALHOST_SECURITY = "localhost_security";
47const std::string CFG_LOCALHOP_SECURITY = "localhop_security";
Teng Liang18c2b292019-10-18 14:31:04 -070048const std::string CFG_PA_VALIDATION = "prefix_announcement_validation";
Wenkai Zheng6598fb02019-09-08 18:03:46 -070049const std::string CFG_PREFIX_PROPAGATE = "auto_prefix_propagate";
50const std::string CFG_READVERTISE_NLSR = "readvertise_nlsr";
51const Name READVERTISE_NLSR_PREFIX = "/localhost/nlsr";
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040052constexpr uint64_t PROPAGATE_DEFAULT_COST = 15;
53constexpr time::milliseconds PROPAGATE_DEFAULT_TIMEOUT = 10_s;
Junxiao Shif4cfed12018-08-22 23:26:29 +000054
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
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040064// Look into NFD's config file and construct an appropriate transport to communicate with NFD.
Junxiao Shif4cfed12018-08-22 23:26:29 +000065static shared_ptr<ndn::Transport>
66makeLocalNfdTransport(const ConfigSection& config)
67{
68 if (config.get_child_optional("face_system.unix")) {
69 // default socket path should be the same as in UnixStreamFactory::processConfig
Eric Newberry22974902020-04-06 23:41:00 -070070#ifdef __linux__
71 auto path = config.get<std::string>("face_system.unix.path", "/run/nfd.sock");
72#else
Junxiao Shif4cfed12018-08-22 23:26:29 +000073 auto path = config.get<std::string>("face_system.unix.path", "/var/run/nfd.sock");
Eric Newberry22974902020-04-06 23:41:00 -070074#endif // __linux__
Junxiao Shif4cfed12018-08-22 23:26:29 +000075 return make_shared<ndn::UnixTransport>(path);
Teng Liang04d5ce62018-08-06 10:20:24 +080076 }
Junxiao Shif4cfed12018-08-22 23:26:29 +000077 else if (config.get_child_optional("face_system.tcp") &&
78 config.get<std::string>("face_system.tcp.listen", "yes") == "yes") {
79 // default port should be the same as in TcpFactory::processConfig
80 auto port = config.get<std::string>("face_system.tcp.port", "6363");
81 return make_shared<ndn::TcpTransport>("localhost", port);
Teng Liang04d5ce62018-08-06 10:20:24 +080082 }
Junxiao Shif4cfed12018-08-22 23:26:29 +000083 else {
Davide Pesavento19779d82019-02-14 13:40:04 -050084 NDN_THROW(ConfigFile::Error("No transport is available to communicate with NFD"));
Junxiao Shif4cfed12018-08-22 23:26:29 +000085 }
86}
87
88Service::Service(const std::string& configFile, ndn::KeyChain& keyChain)
Ashlesh Gawandef84bac52018-08-27 07:39:31 +000089 : Service(keyChain, makeLocalNfdTransport(loadConfigSectionFromFile(configFile)),
90 [&configFile] (ConfigFile& config, bool isDryRun) {
91 config.parse(configFile, isDryRun);
92 })
Junxiao Shif4cfed12018-08-22 23:26:29 +000093{
Alexander Afanasyev31367922015-02-09 20:51:10 -080094}
95
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000096Service::Service(const ConfigSection& configSection, ndn::KeyChain& keyChain)
Ashlesh Gawandef84bac52018-08-27 07:39:31 +000097 : Service(keyChain, makeLocalNfdTransport(configSection),
98 [&configSection] (ConfigFile& config, bool isDryRun) {
99 config.parse(configSection, isDryRun, "internal://nfd.conf");
100 })
Junxiao Shif4cfed12018-08-22 23:26:29 +0000101{
Junxiao Shif4cfed12018-08-22 23:26:29 +0000102}
103
Ashlesh Gawandef84bac52018-08-27 07:39:31 +0000104template<typename ConfigParseFunc>
105Service::Service(ndn::KeyChain& keyChain, shared_ptr<ndn::Transport> localNfdTransport,
106 const ConfigParseFunc& configParse)
Junxiao Shif4cfed12018-08-22 23:26:29 +0000107 : m_keyChain(keyChain)
108 , m_face(std::move(localNfdTransport), getGlobalIoService(), m_keyChain)
109 , m_nfdController(m_face, m_keyChain)
110 , m_fibUpdater(m_rib, m_nfdController)
111 , m_dispatcher(m_face, m_keyChain)
Davide Pesavento0a71dd32019-03-17 20:36:18 -0400112 , m_ribManager(m_rib, m_face, m_keyChain, m_nfdController, m_dispatcher)
Alexander Afanasyev31367922015-02-09 20:51:10 -0800113{
Teng Liang04d5ce62018-08-06 10:20:24 +0800114 if (s_instance != nullptr) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500115 NDN_THROW(std::logic_error("RIB service cannot be instantiated more than once"));
Teng Liang04d5ce62018-08-06 10:20:24 +0800116 }
117 if (&getGlobalIoService() != &getRibIoService()) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500118 NDN_THROW(std::logic_error("RIB service must run on RIB thread"));
Teng Liang04d5ce62018-08-06 10:20:24 +0800119 }
120 s_instance = this;
Ashlesh Gawandef84bac52018-08-27 07:39:31 +0000121
122 ConfigFile config(ConfigFile::ignoreUnknownSection);
Davide Pesavento412c9822021-07-02 00:21:05 -0400123 config.addSectionHandler(CFG_RIB, [this] (auto&&... args) {
124 processConfig(std::forward<decltype(args)>(args)...);
125 });
Ashlesh Gawandef84bac52018-08-27 07:39:31 +0000126 configParse(config, true);
127 configParse(config, false);
128
129 m_ribManager.registerWithNfd();
130 m_ribManager.enableLocalFields();
Alexander Afanasyev31367922015-02-09 20:51:10 -0800131}
132
Teng Liang04d5ce62018-08-06 10:20:24 +0800133Service::~Service()
134{
135 s_instance = nullptr;
136}
137
138Service&
139Service::get()
140{
141 if (s_instance == nullptr) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500142 NDN_THROW(std::logic_error("RIB service is not instantiated"));
Teng Liang04d5ce62018-08-06 10:20:24 +0800143 }
144 if (&getGlobalIoService() != &getRibIoService()) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500145 NDN_THROW(std::logic_error("Must get RIB service on RIB thread"));
Teng Liang04d5ce62018-08-06 10:20:24 +0800146 }
147 return *s_instance;
148}
Alexander Afanasyevc3ea5a72015-02-12 20:14:16 -0800149
Alexander Afanasyev31367922015-02-09 20:51:10 -0800150void
Junxiao Shif4cfed12018-08-22 23:26:29 +0000151Service::processConfig(const ConfigSection& section, bool isDryRun, const std::string& filename)
Alexander Afanasyev31367922015-02-09 20:51:10 -0800152{
Junxiao Shif4cfed12018-08-22 23:26:29 +0000153 if (isDryRun) {
154 checkConfig(section, filename);
155 }
156 else {
157 applyConfig(section, filename);
158 }
159}
Alexander Afanasyev31367922015-02-09 20:51:10 -0800160
Junxiao Shif4cfed12018-08-22 23:26:29 +0000161void
162Service::checkConfig(const ConfigSection& section, const std::string& filename)
163{
Wenkai Zheng6598fb02019-09-08 18:03:46 -0700164 bool hasLocalhop = false;
165 bool hasPropagate = false;
166
Junxiao Shif4cfed12018-08-22 23:26:29 +0000167 for (const auto& item : section) {
168 const std::string& key = item.first;
Ashlesh Gawandef84bac52018-08-27 07:39:31 +0000169 const ConfigSection& value = item.second;
Jongseok Lee854866f2020-03-10 19:16:25 -0400170 if (key == CFG_LOCALHOST_SECURITY || key == CFG_PA_VALIDATION) {
171 ndn::ValidatorConfig testValidator(m_face);
172 testValidator.load(value, filename);
173 }
174 else if (key == CFG_LOCALHOP_SECURITY) {
175 hasLocalhop = true;
Alexander Afanasyev3c0c0352018-10-17 11:59:23 -0400176 ndn::ValidatorConfig testValidator(m_face);
177 testValidator.load(value, filename);
Junxiao Shif4cfed12018-08-22 23:26:29 +0000178 }
179 else if (key == CFG_PREFIX_PROPAGATE) {
Wenkai Zheng6598fb02019-09-08 18:03:46 -0700180 hasPropagate = true;
Junxiao Shif4cfed12018-08-22 23:26:29 +0000181 // AutoPrefixPropagator does not support config dry-run
182 }
183 else if (key == CFG_READVERTISE_NLSR) {
Davide Pesavento412c9822021-07-02 00:21:05 -0400184 ConfigFile::parseYesNo(item, CFG_RIB + "." + CFG_READVERTISE_NLSR);
Junxiao Shif4cfed12018-08-22 23:26:29 +0000185 }
186 else {
Davide Pesavento412c9822021-07-02 00:21:05 -0400187 NDN_THROW(ConfigFile::Error("Unrecognized option " + CFG_RIB + "." + key));
Junxiao Shif4cfed12018-08-22 23:26:29 +0000188 }
189 }
Wenkai Zheng6598fb02019-09-08 18:03:46 -0700190
191 if (hasLocalhop && hasPropagate) {
192 NDN_THROW(ConfigFile::Error(CFG_LOCALHOP_SECURITY + " and " + CFG_PREFIX_PROPAGATE +
193 " cannot be enabled at the same time"));
194 }
Junxiao Shif4cfed12018-08-22 23:26:29 +0000195}
196
197void
198Service::applyConfig(const ConfigSection& section, const std::string& filename)
199{
200 bool wantPrefixPropagate = false;
201 bool wantReadvertiseNlsr = false;
202
203 for (const auto& item : section) {
204 const std::string& key = item.first;
205 const ConfigSection& value = item.second;
206 if (key == CFG_LOCALHOST_SECURITY) {
207 m_ribManager.applyLocalhostConfig(value, filename);
208 }
209 else if (key == CFG_LOCALHOP_SECURITY) {
210 m_ribManager.enableLocalhop(value, filename);
211 }
Teng Liang18c2b292019-10-18 14:31:04 -0700212 else if (key == CFG_PA_VALIDATION) {
213 m_ribManager.applyPaConfig(value, filename);
214 }
Junxiao Shif4cfed12018-08-22 23:26:29 +0000215 else if (key == CFG_PREFIX_PROPAGATE) {
Junxiao Shif4cfed12018-08-22 23:26:29 +0000216 wantPrefixPropagate = true;
Yanbiao Lif48d0802018-06-01 03:00:02 -0700217
218 if (!m_readvertisePropagation) {
219 NFD_LOG_DEBUG("Enabling automatic prefix propagation");
220
Yanbiao Lif48d0802018-06-01 03:00:02 -0700221 auto cost = item.second.get_optional<uint64_t>("cost");
Wenkai Zheng6598fb02019-09-08 18:03:46 -0700222 auto parameters = ndn::nfd::ControlParameters()
223 .setCost(cost.value_or(PROPAGATE_DEFAULT_COST))
224 .setOrigin(ndn::nfd::ROUTE_ORIGIN_CLIENT);
Yanbiao Lif48d0802018-06-01 03:00:02 -0700225
Yanbiao Lif48d0802018-06-01 03:00:02 -0700226 auto timeout = item.second.get_optional<uint64_t>("timeout");
Wenkai Zheng6598fb02019-09-08 18:03:46 -0700227 auto options = ndn::nfd::CommandOptions()
228 .setPrefix(RibManager::LOCALHOP_TOP_PREFIX)
229 .setTimeout(timeout ? time::milliseconds(*timeout) : PROPAGATE_DEFAULT_TIMEOUT);
Yanbiao Lif48d0802018-06-01 03:00:02 -0700230
231 m_readvertisePropagation = make_unique<Readvertise>(
232 m_rib,
Yanbiao Lif48d0802018-06-01 03:00:02 -0700233 make_unique<HostToGatewayReadvertisePolicy>(m_keyChain, item.second),
234 make_unique<NfdRibReadvertiseDestination>(m_nfdController, m_rib, options, parameters));
235 }
Junxiao Shif4cfed12018-08-22 23:26:29 +0000236 }
237 else if (key == CFG_READVERTISE_NLSR) {
Davide Pesavento412c9822021-07-02 00:21:05 -0400238 wantReadvertiseNlsr = ConfigFile::parseYesNo(item, CFG_RIB + "." + CFG_READVERTISE_NLSR);
Junxiao Shif4cfed12018-08-22 23:26:29 +0000239 }
240 else {
Davide Pesavento412c9822021-07-02 00:21:05 -0400241 NDN_THROW(ConfigFile::Error("Unrecognized option " + CFG_RIB + "." + key));
Junxiao Shif4cfed12018-08-22 23:26:29 +0000242 }
Alexander Afanasyev31367922015-02-09 20:51:10 -0800243 }
244
Yanbiao Lif48d0802018-06-01 03:00:02 -0700245 if (!wantPrefixPropagate && m_readvertisePropagation != nullptr) {
246 NFD_LOG_DEBUG("Disabling automatic prefix propagation");
247 m_readvertisePropagation.reset();
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000248 }
249
Junxiao Shif4cfed12018-08-22 23:26:29 +0000250 if (wantReadvertiseNlsr && m_readvertiseNlsr == nullptr) {
251 NFD_LOG_DEBUG("Enabling readvertise-to-nlsr");
Yanbiao Lif48d0802018-06-01 03:00:02 -0700252 auto options = ndn::nfd::CommandOptions().setPrefix(READVERTISE_NLSR_PREFIX);
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000253 m_readvertiseNlsr = make_unique<Readvertise>(
254 m_rib,
255 make_unique<ClientToNlsrReadvertisePolicy>(),
Yanbiao Lif48d0802018-06-01 03:00:02 -0700256 make_unique<NfdRibReadvertiseDestination>(m_nfdController, m_rib, options));
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000257 }
Junxiao Shif4cfed12018-08-22 23:26:29 +0000258 else if (!wantReadvertiseNlsr && m_readvertiseNlsr != nullptr) {
259 NFD_LOG_DEBUG("Disabling readvertise-to-nlsr");
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000260 m_readvertiseNlsr.reset();
261 }
Alexander Afanasyev31367922015-02-09 20:51:10 -0800262}
263
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400264} // namespace nfd::rib