blob: d3e162567182a4df705b4afec5de385dbf3f5b05 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento4b9d30f2020-05-01 02:48:34 -04002/*
Davide Pesaventod90338d2021-01-07 17:50:05 -05003 * Copyright (c) 2014-2021, The University of Memphis,
Vince Lehmanc2e51f62015-01-20 15:03:11 -06004 * Regents of the University of California,
5 * Arizona Board of Regents.
akmhoque3d06e792014-05-27 16:23:20 -05006 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -040020 */
Vince Lehmanc2e51f62015-01-20 15:03:11 -060021
Ashlesh Gawande3909aa12017-07-28 16:01:35 -050022#include "conf-file-processor.hpp"
23#include "adjacent.hpp"
24#include "utility/name-helper.hpp"
25#include "update/prefix-update-processor.hpp"
26
Alexander Afanasyevb669f9c2014-11-14 12:41:54 -080027#include <ndn-cxx/name.hpp>
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050028#include <ndn-cxx/net/face-uri.hpp>
Alexander Afanasyevb669f9c2014-11-14 12:41:54 -080029
Nick Gordone98480b2017-05-24 11:23:03 -050030#include <iostream>
31#include <fstream>
akmhoque53353462014-04-22 08:43:45 -050032
akmhoque53353462014-04-22 08:43:45 -050033namespace nlsr {
34
Vince Lehman7b616582014-10-17 16:25:39 -050035template <class T>
36class ConfigurationVariable
37{
38public:
dmcoomes9f936662017-03-02 10:33:09 -060039 typedef std::function<void(T)> ConfParameterCallback;
Vince Lehman7b616582014-10-17 16:25:39 -050040
41 ConfigurationVariable(const std::string& key, const ConfParameterCallback& setter)
42 : m_key(key)
43 , m_setterCallback(setter)
44 , m_minValue(0)
45 , m_maxValue(0)
46 , m_shouldCheckRange(false)
47 , m_isRequired(true)
48 {
49 }
50
51 bool
52 parseFromConfigSection(const ConfigSection& section)
53 {
54 try {
55 T value = section.get<T>(m_key);
56
57 if (!isValidValue(value)) {
58 return false;
59 }
60
61 m_setterCallback(value);
62 return true;
63 }
64 catch (const std::exception& ex) {
65
66 if (m_isRequired) {
67 std::cerr << ex.what() << std::endl;
68 std::cerr << "Missing required configuration variable" << std::endl;
69 return false;
70 }
71 else {
72 m_setterCallback(m_defaultValue);
73 return true;
74 }
75 }
76
77 return false;
78 }
79
80 void
81 setMinAndMaxValue(T min, T max)
82 {
83 m_minValue = min;
84 m_maxValue = max;
85 m_shouldCheckRange = true;
86 }
87
88 void
89 setOptional(T defaultValue)
90 {
91 m_isRequired = false;
92 m_defaultValue = defaultValue;
93 }
94
95private:
96 void
97 printOutOfRangeError(T value)
98 {
99 std::cerr << "Invalid value for " << m_key << ": "
100 << value << ". "
101 << "Valid values: "
102 << m_minValue << " - "
103 << m_maxValue << std::endl;
104 }
105
106 bool
107 isValidValue(T value)
108 {
109 if (!m_shouldCheckRange) {
110 return true;
111 }
112 else if (value < m_minValue || value > m_maxValue)
113 {
114 printOutOfRangeError(value);
115 return false;
116 }
117
118 return true;
119 }
120
121private:
122 const std::string m_key;
123 const ConfParameterCallback m_setterCallback;
124 T m_defaultValue;
125
126 T m_minValue;
127 T m_maxValue;
128
129 bool m_shouldCheckRange;
130 bool m_isRequired;
131};
132
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600133ConfFileProcessor::ConfFileProcessor(ConfParameter& confParam)
134 : m_confFileName(confParam.getConfFileName())
135 , m_confParam(confParam)
136{
137}
138
akmhoque157b0a42014-05-13 00:26:37 -0500139bool
akmhoqueb6450b12014-04-24 00:01:03 -0500140ConfFileProcessor::processConfFile()
akmhoque53353462014-04-22 08:43:45 -0500141{
akmhoque157b0a42014-05-13 00:26:37 -0500142 bool ret = true;
Nick Gordone98480b2017-05-24 11:23:03 -0500143 std::ifstream inputFile;
akmhoque157b0a42014-05-13 00:26:37 -0500144 inputFile.open(m_confFileName.c_str());
145 if (!inputFile.is_open()) {
Nick Gordone98480b2017-05-24 11:23:03 -0500146 std::string msg = "Failed to read configuration file: ";
akmhoque157b0a42014-05-13 00:26:37 -0500147 msg += m_confFileName;
Nick Gordone98480b2017-05-24 11:23:03 -0500148 std::cerr << msg << std::endl;
akmhoquead5fe952014-06-26 13:34:12 -0500149 return false;
akmhoque157b0a42014-05-13 00:26:37 -0500150 }
151 ret = load(inputFile);
152 inputFile.close();
Saurab Dulal427e0122019-11-28 11:58:02 -0600153
154 if (ret) {
155 m_confParam.buildRouterAndSyncUserPrefix();
156 m_confParam.writeLog();
157 }
158
akmhoque157b0a42014-05-13 00:26:37 -0500159 return ret;
160}
161
162bool
Nick Gordone98480b2017-05-24 11:23:03 -0500163ConfFileProcessor::load(std::istream& input)
akmhoque157b0a42014-05-13 00:26:37 -0500164{
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700165 ConfigSection pt;
akmhoque157b0a42014-05-13 00:26:37 -0500166 try {
167 boost::property_tree::read_info(input, pt);
168 }
169 catch (const boost::property_tree::info_parser_error& error) {
Nick Gordone98480b2017-05-24 11:23:03 -0500170 std::stringstream msg;
akmhoque157b0a42014-05-13 00:26:37 -0500171 std::cerr << "Failed to parse configuration file " << std::endl;
172 std::cerr << m_confFileName << std::endl;
173 return false;
174 }
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700175
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600176 for (const auto& tn : pt) {
177 if (!processSection(tn.first, tn.second)) {
178 return false;
akmhoque157b0a42014-05-13 00:26:37 -0500179 }
180 }
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600181 return true;
akmhoque157b0a42014-05-13 00:26:37 -0500182}
183
184bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700185ConfFileProcessor::processSection(const std::string& sectionName, const ConfigSection& section)
akmhoque157b0a42014-05-13 00:26:37 -0500186{
187 bool ret = true;
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700188 if (sectionName == "general")
akmhoque53353462014-04-22 08:43:45 -0500189 {
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700190 ret = processConfSectionGeneral(section);
akmhoque157b0a42014-05-13 00:26:37 -0500191 }
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700192 else if (sectionName == "neighbors")
akmhoque157b0a42014-05-13 00:26:37 -0500193 {
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700194 ret = processConfSectionNeighbors(section);
akmhoque157b0a42014-05-13 00:26:37 -0500195 }
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700196 else if (sectionName == "hyperbolic")
akmhoque157b0a42014-05-13 00:26:37 -0500197 {
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700198 ret = processConfSectionHyperbolic(section);
akmhoque157b0a42014-05-13 00:26:37 -0500199 }
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700200 else if (sectionName == "fib")
akmhoque157b0a42014-05-13 00:26:37 -0500201 {
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700202 ret = processConfSectionFib(section);
akmhoque157b0a42014-05-13 00:26:37 -0500203 }
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700204 else if (sectionName == "advertising")
akmhoque157b0a42014-05-13 00:26:37 -0500205 {
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700206 ret = processConfSectionAdvertising(section);
akmhoque157b0a42014-05-13 00:26:37 -0500207 }
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700208 else if (sectionName == "security")
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700209 {
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700210 ret = processConfSectionSecurity(section);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700211 }
akmhoque157b0a42014-05-13 00:26:37 -0500212 else
213 {
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700214 std::cerr << "Wrong configuration section: " << sectionName << std::endl;
akmhoque157b0a42014-05-13 00:26:37 -0500215 }
216 return ret;
217}
218
219bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700220ConfFileProcessor::processConfSectionGeneral(const ConfigSection& section)
akmhoque157b0a42014-05-13 00:26:37 -0500221{
222 try {
Nick Gordone98480b2017-05-24 11:23:03 -0500223 std::string network = section.get<std::string>("network");
224 std::string site = section.get<std::string>("site");
225 std::string router = section.get<std::string>("router");
akmhoque157b0a42014-05-13 00:26:37 -0500226 ndn::Name networkName(network);
227 if (!networkName.empty()) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600228 m_confParam.setNetwork(networkName);
akmhoque157b0a42014-05-13 00:26:37 -0500229 }
230 else {
Nick Gordone98480b2017-05-24 11:23:03 -0500231 std::cerr << " Network can not be null or empty or in bad URI format :(!" << std::endl;
akmhoque157b0a42014-05-13 00:26:37 -0500232 return false;
233 }
234 ndn::Name siteName(site);
235 if (!siteName.empty()) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600236 m_confParam.setSiteName(siteName);
akmhoque157b0a42014-05-13 00:26:37 -0500237 }
238 else {
Nick Gordone98480b2017-05-24 11:23:03 -0500239 std::cerr << "Site can not be null or empty or in bad URI format:( !" << std::endl;
akmhoque157b0a42014-05-13 00:26:37 -0500240 return false;
241 }
242 ndn::Name routerName(router);
243 if (!routerName.empty()) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600244 m_confParam.setRouterName(routerName);
akmhoque157b0a42014-05-13 00:26:37 -0500245 }
246 else {
Nick Gordone98480b2017-05-24 11:23:03 -0500247 std::cerr << " Router name can not be null or empty or in bad URI format:( !" << std::endl;
akmhoque157b0a42014-05-13 00:26:37 -0500248 return false;
249 }
250 }
251 catch (const std::exception& ex) {
Nick Gordone98480b2017-05-24 11:23:03 -0500252 std::cerr << ex.what() << std::endl;
akmhoque157b0a42014-05-13 00:26:37 -0500253 return false;
254 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700255
alvya2228c62014-12-09 10:25:11 -0600256 // lsa-refresh-time
alvy5a454952014-12-15 12:49:54 -0600257 uint32_t lsaRefreshTime = section.get<uint32_t>("lsa-refresh-time", LSA_REFRESH_TIME_DEFAULT);
alvya2228c62014-12-09 10:25:11 -0600258
259 if (lsaRefreshTime >= LSA_REFRESH_TIME_MIN && lsaRefreshTime <= LSA_REFRESH_TIME_MAX) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600260 m_confParam.setLsaRefreshTime(lsaRefreshTime);
akmhoque157b0a42014-05-13 00:26:37 -0500261 }
alvya2228c62014-12-09 10:25:11 -0600262 else {
263 std::cerr << "Wrong value for lsa-refresh-time ";
Ashlesh Gawande08bce9c2019-04-05 11:08:07 -0500264 std::cerr << "Allowed value: " << LSA_REFRESH_TIME_MIN << "-";
alvya2228c62014-12-09 10:25:11 -0600265 std::cerr << LSA_REFRESH_TIME_MAX << std::endl;
266
267 return false;
268 }
269
270 // router-dead-interval
alvy5a454952014-12-15 12:49:54 -0600271 uint32_t routerDeadInterval = section.get<uint32_t>("router-dead-interval", (2*lsaRefreshTime));
alvya2228c62014-12-09 10:25:11 -0600272
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600273 if (routerDeadInterval > m_confParam.getLsaRefreshTime()) {
274 m_confParam.setRouterDeadInterval(routerDeadInterval);
alvya2228c62014-12-09 10:25:11 -0600275 }
276 else {
277 std::cerr << "Value of router-dead-interval must be larger than lsa-refresh-time" << std::endl;
278 return false;
279 }
280
281 // lsa-interest-lifetime
282 int lifetime = section.get<int>("lsa-interest-lifetime", LSA_INTEREST_LIFETIME_DEFAULT);
283
284 if (lifetime >= LSA_INTEREST_LIFETIME_MIN && lifetime <= LSA_INTEREST_LIFETIME_MAX) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600285 m_confParam.setLsaInterestLifetime(ndn::time::seconds(lifetime));
alvya2228c62014-12-09 10:25:11 -0600286 }
287 else {
288 std::cerr << "Wrong value for lsa-interest-timeout. "
289 << "Allowed value:" << LSA_INTEREST_LIFETIME_MIN << "-"
290 << LSA_INTEREST_LIFETIME_MAX << std::endl;
291
akmhoque157b0a42014-05-13 00:26:37 -0500292 return false;
293 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700294
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -0500295 // sync-protocol
296 std::string syncProtocol = section.get<std::string>("sync-protocol", "chronosync");
297 if (syncProtocol == "chronosync") {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600298 m_confParam.setSyncProtocol(SYNC_PROTOCOL_CHRONOSYNC);
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -0500299 }
300 else if (syncProtocol == "psync") {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600301 m_confParam.setSyncProtocol(SYNC_PROTOCOL_PSYNC);
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -0500302 }
303 else {
304 std::cerr << "Sync protocol " << syncProtocol << " is not supported!"
305 << "Use chronosync or psync" << std::endl;
306 return false;
307 }
308
309 // sync-interest-lifetime
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600310 uint32_t syncInterestLifetime = section.get<uint32_t>("sync-interest-lifetime",
311 SYNC_INTEREST_LIFETIME_DEFAULT);
Ashlesh Gawandef7da9c52018-02-06 17:36:46 -0600312 if (syncInterestLifetime >= SYNC_INTEREST_LIFETIME_MIN &&
313 syncInterestLifetime <= SYNC_INTEREST_LIFETIME_MAX) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600314 m_confParam.setSyncInterestLifetime(syncInterestLifetime);
Ashlesh Gawandef7da9c52018-02-06 17:36:46 -0600315 }
316 else {
317 std::cerr << "Wrong value for sync-interest-lifetime. "
318 << "Allowed value:" << SYNC_INTEREST_LIFETIME_MIN << "-"
319 << SYNC_INTEREST_LIFETIME_MAX << std::endl;
320
321 return false;
322 }
323
akmhoque674b0b12014-05-20 14:33:28 -0500324 try {
dulalsaurab82a34c22019-02-04 17:31:21 +0000325 std::string stateDir = section.get<std::string>("state-dir");
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600326 if (bf::exists(stateDir)) {
327 if (bf::is_directory(stateDir)) {
dulalsaurab82a34c22019-02-04 17:31:21 +0000328
329 // copying nlsr.conf file to a user define directory for possible modification
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600330 std::string conFileDynamic = (bf::path(stateDir) / "nlsr.conf").c_str();
331
332 if (m_confFileName == conFileDynamic) {
333 std::cerr << "Please use nlsr.conf stored at another location "
334 << "or change the state-dir in the configuration." << std::endl;
335 std::cerr << "The file at " << conFileDynamic <<
336 " is used as dynamic file for saving NLSR runtime changes." << std::endl;
337 std::cerr << "The dynamic file can be used for next run "
338 << "after copying to another location." << std::endl;
339 return false;
340 }
341
dulalsaurab82a34c22019-02-04 17:31:21 +0000342 m_confParam.setConfFileNameDynamic(conFileDynamic);
343 try {
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600344 bf::copy_file(m_confFileName, conFileDynamic, bf::copy_option::overwrite_if_exists);
dulalsaurab82a34c22019-02-04 17:31:21 +0000345 }
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600346 catch (const bf::filesystem_error& e) {
dulalsaurab82a34c22019-02-04 17:31:21 +0000347 std::cerr << "Error copying conf file to the state directory: " << e.what() << std::endl;
348 }
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600349
350 std::string testFileName = (bf::path(stateDir) / "test.seq").c_str();
dulalsaurab82a34c22019-02-04 17:31:21 +0000351 std::ofstream testOutFile(testFileName);
352 if (testOutFile) {
353 m_confParam.setStateFileDir(stateDir);
akmhoque674b0b12014-05-20 14:33:28 -0500354 }
355 else {
dulalsaurab82a34c22019-02-04 17:31:21 +0000356 std::cerr << "User does not have read and write permission on the state directory";
akmhoque674b0b12014-05-20 14:33:28 -0500357 std::cerr << std::endl;
358 return false;
359 }
360 testOutFile.close();
361 remove(testFileName.c_str());
362 }
363 else {
dulalsaurab82a34c22019-02-04 17:31:21 +0000364 std::cerr << "Provided: " << stateDir << "is not a directory" << std::endl;
akmhoque674b0b12014-05-20 14:33:28 -0500365 return false;
366 }
367 }
368 else {
dulalsaurab82a34c22019-02-04 17:31:21 +0000369 std::cerr << "Provided state directory <" << stateDir << "> does not exist" << std::endl;
akmhoque674b0b12014-05-20 14:33:28 -0500370 return false;
371 }
372 }
373 catch (const std::exception& ex) {
dulalsaurab82a34c22019-02-04 17:31:21 +0000374 std::cerr << "You must configure state directory" << std::endl;
akmhoque674b0b12014-05-20 14:33:28 -0500375 std::cerr << ex.what() << std::endl;
376 return false;
377 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700378
akmhoque157b0a42014-05-13 00:26:37 -0500379 return true;
380}
381
382bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700383ConfFileProcessor::processConfSectionNeighbors(const ConfigSection& section)
akmhoque157b0a42014-05-13 00:26:37 -0500384{
alvya2228c62014-12-09 10:25:11 -0600385 // hello-retries
386 int retrials = section.get<int>("hello-retries", HELLO_RETRIES_DEFAULT);
387
388 if (retrials >= HELLO_RETRIES_MIN && retrials <= HELLO_RETRIES_MAX) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600389 m_confParam.setInterestRetryNumber(retrials);
akmhoque157b0a42014-05-13 00:26:37 -0500390 }
alvya2228c62014-12-09 10:25:11 -0600391 else {
392 std::cerr << "Wrong value for hello-retries." << std::endl;
393 std::cerr << "Allowed value:" << HELLO_RETRIES_MIN << "-";
394 std::cerr << HELLO_RETRIES_MAX << std::endl;
395
akmhoque157b0a42014-05-13 00:26:37 -0500396 return false;
397 }
alvya2228c62014-12-09 10:25:11 -0600398
399 // hello-timeout
alvy5a454952014-12-15 12:49:54 -0600400 uint32_t timeOut = section.get<uint32_t>("hello-timeout", HELLO_TIMEOUT_DEFAULT);
alvya2228c62014-12-09 10:25:11 -0600401
402 if (timeOut >= HELLO_TIMEOUT_MIN && timeOut <= HELLO_TIMEOUT_MAX) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600403 m_confParam.setInterestResendTime(timeOut);
akmhoque157b0a42014-05-13 00:26:37 -0500404 }
alvya2228c62014-12-09 10:25:11 -0600405 else {
406 std::cerr << "Wrong value for hello-timeout. ";
407 std::cerr << "Allowed value:" << HELLO_TIMEOUT_MIN << "-";
408 std::cerr << HELLO_TIMEOUT_MAX << std::endl;
409
410 return false;
akmhoque157b0a42014-05-13 00:26:37 -0500411 }
alvya2228c62014-12-09 10:25:11 -0600412
413 // hello-interval
alvy5a454952014-12-15 12:49:54 -0600414 uint32_t interval = section.get<uint32_t>("hello-interval", HELLO_INTERVAL_DEFAULT);
alvya2228c62014-12-09 10:25:11 -0600415
416 if (interval >= HELLO_INTERVAL_MIN && interval <= HELLO_INTERVAL_MAX) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600417 m_confParam.setInfoInterestInterval(interval);
akmhoque157b0a42014-05-13 00:26:37 -0500418 }
alvya2228c62014-12-09 10:25:11 -0600419 else {
420 std::cerr << "Wrong value for hello-interval. ";
421 std::cerr << "Allowed value:" << HELLO_INTERVAL_MIN << "-";
422 std::cerr << HELLO_INTERVAL_MAX << std::endl;
423
424 return false;
akmhoque157b0a42014-05-13 00:26:37 -0500425 }
Vince Lehman7b616582014-10-17 16:25:39 -0500426
427 // Event intervals
428 // adj-lsa-build-interval
429 ConfigurationVariable<uint32_t> adjLsaBuildInterval("adj-lsa-build-interval",
dmcoomes9f936662017-03-02 10:33:09 -0600430 std::bind(&ConfParameter::setAdjLsaBuildInterval,
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600431 &m_confParam, _1));
Vince Lehman7b616582014-10-17 16:25:39 -0500432 adjLsaBuildInterval.setMinAndMaxValue(ADJ_LSA_BUILD_INTERVAL_MIN, ADJ_LSA_BUILD_INTERVAL_MAX);
433 adjLsaBuildInterval.setOptional(ADJ_LSA_BUILD_INTERVAL_DEFAULT);
434
435 if (!adjLsaBuildInterval.parseFromConfigSection(section)) {
436 return false;
437 }
Nick Gordond5c1a372016-10-31 13:56:23 -0500438 // Set the retry count for fetching the FaceStatus dataset
439 ConfigurationVariable<uint32_t> faceDatasetFetchTries("face-dataset-fetch-tries",
440 std::bind(&ConfParameter::setFaceDatasetFetchTries,
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600441 &m_confParam,
Nick Gordond5c1a372016-10-31 13:56:23 -0500442 _1));
443
444 faceDatasetFetchTries.setMinAndMaxValue(FACE_DATASET_FETCH_TRIES_MIN,
445 FACE_DATASET_FETCH_TRIES_MAX);
446 faceDatasetFetchTries.setOptional(FACE_DATASET_FETCH_TRIES_DEFAULT);
447
448 if (!faceDatasetFetchTries.parseFromConfigSection(section)) {
449 return false;
450 }
451
452 // Set the interval between FaceStatus dataset fetch attempts.
Ashlesh Gawande3909aa12017-07-28 16:01:35 -0500453 ConfigurationVariable<uint32_t> faceDatasetFetchInterval("face-dataset-fetch-interval",
Davide Pesaventod90338d2021-01-07 17:50:05 -0500454 std::bind(&ConfParameter::setFaceDatasetFetchInterval,
455 &m_confParam,
456 _1));
Nick Gordond5c1a372016-10-31 13:56:23 -0500457
Ashlesh Gawande3909aa12017-07-28 16:01:35 -0500458 faceDatasetFetchInterval.setMinAndMaxValue(FACE_DATASET_FETCH_INTERVAL_MIN,
459 FACE_DATASET_FETCH_INTERVAL_MAX);
460 faceDatasetFetchInterval.setOptional(FACE_DATASET_FETCH_INTERVAL_DEFAULT);
Nick Gordond5c1a372016-10-31 13:56:23 -0500461
462 if (!faceDatasetFetchInterval.parseFromConfigSection(section)) {
463 return false;
464 }
Vince Lehman7b616582014-10-17 16:25:39 -0500465
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600466 for (const auto& tn : section) {
467 if (tn.first == "neighbor") {
akmhoque157b0a42014-05-13 00:26:37 -0500468 try {
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600469 ConfigSection CommandAttriTree = tn.second;
akmhoque157b0a42014-05-13 00:26:37 -0500470 std::string name = CommandAttriTree.get<std::string>("name");
Nick Gordone9733ed2017-04-26 10:48:39 -0500471 std::string uriString = CommandAttriTree.get<std::string>("face-uri");
alvy2fe12872014-11-25 10:32:23 -0600472
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500473 ndn::FaceUri faceUri;
Davide Pesavento4b9d30f2020-05-01 02:48:34 -0400474 if (!faceUri.parse(uriString)) {
475 std::cerr << "face-uri parsing failed" << std::endl;
Ashlesh Gawande7e3f6d72019-01-25 13:13:43 -0600476 return false;
477 }
478
479 bool failedToCanonize = false;
Davide Pesavento4b9d30f2020-05-01 02:48:34 -0400480 faceUri.canonize([&faceUri] (const auto& canonicalUri) {
Ashlesh Gawande7e3f6d72019-01-25 13:13:43 -0600481 faceUri = canonicalUri;
482 },
Davide Pesavento4b9d30f2020-05-01 02:48:34 -0400483 [&faceUri, &failedToCanonize] (const auto& reason) {
Ashlesh Gawande7e3f6d72019-01-25 13:13:43 -0600484 failedToCanonize = true;
Davide Pesavento4b9d30f2020-05-01 02:48:34 -0400485 std::cerr << "Could not canonize URI: '" << faceUri
486 << "' because: " << reason << std::endl;
Ashlesh Gawande7e3f6d72019-01-25 13:13:43 -0600487 },
488 m_io,
489 TIME_ALLOWED_FOR_CANONIZATION);
490 m_io.run();
Ashlesh Gawande9ecbdc92019-03-11 13:18:45 -0700491 m_io.reset();
Ashlesh Gawande7e3f6d72019-01-25 13:13:43 -0600492
493 if (failedToCanonize) {
alvy2fe12872014-11-25 10:32:23 -0600494 return false;
495 }
496
Davide Pesavento4b9d30f2020-05-01 02:48:34 -0400497 double linkCost = CommandAttriTree.get<double>("link-cost", Adjacent::DEFAULT_LINK_COST);
akmhoque157b0a42014-05-13 00:26:37 -0500498 ndn::Name neighborName(name);
499 if (!neighborName.empty()) {
Vince Lehmancb76ade2014-08-28 21:24:41 -0500500 Adjacent adj(name, faceUri, linkCost, Adjacent::STATUS_INACTIVE, 0, 0);
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600501 m_confParam.getAdjacencyList().insert(adj);
akmhoque157b0a42014-05-13 00:26:37 -0500502 }
503 else {
akmhoque674b0b12014-05-20 14:33:28 -0500504 std::cerr << " Wrong command format ! [name /nbr/name/ \n face-uri /uri\n]";
akmhoque157b0a42014-05-13 00:26:37 -0500505 std::cerr << " or bad URI format" << std::endl;
akmhoque53353462014-04-22 08:43:45 -0500506 }
507 }
akmhoque157b0a42014-05-13 00:26:37 -0500508 catch (const std::exception& ex) {
509 std::cerr << ex.what() << std::endl;
510 return false;
511 }
akmhoque53353462014-04-22 08:43:45 -0500512 }
513 }
akmhoque157b0a42014-05-13 00:26:37 -0500514 return true;
akmhoque53353462014-04-22 08:43:45 -0500515}
516
akmhoque157b0a42014-05-13 00:26:37 -0500517bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700518ConfFileProcessor::processConfSectionHyperbolic(const ConfigSection& section)
akmhoque53353462014-04-22 08:43:45 -0500519{
alvya2228c62014-12-09 10:25:11 -0600520 // state
Nick Gordone98480b2017-05-24 11:23:03 -0500521 std::string state = section.get<std::string>("state", "off");
alvya2228c62014-12-09 10:25:11 -0600522
523 if (boost::iequals(state, "off")) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600524 m_confParam.setHyperbolicState(HYPERBOLIC_STATE_OFF);
akmhoque53353462014-04-22 08:43:45 -0500525 }
alvya2228c62014-12-09 10:25:11 -0600526 else if (boost::iequals(state, "on")) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600527 m_confParam.setHyperbolicState(HYPERBOLIC_STATE_ON);
alvya2228c62014-12-09 10:25:11 -0600528 }
529 else if (state == "dry-run") {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600530 m_confParam.setHyperbolicState(HYPERBOLIC_STATE_DRY_RUN);
alvya2228c62014-12-09 10:25:11 -0600531 }
532 else {
533 std::cerr << "Wrong format for hyperbolic state." << std::endl;
534 std::cerr << "Allowed value: off, on, dry-run" << std::endl;
535
akmhoque157b0a42014-05-13 00:26:37 -0500536 return false;
akmhoque53353462014-04-22 08:43:45 -0500537 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700538
akmhoque157b0a42014-05-13 00:26:37 -0500539 try {
Laqin Fan54a43f02017-03-08 12:31:30 -0600540 // Radius and angle(s) are mandatory configuration parameters in hyperbolic section.
541 // Even if router can have hyperbolic routing calculation off but other router
542 // in the network may use hyperbolic routing calculation for FIB generation.
543 // So each router need to advertise its hyperbolic coordinates in the network
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700544 double radius = section.get<double>("radius");
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600545 std::string angleString = section.get<std::string>("angle");
546
547 std::stringstream ss(angleString);
548 std::vector<double> angles;
549
550 double angle;
551
Laqin Fan54a43f02017-03-08 12:31:30 -0600552 while (ss >> angle) {
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600553 angles.push_back(angle);
Laqin Fan54a43f02017-03-08 12:31:30 -0600554 if (ss.peek() == ',' || ss.peek() == ' ') {
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600555 ss.ignore();
556 }
557 }
558
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600559 if (!m_confParam.setCorR(radius)) {
akmhoque157b0a42014-05-13 00:26:37 -0500560 return false;
561 }
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600562 m_confParam.setCorTheta(angles);
akmhoque53353462014-04-22 08:43:45 -0500563 }
akmhoque157b0a42014-05-13 00:26:37 -0500564 catch (const std::exception& ex) {
565 std::cerr << ex.what() << std::endl;
566 if (state == "on" || state == "dry-run") {
567 return false;
568 }
akmhoque53353462014-04-22 08:43:45 -0500569 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700570
akmhoque157b0a42014-05-13 00:26:37 -0500571 return true;
akmhoque53353462014-04-22 08:43:45 -0500572}
573
akmhoque157b0a42014-05-13 00:26:37 -0500574bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700575ConfFileProcessor::processConfSectionFib(const ConfigSection& section)
akmhoque53353462014-04-22 08:43:45 -0500576{
alvya2228c62014-12-09 10:25:11 -0600577 // max-faces-per-prefix
578 int maxFacesPerPrefix = section.get<int>("max-faces-per-prefix", MAX_FACES_PER_PREFIX_DEFAULT);
579
580 if (maxFacesPerPrefix >= MAX_FACES_PER_PREFIX_MIN &&
581 maxFacesPerPrefix <= MAX_FACES_PER_PREFIX_MAX)
582 {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600583 m_confParam.setMaxFacesPerPrefix(maxFacesPerPrefix);
akmhoque53353462014-04-22 08:43:45 -0500584 }
alvya2228c62014-12-09 10:25:11 -0600585 else {
586 std::cerr << "Wrong value for max-faces-per-prefix. ";
587 std::cerr << MAX_FACES_PER_PREFIX_MIN << std::endl;
588
akmhoque157b0a42014-05-13 00:26:37 -0500589 return false;
590 }
Vince Lehman7b616582014-10-17 16:25:39 -0500591
592 // routing-calc-interval
593 ConfigurationVariable<uint32_t> routingCalcInterval("routing-calc-interval",
dmcoomes9f936662017-03-02 10:33:09 -0600594 std::bind(&ConfParameter::setRoutingCalcInterval,
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600595 &m_confParam, _1));
Vince Lehman7b616582014-10-17 16:25:39 -0500596 routingCalcInterval.setMinAndMaxValue(ROUTING_CALC_INTERVAL_MIN, ROUTING_CALC_INTERVAL_MAX);
597 routingCalcInterval.setOptional(ROUTING_CALC_INTERVAL_DEFAULT);
598
599 if (!routingCalcInterval.parseFromConfigSection(section)) {
600 return false;
601 }
602
akmhoque157b0a42014-05-13 00:26:37 -0500603 return true;
akmhoque53353462014-04-22 08:43:45 -0500604}
605
akmhoque157b0a42014-05-13 00:26:37 -0500606bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700607ConfFileProcessor::processConfSectionAdvertising(const ConfigSection& section)
akmhoque53353462014-04-22 08:43:45 -0500608{
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600609 for (const auto& tn : section) {
610 if (tn.first == "prefix") {
akmhoque157b0a42014-05-13 00:26:37 -0500611 try {
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600612 ndn::Name namePrefix(tn.second.data());
akmhoque157b0a42014-05-13 00:26:37 -0500613 if (!namePrefix.empty()) {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600614 m_confParam.getNamePrefixList().insert(namePrefix);
akmhoque157b0a42014-05-13 00:26:37 -0500615 }
616 else {
akmhoque674b0b12014-05-20 14:33:28 -0500617 std::cerr << " Wrong command format ! [prefix /name/prefix] or bad URI" << std::endl;
akmhoque157b0a42014-05-13 00:26:37 -0500618 return false;
619 }
620 }
621 catch (const std::exception& ex) {
622 std::cerr << ex.what() << std::endl;
623 return false;
624 }
akmhoque53353462014-04-22 08:43:45 -0500625 }
akmhoque53353462014-04-22 08:43:45 -0500626 }
akmhoque157b0a42014-05-13 00:26:37 -0500627 return true;
akmhoque53353462014-04-22 08:43:45 -0500628}
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700629
630bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700631ConfFileProcessor::processConfSectionSecurity(const ConfigSection& section)
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700632{
633 ConfigSection::const_iterator it = section.begin();
634
Vince Lehmand33e5bc2015-06-22 15:27:50 -0500635 if (it == section.end() || it->first != "validator") {
636 std::cerr << "Error: Expect validator section!" << std::endl;
637 return false;
638 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700639
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600640 m_confParam.getValidator().load(it->second, m_confFileName);
Vince Lehmand33e5bc2015-06-22 15:27:50 -0500641
akmhoqued57f3672014-06-10 10:41:32 -0500642 it++;
Vince Lehmand33e5bc2015-06-22 15:27:50 -0500643 if (it != section.end() && it->first == "prefix-update-validator") {
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600644 m_confParam.getPrefixUpdateValidator().load(it->second, m_confFileName);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700645
Vince Lehmand33e5bc2015-06-22 15:27:50 -0500646 it++;
647 for (; it != section.end(); it++) {
Vince Lehmand33e5bc2015-06-22 15:27:50 -0500648
649 if (it->first != "cert-to-publish") {
650 std::cerr << "Error: Expect cert-to-publish!" << std::endl;
651 return false;
652 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700653
654 std::string file = it->second.data();
Ashlesh Gawande328fc112019-12-12 17:06:44 -0600655 bf::path certfilePath = absolute(file, bf::path(m_confFileName).parent_path());
Alexander Afanasyev0ad01f32020-06-03 14:12:58 -0400656 auto idCert = ndn::io::load<ndn::security::Certificate>(certfilePath.string());
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700657
Vince Lehmand33e5bc2015-06-22 15:27:50 -0500658 if (idCert == nullptr) {
659 std::cerr << "Error: Cannot load cert-to-publish: " << file << "!" << std::endl;
660 return false;
661 }
Saurab Dulal427e0122019-11-28 11:58:02 -0600662 m_confParam.addCertPath(certfilePath.string());
663 m_confParam.loadCertToValidator(*idCert);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700664 }
Vince Lehmand33e5bc2015-06-22 15:27:50 -0500665 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700666
667 return true;
668}
669
alvy2fe12872014-11-25 10:32:23 -0600670} // namespace nlsr