25 int hook_index_cb6_updated_;
29 hook_index_cb6_updated_ = HooksManager::registerHook(
"cb6_updated");
47 const boost::posix_time::ptime& lb_modification_time,
49 bool globals_fetched =
false;
58 if (!audit_entries.empty()) {
65 auto range = index.equal_range(boost::make_tuple(
"dhcp6_global_parameter",
66 AuditEntry::ModificationType::DELETE));
67 if (range.first != range.second) {
75 globals =
getMgr().getPool()->getAllGlobalParameters6(backend_selector, server_selector);
82 external_cfg->sanityChecksLifetime(
"preferred-lifetime");
83 external_cfg->sanityChecksLifetime(
"valid-lifetime");
87 cfg->clearConfiguredGlobals();
89 globals_fetched =
true;
96 range = index.equal_range(boost::make_tuple(
"dhcp6_option_def",
97 AuditEntry::ModificationType::DELETE));
98 for (
auto entry = range.first; entry != range.second; ++entry) {
99 cfg->getCfgOptionDef()->del((*entry)->getObjectId());
104 range = index.equal_range(boost::make_tuple(
"dhcp6_options",
105 AuditEntry::ModificationType::DELETE));
106 for (
auto entry = range.first; entry != range.second; ++entry) {
107 cfg->getCfgOption()->del((*entry)->getObjectId());
110 range = index.equal_range(boost::make_tuple(
"dhcp6_client_class",
111 AuditEntry::ModificationType::DELETE));
112 for (
auto entry = range.first; entry != range.second; ++entry) {
113 cfg->getClientClassDictionary()->removeClass((*entry)->getObjectId());
116 range = index.equal_range(boost::make_tuple(
"dhcp6_shared_network",
117 AuditEntry::ModificationType::DELETE));
118 for (
auto entry = range.first; entry != range.second; ++entry) {
119 cfg->getCfgSharedNetworks6()->del((*entry)->getObjectId());
122 range = index.equal_range(boost::make_tuple(
"dhcp6_subnet",
123 AuditEntry::ModificationType::DELETE));
124 for (
auto entry = range.first; entry != range.second; ++entry) {
128 auto subnet = cfg->getCfgSubnets6()->getBySubnetId((*entry)->getObjectId());
132 subnet->getSharedNetwork(network);
135 network->del(subnet->getID());
138 cfg->getCfgSubnets6()->del((*entry)->getObjectId());
155 if (!globals_fetched && !audit_entries.empty()) {
158 if (!globals_fetched && (audit_entries.empty() || !updated_entries.empty())) {
160 globals =
getMgr().getPool()->getModifiedGlobalParameters6(backend_selector, server_selector,
161 lb_modification_time);
163 globals_fetched =
true;
167 if (!audit_entries.empty()) {
170 if (audit_entries.empty() || !updated_entries.empty()) {
172 getMgr().getPool()->getModifiedOptionDefs6(backend_selector, server_selector,
173 lb_modification_time);
174 for (
auto option_def = option_defs.begin(); option_def != option_defs.end(); ++option_def) {
175 if (!audit_entries.empty() && !
hasObjectId(updated_entries, (*option_def)->getId())) {
178 external_cfg->getCfgOptionDef()->add(*option_def);
183 if (!audit_entries.empty()) {
186 if (audit_entries.empty() || !updated_entries.empty()) {
189 lb_modification_time);
190 for (
auto option = options.begin(); option != options.end(); ++option) {
191 if (!audit_entries.empty() && !
hasObjectId(updated_entries, (*option).getId())) {
194 external_cfg->getCfgOption()->add((*option), (*option).space_name_);
199 if (!audit_entries.empty()) {
202 if (audit_entries.empty() || !updated_entries.empty()) {
210 client_classes.
createOptions(external_cfg->getCfgOptionDef());
212 external_cfg->setClientClassDictionary(boost::make_shared<ClientClassDictionary>(client_classes));
216 if (!audit_entries.empty()) {
219 if (audit_entries.empty() || !updated_entries.empty()) {
221 getMgr().getPool()->getModifiedSharedNetworks6(backend_selector, server_selector,
222 lb_modification_time);
223 for (
auto network = networks.begin(); network != networks.end(); ++network) {
224 if (!audit_entries.empty() && !
hasObjectId(updated_entries, (*network)->getId())) {
233 external_cfg->getCfgSharedNetworks6()->add((*network));
238 if (!audit_entries.empty()) {
241 if (audit_entries.empty() || !updated_entries.empty()) {
244 lb_modification_time);
245 for (
auto subnet = subnets.begin(); subnet != subnets.end(); ++subnet) {
246 if (!audit_entries.empty() && !
hasObjectId(updated_entries, (*subnet)->getID())) {
255 external_cfg->getCfgSubnets6()->add((*subnet));
259 if (audit_entries.empty()) {
264 external_cfg->sanityChecksLifetime(*cfg,
"preferred-lifetime");
265 external_cfg->sanityChecksLifetime(*cfg,
"valid-lifetime");
268 if (globals_fetched) {
271 bool ip_unique =
true;
272 auto ip_unique_param = external_cfg->getConfiguredGlobal(
"ip-reservations-unique");
274 ip_unique = ip_unique_param->boolValue();
282 external_cfg->addConfiguredGlobal(
"ip-reservations-unique",
Element::create(
true));
286 external_cfg->sanityChecksLifetime(*cfg,
"preferred-lifetime");
287 external_cfg->sanityChecksLifetime(*cfg,
"valid-lifetime");
292 if (!audit_entries.empty() &&
293 HooksManager::calloutsPresent(hooks_.hook_index_cb6_updated_)) {
304 callout_handle->setArgument(
"audit_entries", ptr);
307 HooksManager::callCallouts(hooks_.hook_index_cb6_updated_, *callout_handle);
static ElementPtr create(const Position &pos=ZERO_POSITION())
Server selector for associating objects in a database with specific servers.
void addGlobalsToConfig(SrvConfigPtr external_cfg, data::StampedValueCollection &cb_globals) const
Adds globals fetched from config backend(s) to a SrvConfig instance.
virtual void databaseConfigApply(const db::BackendSelector &backend_selector, const db::ServerSelector &server_selector, const boost::posix_time::ptime &lb_modification_time, const db::AuditEntryCollection &audit_entries)
DHCPv6 server specific method to fetch and apply back end configuration into the local configuration.
SrvConfigPtr createExternalCfg()
Creates an external configuration and returns pointer to it.
static CfgMgr & instance()
returns a single instance of Configuration Manager
void mergeIntoStagingCfg(const uint32_t seq)
Merges external configuration with the given sequence number into the staging configuration.
void mergeIntoCurrentCfg(const uint32_t seq)
Merges external configuration with the given sequence number into the current configuration.
SrvConfigPtr getStagingCfg()
Returns a pointer to the staging configuration.
SrvConfigPtr getCurrentCfg()
Returns a pointer to the current configuration.
Maintains a list of ClientClassDef's.
void createOptions(const CfgOptionDefPtr &cfg_option_def)
Iterates over the classes in the dictionary and recreates the options.
void initMatchExpr(uint16_t family)
Iterates over the classes in the dictionary and ensures that that match expressions are initialized.
static HostMgr & instance()
Returns a sole instance of the HostMgr.
static const isc::data::SimpleDefaults GLOBAL6_DEFAULTS
This table defines default global values for DHCPv6.
Wrapper class around callout handle which automatically resets handle's state.
db::AuditEntryCollection fetchConfigElement(const db::AuditEntryCollection &audit_entries, const std::string &object_type) const
Returns audit entries for new or updated configuration elements of specific type to be fetched from t...
ConfigBackendDHCPv6Mgr & getMgr() const
Returns the instance of the Config Backend Manager used by this object.
#define LOG_INFO(LOGGER, MESSAGE)
Macro to conveniently test info output and log it.
#define LOG_WARN(LOGGER, MESSAGE)
Macro to conveniently test warn output and log it.
boost::multi_index_container< StampedValuePtr, boost::multi_index::indexed_by< boost::multi_index::hashed_non_unique< boost::multi_index::tag< StampedValueNameIndexTag >, boost::multi_index::const_mem_fun< StampedValue, std::string, &StampedValue::getName > >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< StampedValueModificationTimeIndexTag >, boost::multi_index::const_mem_fun< BaseStampedElement, boost::posix_time::ptime, &BaseStampedElement::getModificationTime > > > > StampedValueCollection
Multi index container for StampedValue.
boost::multi_index_container< AuditEntryPtr, boost::multi_index::indexed_by< boost::multi_index::ordered_non_unique< boost::multi_index::tag< AuditEntryObjectTypeTag >, boost::multi_index::composite_key< AuditEntry, boost::multi_index::const_mem_fun< AuditEntry, std::string, &AuditEntry::getObjectType >, boost::multi_index::const_mem_fun< AuditEntry, AuditEntry::ModificationType, &AuditEntry::getModificationType > > >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< AuditEntryModificationTimeIdTag >, boost::multi_index::composite_key< AuditEntry, boost::multi_index::const_mem_fun< AuditEntry, boost::posix_time::ptime, &AuditEntry::getModificationTime >, boost::multi_index::const_mem_fun< AuditEntry, uint64_t, &AuditEntry::getRevisionId > > >, boost::multi_index::hashed_non_unique< boost::multi_index::tag< AuditEntryObjectIdTag >, boost::multi_index::const_mem_fun< AuditEntry, uint64_t, &AuditEntry::getObjectId > > > > AuditEntryCollection
Multi index container holding AuditEntry instances.
boost::shared_ptr< AuditEntryCollection > AuditEntryCollectionPtr
isc::log::Logger dhcpsrv_logger("dhcpsrv")
DHCP server library Logger.
boost::shared_ptr< const CfgGlobals > ConstCfgGlobalsPtr
Const shared pointer to a CfgGlobals instance.
boost::multi_index_container< SharedNetwork6Ptr, boost::multi_index::indexed_by< boost::multi_index::random_access< boost::multi_index::tag< SharedNetworkRandomAccessIndexTag > >, boost::multi_index::hashed_non_unique< boost::multi_index::tag< SharedNetworkIdIndexTag >, boost::multi_index::const_mem_fun< data::BaseStampedElement, uint64_t, &data::BaseStampedElement::getId > >, boost::multi_index::ordered_unique< boost::multi_index::tag< SharedNetworkNameIndexTag >, boost::multi_index::const_mem_fun< SharedNetwork6, std::string, &SharedNetwork6::getName > >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< SharedNetworkModificationTimeIndexTag >, boost::multi_index::const_mem_fun< data::BaseStampedElement, boost::posix_time::ptime, &data::BaseStampedElement::getModificationTime > > > > SharedNetwork6Collection
Multi index container holding shared networks.
boost::multi_index_container< Subnet6Ptr, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< SubnetSubnetIdIndexTag >, boost::multi_index::const_mem_fun< Subnet, SubnetID, &Subnet::getID > >, boost::multi_index::ordered_unique< boost::multi_index::tag< SubnetPrefixIndexTag >, boost::multi_index::const_mem_fun< Subnet, std::string, &Subnet::toText > >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< SubnetModificationTimeIndexTag >, boost::multi_index::const_mem_fun< data::BaseStampedElement, boost::posix_time::ptime, &data::BaseStampedElement::getModificationTime > > > > Subnet6Collection
A collection of Subnet6 objects.
boost::shared_ptr< SrvConfig > SrvConfigPtr
Non-const pointer to the SrvConfig.
const isc::log::MessageID DHCPSRV_CFGMGR_CONFIG6_MERGED
boost::shared_ptr< SharedNetwork6 > SharedNetwork6Ptr
Pointer to SharedNetwork6 object.
boost::multi_index_container< OptionDescriptor, boost::multi_index::indexed_by< boost::multi_index::sequenced<>, boost::multi_index::hashed_non_unique< KeyFromKeyExtractor< boost::multi_index::const_mem_fun< Option, uint16_t, &Option::getType >, boost::multi_index::member< OptionDescriptor, OptionPtr, &OptionDescriptor::option_ > > >, boost::multi_index::hashed_non_unique< boost::multi_index::member< OptionDescriptor, bool, &OptionDescriptor::persistent_ > >, boost::multi_index::ordered_non_unique< boost::multi_index::const_mem_fun< data::BaseStampedElement, boost::posix_time::ptime, &data::BaseStampedElement::getModificationTime > >, boost::multi_index::hashed_non_unique< boost::multi_index::tag< OptionIdIndexTag >, boost::multi_index::const_mem_fun< data::BaseStampedElement, uint64_t, &data::BaseStampedElement::getId > > > > OptionContainer
Multi index container for DHCP option descriptors.
boost::multi_index_container< OptionDefinitionPtr, boost::multi_index::indexed_by< boost::multi_index::sequenced<>, boost::multi_index::hashed_non_unique< boost::multi_index::const_mem_fun< OptionDefinition, uint16_t, &OptionDefinition::getCode > >, boost::multi_index::hashed_non_unique< boost::multi_index::const_mem_fun< OptionDefinition, std::string, &OptionDefinition::getName > >, boost::multi_index::ordered_non_unique< boost::multi_index::const_mem_fun< data::BaseStampedElement, boost::posix_time::ptime, &data::StampedElement::getModificationTime > >, boost::multi_index::hashed_non_unique< boost::multi_index::tag< OptionIdIndexTag >, boost::multi_index::const_mem_fun< data::BaseStampedElement, uint64_t, &data::BaseStampedElement::getId > > > > OptionDefContainer
Multi index container for DHCP option definitions.
const isc::log::MessageID DHCPSRV_CFGMGR_IPV6_RESERVATIONS_NON_UNIQUE_IGNORED
boost::shared_ptr< CalloutHandle > CalloutHandlePtr
A shared pointer to a CalloutHandle object.
bool hasObjectId(const db::AuditEntryCollection &audit_entries, const uint64_t &object_id)
Checks if an object is in a collection od audit entries.
Defines the logger used by the top-level component of kea-lfc.
Tag used to access index by object type.