34#include <boost/scoped_ptr.hpp>
35#include <boost/algorithm/string.hpp>
95 if (txt ==
"address") {
97 }
else if (txt ==
"hw-address") {
99 }
else if (txt ==
"duid") {
101 }
else if (txt ==
"client-id") {
105 << txt <<
", the only supported values are: "
106 "address, hw-address, duid");
404 const int control_result,
405 const std::string& error_message)
const;
418 short family = AF_INET)
const;
445 if (!user_context || (user_context->getType() !=
Element::map)) {
452 return (
isc->get(
"relay-info"));
502 if (lease->stateRegistered()) {
507 if (force_create && !existing) {
511 "lost race between calls to get and add");
526 << lease->addr_ <<
" either because the lease has been "
527 "deleted or it has changed in the database, in both cases a "
528 "retry might succeed");
539 if (force_create && !existing) {
543 "lost race between calls to get and add");
550 if (existing->stateRegistered() && !lease->stateRegistered()) {
553 }
else if (!existing->stateRegistered() && lease->stateRegistered()) {
555 <<
" can't be registered");
566 if ((!old_extended_info && !extended_info) ||
567 (old_extended_info && extended_info &&
568 (*old_extended_info == *extended_info))) {
578 << lease->addr_ <<
" either because the lease has been "
579 "deleted or it has changed in the database, in both cases a "
580 "retry might succeed");
593 string lease_address =
"unknown";
604 bool force_create =
false;
611 lease_address = lease4->addr_.toText();
619 if (resource_handler.
tryLock4(lease4->addr_)) {
623 "ResourceBusy: IP address:" << lease4->addr_
624 <<
" could not be added.");
633 resp <<
"Lease for address " << lease4->addr_.toText()
634 <<
", subnet-id " << lease4->subnet_id_ <<
" added.";
640 lease_address = lease6->addr_.toText();
648 if (resource_handler.
tryLock(lease6->type_, lease6->addr_)) {
652 "ResourceBusy: IP address:" << lease6->addr_
653 <<
" could not be added.");
663 resp <<
"Lease for address " << lease6->addr_.toText()
664 <<
", subnet-id " << lease6->subnet_id_ <<
" added.";
666 resp <<
"Lease for prefix " << lease6->addr_.toText()
667 <<
"/" <<
static_cast<int>(lease6->prefixlen_)
668 <<
", subnet-id " << lease6->subnet_id_ <<
" added.";
679 }
catch (
const std::exception& ex) {
702 if (params->contains(
"update-ddns")) {
715 if (params->contains(
"type")) {
716 string t = params->get(
"type")->stringValue();
717 if (t ==
"IA_NA" || t ==
"0") {
719 }
else if (t ==
"IA_PD" || t ==
"2") {
721 }
else if (t ==
"V4" || t ==
"3") {
725 <<
", only supported values are: IA_NA, IA_PD and V4");
739 txt <<
"Invalid " << (v6 ?
"IPv6" :
"IPv4")
740 <<
" address specified: " << tmp->stringValue();
748 tmp = params->get(
"subnet-id");
757 if (params->contains(
"iaid")) {
758 x.
iaid = params->get(
"iaid")->intValue();
769 " and 'identifier-type' is either missing or not a string.");
773 " and 'identifier' is either missing or not a string.");
802 " is not supported.");
833 "requires hwaddr to be specified");
846 "requires duid to be specified");
860 "requires client-id to be specified");
874 }
catch (
const std::exception& ex) {
884 lease_json = lease4->toElement();
886 "IPv4 lease found.", lease_json);
888 }
else if (!v4 && lease6) {
889 lease_json = lease6->toElement();
891 "IPv6 lease found.", lease_json);
921 const std::vector<ElementPtr>& subnet_ids = subnets->listValue();
922 for (
auto const& subnet_id : subnet_ids) {
930 for (
auto const& lease : leases) {
932 leases_json->add(lease_json);
937 for (
auto const& lease : leases) {
939 leases_json->add(lease_json);
948 for (
auto const& lease : leases) {
950 leases_json->add(lease_json);
954 for (
auto const& lease : leases) {
956 leases_json->add(lease_json);
961 std::ostringstream s;
962 s << leases_json->size()
963 <<
" IPv" << (v4 ?
"4" :
"6")
964 <<
" lease(s) found.";
966 args->set(
"leases", leases_json);
974 }
catch (
const std::exception& ex) {
1008 boost::scoped_ptr<IOAddress> from_address;
1010 if (from->stringValue() ==
"start") {
1011 from_address.reset(
new IOAddress(v4 ?
"0.0.0.0" :
"::"));
1015 from_address.reset(
new IOAddress(from->stringValue()));
1020 "a valid IPv" << (v4 ?
"4" :
"6") <<
" address");
1025 if (v4 && (!from_address->isV4())) {
1027 <<
" is not an IPv4 address");
1029 }
else if (!v4 && from_address->isV4()) {
1031 <<
" is not an IPv6 address");
1046 size_t page_limit_value =
static_cast<size_t>(page_limit->intValue());
1057 for (
auto const& lease : leases) {
1059 leases_json->add(lease_json);
1068 for (
auto const& lease : leases) {
1070 leases_json->add(lease_json);
1075 std::ostringstream s;
1076 s << leases_json->size()
1077 <<
" IPv" << (v4 ?
"4" :
"6")
1078 <<
" lease(s) found.";
1082 args->set(
"leases", leases_json);
1083 args->set(
"count",
Element::create(
static_cast<int64_t
>(leases_json->size())));
1093 }
catch (
const std::exception& ex) {
1106 v4 = (
cmd_name_ ==
"lease4-get-by-hw-address");
1124 if (hw_address->stringValue().empty()) {
1135 for (
auto const& lease : leases) {
1137 leases_json->add(lease_json);
1142 for (
auto const& lease : leases) {
1144 leases_json->add(lease_json);
1148 std::ostringstream s;
1149 s << leases_json->size()
1150 <<
" IPv" << (v4 ?
"4" :
"6")
1151 <<
" lease(s) found.";
1153 args->set(
"leases", leases_json);
1161 }
catch (
const std::exception& ex) {
1195 for (
auto const& lease : leases) {
1197 leases_json->add(lease_json);
1200 std::ostringstream s;
1201 s << leases_json->size() <<
" IPv4 lease(s) found.";
1203 args->set(
"leases", leases_json);
1211 }
catch (
const std::exception& ex) {
1245 for (
auto const& lease : leases) {
1247 leases_json->add(lease_json);
1250 std::ostringstream s;
1251 s << leases_json->size() <<
" IPv6 lease(s) found.";
1253 args->set(
"leases", leases_json);
1261 }
catch (
const std::exception& ex) {
1274 v4 = (
cmd_name_ ==
"lease4-get-by-state");
1287 uint32_t state_ = 0;
1290 std::string state_str = state->stringValue();
1291 if (state_str.empty()) {
1293 }
else if ((state_str ==
"default") || (state_str ==
"assigned")) {
1295 }
else if (state_str ==
"declined") {
1297 }
else if (state_str ==
"expired-reclaimed") {
1299 }
else if (state_str ==
"released") {
1301 }
else if (state_str ==
"registered") {
1305 <<
") is not recognized");
1308 state_ = state->intValue();
1319 subnet_id_ = subnet->intValue();
1327 for (
auto const& lease : leases) {
1329 leases_json->add(lease_json);
1335 for (
auto const& lease : leases) {
1337 leases_json->add(lease_json);
1341 std::ostringstream s;
1342 s << leases_json->size()
1343 <<
" IPv" << (v4 ?
"4" :
"6")
1344 <<
" lease(s) found with state ";
1350 if (subnet_id_ != 0) {
1351 s <<
" in subnet " << subnet_id_;
1355 args->set(
"leases", leases_json);
1363 }
catch (
const std::exception& ex) {
1376 v4 = (
cmd_name_ ==
"lease4-get-by-hostname");
1394 std::string hostname_ = hostname->stringValue();
1396 if (hostname_.empty()) {
1399 boost::algorithm::to_lower(hostname_);
1406 for (
auto const& lease : leases) {
1408 leases_json->add(lease_json);
1414 for (
auto const& lease : leases) {
1416 leases_json->add(lease_json);
1420 std::ostringstream s;
1421 s << leases_json->size()
1422 <<
" IPv" << (v4 ?
"4" :
"6")
1423 <<
" lease(s) found.";
1425 args->set(
"leases", leases_json);
1433 }
catch (
const std::exception& ex) {
1461 "requires hwaddr to be specified");
1475 "requires client-id to be specified");
1508 }
catch (
const std::exception& ex) {
1516 .arg(lease4->addr_.toText());
1531 auto deleted_leases =
cmd_args_->get(
"deleted-leases");
1534 if (!deleted_leases && !leases) {
1540 if (deleted_leases && (deleted_leases->getType() !=
Element::list)) {
1552 std::list<std::pair<Parameters, Lease6Ptr> > parsed_deleted_list;
1553 if (deleted_leases) {
1554 auto leases_list = deleted_leases->listValue();
1557 for (
auto const& lease_params : leases_list) {
1562 parsed_deleted_list.push_back(std::make_pair(p, lease));
1568 std::list<Lease6Ptr> parsed_leases_list;
1573 auto leases_list = leases->listValue();
1574 for (
auto const& lease_params : leases_list) {
1582 parsed_leases_list.push_back(lease6);
1587 size_t success_count = 0;
1590 if (!parsed_deleted_list.empty()) {
1593 for (
auto const& lease_params_pair : parsed_deleted_list) {
1598 auto lease = lease_params_pair.second;
1611 if (!failed_deleted_list) {
1622 "lease not found"));
1626 }
catch (
const std::exception& ex) {
1628 if (!failed_deleted_list) {
1641 if (!parsed_leases_list.empty()) {
1645 for (
auto const& lease : parsed_leases_list) {
1648 std::ostringstream text;
1656 if (resource_handler.
tryLock(lease->type_, lease->addr_)) {
1660 "ResourceBusy: IP address:" << lease->addr_
1661 <<
" could not be updated.");
1670 }
catch (
const std::exception& ex) {
1677 if (!failed_leases_list) {
1692 if (failed_deleted_list || failed_leases_list) {
1697 if (failed_deleted_list) {
1698 args->set(
"failed-deleted-leases", failed_deleted_list);
1702 if (failed_leases_list) {
1703 args->set(
"failed-leases", failed_leases_list);
1708 std::ostringstream resp_text;
1709 resp_text <<
"Bulk apply of " << success_count <<
" IPv6 leases completed.";
1716 .arg(success_count);
1718 }
catch (
const std::exception& ex) {
1758 "requires duid to be specified");
1788 }
catch (
const std::exception& ex) {
1797 .arg(lease6->addr_.toText());
1815 bool force_create =
false;
1827 if (resource_handler.
tryLock4(lease4->addr_)) {
1831 "ResourceBusy: IP address:" << lease4->addr_
1832 <<
" could not be updated.");
1843 .arg(lease4->addr_.toText());
1852 }
catch (
const std::exception& ex) {
1877 bool force_create =
false;
1889 if (resource_handler.
tryLock(lease6->type_, lease6->addr_)) {
1893 "ResourceBusy: IP address:" << lease6->addr_
1894 <<
" could not be updated.");
1905 .arg(lease6->addr_.toText());
1914 }
catch (
const std::exception& ex) {
1949 int64_t previous_assigned = 0;
1951 if (assigned_observation) {
1952 previous_assigned = assigned_observation->getInteger().first;
1958 int64_t previous_declined = 0;
1960 if (declined_observation) {
1961 previous_declined = declined_observation->getInteger().first;
1966 static_cast<int64_t
>(0));
1970 static_cast<int64_t
>(0));
1977 "assigned-addresses")));
1984 "declined-addresses")));
2001 for (
auto const& sub : *subs) {
2003 ids <<
" " << sub->getID();
2006 static_cast<int64_t
>(0));
2010 static_cast<int64_t
>(0));
2015 "assigned-addresses")));
2022 "declined-addresses")));
2035 tmp <<
"Deleted " << num <<
" IPv4 lease(s) from subnet(s)" << ids.str();
2039 }
catch (
const std::exception& ex) {
2081 int64_t previous_assigned_na = 0;
2083 if (assigned_na_observation) {
2084 previous_assigned_na = assigned_na_observation->getInteger().first;
2090 int64_t previous_assigned_pd = 0;
2092 if (assigned_pd_observation) {
2093 previous_assigned_pd = assigned_pd_observation->getInteger().first;
2099 int64_t previous_declined = 0;
2101 if (declined_observation) {
2102 previous_declined = declined_observation->getInteger().first;
2107 static_cast<int64_t
>(0));
2111 static_cast<int64_t
>(0));
2115 static_cast<int64_t
>(0));
2119 static_cast<int64_t
>(0));
2133 "declined-addresses")));
2161 for (
auto const& sub : *subs) {
2163 ids <<
" " << sub->getID();
2166 static_cast<int64_t
>(0));
2170 static_cast<int64_t
>(0));
2174 static_cast<int64_t
>(0));
2178 static_cast<int64_t
>(0));
2190 "declined-addresses")));
2214 tmp <<
"Deleted " << num <<
" IPv6 lease(s) from subnet(s)" << ids.str();
2218 }
catch (
const std::exception& ex) {
2243 lease6.reset(
new Lease6());
2244 lease6->addr_ = parameters.
addr;
2253 if (!parameters.
duid) {
2255 "requires duid to be specified");
2275 short family)
const {
2288 }
catch (
const std::exception& ex) {
2290 <<
"' is not a valid IP address.");
2295 << (family == AF_INET6 ?
"IPv6" :
"IPv4")
2296 <<
" address specified: " << param->stringValue());
2304 std::stringstream ss;
2314 ss <<
"DDNS updating is not enabled";
2320 ss <<
"No lease found for: " << addr.
toText();
2322 }
else if (lease->hostname_.empty()) {
2323 ss <<
"Lease for: " << addr.
toText()
2324 <<
", has no hostname, nothing to update";
2326 }
else if (!lease->fqdn_fwd_ && !lease->fqdn_rev_) {
2327 ss <<
"Neither forward nor reverse updates enabled for lease for: "
2334 ss <<
"NCR generated for: " << addr.
toText()
2335 <<
", hostname: " << lease->hostname_;
2341 }
catch (
const std::exception& ex) {
2352 std::stringstream ss;
2362 ss <<
"DDNS updating is not enabled";
2368 ss <<
"No lease found for: " << addr.
toText();
2370 }
else if (lease->hostname_.empty()) {
2371 ss <<
"Lease for: " << addr.
toText()
2372 <<
", has no hostname, nothing to update";
2374 }
else if (!lease->fqdn_fwd_ && !lease->fqdn_rev_) {
2375 ss <<
"Neither forward nor reverse updates enabled for lease for: "
2382 ss <<
"NCR generated for: " << addr.
toText()
2383 <<
", hostname: " << lease->hostname_;
2389 }
catch (
const std::exception& ex) {
2402 const int control_result,
2403 const std::string& error_message)
const {
2416 failed_lease_map->set(
"error-message",
Element::create(error_message));
2418 return (failed_lease_map);
2440 std::string filename;
2446 filename =
file->stringValue();
2447 }
catch (
const std::exception& ex) {
2458 s << (v4 ?
"IPv4" :
"IPv6")
2459 <<
" lease database into '"
2460 << filename <<
"'.";
2463 }
catch (
const std::exception& ex) {
2474 uint32_t offer_lifetime;
2475 callout_handle.
getArgument(
"offer_lifetime", offer_lifetime);
2476 if (!offer_lifetime) {
2487 callout_handle.
getArgument(
"response4", response);
2490 if (!leases || leases->empty() || !((*leases)[0])) {
2496 if (mgr->evaluateVariables(query, response, lease)) {
2501 " the lease with address " << lease->addr_ <<
2502 " either because the lease has been"
2503 " deleted or it has changed in the database");
2504 }
catch (
const std::exception& ex) {
2506 << query->getLabel() <<
", :" << ex.what());
2519 callout_handle.
getArgument(
"response4", response);
2528 if (leases->empty() || !response || (response->getType() !=
DHCPACK)) {
2538 if (mgr->evaluateVariables(query, response, lease)) {
2543 " the lease with address " << lease->addr_ <<
2544 " either because the lease has been"
2545 " deleted or it has changed in the database");
2546 }
catch (
const std::exception& ex) {
2548 << query->getLabel() <<
", :" << ex.what());
2561 callout_handle.
getArgument(
"response6", response);
2569 if (leases->empty() || !response) {
2575 for (
auto lease : *leases) {
2587 if (lease->valid_lft_) {
2589 if (mgr->evaluateVariables(query, response, lease)) {
2596 .arg(lease->addr_.toText())
2597 .arg(query->getLabel());
2598 }
catch (
const std::exception& ex) {
2601 .arg(query->getLabel())
2602 .arg(lease->addr_.toText())
2609 <<
" leases failed to update for "
2610 << query->getLabel());
2616 return (impl_->leaseAddHandler(handle));
2621 return (impl_->lease6BulkApplyHandler(handle));
2626 return (impl_->leaseGetHandler(handle));
2631 return (impl_->leaseGetAllHandler(handle));
2636 return (impl_->leaseGetPageHandler(handle));
2641 return (impl_->leaseGetByHwAddressHandler(handle));
2646 return (impl_->leaseGetByClientIdHandler(handle));
2651 return (impl_->leaseGetByDuidHandler(handle));
2656 return (impl_->leaseGetByStateHandler(handle));
2661 return (impl_->leaseGetByHostnameHandler(handle));
2666 return (impl_->lease4DelHandler(handle));
2671 return (impl_->lease6DelHandler(handle));
2676 return (impl_->lease4UpdateHandler(handle));
2681 return (impl_->lease6UpdateHandler(handle));
2687 return (impl_->lease4WipeHandler(handle));
2693 return (impl_->lease6WipeHandler(handle));
2698 return (impl_->lease4ResendDdnsHandler(handle));
2703 return (impl_->lease6ResendDdnsHandler(handle));
2708 return (impl_->leaseWriteHandler(handle));
2718 impl_->lease4Offer(callout_handle, mgr);
2724 impl_->leases4Committed(callout_handle, mgr);
2730 impl_->leases6Committed(callout_handle, mgr);
static DUID fromText(const std::string &text)
Create DUID from the textual format.
static ElementPtr create(const Position &pos=ZERO_POSITION())
Create a NullElement.
static ElementPtr createMap(const Position &pos=ZERO_POSITION())
Creates an empty MapElement type ElementPtr.
static ElementPtr createList(const Position &pos=ZERO_POSITION())
Creates an empty ListElement type ElementPtr.
Exception thrown when a command failed due to a conflict.
A generic exception that is thrown if a parameter given to a method is considered invalid in that con...
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
A generic exception that is thrown if a function is called in a prohibited way.
A generic exception that is thrown if a parameter given to a method or function is considered invalid...
A generic exception that is thrown when an unexpected error condition occurs.
The IOAddress class represents an IP addresses (version agnostic).
std::string toText() const
Convert the address to a string.
bool isV6() const
Convenience function to check for an IPv6 address.
bool isV4() const
Convenience function to check for an IPv4 address.
bool isV6Zero() const
Convenience function to check if it is an IPv4 zero address.
short getFamily() const
Returns the address family.
static const IOAddress & IPV6_ZERO_ADDRESS()
Returns an IPv6 zero address.
Base class that command handler implementers may use for common tasks.
std::string cmd_name_
Stores the command name extracted by a call to extractCommand.
void setErrorResponse(hooks::CalloutHandle &handle, const std::string &text, int status=CONTROL_RESULT_ERROR)
Set the callout argument "response" to indicate an error.
data::ConstElementPtr cmd_args_
Stores the command arguments extracted by a call to extractCommand.
void extractCommand(hooks::CalloutHandle &handle)
Extracts the command name and arguments from a Callout handle.
void setSuccessResponse(hooks::CalloutHandle &handle, const std::string &text)
Set the callout argument "response" to indicate success.
void setResponse(hooks::CalloutHandle &handle, data::ConstElementPtr &response)
Set the callout argument "response" to the given response.
uint32_t getUint32(isc::data::ConstElementPtr scope, const std::string &name)
Returns a value converted to uint32_t.
std::string validatePath(const std::string data_path) const
Validates a file path against the supported directory for DHCP data.
static CfgMgr & instance()
returns a single instance of Configuration Manager
SrvConfigPtr getCurrentCfg()
Returns a pointer to the current configuration.
static ClientIdPtr fromText(const std::string &text)
Create client identifier from the textual format.
Holds DUID (DHCPv6 Unique Identifier).
static TrackingLeaseMgr & instance()
Return current lease manager.
virtual Lease6Collection getLeases6(Lease::Type type, const DUID &duid, uint32_t iaid) const =0
Returns existing IPv6 leases for a given DUID+IA combination.
virtual size_t wipeLeases6(const SubnetID &subnet_id)=0
Virtual method which removes specified leases.
static void updateStatsOnAdd(const Lease4Ptr &lease)
Update in-memory stats when adding a v4 lease.
virtual Lease4Collection getLeases4(SubnetID subnet_id) const =0
Returns all IPv4 leases for the particular subnet identifier.
virtual void writeLeases6(const std::string &filename)=0
Write V6 leases to a file.
virtual Lease4Ptr getLease4(const isc::asiolink::IOAddress &addr) const =0
Returns an IPv4 lease for specified IPv4 address.
static void updateStatsOnUpdate(const Lease4Ptr &existing, const Lease4Ptr &lease)
Update in-memory stats when updating a v4 lease.
virtual bool addLease(const Lease4Ptr &lease)=0
Adds an IPv4 lease.
virtual size_t wipeLeases4(const SubnetID &subnet_id)=0
Virtual method which removes specified leases.
virtual void updateLease4(const Lease4Ptr &lease4)=0
Updates IPv4 lease.
virtual void writeLeases4(const std::string &filename)=0
Write V4 leases to a file.
static void updateStatsOnDelete(const Lease4Ptr &lease)
Update in-memory stats when deleting a v4 lease.
virtual Lease6Ptr getLease6(Lease::Type type, const isc::asiolink::IOAddress &addr) const =0
Returns existing IPv6 lease for a given IPv6 address.
virtual void updateLease6(const Lease6Ptr &lease6)=0
Updates IPv6 lease.
Wraps value holding size of the page with leases.
Attempt to update lease that was not there.
Resource race avoidance RAII handler for DHCPv4.
bool tryLock4(const asiolink::IOAddress &addr)
Tries to acquires a resource.
Resource race avoidance RAII handler.
bool tryLock(Lease::Type type, const asiolink::IOAddress &addr)
Tries to acquires a resource.
Per-packet callout handle.
void getArgument(const std::string &name, T &value) const
Get argument.
Parser for Lease4 structure.
virtual isc::dhcp::Lease4Ptr parse(isc::dhcp::ConstSrvConfigPtr &cfg, const isc::data::ConstElementPtr &lease_info, bool &force_create)
Parses Element tree and tries to convert to Lease4.
Parser for Lease6 structure.
virtual isc::dhcp::Lease6Ptr parse(isc::dhcp::ConstSrvConfigPtr &cfg, const isc::data::ConstElementPtr &lease_info, bool &force_create)
Parses Element tree and tries to convert to Lease4.
Parameters specified for lease commands.
uint32_t iaid
IAID identifier used for v6 leases.
HWAddrPtr hwaddr
Specifies hardware address (used when query_type is TYPE_HWADDR).
Lease::Type lease_type
Lease type (NA,TA or PD) used for v6 leases.
Type query_type
specifies parameter types
Type
specifies type of query (by IP addr, by hwaddr, by DUID)
@ TYPE_DUID
query by DUID (v6 only)
@ TYPE_CLIENT_ID
query by client identifier (v4 only).
@ TYPE_HWADDR
query by hardware address (v4 only)
@ TYPE_ADDR
query by IP address (either v4 or v6)
isc::dhcp::ClientIdPtr client_id
Specifies identifier value (used when query_type is TYPE_CLIENT_ID).
static Type txtToType(const std::string &txt)
Attempts to covert text to one of specified types.
Parameters()
Default constructor.
bool updateDDNS
Indicates whether or not DNS should be updated.
IOAddress addr
Specifies IPv4/v6 address (used when query_type is TYPE_ADDR).
SubnetID subnet_id
Specifies subnet-id (always used).
isc::dhcp::DuidPtr duid
Specifies identifier value (used when query_type is TYPE_DUID).
Wrapper class around reservation command handlers.
int lease4DelHandler(CalloutHandle &handle)
lease4-del command handler
IOAddress getAddressParam(ConstElementPtr params, const std::string name, short family=AF_INET) const
static void lease4Offer(CalloutHandle &callout_handle, BindingVariableMgrPtr mgr)
lease4_offer hookpoint handler.
ElementPtr createFailedLeaseMap(const Lease::Type &lease_type, const IOAddress &lease_address, const DuidPtr &duid, const int control_result, const std::string &error_message) const
Returns a map holding brief information about a lease which failed to be deleted, updated or added.
int leaseGetByStateHandler(hooks::CalloutHandle &handle)
lease4-get-by-state and lease6-get-by-state commands handler
static bool addOrUpdate6(Lease6Ptr lease, bool force_create)
Add or update lease.
int lease6BulkApplyHandler(CalloutHandle &handle)
lease6-bulk-apply command handler
int leaseGetByDuidHandler(hooks::CalloutHandle &handle)
lease6-get-by-duid command handler
int lease6UpdateHandler(CalloutHandle &handle)
lease6-update handler
int leaseGetPageHandler(hooks::CalloutHandle &handle)
lease4-get-page, lease6-get-page commands handler
Lease6Ptr getIPv6LeaseForDelete(const Parameters ¶meters) const
Convenience function fetching IPv6 address to be used to delete a lease.
int leaseGetByHostnameHandler(hooks::CalloutHandle &handle)
lease4-get-by-hostname and lease6-get-by-hostname commands handler
int lease6DelHandler(CalloutHandle &handle)
lease6-del command handler
int leaseGetByHwAddressHandler(hooks::CalloutHandle &handle)
lease4-get-by-hw-address, lease6-get-by-hw-address command handler
static ConstElementPtr getExtendedInfo6(const Lease6Ptr &lease)
Get DHCPv6 extended info.
int leaseGetHandler(CalloutHandle &handle)
lease4-get, lease6-get command handler
static bool addOrUpdate4(Lease4Ptr lease, bool force_create)
Add or update lease.
static void leases4Committed(CalloutHandle &callout_handle, BindingVariableMgrPtr mgr)
leases4_committed hookpoint handler.
int lease6WipeHandler(CalloutHandle &handle)
lease6-wipe handler
int leaseGetByClientIdHandler(hooks::CalloutHandle &handle)
lease4-get-by-client-id command handler
int lease6ResendDdnsHandler(CalloutHandle &handle)
lease6-resend-ddns handler
int leaseAddHandler(CalloutHandle &handle)
lease4-add, lease6-add command handler
int lease4ResendDdnsHandler(CalloutHandle &handle)
lease4-resend-ddns handler
Parameters getParameters(bool v6, const ConstElementPtr &args)
Extracts parameters required for reservation-get and reservation-del.
static void leases6Committed(CalloutHandle &callout_handle, BindingVariableMgrPtr mgr)
leases6_committed hookpoint handler.
int lease4UpdateHandler(CalloutHandle &handle)
lease4-update handler
int lease4WipeHandler(CalloutHandle &handle)
lease4-wipe handler
int leaseGetAllHandler(CalloutHandle &handle)
lease4-get-all, lease6-get-all commands handler
int leaseWriteHandler(CalloutHandle &handle)
lease4-write handler, lease6-write handler
int lease4ResendDdnsHandler(hooks::CalloutHandle &handle)
lease4-resend-ddns command handler
int leaseGetByStateHandler(hooks::CalloutHandle &handle)
lease4-get-by-state and lease6-get-by-state commands handler
int lease6WipeHandler(hooks::CalloutHandle &handle)
lease6-wipe handler
int leaseGetPageHandler(hooks::CalloutHandle &handle)
lease4-get-page, lease6-get-page commands handler
int lease6DelHandler(hooks::CalloutHandle &handle)
lease6-del command handler
int leaseGetAllHandler(hooks::CalloutHandle &handle)
lease4-get-all, lease6-get-all commands handler
int leaseGetByHostnameHandler(hooks::CalloutHandle &handle)
lease4-get-by-hostname and lease6-get-by-hostname commands handler
void leases4Committed(hooks::CalloutHandle &callout_handle, BindingVariableMgrPtr mgr)
leases4_committed hookpoint handler.
int lease4DelHandler(hooks::CalloutHandle &handle)
lease4-del command handler
int leaseWriteHandler(hooks::CalloutHandle &handle)
lease4-write handler, lease6-write handler
int leaseAddHandler(hooks::CalloutHandle &handle)
lease4-add, lease6-add command handler
int leaseGetByClientIdHandler(hooks::CalloutHandle &handle)
lease4-get-by-client-id command handler
void lease4Offer(hooks::CalloutHandle &callout_handle, BindingVariableMgrPtr mgr)
lease4_offer hookpoint handler.
int lease4UpdateHandler(hooks::CalloutHandle &handle)
lease4-update handler
int leaseGetHandler(hooks::CalloutHandle &handle)
lease4-get, lease6-get command handler
int leaseGetByHwAddressHandler(hooks::CalloutHandle &handle)
lease4-get-by-hw-address, lease6-get-by-hw-address command handler
int lease6UpdateHandler(hooks::CalloutHandle &handle)
lease6-update handler
void leases6Committed(hooks::CalloutHandle &callout_handle, BindingVariableMgrPtr mgr)
leases6_committed hookpoint handler.
int leaseGetByDuidHandler(hooks::CalloutHandle &handle)
lease6-get-by-duid command handler
int lease6BulkApplyHandler(hooks::CalloutHandle &handle)
lease6-bulk-apply command handler
int lease4WipeHandler(hooks::CalloutHandle &handle)
lease4-wipe handler
int lease6ResendDdnsHandler(hooks::CalloutHandle &handle)
lease6-resend-ddns command handler
ObservationPtr getObservation(const std::string &name) const
Returns an observation.
static StatsMgr & instance()
Statistics Manager accessor method.
static std::string generateName(const std::string &context, Type index, const std::string &stat_name)
Generates statistic name in a given context.
RAII class creating a critical section.
static MultiThreadingMgr & instance()
Returns a single instance of Multi Threading Manager.
A generic exception that is thrown if a parameter given violates security check but enforcement is la...
This file contains several functions and constants that are used for handling commands and responses ...
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
void setValue(const std::string &name, const int64_t value)
Records absolute integer observation.
void addValue(const std::string &name, const int64_t value)
Records incremental integer observation.
const isc::log::MessageID LEASE_CMDS_DEL4
const isc::log::MessageID LEASE_CMDS_WIPE4_FAILED
const isc::log::MessageID LEASE_CMDS_UPDATE6_FAILED
const isc::log::MessageID LEASE_CMDS_UPDATE4_FAILED
const isc::log::MessageID LEASE_CMDS_WIPE6_FAILED
const isc::log::MessageID LEASE_CMDS_UPDATE6_CONFLICT
const isc::log::MessageID LEASE_CMDS_UPDATE4_CONFLICT
const isc::log::MessageID LEASE_CMDS_RESEND_DDNS4_FAILED
const isc::log::MessageID LEASE_CMDS_DEL6
const isc::log::MessageID LEASE_CMDS_ADD4_FAILED
const isc::log::MessageID LEASE_CMDS_LEASES6_COMMITTED_LEASE_ERROR
const isc::log::MessageID LEASE_CMDS_PATH_SECURITY_WARNING
const isc::log::MessageID LEASE_CMDS_ADD6
const isc::log::MessageID LEASE_CMDS_ADD4
const isc::log::MessageID LEASE_CMDS_WIPE6
const isc::log::MessageID LEASE_CMDS_ADD6_CONFLICT
const isc::log::MessageID LEASE_CMDS_BULK_APPLY6_FAILED
const isc::log::MessageID LEASE_CMDS_UPDATE6
const isc::log::MessageID LEASE_CMDS_RESEND_DDNS4
const isc::log::MessageID LEASE_CMDS_GET6_FAILED
const isc::log::MessageID LEASE_CMDS_WIPE4
const isc::log::MessageID LEASE_CMDS_BULK_APPLY6
const isc::log::MessageID LEASE_CMDS_RESEND_DDNS6_FAILED
const isc::log::MessageID LEASE_CMDS_RESEND_DDNS6
const isc::log::MessageID LEASE_CMDS_GET4_FAILED
const isc::log::MessageID LEASE_CMDS_ADD4_CONFLICT
const isc::log::MessageID LEASE_CMDS_LEASES6_COMMITTED_CONFLICT
const isc::log::MessageID LEASE_CMDS_DEL4_FAILED
const isc::log::MessageID LEASE_CMDS_ADD6_FAILED
const isc::log::MessageID LEASE_CMDS_UPDATE4
const isc::log::MessageID LEASE_CMDS_DEL6_FAILED
An abstract API for lease database.
#define LOG_ERROR(LOGGER, MESSAGE)
Macro to conveniently test error output and log it.
#define LOG_INFO(LOGGER, MESSAGE)
Macro to conveniently test info output and log it.
#define LOG_WARN(LOGGER, MESSAGE)
Macro to conveniently test warn output and log it.
#define LOG_DEBUG(LOGGER, LEVEL, MESSAGE)
Macro to conveniently test debug output and log it.
const int CONTROL_RESULT_EMPTY
Status code indicating that the specified command was completed correctly, but failed to produce any ...
const int CONTROL_RESULT_ERROR
Status code indicating a general failure.
ConstElementPtr createAnswer()
Creates a standard config/command level success answer message (i.e.
const int CONTROL_RESULT_CONFLICT
Status code indicating that the command was unsuccessful due to a conflict between the command argume...
const int CONTROL_RESULT_SUCCESS
Status code indicating a successful operation.
boost::shared_ptr< const Element > ConstElementPtr
boost::shared_ptr< Element > ElementPtr
boost::shared_ptr< Lease4Collection > Lease4CollectionPtr
A shared pointer to the collection of IPv4 leases.
boost::shared_ptr< const SrvConfig > ConstSrvConfigPtr
Const pointer to the SrvConfig.
void queueNCR(const NameChangeType &chg_type, const Lease4Ptr &lease)
Creates name change request from the DHCPv4 lease.
boost::shared_ptr< Pkt4 > Pkt4Ptr
A pointer to Pkt4 object.
boost::shared_ptr< DUID > DuidPtr
boost::shared_ptr< Lease6 > Lease6Ptr
Pointer to a Lease6 structure.
std::vector< Lease6Ptr > Lease6Collection
A collection of IPv6 leases.
boost::multi_index_container< Subnet6Ptr, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< SubnetSubnetIdIndexTag >, boost::multi_index::const_mem_fun< Subnet, SubnetID, &Subnet::getID > >, boost::multi_index::ordered_unique< boost::multi_index::tag< SubnetPrefixIndexTag >, boost::multi_index::const_mem_fun< Subnet, std::string, &Subnet::toText > >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< SubnetModificationTimeIndexTag >, boost::multi_index::const_mem_fun< data::BaseStampedElement, boost::posix_time::ptime, &data::BaseStampedElement::getModificationTime > > > > Subnet6Collection
A collection of Subnet6 objects.
boost::shared_ptr< HWAddr > HWAddrPtr
Shared pointer to a hardware address structure.
boost::multi_index_container< Subnet4Ptr, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< SubnetSubnetIdIndexTag >, boost::multi_index::const_mem_fun< Subnet, SubnetID, &Subnet::getID > >, boost::multi_index::ordered_unique< boost::multi_index::tag< SubnetPrefixIndexTag >, boost::multi_index::const_mem_fun< Subnet, std::string, &Subnet::toText > >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< SubnetServerIdIndexTag >, boost::multi_index::const_mem_fun< Network4, asiolink::IOAddress, &Network4::getServerId > >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< SubnetModificationTimeIndexTag >, boost::multi_index::const_mem_fun< data::BaseStampedElement, boost::posix_time::ptime, &data::BaseStampedElement::getModificationTime > > > > Subnet4Collection
A collection of Subnet4 objects.
uint32_t SubnetID
Defines unique IPv4 or IPv6 subnet identifier.
boost::shared_ptr< ClientId > ClientIdPtr
Shared pointer to a Client ID.
boost::shared_ptr< const CfgSubnets4 > ConstCfgSubnets4Ptr
Const pointer.
boost::shared_ptr< const CfgSubnets6 > ConstCfgSubnets6Ptr
Const pointer.
boost::shared_ptr< Lease6Collection > Lease6CollectionPtr
A shared pointer to the collection of IPv6 leases.
boost::shared_ptr< Pkt6 > Pkt6Ptr
A pointer to Pkt6 packet.
std::vector< Lease4Ptr > Lease4Collection
A collection of IPv4 leases.
boost::shared_ptr< Lease4 > Lease4Ptr
Pointer to a Lease4 structure.
const int LEASE_CMDS_DBG_COMMAND_DATA
Logging level used to log successful commands.
isc::log::Logger lease_cmds_logger("lease-cmds-hooks")
boost::shared_ptr< BindingVariableMgr > BindingVariableMgrPtr
Defines a shared pointer to a BindingVariableMgr.
Defines the logger used by the top-level component of kea-lfc.
Hardware type that represents information from DHCPv4 packet.
static HWAddr fromText(const std::string &text, const uint16_t htype=HTYPE_ETHER)
Creates instance of the hardware address from textual format.
Structure that holds a lease for IPv6 address and/or prefix.
@ ACTION_UPDATE
update extended info tables.
a common structure for IPv4 and IPv6 leases
static constexpr uint32_t STATE_DEFAULT
A lease in the default state.
static constexpr uint32_t STATE_EXPIRED_RECLAIMED
Expired and reclaimed lease.
static constexpr uint32_t STATE_DECLINED
Declined lease.
static constexpr uint32_t STATE_REGISTERED
Registered self-generated lease.
static std::string basicStatesToText(const uint32_t state)
Returns name(s) of the basic lease state(s).
static constexpr uint32_t STATE_RELEASED
Released lease held in the database for lease affinity.
static void syncCurrentExpirationTime(const Lease &from, Lease &to)
Sync lease current expiration time with new value from another lease, so that additional operations c...
Type
Type of lease or pool.
@ TYPE_PD
the lease contains IPv6 prefix (for prefix delegation)
@ TYPE_NA
the lease contains non-temporary IPv6 address
static std::string typeToText(Type type)
returns text representation of a lease type