1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072 |
- // Copyright (C) 2010 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 __ZONE_H
- #define __ZONE_H 1
- #include <dns/name.h>
- #include <dns/rrset.h>
- #include <dns/rrtype.h>
- #include <datasrc/result.h>
- #include <utility>
- #include <vector>
- namespace isc {
- namespace datasrc {
- /// \brief Out of zone exception
- ///
- /// This is thrown when a method is called for a name or RRset which
- /// is not in or below the zone.
- class OutOfZone : public Exception {
- public:
- OutOfZone(const char* file, size_t line, const char* what) :
- isc::Exception(file, line, what) {}
- };
- /// \brief The base class to search a zone for RRsets
- ///
- /// The \c ZoneFinder class is an abstract base class for representing
- /// an object that performs DNS lookups in a specific zone accessible via
- /// a data source. In general, different types of data sources (in-memory,
- /// database-based, etc) define their own derived classes of \c ZoneFinder,
- /// implementing ways to retrieve the required data through the common
- /// interfaces declared in the base class. Each concrete \c ZoneFinder
- /// object is therefore (conceptually) associated with a specific zone
- /// of one specific data source instance.
- ///
- /// The origin name and the RR class of the associated zone are available
- /// via the \c getOrigin() and \c getClass() methods, respectively.
- ///
- /// The most important method of this class is \c find(), which performs
- /// the lookup for a given domain and type. See the description of the
- /// method for details.
- ///
- /// \note It's not clear whether we should request that a zone finder form a
- /// "transaction", that is, whether to ensure the finder is not susceptible
- /// to changes made by someone else than the creator of the finder. If we
- /// don't request that, for example, two different lookup results for the
- /// same name and type can be different if other threads or programs make
- /// updates to the zone between the lookups. We should revisit this point
- /// as we gain more experiences.
- class ZoneFinder {
- public:
- /// Result codes of the \c find() method.
- ///
- /// Note: the codes are tentative. We may need more, or we may find
- /// some of them unnecessary as we implement more details.
- ///
- /// See the description of \c find() for further details of how
- /// these results should be interpreted.
- enum Result {
- SUCCESS, ///< An exact match is found.
- DELEGATION, ///< The search encounters a zone cut.
- NXDOMAIN, ///< There is no domain name that matches the search name
- NXRRSET, ///< There is a matching name but no RRset of the search type
- CNAME, ///< The search encounters and returns a CNAME RR
- DNAME ///< The search encounters and returns a DNAME RR
- };
- /// Special attribute flags on the result of the \c find() method
- ///
- /// The flag values defined here are intended to signal to the caller
- /// that it may need special handling on the result. This is particularly
- /// of concern when DNSSEC is requested. For example, for negative
- /// responses the caller would want to know whether the zone is signed
- /// with NSEC or NSEC3 so that it can subsequently provide necessary
- /// proof of the result.
- ///
- /// The caller is generally expected to get access to the information
- /// via read-only getter methods of \c FindContext so that it won't rely
- /// on specific details of the representation of the flags. So these
- /// definitions are basically only meaningful for data source
- /// implementations.
- enum FindResultFlags {
- RESULT_DEFAULT = 0, ///< The default flags
- RESULT_WILDCARD = 1, ///< find() resulted in a wildcard match
- RESULT_NSEC_SIGNED = 2, ///< The zone is signed with NSEC RRs
- RESULT_NSEC3_SIGNED = 4 ///< The zone is signed with NSEC3 RRs
- };
- /// Find options.
- ///
- /// The option values are used as a parameter for \c find().
- /// These are values of a bitmask type. Bitwise operations can be
- /// performed on these values to express compound options.
- enum FindOptions {
- FIND_DEFAULT = 0, ///< The default options
- FIND_GLUE_OK = 1, ///< Allow search under a zone cut
- FIND_DNSSEC = 2, ///< Require DNSSEC data in the answer
- ///< (RRSIG, NSEC, etc.). The implementation
- ///< is allowed to include it even if it is
- ///< not set.
- NO_WILDCARD = 4 ///< Do not try wildcard matching.
- };
- protected:
- /// \brief A convenient tuple representing a set of find() results.
- ///
- /// This helper structure is specifically expected to be used as an input
- /// for the construct of the \c Context class object used by derived
- /// ZoneFinder implementations. This is therefore defined as protected.
- struct ResultContext {
- ResultContext(Result code_param,
- isc::dns::ConstRRsetPtr rrset_param,
- FindResultFlags flags_param = RESULT_DEFAULT) :
- code(code_param), rrset(rrset_param), flags(flags_param)
- {}
- const Result code;
- const isc::dns::ConstRRsetPtr rrset;
- const FindResultFlags flags;
- };
- public:
- /// \brief A helper function to strip RRSIGs when FIND_DNSSEC is not
- /// requested.
- static isc::dns::ConstRRsetPtr
- stripRRsigs(isc::dns::ConstRRsetPtr rp, const FindOptions options);
- /// \brief Context of the result of a find() call.
- ///
- /// This class encapsulates results and (possibly) associated context
- /// of a call to the \c find() method. The public member variables of
- /// this class represent the result of the call. They are a
- /// straightforward tuple of the result code and a pointer (and
- /// optionally special flags) to the found RRset.
- ///
- /// These member variables will be initialized on construction and never
- /// change, so for convenience we allow the applications to refer to some
- /// of the members directly. For some others we provide read-only accessor
- /// methods to hide specific representation.
- ///
- /// Another role of this class is to provide the interface to some common
- /// processing logic that may be necessary using the result of \c find().
- /// Specifically, it's expected to be used in the context of DNS query
- /// handling, where the caller would need to look into the data source
- /// again based on the \c find() result. For example, it would need to
- /// get A and/or AAAA records for some of the answer or authority RRs.
- ///
- /// This class defines (a set of) method(s) that can be commonly used
- /// for such purposes for any type of data source (as long as it conforms
- /// to the public \c find() interface). In some cases, a specific data
- /// source implementation may want to (and can) optimize the processing
- /// exploiting its internal data structure and the knowledge of the context
- /// of the precedent \c find() call. Such a data source implementation
- /// can define a derived class of the base Context and override the
- /// specific virtual method.
- ///
- /// This base class defines these common protected methods along with
- /// some helper pure virtual methods that would be necessary for the
- /// common methods. If a derived class wants to use the common version
- /// of the protected method, it needs to provide expected result through
- /// their implementation of the pure virtual methods.
- ///
- /// This class object is generally expected to be associated with the
- /// ZoneFinder that originally performed the \c find() call, and expects
- /// the finder is valid throughout the lifetime of this object. It's
- /// caller's responsibility to ensure that assumption.
- class Context {
- public:
- /// \brief The constructor.
- ///
- /// \param options The find options specified for the find() call.
- /// \param result The result of the find() call.
- Context(FindOptions options, const ResultContext& result) :
- code(result.code), rrset(result.rrset),
- flags_(result.flags), options_(options)
- {}
- /// \brief The destructor.
- virtual ~Context() {}
- const Result code;
- const isc::dns::ConstRRsetPtr rrset;
- /// Return true iff find() results in a wildcard match.
- bool isWildcard() const { return ((flags_ & RESULT_WILDCARD) != 0); }
- /// Return true when the underlying zone is signed with NSEC.
- ///
- /// The \c find() implementation allows this to return false if
- /// \c FIND_DNSSEC isn't specified regardless of whether the zone
- /// is signed or which of NSEC/NSEC3 is used.
- ///
- /// When this is returned, the implementation of find() must ensure
- /// that \c rrset be a valid NSEC RRset as described in \c find()
- /// documentation.
- bool isNSECSigned() const {
- return ((flags_ & RESULT_NSEC_SIGNED) != 0);
- }
- /// Return true when the underlying zone is signed with NSEC3.
- ///
- /// The \c find() implementation allows this to return false if
- /// \c FIND_DNSSEC isn't specified regardless of whether the zone
- /// is signed or which of NSEC/NSEC3 is used.
- bool isNSEC3Signed() const {
- return ((flags_ & RESULT_NSEC3_SIGNED) != 0);
- }
- /// \brief Find and return additional RRsets corresponding to the
- /// result of \c find().
- ///
- /// If this context is based on a normal find() call that resulted
- /// in SUCCESS or DELEGATION, it examines the returned RRset (in many
- /// cases NS, sometimes MX or others), searches the data source for
- /// specified type of additional RRs for each RDATA of the RRset
- /// (e.g., A or AAAA for the name server addresses), and stores the
- /// result in the given vector. The vector may not be empty; this
- /// method appends any found RRsets to it, without touching existing
- /// elements.
- ///
- /// If this context is based on a findAll() call that resulted in
- /// SUCCESS, it performs the same process for each RRset returned in
- /// the \c findAll() call.
- ///
- /// The caller specifies desired RR types of the additional RRsets
- /// in \c requested_types. Normally it consists of A and/or AAAA
- /// types, but other types can be specified.
- ///
- /// This method is meaningful only when the precedent find()/findAll()
- /// call resulted in SUCCESS or DELEGATION. Otherwise this method
- /// does nothing.
- ///
- /// \note The additional RRsets returned via method are limited to
- /// ones contained in the zone which the corresponding find/findAll
- /// call searched (possibly including glues under a zone cut where
- /// they are applicable). If the caller needs to get out-of-zone
- /// additional RRsets, it needs to explicitly finds them by
- /// identifying the corresponding zone and calls \c find() for it.
- ///
- /// \param requested_types A vector of RR types for desired additional
- /// RRsets.
- /// \param result A vector to which any found additional RRsets are
- /// to be inserted.
- void getAdditional(
- const std::vector<isc::dns::RRType>& requested_types,
- std::vector<isc::dns::ConstRRsetPtr>& result)
- {
- // Perform common checks, and delegate the process to the default
- // or specialized implementation.
- if (code != SUCCESS && code != DELEGATION) {
- return;
- }
- getAdditionalImpl(requested_types, result);
- }
- protected:
- /// \brief Return the \c ZoneFinder that created this \c Context.
- ///
- /// A derived class implementation can return NULL if it defines
- /// other protected methods that require a non NULL result from
- /// this method. Otherwise it must return a valid, non NULL pointer
- /// to the \c ZoneFinder object.
- ///
- /// When returning non NULL, the ownership of the pointed object
- /// was not transferred to the caller; it cannot be assumed to be
- /// valid after the originating \c Context object is destroyed.
- /// Also, the caller must not try to delete the returned object.
- virtual ZoneFinder* getFinder() = 0;
- /// \brief Return a vector of RRsets corresponding to findAll() result.
- ///
- /// This method returns a set of RRsets that correspond to the
- /// returned RRsets to a prior \c findAll() call.
- ///
- /// A derived class implementation can return NULL if it defines
- /// other protected methods that require a non NULL result from
- /// this method. Otherwise it must return a valid, non NULL pointer
- /// to a vector that correspond to the expected set of RRsets.
- ///
- /// When returning non NULL, the ownership of the pointed object
- /// was not transferred to the caller; it cannot be assumed to be
- /// valid after the originating \c Context object is destroyed.
- /// Also, the caller must not try to delete the returned object.
- virtual const std::vector<isc::dns::ConstRRsetPtr>*
- getAllRRsets() const = 0;
- /// \brief Actual implementation of getAdditional().
- ///
- /// This base class defines a default implementation that can be
- /// used for any type of data sources. A data source implementation
- /// can override it.
- ///
- /// The default version of this implementation requires both
- /// \c getFinder() and \c getAllRRsets() return valid results.
- virtual void getAdditionalImpl(
- const std::vector<isc::dns::RRType>& requested_types,
- std::vector<isc::dns::ConstRRsetPtr>& result);
- private:
- const FindResultFlags flags_;
- protected:
- const FindOptions options_;
- };
- /// \brief Generic ZoneFinder context that works for all implementations.
- ///
- /// This is a concrete derived class of \c ZoneFinder::Context that
- /// only use the generic (default) versions of the protected methods
- /// and therefore work for any data source implementation.
- ///
- /// A data source implementation can use this class to create a
- /// \c Context object as a return value of \c find() or \c findAll()
- /// method if it doesn't have to optimize specific protected methods.
- class GenericContext : public Context {
- public:
- /// \brief The constructor for the normal find call.
- ///
- /// This constructor is expected to be called from the \c find()
- /// method when it constructs the return value.
- ///
- /// \param finder The ZoneFinder on which find() is called.
- /// \param options See the \c Context class.
- /// \param result See the \c Context class.
- GenericContext(ZoneFinder& finder, FindOptions options,
- const ResultContext& result) :
- Context(options, result), finder_(finder)
- {}
- /// \brief The constructor for the normal findAll call.
- ///
- /// This constructor is expected to be called from the \c findAll()
- /// method when it constructs the return value.
- ///
- /// It copies the vector that is to be returned to the caller of
- /// \c findAll() for possible subsequent use. Note that it cannot
- /// simply hold a reference to the vector because the caller may
- /// alter it after the \c findAll() call.
- ///
- /// \param finder The ZoneFinder on which findAll() is called.
- /// \param options See the \c Context class.
- /// \param result See the \c Context class.
- /// \param all_set Reference to the vector given by the caller of
- /// \c findAll(), storing the RRsets to be returned.
- GenericContext(ZoneFinder& finder, FindOptions options,
- const ResultContext& result,
- const std::vector<isc::dns::ConstRRsetPtr>& all_set) :
- Context(options, result), finder_(finder), all_set_(all_set)
- {}
- protected:
- virtual ZoneFinder* getFinder() { return (&finder_); }
- virtual const std::vector<isc::dns::ConstRRsetPtr>*
- getAllRRsets() const {
- return (&all_set_);
- }
- private:
- ZoneFinder& finder_;
- std::vector<isc::dns::ConstRRsetPtr> all_set_;
- };
- ///
- /// \name Constructors and Destructor.
- ///
- //@{
- protected:
- /// The default constructor.
- ///
- /// This is intentionally defined as \c protected as this base class should
- /// never be instantiated (except as part of a derived class).
- ZoneFinder() {}
- public:
- /// The destructor.
- virtual ~ZoneFinder() {}
- //@}
- ///
- /// \name Getter Methods
- ///
- /// These methods should never throw an exception.
- //@{
- /// Return the origin name of the zone.
- virtual isc::dns::Name getOrigin() const = 0;
- /// Return the RR class of the zone.
- virtual isc::dns::RRClass getClass() const = 0;
- //@}
- ///
- /// \name Search Methods
- ///
- //@{
- /// Search the zone for a given pair of domain name and RR type.
- ///
- /// Each derived version of this method searches the underlying backend
- /// for the data that best matches the given name and type.
- /// This method is expected to be "intelligent", and identifies the
- /// best possible answer for the search key. Specifically,
- ///
- /// - If the search name belongs under a zone cut, it returns the code
- /// of \c DELEGATION and the NS RRset at the zone cut.
- /// - If there is no matching name, it returns the code of \c NXDOMAIN.
- /// - If there is a matching name but no RRset of the search type, it
- /// returns the code of \c NXRRSET. This case includes the search name
- /// matches an empty node of the zone.
- /// - If there is a CNAME RR of the searched name but there is no
- /// RR of the searched type of the name (so this type is different from
- /// CNAME), it returns the code of \c CNAME and that CNAME RR.
- /// Note that if the searched RR type is CNAME, it is considered
- /// a successful match, and the code of \c SUCCESS will be returned.
- /// - If the search name matches a delegation point of DNAME, it returns
- /// the code of \c DNAME and that DNAME RR.
- ///
- /// No RRset will be returned in the \c NXDOMAIN and \c NXRRSET cases
- /// (\c rrset member of \c FindContext will be NULL), unless DNSSEC data
- /// are required. See below for the cases with DNSSEC.
- ///
- /// The returned \c FindContext object can also provide supplemental
- /// information about the search result via its methods returning a
- /// boolean value. Such information may be useful for the caller if
- /// the caller wants to collect additional DNSSEC proofs based on the
- /// search result.
- ///
- /// The \c options parameter specifies customized behavior of the search.
- /// Their semantics is as follows (they are or bit-field):
- ///
- /// - \c FIND_GLUE_OK Allow search under a zone cut. By default the search
- /// will stop once it encounters a zone cut. If this option is specified
- /// it remembers information about the highest zone cut and continues
- /// the search until it finds an exact match for the given name or it
- /// detects there is no exact match. If an exact match is found,
- /// RRsets for that name are searched just like the normal case;
- /// otherwise, if the search has encountered a zone cut, \c DELEGATION
- /// with the information of the highest zone cut will be returned.
- /// Note: the term "glue" in the DNS protocol standard may sometimes
- /// cause confusion: some people use this term strictly for an address
- /// record (type AAAA or A) for the name used in the RDATA of an NS RR;
- /// some others seem to give it broader flexibility. Nevertheless,
- /// in this API the "GLUE OK" simply means the search by find() can
- /// continue beyond a zone cut; the derived class implementation does
- /// not have to, and should not, check whether the type is an address
- /// record or whether the query name is pointed by some NS RR.
- /// It's up to the caller with which definition of "glue" the search
- /// result with this option should be used.
- /// - \c FIND_DNSSEC Request that DNSSEC data (like NSEC, RRSIGs) are
- /// returned with the answer. It is allowed for the data source to
- /// include them even when not requested.
- /// - \c NO_WILDCARD Do not try wildcard matching. This option is of no
- /// use for normal lookups; it's intended to be used to get a DNSSEC
- /// proof of the non existence of any matching wildcard or non existence
- /// of an exact match when a wildcard match is found.
- ///
- /// In general, \c name is expected to be included in the zone, that is,
- /// it should be equal to or a subdomain of the zone origin. Otherwise
- /// this method will return \c NXDOMAIN with an empty RRset. But such a
- /// case should rather be considered a caller's bug.
- ///
- /// \note For this reason it's probably better to throw an exception
- /// than returning \c NXDOMAIN. This point should be revisited in a near
- /// future version. In any case applications shouldn't call this method
- /// for an out-of-zone name.
- ///
- /// <b>DNSSEC considerations:</b>
- /// The result when DNSSEC data are required can be very complicated,
- /// especially if it involves negative result or wildcard match.
- /// Specifically, if an application calls this method for DNS query
- /// processing with DNSSEC data, and if the search result code is
- /// either \c NXDOMAIN or \c NXRRRSET, and/or \c isWildcard() returns
- /// true, then the application will need to find additional NSEC or
- /// NSEC3 records for supplemental proofs. This method helps the
- /// application for such post search processing.
- ///
- /// First, it tells the application whether the zone is signed with
- /// NSEC or NSEC3 via the \c isNSEC(3)Signed() method. Any sanely signed
- /// zone should be signed with either (and only one) of these two types
- /// of RRs; however, the application should expect that the zone could
- /// be broken and these methods could both return false. But this method
- /// should ensure that not both of these methods return true.
- ///
- /// In case it's signed with NSEC3, there is no further information
- /// returned from this method.
- ///
- /// In case it's signed with NSEC, this method will possibly return
- /// a related NSEC RRset in the \c rrset member of \c FindContext.
- /// What kind of NSEC is returned depends on the result code
- /// (\c NXDOMAIN or \c NXRRSET) and on whether it's a wildcard match:
- ///
- /// - In case of NXDOMAIN, the returned NSEC covers the queried domain
- /// that proves that the query name does not exist in the zone. Note
- /// that this does not necessarily prove it doesn't even match a
- /// wildcard (even if the result of NXDOMAIN can only happen when
- /// there's no matching wildcard either). It is caller's
- /// responsibility to provide a proof that there is no matching
- /// wildcard if that proof is necessary.
- /// - In case of NXRRSET, we need to consider the following cases
- /// referring to Section 3.1.3 of RFC4035:
- ///
- /// -# (Normal) no data: there is a matching non-wildcard name with a
- /// different RR type. This is the "No Data" case of the RFC.
- /// -# (Normal) empty non terminal: there is no matching (exact or
- /// wildcard) name, but there is a subdomain with an RR of the query
- /// name. This is one case of "Name Error" of the RFC.
- /// -# Wildcard empty non terminal: similar to 2a, but the empty name
- /// is a wildcard, and matches the query name by wildcard expansion.
- /// This is a special case of "Name Error" of the RFC.
- /// -# Wildcard no data: there is no exact match name, but there is a
- /// wildcard name that matches the query name with a different type
- /// of RR. This is the "Wildcard No Data" case of the RFC.
- ///
- /// In case 1, \c find() returns NSEC of the matching name.
- ///
- /// In case 2, \c find() will return NSEC for the interval where the
- /// empty nonterminal lives. The end of the interval is the subdomain
- /// causing existence of the empty nonterminal (if there's
- /// sub.x.example.com, and no record in x.example.com, then
- /// x.example.com exists implicitly - is the empty nonterminal and
- /// sub.x.example.com is the subdomain causing it). Note that this NSEC
- /// proves not only the existence of empty non terminal name but also
- /// the non existence of possibly matching wildcard name, because
- /// there can be no better wildcard match than the exact matching empty
- /// name.
- ///
- /// In case 3, \c find() will return NSEC for the interval where the
- /// wildcard empty nonterminal lives. Cases 2 and 3 are especially
- /// complicated and confusing. See the examples below.
- ///
- /// In case 4, \c find() will return NSEC of the matching wildcard name.
- ///
- /// Examples: if zone "example.com" has the following record:
- /// \code
- /// a.example.com. NSEC a.b.example.com.
- /// \endcode
- /// a call to \c find() for "b.example.com." with the FIND_DNSSEC option
- /// will result in NXRRSET, and this NSEC will be returned.
- /// Likewise, if zone "example.org" has the following record,
- /// \code
- /// a.example.org. NSEC x.*.b.example.org.
- /// \endcode
- /// a call to \c find() for "y.b.example.org" with FIND_DNSSEC will
- /// result in NXRRSET and this NSEC; \c isWildcard() on the returned
- /// \c FindContext object will return true.
- ///
- /// \exception std::bad_alloc Memory allocation such as for constructing
- /// the resulting RRset fails
- /// \throw OutOfZone The Name \c name is outside of the origin of the
- /// zone of this ZoneFinder.
- /// \exception DataSourceError Derived class specific exception, e.g.
- /// when encountering a bad zone configuration or database connection
- /// failure. Although these are considered rare, exceptional events,
- /// it can happen under relatively usual conditions (unlike memory
- /// allocation failure). So, in general, the application is expected
- /// to catch this exception, either specifically or as a result of
- /// catching a base exception class, and handle it gracefully.
- ///
- /// \param name The domain name to be searched for.
- /// \param type The RR type to be searched for.
- /// \param options The search options.
- /// \return A \c FindContext object enclosing the search result
- /// (see above).
- virtual boost::shared_ptr<Context> find(const isc::dns::Name& name,
- const isc::dns::RRType& type,
- const FindOptions options
- = FIND_DEFAULT) = 0;
- ///
- /// \brief Finds all RRsets in the given name.
- ///
- /// This function works almost exactly in the same way as the find one. The
- /// only difference is, when the lookup is successful (eg. the code is
- /// SUCCESS), all the RRsets residing in the named node are
- /// copied into the \c target parameter and the rrset member of the result
- /// is NULL. All the other (unsuccessful) cases are handled the same,
- /// including returning delegations, NSEC/NSEC3 availability and NSEC
- /// proofs, wildcard information etc. The options parameter works the
- /// same way and it should conform to the same exception restrictions.
- ///
- /// \param name \see find, parameter name
- /// \param target the successfull result is returned through this
- /// \param options \see find, parameter options
- /// \return \see find and it's result
- virtual boost::shared_ptr<Context> findAll(
- const isc::dns::Name& name,
- std::vector<isc::dns::ConstRRsetPtr> &target,
- const FindOptions options = FIND_DEFAULT) = 0;
- /// A helper structure to represent the search result of \c findNSEC3().
- ///
- /// The idea is similar to that of \c FindContext, but \c findNSEC3() has
- /// special interface and semantics, we use a different structure to
- /// represent the result.
- struct FindNSEC3Result {
- FindNSEC3Result(bool param_matched, uint8_t param_closest_labels,
- isc::dns::ConstRRsetPtr param_closest_proof,
- isc::dns::ConstRRsetPtr param_next_proof) :
- matched(param_matched), closest_labels(param_closest_labels),
- closest_proof(param_closest_proof),
- next_proof(param_next_proof)
- {}
- /// true iff closest_proof is a matching NSEC3
- const bool matched;
- /// The number of labels of the identified closest encloser.
- const uint8_t closest_labels;
- /// Either the NSEC3 for the closest provable encloser of the given
- /// name or NSEC3 that covers the name
- const isc::dns::ConstRRsetPtr closest_proof;
- /// When non NULL, NSEC3 for the next closer name.
- const isc::dns::ConstRRsetPtr next_proof;
- };
- /// Search the zone for the NSEC3 RR(s) that prove existence or non
- /// existence of a give name.
- ///
- /// It searches the NSEC3 namespace of the zone (how that namespace is
- /// implemented can vary in specific data source implementation) for NSEC3
- /// RRs that match or cover the NSEC3 hash value for the given name.
- ///
- /// If \c recursive is false, it will first look for the NSEC3 that has
- /// a matching hash. If it doesn't exist, it identifies the covering NSEC3
- /// for the hash. In either case the search stops at that point and the
- /// found NSEC3 RR(set) will be returned in the closest_proof member of
- /// \c FindNSEC3Result. \c matched is true or false depending on
- /// the found NSEC3 is a matched one or covering one. \c next_proof
- /// is always NULL. closest_labels must be equal to the number of
- /// labels of \c name (and therefore meaningless).
- ///
- /// If \c recursive is true, it will continue the search toward the zone
- /// apex (origin name) until it finds a provable encloser, that is,
- /// an ancestor of \c name that has a matching NSEC3. This is the closest
- /// provable encloser of \c name as defined in RFC5155. In this case,
- /// if the found encloser is not equal to \c name, the search should
- /// have seen a covering NSEC3 for the immediate child of the found
- /// encloser. That child name is the next closer name as defined in
- /// RFC5155. In this case, this method returns the NSEC3 for the
- /// closest encloser in \c closest_proof, and the NSEC3 for the next
- /// closer name in \c next_proof of \c FindNSEC3Result. This set of
- /// NSEC3 RRs provide the closest encloser proof as defined in RFC5155.
- /// closest_labels will be set to the number of labels of the identified
- /// closest encloser. This will be useful when the caller needs to
- /// construct the closest encloser name from the original \c name.
- /// If, on the other hand, the found closest name is equal to \c name,
- /// this method simply returns it in \c closest_proof. \c next_proof
- /// is set to NULL. In all cases \c matched is set to true.
- /// closest_labels will be set to the number of labels of \c name.
- ///
- /// When looking for NSEC3, this method retrieves NSEC3 parameters from
- /// the corresponding zone to calculate hash values. Actual implementation
- /// of how to do this will differ in different data sources. If the
- /// NSEC3 parameters are not available \c DataSourceError exception
- /// will be thrown.
- ///
- /// \note This implicitly means this method assumes the zone does not
- /// have more than one set of parameters. This assumption should be
- /// reasonable in actual deployment and will help simplify the interface
- /// and implementation. But if there's a real need for supporting
- /// multiple sets of parameters in a single zone, we will have to
- /// extend this method so that, e.g., the caller can specify the parameter
- /// set.
- ///
- /// In general, this method expects the zone is properly signed with NSEC3
- /// RRs. Specifically, it assumes at least the apex node has a matching
- /// NSEC3 RR (so the search in the recursive mode must always succeed);
- /// it also assumes that it can retrieve NSEC parameters (iterations,
- /// algorithm, and salt) from the zone as noted above. If these
- /// assumptions aren't met, \c DataSourceError exception will be thrown.
- ///
- /// \exception OutOfZone name is not a subdomain of the zone origin
- /// \exception DataSourceError Low-level or internal datasource errors
- /// happened, or the zone isn't properly signed with NSEC3
- /// (NSEC3 parameters cannot be found, no NSEC3s are available, etc).
- /// \exception std::bad_alloc The underlying implementation involves
- /// memory allocation and it fails
- ///
- /// \param name The name for which NSEC3 RRs are to be found. It must
- /// be a subdomain of the zone.
- /// \param recursive Whether or not search should continue until it finds
- /// a provable encloser (see above).
- ///
- /// \return The search result and whether or not the closest_proof is
- /// a matching NSEC3, in the form of \c FindNSEC3Result object.
- virtual FindNSEC3Result
- findNSEC3(const isc::dns::Name& name, bool recursive) = 0;
- //@}
- };
- /// \brief Operator to combine FindOptions
- ///
- /// We would need to manually static-cast the options if we put or
- /// between them, which is undesired with bit-flag options. Therefore
- /// we hide the cast here, which is the simplest solution and it still
- /// provides reasonable level of type safety.
- inline ZoneFinder::FindOptions operator |(ZoneFinder::FindOptions a,
- ZoneFinder::FindOptions b)
- {
- return (static_cast<ZoneFinder::FindOptions>(static_cast<unsigned>(a) |
- static_cast<unsigned>(b)));
- }
- /// \brief Operator to combine FindResultFlags
- ///
- /// Similar to the same operator for \c FindOptions. Refer to the description
- /// of that function.
- inline ZoneFinder::FindResultFlags operator |(
- ZoneFinder::FindResultFlags a,
- ZoneFinder::FindResultFlags b)
- {
- return (static_cast<ZoneFinder::FindResultFlags>(
- static_cast<unsigned>(a) | static_cast<unsigned>(b)));
- }
- /// \brief A pointer-like type pointing to a \c ZoneFinder object.
- typedef boost::shared_ptr<ZoneFinder> ZoneFinderPtr;
- /// \brief A pointer-like type pointing to an immutable \c ZoneFinder object.
- typedef boost::shared_ptr<const ZoneFinder> ConstZoneFinderPtr;
- /// \brief A pointer-like type pointing to a \c ZoneFinder::Context object.
- typedef boost::shared_ptr<ZoneFinder::Context> ZoneFinderContextPtr;
- /// \brief A pointer-like type pointing to an immutable
- /// \c ZoneFinder::Context object.
- typedef boost::shared_ptr<ZoneFinder::Context> ConstZoneFinderContextPtr;
- /// The base class to make updates to a single zone.
- ///
- /// On construction, each derived class object will start a "transaction"
- /// for making updates to a specific zone (this means a constructor of
- /// a derived class would normally take parameters to identify the zone
- /// to be updated). The underlying realization of a "transaction" will differ
- /// for different derived classes; if it uses a general purpose database
- /// as a backend, it will involve performing some form of "begin transaction"
- /// statement for the database.
- ///
- /// Updates (adding or deleting RRs) are made via \c addRRset() and
- /// \c deleteRRset() methods. Until the \c commit() method is called the
- /// changes are local to the updater object. For example, they won't be
- /// visible via a \c ZoneFinder object except the one returned by the
- /// updater's own \c getFinder() method. The \c commit() completes the
- /// transaction and makes the changes visible to others.
- ///
- /// This class does not provide an explicit "rollback" interface. If
- /// something wrong or unexpected happens during the updates and the
- /// caller wants to cancel the intermediate updates, the caller should
- /// simply destruct the updater object without calling \c commit().
- /// The destructor is supposed to perform the "rollback" operation,
- /// depending on the internal details of the derived class.
- ///
- /// \note This initial implementation provides a quite simple interface of
- /// adding and deleting RRs (see the description of the related methods).
- /// It may be revisited as we gain more experiences.
- class ZoneUpdater {
- protected:
- /// The default constructor.
- ///
- /// This is intentionally defined as protected to ensure that this base
- /// class is never instantiated directly.
- ZoneUpdater() {}
- public:
- /// The destructor
- ///
- /// Each derived class implementation must ensure that if \c commit()
- /// has not been performed by the time of the call to it, then it
- /// "rollbacks" the updates made via the updater so far.
- virtual ~ZoneUpdater() {}
- /// Return a finder for the zone being updated.
- ///
- /// The returned finder provides the functionalities of \c ZoneFinder
- /// for the zone as updates are made via the updater. That is, before
- /// making any update, the finder will be able to find all RRsets that
- /// exist in the zone at the time the updater is created. If RRsets
- /// are added or deleted via \c addRRset() or \c deleteRRset(),
- /// this finder will find the added ones or miss the deleted ones
- /// respectively.
- ///
- /// The finder returned by this method is effective only while the updates
- /// are performed, i.e., from the construction of the corresponding
- /// updater until \c commit() is performed or the updater is destructed
- /// without commit. The result of a subsequent call to this method (or
- /// the use of the result) after that is undefined.
- ///
- /// \return A reference to a \c ZoneFinder for the updated zone
- virtual ZoneFinder& getFinder() = 0;
- /// Add an RRset to a zone via the updater
- ///
- /// This may be revisited in a future version, but right now the intended
- /// behavior of this method is simple: It "naively" adds the specified
- /// RRset to the zone specified on creation of the updater.
- /// It performs minimum level of validation on the specified RRset:
- /// - Whether the RR class is identical to that for the zone to be updated
- /// - Whether the RRset is not empty, i.e., it has at least one RDATA
- /// - Whether the RRset is not associated with an RRSIG, i.e.,
- /// whether \c getRRsig() on the RRset returns a NULL pointer.
- ///
- /// and otherwise does not check any oddity. For example, it doesn't
- /// check whether the owner name of the specified RRset is a subdomain
- /// of the zone's origin; it doesn't care whether or not there is already
- /// an RRset of the same name and RR type in the zone, and if there is,
- /// whether any of the existing RRs have duplicate RDATA with the added
- /// ones. If these conditions matter the calling application must examine
- /// the existing data beforehand using the \c ZoneFinder returned by
- /// \c getFinder().
- ///
- /// The validation requirement on the associated RRSIG is temporary.
- /// If we find it more reasonable and useful to allow adding a pair of
- /// RRset and its RRSIG RRset as we gain experiences with the interface,
- /// we may remove this restriction. Until then we explicitly check it
- /// to prevent accidental misuse.
- ///
- /// Conceptually, on successful call to this method, the zone will have
- /// the specified RRset, and if there is already an RRset of the same
- /// name and RR type, these two sets will be "merged". "Merged" means
- /// that a subsequent call to \c ZoneFinder::find() for the name and type
- /// will result in success and the returned RRset will contain all
- /// previously existing and newly added RDATAs with the TTL being the
- /// minimum of the two RRsets. The underlying representation of the
- /// "merged" RRsets may vary depending on the characteristic of the
- /// underlying data source. For example, if it uses a general purpose
- /// database that stores each RR of the same RRset separately, it may
- /// simply be a larger sets of RRs based on both the existing and added
- /// RRsets; the TTLs of the RRs may be different within the database, and
- /// there may even be duplicate RRs in different database rows. As long
- /// as the RRset returned via \c ZoneFinder::find() conforms to the
- /// concept of "merge", the actual internal representation is up to the
- /// implementation.
- ///
- /// This method must not be called once commit() is performed. If it
- /// calls after \c commit() the implementation must throw a
- /// \c DataSourceError exception.
- ///
- /// If journaling was requested when getting this updater, it will reject
- /// to add the RRset if the squence doesn't look like and IXFR (see
- /// DataSourceClient::getUpdater). In such case isc::BadValue is thrown.
- ///
- /// \todo As noted above we may have to revisit the design details as we
- /// gain experiences:
- ///
- /// - we may want to check (and maybe reject) if there is already a
- /// duplicate RR (that has the same RDATA).
- /// - we may want to check (and maybe reject) if there is already an
- /// RRset of the same name and RR type with different TTL
- /// - we may even want to check if there is already any RRset of the
- /// same name and RR type.
- /// - we may want to add an "options" parameter that can control the
- /// above points
- /// - we may want to have this method return a value containing the
- /// information on whether there's a duplicate, etc.
- ///
- /// \exception DataSourceError Called after \c commit(), RRset is invalid
- /// (see above), internal data source error
- /// \exception isc::BadValue Journaling is enabled and the current RRset
- /// doesn't fit into the IXFR sequence (see above).
- /// \exception std::bad_alloc Resource allocation failure
- ///
- /// \param rrset The RRset to be added
- virtual void addRRset(const isc::dns::AbstractRRset& rrset) = 0;
- /// Delete an RRset from a zone via the updater
- ///
- /// Like \c addRRset(), the detailed semantics and behavior of this method
- /// may have to be revisited in a future version. The following are
- /// based on the initial implementation decisions.
- ///
- /// On successful completion of this method, it will remove from the zone
- /// the RRs of the specified owner name and RR type that match one of
- /// the RDATAs of the specified RRset. There are several points to be
- /// noted:
- /// - Existing RRs that don't match any of the specified RDATAs will
- /// remain in the zone.
- /// - Any RRs of the specified RRset that doesn't exist in the zone will
- /// simply be ignored; the implementation of this method is not supposed
- /// to check that condition.
- /// - The TTL of the RRset is ignored; matching is only performed by
- /// the owner name, RR type and RDATA
- ///
- /// Ignoring the TTL may not look sensible, but it's based on the
- /// observation that it will result in more intuitive result, especially
- /// when the underlying data source is a general purpose database.
- /// See also \c DatabaseAccessor::deleteRecordInZone() on this point.
- /// It also matches the dynamic update protocol (RFC2136), where TTLs
- /// are ignored when deleting RRs.
- ///
- /// \note Since the TTL is ignored, this method could take the RRset
- /// to be deleted as a tuple of name, RR type, and a list of RDATAs.
- /// But in practice, it's quite likely that the caller has the RRset
- /// in the form of the \c RRset object (e.g., extracted from a dynamic
- /// update request message), so this interface would rather be more
- /// convenient. If it turns out not to be true we can change or extend
- /// the method signature.
- ///
- /// This method performs minimum level of validation on the specified
- /// RRset:
- /// - Whether the RR class is identical to that for the zone to be updated
- /// - Whether the RRset is not empty, i.e., it has at least one RDATA
- /// - Whether the RRset is not associated with an RRSIG, i.e.,
- /// whether \c getRRsig() on the RRset returns a NULL pointer.
- ///
- /// This method must not be called once commit() is performed. If it
- /// calls after \c commit() the implementation must throw a
- /// \c DataSourceError exception.
- ///
- /// If journaling was requested when getting this updater, it will reject
- /// to add the RRset if the squence doesn't look like and IXFR (see
- /// DataSourceClient::getUpdater). In such case isc::BadValue is thrown.
- ///
- /// \todo As noted above we may have to revisit the design details as we
- /// gain experiences:
- ///
- /// - we may want to check (and maybe reject) if some or all of the RRs
- /// for the specified RRset don't exist in the zone
- /// - we may want to allow an option to "delete everything" for specified
- /// name and/or specified name + RR type.
- /// - as mentioned above, we may want to include the TTL in matching the
- /// deleted RRs
- /// - we may want to add an "options" parameter that can control the
- /// above points
- /// - we may want to have this method return a value containing the
- /// information on whether there's any RRs that are specified but don't
- /// exit, the number of actually deleted RRs, etc.
- ///
- /// \exception DataSourceError Called after \c commit(), RRset is invalid
- /// (see above), internal data source error
- /// \exception isc::BadValue Journaling is enabled and the current RRset
- /// doesn't fit into the IXFR sequence (see above).
- /// \exception std::bad_alloc Resource allocation failure
- ///
- /// \param rrset The RRset to be deleted
- virtual void deleteRRset(const isc::dns::AbstractRRset& rrset) = 0;
- /// Commit the updates made in the updater to the zone
- ///
- /// This method completes the "transaction" started at the creation
- /// of the updater. After successful completion of this method, the
- /// updates will be visible outside the scope of the updater.
- /// The actual internal behavior will defer for different derived classes.
- /// For a derived class with a general purpose database as a backend,
- /// for example, this method would perform a "commit" statement for the
- /// database.
- ///
- /// This operation can only be performed at most once. A duplicate call
- /// must result in a DatasourceError exception.
- ///
- /// \exception DataSourceError Duplicate call of the method,
- /// internal data source error
- /// \exception isc::BadValue Journaling is enabled and the update is not
- /// complete IXFR sequence.
- virtual void commit() = 0;
- };
- /// \brief A pointer-like type pointing to a \c ZoneUpdater object.
- typedef boost::shared_ptr<ZoneUpdater> ZoneUpdaterPtr;
- /// The base class for retrieving differences between two versions of a zone.
- ///
- /// On construction, each derived class object will internally set up
- /// retrieving sequences of differences between two specific version of
- /// a specific zone managed in a particular data source. So the constructor
- /// of a derived class would normally take parameters to identify the zone
- /// and the two versions for which the differences should be retrieved.
- /// See \c DataSourceClient::getJournalReader for more concrete details
- /// used in this API.
- ///
- /// Once constructed, an object of this class will act like an iterator
- /// over the sequences. Every time the \c getNextDiff() method is called
- /// it returns one element of the differences in the form of an \c RRset
- /// until it reaches the end of the entire sequences.
- class ZoneJournalReader {
- public:
- /// Result codes used by a factory method for \c ZoneJournalReader
- enum Result {
- SUCCESS, ///< A \c ZoneJournalReader object successfully created
- NO_SUCH_ZONE, ///< Specified zone does not exist in the data source
- NO_SUCH_VERSION ///< Specified versions do not exist in the diff storage
- };
- protected:
- /// The default constructor.
- ///
- /// This is intentionally defined as protected to ensure that this base
- /// class is never instantiated directly.
- ZoneJournalReader() {}
- public:
- /// The destructor
- virtual ~ZoneJournalReader() {}
- /// Return the next difference RR of difference sequences.
- ///
- /// In this API, the difference between two versions of a zone is
- /// conceptually represented as IXFR-style difference sequences:
- /// Each difference sequence is a sequence of RRs: an older version of
- /// SOA (to be deleted), zero or more other deleted RRs, the
- /// post-transaction SOA (to be added), and zero or more other
- /// added RRs. (Note, however, that the underlying data source
- /// implementation may or may not represent the difference in
- /// straightforward realization of this concept. The mapping between
- /// the conceptual difference and the actual implementation is hidden
- /// in each derived class).
- ///
- /// This method provides an application with a higher level interface
- /// to retrieve the difference along with the conceptual model: the
- /// \c ZoneJournalReader object iterates over the entire sequences
- /// from the beginning SOA (which is to be deleted) to one of the
- /// added RR of with the ending SOA, and each call to this method returns
- /// one RR in the form of an \c RRset that contains exactly one RDATA
- /// in the order of the sequences.
- ///
- /// Note that the ordering of the sequences specifies the semantics of
- /// each difference: add or delete. For example, the first RR is to
- /// be deleted, and the last RR is to be added. So the return value
- /// of this method does not explicitly indicate whether the RR is to be
- /// added or deleted.
- ///
- /// This method ensures the returned \c RRset represents an RR, that is,
- /// it contains exactly one RDATA. However, it does not necessarily
- /// ensure that the resulting sequences are in the form of IXFR-style.
- /// For example, the first RR is supposed to be an SOA, and it should
- /// normally be the case, but this interface does not necessarily require
- /// the derived class implementation ensure this. Normally the
- /// differences are expected to be stored using this API (via a
- /// \c ZoneUpdater object), and as long as that is the case and the
- /// underlying implementation follows the requirement of the API, the
- /// result of this method should be a valid IXFR-style sequences.
- /// So this API does not mandate the almost redundant check as part of
- /// the interface. If the application needs to make it sure 100%, it
- /// must check the resulting sequence itself.
- ///
- /// Once the object reaches the end of the sequences, this method returns
- /// \c Null. Any subsequent call will result in an exception of
- /// class \c InvalidOperation.
- ///
- /// \exception InvalidOperation The method is called beyond the end of
- /// the difference sequences.
- /// \exception DataSourceError Underlying data is broken and the RR
- /// cannot be created or other low level data source error.
- ///
- /// \return An \c RRset that contains one RDATA corresponding to the
- /// next difference in the sequences.
- virtual isc::dns::ConstRRsetPtr getNextDiff() = 0;
- };
- /// \brief A pointer-like type pointing to a \c ZoneUpdater object.
- typedef boost::shared_ptr<ZoneJournalReader> ZoneJournalReaderPtr;
- } // end of datasrc
- } // end of isc
- #endif // __ZONE_H
- // Local Variables:
- // mode: c++
- // End:
|