123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787 |
- // Copyright (C) 2012-2017 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/.
- #include <config.h>
- #include <cc/command_interpreter.h>
- #include <dhcp4/dhcp4_log.h>
- #include <dhcp4/simple_parser4.h>
- #include <dhcp/libdhcp++.h>
- #include <dhcp/option_definition.h>
- #include <dhcpsrv/cfg_option.h>
- #include <dhcpsrv/cfgmgr.h>
- #include <dhcpsrv/parsers/client_class_def_parser.h>
- #include <dhcp4/json_config_parser.h>
- #include <dhcpsrv/parsers/dbaccess_parser.h>
- #include <dhcpsrv/parsers/dhcp_parsers.h>
- #include <dhcpsrv/parsers/expiration_config_parser.h>
- #include <dhcpsrv/parsers/host_reservation_parser.h>
- #include <dhcpsrv/parsers/host_reservations_list_parser.h>
- #include <dhcpsrv/parsers/ifaces_config_parser.h>
- #include <dhcpsrv/timer_mgr.h>
- #include <config/command_mgr.h>
- #include <util/encode/hex.h>
- #include <util/strutil.h>
- #include <defaults.h>
- #include <boost/foreach.hpp>
- #include <boost/lexical_cast.hpp>
- #include <boost/algorithm/string.hpp>
- #include <limits>
- #include <iostream>
- #include <netinet/in.h>
- #include <vector>
- #include <map>
- using namespace std;
- using namespace isc;
- using namespace isc::dhcp;
- using namespace isc::data;
- using namespace isc::asiolink;
- namespace {
- /// @brief Parser for IPv4 pool definitions.
- ///
- /// This is the IPv4 derivation of the PoolParser class and handles pool
- /// definitions, i.e. a list of entries of one of two syntaxes: min-max and
- /// prefix/len for IPv4 pools. Pool4 objects are created and stored in chosen
- /// PoolStorage container.
- ///
- /// It is useful for parsing Dhcp4/subnet4[X]/pool parameters.
- class Pool4Parser : public PoolParser {
- public:
- /// @brief Constructor.
- ///
- /// @param param_name name of the parameter. Note, it is passed through
- /// but unused, parameter is currently always "Dhcp4/subnet4[X]/pool"
- /// @param pools storage container in which to store the parsed pool
- /// upon "commit"
- Pool4Parser(const std::string& param_name, PoolStoragePtr pools)
- :PoolParser(param_name, pools, AF_INET) {
- }
- protected:
- /// @brief Creates a Pool4 object given a IPv4 prefix and the prefix length.
- ///
- /// @param addr is the IPv4 prefix of the pool.
- /// @param len is the prefix length.
- /// @param ignored dummy parameter to provide symmetry between the
- /// PoolParser derivations. The V6 derivation requires a third value.
- /// @return returns a PoolPtr to the new Pool4 object.
- PoolPtr poolMaker (IOAddress &addr, uint32_t len, int32_t) {
- return (PoolPtr(new Pool4(addr, len)));
- }
- /// @brief Creates a Pool4 object given starting and ending IPv4 addresses.
- ///
- /// @param min is the first IPv4 address in the pool.
- /// @param max is the last IPv4 address in the pool.
- /// @param ignored dummy parameter to provide symmetry between the
- /// PoolParser derivations. The V6 derivation requires a third value.
- /// @return returns a PoolPtr to the new Pool4 object.
- PoolPtr poolMaker (IOAddress &min, IOAddress &max, int32_t) {
- return (PoolPtr(new Pool4(min, max)));
- }
- };
- class Pools4ListParser : public PoolsListParser {
- public:
- Pools4ListParser(const std::string& dummy, PoolStoragePtr pools)
- :PoolsListParser(dummy, pools) {
- }
- protected:
- virtual ParserPtr poolParserMaker(PoolStoragePtr storage) {
- return (ParserPtr(new Pool4Parser("pool", storage)));
- }
- };
- /// @anchor Subnet4ConfigParser
- /// @brief This class parses a single IPv4 subnet.
- ///
- /// This is the IPv4 derivation of the SubnetConfigParser class and it parses
- /// the whole subnet definition. It creates parsersfor received configuration
- /// parameters as needed.
- class Subnet4ConfigParser : public SubnetConfigParser {
- public:
- /// @brief Constructor
- ///
- /// @param ignored first parameter
- /// stores global scope parameters, options, option definitions.
- Subnet4ConfigParser(const std::string&)
- :SubnetConfigParser("", globalContext(), IOAddress("0.0.0.0")) {
- }
- /// @brief Parses a single IPv4 subnet configuration and adds to the
- /// Configuration Manager.
- ///
- /// @param subnet A new subnet being configured.
- void build(ConstElementPtr subnet) {
- SubnetConfigParser::build(subnet);
- if (subnet_) {
- Subnet4Ptr sub4ptr = boost::dynamic_pointer_cast<Subnet4>(subnet_);
- if (!sub4ptr) {
- // If we hit this, it is a programming error.
- isc_throw(Unexpected,
- "Invalid cast in Subnet4ConfigParser::commit");
- }
- // Set relay information if it was parsed
- if (relay_info_) {
- sub4ptr->setRelayInfo(*relay_info_);
- }
- // Adding a subnet to the Configuration Manager may fail if the
- // subnet id is invalid (duplicate). Thus, we catch exceptions
- // here to append a position in the configuration string.
- try {
- CfgMgr::instance().getStagingCfg()->getCfgSubnets4()->add(sub4ptr);
- } catch (const std::exception& ex) {
- isc_throw(DhcpConfigError, ex.what() << " ("
- << subnet->getPosition() << ")");
- }
- }
- // Parse Host Reservations for this subnet if any.
- ConstElementPtr reservations = subnet->get("reservations");
- if (reservations) {
- HostReservationsListParser<HostReservationParser4> parser;
- parser.parse(subnet_->getID(), reservations);
- }
- }
- /// @brief Commits subnet configuration.
- ///
- /// This function is currently no-op because subnet should already
- /// be added into the Config Manager in the build().
- void commit() { }
- protected:
- /// @brief Creates parsers for entries in subnet definition.
- ///
- /// @param config_id name of the entry
- ///
- /// @return parser object for specified entry name. Note the caller is
- /// responsible for deleting the parser created.
- /// @throw isc::dhcp::DhcpConfigError if trying to create a parser
- /// for unknown config element
- DhcpConfigParser* createSubnetConfigParser(const std::string& config_id) {
- DhcpConfigParser* parser = NULL;
- if ((config_id.compare("valid-lifetime") == 0) ||
- (config_id.compare("renew-timer") == 0) ||
- (config_id.compare("rebind-timer") == 0) ||
- (config_id.compare("id") == 0)) {
- parser = new Uint32Parser(config_id, uint32_values_);
- } else if ((config_id.compare("subnet") == 0) ||
- (config_id.compare("interface") == 0) ||
- (config_id.compare("client-class") == 0) ||
- (config_id.compare("next-server") == 0) ||
- (config_id.compare("reservation-mode") == 0)) {
- parser = new StringParser(config_id, string_values_);
- } else if (config_id.compare("pools") == 0) {
- parser = new Pools4ListParser(config_id, pools_);
- // relay has been converted to SimpleParser already.
- // option-data has been converted to SimpleParser already.
- } else if (config_id.compare("match-client-id") == 0) {
- parser = new BooleanParser(config_id, boolean_values_);
- } else if (config_id.compare("4o6-subnet") == 0) {
- parser = new StringParser(config_id, string_values_);
- } else if (config_id.compare("4o6-interface") == 0) {
- parser = new StringParser(config_id, string_values_);
- } else if (config_id.compare("4o6-interface-id") == 0) {
- parser = new StringParser(config_id, string_values_);
- } else {
- isc_throw(NotImplemented, "unsupported parameter: " << config_id);
- }
- return (parser);
- }
- /// @brief Issues a DHCP4 server specific warning regarding duplicate subnet
- /// options.
- ///
- /// @param code is the numeric option code of the duplicate option
- /// @param addr is the subnet address
- /// @todo a means to know the correct logger and perhaps a common
- /// message would allow this method to be emitted by the base class.
- virtual void duplicate_option_warning(uint32_t code,
- isc::asiolink::IOAddress& addr) {
- LOG_WARN(dhcp4_logger, DHCP4_CONFIG_OPTION_DUPLICATE)
- .arg(code).arg(addr.toText());
- }
- /// @brief Instantiates the IPv4 Subnet based on a given IPv4 address
- /// and prefix length.
- ///
- /// @param addr is IPv4 address of the subnet.
- /// @param len is the prefix length
- void initSubnet(isc::asiolink::IOAddress addr, uint8_t len) {
- // The renew-timer and rebind-timer are optional. If not set, the
- // option 58 and 59 will not be sent to a client. In this case the
- // client will use default values based on the valid-lifetime.
- Triplet<uint32_t> t1 = getOptionalParam("renew-timer");
- Triplet<uint32_t> t2 = getOptionalParam("rebind-timer");
- // The valid-lifetime is mandatory. It may be specified for a
- // particular subnet. If not, the global value should be present.
- // If there is no global value, exception is thrown.
- Triplet<uint32_t> valid = getParam("valid-lifetime");
- // Subnet ID is optional. If it is not supplied the value of 0 is used,
- // which means autogenerate.
- SubnetID subnet_id =
- static_cast<SubnetID>(uint32_values_->getOptionalParam("id", 0));
- stringstream s;
- s << addr << "/" << static_cast<int>(len) << " with params: ";
- // t1 and t2 are optional may be not specified.
- if (!t1.unspecified()) {
- s << "t1=" << t1 << ", ";
- }
- if (!t2.unspecified()) {
- s << "t2=" << t2 << ", ";
- }
- s <<"valid-lifetime=" << valid;
- LOG_INFO(dhcp4_logger, DHCP4_CONFIG_NEW_SUBNET).arg(s.str());
- Subnet4Ptr subnet4(new Subnet4(addr, len, t1, t2, valid, subnet_id));
- subnet_ = subnet4;
- // match-client-id
- isc::util::OptionalValue<bool> match_client_id;
- try {
- match_client_id = boolean_values_->getParam("match-client-id");
- } catch (...) {
- // Ignore because this parameter is optional and it may be specified
- // in the global scope.
- }
- // If the match-client-id wasn't specified as a subnet specific parameter
- // check if there is global value specified.
- if (!match_client_id.isSpecified()) {
- // If not specified, use false.
- match_client_id.specify(globalContext()->boolean_values_->
- getOptionalParam("match-client-id", true));
- }
- // Set the match-client-id value for the subnet.
- subnet4->setMatchClientId(match_client_id.get());
- // next-server
- try {
- string next_server = globalContext()->string_values_->getParam("next-server");
- if (!next_server.empty()) {
- subnet4->setSiaddr(IOAddress(next_server));
- }
- } catch (const DhcpConfigError&) {
- // Don't care. next_server is optional. We can live without it
- } catch (...) {
- isc_throw(DhcpConfigError, "invalid parameter next-server ("
- << globalContext()->string_values_->getPosition("next-server")
- << ")");
- }
- // Try subnet specific value if it's available
- try {
- string next_server = string_values_->getParam("next-server");
- if (!next_server.empty()) {
- subnet4->setSiaddr(IOAddress(next_server));
- }
- } catch (const DhcpConfigError&) {
- // Don't care. next_server is optional. We can live without it
- } catch (...) {
- isc_throw(DhcpConfigError, "invalid parameter next-server ("
- << string_values_->getPosition("next-server")
- << ")");
- }
- // Try 4o6 specific parameter: 4o6-interface
- string iface4o6 = string_values_->getOptionalParam("4o6-interface", "");
- if (!iface4o6.empty()) {
- subnet4->get4o6().setIface4o6(iface4o6);
- subnet4->get4o6().enabled(true);
- }
- // Try 4o6 specific parameter: 4o6-subnet
- string subnet4o6 = string_values_->getOptionalParam("4o6-subnet", "");
- if (!subnet4o6.empty()) {
- size_t slash = subnet4o6.find("/");
- if (slash == std::string::npos) {
- isc_throw(DhcpConfigError, "Missing / in the 4o6-subnet parameter:"
- + subnet4o6 +", expected format: prefix6/length");
- }
- string prefix = subnet4o6.substr(0, slash);
- string lenstr = subnet4o6.substr(slash + 1);
- uint8_t len = 128;
- try {
- len = boost::lexical_cast<unsigned int>(lenstr.c_str());
- } catch (const boost::bad_lexical_cast &) {
- isc_throw(DhcpConfigError, "Invalid prefix length specified in "
- "4o6-subnet parameter: " + subnet4o6 + ", expected 0..128 value");
- }
- subnet4->get4o6().setSubnet4o6(IOAddress(prefix), len);
- subnet4->get4o6().enabled(true);
- }
- // Try 4o6 specific paramter: 4o6-interface-id
- std::string ifaceid = string_values_->getOptionalParam("4o6-interface-id", "");
- if (!ifaceid.empty()) {
- OptionBuffer tmp(ifaceid.begin(), ifaceid.end());
- OptionPtr opt(new Option(Option::V6, D6O_INTERFACE_ID, tmp));
- subnet4->get4o6().setInterfaceId(opt);
- subnet4->get4o6().enabled(true);
- }
- // Try setting up client class (if specified)
- try {
- string client_class = string_values_->getParam("client-class");
- subnet4->allowClientClass(client_class);
- } catch (const DhcpConfigError&) {
- // That's ok if it fails. client-class is optional.
- }
- }
- };
- /// @brief this class parses list of DHCP4 subnets
- ///
- /// This is a wrapper parser that handles the whole list of Subnet4
- /// definitions. It iterates over all entries and creates Subnet4ConfigParser
- /// for each entry.
- class Subnets4ListConfigParser : public DhcpConfigParser {
- public:
- /// @brief constructor
- ///
- /// @param dummy first argument, always ignored. All parsers accept a
- /// string parameter "name" as their first argument.
- Subnets4ListConfigParser(const std::string&) {
- }
- /// @brief parses contents of the list
- ///
- /// Iterates over all entries on the list and creates Subnet4ConfigParser
- /// for each entry.
- ///
- /// @param subnets_list pointer to a list of IPv4 subnets
- void build(ConstElementPtr subnets_list) {
- BOOST_FOREACH(ConstElementPtr subnet, subnets_list->listValue()) {
- ParserPtr parser(new Subnet4ConfigParser("subnet"));
- parser->build(subnet);
- }
- }
- /// @brief commits subnets definitions.
- ///
- /// Does nothing.
- void commit() {
- }
- /// @brief Returns Subnet4ListConfigParser object
- /// @param param_name name of the parameter
- /// @return Subnets4ListConfigParser object
- static DhcpConfigParser* factory(const std::string& param_name) {
- return (new Subnets4ListConfigParser(param_name));
- }
- };
- } // anonymous namespace
- namespace isc {
- namespace dhcp {
- /// @brief creates global parsers
- ///
- /// This method creates global parsers that parse global parameters, i.e.
- /// those that take format of Dhcp4/param1, Dhcp4/param2 and so forth.
- ///
- /// @param config_id pointer to received global configuration entry
- /// @param element pointer to the element to be parsed
- /// @return parser for specified global DHCPv4 parameter
- /// @throw NotImplemented if trying to create a parser for unknown
- /// config element
- DhcpConfigParser* createGlobalDhcp4ConfigParser(const std::string& config_id,
- ConstElementPtr element) {
- DhcpConfigParser* parser = NULL;
- if ((config_id.compare("valid-lifetime") == 0) ||
- (config_id.compare("renew-timer") == 0) ||
- (config_id.compare("rebind-timer") == 0) ||
- (config_id.compare("decline-probation-period") == 0) ||
- (config_id.compare("dhcp4o6-port") == 0) ) {
- parser = new Uint32Parser(config_id,
- globalContext()->uint32_values_);
- } else if (config_id.compare("interfaces-config") == 0) {
- parser = new IfacesConfigParser4();
- } else if (config_id.compare("subnet4") == 0) {
- parser = new Subnets4ListConfigParser(config_id);
- // option-data and option-def have been converted to SimpleParser already.
- } else if ((config_id.compare("next-server") == 0)) {
- parser = new StringParser(config_id,
- globalContext()->string_values_);
- } else if (config_id.compare("lease-database") == 0) {
- parser = new DbAccessParser(config_id, DbAccessParser::LEASE_DB);
- } else if (config_id.compare("hosts-database") == 0) {
- parser = new DbAccessParser(config_id, DbAccessParser::HOSTS_DB);
- } else if (config_id.compare("hooks-libraries") == 0) {
- parser = new HooksLibrariesParser(config_id);
- } else if (config_id.compare("echo-client-id") == 0) {
- parser = new BooleanParser(config_id, globalContext()->boolean_values_);
- } else if (config_id.compare("dhcp-ddns") == 0) {
- parser = new D2ClientConfigParser(config_id);
- } else if (config_id.compare("match-client-id") == 0) {
- parser = new BooleanParser(config_id, globalContext()->boolean_values_);
- // control-socket has been converted to SimpleParser already.
- } else if (config_id.compare("expired-leases-processing") == 0) {
- parser = new ExpirationConfigParser();
- } else if (config_id.compare("client-classes") == 0) {
- parser = new ClientClassDefListParser(config_id, globalContext());
- // host-reservation-identifiers have been converted to SimpleParser already.
- } else {
- isc_throw(DhcpConfigError,
- "unsupported global configuration parameter: "
- << config_id << " (" << element->getPosition() << ")");
- }
- return (parser);
- }
- /// @brief Sets global parameters in staging configuration
- ///
- /// Currently this method sets the following global parameters:
- ///
- /// - echo-client-id
- /// - decline-probation-period
- /// - dhcp4o6-port
- void setGlobalParameters4() {
- // Although the function is modest for now, it is certain that the number
- // of global switches will increase over time, hence the name.
- // Set whether v4 server is supposed to echo back client-id (yes = RFC6842
- // compatible, no = backward compatibility)
- try {
- bool echo_client_id = globalContext()->boolean_values_->getParam("echo-client-id");
- CfgMgr::instance().echoClientId(echo_client_id);
- } catch (...) {
- // Ignore errors. This flag is optional
- }
- // Set the probation period for decline handling.
- try {
- uint32_t probation_period = globalContext()->uint32_values_
- ->getOptionalParam("decline-probation-period",
- DEFAULT_DECLINE_PROBATION_PERIOD);
- CfgMgr::instance().getStagingCfg()->setDeclinePeriod(probation_period);
- } catch (...) {
- // That's not really needed.
- }
- // Set the DHCPv4-over-DHCPv6 interserver port.
- try {
- uint32_t dhcp4o6_port = globalContext()->uint32_values_
- ->getOptionalParam("dhcp4o6-port", 0);
- CfgMgr::instance().getStagingCfg()->setDhcp4o6Port(dhcp4o6_port);
- } catch (...) {
- // Ignore errors. This flag is optional
- }
- }
- /// @brief Initialize the command channel based on the staging configuration
- ///
- /// Only close the current channel, if the new channel configuration is
- /// different. This avoids disconnecting a client and hence not sending them
- /// a command result, unless they specifically alter the channel configuration.
- /// In that case the user simply has to accept they'll be disconnected.
- ///
- void configureCommandChannel() {
- // Get new socket configuration.
- ConstElementPtr sock_cfg =
- CfgMgr::instance().getStagingCfg()->getControlSocketInfo();
- // Get current socket configuration.
- ConstElementPtr current_sock_cfg =
- CfgMgr::instance().getCurrentCfg()->getControlSocketInfo();
- // Determine if the socket configuration has changed. It has if
- // both old and new configuration is specified but respective
- // data elements are't equal.
- bool sock_changed = (sock_cfg && current_sock_cfg &&
- !sock_cfg->equals(*current_sock_cfg));
- // If the previous or new socket configuration doesn't exist or
- // the new configuration differs from the old configuration we
- // close the exisitng socket and open a new socket as appropriate.
- // Note that closing an existing socket means the clien will not
- // receive the configuration result.
- if (!sock_cfg || !current_sock_cfg || sock_changed) {
- // Close the existing socket (if any).
- isc::config::CommandMgr::instance().closeCommandSocket();
- if (sock_cfg) {
- // This will create a control socket and install the external
- // socket in IfaceMgr. That socket will be monitored when
- // Dhcp4Srv::receivePacket() calls IfaceMgr::receive4() and
- // callback in CommandMgr will be called, if necessary.
- isc::config::CommandMgr::instance().openCommandSocket(sock_cfg);
- }
- }
- }
- isc::data::ConstElementPtr
- configureDhcp4Server(Dhcpv4Srv&, isc::data::ConstElementPtr config_set) {
- if (!config_set) {
- ConstElementPtr answer = isc::config::createAnswer(1,
- string("Can't parse NULL config"));
- return (answer);
- }
- LOG_DEBUG(dhcp4_logger, DBG_DHCP4_COMMAND,
- DHCP4_CONFIG_START).arg(config_set->str());
- // Reset global context.
- globalContext().reset(new ParserContext(Option::V4));
- // Before starting any subnet operations, let's reset the subnet-id counter,
- // so newly recreated configuration starts with first subnet-id equal 1.
- Subnet::resetSubnetID();
- // Remove any existing timers.
- TimerMgr::instance()->unregisterTimers();
- // Revert any runtime option definitions configured so far and not committed.
- LibDHCP::revertRuntimeOptionDefs();
- // Let's set empty container in case a user hasn't specified any configuration
- // for option definitions. This is equivalent to commiting empty container.
- LibDHCP::setRuntimeOptionDefs(OptionDefSpaceContainer());
- // Some of the values specified in the configuration depend on
- // other values. Typically, the values in the subnet4 structure
- // depend on the global values. Also, option values configuration
- // must be performed after the option definitions configurations.
- // Thus we group parsers and will fire them in the right order:
- // all parsers other than: lease-database, subnet4 and option-data parser,
- // then: option-data parser, subnet4 parser, lease-database parser.
- // Please do not change this order!
- ParserCollection independent_parsers;
- ParserPtr subnet_parser;
- ParserPtr iface_parser;
- ParserPtr leases_parser;
- ParserPtr client_classes_parser;
- // Some of the parsers alter the state of the system in a way that can't
- // easily be undone. (Or alter it in a way such that undoing the change has
- // the same risk of failure as doing the change.)
- ParserPtr hooks_parser;
- // The subnet parsers implement data inheritance by directly
- // accessing global storage. For this reason the global data
- // parsers must store the parsed data into global storages
- // immediately. This may cause data inconsistency if the
- // parsing operation fails after the global storage has been
- // modified. We need to preserve the original global data here
- // so as we can rollback changes when an error occurs.
- ParserContext original_context(*globalContext());
- // Answer will hold the result.
- ConstElementPtr answer;
- // Rollback informs whether error occurred and original data
- // have to be restored to global storages.
- bool rollback = false;
- // config_pair holds the details of the current parser when iterating over
- // the parsers. It is declared outside the loops so in case of an error,
- // the name of the failing parser can be retrieved in the "catch" clause.
- ConfigPair config_pair;
- try {
- // This is a way to convert ConstElementPtr to ElementPtr.
- // We need a config that can be edited, because we will insert
- // default values and will insert derived values as well.
- ElementPtr mutable_cfg = boost::const_pointer_cast<Element>(config_set);
- // Set all default values if not specified by the user.
- SimpleParser4::setAllDefaults(mutable_cfg);
- // We need definitions first
- ConstElementPtr option_defs = mutable_cfg->get("option-def");
- if (option_defs) {
- OptionDefListParser parser;
- CfgOptionDefPtr cfg_option_def = CfgMgr::instance().getStagingCfg()->getCfgOptionDef();
- parser.parse(cfg_option_def, option_defs);
- }
- // Make parsers grouping.
- const std::map<std::string, ConstElementPtr>& values_map =
- mutable_cfg->mapValue();
- BOOST_FOREACH(config_pair, values_map) {
- if (config_pair.first == "option-def") {
- // This is converted to SimpleParser and is handled already above.
- continue;
- }
- if (config_pair.first == "option-data") {
- OptionDataListParser parser(AF_INET);
- CfgOptionPtr cfg_option = CfgMgr::instance().getStagingCfg()->getCfgOption();
- parser.parse(cfg_option, config_pair.second);
- continue;
- }
- if (config_pair.first == "control-socket") {
- ControlSocketParser parser;
- SrvConfigPtr srv_cfg = CfgMgr::instance().getStagingCfg();
- parser.parse(*srv_cfg, config_pair.second);
- continue;
- }
- if (config_pair.first == "host-reservation-identifiers") {
- HostReservationIdsParser4 parser;
- parser.parse(config_pair.second);
- continue;
- }
- ParserPtr parser(createGlobalDhcp4ConfigParser(config_pair.first,
- config_pair.second));
- LOG_DEBUG(dhcp4_logger, DBG_DHCP4_DETAIL, DHCP4_PARSER_CREATED)
- .arg(config_pair.first);
- if (config_pair.first == "subnet4") {
- subnet_parser = parser;
- } else if (config_pair.first == "lease-database") {
- leases_parser = parser;
- } else if (config_pair.first == "interfaces-config") {
- // The interface parser is independent from any other
- // parser and can be run here before any other parsers.
- iface_parser = parser;
- parser->build(config_pair.second);
- } else if (config_pair.first == "hooks-libraries") {
- // Executing commit will alter currently-loaded hooks
- // libraries. Check if the supplied libraries are valid,
- // but defer the commit until everything else has committed.
- hooks_parser = parser;
- parser->build(config_pair.second);
- } else if (config_pair.first == "client-classes") {
- client_classes_parser = parser;
- } else {
- // Those parsers should be started before other
- // parsers so we can call build straight away.
- independent_parsers.push_back(parser);
- parser->build(config_pair.second);
- // The commit operation here may modify the global storage
- // but we need it so as the subnet6 parser can access the
- // parsed data.
- parser->commit();
- }
- }
- // The class definitions parser is the next one to be run.
- std::map<std::string, ConstElementPtr>::const_iterator cc_config =
- values_map.find("client-classes");
- if (cc_config != values_map.end()) {
- config_pair.first = "client-classes";
- client_classes_parser->build(cc_config->second);
- client_classes_parser->commit();
- }
- // The subnet parser is the next one to be run.
- std::map<std::string, ConstElementPtr>::const_iterator subnet_config =
- values_map.find("subnet4");
- if (subnet_config != values_map.end()) {
- config_pair.first = "subnet4";
- subnet_parser->build(subnet_config->second);
- }
- // Setup the command channel.
- configureCommandChannel();
- // the leases database parser is the last to be run.
- std::map<std::string, ConstElementPtr>::const_iterator leases_config =
- values_map.find("lease-database");
- if (leases_config != values_map.end()) {
- config_pair.first = "lease-database";
- leases_parser->build(leases_config->second);
- leases_parser->commit();
- }
- } catch (const isc::Exception& ex) {
- LOG_ERROR(dhcp4_logger, DHCP4_PARSER_FAIL)
- .arg(config_pair.first).arg(ex.what());
- answer = isc::config::createAnswer(1, ex.what());
- // An error occurred, so make sure that we restore original data.
- rollback = true;
- } catch (...) {
- // For things like bad_cast in boost::lexical_cast
- LOG_ERROR(dhcp4_logger, DHCP4_PARSER_EXCEPTION).arg(config_pair.first);
- answer = isc::config::createAnswer(1, "undefined configuration"
- " processing error");
- // An error occurred, so make sure that we restore original data.
- rollback = true;
- }
- // So far so good, there was no parsing error so let's commit the
- // configuration. This will add created subnets and option values into
- // the server's configuration.
- // This operation should be exception safe but let's make sure.
- if (!rollback) {
- try {
- // No need to commit interface names as this is handled by the
- // CfgMgr::commit() function.
- // Apply global options in the staging config.
- setGlobalParameters4();
- // This occurs last as if it succeeds, there is no easy way
- // revert it. As a result, the failure to commit a subsequent
- // change causes problems when trying to roll back.
- if (hooks_parser) {
- hooks_parser->commit();
- }
- }
- catch (const isc::Exception& ex) {
- LOG_ERROR(dhcp4_logger, DHCP4_PARSER_COMMIT_FAIL).arg(ex.what());
- answer = isc::config::createAnswer(2, ex.what());
- rollback = true;
- } catch (...) {
- // For things like bad_cast in boost::lexical_cast
- LOG_ERROR(dhcp4_logger, DHCP4_PARSER_COMMIT_EXCEPTION);
- answer = isc::config::createAnswer(2, "undefined configuration"
- " parsing error");
- rollback = true;
- }
- }
- // Rollback changes as the configuration parsing failed.
- if (rollback) {
- globalContext().reset(new ParserContext(original_context));
- // Revert to original configuration of runtime option definitions
- // in the libdhcp++.
- LibDHCP::revertRuntimeOptionDefs();
- return (answer);
- }
- LOG_INFO(dhcp4_logger, DHCP4_CONFIG_COMPLETE)
- .arg(CfgMgr::instance().getStagingCfg()->
- getConfigSummary(SrvConfig::CFGSEL_ALL4));
- // Everything was fine. Configuration is successful.
- answer = isc::config::createAnswer(0, "Configuration successful.");
- return (answer);
- }
- ParserContextPtr& globalContext() {
- static ParserContextPtr global_context_ptr(new ParserContext(Option::V4));
- return (global_context_ptr);
- }
- }; // end of isc::dhcp namespace
- }; // end of isc namespace
|