// Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC") // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice appear in all copies. // // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR // PERFORMANCE OF THIS SOFTWARE. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace isc::data; using namespace isc::dns; using namespace std; using isc::util::MemorySegment; using boost::lexical_cast; using boost::shared_ptr; using boost::dynamic_pointer_cast; using isc::datasrc::memory::InMemoryClient; using isc::datasrc::memory::ZoneTableSegment; using isc::datasrc::memory::ZoneDataUpdater; namespace isc { namespace datasrc { ConfigurableClientList::DataSourceInfo::DataSourceInfo( DataSourceClient* data_src_client, const DataSourceClientContainerPtr& container, boost::shared_ptr cache_conf, const RRClass& rrclass, const string& name) : data_src_client_(data_src_client), container_(container), name_(name), cache_conf_(cache_conf) { if (cache_conf_ && cache_conf_->isEnabled()) { ztable_segment_.reset(ZoneTableSegment::create( rrclass, cache_conf_->getSegmentType())); cache_.reset(new InMemoryClient(ztable_segment_, rrclass)); } } const DataSourceClient* ConfigurableClientList::DataSourceInfo::getCacheClient() const { return (cache_.get()); } ConfigurableClientList::ConfigurableClientList(const RRClass& rrclass) : rrclass_(rrclass), configuration_(new isc::data::ListElement), allow_cache_(false) {} void ConfigurableClientList::configure(const ConstElementPtr& config, bool allow_cache) { if (!config) { isc_throw(isc::BadValue, "NULL configuration passed"); } // TODO: Implement recycling from the old configuration. size_t i(0); // Outside of the try to be able to access it in the catch try { vector new_data_sources; set used_names; for (; i < config->size(); ++i) { // Extract the parameters const ConstElementPtr dconf(config->get(i)); const ConstElementPtr typeElem(dconf->get("type")); if (typeElem == ConstElementPtr()) { isc_throw(ConfigurationError, "Missing the type option in " "data source no " << i); } const string type(typeElem->stringValue()); ConstElementPtr paramConf(dconf->get("params")); if (paramConf == ConstElementPtr()) { paramConf.reset(new NullElement()); } // Get the name (either explicit, or guess) const ConstElementPtr name_elem(dconf->get("name")); const string name(name_elem ? name_elem->stringValue() : type); if (!used_names.insert(name).second) { isc_throw(ConfigurationError, "Duplicate name in client list: " << name); } // Create a client for the underling data source via factory. // If it's our internal type of data source, this is essentially // no-op. In the latter case, it's of no use unless cache is // allowed; we simply skip building it in that case. const DataSourcePair dsrc_pair = getDataSourceClient(type, paramConf); if (!allow_cache && !dsrc_pair.first) { LOG_WARN(logger, DATASRC_LIST_NOT_CACHED). arg(name).arg(rrclass_); continue; } // Build in-memory cache configuration, and create a set of // related objects including the in-memory zone table for the // cache. boost::shared_ptr cache_conf( new internal::CacheConfig(type, dsrc_pair.first, *dconf, allow_cache)); new_data_sources.push_back(DataSourceInfo(dsrc_pair.first, dsrc_pair.second, cache_conf, rrclass_, name)); // If cache is disabled we are done for this data source. // Otherwise load zones into the in-memory cache. if (!cache_conf->isEnabled()) { continue; } internal::CacheConfig::ConstZoneIterator end_of_zones = cache_conf->end(); for (internal::CacheConfig::ConstZoneIterator zone_it = cache_conf->begin(); zone_it != end_of_zones; ++zone_it) { const Name& zname = zone_it->first; memory::LoadAction load_action; try { load_action = cache_conf->getLoadAction(rrclass_, zname); } catch (const DataSourceError&) { isc_throw(ConfigurationError, "Data source error for " "loading a zone (possibly non-existent) " << zname << "/" << rrclass_); } assert(load_action); // in this loop this should be always true try { memory::ZoneWriter writer( *new_data_sources.back().ztable_segment_, load_action, zname, rrclass_); writer.load(); writer.install(); writer.cleanup(); } catch (const ZoneLoaderException& e) { LOG_ERROR(logger, DATASRC_LOAD_ZONE_ERROR) .arg(zname).arg(rrclass_).arg(name).arg(e.what()); } } } // If everything is OK up until now, we have the new configuration // ready. So just put it there and let the old one die when we exit // the scope. data_sources_.swap(new_data_sources); configuration_ = config; allow_cache_ = allow_cache; } catch (const TypeError& te) { isc_throw(ConfigurationError, "Malformed configuration at data source " "no. " << i << ": " << te.what()); } catch (const internal::CacheConfigError& ex) { // convert to the "public" exception type. isc_throw(ConfigurationError, ex.what()); } } namespace { class CacheKeeper : public ClientList::FindResult::LifeKeeper { public: CacheKeeper(const boost::shared_ptr& cache) : cache_(cache) {} private: const boost::shared_ptr cache_; }; class ContainerKeeper : public ClientList::FindResult::LifeKeeper { public: ContainerKeeper(const DataSourceClientContainerPtr& container) : container_(container) {} private: const DataSourceClientContainerPtr container_; }; boost::shared_ptr genKeeper(const ConfigurableClientList::DataSourceInfo* info) { if (info == NULL) { return (boost::shared_ptr()); } if (info->cache_) { return (boost::shared_ptr( new CacheKeeper(info->cache_))); } else { return (boost::shared_ptr( new ContainerKeeper(info->container_))); } } } // We have this class as a temporary storage, as the FindResult can't be // assigned. struct ConfigurableClientList::MutableResult { MutableResult() : datasrc_client(NULL), matched_labels(0), matched(false), exact(false), info(NULL) {} DataSourceClient* datasrc_client; ZoneFinderPtr finder; uint8_t matched_labels; bool matched; bool exact; const DataSourceInfo* info; operator FindResult() const { // Conversion to the right result. return (FindResult(datasrc_client, finder, exact, genKeeper(info))); } }; ClientList::FindResult ConfigurableClientList::find(const dns::Name& name, bool want_exact_match, bool want_finder) const { MutableResult result; findInternal(result, name, want_exact_match, want_finder); return (result); } void ConfigurableClientList::findInternal(MutableResult& candidate, const dns::Name& name, bool want_exact_match, bool) const { BOOST_FOREACH(const DataSourceInfo& info, data_sources_) { DataSourceClient* client(info.cache_ ? info.cache_.get() : info.data_src_client_); const DataSourceClient::FindResult result(client->findZone(name)); // TODO: Once we mark the zones that are not loaded, but are present // in the data source somehow, check them too. switch (result.code) { case result::SUCCESS: // If we found an exact match, we have no hope to getting // a better one. Stop right here. // TODO: In case we have only the datasource and not the finder // and the need_updater parameter is true, get the zone there. candidate.datasrc_client = client; candidate.finder = result.zone_finder; candidate.matched = true; candidate.exact = true; candidate.info = &info; return; case result::PARTIALMATCH: if (!want_exact_match) { // In case we have a partial match, check if it is better // than what we have. If so, replace it. // // We don't need the labels at the first partial match, // we have nothing to compare with. So we don't get it // (as a performance) and hope we will not need it at all. const uint8_t labels(candidate.matched ? result.zone_finder->getOrigin().getLabelCount() : 0); if (candidate.matched && candidate.matched_labels == 0) { // But if the hope turns out to be false, we need to // compute it for the first match anyway. candidate.matched_labels = candidate.finder-> getOrigin().getLabelCount(); } if (labels > candidate.matched_labels || !candidate.matched) { // This one is strictly better. Replace it. candidate.datasrc_client = client; candidate.finder = result.zone_finder; candidate.matched_labels = labels; candidate.matched = true; candidate.info = &info; } } break; default: // Nothing found, nothing to do. break; } } // TODO: In case we have only the datasource and not the finder // and the need_updater parameter is true, get the zone there. } // We still provide this method for backward compatibility. But to not have // duplicate code, it is a thin wrapper around getCachedZoneWriter only. ConfigurableClientList::ReloadResult ConfigurableClientList::reload(const Name& name) { const ZoneWriterPair result(getCachedZoneWriter(name)); if (result.first != ZONE_SUCCESS) { return (result.first); } assert(result.second); result.second->load(); result.second->install(); result.second->cleanup(); return (ZONE_SUCCESS); } ConfigurableClientList::ZoneWriterPair ConfigurableClientList::getCachedZoneWriter(const Name& name) { if (!allow_cache_) { return (ZoneWriterPair(CACHE_DISABLED, ZoneWriterPtr())); } // Try to find the correct zone. MutableResult result; findInternal(result, name, true, true); if (!result.finder) { return (ZoneWriterPair(ZONE_NOT_FOUND, ZoneWriterPtr())); } // Then get the appropriate load action and create a zone writer. // Note that getCacheConfig() must return non NULL in this module (only // tests could set it to a bogus value). const memory::LoadAction load_action = result.info->getCacheConfig()->getLoadAction(rrclass_, name); if (!load_action) { return (ZoneWriterPair(ZONE_NOT_CACHED, ZoneWriterPtr())); } return (ZoneWriterPair(ZONE_SUCCESS, ZoneWriterPtr( new memory::ZoneWriter( *result.info->ztable_segment_, load_action, name, rrclass_)))); } // NOTE: This function is not tested, it would be complicated. However, the // purpose of the function is to provide a very thin wrapper to be able to // replace the call to DataSourceClientContainer constructor in tests. ConfigurableClientList::DataSourcePair ConfigurableClientList::getDataSourceClient(const string& type, const ConstElementPtr& configuration) { if (type == "MasterFiles") { return (DataSourcePair(0, DataSourceClientContainerPtr())); } DataSourceClientContainerPtr container(new DataSourceClientContainer(type, configuration)); return (DataSourcePair(&container->getInstance(), container)); } vector ConfigurableClientList::getStatus() const { vector result; BOOST_FOREACH(const DataSourceInfo& info, data_sources_) { // TODO: Once we support mapped cache, decide when we need the // SEGMENT_WAITING. result.push_back(DataSourceStatus(info.name_, info.cache_ ? SEGMENT_INUSE : SEGMENT_UNUSED, "local")); } return (result); } } }