Kea
1.9.9-git
|
#include <mysql_lease_mgr.h>
Public Member Functions | |
MySqlLeaseMgr (const db::DatabaseConnection::ParameterMap ¶meters) | |
Constructor. More... | |
virtual | ~MySqlLeaseMgr () |
Destructor (closes database) More... | |
virtual bool | addLease (const Lease4Ptr &lease) |
Adds an IPv4 lease. More... | |
virtual bool | addLease (const Lease6Ptr &lease) |
Adds an IPv6 lease. More... | |
virtual void | commit () |
Commit Transactions. More... | |
MySqlLeaseContextPtr | createContext () const |
Create a new context. More... | |
virtual uint64_t | deleteExpiredReclaimedLeases4 (const uint32_t secs) |
Deletes all expired-reclaimed DHCPv4 leases. More... | |
virtual uint64_t | deleteExpiredReclaimedLeases6 (const uint32_t secs) |
Deletes all expired-reclaimed DHCPv6 leases. More... | |
virtual bool | deleteLease (const Lease4Ptr &lease) |
Deletes an IPv4 lease. More... | |
virtual bool | deleteLease (const Lease6Ptr &lease) |
Deletes an IPv6 lease. More... | |
virtual std::string | getDescription () const |
Returns description of the backend. More... | |
virtual void | getExpiredLeases4 (Lease4Collection &expired_leases, const size_t max_leases) const |
Returns a collection of expired DHCPv4 leases. More... | |
virtual void | getExpiredLeases6 (Lease6Collection &expired_leases, const size_t max_leases) const |
Returns a collection of expired DHCPv6 leases. More... | |
virtual Lease4Ptr | getLease4 (const isc::asiolink::IOAddress &addr) const |
Returns an IPv4 lease for specified IPv4 address. More... | |
virtual Lease4Collection | getLease4 (const isc::dhcp::HWAddr &hwaddr) const |
Returns existing IPv4 leases for specified hardware address. More... | |
virtual Lease4Ptr | getLease4 (const isc::dhcp::HWAddr &hwaddr, SubnetID subnet_id) const |
Returns existing IPv4 leases for specified hardware address and a subnet. More... | |
virtual Lease4Collection | getLease4 (const ClientId &clientid) const |
Returns existing IPv4 leases for specified client-id. More... | |
virtual Lease4Ptr | getLease4 (const ClientId &clientid, SubnetID subnet_id) const |
Returns existing IPv4 lease for specified client-id. More... | |
virtual Lease6Ptr | getLease6 (Lease::Type type, const isc::asiolink::IOAddress &addr) const |
Returns existing IPv6 lease for a given IPv6 address. More... | |
virtual Lease4Collection | getLeases4 (SubnetID subnet_id) const |
Returns all IPv4 leases for the particular subnet identifier. More... | |
virtual Lease4Collection | getLeases4 (const std::string &hostname) const |
Returns all IPv4 leases for the particular hostname. More... | |
virtual Lease4Collection | getLeases4 () const |
Returns all IPv4 leases. More... | |
virtual Lease4Collection | getLeases4 (const asiolink::IOAddress &lower_bound_address, const LeasePageSize &page_size) const |
Returns range of IPv4 leases using paging. More... | |
virtual Lease6Collection | getLeases6 (Lease::Type type, const DUID &duid, uint32_t iaid) const |
Returns existing IPv6 leases for a given DUID+IA combination. More... | |
virtual Lease6Collection | getLeases6 (Lease::Type type, const DUID &duid, uint32_t iaid, SubnetID subnet_id) const |
Returns existing IPv6 lease for a given DUID+IA combination. More... | |
virtual Lease6Collection | getLeases6 (SubnetID subnet_id) const |
Returns all IPv6 leases for the particular subnet identifier. More... | |
virtual Lease6Collection | getLeases6 (const std::string &hostname) const |
Returns all IPv6 leases for the particular hostname. More... | |
virtual Lease6Collection | getLeases6 () const |
Returns all IPv6 leases. More... | |
virtual Lease6Collection | getLeases6 (const DUID &duid) const |
Returns all IPv6 leases for the DUID. More... | |
virtual Lease6Collection | getLeases6 (const asiolink::IOAddress &lower_bound_address, const LeasePageSize &page_size) const |
Returns range of IPv6 leases using paging. More... | |
virtual std::string | getName () const |
Returns backend name. More... | |
virtual std::string | getType () const |
Return backend type. More... | |
virtual std::pair< uint32_t, uint32_t > | getVersion () const |
Returns backend version. More... | |
virtual void | rollback () |
Rollback Transactions. More... | |
virtual LeaseStatsQueryPtr | startLeaseStatsQuery4 () |
Creates and runs the IPv4 lease stats query. More... | |
virtual LeaseStatsQueryPtr | startLeaseStatsQuery6 () |
Creates and runs the IPv6 lease stats query. More... | |
virtual LeaseStatsQueryPtr | startSubnetLeaseStatsQuery4 (const SubnetID &subnet_id) |
Creates and runs the IPv4 lease stats query for a single subnet. More... | |
virtual LeaseStatsQueryPtr | startSubnetLeaseStatsQuery6 (const SubnetID &subnet_id) |
Creates and runs the IPv6 lease stats query for a single subnet. More... | |
virtual LeaseStatsQueryPtr | startSubnetRangeLeaseStatsQuery4 (const SubnetID &first_subnet_id, const SubnetID &last_subnet_id) |
Creates and runs the IPv4 lease stats query for a single subnet. More... | |
virtual LeaseStatsQueryPtr | startSubnetRangeLeaseStatsQuery6 (const SubnetID &first_subnet_id, const SubnetID &last_subnet_id) |
Creates and runs the IPv6 lease stats query for a single subnet. More... | |
virtual void | updateLease4 (const Lease4Ptr &lease4) |
Updates IPv4 lease. More... | |
virtual void | updateLease6 (const Lease6Ptr &lease6) |
Updates IPv6 lease. More... | |
virtual size_t | wipeLeases4 (const SubnetID &subnet_id) |
Removes specified IPv4 leases. More... | |
virtual size_t | wipeLeases6 (const SubnetID &subnet_id) |
Removed specified IPv6 leases. More... | |
Public Member Functions inherited from isc::dhcp::LeaseMgr | |
LeaseMgr () | |
Constructor. More... | |
virtual | ~LeaseMgr () |
Destructor. More... | |
Lease6Ptr | getLease6 (Lease::Type type, const DUID &duid, uint32_t iaid, SubnetID subnet_id) const |
returns zero or one IPv6 lease for a given duid+iaid+subnet_id More... | |
void | recountLeaseStats4 () |
Recalculates per-subnet and global stats for IPv4 leases. More... | |
void | recountLeaseStats6 () |
Recalculates per-subnet and global stats for IPv6 leases. More... | |
Static Public Member Functions | |
static bool | dbReconnect (db::ReconnectCtlPtr db_reconnect_ctl) |
Attempts to reconnect the server to the lease DB backend manager. More... | |
static std::string | getDBVersion () |
Local version of getDBVersion() class method. More... | |
Static Public Member Functions inherited from isc::dhcp::LeaseMgr | |
static std::string | getDBVersion () |
Class method to return extended version info This class method must be redeclared and redefined in derived classes. More... | |
static isc::asiolink::IOServicePtr & | getIOService () |
Returns pointer to the IO service. More... | |
static void | setIOService (const isc::asiolink::IOServicePtr &io_service) |
Sets IO service to be used by the Lease Manager. More... | |
MySQL Lease Manager.
This class provides the isc::dhcp::LeaseMgr interface to the MySQL database. Use of this backend presupposes that a MySQL database is available and that the Kea schema has been created within it.
Definition at line 92 of file mysql_lease_mgr.h.
Statement Tags.
The contents of the enum are indexes into the list of compiled SQL statements
Definition at line 693 of file mysql_lease_mgr.h.
isc::dhcp::MySqlLeaseMgr::MySqlLeaseMgr | ( | const db::DatabaseConnection::ParameterMap & | parameters | ) |
Constructor.
Uses the following keywords in the parameters passed to it to connect to the database:
Check the schema version and create an initial context.
parameters | A data structure relating keywords and values concerned with the database. |
isc::dhcp::NoDatabaseName | Mandatory database name not given |
isc::db::DbOpenError | Error opening the database or the schema version is incorrect. |
isc::db::DbOperationError | An operation on the open database has failed. |
Definition at line 1783 of file mysql_lease_mgr.cc.
References createContext(), getVersion(), isc_throw, isc::db::MYSQL_SCHEMA_VERSION_MAJOR, and isc::db::MYSQL_SCHEMA_VERSION_MINOR.
|
virtual |
Destructor (closes database)
Definition at line 1808 of file mysql_lease_mgr.cc.
|
virtual |
Adds an IPv4 lease.
lease | lease to be added |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 1945 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_ADD_ADDR4, INSERT_LEASE4, and LOG_DEBUG.
|
virtual |
Adds an IPv6 lease.
lease | lease to be added |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 1967 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_ADD_ADDR6, INSERT_LEASE6, and LOG_DEBUG.
|
virtual |
Commit Transactions.
Commits all pending database operations. On databases that don't support transactions, this is a no-op.
MySQL supports transactions but this manager does not use them.
Implements isc::dhcp::LeaseMgr.
Definition at line 3185 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_COMMIT, and LOG_DEBUG.
MySqlLeaseContextPtr isc::dhcp::MySqlLeaseMgr::createContext | ( | ) | const |
Create a new context.
The database is opened with all the SQL commands pre-compiled.
isc::dhcp::NoDatabaseName | Mandatory database name not given. |
isc::db::DbOperationError | An operation on the open database has failed. |
Definition at line 1882 of file mysql_lease_mgr.cc.
References dbReconnect(), and isc::dhcp::LeaseMgr::getIOService().
Referenced by MySqlLeaseMgr().
|
static |
Attempts to reconnect the server to the lease DB backend manager.
This is a self-rescheduling function that attempts to reconnect to the server's lease DB backends after connectivity to one or more have been lost. Upon entry it will attempt to reconnect via LeaseMgrFactory::create. If this is successful, DHCP servicing is re-enabled and server returns to normal operation.
If reconnection fails and the maximum number of retries has not been exhausted, it will schedule a call to itself to occur at the configured retry interval. DHCP service remains disabled.
If the maximum number of retries has been exhausted an error is logged and the server shuts down.
This function is passed to the connection recovery mechanism. It will be invoked when a connection loss is detected.
db_reconnect_ctl | pointer to the ReconnectCtl containing the configured reconnect parameters. |
Definition at line 1812 of file mysql_lease_mgr.cc.
References isc::dhcp::LeaseMgrFactory::create(), isc::dhcp::LeaseMgrFactory::destroy(), isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_LEASE_DB_RECONNECT_ATTEMPT_FAILED, isc::dhcp::DHCPSRV_MYSQL_LEASE_DB_RECONNECT_ATTEMPT_SCHEDULE, isc::dhcp::DHCPSRV_MYSQL_LEASE_DB_RECONNECT_FAILED, isc::dhcp::CfgMgr::getCurrentCfg(), isc::dhcp::TimerMgr::instance(), isc::dhcp::CfgMgr::instance(), isc::db::DatabaseConnection::invokeDbFailedCallback(), isc::db::DatabaseConnection::invokeDbLostCallback(), isc::db::DatabaseConnection::invokeDbRecoveredCallback(), LOG_ERROR, LOG_INFO, and isc::asiolink::IntervalTimer::ONE_SHOT.
Referenced by createContext().
|
virtual |
Deletes all expired-reclaimed DHCPv4 leases.
secs | Number of seconds since expiration of leases before they can be removed. Leases which have expired later than this time will not be deleted. |
Implements isc::dhcp::LeaseMgr.
Definition at line 3018 of file mysql_lease_mgr.cc.
References DELETE_LEASE4_STATE_EXPIRED, isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_DELETE_EXPIRED_RECLAIMED4, and LOG_DEBUG.
|
virtual |
Deletes all expired-reclaimed DHCPv6 leases.
secs | Number of seconds since expiration of leases before they can be removed. Leases which have expired later than this time will not be deleted. |
Implements isc::dhcp::LeaseMgr.
Definition at line 3025 of file mysql_lease_mgr.cc.
References DELETE_LEASE6_STATE_EXPIRED, isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_DELETE_EXPIRED_RECLAIMED6, and LOG_DEBUG.
|
virtual |
Deletes an IPv4 lease.
lease | IPv4 lease being deleted. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2929 of file mysql_lease_mgr.cc.
References isc::db::MySqlConnection::convertToDatabaseTime(), DELETE_LEASE4, isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_DELETE_ADDR, isc_throw, LOG_DEBUG, isc::db::MLM_TRUE, isc::asiolink::IOAddress::toText(), and isc::asiolink::IOAddress::toUint32().
|
virtual |
Deletes an IPv6 lease.
lease | IPv6 lease being deleted. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2971 of file mysql_lease_mgr.cc.
References isc::db::MySqlConnection::convertToDatabaseTime(), DELETE_LEASE6, isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_DELETE_ADDR, isc_throw, LOG_DEBUG, and isc::asiolink::IOAddress::toText().
|
static |
Local version of getDBVersion() class method.
Definition at line 1906 of file mysql_lease_mgr.cc.
References isc::db::MYSQL_SCHEMA_VERSION_MAJOR, and isc::db::MYSQL_SCHEMA_VERSION_MINOR.
Referenced by isc::dhcp::Dhcpv6Srv::getVersion(), and isc::dhcp::Dhcpv4Srv::getVersion().
|
virtual |
Returns description of the backend.
This description may be multiline text that describes the backend.
Implements isc::dhcp::LeaseMgr.
Definition at line 3173 of file mysql_lease_mgr.cc.
|
virtual |
Returns a collection of expired DHCPv4 leases.
This method returns at most max_leases
expired leases. The leases returned haven't been reclaimed, i.e. the database query must exclude reclaimed leases from the results returned.
[out] | expired_leases | A container to which expired leases returned by the database backend are added. |
max_leases | A maximum number of leases to be returned. If this value is set to 0, all expired (but not reclaimed) leases are returned. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2719 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_EXPIRED4, GET_LEASE4_EXPIRE, and LOG_DEBUG.
|
virtual |
Returns a collection of expired DHCPv6 leases.
This method returns at most max_leases
expired leases. The leases returned haven't been reclaimed, i.e. the database query must exclude reclaimed leases from the results returned.
[out] | expired_leases | A container to which expired leases returned by the database backend are added. |
max_leases | A maximum number of leases to be returned. If this value is set to 0, all expired (but not reclaimed) leases are returned. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2727 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_EXPIRED6, GET_LEASE6_EXPIRE, and LOG_DEBUG.
|
virtual |
Returns an IPv4 lease for specified IPv4 address.
This method return a lease that is associated with a given address. For other query types (by hardware addr, by Client ID) there can be several leases in different subnets (e.g. for mobile clients that got address in different subnets). However, for a single address there can be only one lease, so this method returns a pointer to a single lease, not a container of leases.
addr | address of the searched lease |
isc::dhcp::DataTruncation | Data was truncated on retrieval to fit into the space allocated for the result. This indicates a programming error. |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2123 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_ADDR4, GET_LEASE4_ADDR, LOG_DEBUG, isc::db::MLM_TRUE, isc::asiolink::IOAddress::toText(), and isc::asiolink::IOAddress::toUint32().
|
virtual |
Returns existing IPv4 leases for specified hardware address.
Although in the usual case there will be only one lease, for mobile clients or clients with multiple static/fixed/reserved leases there can be more than one. Thus return type is a container, not a single pointer.
hwaddr | hardware address of the client |
isc::dhcp::DataTruncation | Data was truncated on retrieval to fit into the space allocated for the result. This indicates a programming error. |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2149 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_HWADDR, GET_LEASE4_HWADDR, isc::dhcp::HWAddr::hwaddr_, LOG_DEBUG, and isc::dhcp::HWAddr::toText().
|
virtual |
Returns existing IPv4 leases for specified hardware address and a subnet.
There can be at most one lease for a given HW address in a single pool, so this method with either return a single lease or NULL.
hwaddr | hardware address of the client |
subnet_id | identifier of the subnet that lease must belong to |
isc::dhcp::DataTruncation | Data was truncated on retrieval to fit into the space allocated for the result. This indicates a programming error. |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2190 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_SUBID_HWADDR, GET_LEASE4_HWADDR_SUBID, isc::dhcp::HWAddr::hwaddr_, LOG_DEBUG, isc::db::MLM_TRUE, and isc::dhcp::HWAddr::toText().
|
virtual |
Returns existing IPv4 leases for specified client-id.
Although in the usual case there will be only one lease, for mobile clients or clients with multiple static/fixed/reserved leases there can be more than one. Thus return type is a container, not a single pointer.
clientid | client identifier |
isc::dhcp::DataTruncation | Data was truncated on retrieval to fit into the space allocated for the result. This indicates a programming error. |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2236 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_CLIENTID, GET_LEASE4_CLIENTID, isc::dhcp::ClientId::getClientId(), LOG_DEBUG, and isc::dhcp::ClientId::toText().
|
virtual |
Returns existing IPv4 lease for specified client-id.
There can be at most one lease for a given HW address in a single pool, so this method with either return a single lease or NULL.
clientid | client identifier |
subnet_id | identifier of the subnet that lease must belong to |
isc::dhcp::DataTruncation | Data was truncated on retrieval to fit into the space allocated for the result. This indicates a programming error. |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2272 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_SUBID_CLIENTID, GET_LEASE4_CLIENTID_SUBID, isc::dhcp::ClientId::getClientId(), LOG_DEBUG, isc::db::MLM_TRUE, and isc::dhcp::ClientId::toText().
|
virtual |
Returns existing IPv6 lease for a given IPv6 address.
For a given address, we assume that there will be only one lease. The assumption here is that there will not be site or link-local addresses used, so there is no way of having address duplication.
type | specifies lease type: (NA, TA or PD) |
addr | address of the searched lease |
isc::BadValue | record retrieved from database had an invalid lease type field. |
isc::dhcp::DataTruncation | Data was truncated on retrieval to fit into the space allocated for the result. This indicates a programming error. |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2422 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_ADDR6, GET_LEASE6_ADDR, LOG_DEBUG, isc::db::MLM_TRUE, and isc::asiolink::IOAddress::toText().
|
virtual |
Returns all IPv4 leases for the particular subnet identifier.
subnet_id | subnet identifier. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2313 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_SUBID4, GET_LEASE4_SUBID, LOG_DEBUG, and isc::db::MLM_TRUE.
|
virtual |
Returns all IPv4 leases for the particular hostname.
hostname | hostname in lower case. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2339 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_HOSTNAME4, GET_LEASE4_HOSTNAME, and LOG_DEBUG.
|
virtual |
Returns all IPv4 leases.
Implements isc::dhcp::LeaseMgr.
Definition at line 2365 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET4, GET_LEASE4, and LOG_DEBUG.
|
virtual |
Returns range of IPv4 leases using paging.
This method implements paged browsing of the lease database. The first parameter specifies a page size. The second parameter is optional and specifies the starting address of the range. This address is excluded from the returned range. The IPv4 zero address (default) denotes that the first page should be returned. There is no guarantee about the order of returned leases.
The typical usage of this method is as follows:
lower_bound_address | IPv4 address used as lower bound for the returned range. |
page_size | maximum size of the page returned. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2380 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_PAGE4, GET_LEASE4_PAGE, isc_throw, isc::asiolink::IOAddress::isV4(), LOG_DEBUG, isc::db::MLM_TRUE, isc::dhcp::LeasePageSize::page_size_, isc::asiolink::IOAddress::toText(), and isc::asiolink::IOAddress::toUint32().
|
virtual |
Returns existing IPv6 leases for a given DUID+IA combination.
Although in the usual case there will be only one lease, for mobile clients or clients with multiple static/fixed/reserved leases there can be more than one. Thus return type is a container, not a single pointer.
type | specifies lease type: (NA, TA or PD) |
duid | client DUID |
iaid | IA identifier |
isc::BadValue | record retrieved from database had an invalid lease type field. |
isc::dhcp::DataTruncation | Data was truncated on retrieval to fit into the space allocated for the result. This indicates a programming error. |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2459 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_IAID_DUID, GET_LEASE6_DUID_IAID, isc::dhcp::DUID::getDuid(), LOG_DEBUG, isc::db::MLM_TRUE, and isc::dhcp::DUID::toText().
|
virtual |
Returns existing IPv6 lease for a given DUID+IA combination.
type | specifies lease type: (NA, TA or PD) |
duid | client DUID |
iaid | IA identifier |
subnet_id | subnet id of the subnet the lease belongs to |
isc::BadValue | record retrieved from database had an invalid lease type field. |
isc::dhcp::DataTruncation | Data was truncated on retrieval to fit into the space allocated for the result. This indicates a programming error. |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2522 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_IAID_SUBID_DUID, GET_LEASE6_DUID_IAID_SUBID, isc::dhcp::DUID::getDuid(), LOG_DEBUG, isc::db::MLM_TRUE, and isc::dhcp::DUID::toText().
|
virtual |
Returns all IPv6 leases for the particular subnet identifier.
subnet_id | subnet identifier. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2572 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_SUBID6, GET_LEASE6_SUBID, LOG_DEBUG, and isc::db::MLM_TRUE.
|
virtual |
Returns all IPv6 leases for the particular hostname.
hostname | hostname in lower case. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2642 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_HOSTNAME6, GET_LEASE6_HOSTNAME, and LOG_DEBUG.
|
virtual |
Returns all IPv6 leases.
Implements isc::dhcp::LeaseMgr.
Definition at line 2598 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET6, GET_LEASE6, and LOG_DEBUG.
|
virtual |
Returns all IPv6 leases for the DUID.
Implements isc::dhcp::LeaseMgr.
Definition at line 2613 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_DUID, GET_LEASE6_DUID, isc::dhcp::DUID::getDuid(), LOG_DEBUG, and isc::dhcp::DUID::toText().
|
virtual |
Returns range of IPv6 leases using paging.
This method implements paged browsing of the lease database. The first parameter specifies a page size. The second parameter is optional and specifies the starting address of the range. This address is excluded from the returned range. The IPv6 zero address (default) denotes that the first page should be returned. There is no guarantee about the order of returned leases.
The typical usage of this method is as follows:
lower_bound_address | IPv6 address used as lower bound for the returned range. |
page_size | maximum size of the page returned. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2668 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_PAGE6, GET_LEASE6_PAGE, isc_throw, isc::asiolink::IOAddress::isV6(), isc::asiolink::IOAddress::isV6Zero(), LOG_DEBUG, isc::db::MLM_TRUE, isc::dhcp::LeasePageSize::page_size_, and isc::asiolink::IOAddress::toText().
|
virtual |
Returns backend name.
Each backend have specific name.
Implements isc::dhcp::LeaseMgr.
Definition at line 3158 of file mysql_lease_mgr.cc.
|
inlinevirtual |
Return backend type.
Returns the type of the backend (e.g. "mysql", "memfile" etc.)
Implements isc::dhcp::LeaseMgr.
Definition at line 646 of file mysql_lease_mgr.h.
|
virtual |
Returns backend version.
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 3178 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_GET_VERSION, isc::db::MySqlConnection::getVersion(), and LOG_DEBUG.
Referenced by MySqlLeaseMgr().
|
virtual |
Rollback Transactions.
Rolls back all pending database operations. On databases that don't support transactions, this is a no-op.
MySQL supports transactions but this manager does not use them.
Implements isc::dhcp::LeaseMgr.
Definition at line 3190 of file mysql_lease_mgr.cc.
References isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_ROLLBACK, and LOG_DEBUG.
|
virtual |
Creates and runs the IPv4 lease stats query.
It creates an instance of a MySqlLeaseStatsQuery4 and then invokes its start method, which fetches its statistical data result set by executing the ALL_LEASE_STATS4 query. The query object is then returned.
Reimplemented from isc::dhcp::LeaseMgr.
Definition at line 3060 of file mysql_lease_mgr.cc.
References ALL_LEASE4_STATS.
|
virtual |
Creates and runs the IPv6 lease stats query.
It creates an instance of a MySqlLeaseStatsQuery6 and then invokes its start method, which fetches its statistical data result set by executing the ALL_LEASE_STATS6 query. The query object is then returned.
Reimplemented from isc::dhcp::LeaseMgr.
Definition at line 3103 of file mysql_lease_mgr.cc.
References ALL_LEASE6_STATS.
|
virtual |
Creates and runs the IPv4 lease stats query for a single subnet.
It creates an instance of a MySqlLeaseStatsQuery4 for a single subnet query and then invokes its start method in which the query constructs its statistical data result set. The query object is then returned.
subnet_id | id of the subnet for which stats are desired |
Reimplemented from isc::dhcp::LeaseMgr.
Definition at line 3073 of file mysql_lease_mgr.cc.
References SUBNET_LEASE4_STATS.
|
virtual |
Creates and runs the IPv6 lease stats query for a single subnet.
It creates an instance of a MySqlLeaseStatsQuery6 for a single subnet query and then invokes its start method in which the query constructs its statistical data result set. The query object is then returned.
subnet_id | id of the subnet for which stats are desired |
Reimplemented from isc::dhcp::LeaseMgr.
Definition at line 3116 of file mysql_lease_mgr.cc.
References SUBNET_LEASE6_STATS.
|
virtual |
Creates and runs the IPv4 lease stats query for a single subnet.
It creates an instance of a MySqlLeaseStatsQuery4 for a subnet range query and then invokes its start method in which the query constructs its statistical data result set. The query object is then returned.
first_subnet_id | first subnet in the range of subnets |
last_subnet_id | last subnet in the range of subnets |
Reimplemented from isc::dhcp::LeaseMgr.
Definition at line 3087 of file mysql_lease_mgr.cc.
References SUBNET_RANGE_LEASE4_STATS.
|
virtual |
Creates and runs the IPv6 lease stats query for a single subnet.
It creates an instance of a MySqlLeaseStatsQuery6 for a subnet range query and then invokes its start method in which the query constructs its statistical data result set. The query object is then returned.
first_subnet_id | first subnet in the range of subnets |
last_subnet_id | last subnet in the range of subnets |
Reimplemented from isc::dhcp::LeaseMgr.
Definition at line 3130 of file mysql_lease_mgr.cc.
References SUBNET_RANGE_LEASE6_STATS.
|
virtual |
Updates IPv4 lease.
Updates the record of the lease in the database (as identified by the address) with the data in the passed lease object.
lease4 | The lease to be updated. |
isc::dhcp::NoSuchLease | Attempt to update a lease that did not exist. |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2813 of file mysql_lease_mgr.cc.
References isc::db::MySqlConnection::convertToDatabaseTime(), isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_UPDATE_ADDR4, LOG_DEBUG, isc::db::MLM_TRUE, and UPDATE_LEASE4.
|
virtual |
Updates IPv6 lease.
Updates the record of the lease in the database (as identified by the address) with the data in the passed lease object.
lease6 | The lease to be updated. |
isc::dhcp::NoSuchLease | Attempt to update a lease that did not exist. |
isc::db::DbOperationError | An operation on the open database has failed. |
Implements isc::dhcp::LeaseMgr.
Definition at line 2855 of file mysql_lease_mgr.cc.
References isc::db::MySqlConnection::convertToDatabaseTime(), isc::dhcp::DHCPSRV_DBG_TRACE_DETAIL, isc::dhcp::dhcpsrv_logger, isc::dhcp::DHCPSRV_MYSQL_UPDATE_ADDR6, LOG_DEBUG, and UPDATE_LEASE6.
|
virtual |
Removes specified IPv4 leases.
This rather dangerous method is able to remove all leases from specified subnet.
subnet_id | identifier of the subnet |
Implements isc::dhcp::LeaseMgr.
Definition at line 3146 of file mysql_lease_mgr.cc.
References isc_throw.
|
virtual |
Removed specified IPv6 leases.
This rather dangerous method is able to remove all leases from specified subnet.
subnet_id | identifier of the subnet |
Implements isc::dhcp::LeaseMgr.
Definition at line 3151 of file mysql_lease_mgr.cc.
References isc_throw.