akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 4b9d30f | 2020-05-01 02:48:34 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 1954a0c | 2022-09-30 15:56:04 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2022, The University of Memphis, |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame] | 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 6 | * |
| 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 Afanasyev | 0ad01f3 | 2020-06-03 14:12:58 -0400 | [diff] [blame] | 20 | */ |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame] | 21 | |
Ashlesh Gawande | 3909aa1 | 2017-07-28 16:01:35 -0500 | [diff] [blame] | 22 | #include "conf-file-processor.hpp" |
| 23 | #include "adjacent.hpp" |
Ashlesh Gawande | 3909aa1 | 2017-07-28 16:01:35 -0500 | [diff] [blame] | 24 | #include "update/prefix-update-processor.hpp" |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 25 | #include "utility/name-helper.hpp" |
Ashlesh Gawande | 3909aa1 | 2017-07-28 16:01:35 -0500 | [diff] [blame] | 26 | |
Alexander Afanasyev | b669f9c | 2014-11-14 12:41:54 -0800 | [diff] [blame] | 27 | #include <ndn-cxx/name.hpp> |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 28 | #include <ndn-cxx/net/face-uri.hpp> |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 29 | #include <ndn-cxx/util/io.hpp> |
Alexander Afanasyev | b669f9c | 2014-11-14 12:41:54 -0800 | [diff] [blame] | 30 | |
Davide Pesavento | 22520e6 | 2021-06-08 22:16:52 -0400 | [diff] [blame] | 31 | #include <boost/filesystem.hpp> |
| 32 | #include <boost/property_tree/info_parser.hpp> |
| 33 | |
Nick Gordon | e98480b | 2017-05-24 11:23:03 -0500 | [diff] [blame] | 34 | #include <fstream> |
Davide Pesavento | 22520e6 | 2021-06-08 22:16:52 -0400 | [diff] [blame] | 35 | #include <iostream> |
| 36 | |
| 37 | namespace bf = boost::filesystem; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 38 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 39 | namespace nlsr { |
| 40 | |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 41 | template <class T> |
| 42 | class ConfigurationVariable |
| 43 | { |
| 44 | public: |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 45 | typedef std::function<void(T)> ConfParameterCallback; |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 46 | |
| 47 | ConfigurationVariable(const std::string& key, const ConfParameterCallback& setter) |
| 48 | : m_key(key) |
| 49 | , m_setterCallback(setter) |
| 50 | , m_minValue(0) |
| 51 | , m_maxValue(0) |
| 52 | , m_shouldCheckRange(false) |
| 53 | , m_isRequired(true) |
| 54 | { |
| 55 | } |
| 56 | |
| 57 | bool |
| 58 | parseFromConfigSection(const ConfigSection& section) |
| 59 | { |
| 60 | try { |
| 61 | T value = section.get<T>(m_key); |
| 62 | |
| 63 | if (!isValidValue(value)) { |
| 64 | return false; |
| 65 | } |
| 66 | |
| 67 | m_setterCallback(value); |
| 68 | return true; |
| 69 | } |
| 70 | catch (const std::exception& ex) { |
| 71 | |
| 72 | if (m_isRequired) { |
| 73 | std::cerr << ex.what() << std::endl; |
| 74 | std::cerr << "Missing required configuration variable" << std::endl; |
| 75 | return false; |
| 76 | } |
| 77 | else { |
| 78 | m_setterCallback(m_defaultValue); |
| 79 | return true; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | return false; |
| 84 | } |
| 85 | |
| 86 | void |
| 87 | setMinAndMaxValue(T min, T max) |
| 88 | { |
| 89 | m_minValue = min; |
| 90 | m_maxValue = max; |
| 91 | m_shouldCheckRange = true; |
| 92 | } |
| 93 | |
| 94 | void |
| 95 | setOptional(T defaultValue) |
| 96 | { |
| 97 | m_isRequired = false; |
| 98 | m_defaultValue = defaultValue; |
| 99 | } |
| 100 | |
| 101 | private: |
| 102 | void |
| 103 | printOutOfRangeError(T value) |
| 104 | { |
| 105 | std::cerr << "Invalid value for " << m_key << ": " |
| 106 | << value << ". " |
| 107 | << "Valid values: " |
| 108 | << m_minValue << " - " |
| 109 | << m_maxValue << std::endl; |
| 110 | } |
| 111 | |
| 112 | bool |
| 113 | isValidValue(T value) |
| 114 | { |
| 115 | if (!m_shouldCheckRange) { |
| 116 | return true; |
| 117 | } |
| 118 | else if (value < m_minValue || value > m_maxValue) |
| 119 | { |
| 120 | printOutOfRangeError(value); |
| 121 | return false; |
| 122 | } |
| 123 | |
| 124 | return true; |
| 125 | } |
| 126 | |
| 127 | private: |
| 128 | const std::string m_key; |
| 129 | const ConfParameterCallback m_setterCallback; |
| 130 | T m_defaultValue; |
| 131 | |
| 132 | T m_minValue; |
| 133 | T m_maxValue; |
| 134 | |
| 135 | bool m_shouldCheckRange; |
| 136 | bool m_isRequired; |
| 137 | }; |
| 138 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 139 | ConfFileProcessor::ConfFileProcessor(ConfParameter& confParam) |
| 140 | : m_confFileName(confParam.getConfFileName()) |
| 141 | , m_confParam(confParam) |
| 142 | { |
| 143 | } |
| 144 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 145 | bool |
akmhoque | b6450b1 | 2014-04-24 00:01:03 -0500 | [diff] [blame] | 146 | ConfFileProcessor::processConfFile() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 147 | { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 148 | std::ifstream inputFile(m_confFileName); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 149 | if (!inputFile.is_open()) { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 150 | std::cerr << "Failed to read configuration file: " << m_confFileName << std::endl; |
akmhoque | ad5fe95 | 2014-06-26 13:34:12 -0500 | [diff] [blame] | 151 | return false; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 152 | } |
Saurab Dulal | 427e012 | 2019-11-28 11:58:02 -0600 | [diff] [blame] | 153 | |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 154 | if (!load(inputFile)) { |
| 155 | return false; |
Saurab Dulal | 427e012 | 2019-11-28 11:58:02 -0600 | [diff] [blame] | 156 | } |
| 157 | |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 158 | m_confParam.buildRouterAndSyncUserPrefix(); |
| 159 | m_confParam.writeLog(); |
| 160 | return true; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | bool |
Nick Gordon | e98480b | 2017-05-24 11:23:03 -0500 | [diff] [blame] | 164 | ConfFileProcessor::load(std::istream& input) |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 165 | { |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 166 | ConfigSection pt; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 167 | try { |
| 168 | boost::property_tree::read_info(input, pt); |
| 169 | } |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 170 | catch (const boost::property_tree::ptree_error& e) { |
| 171 | std::cerr << "Failed to parse configuration file '" << m_confFileName |
| 172 | << "': " << e.what() << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 173 | return false; |
| 174 | } |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 175 | |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 176 | for (const auto& tn : pt) { |
| 177 | if (!processSection(tn.first, tn.second)) { |
| 178 | return false; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 179 | } |
| 180 | } |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 181 | return true; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | bool |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 185 | ConfFileProcessor::processSection(const std::string& sectionName, const ConfigSection& section) |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 186 | { |
| 187 | bool ret = true; |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 188 | if (sectionName == "general") { |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 189 | ret = processConfSectionGeneral(section); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 190 | } |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 191 | else if (sectionName == "neighbors") { |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 192 | ret = processConfSectionNeighbors(section); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 193 | } |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 194 | else if (sectionName == "hyperbolic") { |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 195 | ret = processConfSectionHyperbolic(section); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 196 | } |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 197 | else if (sectionName == "fib") { |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 198 | ret = processConfSectionFib(section); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 199 | } |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 200 | else if (sectionName == "advertising") { |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 201 | ret = processConfSectionAdvertising(section); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 202 | } |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 203 | else if (sectionName == "security") { |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 204 | ret = processConfSectionSecurity(section); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 205 | } |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 206 | else { |
| 207 | std::cerr << "Unknown configuration section: " << sectionName << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 208 | } |
| 209 | return ret; |
| 210 | } |
| 211 | |
| 212 | bool |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 213 | ConfFileProcessor::processConfSectionGeneral(const ConfigSection& section) |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 214 | { |
| 215 | try { |
Nick Gordon | e98480b | 2017-05-24 11:23:03 -0500 | [diff] [blame] | 216 | std::string network = section.get<std::string>("network"); |
| 217 | std::string site = section.get<std::string>("site"); |
| 218 | std::string router = section.get<std::string>("router"); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 219 | ndn::Name networkName(network); |
| 220 | if (!networkName.empty()) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 221 | m_confParam.setNetwork(networkName); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 222 | } |
| 223 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 224 | std::cerr << "Network can not be null or empty or in bad URI format" << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 225 | return false; |
| 226 | } |
| 227 | ndn::Name siteName(site); |
| 228 | if (!siteName.empty()) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 229 | m_confParam.setSiteName(siteName); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 230 | } |
| 231 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 232 | std::cerr << "Site can not be null or empty or in bad URI format" << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 233 | return false; |
| 234 | } |
| 235 | ndn::Name routerName(router); |
| 236 | if (!routerName.empty()) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 237 | m_confParam.setRouterName(routerName); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 238 | } |
| 239 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 240 | std::cerr << "Router name can not be null or empty or in bad URI format" << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 241 | return false; |
| 242 | } |
| 243 | } |
| 244 | catch (const std::exception& ex) { |
Nick Gordon | e98480b | 2017-05-24 11:23:03 -0500 | [diff] [blame] | 245 | std::cerr << ex.what() << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 246 | return false; |
| 247 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 248 | |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 249 | // lsa-refresh-time |
alvy | 5a45495 | 2014-12-15 12:49:54 -0600 | [diff] [blame] | 250 | uint32_t lsaRefreshTime = section.get<uint32_t>("lsa-refresh-time", LSA_REFRESH_TIME_DEFAULT); |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 251 | |
| 252 | if (lsaRefreshTime >= LSA_REFRESH_TIME_MIN && lsaRefreshTime <= LSA_REFRESH_TIME_MAX) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 253 | m_confParam.setLsaRefreshTime(lsaRefreshTime); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 254 | } |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 255 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 256 | std::cerr << "Invalid value for lsa-refresh-time. " |
| 257 | << "Allowed range: " << LSA_REFRESH_TIME_MIN |
| 258 | << "-" << LSA_REFRESH_TIME_MAX << std::endl; |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 259 | return false; |
| 260 | } |
| 261 | |
| 262 | // router-dead-interval |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 263 | uint32_t routerDeadInterval = section.get<uint32_t>("router-dead-interval", 2 * lsaRefreshTime); |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 264 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 265 | if (routerDeadInterval > m_confParam.getLsaRefreshTime()) { |
| 266 | m_confParam.setRouterDeadInterval(routerDeadInterval); |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 267 | } |
| 268 | else { |
| 269 | std::cerr << "Value of router-dead-interval must be larger than lsa-refresh-time" << std::endl; |
| 270 | return false; |
| 271 | } |
| 272 | |
| 273 | // lsa-interest-lifetime |
| 274 | int lifetime = section.get<int>("lsa-interest-lifetime", LSA_INTEREST_LIFETIME_DEFAULT); |
| 275 | |
| 276 | if (lifetime >= LSA_INTEREST_LIFETIME_MIN && lifetime <= LSA_INTEREST_LIFETIME_MAX) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 277 | m_confParam.setLsaInterestLifetime(ndn::time::seconds(lifetime)); |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 278 | } |
| 279 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 280 | std::cerr << "Invalid value for lsa-interest-timeout. " |
| 281 | << "Allowed range: " << LSA_INTEREST_LIFETIME_MIN |
| 282 | << "-" << LSA_INTEREST_LIFETIME_MAX << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 283 | return false; |
| 284 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 285 | |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 286 | // sync-protocol |
Ashlesh Gawande | 30d96e4 | 2021-03-21 19:15:33 -0700 | [diff] [blame] | 287 | std::string syncProtocol = section.get<std::string>("sync-protocol", "psync"); |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 288 | if (syncProtocol == "chronosync") { |
Ashlesh Gawande | 30d96e4 | 2021-03-21 19:15:33 -0700 | [diff] [blame] | 289 | #ifdef HAVE_CHRONOSYNC |
Davide Pesavento | 1954a0c | 2022-09-30 15:56:04 -0400 | [diff] [blame] | 290 | m_confParam.setSyncProtocol(SyncProtocol::CHRONOSYNC); |
Ashlesh Gawande | 30d96e4 | 2021-03-21 19:15:33 -0700 | [diff] [blame] | 291 | #else |
Varun Patil | 7d2d689 | 2022-10-14 12:50:30 -0700 | [diff] [blame^] | 292 | std::cerr << "NLSR was compiled without ChronoSync support!\n"; |
Ashlesh Gawande | 30d96e4 | 2021-03-21 19:15:33 -0700 | [diff] [blame] | 293 | return false; |
| 294 | #endif |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 295 | } |
| 296 | else if (syncProtocol == "psync") { |
Varun Patil | 7d2d689 | 2022-10-14 12:50:30 -0700 | [diff] [blame^] | 297 | #ifdef HAVE_PSYNC |
Davide Pesavento | 1954a0c | 2022-09-30 15:56:04 -0400 | [diff] [blame] | 298 | m_confParam.setSyncProtocol(SyncProtocol::PSYNC); |
Varun Patil | 7d2d689 | 2022-10-14 12:50:30 -0700 | [diff] [blame^] | 299 | #else |
| 300 | std::cerr << "NLSR was compiled without PSync support!\n"; |
| 301 | return false; |
| 302 | #endif |
| 303 | } |
| 304 | else if (syncProtocol == "svs") { |
| 305 | #ifdef HAVE_SVS |
| 306 | m_confParam.setSyncProtocol(SyncProtocol::SVS); |
| 307 | #else |
| 308 | std::cerr << "NLSR was compiled without SVS support!\n"; |
| 309 | return false; |
| 310 | #endif |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 311 | } |
| 312 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 313 | std::cerr << "Sync protocol '" << syncProtocol << "' is not supported!\n" |
Varun Patil | 7d2d689 | 2022-10-14 12:50:30 -0700 | [diff] [blame^] | 314 | << "Use 'chronosync' or 'psync' or 'svs'\n"; |
Ashlesh Gawande | 32ec3fd | 2018-07-18 13:42:32 -0500 | [diff] [blame] | 315 | return false; |
| 316 | } |
| 317 | |
| 318 | // sync-interest-lifetime |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 319 | uint32_t syncInterestLifetime = section.get<uint32_t>("sync-interest-lifetime", |
| 320 | SYNC_INTEREST_LIFETIME_DEFAULT); |
Ashlesh Gawande | f7da9c5 | 2018-02-06 17:36:46 -0600 | [diff] [blame] | 321 | if (syncInterestLifetime >= SYNC_INTEREST_LIFETIME_MIN && |
| 322 | syncInterestLifetime <= SYNC_INTEREST_LIFETIME_MAX) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 323 | m_confParam.setSyncInterestLifetime(syncInterestLifetime); |
Ashlesh Gawande | f7da9c5 | 2018-02-06 17:36:46 -0600 | [diff] [blame] | 324 | } |
| 325 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 326 | std::cerr << "Invalid value for sync-interest-lifetime. " |
| 327 | << "Allowed range: " << SYNC_INTEREST_LIFETIME_MIN |
| 328 | << "-" << SYNC_INTEREST_LIFETIME_MAX << std::endl; |
Ashlesh Gawande | f7da9c5 | 2018-02-06 17:36:46 -0600 | [diff] [blame] | 329 | return false; |
| 330 | } |
| 331 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 332 | try { |
dulalsaurab | 82a34c2 | 2019-02-04 17:31:21 +0000 | [diff] [blame] | 333 | std::string stateDir = section.get<std::string>("state-dir"); |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 334 | if (bf::exists(stateDir)) { |
| 335 | if (bf::is_directory(stateDir)) { |
Davide Pesavento | 22520e6 | 2021-06-08 22:16:52 -0400 | [diff] [blame] | 336 | // copying nlsr.conf file to a user-defined directory for possible modification |
| 337 | std::string conFileDynamic = (bf::path(stateDir) / "nlsr.conf").string(); |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 338 | |
| 339 | if (m_confFileName == conFileDynamic) { |
| 340 | std::cerr << "Please use nlsr.conf stored at another location " |
| 341 | << "or change the state-dir in the configuration." << std::endl; |
| 342 | std::cerr << "The file at " << conFileDynamic << |
| 343 | " is used as dynamic file for saving NLSR runtime changes." << std::endl; |
| 344 | std::cerr << "The dynamic file can be used for next run " |
| 345 | << "after copying to another location." << std::endl; |
| 346 | return false; |
| 347 | } |
| 348 | |
dulalsaurab | 82a34c2 | 2019-02-04 17:31:21 +0000 | [diff] [blame] | 349 | m_confParam.setConfFileNameDynamic(conFileDynamic); |
| 350 | try { |
Davide Pesavento | 22520e6 | 2021-06-08 22:16:52 -0400 | [diff] [blame] | 351 | bf::copy_file(m_confFileName, conFileDynamic, |
| 352 | #if BOOST_VERSION >= 107400 |
| 353 | bf::copy_options::overwrite_existing |
| 354 | #else |
| 355 | bf::copy_option::overwrite_if_exists |
| 356 | #endif |
| 357 | ); |
dulalsaurab | 82a34c2 | 2019-02-04 17:31:21 +0000 | [diff] [blame] | 358 | } |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 359 | catch (const bf::filesystem_error& e) { |
dulalsaurab | 82a34c2 | 2019-02-04 17:31:21 +0000 | [diff] [blame] | 360 | std::cerr << "Error copying conf file to the state directory: " << e.what() << std::endl; |
Davide Pesavento | 22520e6 | 2021-06-08 22:16:52 -0400 | [diff] [blame] | 361 | return false; |
dulalsaurab | 82a34c2 | 2019-02-04 17:31:21 +0000 | [diff] [blame] | 362 | } |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 363 | |
Davide Pesavento | 22520e6 | 2021-06-08 22:16:52 -0400 | [diff] [blame] | 364 | std::string testFileName = (bf::path(stateDir) / "test.seq").string(); |
dulalsaurab | 82a34c2 | 2019-02-04 17:31:21 +0000 | [diff] [blame] | 365 | std::ofstream testOutFile(testFileName); |
| 366 | if (testOutFile) { |
| 367 | m_confParam.setStateFileDir(stateDir); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 368 | } |
| 369 | else { |
Davide Pesavento | 22520e6 | 2021-06-08 22:16:52 -0400 | [diff] [blame] | 370 | std::cerr << "NLSR does not have read/write permission on the state directory" << std::endl; |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 371 | return false; |
| 372 | } |
| 373 | testOutFile.close(); |
| 374 | remove(testFileName.c_str()); |
| 375 | } |
| 376 | else { |
Davide Pesavento | 22520e6 | 2021-06-08 22:16:52 -0400 | [diff] [blame] | 377 | std::cerr << "Provided path '" << stateDir << "' is not a directory" << std::endl; |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 378 | return false; |
| 379 | } |
| 380 | } |
| 381 | else { |
Davide Pesavento | 22520e6 | 2021-06-08 22:16:52 -0400 | [diff] [blame] | 382 | std::cerr << "Provided state directory '" << stateDir << "' does not exist" << std::endl; |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 383 | return false; |
| 384 | } |
| 385 | } |
| 386 | catch (const std::exception& ex) { |
dulalsaurab | 82a34c2 | 2019-02-04 17:31:21 +0000 | [diff] [blame] | 387 | std::cerr << "You must configure state directory" << std::endl; |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 388 | std::cerr << ex.what() << std::endl; |
| 389 | return false; |
| 390 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 391 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 392 | return true; |
| 393 | } |
| 394 | |
| 395 | bool |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 396 | ConfFileProcessor::processConfSectionNeighbors(const ConfigSection& section) |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 397 | { |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 398 | // hello-retries |
| 399 | int retrials = section.get<int>("hello-retries", HELLO_RETRIES_DEFAULT); |
| 400 | |
| 401 | if (retrials >= HELLO_RETRIES_MIN && retrials <= HELLO_RETRIES_MAX) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 402 | m_confParam.setInterestRetryNumber(retrials); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 403 | } |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 404 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 405 | std::cerr << "Invalid value for hello-retries. " |
| 406 | << "Allowed range: " << HELLO_RETRIES_MIN << "-" << HELLO_RETRIES_MAX << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 407 | return false; |
| 408 | } |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 409 | |
| 410 | // hello-timeout |
alvy | 5a45495 | 2014-12-15 12:49:54 -0600 | [diff] [blame] | 411 | uint32_t timeOut = section.get<uint32_t>("hello-timeout", HELLO_TIMEOUT_DEFAULT); |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 412 | |
| 413 | if (timeOut >= HELLO_TIMEOUT_MIN && timeOut <= HELLO_TIMEOUT_MAX) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 414 | m_confParam.setInterestResendTime(timeOut); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 415 | } |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 416 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 417 | std::cerr << "Invalid value for hello-timeout. " |
| 418 | << "Allowed range: " << HELLO_TIMEOUT_MIN << "-" << HELLO_TIMEOUT_MAX << std::endl; |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 419 | return false; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 420 | } |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 421 | |
| 422 | // hello-interval |
alvy | 5a45495 | 2014-12-15 12:49:54 -0600 | [diff] [blame] | 423 | uint32_t interval = section.get<uint32_t>("hello-interval", HELLO_INTERVAL_DEFAULT); |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 424 | |
| 425 | if (interval >= HELLO_INTERVAL_MIN && interval <= HELLO_INTERVAL_MAX) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 426 | m_confParam.setInfoInterestInterval(interval); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 427 | } |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 428 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 429 | std::cerr << "Invalid value for hello-interval. " |
| 430 | << "Allowed range: " << HELLO_INTERVAL_MIN << "-" << HELLO_INTERVAL_MAX << std::endl; |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 431 | return false; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 432 | } |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 433 | |
| 434 | // Event intervals |
| 435 | // adj-lsa-build-interval |
| 436 | ConfigurationVariable<uint32_t> adjLsaBuildInterval("adj-lsa-build-interval", |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 437 | std::bind(&ConfParameter::setAdjLsaBuildInterval, |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 438 | &m_confParam, _1)); |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 439 | adjLsaBuildInterval.setMinAndMaxValue(ADJ_LSA_BUILD_INTERVAL_MIN, ADJ_LSA_BUILD_INTERVAL_MAX); |
| 440 | adjLsaBuildInterval.setOptional(ADJ_LSA_BUILD_INTERVAL_DEFAULT); |
| 441 | |
| 442 | if (!adjLsaBuildInterval.parseFromConfigSection(section)) { |
| 443 | return false; |
| 444 | } |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 445 | // Set the retry count for fetching the FaceStatus dataset |
| 446 | ConfigurationVariable<uint32_t> faceDatasetFetchTries("face-dataset-fetch-tries", |
| 447 | std::bind(&ConfParameter::setFaceDatasetFetchTries, |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 448 | &m_confParam, _1)); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 449 | |
| 450 | faceDatasetFetchTries.setMinAndMaxValue(FACE_DATASET_FETCH_TRIES_MIN, |
| 451 | FACE_DATASET_FETCH_TRIES_MAX); |
| 452 | faceDatasetFetchTries.setOptional(FACE_DATASET_FETCH_TRIES_DEFAULT); |
| 453 | |
| 454 | if (!faceDatasetFetchTries.parseFromConfigSection(section)) { |
| 455 | return false; |
| 456 | } |
| 457 | |
| 458 | // Set the interval between FaceStatus dataset fetch attempts. |
Ashlesh Gawande | 3909aa1 | 2017-07-28 16:01:35 -0500 | [diff] [blame] | 459 | ConfigurationVariable<uint32_t> faceDatasetFetchInterval("face-dataset-fetch-interval", |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 460 | std::bind(&ConfParameter::setFaceDatasetFetchInterval, |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 461 | &m_confParam, _1)); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 462 | |
Ashlesh Gawande | 3909aa1 | 2017-07-28 16:01:35 -0500 | [diff] [blame] | 463 | faceDatasetFetchInterval.setMinAndMaxValue(FACE_DATASET_FETCH_INTERVAL_MIN, |
| 464 | FACE_DATASET_FETCH_INTERVAL_MAX); |
| 465 | faceDatasetFetchInterval.setOptional(FACE_DATASET_FETCH_INTERVAL_DEFAULT); |
Nick Gordon | d5c1a37 | 2016-10-31 13:56:23 -0500 | [diff] [blame] | 466 | |
| 467 | if (!faceDatasetFetchInterval.parseFromConfigSection(section)) { |
| 468 | return false; |
| 469 | } |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 470 | |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 471 | for (const auto& tn : section) { |
| 472 | if (tn.first == "neighbor") { |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 473 | try { |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 474 | ConfigSection CommandAttriTree = tn.second; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 475 | std::string name = CommandAttriTree.get<std::string>("name"); |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 476 | std::string uriString = CommandAttriTree.get<std::string>("face-uri"); |
alvy | 2fe1287 | 2014-11-25 10:32:23 -0600 | [diff] [blame] | 477 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame] | 478 | ndn::FaceUri faceUri; |
Davide Pesavento | 4b9d30f | 2020-05-01 02:48:34 -0400 | [diff] [blame] | 479 | if (!faceUri.parse(uriString)) { |
| 480 | std::cerr << "face-uri parsing failed" << std::endl; |
Ashlesh Gawande | 7e3f6d7 | 2019-01-25 13:13:43 -0600 | [diff] [blame] | 481 | return false; |
| 482 | } |
| 483 | |
| 484 | bool failedToCanonize = false; |
Davide Pesavento | 4b9d30f | 2020-05-01 02:48:34 -0400 | [diff] [blame] | 485 | faceUri.canonize([&faceUri] (const auto& canonicalUri) { |
Ashlesh Gawande | 7e3f6d7 | 2019-01-25 13:13:43 -0600 | [diff] [blame] | 486 | faceUri = canonicalUri; |
| 487 | }, |
Davide Pesavento | 4b9d30f | 2020-05-01 02:48:34 -0400 | [diff] [blame] | 488 | [&faceUri, &failedToCanonize] (const auto& reason) { |
Ashlesh Gawande | 7e3f6d7 | 2019-01-25 13:13:43 -0600 | [diff] [blame] | 489 | failedToCanonize = true; |
Davide Pesavento | 4b9d30f | 2020-05-01 02:48:34 -0400 | [diff] [blame] | 490 | std::cerr << "Could not canonize URI: '" << faceUri |
| 491 | << "' because: " << reason << std::endl; |
Ashlesh Gawande | 7e3f6d7 | 2019-01-25 13:13:43 -0600 | [diff] [blame] | 492 | }, |
| 493 | m_io, |
| 494 | TIME_ALLOWED_FOR_CANONIZATION); |
| 495 | m_io.run(); |
Ashlesh Gawande | 9ecbdc9 | 2019-03-11 13:18:45 -0700 | [diff] [blame] | 496 | m_io.reset(); |
Ashlesh Gawande | 7e3f6d7 | 2019-01-25 13:13:43 -0600 | [diff] [blame] | 497 | |
| 498 | if (failedToCanonize) { |
alvy | 2fe1287 | 2014-11-25 10:32:23 -0600 | [diff] [blame] | 499 | return false; |
| 500 | } |
| 501 | |
Davide Pesavento | 4b9d30f | 2020-05-01 02:48:34 -0400 | [diff] [blame] | 502 | double linkCost = CommandAttriTree.get<double>("link-cost", Adjacent::DEFAULT_LINK_COST); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 503 | ndn::Name neighborName(name); |
| 504 | if (!neighborName.empty()) { |
Vince Lehman | cb76ade | 2014-08-28 21:24:41 -0500 | [diff] [blame] | 505 | Adjacent adj(name, faceUri, linkCost, Adjacent::STATUS_INACTIVE, 0, 0); |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 506 | m_confParam.getAdjacencyList().insert(adj); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 507 | } |
| 508 | else { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 509 | std::cerr << " Wrong command format ! [name /nbr/name/ \n face-uri /uri\n]"; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 510 | std::cerr << " or bad URI format" << std::endl; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 511 | } |
| 512 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 513 | catch (const std::exception& ex) { |
| 514 | std::cerr << ex.what() << std::endl; |
| 515 | return false; |
| 516 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 517 | } |
| 518 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 519 | return true; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 520 | } |
| 521 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 522 | bool |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 523 | ConfFileProcessor::processConfSectionHyperbolic(const ConfigSection& section) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 524 | { |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 525 | // state |
Nick Gordon | e98480b | 2017-05-24 11:23:03 -0500 | [diff] [blame] | 526 | std::string state = section.get<std::string>("state", "off"); |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 527 | |
| 528 | if (boost::iequals(state, "off")) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 529 | m_confParam.setHyperbolicState(HYPERBOLIC_STATE_OFF); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 530 | } |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 531 | else if (boost::iequals(state, "on")) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 532 | m_confParam.setHyperbolicState(HYPERBOLIC_STATE_ON); |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 533 | } |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 534 | else if (boost::iequals(state, "dry-run")) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 535 | m_confParam.setHyperbolicState(HYPERBOLIC_STATE_DRY_RUN); |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 536 | } |
| 537 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 538 | std::cerr << "Invalid setting for hyperbolic state. " |
| 539 | << "Allowed values: off, on, dry-run" << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 540 | return false; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 541 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 542 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 543 | try { |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 544 | // Radius and angle(s) are mandatory configuration parameters in hyperbolic section. |
| 545 | // Even if router can have hyperbolic routing calculation off but other router |
| 546 | // in the network may use hyperbolic routing calculation for FIB generation. |
| 547 | // So each router need to advertise its hyperbolic coordinates in the network |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 548 | double radius = section.get<double>("radius"); |
Muktadir R Chowdhury | b00dc2a | 2016-11-05 10:48:58 -0600 | [diff] [blame] | 549 | std::string angleString = section.get<std::string>("angle"); |
| 550 | |
| 551 | std::stringstream ss(angleString); |
| 552 | std::vector<double> angles; |
| 553 | |
| 554 | double angle; |
| 555 | |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 556 | while (ss >> angle) { |
Muktadir R Chowdhury | b00dc2a | 2016-11-05 10:48:58 -0600 | [diff] [blame] | 557 | angles.push_back(angle); |
Laqin Fan | 54a43f0 | 2017-03-08 12:31:30 -0600 | [diff] [blame] | 558 | if (ss.peek() == ',' || ss.peek() == ' ') { |
Muktadir R Chowdhury | b00dc2a | 2016-11-05 10:48:58 -0600 | [diff] [blame] | 559 | ss.ignore(); |
| 560 | } |
| 561 | } |
| 562 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 563 | if (!m_confParam.setCorR(radius)) { |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 564 | return false; |
| 565 | } |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 566 | m_confParam.setCorTheta(angles); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 567 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 568 | catch (const std::exception& ex) { |
| 569 | std::cerr << ex.what() << std::endl; |
| 570 | if (state == "on" || state == "dry-run") { |
| 571 | return false; |
| 572 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 573 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 574 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 575 | return true; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 576 | } |
| 577 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 578 | bool |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 579 | ConfFileProcessor::processConfSectionFib(const ConfigSection& section) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 580 | { |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 581 | // max-faces-per-prefix |
| 582 | int maxFacesPerPrefix = section.get<int>("max-faces-per-prefix", MAX_FACES_PER_PREFIX_DEFAULT); |
| 583 | |
| 584 | if (maxFacesPerPrefix >= MAX_FACES_PER_PREFIX_MIN && |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 585 | maxFacesPerPrefix <= MAX_FACES_PER_PREFIX_MAX) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 586 | m_confParam.setMaxFacesPerPrefix(maxFacesPerPrefix); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 587 | } |
alvy | a2228c6 | 2014-12-09 10:25:11 -0600 | [diff] [blame] | 588 | else { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 589 | std::cerr << "Invalid value for max-faces-per-prefix. " |
| 590 | << "Allowed range: " << MAX_FACES_PER_PREFIX_MIN |
| 591 | << "-" << MAX_FACES_PER_PREFIX_MAX << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 592 | return false; |
| 593 | } |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 594 | |
| 595 | // routing-calc-interval |
| 596 | ConfigurationVariable<uint32_t> routingCalcInterval("routing-calc-interval", |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 597 | std::bind(&ConfParameter::setRoutingCalcInterval, |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 598 | &m_confParam, _1)); |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 599 | routingCalcInterval.setMinAndMaxValue(ROUTING_CALC_INTERVAL_MIN, ROUTING_CALC_INTERVAL_MAX); |
| 600 | routingCalcInterval.setOptional(ROUTING_CALC_INTERVAL_DEFAULT); |
| 601 | |
| 602 | if (!routingCalcInterval.parseFromConfigSection(section)) { |
| 603 | return false; |
| 604 | } |
| 605 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 606 | return true; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 607 | } |
| 608 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 609 | bool |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 610 | ConfFileProcessor::processConfSectionAdvertising(const ConfigSection& section) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 611 | { |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 612 | for (const auto& tn : section) { |
| 613 | if (tn.first == "prefix") { |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 614 | try { |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 615 | ndn::Name namePrefix(tn.second.data()); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 616 | if (!namePrefix.empty()) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 617 | m_confParam.getNamePrefixList().insert(namePrefix); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 618 | } |
| 619 | else { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 620 | std::cerr << " Wrong command format ! [prefix /name/prefix] or bad URI" << std::endl; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 621 | return false; |
| 622 | } |
| 623 | } |
| 624 | catch (const std::exception& ex) { |
| 625 | std::cerr << ex.what() << std::endl; |
| 626 | return false; |
| 627 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 628 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 629 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 630 | return true; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 631 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 632 | |
| 633 | bool |
Alexander Afanasyev | 8388ec6 | 2014-08-16 18:38:57 -0700 | [diff] [blame] | 634 | ConfFileProcessor::processConfSectionSecurity(const ConfigSection& section) |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 635 | { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 636 | auto it = section.begin(); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 637 | |
Vince Lehman | d33e5bc | 2015-06-22 15:27:50 -0500 | [diff] [blame] | 638 | if (it == section.end() || it->first != "validator") { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 639 | std::cerr << "Error: Expected validator section!" << std::endl; |
Vince Lehman | d33e5bc | 2015-06-22 15:27:50 -0500 | [diff] [blame] | 640 | return false; |
| 641 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 642 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 643 | m_confParam.getValidator().load(it->second, m_confFileName); |
Vince Lehman | d33e5bc | 2015-06-22 15:27:50 -0500 | [diff] [blame] | 644 | |
akmhoque | d57f367 | 2014-06-10 10:41:32 -0500 | [diff] [blame] | 645 | it++; |
Vince Lehman | d33e5bc | 2015-06-22 15:27:50 -0500 | [diff] [blame] | 646 | if (it != section.end() && it->first == "prefix-update-validator") { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 647 | m_confParam.getPrefixUpdateValidator().load(it->second, m_confFileName); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 648 | |
Vince Lehman | d33e5bc | 2015-06-22 15:27:50 -0500 | [diff] [blame] | 649 | it++; |
| 650 | for (; it != section.end(); it++) { |
Vince Lehman | d33e5bc | 2015-06-22 15:27:50 -0500 | [diff] [blame] | 651 | if (it->first != "cert-to-publish") { |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 652 | std::cerr << "Error: Expected cert-to-publish!" << std::endl; |
Vince Lehman | d33e5bc | 2015-06-22 15:27:50 -0500 | [diff] [blame] | 653 | return false; |
| 654 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 655 | |
| 656 | std::string file = it->second.data(); |
Ashlesh Gawande | 328fc11 | 2019-12-12 17:06:44 -0600 | [diff] [blame] | 657 | bf::path certfilePath = absolute(file, bf::path(m_confFileName).parent_path()); |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 658 | std::ifstream ifs(certfilePath.string()); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 659 | |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 660 | ndn::security::Certificate idCert; |
| 661 | try { |
| 662 | idCert = ndn::io::loadTlv<ndn::security::Certificate>(ifs); |
| 663 | } |
| 664 | catch (const std::exception& e) { |
| 665 | std::cerr << "Error: Cannot load cert-to-publish '" << file << "': " << e.what() << std::endl; |
Vince Lehman | d33e5bc | 2015-06-22 15:27:50 -0500 | [diff] [blame] | 666 | return false; |
| 667 | } |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 668 | |
Saurab Dulal | 427e012 | 2019-11-28 11:58:02 -0600 | [diff] [blame] | 669 | m_confParam.addCertPath(certfilePath.string()); |
Davide Pesavento | 7bc3d43 | 2021-10-25 21:08:04 -0400 | [diff] [blame] | 670 | m_confParam.loadCertToValidator(idCert); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 671 | } |
Vince Lehman | d33e5bc | 2015-06-22 15:27:50 -0500 | [diff] [blame] | 672 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 673 | |
| 674 | return true; |
| 675 | } |
| 676 | |
alvy | 2fe1287 | 2014-11-25 10:32:23 -0600 | [diff] [blame] | 677 | } // namespace nlsr |