blob: 6cd4d734c2c07c14ecac699b4270387042a46e8e [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande0421bc62020-05-08 20:42:19 -07002/*
Davide Pesavento5849ee72023-11-12 20:00:21 -05003 * Copyright (c) 2014-2023, The University of Memphis,
Ashlesh Gawande0421bc62020-05-08 20:42:19 -07004 * 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/>.
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070020 */
Ashlesh Gawande415676b2016-12-22 00:26:23 -060021
dmcoomese689dd62017-03-29 11:05:12 -050022#ifndef NLSR_CONF_FILE_PROCESSOR_HPP
23#define NLSR_CONF_FILE_PROCESSOR_HPP
akmhoque53353462014-04-22 08:43:45 -050024
Nick Gordone98480b2017-05-24 11:23:03 -050025#include "common.hpp"
Ashlesh Gawande85998a12017-12-07 22:22:13 -060026#include "conf-parameter.hpp"
Nick Gordond0a7df32017-05-30 16:44:34 -050027
Davide Pesavento5849ee72023-11-12 20:00:21 -050028#include <boost/asio/io_context.hpp>
Davide Pesavento22520e62021-06-08 22:16:52 -040029#include <boost/property_tree/ptree.hpp>
akmhoque157b0a42014-05-13 00:26:37 -050030
akmhoque53353462014-04-22 08:43:45 -050031namespace nlsr {
akmhoqueb6450b12014-04-24 00:01:03 -050032
Ashlesh Gawande328fc112019-12-12 17:06:44 -060033using ConfigSection = boost::property_tree::ptree;
34
Nick Gordond0a7df32017-05-30 16:44:34 -050035/*! \brief A class containing methods to parse an NLSR configuration file
36 *
37 * This class contains methods to parse an NLSR configuration file and
38 * set all the parameters in NLSR to the received values. There are
39 * defaults for any unconfigured settings.
40 *
Nick Gordond0a7df32017-05-30 16:44:34 -050041 * \sa nlsr::ConfParameter
Nick Gordond0a7df32017-05-30 16:44:34 -050042 */
akmhoque53353462014-04-22 08:43:45 -050043class ConfFileProcessor
44{
45public:
Ashlesh Gawande85998a12017-12-07 22:22:13 -060046 ConfFileProcessor(ConfParameter& confParam);
akmhoque53353462014-04-22 08:43:45 -050047
Nick Gordond0a7df32017-05-30 16:44:34 -050048 /*! \brief Load and parse the configuration file, then populate NLSR.
49 *
50 * Entry-point function that chains all the necessary steps together
51 * to configure an NLSR object.
52 *
53 * \return A boolean for whether configuration was successful.
54 */
akmhoque157b0a42014-05-13 00:26:37 -050055 bool
56 processConfFile();
akmhoque53353462014-04-22 08:43:45 -050057
58private:
Nick Gordond0a7df32017-05-30 16:44:34 -050059 /*! \brief Parse the configuration file into a tree and process the nodes.
60 *
61 * Reads the configuration file as a property tree, and then iterates
62 * over them, attempting to parse each node. The nodes themselves
63 * are passed to another function that determines what kind of
64 * section it is and handles it appropriately. On any error in
65 * reading the file, return false.
66 *
67 * \return Whether configuration was successful.
68 */
akmhoque157b0a42014-05-13 00:26:37 -050069 bool
70 load(std::istream& input);
akmhoque53353462014-04-22 08:43:45 -050071
Nick Gordond0a7df32017-05-30 16:44:34 -050072 /*! \brief A dispatcher-like function to send configuration tree nodes to the right subfunction.
73 */
akmhoque157b0a42014-05-13 00:26:37 -050074 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070075 processSection(const std::string& sectionName, const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050076
dmcoomescf8d0ed2017-02-21 11:39:01 -060077 /*! \brief Parse general options, including router name, LSA refresh.
Nick Gordond0a7df32017-05-30 16:44:34 -050078 */
akmhoque157b0a42014-05-13 00:26:37 -050079 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070080 processConfSectionGeneral(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050081
Nick Gordond0a7df32017-05-30 16:44:34 -050082 /*! \brief Configure options relating to neighbor configuration and detection.
83 *
84 * Parse options that control NLSR's behavior about neighbors. Such
85 * things include how many hello interests are sent and what their
86 * timeout is, as well as parsing neighbor specifications. Neighbor
87 * Face URIs are parsed and confirmed as valid here by ndn-cxx.
88 */
akmhoque157b0a42014-05-13 00:26:37 -050089 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070090 processConfSectionNeighbors(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050091
Nick Gordond0a7df32017-05-30 16:44:34 -050092 /*! \brief Set the state of hyperbolic routing: off, on, dry-run.
93 */
akmhoque157b0a42014-05-13 00:26:37 -050094 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070095 processConfSectionHyperbolic(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050096
Nick Gordond0a7df32017-05-30 16:44:34 -050097 /*! \brief Set options for the FIB: nexthops per prefix, routing calculation interval.
98 */
akmhoque157b0a42014-05-13 00:26:37 -050099 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700100 processConfSectionFib(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -0500101
Nick Gordond0a7df32017-05-30 16:44:34 -0500102 /*! \brief Set prefixes that NLSR is supposed to advertise immediately.
103 */
akmhoque157b0a42014-05-13 00:26:37 -0500104 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700105 processConfSectionAdvertising(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -0500106
Nick Gordond0a7df32017-05-30 16:44:34 -0500107 /*! \brief Parse and set rules for the validator.
108 *
109 * This section parses and sets rules for the validators, which
110 * control what criteria Interest and Data need to follow to be
111 * considered valid by this NLSR.
112 */
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700113 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700114 processConfSectionSecurity(const ConfigSection& section);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700115
akmhoque53353462014-04-22 08:43:45 -0500116private:
Nick Gordond0a7df32017-05-30 16:44:34 -0500117 /*! m_confFileName The full path of the configuration file to parse. */
akmhoquefdbddb12014-05-02 18:35:19 -0500118 std::string m_confFileName;
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600119 /*! m_confParam The ConfFileProcessor object to configure as parsing is done. */
120 ConfParameter& m_confParam;
Davide Pesavento5849ee72023-11-12 20:00:21 -0500121 /*! m_io For canonization of FaceUri. */
122 boost::asio::io_context m_io;
akmhoque53353462014-04-22 08:43:45 -0500123};
124
Nick Gordonfad8e252016-08-11 14:21:38 -0500125} // namespace nlsr
Davide Pesavento22520e62021-06-08 22:16:52 -0400126
dmcoomese689dd62017-03-29 11:05:12 -0500127#endif // NLSR_CONF_FILE_PROCESSOR_HPP