123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- // Copyright (C) 2014-2016 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 <dhcpsrv/cfgmgr.h>
- #include <dhcpsrv/srv_config.h>
- #include <log/logger_manager.h>
- #include <log/logger_specification.h>
- #include <dhcp/pkt.h> // Needed for HWADDR_SOURCE_*
- #include <list>
- #include <sstream>
- using namespace isc::log;
- namespace isc {
- namespace dhcp {
- SrvConfig::SrvConfig()
- : sequence_(0), cfg_iface_(new CfgIface()),
- cfg_option_def_(new CfgOptionDef()), cfg_option_(new CfgOption()),
- cfg_subnets4_(new CfgSubnets4()), cfg_subnets6_(new CfgSubnets6()),
- cfg_hosts_(new CfgHosts()), cfg_rsoo_(new CfgRSOO()),
- cfg_expiration_(new CfgExpiration()), cfg_duid_(new CfgDUID()),
- cfg_db_access_(new CfgDbAccess()),
- cfg_host_operations4_(CfgHostOperations::createConfig4()),
- cfg_host_operations6_(CfgHostOperations::createConfig6()),
- class_dictionary_(new ClientClassDictionary()),
- decline_timer_(0), dhcp4o6_port_(0) {
- }
- SrvConfig::SrvConfig(const uint32_t sequence)
- : sequence_(sequence), cfg_iface_(new CfgIface()),
- cfg_option_def_(new CfgOptionDef()), cfg_option_(new CfgOption()),
- cfg_subnets4_(new CfgSubnets4()), cfg_subnets6_(new CfgSubnets6()),
- cfg_hosts_(new CfgHosts()), cfg_rsoo_(new CfgRSOO()),
- cfg_expiration_(new CfgExpiration()), cfg_duid_(new CfgDUID()),
- cfg_db_access_(new CfgDbAccess()),
- cfg_host_operations4_(CfgHostOperations::createConfig4()),
- cfg_host_operations6_(CfgHostOperations::createConfig6()),
- class_dictionary_(new ClientClassDictionary()),
- decline_timer_(0), dhcp4o6_port_(0) {
- }
- std::string
- SrvConfig::getConfigSummary(const uint32_t selection) const {
- std::ostringstream s;
- size_t subnets_num;
- if ((selection & CFGSEL_SUBNET4) == CFGSEL_SUBNET4) {
- subnets_num = getCfgSubnets4()->getAll()->size();
- if (subnets_num > 0) {
- s << "added IPv4 subnets: " << subnets_num;
- } else {
- s << "no IPv4 subnets!";
- }
- s << "; ";
- }
- if ((selection & CFGSEL_SUBNET6) == CFGSEL_SUBNET6) {
- subnets_num = getCfgSubnets6()->getAll()->size();
- if (subnets_num > 0) {
- s << "added IPv6 subnets: " << subnets_num;
- } else {
- s << "no IPv6 subnets!";
- }
- s << "; ";
- }
- if ((selection & CFGSEL_DDNS) == CFGSEL_DDNS) {
- bool ddns_enabled = CfgMgr::instance().ddnsEnabled();
- s << "DDNS: " << (ddns_enabled ? "enabled" : "disabled") << "; ";
- }
- if (s.tellp() == static_cast<std::streampos>(0)) {
- s << "no config details available";
- }
- std::string summary = s.str();
- size_t last_separator_pos = summary.find_last_of(";");
- if (last_separator_pos == summary.length() - 2) {
- summary.erase(last_separator_pos);
- }
- return (summary);
- }
- bool
- SrvConfig::sequenceEquals(const SrvConfig& other) {
- return (getSequence() == other.getSequence());
- }
- void
- SrvConfig::copy(SrvConfig& new_config) const {
- // We will entirely replace loggers in the new configuration.
- new_config.logging_info_.clear();
- for (LoggingInfoStorage::const_iterator it = logging_info_.begin();
- it != logging_info_.end(); ++it) {
- new_config.addLoggingInfo(*it);
- }
- // Replace interface configuration.
- new_config.cfg_iface_.reset(new CfgIface(*cfg_iface_));
- // Replace option definitions.
- cfg_option_def_->copyTo(*new_config.cfg_option_def_);
- cfg_option_->copyTo(*new_config.cfg_option_);
- // Replace the client class dictionary
- new_config.class_dictionary_.reset(new ClientClassDictionary(*class_dictionary_));
- }
- void
- SrvConfig::applyLoggingCfg() const {
- std::list<LoggerSpecification> specs;
- for (LoggingInfoStorage::const_iterator it = logging_info_.begin();
- it != logging_info_.end(); ++it) {
- specs.push_back(it->toSpec());
- }
- LoggerManager manager;
- manager.process(specs.begin(), specs.end());
- }
- bool
- SrvConfig::equals(const SrvConfig& other) const {
- // If number of loggers is different, then configurations aren't equal.
- if (logging_info_.size() != other.logging_info_.size()) {
- return (false);
- }
- // Pass through all loggers and try to find the match for each of them
- // with the loggers from the other configuration. The order doesn't
- // matter so we can't simply compare the vectors.
- for (LoggingInfoStorage::const_iterator this_it =
- logging_info_.begin(); this_it != logging_info_.end();
- ++this_it) {
- bool match = false;
- for (LoggingInfoStorage::const_iterator other_it =
- other.logging_info_.begin();
- other_it != other.logging_info_.end(); ++other_it) {
- if (this_it->equals(*other_it)) {
- match = true;
- break;
- }
- }
- // No match found for the particular logger so return false.
- if (!match) {
- return (false);
- }
- }
- // Logging information is equal between objects, so check other values.
- return ((*cfg_iface_ == *other.cfg_iface_) &&
- (*cfg_option_def_ == *other.cfg_option_def_) &&
- (*cfg_option_ == *other.cfg_option_) &&
- (*class_dictionary_ == *other.class_dictionary_));
- }
- void
- SrvConfig::removeStatistics() {
- // Removes statistics for v4 and v6 subnets
- getCfgSubnets4()->removeStatistics();
- getCfgSubnets6()->removeStatistics();
- }
- void
- SrvConfig::updateStatistics() {
- // Updates statistics for v4 and v6 subnets
- getCfgSubnets4()->updateStatistics();
- getCfgSubnets6()->updateStatistics();
- }
- }
- }
|