123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- // 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.
- #ifndef DATASRC_ZONE_DATA_UPDATER_H
- #define DATASRC_ZONE_DATA_UPDATER_H 1
- #include <datasrc/exceptions.h>
- #include <datasrc/memory/zone_data.h>
- #include <datasrc/memory/rdata_serialization.h>
- #include <dns/name.h>
- #include <dns/rrclass.h>
- #include <dns/rrset.h>
- #include <dns/nsec3hash.h>
- #include <util/memory_segment.h>
- #include <boost/noncopyable.hpp>
- namespace isc {
- namespace datasrc {
- namespace memory {
- /// \brief A helper class to add records to a zone.
- ///
- /// This class provides an \c add() method that can be used to add
- /// RRsets to a ZoneData instance. The RRsets are first validated for
- /// correctness and consistency, and their data is made into RdataSets
- /// which are added to the ZoneData for the zone.
- ///
- /// The way to use this is to make a ZoneDataUpdater instance, and call
- /// add() on it as follows:
- ///
- /// \code
- /// ZoneDataUpdater updater(mem_sgmt, rrclass, zone_origin_name, zone_data);
- /// ConstRRsetPtr rrset;
- /// updater.add(rrset, ConstRRsetPtr());
- /// \endcode
- ///
- /// We enforce that instances are non-copyable as it's pointless to make
- /// copies.
- class ZoneDataUpdater : boost::noncopyable {
- public:
- ///
- /// \name Constructors and Destructor.
- ///
- //@{
- /// The constructor.
- ///
- /// \param mem_sgmt The memory segment used for the zone data.
- /// \param rrclass The RRclass of the zone data.
- /// \param zone_name The Name of the zone under which records will be
- /// added.
- /// \param zone_data The ZoneData object which is populated with
- /// record data.
- /// \throw InvalidOperation if there's already a zone data updater
- /// on the given memory segment. Currently, at most one zone data
- /// updater may exist on the same memory segment.
- ZoneDataUpdater(util::MemorySegment& mem_sgmt,
- isc::dns::RRClass rrclass,
- const isc::dns::Name& zone_name,
- ZoneData& zone_data) :
- mem_sgmt_(mem_sgmt),
- rrclass_(rrclass),
- zone_name_(zone_name),
- hash_(NULL),
- zone_data_(&zone_data)
- {
- if (mem_sgmt_.getNamedAddress("updater_zone_data").first) {
- isc_throw(isc::InvalidOperation, "A ZoneDataUpdater already exists"
- " on this memory segment. Destroy it first.");
- }
- if (mem_sgmt_.setNamedAddress("updater_zone_data", zone_data_)) {
- // It might have relocated during the set
- zone_data_ =
- static_cast<ZoneData*>(mem_sgmt_.getNamedAddress(
- "updater_zone_data").second);
- }
- assert(zone_data_);
- }
- /// The destructor.
- ~ZoneDataUpdater() {
- mem_sgmt_.clearNamedAddress("updater_zone_data");
- delete hash_;
- }
- //@}
- /// This is thrown if the provided RRset parameter passed to \c
- /// add() is NULL.
- struct NullRRset : public InvalidParameter {
- NullRRset(const char* file, size_t line, const char* what) :
- InvalidParameter(file, line, what)
- {}
- };
- /// \brief General failure exception for \c add().
- ///
- /// This is thrown against general error cases in adding an RRset
- /// to the zone.
- struct AddError : public ZoneLoaderException {
- AddError(const char* file, size_t line, const char* what) :
- ZoneLoaderException(file, line, what)
- {}
- };
- /// \brief Add an RRset to the zone.
- ///
- /// This is the core method of this class. It is used to add an
- /// RRset to the ZoneData associated with this object. The RRset is
- /// first validated for correctness and consistency with the rest of
- /// the records in the zone, and then an RdataSet is created and
- /// populated with the record data and added to the ZoneData for the
- /// name in the RRset.
- ///
- /// At least one of \c rrset or \c sig_rrset must be non NULL.
- /// \c sig_rrset can be reasonably NULL when \c rrset is not signed in
- /// the zone; it's unusual that \c rrset is NULL, but is still possible
- /// if these RRsets are given separately to the loader, or if even the
- /// zone is half broken and really contains an RRSIG that doesn't have
- /// any covered RRset. This implementation supports these cases (but
- /// see the note below).
- ///
- /// There is one tricky case: Due to a limitation of the current
- /// implementation, it cannot accept an RRSIG for NSEC3 without the covered
- /// NSEC3, unless at least one NSEC3 or NSEC3PARAM has been added.
- /// In this case an isc::NotImplemented exception will be thrown. It
- /// should be very rare in practice, and hopefully wouldn't be a real
- /// issue.
- ///
- /// \note Due to limitations of the current implementation, if a
- /// (non RRSIG) RRset and its RRSIG are added separately in different
- /// calls to this method, the second attempt will be rejected due to
- /// an \c AddError exception. This will be loosened in Trac
- /// ticket #2441.
- ///
- /// \throw NullRRset Both \c rrset and sig_rrset is NULL
- /// \throw AddError any of a variety of validation checks fail for the
- /// \c rrset and its associated \c sig_rrset.
- /// \throw NotImplemented RRSIG for NSEC3 cannot be added due to internal
- /// restriction.
- ///
- /// \param rrset The RRset to be added.
- /// \param sig_rrset An associated RRSIG RRset for the \c rrset. It
- /// can be empty if there is no RRSIG for the \c rrset.
- void add(const isc::dns::ConstRRsetPtr& rrset,
- const isc::dns::ConstRRsetPtr& sig_rrset);
- private:
- // Add the necessary magic for any wildcard contained in 'name'
- // (including itself) to be found in the zone.
- //
- // In order for wildcard matching to work correctly in the zone finder,
- // we must ensure that a node for the wildcarding level exists in the
- // backend ZoneTree.
- // E.g. if the wildcard name is "*.sub.example." then we must ensure
- // that "sub.example." exists and is marked as a wildcard level.
- // Note: the "wildcarding level" is for the parent name of the wildcard
- // name (such as "sub.example.").
- //
- // We also perform the same trick for empty wild card names possibly
- // contained in 'name' (e.g., '*.foo.example' in 'bar.*.foo.example').
- void addWildcards(const isc::dns::Name& name);
- void addInternal(const isc::dns::Name& name,
- const isc::dns::RRType& rrtype,
- const isc::dns::ConstRRsetPtr& rrset,
- const isc::dns::ConstRRsetPtr& rrsig);
- // Does some checks in context of the data that are already in the
- // zone. Currently checks for forbidden combinations of RRsets in
- // the same domain (CNAME+anything, DNAME+NS). If such condition is
- // found, it throws AddError.
- void contextCheck(const isc::dns::AbstractRRset& rrset,
- const RdataSet* set) const;
- // Validate rrset before adding it to the zone. If something is wrong
- // it throws an exception. It doesn't modify the zone, and provides
- // the strong exception guarantee.
- void validate(const isc::dns::ConstRRsetPtr rrset) const;
- const isc::dns::NSEC3Hash* getNSEC3Hash();
- template <typename T>
- void setupNSEC3(const isc::dns::ConstRRsetPtr rrset);
- void addNSEC3(const isc::dns::Name& name,
- const isc::dns::ConstRRsetPtr& rrset,
- const isc::dns::ConstRRsetPtr& rrsig);
- void addRdataSet(const isc::dns::Name& name,
- const isc::dns::RRType& rrtype,
- const isc::dns::ConstRRsetPtr& rrset,
- const isc::dns::ConstRRsetPtr& rrsig);
- util::MemorySegment& mem_sgmt_;
- const isc::dns::RRClass rrclass_;
- const isc::dns::Name& zone_name_;
- RdataEncoder encoder_;
- const isc::dns::NSEC3Hash* hash_;
- ZoneData* zone_data_;
- };
- } // namespace memory
- } // namespace datasrc
- } // namespace isc
- #endif // DATASRC_ZONE_DATA_UPDATER_H
- // Local Variables:
- // mode: c++
- // End:
|