blob: 549d353b82485bb3ca2a7c6f66d2bb040550a8aa [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
dmcoomescf8d0ed2017-02-21 11:39:01 -06003 * Copyright (c) 2014-2018, 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/>.
akmhoque3d06e792014-05-27 16:23:20 -050020 **/
Vince Lehmanc2e51f62015-01-20 15:03:11 -060021
dmcoomese689dd62017-03-29 11:05:12 -050022#ifndef NLSR_CONF_PARAMETER_HPP
23#define NLSR_CONF_PARAMETER_HPP
akmhoque53353462014-04-22 08:43:45 -050024
Nick Gordone98480b2017-05-24 11:23:03 -050025#include "common.hpp"
Ashlesh Gawande3909aa12017-07-28 16:01:35 -050026#include "logger.hpp"
Ashlesh Gawande982a58f2018-02-14 17:39:12 -060027#include "test-access-control.hpp"
Ashlesh Gawande3909aa12017-07-28 16:01:35 -050028
akmhoque53353462014-04-22 08:43:45 -050029#include <iostream>
akmhoquefdbddb12014-05-02 18:35:19 -050030#include <boost/cstdint.hpp>
akmhoque31d1d4b2014-05-05 22:08:14 -050031#include <ndn-cxx/face.hpp>
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -070032#include <ndn-cxx/util/time.hpp>
akmhoque53353462014-04-22 08:43:45 -050033
34namespace nlsr {
akmhoque157b0a42014-05-13 00:26:37 -050035
36enum {
37 LSA_REFRESH_TIME_MIN = 240,
38 LSA_REFRESH_TIME_DEFAULT = 1800,
39 LSA_REFRESH_TIME_MAX = 7200
40};
41
42enum {
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -070043 LSA_INTEREST_LIFETIME_MIN = 1,
44 LSA_INTEREST_LIFETIME_DEFAULT = 4,
45 LSA_INTEREST_LIFETIME_MAX = 60
46};
47
48enum {
Vince Lehman7b616582014-10-17 16:25:39 -050049 ADJ_LSA_BUILD_INTERVAL_MIN = 0,
50 ADJ_LSA_BUILD_INTERVAL_DEFAULT = 5,
51 ADJ_LSA_BUILD_INTERVAL_MAX = 5
52};
53
54enum {
55 FIRST_HELLO_INTERVAL_MIN = 0,
56 FIRST_HELLO_INTERVAL_DEFAULT = 10,
57 FIRST_HELLO_INTERVAL_MAX = 10
58};
59
60enum {
61 ROUTING_CALC_INTERVAL_MIN = 0,
62 ROUTING_CALC_INTERVAL_DEFAULT = 15,
63 ROUTING_CALC_INTERVAL_MAX = 15
64};
65
Nick Gordond5c1a372016-10-31 13:56:23 -050066
67enum {
68 FACE_DATASET_FETCH_TRIES_MIN = 1,
69 FACE_DATASET_FETCH_TRIES_MAX = 10,
70 FACE_DATASET_FETCH_TRIES_DEFAULT = 3
71};
72
73enum {
74 FACE_DATASET_FETCH_INTERVAL_MIN = 1800,
75 FACE_DATASET_FETCH_INTERVAL_MAX = 5400,
76 FACE_DATASET_FETCH_INTERVAL_DEFAULT = 3600
77};
78
Vince Lehman7b616582014-10-17 16:25:39 -050079enum {
akmhoque157b0a42014-05-13 00:26:37 -050080 HELLO_RETRIES_MIN = 1,
81 HELLO_RETRIES_DEFAULT = 3,
82 HELLO_RETRIES_MAX = 15
83};
84
85enum {
86 HELLO_TIMEOUT_MIN = 1,
87 HELLO_TIMEOUT_DEFAULT = 3,
88 HELLO_TIMEOUT_MAX = 15
89};
90
91enum {
92 HELLO_INTERVAL_MIN = 30,
93 HELLO_INTERVAL_DEFAULT = 60,
94 HELLO_INTERVAL_MAX =90
95};
96
97enum {
98 MAX_FACES_PER_PREFIX_MIN = 0,
alvya2228c62014-12-09 10:25:11 -060099 MAX_FACES_PER_PREFIX_DEFAULT = 0,
akmhoque157b0a42014-05-13 00:26:37 -0500100 MAX_FACES_PER_PREFIX_MAX = 60
101};
102
Nick Gordon5c467f02016-07-13 13:40:10 -0500103enum HyperbolicState {
akmhoque157b0a42014-05-13 00:26:37 -0500104 HYPERBOLIC_STATE_OFF = 0,
105 HYPERBOLIC_STATE_ON = 1,
alvya2228c62014-12-09 10:25:11 -0600106 HYPERBOLIC_STATE_DRY_RUN = 2,
107 HYPERBOLIC_STATE_DEFAULT = 0
akmhoque157b0a42014-05-13 00:26:37 -0500108};
109
Ashlesh Gawandef7da9c52018-02-06 17:36:46 -0600110enum {
111 SYNC_INTEREST_LIFETIME_MIN = 1000,
112 SYNC_INTEREST_LIFETIME_DEFAULT = 60000,
113 SYNC_INTEREST_LIFETIME_MAX = 120000,
114};
115
Nick Gordond0a7df32017-05-30 16:44:34 -0500116/*! \brief A class to house all the configuration parameters for NLSR.
117 *
118 * This class is conceptually a singleton (but not mechanically) which
119 * is just a collection of attributes that serve as a
120 * separation-of-data for NLSR's configuration variables. NLSR refers
121 * to an instance of this class for all its configuration
122 * parameters. This object is typically populated by a
123 * ConfFileProcessor reading a configuration file.
124 *
125 * \sa nlsr::ConfFileProcessor
126 */
akmhoque53353462014-04-22 08:43:45 -0500127class ConfParameter
128{
129
130public:
131 ConfParameter()
akmhoque157b0a42014-05-13 00:26:37 -0500132 : m_lsaRefreshTime(LSA_REFRESH_TIME_DEFAULT)
Vince Lehman7b616582014-10-17 16:25:39 -0500133 , m_adjLsaBuildInterval(ADJ_LSA_BUILD_INTERVAL_DEFAULT)
134 , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT)
135 , m_routingCalcInterval(ROUTING_CALC_INTERVAL_DEFAULT)
Ashlesh Gawande3909aa12017-07-28 16:01:35 -0500136 , m_faceDatasetFetchInterval(ndn::time::seconds(static_cast<int>(FACE_DATASET_FETCH_INTERVAL_DEFAULT)))
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700137 , m_lsaInterestLifetime(ndn::time::seconds(static_cast<int>(LSA_INTEREST_LIFETIME_DEFAULT)))
Alexander Afanasyev1cf1e102014-08-17 19:47:57 -0700138 , m_routerDeadInterval(2 * LSA_REFRESH_TIME_DEFAULT)
akmhoque157b0a42014-05-13 00:26:37 -0500139 , m_logLevel("INFO")
140 , m_interestRetryNumber(HELLO_RETRIES_DEFAULT)
141 , m_interestResendTime(HELLO_TIMEOUT_DEFAULT)
142 , m_infoInterestInterval(HELLO_INTERVAL_DEFAULT)
143 , m_hyperbolicState(HYPERBOLIC_STATE_OFF)
akmhoque53353462014-04-22 08:43:45 -0500144 , m_corR(0)
akmhoque157b0a42014-05-13 00:26:37 -0500145 , m_maxFacesPerPrefix(MAX_FACES_PER_PREFIX_MIN)
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700146 {
147 }
akmhoque53353462014-04-22 08:43:45 -0500148
149 void
Ashlesh Gawande982a58f2018-02-14 17:39:12 -0600150 setNetwork(const ndn::Name& networkName);
akmhoque53353462014-04-22 08:43:45 -0500151
akmhoque31d1d4b2014-05-05 22:08:14 -0500152 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700153 getNetwork() const
akmhoque53353462014-04-22 08:43:45 -0500154 {
155 return m_network;
156 }
157
158 void
akmhoque157b0a42014-05-13 00:26:37 -0500159 setRouterName(const ndn::Name& routerName)
160 {
161 m_routerName = routerName;
162 }
163
164 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700165 getRouterName() const
akmhoque157b0a42014-05-13 00:26:37 -0500166 {
167 return m_routerName;
168 }
169
170 void
171 setSiteName(const ndn::Name& siteName)
172 {
173 m_siteName = siteName;
174 }
175
176 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700177 getSiteName() const
akmhoque157b0a42014-05-13 00:26:37 -0500178 {
179 return m_siteName;
180 }
181
182 void
akmhoque53353462014-04-22 08:43:45 -0500183 buildRouterPrefix()
184 {
akmhoque31d1d4b2014-05-05 22:08:14 -0500185 m_routerPrefix = m_network;
186 m_routerPrefix.append(m_siteName);
187 m_routerPrefix.append(m_routerName);
akmhoque53353462014-04-22 08:43:45 -0500188 }
189
akmhoque31d1d4b2014-05-05 22:08:14 -0500190 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700191 getRouterPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500192 {
193 return m_routerPrefix;
194 }
195
akmhoque157b0a42014-05-13 00:26:37 -0500196
akmhoque31d1d4b2014-05-05 22:08:14 -0500197 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700198 getChronosyncPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500199 {
akmhoque157b0a42014-05-13 00:26:37 -0500200 return m_chronosyncPrefix;
akmhoque53353462014-04-22 08:43:45 -0500201 }
202
akmhoque157b0a42014-05-13 00:26:37 -0500203 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700204 getLsaPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500205 {
akmhoque157b0a42014-05-13 00:26:37 -0500206 return m_lsaPrefix;
akmhoque53353462014-04-22 08:43:45 -0500207 }
208
209 void
alvy5a454952014-12-15 12:49:54 -0600210 setLsaRefreshTime(uint32_t lrt)
akmhoque53353462014-04-22 08:43:45 -0500211 {
212 m_lsaRefreshTime = lrt;
akmhoque53353462014-04-22 08:43:45 -0500213 }
214
alvy5a454952014-12-15 12:49:54 -0600215 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700216 getLsaRefreshTime() const
akmhoque53353462014-04-22 08:43:45 -0500217 {
218 return m_lsaRefreshTime;
219 }
220
221 void
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700222 setLsaInterestLifetime(const ndn::time::seconds& lifetime)
223 {
224 m_lsaInterestLifetime = lifetime;
225 }
226
227 const ndn::time::seconds&
228 getLsaInterestLifetime() const
229 {
230 return m_lsaInterestLifetime;
231 }
232
233 void
Vince Lehman7b616582014-10-17 16:25:39 -0500234 setAdjLsaBuildInterval(uint32_t interval)
235 {
236 m_adjLsaBuildInterval = interval;
237 }
238
239 uint32_t
240 getAdjLsaBuildInterval() const
241 {
242 return m_adjLsaBuildInterval;
243 }
244
245 void
246 setFirstHelloInterval(uint32_t interval)
247 {
248 m_firstHelloInterval = interval;
249 }
250
251 uint32_t
252 getFirstHelloInterval() const
253 {
254 return m_firstHelloInterval;
255 }
256
257 void
258 setRoutingCalcInterval(uint32_t interval)
259 {
260 m_routingCalcInterval = interval;
261 }
262
263 uint32_t
264 getRoutingCalcInterval() const
265 {
266 return m_routingCalcInterval;
267 }
268
269 void
alvy5a454952014-12-15 12:49:54 -0600270 setRouterDeadInterval(uint32_t rdt)
akmhoque53353462014-04-22 08:43:45 -0500271 {
272 m_routerDeadInterval = rdt;
273 }
274
alvy5a454952014-12-15 12:49:54 -0600275 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700276 getRouterDeadInterval() const
akmhoque53353462014-04-22 08:43:45 -0500277 {
278 return m_routerDeadInterval;
279 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700280
281 void
Nick Gordond5c1a372016-10-31 13:56:23 -0500282 setFaceDatasetFetchTries(uint32_t count)
283 {
284 m_faceDatasetFetchTries = count;
285 }
286
287 uint32_t
288 getFaceDatasetFetchTries() const
289 {
290 return m_faceDatasetFetchTries;
291 }
292
293 void
Ashlesh Gawande3909aa12017-07-28 16:01:35 -0500294 setFaceDatasetFetchInterval(uint32_t interval)
Nick Gordond5c1a372016-10-31 13:56:23 -0500295 {
Ashlesh Gawande3909aa12017-07-28 16:01:35 -0500296 m_faceDatasetFetchInterval = ndn::time::seconds(interval);
Nick Gordond5c1a372016-10-31 13:56:23 -0500297 }
298
299 const ndn::time::seconds
300 getFaceDatasetFetchInterval() const
301 {
302 return m_faceDatasetFetchInterval;
303 }
304
305 void
akmhoque157b0a42014-05-13 00:26:37 -0500306 setInterestRetryNumber(uint32_t irn)
akmhoque53353462014-04-22 08:43:45 -0500307 {
akmhoque157b0a42014-05-13 00:26:37 -0500308 m_interestRetryNumber = irn;
309 }
310
311 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700312 getInterestRetryNumber() const
akmhoque157b0a42014-05-13 00:26:37 -0500313 {
314 return m_interestRetryNumber;
315 }
316
317 void
alvy5a454952014-12-15 12:49:54 -0600318 setInterestResendTime(uint32_t irt)
akmhoque157b0a42014-05-13 00:26:37 -0500319 {
320 m_interestResendTime = irt;
akmhoque53353462014-04-22 08:43:45 -0500321 }
322
alvy5a454952014-12-15 12:49:54 -0600323 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700324 getInterestResendTime() const
akmhoque53353462014-04-22 08:43:45 -0500325 {
akmhoque157b0a42014-05-13 00:26:37 -0500326 return m_interestResendTime;
akmhoque53353462014-04-22 08:43:45 -0500327 }
328
alvy5a454952014-12-15 12:49:54 -0600329 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700330 getInfoInterestInterval() const
akmhoque53353462014-04-22 08:43:45 -0500331 {
akmhoque157b0a42014-05-13 00:26:37 -0500332 return m_infoInterestInterval;
akmhoque53353462014-04-22 08:43:45 -0500333 }
334
335 void
alvy5a454952014-12-15 12:49:54 -0600336 setInfoInterestInterval(uint32_t iii)
akmhoque53353462014-04-22 08:43:45 -0500337 {
akmhoque157b0a42014-05-13 00:26:37 -0500338 m_infoInterestInterval = iii;
339 }
340
341 void
342 setHyperbolicState(int32_t ihc)
343 {
344 m_hyperbolicState = ihc;
akmhoque53353462014-04-22 08:43:45 -0500345 }
346
akmhoquefdbddb12014-05-02 18:35:19 -0500347 int32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700348 getHyperbolicState() const
akmhoque53353462014-04-22 08:43:45 -0500349 {
akmhoque157b0a42014-05-13 00:26:37 -0500350 return m_hyperbolicState;
akmhoque53353462014-04-22 08:43:45 -0500351 }
352
akmhoque157b0a42014-05-13 00:26:37 -0500353 bool
akmhoque53353462014-04-22 08:43:45 -0500354 setCorR(double cr)
355 {
akmhoque157b0a42014-05-13 00:26:37 -0500356 if ( cr >= 0 ) {
357 m_corR = cr;
358 return true;
359 }
360 return false;
akmhoque53353462014-04-22 08:43:45 -0500361 }
362
363 double
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700364 getCorR() const
akmhoque53353462014-04-22 08:43:45 -0500365 {
366 return m_corR;
367 }
368
369 void
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600370 setCorTheta(const std::vector<double>& ct)
akmhoque53353462014-04-22 08:43:45 -0500371 {
372 m_corTheta = ct;
373 }
374
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600375 std::vector<double>
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700376 getCorTheta() const
akmhoque53353462014-04-22 08:43:45 -0500377 {
378 return m_corTheta;
379 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700380
akmhoque53353462014-04-22 08:43:45 -0500381 void
Vince Lehman942eb7b2014-10-02 10:09:27 -0500382 setMaxFacesPerPrefix(uint32_t mfpp)
akmhoque53353462014-04-22 08:43:45 -0500383 {
akmhoque157b0a42014-05-13 00:26:37 -0500384 m_maxFacesPerPrefix = mfpp;
akmhoque53353462014-04-22 08:43:45 -0500385 }
386
Vince Lehman942eb7b2014-10-02 10:09:27 -0500387 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700388 getMaxFacesPerPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500389 {
akmhoque157b0a42014-05-13 00:26:37 -0500390 return m_maxFacesPerPrefix;
akmhoque53353462014-04-22 08:43:45 -0500391 }
392
393 void
akmhoque157b0a42014-05-13 00:26:37 -0500394 setSeqFileDir(const std::string& ssfd)
akmhoque53353462014-04-22 08:43:45 -0500395 {
akmhoque157b0a42014-05-13 00:26:37 -0500396 m_seqFileDir = ssfd;
akmhoque53353462014-04-22 08:43:45 -0500397 }
398
akmhoque157b0a42014-05-13 00:26:37 -0500399 const std::string&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700400 getSeqFileDir() const
akmhoque53353462014-04-22 08:43:45 -0500401 {
akmhoque157b0a42014-05-13 00:26:37 -0500402 return m_seqFileDir;
akmhoque53353462014-04-22 08:43:45 -0500403 }
404
akmhoque674b0b12014-05-20 14:33:28 -0500405 void
Ashlesh Gawandef7da9c52018-02-06 17:36:46 -0600406 setSyncInterestLifetime(uint32_t syncInterestLifetime)
407 {
408 m_syncInterestLifetime = ndn::time::milliseconds(syncInterestLifetime);
409 }
410
411 const ndn::time::milliseconds&
412 getSyncInterestLifetime() const
413 {
414 return m_syncInterestLifetime;
415 }
416
417 void
akmhoque674b0b12014-05-20 14:33:28 -0500418 writeLog();
akmhoque53353462014-04-22 08:43:45 -0500419
420private:
akmhoque31d1d4b2014-05-05 22:08:14 -0500421 ndn::Name m_routerName;
422 ndn::Name m_siteName;
423 ndn::Name m_network;
akmhoque53353462014-04-22 08:43:45 -0500424
akmhoque31d1d4b2014-05-05 22:08:14 -0500425 ndn::Name m_routerPrefix;
426 ndn::Name m_lsaRouterPrefix;
akmhoque53353462014-04-22 08:43:45 -0500427
akmhoque157b0a42014-05-13 00:26:37 -0500428 ndn::Name m_chronosyncPrefix;
429 ndn::Name m_lsaPrefix;
430
alvy5a454952014-12-15 12:49:54 -0600431 uint32_t m_lsaRefreshTime;
Vince Lehman7b616582014-10-17 16:25:39 -0500432
433 uint32_t m_adjLsaBuildInterval;
434 uint32_t m_firstHelloInterval;
435 uint32_t m_routingCalcInterval;
436
Nick Gordond5c1a372016-10-31 13:56:23 -0500437 uint32_t m_faceDatasetFetchTries;
438 ndn::time::seconds m_faceDatasetFetchInterval;
439
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700440 ndn::time::seconds m_lsaInterestLifetime;
alvy5a454952014-12-15 12:49:54 -0600441 uint32_t m_routerDeadInterval;
akmhoque157b0a42014-05-13 00:26:37 -0500442 std::string m_logLevel;
akmhoque53353462014-04-22 08:43:45 -0500443
akmhoquefdbddb12014-05-02 18:35:19 -0500444 uint32_t m_interestRetryNumber;
alvy5a454952014-12-15 12:49:54 -0600445 uint32_t m_interestResendTime;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700446
alvy5a454952014-12-15 12:49:54 -0600447 uint32_t m_infoInterestInterval;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700448
akmhoque157b0a42014-05-13 00:26:37 -0500449 int32_t m_hyperbolicState;
akmhoque53353462014-04-22 08:43:45 -0500450 double m_corR;
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600451 std::vector<double> m_corTheta;
akmhoque53353462014-04-22 08:43:45 -0500452
Vince Lehman942eb7b2014-10-02 10:09:27 -0500453 uint32_t m_maxFacesPerPrefix;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700454
akmhoque157b0a42014-05-13 00:26:37 -0500455 std::string m_seqFileDir;
Ashlesh Gawandef7da9c52018-02-06 17:36:46 -0600456 ndn::time::milliseconds m_syncInterestLifetime;
Ashlesh Gawande982a58f2018-02-14 17:39:12 -0600457
458PUBLIC_WITH_TESTS_ELSE_PRIVATE:
459 static const uint64_t SYNC_VERSION;
akmhoque53353462014-04-22 08:43:45 -0500460};
461
akmhoque53353462014-04-22 08:43:45 -0500462} // namespace nlsr
463
dmcoomese689dd62017-03-29 11:05:12 -0500464#endif // NLSR_CONF_PARAMETER_HPP