// Copyright (C) 2013 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 LEASE_H #define LEASE_H #include #include #include #include namespace isc { namespace dhcp { /// @brief Unique identifier for a subnet (both v4 and v6) /// /// Let's copy SubnetID definition from subnet.h. We can't include it directly, /// because subnet.h needs Lease::Type, so it includes lease.h typedef uint32_t SubnetID; /// @brief a common structure for IPv4 and IPv6 leases /// /// This structure holds all information that is common between IPv4 and IPv6 /// leases. struct Lease { /// @brief Type of lease or pool typedef enum { TYPE_NA = 0, /// the lease contains non-temporary IPv6 address TYPE_TA = 1, /// the lease contains temporary IPv6 address TYPE_PD = 2, /// the lease contains IPv6 prefix (for prefix delegation) TYPE_V4 = 3 /// IPv4 lease } Type; /// @brief returns text representation of a lease type /// @param type lease or pool type to be converted /// @return text decription static std::string typeToText(Type type); /// @brief Constructor /// /// @param addr IP address /// @param t1 renewal time /// @param t2 rebinding time /// @param valid_lft Lifetime of the lease /// @param subnet_id Subnet identification /// @param cltt Client last transmission time /// @param fqdn_fwd If true, forward DNS update is performed for a lease. /// @param fqdn_rev If true, reverse DNS update is performed for a lease. /// @param hostname FQDN of the client which gets the lease. Lease(const isc::asiolink::IOAddress& addr, uint32_t t1, uint32_t t2, uint32_t valid_lft, SubnetID subnet_id, time_t cltt, const bool fqdn_fwd, const bool fqdn_rev, const std::string& hostname); /// @brief Destructor virtual ~Lease() {} /// @brief IPv4 ot IPv6 address /// /// IPv4, IPv6 address or, in the case of a prefix delegation, the prefix. isc::asiolink::IOAddress addr_; /// @brief Renewal timer /// /// Specifies renewal time. Although technically it is a property of the /// IA container and not the address itself, since our data model does not /// define a separate IA entity, we are keeping it in the lease. In the /// case of multiple addresses/prefixes for the same IA, each must have /// consistent T1 and T2 values. This is specified in seconds since cltt. uint32_t t1_; /// @brief Rebinding timer /// /// Specifies rebinding time. Although technically it is a property of the /// IA container and not the address itself, since our data model does not /// define a separate IA entity, we are keeping it in the lease. In the /// case of multiple addresses/prefixes for the same IA, each must have /// consistent T1 and T2 values. This is specified in seconds since cltt. uint32_t t2_; /// @brief Valid lifetime /// /// Expressed as number of seconds since cltt. uint32_t valid_lft_; /// @brief Client last transmission time /// /// Specifies a timestamp giving the time when the last transmission from a /// client was received. time_t cltt_; /// @brief Subnet identifier /// /// Specifies the identification of the subnet to which the lease belongs. SubnetID subnet_id_; /// @brief Fixed lease? /// /// Fixed leases are kept after they are released/expired. bool fixed_; /// @brief Client hostname /// /// This field may be empty std::string hostname_; /// @brief Forward zone updated? /// /// Set true if the DNS AAAA record for this lease has been updated. bool fqdn_fwd_; /// @brief Reverse zone updated? /// /// Set true if the DNS PTR record for this lease has been updated. bool fqdn_rev_; /// @brief Lease comments /// /// Currently not used. It may be used for keeping comments made by the /// system administrator. std::string comments_; /// @brief Convert Lease to Printable Form /// /// @return String form of the lease virtual std::string toText() const = 0; /// @brief returns true if the lease is expired /// @return true if the lease is expired bool expired() const; }; /// @brief Structure that holds a lease for IPv4 address /// /// For performance reasons it is a simple structure, not a class. If we chose /// make it a class, all fields would have to made private and getters/setters /// would be required. As this is a critical part of the code that will be used /// extensively, direct access is warranted. struct Lease4 : public Lease { /// @brief Address extension /// /// It is envisaged that in some cases IPv4 address will be accompanied /// with some additional data. One example of such use are Address + Port /// solutions (or Port-restricted Addresses), where several clients may get /// the same address, but different port ranges. This feature is not /// expected to be widely used. Under normal circumstances, the value /// should be 0. uint32_t ext_; /// @brief Hardware address std::vector hwaddr_; /// @brief Client identifier /// /// @todo Should this be a pointer to a client ID or the ID itself? /// Compare with the DUID in the Lease6 structure. ClientIdPtr client_id_; /// @brief Constructor /// /// @param addr IPv4 address. /// @param hwaddr Hardware address buffer /// @param hwaddr_len Length of hardware address buffer /// @param clientid Client identification buffer /// @param clientid_len Length of client identification buffer /// @param valid_lft Lifetime of the lease /// @param t1 renewal time /// @param t2 rebinding time /// @param cltt Client last transmission time /// @param subnet_id Subnet identification /// @param fqdn_fwd If true, forward DNS update is performed for a lease. /// @param fqdn_rev If true, reverse DNS update is performed for a lease. /// @param hostname FQDN of the client which gets the lease. Lease4(const isc::asiolink::IOAddress& addr, const uint8_t* hwaddr, size_t hwaddr_len, const uint8_t* clientid, size_t clientid_len, uint32_t valid_lft, uint32_t t1, uint32_t t2, time_t cltt, uint32_t subnet_id, const bool fqdn_fwd = false, const bool fqdn_rev = false, const std::string& hostname = "") : Lease(addr, t1, t2, valid_lft, subnet_id, cltt, fqdn_fwd, fqdn_rev, hostname), ext_(0), hwaddr_(hwaddr, hwaddr + hwaddr_len) { if (clientid_len) { client_id_.reset(new ClientId(clientid, clientid_len)); } } /// @brief Default constructor /// /// Initialize fields that don't have a default constructor. Lease4() : Lease(0, 0, 0, 0, 0, 0, false, false, "") { } /// @brief Copy constructor /// /// @param other the @c Lease4 object to be copied. Lease4(const Lease4& other); /// @brief Assignment operator. /// /// @param other the @c Lease4 object to be assigned. Lease4& operator=(const Lease4& other); /// @brief Compare two leases for equality /// /// @param other lease6 object with which to compare bool operator==(const Lease4& other) const; /// @brief Compare two leases for inequality /// /// @param other lease6 object with which to compare bool operator!=(const Lease4& other) const { return (!operator==(other)); } /// @brief Convert lease to printable form /// /// @return Textual represenation of lease data virtual std::string toText() const; /// @todo: Add DHCPv4 failover related fields here }; /// @brief Pointer to a Lease4 structure. typedef boost::shared_ptr Lease4Ptr; /// @brief A collection of IPv4 leases. typedef std::vector Lease4Collection; /// @brief Structure that holds a lease for IPv6 address and/or prefix /// /// For performance reasons it is a simple structure, not a class. If we chose /// make it a class, all fields would have to made private and getters/setters /// would be required. As this is a critical part of the code that will be used /// extensively, direct access is warranted. struct Lease6 : public Lease { /// @brief Lease type /// /// One of normal address, temporary address, or prefix. Type type_; /// @brief IPv6 prefix length /// /// This is used only for prefix delegations and is ignored otherwise. uint8_t prefixlen_; /// @brief Identity Association Identifier (IAID) /// /// DHCPv6 stores all addresses and prefixes in IA containers (IA_NA, /// IA_TA, IA_PD). All containers may appear more than once in a message. /// To differentiate between them, the IAID field is present uint32_t iaid_; /// @brief Client identifier DuidPtr duid_; /// @brief preferred lifetime /// /// This parameter specifies the preferred lifetime since the lease was /// assigned or renewed (cltt), expressed in seconds. uint32_t preferred_lft_; /// @todo: Add DHCPv6 failover related fields here /// @brief Constructor /// @param type Lease type. /// @param addr Assigned address. /// @param duid A pointer to an object representing DUID. /// @param iaid IAID. /// @param preferred Preferred lifetime. /// @param valid Valid lifetime. /// @param t1 A value of the T1 timer. /// @param t2 A value of the T2 timer. /// @param subnet_id A Subnet identifier. /// @param prefixlen An address prefix length. Lease6(Type type, const isc::asiolink::IOAddress& addr, DuidPtr duid, uint32_t iaid, uint32_t preferred, uint32_t valid, uint32_t t1, uint32_t t2, SubnetID subnet_id, uint8_t prefixlen = 128); /// @brief Constructor, including FQDN data. /// /// @param type Lease type. /// @param addr Assigned address. /// @param duid A pointer to an object representing DUID. /// @param iaid IAID. /// @param preferred Preferred lifetime. /// @param valid Valid lifetime. /// @param t1 A value of the T1 timer. /// @param t2 A value of the T2 timer. /// @param subnet_id A Subnet identifier. /// @param fqdn_fwd If true, forward DNS update is performed for a lease. /// @param fqdn_rev If true, reverse DNS update is performed for a lease. /// @param hostname FQDN of the client which gets the lease. /// @param prefixlen An address prefix length. Lease6(Type type, const isc::asiolink::IOAddress& addr, DuidPtr duid, uint32_t iaid, uint32_t preferred, uint32_t valid, uint32_t t1, uint32_t t2, SubnetID subnet_id, const bool fqdn_fwd, const bool fqdn_rev, const std::string& hostname, uint8_t prefixlen = 0); /// @brief Constructor /// /// Initialize fields that don't have a default constructor. Lease6() : Lease(isc::asiolink::IOAddress("::"), 0, 0, 0, 0, 0, false, false, ""), type_(TYPE_NA) { } /// @brief Compare two leases for equality /// /// @param other lease6 object with which to compare bool operator==(const Lease6& other) const; /// @brief Compare two leases for inequality /// /// @param other lease6 object with which to compare bool operator!=(const Lease6& other) const { return (!operator==(other)); } /// @brief Convert Lease to Printable Form /// /// @return String form of the lease virtual std::string toText() const; }; /// @brief Pointer to a Lease6 structure. typedef boost::shared_ptr Lease6Ptr; /// @brief Pointer to a const Lease6 structure. typedef boost::shared_ptr ConstLease6Ptr; /// @brief A collection of IPv6 leases. typedef std::vector Lease6Collection; }; // end of isc::dhcp namespace }; // end of isc namespace #endif // LEASE_H