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