2019-03-06 09:10:19 +01:00
|
|
|
// Copyright (C) 2019 Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
#ifndef BASE_NETWORK_PARSER_H
|
|
|
|
#define BASE_NETWORK_PARSER_H
|
|
|
|
|
|
|
|
#include <cc/data.h>
|
|
|
|
#include <cc/simple_parser.h>
|
|
|
|
#include <dhcpsrv/network.h>
|
|
|
|
|
|
|
|
namespace isc {
|
|
|
|
namespace dhcp {
|
|
|
|
|
|
|
|
/// @brief Common configuration parser for shared networks
|
|
|
|
/// and subnets.
|
|
|
|
class BaseNetworkParser : public data::SimpleParser {
|
|
|
|
protected:
|
|
|
|
|
2019-05-16 01:16:20 +02:00
|
|
|
/// @brief Parses DHCP lifetime.
|
|
|
|
///
|
|
|
|
/// Used here for valid-lifetime but reused for preferred-lifetime.
|
|
|
|
///
|
|
|
|
/// @param scope Data element holding e.g. shared network configuration
|
|
|
|
/// to be parsed.
|
|
|
|
/// @param name Base name of the lifetime parameter.
|
|
|
|
/// @return A triplet with the parsed lifetime value.
|
|
|
|
const Triplet<uint32_t> parseLifetime(const data::ConstElementPtr& scope,
|
|
|
|
const std::string& name);
|
|
|
|
|
2020-03-31 16:17:43 -04:00
|
|
|
/// @brief Parses common parameters
|
2019-03-06 09:10:19 +01:00
|
|
|
///
|
|
|
|
/// The parsed parameters are:
|
|
|
|
/// - renew-timer,
|
|
|
|
/// - rebind-timer,
|
|
|
|
/// - valid-lifetime
|
2020-03-31 16:17:43 -04:00
|
|
|
/// - store-extended-info
|
2019-03-06 09:10:19 +01:00
|
|
|
///
|
2019-05-24 15:30:29 -04:00
|
|
|
/// @param network_data Data element holding shared network
|
2019-03-06 09:10:19 +01:00
|
|
|
/// configuration to be parsed.
|
|
|
|
/// @param [out] network Pointer to a network in which parsed data is
|
|
|
|
/// to be stored.
|
2020-03-31 16:17:43 -04:00
|
|
|
void parseCommon(const data::ConstElementPtr& network_data,
|
|
|
|
NetworkPtr& network);
|
2019-03-06 09:10:19 +01:00
|
|
|
|
|
|
|
/// @brief Parses parameters related to "percent" timers settngs.
|
|
|
|
///
|
|
|
|
/// The parsed parameters are:
|
|
|
|
/// - calculate-tee-times,
|
|
|
|
/// - t1-percent,
|
|
|
|
/// - t2-percent.
|
|
|
|
///
|
2019-03-06 16:44:29 +01:00
|
|
|
/// @param network_data Data element holding shared network
|
2019-03-06 09:10:19 +01:00
|
|
|
/// configuration to be parsed.
|
|
|
|
/// @param [out] network Pointer to a network in which parsed data is
|
|
|
|
/// to be stored.
|
|
|
|
///
|
|
|
|
/// @throw DhcpConfigError if configuration of these parameters is
|
|
|
|
/// invalid.
|
2019-03-06 16:44:29 +01:00
|
|
|
void parseTeePercents(const data::ConstElementPtr& network_data,
|
2019-03-06 09:10:19 +01:00
|
|
|
NetworkPtr& network);
|
2019-04-12 11:27:49 +02:00
|
|
|
|
|
|
|
/// @brief Parses host reservation mode.
|
2019-09-26 08:33:41 -04:00
|
|
|
///
|
2019-04-15 13:39:38 +02:00
|
|
|
/// @param network_data Data element holding shared network
|
2019-04-12 11:27:49 +02:00
|
|
|
/// configuration to be parsed.
|
|
|
|
/// @param [out] network Pointer to a network in which parsed data is
|
|
|
|
/// to be stored.
|
|
|
|
void parseHostReservationMode(const data::ConstElementPtr& network_data,
|
|
|
|
NetworkPtr& network);
|
2019-09-26 08:33:41 -04:00
|
|
|
|
|
|
|
/// @brief Parses parameters pertaining to DDNS behavior.
|
|
|
|
///
|
|
|
|
/// The parsed parameters are:
|
|
|
|
/// - ddns-send-updates
|
|
|
|
/// - ddns-override-no-update
|
|
|
|
/// - ddns-override-client-update
|
|
|
|
/// - ddns-replace-client-name
|
|
|
|
/// - ddns-generated-prefix
|
|
|
|
/// - ddns-qualifying-suffix
|
|
|
|
///
|
|
|
|
/// @param network_data Data element holding shared network
|
|
|
|
/// configuration to be parsed.
|
|
|
|
/// @param [out] network Pointer to a network in which parsed data is
|
|
|
|
/// to be stored.
|
|
|
|
void parseDdnsParams(const data::ConstElementPtr& network_data,
|
|
|
|
NetworkPtr& network);
|
2019-03-06 09:10:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end of namespace isc::dhcp
|
|
|
|
} // end of namespace isc
|
|
|
|
|
|
|
|
#endif
|