2012-10-16 16:39:32 +01:00
|
|
|
// Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
// AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
// PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
2012-10-29 13:43:31 +00:00
|
|
|
#ifndef MYSQL_LEASE_MGR_H
|
|
|
|
#define MYSQL_LEASE_MGR_H
|
2012-10-16 16:39:32 +01:00
|
|
|
|
2012-11-16 11:19:19 +00:00
|
|
|
#include <dhcpsrv/lease_mgr.h>
|
|
|
|
|
2012-11-06 12:58:10 +00:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
2012-11-16 14:15:45 +00:00
|
|
|
#include <mysql/mysql.h>
|
2012-11-16 11:19:19 +00:00
|
|
|
|
|
|
|
#include <time.h>
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
namespace isc {
|
|
|
|
namespace dhcp {
|
|
|
|
|
2012-10-24 21:18:13 +01:00
|
|
|
// Define the current database schema values
|
|
|
|
|
|
|
|
const uint32_t CURRENT_VERSION_VERSION = 0;
|
2012-11-23 18:23:21 +00:00
|
|
|
const uint32_t CURRENT_VERSION_MINOR = 2;
|
2012-10-24 21:18:13 +01:00
|
|
|
|
2012-11-06 12:58:10 +00:00
|
|
|
|
2012-11-21 12:44:18 +00:00
|
|
|
// Forward declaration of the Lease exchange objects. This class is defined
|
2012-11-06 12:58:10 +00:00
|
|
|
// in the .cc file.
|
2012-11-21 12:44:18 +00:00
|
|
|
class MySqlLease4Exchange;
|
2012-11-06 12:58:10 +00:00
|
|
|
class MySqlLease6Exchange;
|
|
|
|
|
|
|
|
|
2012-10-24 19:18:33 +01:00
|
|
|
/// @brief MySQL Lease Manager
|
2012-10-16 16:39:32 +01:00
|
|
|
///
|
2012-11-26 19:17:27 +00:00
|
|
|
/// This class provides the \ref 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.
|
|
|
|
|
2012-10-16 16:39:32 +01:00
|
|
|
class MySqlLeaseMgr : public LeaseMgr {
|
|
|
|
public:
|
|
|
|
/// @brief Constructor
|
|
|
|
///
|
|
|
|
/// Uses the following keywords in the parameters passed to it to
|
|
|
|
/// connect to the database:
|
2012-10-24 19:18:33 +01:00
|
|
|
/// - name - Name of the database to which to connect (mandatory)
|
|
|
|
/// - host - Host to which to connect (optional, defaults to "localhost")
|
|
|
|
/// - user - Username under which to connect (optional)
|
|
|
|
/// - password - Password for "user" on the database (optional)
|
2012-10-16 16:39:32 +01:00
|
|
|
///
|
|
|
|
/// If the database is successfully opened, the version number in the
|
|
|
|
/// schema_version table will be checked against hard-coded value in
|
|
|
|
/// the implementation file.
|
|
|
|
///
|
|
|
|
/// Finally, all the SQL commands are pre-compiled.
|
|
|
|
///
|
|
|
|
/// @param parameters A data structure relating keywords and values
|
|
|
|
/// concerned with the database.
|
2012-10-24 19:18:33 +01:00
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::dhcp::NoDatabaseName Mandatory database name not given
|
|
|
|
/// @throw isc::dhcp::DbOpenError Error opening the database
|
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-10-16 16:39:32 +01:00
|
|
|
MySqlLeaseMgr(const ParameterMap& parameters);
|
|
|
|
|
|
|
|
/// @brief Destructor (closes database)
|
|
|
|
virtual ~MySqlLeaseMgr();
|
|
|
|
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @brief Adds an IPv4 lease
|
2012-10-16 16:39:32 +01:00
|
|
|
///
|
|
|
|
/// @param lease lease to be added
|
2012-10-20 22:52:25 +01:00
|
|
|
///
|
|
|
|
/// @result true if the lease was added, false if not (because a lease
|
|
|
|
/// with the same address was already there).
|
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual bool addLease(const Lease4Ptr& lease);
|
2012-10-16 16:39:32 +01:00
|
|
|
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @brief Adds an IPv6 lease
|
2012-10-16 16:39:32 +01:00
|
|
|
///
|
|
|
|
/// @param lease lease to be added
|
2012-10-20 22:52:25 +01:00
|
|
|
///
|
|
|
|
/// @result true if the lease was added, false if not (because a lease
|
|
|
|
/// with the same address was already there).
|
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual bool addLease(const Lease6Ptr& lease);
|
2012-10-16 16:39:32 +01:00
|
|
|
|
2012-10-22 10:49:51 +01:00
|
|
|
/// @brief Return IPv4 lease for specified IPv4 address and subnet_id
|
2012-10-16 16:39:32 +01:00
|
|
|
///
|
|
|
|
/// This method is used to get a lease for specific subnet_id. There can be
|
|
|
|
/// at most one lease for any given subnet, so this method returns a single
|
|
|
|
/// pointer.
|
|
|
|
///
|
2012-10-22 10:49:51 +01:00
|
|
|
/// @param addr address of the sought lease
|
2012-10-16 16:39:32 +01:00
|
|
|
/// @param subnet_id ID of the subnet the lease must belong to
|
|
|
|
///
|
|
|
|
/// @return smart pointer to the lease (or NULL if a lease is not found)
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual Lease4Ptr getLease4(const isc::asiolink::IOAddress& addr,
|
2012-10-17 18:37:22 +01:00
|
|
|
SubnetID subnet_id) const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
/// @brief Returns an IPv4 lease for specified IPv4 address
|
|
|
|
///
|
|
|
|
/// This method return a lease that is associated with a given address.
|
2012-10-24 14:27:43 +01:00
|
|
|
/// For other query types (by hardware addr, by DUID) there can be
|
2012-10-16 16:39:32 +01:00
|
|
|
/// 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.
|
|
|
|
///
|
|
|
|
/// @param addr address of the searched lease
|
|
|
|
///
|
|
|
|
/// @return smart pointer to the lease (or NULL if a lease is not found)
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual Lease4Ptr getLease4(const isc::asiolink::IOAddress& addr) const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
2012-10-22 16:07:34 +01:00
|
|
|
|
2012-10-16 16:39:32 +01:00
|
|
|
/// @brief 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.
|
|
|
|
///
|
|
|
|
/// @param hwaddr hardware address of the client
|
|
|
|
///
|
|
|
|
/// @return lease collection
|
2012-10-17 18:37:22 +01:00
|
|
|
virtual Lease4Collection getLease4(const HWAddr& hwaddr) const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
/// @brief 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.
|
|
|
|
///
|
|
|
|
/// @param hwaddr hardware address of the client
|
|
|
|
/// @param subnet_id identifier of the subnet that lease must belong to
|
|
|
|
///
|
|
|
|
/// @return a pointer to the lease (or NULL if a lease is not found)
|
|
|
|
virtual Lease4Ptr getLease4(const HWAddr& hwaddr,
|
2012-10-17 18:37:22 +01:00
|
|
|
SubnetID subnet_id) const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
/// @brief Returns existing IPv4 lease 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.
|
|
|
|
///
|
|
|
|
/// @param clientid client identifier
|
|
|
|
///
|
|
|
|
/// @return lease collection
|
2012-10-17 18:37:22 +01:00
|
|
|
virtual Lease4Collection getLease4(const ClientId& clientid) const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
/// @brief 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.
|
|
|
|
///
|
|
|
|
/// @param clientid client identifier
|
|
|
|
/// @param subnet_id identifier of the subnet that lease must belong to
|
|
|
|
///
|
|
|
|
/// @return a pointer to the lease (or NULL if a lease is not found)
|
|
|
|
virtual Lease4Ptr getLease4(const ClientId& clientid,
|
2012-10-17 18:37:22 +01:00
|
|
|
SubnetID subnet_id) const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
/// @brief Returns existing IPv6 lease for a given IPv6 address.
|
|
|
|
///
|
|
|
|
/// For a given address, we assume that there will be only one lease.
|
|
|
|
/// The assumtion here is that there will not be site or link-local
|
|
|
|
/// addresses used, so there is no way of having address duplication.
|
|
|
|
///
|
|
|
|
/// @param addr address of the searched lease
|
|
|
|
///
|
|
|
|
/// @return smart pointer to the lease (or NULL if a lease is not found)
|
2012-10-24 19:18:33 +01:00
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::BadValue record retrieved from database had an invalid
|
|
|
|
/// lease type field.
|
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual Lease6Ptr getLease6(const isc::asiolink::IOAddress& addr) const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
/// @brief 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.
|
|
|
|
///
|
|
|
|
/// @param duid client DUID
|
|
|
|
/// @param iaid IA identifier
|
|
|
|
///
|
|
|
|
/// @return smart pointer to the lease (or NULL if a lease is not found)
|
|
|
|
virtual Lease6Collection getLease6(const DUID& duid,
|
2012-10-17 18:37:22 +01:00
|
|
|
uint32_t iaid) const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
/// @brief Returns existing IPv6 lease for a given DUID+IA combination
|
|
|
|
///
|
|
|
|
/// @param duid client DUID
|
|
|
|
/// @param iaid IA identifier
|
|
|
|
/// @param subnet_id subnet id of the subnet the lease belongs to
|
|
|
|
///
|
|
|
|
/// @return smart pointer to the lease (or NULL if a lease is not found)
|
|
|
|
virtual Lease6Ptr getLease6(const DUID& duid, uint32_t iaid,
|
2012-10-17 18:37:22 +01:00
|
|
|
SubnetID subnet_id) const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
/// @brief Updates IPv4 lease.
|
|
|
|
///
|
2012-11-23 18:23:21 +00:00
|
|
|
/// Updates the record of the lease in the database (as identified by the
|
|
|
|
/// address) with the data in the passed lease object.
|
|
|
|
///
|
2012-10-16 16:39:32 +01:00
|
|
|
/// @param lease4 The lease to be updated.
|
|
|
|
///
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @throw isc::dhcp::NoSuchLease Attempt to update a lease that did not
|
|
|
|
/// exist.
|
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual void updateLease4(const Lease4Ptr& lease4);
|
2012-10-16 16:39:32 +01:00
|
|
|
|
2012-11-08 13:14:19 +00:00
|
|
|
/// @brief Updates IPv6 lease.
|
2012-10-16 16:39:32 +01:00
|
|
|
///
|
2012-11-23 18:23:21 +00:00
|
|
|
/// Updates the record of the lease in the database (as identified by the
|
|
|
|
/// address) with the data in the passed lease object.
|
|
|
|
///
|
2012-11-08 13:14:19 +00:00
|
|
|
/// @param lease6 The lease to be updated.
|
2012-10-16 16:39:32 +01:00
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::dhcp::NoSuchLease Attempt to update a lease that did not
|
|
|
|
/// exist.
|
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual void updateLease6(const Lease6Ptr& lease6);
|
2012-10-16 16:39:32 +01:00
|
|
|
|
2012-11-08 13:14:19 +00:00
|
|
|
/// @brief Deletes an IPv4 lease.
|
2012-10-16 16:39:32 +01:00
|
|
|
///
|
2012-11-21 12:44:18 +00:00
|
|
|
/// @todo Merge with deleteLease6: it is possible to determine whether
|
|
|
|
/// an address is V4 or V6 from the IOAddress argument, so there
|
|
|
|
/// is no need for separate V4 or V6 methods.
|
|
|
|
///
|
2012-10-16 16:39:32 +01:00
|
|
|
/// @param addr IPv4 address of the lease to be deleted.
|
|
|
|
///
|
|
|
|
/// @return true if deletion was successful, false if no such lease exists
|
2012-11-23 18:23:21 +00:00
|
|
|
///
|
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual bool deleteLease4(const isc::asiolink::IOAddress& addr);
|
2012-10-16 16:39:32 +01:00
|
|
|
|
2012-11-08 13:14:19 +00:00
|
|
|
/// @brief Deletes an IPv6 lease.
|
2012-10-16 16:39:32 +01:00
|
|
|
///
|
2012-11-21 12:44:18 +00:00
|
|
|
/// @todo Merge with deleteLease4: it is possible to determine whether
|
|
|
|
/// an address is V4 or V6 from the IOAddress argument, so there
|
|
|
|
/// is no need for separate V4 or V6 methods.
|
|
|
|
///
|
2012-11-08 13:14:19 +00:00
|
|
|
/// @param addr IPv6 address of the lease to be deleted.
|
2012-10-16 16:39:32 +01:00
|
|
|
///
|
|
|
|
/// @return true if deletion was successful, false if no such lease exists
|
2012-10-24 19:18:33 +01:00
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual bool deleteLease6(const isc::asiolink::IOAddress& addr);
|
2012-10-16 16:39:32 +01:00
|
|
|
|
2012-11-13 12:14:55 +00:00
|
|
|
/// @brief Return backend type
|
|
|
|
///
|
|
|
|
/// Returns the type of the backend (e.g. "mysql", "memfile" etc.)
|
|
|
|
///
|
|
|
|
/// @return Type of the backend.
|
|
|
|
virtual std::string getType() const {
|
|
|
|
return (std::string("mysql"));
|
|
|
|
}
|
|
|
|
|
2012-10-16 16:39:32 +01:00
|
|
|
/// @brief Returns backend name.
|
|
|
|
///
|
|
|
|
/// Each backend have specific name, e.g. "mysql" or "sqlite".
|
2012-11-13 12:14:55 +00:00
|
|
|
///
|
|
|
|
/// @return Name of the backend.
|
2012-10-17 18:37:22 +01:00
|
|
|
virtual std::string getName() const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
/// @brief Returns description of the backend.
|
|
|
|
///
|
|
|
|
/// This description may be multiline text that describes the backend.
|
2012-11-13 12:14:55 +00:00
|
|
|
///
|
|
|
|
/// @return Description of the backend.
|
2012-10-17 18:37:22 +01:00
|
|
|
virtual std::string getDescription() const;
|
2012-10-16 16:39:32 +01:00
|
|
|
|
|
|
|
/// @brief Returns backend version.
|
|
|
|
///
|
|
|
|
/// @return Version number as a pair of unsigned integers. "first" is the
|
|
|
|
/// major version number, "second" the minor number.
|
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-10-16 16:39:32 +01:00
|
|
|
virtual std::pair<uint32_t, uint32_t> getVersion() const;
|
|
|
|
|
2012-10-20 22:52:25 +01:00
|
|
|
/// @brief Commit Transactions
|
|
|
|
///
|
|
|
|
/// Commits all pending database operations. On databases that don't
|
|
|
|
/// support transactions, this is a no-op.
|
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw DbOperationError Iif the commit failed.
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual void commit();
|
|
|
|
|
|
|
|
/// @brief Rollback Transactions
|
|
|
|
///
|
|
|
|
/// Rolls back all pending database operations. On databases that don't
|
|
|
|
/// support transactions, this is a no-op.
|
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw DbOperationError If the rollback failed.
|
2012-10-20 22:52:25 +01:00
|
|
|
virtual void rollback();
|
|
|
|
|
|
|
|
///@{
|
|
|
|
/// The following methods are used to convert between times and time
|
2012-10-22 10:49:51 +01:00
|
|
|
/// intervals stored in the Lease object, and the times stored in the
|
|
|
|
/// database. The reason for the difference is because in the DHCP server,
|
|
|
|
/// the cltt (Client Time Since Last Transmission) is the natural data; in
|
|
|
|
/// the lease file - which may be read by the user - it is the expiry time
|
|
|
|
/// of the lease.
|
2012-10-20 22:52:25 +01:00
|
|
|
|
|
|
|
/// @brief Convert Lease Time to Database Times
|
|
|
|
///
|
2012-10-24 15:36:54 +01:00
|
|
|
/// Within the DHCP servers, times are stored as client last transmit time
|
|
|
|
/// and valid lifetime. In the database, the information is stored as
|
|
|
|
/// valid lifetime and "expire" (time of expiry of the lease). They are
|
|
|
|
/// related by the equation:
|
2012-10-20 22:52:25 +01:00
|
|
|
///
|
2012-10-24 15:36:54 +01:00
|
|
|
/// - expire = client last transmit time + valid lifetime
|
2012-10-20 22:52:25 +01:00
|
|
|
///
|
|
|
|
/// This method converts from the times in the lease object into times
|
|
|
|
/// able to be added to the database.
|
|
|
|
///
|
|
|
|
/// @param cltt Client last transmit time
|
2012-10-24 15:36:54 +01:00
|
|
|
/// @param valid_lifetime Valid lifetime
|
2012-10-20 22:52:25 +01:00
|
|
|
/// @param expire Reference to MYSQL_TIME object where the expiry time of
|
|
|
|
/// the lease will be put.
|
|
|
|
static
|
2012-10-24 15:36:54 +01:00
|
|
|
void convertToDatabaseTime(time_t cltt, uint32_t valid_lifetime,
|
|
|
|
MYSQL_TIME& expire);
|
2012-10-20 22:52:25 +01:00
|
|
|
|
|
|
|
/// @brief Convert Database Time to Lease Times
|
|
|
|
///
|
2012-10-24 15:36:54 +01:00
|
|
|
/// Within the database, time is stored as "expire" (time of expiry of the
|
|
|
|
/// lease) and valid lifetime. In the DHCP server, the information is
|
|
|
|
/// stored client last transmit time and valid lifetime. These are related
|
|
|
|
/// by the equation:
|
2012-10-20 22:52:25 +01:00
|
|
|
///
|
2012-10-24 15:36:54 +01:00
|
|
|
/// - client last transmit time = expire - valid_lifetime
|
2012-10-20 22:52:25 +01:00
|
|
|
///
|
|
|
|
/// This method converts from the times in the database into times
|
|
|
|
/// able to be inserted into the lease object.
|
|
|
|
///
|
|
|
|
/// @param expire Reference to MYSQL_TIME object from where the expiry
|
|
|
|
/// time of the lease is taken.
|
2012-11-12 14:57:03 +00:00
|
|
|
/// @param valid_lifetime lifetime of the lease.
|
2012-10-20 22:52:25 +01:00
|
|
|
/// @param cltt Reference to location where client last transmit time
|
|
|
|
/// is put.
|
|
|
|
static
|
2012-10-24 15:36:54 +01:00
|
|
|
void convertFromDatabaseTime(const MYSQL_TIME& expire,
|
|
|
|
uint32_t valid_lifetime, time_t& cltt);
|
2012-10-20 22:52:25 +01:00
|
|
|
///@}
|
|
|
|
|
2012-10-22 10:49:51 +01:00
|
|
|
/// @brief Statement Tags
|
2012-10-18 11:33:51 +01:00
|
|
|
///
|
2012-10-22 10:49:51 +01:00
|
|
|
/// The contents of the enum are indexes into the list of SQL statements
|
2012-10-18 11:33:51 +01:00
|
|
|
enum StatementIndex {
|
2012-11-21 12:44:18 +00:00
|
|
|
DELETE_LEASE4, // Delete from lease4 by address
|
2012-11-03 18:26:57 +00:00
|
|
|
DELETE_LEASE6, // Delete from lease6 by address
|
2012-11-21 12:44:18 +00:00
|
|
|
GET_LEASE4_ADDR, // Get lease4 by address
|
2012-11-23 12:47:40 +00:00
|
|
|
GET_LEASE4_CLIENTID, // Get lease4 by Client ID
|
2012-11-23 13:48:42 +00:00
|
|
|
GET_LEASE4_CLIENTID_SUBID, // Get lease4 by Client ID
|
2012-11-23 12:23:17 +00:00
|
|
|
GET_LEASE4_HWADDR, // Get lease4 by HW address
|
|
|
|
GET_LEASE4_HWADDR_SUBID, // Get lease4 by HW address & subnet ID
|
2012-11-03 18:26:57 +00:00
|
|
|
GET_LEASE6_ADDR, // Get lease6 by address
|
|
|
|
GET_LEASE6_DUID_IAID, // Get lease6 by DUID and IAID
|
2012-11-04 19:57:05 +00:00
|
|
|
GET_LEASE6_DUID_IAID_SUBID, // Get lease6 by DUID, IAID and Subnet ID
|
2012-11-03 18:26:57 +00:00
|
|
|
GET_VERSION, // Obtain version number
|
2012-11-21 12:44:18 +00:00
|
|
|
INSERT_LEASE4, // Add entry to lease4 table
|
2012-11-03 18:26:57 +00:00
|
|
|
INSERT_LEASE6, // Add entry to lease6 table
|
2012-11-23 14:08:00 +00:00
|
|
|
UPDATE_LEASE4, // Update a Lease4 entry
|
2012-11-03 18:26:57 +00:00
|
|
|
UPDATE_LEASE6, // Update a Lease6 entry
|
|
|
|
NUM_STATEMENTS // Number of statements
|
2012-10-18 11:33:51 +01:00
|
|
|
};
|
|
|
|
|
2012-11-04 20:20:21 +00:00
|
|
|
private:
|
2012-10-18 11:33:51 +01:00
|
|
|
/// @brief Prepare Single Statement
|
|
|
|
///
|
|
|
|
/// Creates a prepared statement from the text given and adds it to the
|
|
|
|
/// statements_ vector at the given index.
|
|
|
|
///
|
|
|
|
/// @param index Index into the statements_ vector into which the text
|
|
|
|
/// should be placed. The vector must be big enough for the index
|
|
|
|
/// to be valid, else an exception will be thrown.
|
|
|
|
/// @param text Text of the SQL statement to be prepared.
|
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
|
|
|
/// @throw isc::InvalidParameter 'index' is not valid for the vector.
|
2012-10-18 11:33:51 +01:00
|
|
|
void prepareStatement(StatementIndex index, const char* text);
|
|
|
|
|
|
|
|
/// @brief Prepare statements
|
|
|
|
///
|
|
|
|
/// Creates the prepared statements for all of the SQL statements used
|
|
|
|
/// by the MySQL backend.
|
2012-10-24 19:18:33 +01:00
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
|
|
|
/// @throw isc::InvalidParameter 'index' is not valid for the vector. This
|
|
|
|
/// represents an internal error within the code.
|
2012-10-18 11:33:51 +01:00
|
|
|
void prepareStatements();
|
|
|
|
|
2012-10-17 18:37:22 +01:00
|
|
|
/// @brief Open Database
|
|
|
|
///
|
|
|
|
/// Opens the database using the information supplied in the parameters
|
|
|
|
/// passed to the constructor.
|
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw NoDatabaseName Mandatory database name not given
|
|
|
|
/// @throw DbOpenError Error opening the database
|
2012-10-17 18:37:22 +01:00
|
|
|
void openDatabase();
|
|
|
|
|
2012-11-21 12:44:18 +00:00
|
|
|
/// @brief Add Lease Common Code
|
|
|
|
///
|
|
|
|
/// This method performs the common actions for both flavours of the
|
2012-11-23 18:23:21 +00:00
|
|
|
/// addLease method. It binds the contents of the lease object to
|
|
|
|
/// the prepated statement and adds it to the database.
|
2012-11-21 12:44:18 +00:00
|
|
|
///
|
|
|
|
/// @param stindex Index of statemnent being executed
|
|
|
|
/// @param bind MYSQL_BIND array that has been created for the type
|
|
|
|
/// of lease in question.
|
|
|
|
///
|
|
|
|
/// @return true if the lease was added, false if it was not added because
|
|
|
|
/// a lease with that address already exists in the database.
|
|
|
|
///
|
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-11-26 19:17:27 +00:00
|
|
|
bool addLeaseCommon(StatementIndex stindex, std::vector<MYSQL_BIND>& bind);
|
2012-11-21 12:44:18 +00:00
|
|
|
|
2012-11-23 12:05:55 +00:00
|
|
|
/// @brief Get Lease Collection Common Code
|
|
|
|
///
|
|
|
|
/// This method performs the common actions for obtaining multiple leases
|
|
|
|
/// from the database.
|
|
|
|
///
|
|
|
|
/// @param stindex Index of statement being executed
|
2012-11-26 19:17:27 +00:00
|
|
|
/// @param bind MYSQL_BIND array for input parameters
|
2012-11-23 12:05:55 +00:00
|
|
|
/// @param exchange Exchange object to use
|
|
|
|
/// @param lease LeaseCollection object returned. Note that any data in
|
|
|
|
/// the collection is cleared before new data is added.
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @param single If true, only a single data item is to be retrieved.
|
|
|
|
/// If more than one is present, a MultipleRecords exception will
|
|
|
|
/// be thrown.
|
|
|
|
///
|
|
|
|
/// @throw isc::dhcp::BadValue Data retrieved from the database was invalid.
|
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
|
|
|
/// @throw isc::dhcp::MultipleRecords Multiple records were retrieved
|
|
|
|
/// from the database where only one was expected.
|
2012-11-23 12:05:55 +00:00
|
|
|
template <typename Exchange, typename LeaseCollection>
|
2012-11-26 19:17:27 +00:00
|
|
|
void getLeaseCollection(StatementIndex stindex, MYSQL_BIND* bind,
|
2012-11-23 18:23:21 +00:00
|
|
|
Exchange& exchange, LeaseCollection& result,
|
|
|
|
bool single = false) const;
|
2012-11-23 12:05:55 +00:00
|
|
|
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @brief Get Lease Collection
|
2012-11-06 12:58:10 +00:00
|
|
|
///
|
2012-11-23 18:23:21 +00:00
|
|
|
/// Gets a collection of Lease4 objects. This is just an interface to
|
|
|
|
/// the get lease collection common code.
|
2012-11-06 12:58:10 +00:00
|
|
|
///
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @param stindex Index of statement being executed
|
2012-11-26 19:17:27 +00:00
|
|
|
/// @param bind MYSQL_BIND array for input parameters
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @param lease LeaseCollection object returned. Note that any data in
|
|
|
|
/// the collection is cleared before new data is added.
|
|
|
|
///
|
|
|
|
/// @throw isc::dhcp::BadValue Data retrieved from the database was invalid.
|
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
|
|
|
/// @throw isc::dhcp::MultipleRecords Multiple records were retrieved
|
|
|
|
/// from the database where only one was expected.
|
2012-11-26 19:17:27 +00:00
|
|
|
void getLeaseCollection(StatementIndex stindex, MYSQL_BIND* bind,
|
2012-11-23 18:23:21 +00:00
|
|
|
Lease4Collection& result) const {
|
2012-11-26 19:17:27 +00:00
|
|
|
getLeaseCollection(stindex, bind, exchange4_, result);
|
2012-11-23 18:23:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// @brief Get Lease Collection
|
|
|
|
///
|
|
|
|
/// Gets a collection of Lease6 objects. This is just an interface to
|
|
|
|
/// the get lease collection common code.
|
|
|
|
///
|
|
|
|
/// @param stindex Index of statement being executed
|
2012-11-26 19:17:27 +00:00
|
|
|
/// @param bind MYSQL_BIND array for input parameters
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @param lease LeaseCollection object returned. Note that any data in
|
|
|
|
/// the collection is cleared before new data is added.
|
|
|
|
///
|
|
|
|
/// @throw isc::dhcp::BadValue Data retrieved from the database was invalid.
|
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
|
|
|
/// @throw isc::dhcp::MultipleRecords Multiple records were retrieved
|
|
|
|
/// from the database where only one was expected.
|
2012-11-26 19:17:27 +00:00
|
|
|
void getLeaseCollection(StatementIndex stindex, MYSQL_BIND* bind,
|
2012-11-23 18:23:21 +00:00
|
|
|
Lease6Collection& result) const {
|
2012-11-26 19:17:27 +00:00
|
|
|
getLeaseCollection(stindex, bind, exchange6_, result);
|
2012-11-23 18:23:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// @brief Get Lease6 Common Code
|
|
|
|
///
|
|
|
|
/// This method performs the common actions for the various getLease4()
|
|
|
|
/// methods. It acts as an interface to the getLeaseCollection() method,
|
|
|
|
/// but retrieveing only a single lease.
|
|
|
|
///
|
|
|
|
/// @param stindex Index of statement being executed
|
2012-11-26 19:17:27 +00:00
|
|
|
/// @param bind MYSQL_BIND array for input parameters
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @param lease Lease4 object returned
|
2012-11-26 19:17:27 +00:00
|
|
|
void getLease(StatementIndex stindex, MYSQL_BIND* bind,
|
2012-11-23 18:23:21 +00:00
|
|
|
Lease4Ptr& result) const;
|
|
|
|
|
|
|
|
/// @brief Get Lease4 Common Code
|
|
|
|
///
|
|
|
|
/// This method performs the common actions for the various getLease4()
|
|
|
|
/// methods. It acts as an interface to the getLeaseCollection() method,
|
|
|
|
/// but retrieveing only a single lease.
|
|
|
|
///
|
|
|
|
/// @param stindex Index of statement being executed
|
2012-11-26 19:17:27 +00:00
|
|
|
/// @param bind MYSQL_BIND array for input parameters
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @param lease Lease6 object returned
|
2012-11-26 19:17:27 +00:00
|
|
|
void getLease(StatementIndex stindex, MYSQL_BIND* bind,
|
2012-11-23 18:23:21 +00:00
|
|
|
Lease6Ptr& result) const;
|
|
|
|
|
|
|
|
/// @brief Update lease common code
|
|
|
|
///
|
|
|
|
/// Holds the common code for updating a lease. It binds the parameters
|
|
|
|
/// to the prepared statement, executes it, then checks how many rows
|
|
|
|
/// were affected.
|
2012-11-06 12:58:10 +00:00
|
|
|
///
|
|
|
|
/// @param stindex Index of prepared statement to be executed
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @param bind Array of MYSQL_BIND objects representing the parameters.
|
2012-11-06 12:58:10 +00:00
|
|
|
/// (Note that the number is determined by the number of parameters
|
|
|
|
/// in the statement.)
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @param lease Pointer to the lease object whose record is being updated.
|
2012-11-06 12:58:10 +00:00
|
|
|
///
|
2012-11-23 18:23:21 +00:00
|
|
|
/// @throw NoSuchLease Could not update a lease because no lease matches
|
|
|
|
/// the address given.
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-11-23 18:23:21 +00:00
|
|
|
template <typename LeasePtr>
|
2012-11-26 19:17:27 +00:00
|
|
|
void updateLeaseCommon(StatementIndex stindex, MYSQL_BIND* bind,
|
|
|
|
const LeasePtr& lease);
|
2012-11-23 18:23:21 +00:00
|
|
|
|
|
|
|
/// @brief Delete lease common code
|
|
|
|
///
|
|
|
|
/// Holds the common code for deleting a lease. It binds the parameters
|
|
|
|
/// to the prepared statement, executes the statement and checks to
|
|
|
|
/// see how many rows were deleted.
|
|
|
|
///
|
|
|
|
/// @param stindex Index of prepared statement to be executed
|
|
|
|
/// @param bind Array of MYSQL_BIND objects representing the parameters.
|
|
|
|
/// (Note that the number is determined by the number of parameters
|
|
|
|
/// in the statement.)
|
|
|
|
///
|
|
|
|
/// @return true if one or more rows were deleted, false if none were
|
|
|
|
/// deleted.
|
|
|
|
///
|
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
|
|
|
bool deleteLease(StatementIndex stindex, MYSQL_BIND* bind);
|
2012-11-06 12:58:10 +00:00
|
|
|
|
2012-10-20 22:52:25 +01:00
|
|
|
/// @brief Check Error and Throw Exception
|
|
|
|
///
|
|
|
|
/// Virtually all MySQL functions return a status which, if non-zero,
|
|
|
|
/// indicates an error. This inline function conceals a lot of error
|
|
|
|
/// checking/exception-throwing code.
|
|
|
|
///
|
|
|
|
/// @param status Status code: non-zero implies an error
|
|
|
|
/// @param index Index of statement that caused the error
|
|
|
|
/// @param what High-level description of the error
|
|
|
|
///
|
2012-11-08 12:14:10 +00:00
|
|
|
/// @throw isc::dhcp::DbOperationError An operation on the open database has
|
|
|
|
/// failed.
|
2012-10-22 16:07:34 +01:00
|
|
|
inline void checkError(int status, StatementIndex index,
|
2012-10-20 22:52:25 +01:00
|
|
|
const char* what) const {
|
|
|
|
if (status != 0) {
|
|
|
|
isc_throw(DbOperationError, what << " for <" <<
|
2012-10-24 19:18:33 +01:00
|
|
|
text_statements_[index] << ">, reason: " <<
|
2012-10-22 16:07:34 +01:00
|
|
|
mysql_error(mysql_) << " (error code " <<
|
|
|
|
mysql_errno(mysql_) << ")");
|
2012-10-20 22:52:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-17 18:37:22 +01:00
|
|
|
// Members
|
2012-11-06 12:58:10 +00:00
|
|
|
|
2012-11-23 18:23:21 +00:00
|
|
|
/// The exchange objects are used for transfer of data to/from the database.
|
|
|
|
/// They are pointed-to objects as the contents may change in "const" calls,
|
|
|
|
/// while the rest of this object does not. (At alternative would be to
|
|
|
|
/// declare them as "mutable".)
|
2012-11-21 12:44:18 +00:00
|
|
|
boost::scoped_ptr<MySqlLease4Exchange> exchange4_; ///< Exchange object
|
|
|
|
boost::scoped_ptr<MySqlLease6Exchange> exchange6_; ///< Exchange object
|
2012-11-23 18:23:21 +00:00
|
|
|
MYSQL* mysql_; ///< MySQL context object
|
|
|
|
std::vector<MYSQL_STMT*> statements_; ///< Prepared statements
|
|
|
|
std::vector<std::string> text_statements_; ///< Raw text of statements
|
2012-10-16 16:39:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}; // end of isc::dhcp namespace
|
|
|
|
}; // end of isc namespace
|
|
|
|
|
2012-10-29 13:43:31 +00:00
|
|
|
#endif // MYSQL_LEASE_MGR_H
|