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-17 18:37:22 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <string>
|
2012-10-16 16:39:32 +01:00
|
|
|
#include <config.h>
|
2012-10-20 22:52:25 +01:00
|
|
|
#include <time.h>
|
2012-10-16 16:39:32 +01:00
|
|
|
#include <dhcp/mysql_lease_mgr.h>
|
2012-10-20 22:52:25 +01:00
|
|
|
#include <asiolink/io_address.h>
|
2012-10-16 16:39:32 +01:00
|
|
|
|
2012-10-17 18:37:22 +01:00
|
|
|
using namespace std;
|
|
|
|
|
2012-10-16 16:39:32 +01:00
|
|
|
namespace isc {
|
|
|
|
namespace dhcp {
|
|
|
|
|
2012-10-22 10:49:51 +01:00
|
|
|
/// @brief Exchange MySQL Structure for Lease6
|
|
|
|
///
|
|
|
|
/// On the INSERT, SELECT and UPDATE statements, an array of MYSQL_BIND
|
|
|
|
/// structures must be built to reflect the data being inserted or retrieved
|
|
|
|
/// from the database.
|
|
|
|
///
|
|
|
|
/// Owing to the MySQL API, this process requires some intermediate variables
|
|
|
|
/// to hold things like length etc. This object holds the intermediate
|
|
|
|
/// variables and can:
|
|
|
|
/// 1. Build the MYSQL_BIND structures for a Lease6 object ready for passing
|
|
|
|
/// in to the MYSQL code.
|
|
|
|
/// 1. Copy information from the MYSQL_BIND structures into a Lease6 object.
|
|
|
|
|
|
|
|
class MySqlLease6Exchange {
|
|
|
|
public:
|
|
|
|
/// @brief Constructor
|
|
|
|
MySqlLease6Exchange() : false_(0), true_(1) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @brief Create MYSQL_BIND objects for Lease6 Pointer
|
|
|
|
///
|
|
|
|
/// Fills in the bind_ objects for the Lease6 passed to it.
|
|
|
|
///
|
|
|
|
/// The MySQL documentation
|
|
|
|
///
|
|
|
|
/// @param lease Lease object to be added to the database
|
|
|
|
///
|
|
|
|
/// @return Pointer to MYSQL_BIND array holding the bind information.
|
|
|
|
/// This is a pointer to data internal to this object, and remains
|
|
|
|
/// valid only for as long as (1) this object is in existence and
|
|
|
|
/// (2) the lease object passed to it is in existence. The
|
|
|
|
/// caller should NOT delete it.
|
|
|
|
MYSQL_BIND* createBindFromLease(const Lease6Ptr& lease) {
|
|
|
|
// Store lease object to ensure it remains valid.
|
|
|
|
lease_ = lease;
|
|
|
|
|
|
|
|
// Ensure bind array clear.
|
|
|
|
memset(bind_, 0, sizeof(bind_));
|
|
|
|
|
|
|
|
// address: varchar(40)
|
|
|
|
addr6_ = lease_->addr_.toText();
|
|
|
|
addr6_length_ = addr6_.size();
|
|
|
|
|
|
|
|
bind_[0].buffer_type = MYSQL_TYPE_STRING;
|
|
|
|
bind_[0].buffer = const_cast<char*>(addr6_.c_str());
|
|
|
|
bind_[0].buffer_length = addr6_length_;
|
|
|
|
bind_[0].length = &addr6_length_;
|
|
|
|
|
|
|
|
// hwaddr: binary(20)
|
|
|
|
hwaddr_length_ = lease_->hwaddr_.size();
|
|
|
|
|
|
|
|
bind_[1].buffer_type = MYSQL_TYPE_BLOB;
|
|
|
|
bind_[1].buffer = reinterpret_cast<char*>(&(lease_->hwaddr_[0]));
|
|
|
|
bind_[1].buffer_length = hwaddr_length_;
|
|
|
|
bind_[1].length = &hwaddr_length_;
|
|
|
|
|
|
|
|
// client_id: varchar(128)
|
|
|
|
clientid_ = lease_->duid_->getDuid();
|
|
|
|
clientid_length_ = clientid_.size();
|
|
|
|
|
|
|
|
bind_[2].buffer_type = MYSQL_TYPE_BLOB;
|
|
|
|
bind_[2].buffer = reinterpret_cast<char*>(&(clientid_[0]));
|
|
|
|
bind_[2].buffer_length = clientid_length_;
|
|
|
|
bind_[2].length = &clientid_length_;
|
|
|
|
|
|
|
|
// The lease structure holds the client last transmission time (cltt_)
|
|
|
|
// and the valid lifetime (valid_lft_). For convenience for external
|
|
|
|
// tools, the data stored in the database is expiry time (expire) and
|
|
|
|
// lease time (lease+time). The relationship is given by:
|
|
|
|
//
|
|
|
|
// lease_time - valid_lft_
|
|
|
|
// expire = cltt_ + valid_lft_
|
|
|
|
//
|
|
|
|
MySqlLeaseMgr::convertToDatabaseTime(lease_->cltt_, lease_->valid_lft_,
|
|
|
|
expire_, lease_time_);
|
|
|
|
|
|
|
|
// lease_time: unsigned int
|
|
|
|
bind_[3].buffer_type = MYSQL_TYPE_LONG;
|
|
|
|
bind_[3].buffer = reinterpret_cast<char*>(&lease_time_);
|
|
|
|
bind_[3].is_unsigned = true_;
|
|
|
|
|
|
|
|
// expire: timestamp
|
|
|
|
bind_[4].buffer_type = MYSQL_TYPE_TIMESTAMP;
|
|
|
|
bind_[4].buffer = reinterpret_cast<char*>(&expire_);
|
|
|
|
bind_[4].buffer_length = sizeof(expire_);
|
|
|
|
|
|
|
|
// subnet_id: unsigned int
|
|
|
|
// Can use lease_->subnet_id_ directly as it is of type uint32_t.
|
|
|
|
bind_[5].buffer_type = MYSQL_TYPE_LONG;
|
|
|
|
bind_[5].buffer = reinterpret_cast<char*>(&lease_->subnet_id_);
|
|
|
|
bind_[5].is_unsigned = true_;
|
|
|
|
|
|
|
|
// pref_lifetime: unsigned int
|
|
|
|
// Can use lease_->preferred_lft_ directly as it is of type uint32_t.
|
|
|
|
bind_[6].buffer_type = MYSQL_TYPE_LONG;
|
|
|
|
bind_[6].buffer = reinterpret_cast<char*>(&lease_->preferred_lft_);
|
|
|
|
bind_[6].is_unsigned = true_;
|
|
|
|
|
|
|
|
// lease_type: tinyint
|
|
|
|
// Must convert to uint8_t as lease_->type_ is a LeaseType variable
|
|
|
|
lease_type_ = lease_->type_;
|
|
|
|
bind_[7].buffer_type = MYSQL_TYPE_TINY;
|
|
|
|
bind_[7].buffer = reinterpret_cast<char*>(&lease_type_);
|
|
|
|
bind_[7].is_unsigned = static_cast<my_bool>(1);
|
|
|
|
|
|
|
|
// iaid: unsigned int
|
|
|
|
// Can use lease_->iaid_ directly as it is of type uint32_t.
|
|
|
|
bind_[8].buffer_type = MYSQL_TYPE_LONG;
|
|
|
|
bind_[8].buffer = reinterpret_cast<char*>(&lease_->iaid_);
|
|
|
|
bind_[8].is_unsigned = true_;
|
|
|
|
|
|
|
|
// prefix_len: unsigned tinyint
|
|
|
|
// Can use lease_->prefixlen_ directly as it is uint32_t.
|
|
|
|
bind_[9].buffer_type = MYSQL_TYPE_TINY;
|
|
|
|
bind_[9].buffer = reinterpret_cast<char*>(&lease_->prefixlen_);
|
|
|
|
bind_[9].is_unsigned = true_;
|
|
|
|
|
|
|
|
return(bind_);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string addr6_; ///< String form of address
|
|
|
|
unsigned long addr6_length_; ///< Length of the address
|
|
|
|
MYSQL_BIND bind_[10]; ///< Static array for speed of access
|
|
|
|
std::vector<uint8_t> clientid_; ///< Client identification
|
|
|
|
unsigned long clientid_length_; ///< Length of client ID
|
|
|
|
MYSQL_TIME expire_; ///< Lease expiry time
|
|
|
|
const my_bool false_; ///< "false" for MySql
|
|
|
|
unsigned long hwaddr_length_; ///< Length of hardware address
|
|
|
|
Lease6Ptr lease_; ///< Pointer to lease object
|
|
|
|
uint32_t lease_time_; ///< Lease time
|
|
|
|
uint8_t lease_type_; ///< Lease type
|
|
|
|
const my_bool true_; ///< "true_" for MySql
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
2012-10-20 22:52:25 +01:00
|
|
|
// Time conversion methods.
|
|
|
|
//
|
|
|
|
// Note that the MySQL TIMESTAMP data type (used for "expire") converts data
|
|
|
|
// from the current timezone to UTC for storage, and from UTC to the current
|
|
|
|
// timezone for retrieval. This means that the external interface - cltt -
|
|
|
|
// must be local time.
|
|
|
|
|
|
|
|
void
|
2012-10-22 10:49:51 +01:00
|
|
|
MySqlLeaseMgr::convertToDatabaseTime(time_t cltt, uint32_t valid_lft,
|
2012-10-20 22:52:25 +01:00
|
|
|
MYSQL_TIME& expire, uint32_t& lease_time) {
|
|
|
|
|
|
|
|
// Calculate expiry time and convert to various date/time fields.
|
|
|
|
time_t expire_time = cltt + valid_lft;
|
|
|
|
struct tm expire_tm;
|
|
|
|
(void) localtime_r(&expire_time, &expire_tm);
|
|
|
|
|
|
|
|
// Place in output expire structure.
|
|
|
|
expire.year = expire_tm.tm_year + 1900;
|
|
|
|
expire.month = expire_tm.tm_mon + 1; // Note different base
|
|
|
|
expire.day = expire_tm.tm_mday;
|
|
|
|
expire.hour = expire_tm.tm_hour;
|
|
|
|
expire.minute = expire_tm.tm_min;
|
|
|
|
expire.second = expire_tm.tm_sec;
|
|
|
|
expire.second_part = 0; // No fractional seconds
|
|
|
|
expire.neg = static_cast<my_bool>(0); // Not negative
|
|
|
|
|
|
|
|
// Set the lease time.
|
|
|
|
lease_time = valid_lft;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-10-22 10:49:51 +01:00
|
|
|
MySqlLeaseMgr::convertFromDatabaseTime(const MYSQL_TIME& expire, uint32_t lease_time,
|
2012-10-20 22:52:25 +01:00
|
|
|
time_t& cltt, uint32_t& valid_lft) {
|
|
|
|
valid_lft = lease_time;
|
|
|
|
|
|
|
|
// Copy across fields from MYSQL_TIME structure.
|
|
|
|
struct tm expire_tm;
|
|
|
|
|
|
|
|
expire_tm.tm_year = expire.year - 1900;
|
|
|
|
expire_tm.tm_mon = expire.month - 1;
|
|
|
|
expire_tm.tm_mday = expire.day;
|
|
|
|
expire_tm.tm_hour = expire.hour;
|
|
|
|
expire_tm.tm_min = expire.minute;
|
|
|
|
expire_tm.tm_sec = expire.second;
|
|
|
|
|
|
|
|
// Convert to local time
|
|
|
|
cltt = mktime(&expire_tm) - valid_lft;
|
|
|
|
}
|
|
|
|
|
2012-10-17 18:37:22 +01:00
|
|
|
void
|
|
|
|
MySqlLeaseMgr::openDatabase() {
|
|
|
|
|
|
|
|
// Set up the values of the parameters
|
|
|
|
const char* host = NULL;
|
|
|
|
string shost;
|
|
|
|
try {
|
|
|
|
shost = getParameter("host");
|
|
|
|
host = shost.c_str();
|
|
|
|
} catch (...) {
|
|
|
|
// No host. Fine, we'll use NULL
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* user = NULL;
|
|
|
|
string suser;
|
|
|
|
try {
|
|
|
|
suser = getParameter("user");
|
|
|
|
user = suser.c_str();
|
|
|
|
} catch (...) {
|
|
|
|
// No user. Fine, we'll use NULL
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* password = NULL;
|
|
|
|
string spassword;
|
|
|
|
try {
|
|
|
|
spassword = getParameter("password");
|
|
|
|
password = spassword.c_str();
|
|
|
|
} catch (...) {
|
|
|
|
// No password. Fine, we'll use NULL
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* name = NULL;
|
|
|
|
string sname;
|
|
|
|
try {
|
|
|
|
sname = getParameter("name");
|
|
|
|
name = sname.c_str();
|
|
|
|
} catch (...) {
|
|
|
|
// No database name. Fine, we'll use NULL
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open the database. Use defaults for non-specified options.
|
|
|
|
MYSQL* status = mysql_real_connect(mysql_, host, user, password, name,
|
|
|
|
0, NULL, 0);
|
|
|
|
if (status != mysql_) {
|
|
|
|
isc_throw(DbOpenError, mysql_error(mysql_));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-18 11:33:51 +01:00
|
|
|
void
|
|
|
|
MySqlLeaseMgr::prepareStatement(StatementIndex index, const char* text) {
|
|
|
|
// Validate that there is space for the statement in the statements array
|
|
|
|
// and that nothing has been placed there before.
|
|
|
|
if ((index >= statements_.size()) || (statements_[index] != NULL)) {
|
|
|
|
isc_throw(InvalidParameter, "invalid prepared statement index or "
|
|
|
|
"statement index not null");
|
|
|
|
}
|
|
|
|
|
|
|
|
// All OK, so prepare the statement
|
|
|
|
raw_statements_[index] = std::string(text);
|
|
|
|
|
|
|
|
statements_[index] = mysql_stmt_init(mysql_);
|
|
|
|
if (statements_[index] == NULL) {
|
|
|
|
isc_throw(DbOperationError, "unable to allocate MySQL prepared "
|
|
|
|
"statement structure" << mysql_error(mysql_));
|
|
|
|
}
|
|
|
|
|
|
|
|
int status = mysql_stmt_prepare(statements_[index], text, strlen(text));
|
|
|
|
if (status != 0) {
|
|
|
|
isc_throw(DbOperationError, "unable to prepare MySQL statement <" <<
|
|
|
|
text << ">, reason: " << mysql_error(mysql_));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MySqlLeaseMgr::prepareStatements() {
|
|
|
|
// Allocate space for all statements
|
|
|
|
statements_.clear();
|
|
|
|
statements_.resize(NUM_STATEMENTS, NULL);
|
|
|
|
|
|
|
|
raw_statements_.clear();
|
|
|
|
raw_statements_.resize(NUM_STATEMENTS, std::string(""));
|
|
|
|
|
|
|
|
// Now allocate the statements
|
2012-10-20 22:52:25 +01:00
|
|
|
prepareStatement(GET_LEASE6,
|
|
|
|
"SELECT hwaddr, client_id, "
|
|
|
|
"lease_time, expire, subnet_id, pref_lifetime, "
|
|
|
|
"lease_type, iaid, prefix_len "
|
|
|
|
"FROM lease6 WHERE address = ?");
|
|
|
|
prepareStatement(GET_VERSION,
|
2012-10-18 11:33:51 +01:00
|
|
|
"SELECT version, minor FROM schema_version");
|
2012-10-20 22:52:25 +01:00
|
|
|
prepareStatement(INSERT_LEASE6,
|
|
|
|
"INSERT INTO lease6(address, hwaddr, client_id, "
|
|
|
|
"lease_time, expire, subnet_id, pref_lifetime, "
|
|
|
|
"lease_type, iaid, prefix_len) "
|
|
|
|
"VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
|
2012-10-18 11:33:51 +01:00
|
|
|
}
|
|
|
|
|
2012-10-17 18:37:22 +01:00
|
|
|
|
2012-10-16 16:39:32 +01:00
|
|
|
MySqlLeaseMgr::MySqlLeaseMgr(const LeaseMgr::ParameterMap& parameters)
|
2012-10-18 11:33:51 +01:00
|
|
|
: LeaseMgr(parameters), mysql_(NULL) {
|
2012-10-17 18:37:22 +01:00
|
|
|
|
|
|
|
// Allocate context for MySQL - it is destroyed in the destructor.
|
|
|
|
mysql_ = mysql_init(NULL);
|
|
|
|
|
|
|
|
// Open the database
|
|
|
|
openDatabase();
|
2012-10-18 11:33:51 +01:00
|
|
|
|
|
|
|
// Disable autocommit
|
|
|
|
my_bool result = mysql_autocommit(mysql_, 0);
|
|
|
|
if (result != 0) {
|
|
|
|
isc_throw(DbOperationError, mysql_error(mysql_));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare all statements likely to be used.
|
|
|
|
prepareStatements();
|
2012-10-16 16:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
MySqlLeaseMgr::~MySqlLeaseMgr() {
|
2012-10-18 11:33:51 +01:00
|
|
|
// Free up the prepared statements, ignoring errors. (What would we do
|
|
|
|
// about them - we're destroying this object and are not really concerned
|
|
|
|
// with errors on a database connection that it about to go away.)
|
|
|
|
for (int i = 0; i < statements_.size(); ++i) {
|
|
|
|
if (statements_[i] != NULL) {
|
|
|
|
(void) mysql_stmt_close(statements_[i]);
|
|
|
|
statements_[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close the database
|
2012-10-17 18:37:22 +01:00
|
|
|
mysql_close(mysql_);
|
|
|
|
mysql_ = NULL;
|
2012-10-16 16:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-10-20 22:52:25 +01:00
|
|
|
MySqlLeaseMgr::addLease(const Lease4Ptr& /* lease */) {
|
|
|
|
|
2012-10-16 16:39:32 +01:00
|
|
|
return (false);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-10-20 22:52:25 +01:00
|
|
|
MySqlLeaseMgr::addLease(const Lease6Ptr& lease) {
|
2012-10-22 10:49:51 +01:00
|
|
|
// Create the MYSQL_BIND array for the lease
|
|
|
|
MySqlLease6Exchange exchange;
|
|
|
|
MYSQL_BIND* bind = exchange.createBindFromLease(lease);
|
2012-10-20 22:52:25 +01:00
|
|
|
|
|
|
|
// Bind the parameters to the statement
|
|
|
|
my_bool status = mysql_stmt_bind_param(statements_[INSERT_LEASE6], bind);
|
|
|
|
checkError(status, INSERT_LEASE6, "unable to bind parameters");
|
|
|
|
|
|
|
|
// Execute the statement
|
|
|
|
status = mysql_stmt_execute(statements_[INSERT_LEASE6]);
|
|
|
|
checkError(status, INSERT_LEASE6, "unable to execute");
|
|
|
|
|
|
|
|
// ... and find out whether a row as inserted.
|
|
|
|
return (mysql_stmt_affected_rows(statements_[INSERT_LEASE6]) == 1);
|
2012-10-16 16:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Lease4Ptr
|
2012-10-20 22:52:25 +01:00
|
|
|
MySqlLeaseMgr::getLease4(const isc::asiolink::IOAddress& /* addr */,
|
2012-10-16 16:39:32 +01:00
|
|
|
SubnetID /* subnet_id */) const {
|
|
|
|
return (Lease4Ptr());
|
|
|
|
}
|
|
|
|
|
|
|
|
Lease4Ptr
|
2012-10-20 22:52:25 +01:00
|
|
|
MySqlLeaseMgr::getLease4(const isc::asiolink::IOAddress& /* addr */) const {
|
2012-10-16 16:39:32 +01:00
|
|
|
return (Lease4Ptr());
|
|
|
|
}
|
|
|
|
|
|
|
|
Lease4Collection
|
|
|
|
MySqlLeaseMgr::getLease4(const HWAddr& /* hwaddr */) const {
|
|
|
|
return (Lease4Collection());
|
|
|
|
}
|
|
|
|
|
|
|
|
Lease4Ptr
|
|
|
|
MySqlLeaseMgr::getLease4(const HWAddr& /* hwaddr */,
|
|
|
|
SubnetID /* subnet_id */) const {
|
|
|
|
return (Lease4Ptr());
|
|
|
|
}
|
|
|
|
|
|
|
|
Lease4Collection
|
|
|
|
MySqlLeaseMgr::getLease4(const ClientId& /* clientid */) const {
|
|
|
|
return (Lease4Collection());
|
|
|
|
}
|
|
|
|
|
|
|
|
Lease4Ptr
|
|
|
|
MySqlLeaseMgr::getLease4(const ClientId& /* clientid */,
|
|
|
|
SubnetID /* subnet_id */) const {
|
|
|
|
return (Lease4Ptr());
|
|
|
|
}
|
|
|
|
|
|
|
|
Lease6Ptr
|
2012-10-20 22:52:25 +01:00
|
|
|
MySqlLeaseMgr::getLease6(const isc::asiolink::IOAddress& addr) const {
|
|
|
|
my_bool MLM_FALSE = 0; // MySqlLeaseMgr false
|
|
|
|
my_bool MLM_TRUE = 1; // MySqlLeaseMgr true
|
|
|
|
|
|
|
|
// Set up the WHERE clause value
|
|
|
|
MYSQL_BIND inbind[1];
|
|
|
|
memset(inbind, 0, sizeof(inbind));
|
|
|
|
|
|
|
|
std::string addr6 = addr.toText();
|
|
|
|
unsigned long addr6_length = addr6.size();
|
|
|
|
|
|
|
|
inbind[0].buffer_type = MYSQL_TYPE_STRING;
|
|
|
|
inbind[0].buffer = const_cast<char*>(addr6.c_str());
|
|
|
|
inbind[0].buffer_length = addr6_length;
|
|
|
|
inbind[0].length = &addr6_length;
|
|
|
|
inbind[0].is_null = &MLM_FALSE;
|
|
|
|
|
|
|
|
// Bind the parameters to the statement
|
|
|
|
my_bool status = mysql_stmt_bind_param(statements_[GET_LEASE6], inbind);
|
|
|
|
checkError(status, GET_LEASE6, "unable to bind WHERE clause parameter");
|
|
|
|
|
|
|
|
// Output values
|
|
|
|
MYSQL_BIND outbind[9];
|
|
|
|
memset(outbind, 0, sizeof(outbind));
|
|
|
|
|
|
|
|
// address: Not obtained - because of the WHERE clause, it will always be
|
|
|
|
// the same as the input parameter.
|
|
|
|
|
|
|
|
// hwaddr: varbinary(20)
|
|
|
|
uint8_t hwaddr[20];
|
|
|
|
unsigned long hwaddr_length;
|
|
|
|
|
|
|
|
outbind[0].buffer_type = MYSQL_TYPE_BLOB;
|
|
|
|
outbind[0].buffer = reinterpret_cast<char*>(hwaddr);
|
|
|
|
outbind[0].buffer_length = sizeof(hwaddr);
|
|
|
|
outbind[0].length = &hwaddr_length;
|
|
|
|
|
|
|
|
// client_id: varbinary(128)
|
|
|
|
uint8_t clientid[128];
|
|
|
|
unsigned long clientid_length;
|
|
|
|
|
|
|
|
outbind[1].buffer_type = MYSQL_TYPE_BLOB;
|
|
|
|
outbind[1].buffer = reinterpret_cast<char*>(clientid);
|
|
|
|
outbind[1].buffer_length = sizeof(clientid);
|
|
|
|
outbind[1].length = &clientid_length;
|
|
|
|
|
|
|
|
// lease_time: unsigned int
|
|
|
|
unsigned lease_time;
|
|
|
|
outbind[2].buffer_type = MYSQL_TYPE_LONG;
|
|
|
|
outbind[2].buffer = reinterpret_cast<char*>(&lease_time);
|
|
|
|
outbind[2].is_unsigned = MLM_TRUE;
|
|
|
|
|
|
|
|
// expire: timestamp
|
|
|
|
MYSQL_TIME mysql_expire;
|
|
|
|
outbind[3].buffer_type = MYSQL_TYPE_TIMESTAMP;
|
|
|
|
outbind[3].buffer = reinterpret_cast<char*>(&mysql_expire);
|
|
|
|
outbind[3].buffer_length = sizeof(mysql_expire);
|
|
|
|
|
|
|
|
// subnet_id: unsigned int
|
|
|
|
unsigned subnet_id;
|
|
|
|
outbind[4].buffer_type = MYSQL_TYPE_LONG;
|
|
|
|
outbind[4].buffer = reinterpret_cast<char*>(&subnet_id);
|
|
|
|
outbind[4].is_unsigned = MLM_TRUE;
|
|
|
|
|
|
|
|
// pref_lifetime: unsigned int
|
|
|
|
unsigned pref_lifetime;
|
|
|
|
outbind[5].buffer_type = MYSQL_TYPE_LONG;
|
|
|
|
outbind[5].buffer = reinterpret_cast<char*>(&pref_lifetime);
|
|
|
|
outbind[5].is_unsigned = MLM_TRUE;
|
|
|
|
|
|
|
|
// lease_type: tinyint
|
|
|
|
uint8_t lease_type;
|
|
|
|
outbind[6].buffer_type = MYSQL_TYPE_TINY;
|
|
|
|
outbind[6].buffer = reinterpret_cast<char*>(&lease_type);
|
|
|
|
outbind[6].is_unsigned = MLM_TRUE;
|
|
|
|
|
|
|
|
// iaid: unsigned int
|
|
|
|
unsigned iaid;
|
|
|
|
outbind[7].buffer_type = MYSQL_TYPE_LONG;
|
|
|
|
outbind[7].buffer = reinterpret_cast<char*>(&iaid);
|
|
|
|
outbind[7].is_unsigned = MLM_TRUE;
|
|
|
|
|
|
|
|
// prefix_len: unsigned tinyint
|
|
|
|
uint8_t prefixlen;
|
|
|
|
outbind[8].buffer_type = MYSQL_TYPE_TINY;
|
|
|
|
outbind[8].buffer = reinterpret_cast<char*>(&prefixlen);
|
|
|
|
outbind[8].is_unsigned = MLM_TRUE;
|
|
|
|
|
|
|
|
// Bind the parameters to the statement
|
|
|
|
status = mysql_stmt_bind_result(statements_[GET_LEASE6], outbind);
|
|
|
|
checkError(status, GET_LEASE6, "unable to bind SELECT caluse parameters");
|
|
|
|
|
|
|
|
// Execute the statement
|
|
|
|
status = mysql_stmt_execute(statements_[GET_LEASE6]);
|
|
|
|
checkError(status, GET_LEASE6, "unable to execute");
|
|
|
|
|
|
|
|
// Fetch the data.
|
|
|
|
Lease6Ptr result(new Lease6());
|
|
|
|
status = mysql_stmt_fetch(statements_[GET_LEASE6]);
|
|
|
|
if (status == 0) {
|
|
|
|
// Success - put the data in the lease object
|
|
|
|
result->addr_ = addr;
|
|
|
|
result->hwaddr_ = vector<uint8_t>(&hwaddr[0], &hwaddr[hwaddr_length]);
|
|
|
|
result->duid_.reset(new DUID(clientid, clientid_length));
|
2012-10-22 10:49:51 +01:00
|
|
|
convertFromDatabaseTime(mysql_expire, lease_time,
|
|
|
|
result->cltt_, result->valid_lft_);
|
2012-10-20 22:52:25 +01:00
|
|
|
result->subnet_id_ = subnet_id;
|
|
|
|
result->preferred_lft_ = pref_lifetime;
|
|
|
|
switch (lease_type) {
|
|
|
|
case Lease6::LEASE_IA_NA:
|
|
|
|
result->type_ = Lease6::LEASE_IA_NA;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Lease6::LEASE_IA_TA:
|
|
|
|
result->type_ = Lease6::LEASE_IA_TA;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Lease6::LEASE_IA_PD:
|
|
|
|
result->type_ = Lease6::LEASE_IA_PD;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
isc_throw(BadValue, "invalid lease type returned for <" <<
|
|
|
|
raw_statements_[GET_LEASE6] << ">");
|
|
|
|
}
|
|
|
|
result->iaid_ = iaid;
|
|
|
|
result->prefixlen_ = prefixlen;
|
|
|
|
|
|
|
|
// As the address is the primary key in the table, we can't return
|
|
|
|
// two rows, so we don't bother checking.
|
|
|
|
|
|
|
|
} else if (status == 1) {
|
|
|
|
checkError(status, GET_LEASE6, "unable to fetch results");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// We are ignoring truncation for now, so the only other result is
|
|
|
|
// no data was found. In that case, we returrn a null Lease6 structure.
|
|
|
|
// This has already been set, so ther action is a no-op.
|
|
|
|
}
|
|
|
|
|
|
|
|
return (result);
|
2012-10-16 16:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Lease6Collection
|
|
|
|
MySqlLeaseMgr::getLease6(const DUID& /* duid */, uint32_t /* iaid */) const {
|
|
|
|
return (Lease6Collection());
|
|
|
|
}
|
|
|
|
|
|
|
|
Lease6Ptr
|
|
|
|
MySqlLeaseMgr::getLease6(const DUID& /* duid */, uint32_t /* iaid */,
|
|
|
|
SubnetID /* subnet_id */) const {
|
|
|
|
return (Lease6Ptr());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-10-20 22:52:25 +01:00
|
|
|
MySqlLeaseMgr::updateLease4(const Lease4Ptr& /* lease4 */) {
|
2012-10-16 16:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-10-20 22:52:25 +01:00
|
|
|
MySqlLeaseMgr::updateLease6(const Lease6Ptr& /* lease6 */) {
|
2012-10-16 16:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-10-20 22:52:25 +01:00
|
|
|
MySqlLeaseMgr::deleteLease4(const isc::asiolink::IOAddress& /* addr */) {
|
2012-10-16 16:39:32 +01:00
|
|
|
return (false);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-10-20 22:52:25 +01:00
|
|
|
MySqlLeaseMgr::deleteLease6(const isc::asiolink::IOAddress& /* addr */) {
|
2012-10-16 16:39:32 +01:00
|
|
|
return (false);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string
|
|
|
|
MySqlLeaseMgr::getName() const {
|
|
|
|
return (std::string(""));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string
|
|
|
|
MySqlLeaseMgr::getDescription() const {
|
|
|
|
return (std::string(""));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<uint32_t, uint32_t>
|
|
|
|
MySqlLeaseMgr::getVersion() const {
|
2012-10-18 11:33:51 +01:00
|
|
|
uint32_t major; // Major version number
|
|
|
|
uint32_t minor; // Minor version number
|
|
|
|
|
|
|
|
// Execute the prepared statement
|
2012-10-20 22:52:25 +01:00
|
|
|
int status = mysql_stmt_execute(statements_[GET_VERSION]);
|
2012-10-18 11:33:51 +01:00
|
|
|
if (status != 0) {
|
|
|
|
isc_throw(DbOperationError, "unable to execute <"
|
2012-10-20 22:52:25 +01:00
|
|
|
<< raw_statements_[GET_VERSION] << "> - reason: " <<
|
2012-10-18 11:33:51 +01:00
|
|
|
mysql_error(mysql_));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bind the output of the statement to the appropriate variables.
|
|
|
|
MYSQL_BIND bind[2];
|
|
|
|
memset(bind, 0, sizeof(bind));
|
|
|
|
|
|
|
|
bind[0].buffer_type = MYSQL_TYPE_LONG;
|
|
|
|
bind[0].is_unsigned = 1;
|
|
|
|
bind[0].buffer = &major;
|
|
|
|
bind[0].buffer_length = sizeof(major);
|
|
|
|
|
|
|
|
bind[1].buffer_type = MYSQL_TYPE_LONG;
|
|
|
|
bind[1].is_unsigned = 1;
|
|
|
|
bind[1].buffer = &minor;
|
|
|
|
bind[1].buffer_length = sizeof(minor);
|
|
|
|
|
2012-10-20 22:52:25 +01:00
|
|
|
status = mysql_stmt_bind_result(statements_[GET_VERSION], bind);
|
2012-10-18 11:33:51 +01:00
|
|
|
if (status != 0) {
|
|
|
|
isc_throw(DbOperationError, "unable to bind result set: " <<
|
|
|
|
mysql_error(mysql_));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the result
|
2012-10-20 22:52:25 +01:00
|
|
|
status = mysql_stmt_fetch(statements_[GET_VERSION]);
|
2012-10-18 11:33:51 +01:00
|
|
|
if (status != 0) {
|
|
|
|
isc_throw(DbOperationError, "unable to obtain result set: " <<
|
|
|
|
mysql_error(mysql_));
|
|
|
|
}
|
|
|
|
|
|
|
|
return (std::make_pair(major, minor));
|
2012-10-16 16:39:32 +01:00
|
|
|
}
|
|
|
|
|
2012-10-20 22:52:25 +01:00
|
|
|
void
|
|
|
|
MySqlLeaseMgr::commit() {
|
|
|
|
if (mysql_commit(mysql_) != 0) {
|
|
|
|
isc_throw(DbOperationError, "commit failed: " << mysql_error(mysql_));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MySqlLeaseMgr::rollback() {
|
|
|
|
if (mysql_rollback(mysql_) != 0) {
|
|
|
|
isc_throw(DbOperationError, "rollback failed: " << mysql_error(mysql_));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-16 16:39:32 +01:00
|
|
|
}; // end of isc::dhcp namespace
|
|
|
|
}; // end of isc namespace
|